* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #ffffff;
    color: #333;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 40px;
    background: #dedede;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo1 {
    width: 230px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
}

nav ul li a:hover {
    color: #ff9800;
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}

/* HERO */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 60px;
}

.hero-text h1 {
    font-size: 48px;
    color: #081989;
}

.hero-text h3 {
    color: #ff9800;
    font-size: 28px;
    margin: 15px 0;
}

.line {
    width: 250px;
    height: 2px;
    background: #ccc;
    margin-bottom: 15px;
}

.hero-text p {
    font-size: 18px;
}

.hero-image img {
    width: 520px;
}

/* ABOUT */
.about {
    padding: 60px 20px;
}

.container {
    max-width: 1100px;
    margin: auto;
}

.section-title {
    color: #ff9800;
    font-size: 32px;
    margin-bottom: 20px;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.about-box {
    background: #f8f9fa;
    padding: 20px;
    border-left: 5px solid #ff9800;
}

.why-us ul {
    list-style: none;
    margin-top: 15px;
}

.why-us li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

/* FOOTER */
.footer {
    background: #0A1D37;
    color: #fff;
    text-align: center;
    padding: 15px;
    margin-top: 50px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-image img {
        width: 90%;
        margin-top: 30px;
    }

    nav ul {
        display: none;
        flex-direction: column;
        background: #1e1e1e;
        position: absolute;
        top: 70px;
        right: 0;
        width: 200px;
        padding: 10px;
    }

    nav ul.show {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }
}
html {
    scroll-behavior: smooth;
}
.contact {
    padding: 60px 20px;
    background: #f8f9fa;
    text-align: center;
}

.contact-details p {
    font-size: 18px;
    margin: 10px 0;
}

.contact-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: #ff9800;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
}

.contact-btn:hover {
    background: #e68900;
}
/* SERVICES SECTION */
.services {
    padding: 60px 20px;
    background: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.service-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-top: 5px solid #ff9800;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card h3 {
    color: #081989;
    margin-bottom: 10px;
    font-size: 22px;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}
.nav-link.active {
    color: #ff9800;
    font-weight: 600;
    border-bottom: 2px solid #ff9800;
    padding-bottom: 4px;
}
section {
    scroll-margin-top: 100px; /* height of your navbar */
}
.hero-text {
    animation: slideFade 1.2s ease forwards;
    opacity: 0;
}

@keyframes slideFade {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
/* STAGGER BASE STATE */
.stagger {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* ACTIVE STATE */
.stagger.active {
    opacity: 1;
    transform: translateY(0);
}
.reveal,
.stagger {
    will-change: transform, opacity;
}
@media (prefers-reduced-motion: reduce) {
    .reveal,
    .stagger,
    .hero-text {
        animation: none;
        transition: none;
        opacity: 1;
        transform: none;
    }
}


