* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
} 
 
body { 
    font-family: Arial, sans-serif; 
    background: #f7f9fc; 
    color: #172033; 
    line-height: 1.6; 
} 
 
a { 
    text-decoration: none; 
} 
 
 
/* ================= NAVBAR ================= */ 
 
header { 
    background: white; 
    border-bottom: 1px solid #eee; 
    position: relative;
    z-index: 9999;
} 
 
.navbar { 
    max-width: 1200px; 
    margin: auto; 
    padding: 20px; 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    position: relative;
    z-index: 9999;
} 
 
.logo { 
    font-size: 28px; 
    font-weight: bold; 
    color: #172033; 
} 
 
.logo span, 
footer span, 
.hero h1 span, 
.why-content span, 
.page-hero span { 
    color: #ff7a00; 
} 
 
.nav-links { 
    display: flex; 
    gap: 30px; 
    position: relative;
    z-index: 9999;
} 
 
.nav-links a { 
    color: #555; 
    font-weight: 500; 
    display: block;
    visibility: visible;
    opacity: 1;
} 
 
.nav-links a:hover, 
.nav-links .active { 
    color: #ff7a00; 
} 
 
.nav-btn { 
    background: #ff7a00; 
    color: white; 
    padding: 12px 22px; 
    border-radius: 8px; 
} 
 
 
/* ================= HERO ================= */ 
 
.hero { 
    max-width: 1200px; 
    margin: auto; 
    min-height: 600px; 
    padding: 80px 20px; 
 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    gap: 60px; 
} 
 
.hero-content { 
    max-width: 650px; 
} 
 
.tagline { 
    color: #ff7a00; 
    font-size: 14px; 
    font-weight: bold; 
    letter-spacing: 1.5px; 
    margin-bottom: 15px; 
} 
 
.hero h1 { 
    font-size: 58px; 
    line-height: 1.1; 
    margin-bottom: 25px; 
} 
 
.hero-content > p:not(.tagline) { 
    color: #687083; 
    font-size: 18px; 
    max-width: 600px; 
} 
 
.hero-buttons { 
    margin-top: 35px; 
    display: flex; 
    gap: 15px; 
} 
 
.btn { 
    display: inline-block; 
    padding: 14px 25px; 
    border-radius: 8px; 
    font-weight: bold; 
} 
 
.primary { 
    background: #ff7a00; 
    color: white; 
} 
 
.secondary { 
    background: white; 
    color: #ff7a00; 
    border: 1px solid #ff7a00; 
} 
 
 
/* ================= HERO CARD ================= */ 
 
.hero-card { 
    width: 330px; 
    padding: 45px 30px; 
    background: white; 
    border-radius: 20px; 
    text-align: center; 
 
    box-shadow: 0 20px 50px rgba(0,0,0,0.08); 
} 
 
.circle { 
    width: 100px; 
    height: 100px; 
    margin: auto; 
    margin-bottom: 25px; 
 
    display: flex; 
    align-items: center; 
    justify-content: center; 
 
    background: #fff0e0; 
    border-radius: 50%; 
 
    font-size: 45px; 
} 
 
.hero-card h3 { 
    font-size: 24px; 
    margin-bottom: 10px; 
} 
 
.hero-card p { 
    color: #777; 
} 
 
.stats { 
    margin-top: 30px; 
    display: flex; 
    justify-content: space-around; 
} 
 
.stats strong { 
    display: block; 
    font-size: 24px; 
    color: #ff7a00; 
} 
 
.stats small { 
    color: #777; 
} 
 
 
/* ================= SERVICES ================= */ 
 
.services { 
    padding: 90px 20px; 
    background: white; 
} 
 
.section-title { 
    text-align: center; 
    max-width: 700px; 
    margin: auto; 
} 
 
.section-title p { 
    color: #ff7a00; 
    font-weight: bold; 
} 
 
.section-title h2 { 
    font-size: 40px; 
    margin: 10px 0; 
} 
 
.section-title span { 
    color: #777; 
} 
 
.service-container { 
    max-width: 1200px; 
    margin: 50px auto 0; 
 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 25px; 
} 
 
.service-card { 
    padding: 30px; 
    background: #f7f9fc; 
    border-radius: 15px; 
    transition: 0.3s; 
} 
 
 
/* ================= SERVICE CARD HOVER ================= */ 
 
.service-card:hover { 
    transform: translateY(-8px); 
    box-shadow: 0 15px 35px rgba(0,0,0,0.08); 
    background: #000000; 
} 
 
.service-card:hover h3, 
.service-card:hover p { 
    color: white; 
} 
 
.service-card:hover .icon { 
    color: white; 
} 
 
 
.icon { 
    font-size: 35px; 
    margin-bottom: 20px; 
} 
 
.service-card h3 { 
    margin-bottom: 10px; 
} 
 
.service-card p { 
    color: #687083; 
} 
 
 
/* ================= WHY US ================= */ 
 
.why-us { 
    padding: 100px 20px; 
} 
 
.why-content { 
    max-width: 800px; 
    margin: auto; 
    text-align: center; 
} 
 
.why-content h2 { 
    font-size: 42px; 
    margin-bottom: 20px; 
} 
 
.why-content > p { 
    color: #687083; 
} 
 
.features { 
    margin-top: 30px; 
 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 15px; 
 
    text-align: left; 
} 
 
.features div { 
    background: white; 
    padding: 18px; 
    border-radius: 10px; 
} 
 
 
/* ================= CONTACT ================= */ 
 
.contact { 
    background: #ff7a00; 
    color: white; 
    text-align: center; 
    padding: 80px 20px; 
} 
 
.contact h2 { 
    font-size: 40px; 
} 
 
.contact p { 
    margin: 15px 0 30px; 
} 
 
.contact .primary { 
    background: white; 
    color: #ff7a00; 
} 
 
 
/* ================= INNER PAGE ================= */ 
 
.page-hero { 
    padding: 100px 20px; 
    text-align: center; 
    background: #fff0e0; 
} 
 
.page-hero h1 { 
    font-size: 52px; 
    margin-bottom: 15px; 
} 
 
.page-hero p:last-child { 
    color: #687083; 
} 
 
 
/* ================= ABOUT ================= */ 
 
.about-section { 
    max-width: 1000px; 
    margin: auto; 
    padding: 80px 20px; 
 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 30px; 
} 
 
.about-card { 
    background: white; 
    padding: 40px; 
    border-radius: 15px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
} 
 
.about-card h2 { 
    margin-bottom: 20px; 
    color: #ff7a00; 
} 
 
.about-card p { 
    color: #687083; 
    margin-bottom: 15px; 
} 
 
 
/* ================= NUMBERS ================= */ 
 
.numbers { 
    padding: 60px 20px; 
    background: white; 
 
    display: flex; 
    justify-content: center; 
    gap: 100px; 
 
    text-align: center; 
} 
 
.numbers strong { 
    font-size: 38px; 
    color: #ff7a00; 
} 
 
.numbers p { 
    color: #777; 
} 
 
 
/* ================= PRIVACY ================= */ 
 
.privacy-section { 
    max-width: 900px; 
    margin: auto; 
    padding: 70px 20px; 
} 
 
.privacy-card { 
    background: white; 
    padding: 45px; 
    border-radius: 15px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
} 
 
.privacy-card h2 { 
    margin-top: 25px; 
    margin-bottom: 10px; 
    color: #ff7a00; 
} 
 
.privacy-card h2:first-child { 
    margin-top: 0; 
} 
 
.privacy-card p { 
    color: #687083; 
} 
 
 
/* ================= FOOTER ================= */ 
 
footer { 
    background: #151923; 
    color: white; 
    padding: 50px 20px 20px; 
} 
 
.footer-content { 
    max-width: 1100px; 
    margin: auto; 
 
    display: flex; 
    justify-content: space-between; 
    gap: 50px; 
} 
 
.footer-content p { 
    color: #aaa; 
    max-width: 350px; 
} 
 
.footer-content h3 { 
    margin-bottom: 15px; 
} 
 
.footer-content a { 
    display: block; 
    color: #aaa; 
    margin: 7px 0; 
} 
 
.footer-content a:hover { 
    color: white; 
} 
 
.copyright { 
    text-align: center; 
    border-top: 1px solid #333; 
    margin-top: 40px; 
    padding-top: 20px; 
    color: #888; 
} 
 
 
/* ================= RESPONSIVE ================= */ 
 
@media (max-width: 900px) { 
 
    .hero { 
        flex-direction: column; 
        text-align: center; 
    } 
 
    .hero-buttons { 
        justify-content: center; 
    } 
 
    .service-container { 
        grid-template-columns: 1fr 1fr; 
    } 
 
    .about-section { 
        grid-template-columns: 1fr; 
    } 
 
    .numbers { 
        gap: 30px; 
        flex-wrap: wrap; 
    } 
 
} 
 
 
@media (max-width: 600px) { 
 
    .navbar { 
        flex-direction: column; 
        gap: 20px; 
    } 
 
    .nav-links { 
        gap: 15px; 
        flex-wrap: wrap; 
        justify-content: center; 
    } 
 
    .nav-btn { 
        display: none; 
    } 
 
    .hero h1 { 
        font-size: 40px; 
    } 
 
    .hero-card { 
        width: 100%; 
    } 
 
    .service-container { 
        grid-template-columns: 1fr; 
    } 
 
    .features { 
        grid-template-columns: 1fr; 
    } 
 
    .page-hero h1 { 
        font-size: 40px; 
    } 
 
    .numbers { 
        flex-direction: column; 
    } 
 
    .footer-content { 
        flex-direction: column; 
    } 
 
} 
 
 
.logo span { 
    color: #ff7a00; 
} 
 
.logo { 
    color: #ff7a00; 
} 
 
.circle { 
    width: 100px; 
    height: 100px; 
    margin: auto; 
    margin-bottom: 25px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    background: #ff7a00; 
    border-radius: 50%; 
    font-size: 45px; 
} 
 
.logo { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    font-size: 28px; 
    font-weight: bold; 
    color: #ff7a00; 
} 
 
.logo img { 
    width: 50px; 
    height: 50px; 
    object-fit: contain; 
} 
 
 
/* Services Dropdown */ 
 
.services-dropdown { 
    position: relative; 
} 
 
.services-dropdown > a { 
    display: block; 
} 
 
.services-menu { 
    display: none; 
    position: absolute; 
    top: 100%; 
    left: 50%; 
    transform: translateX(-50%); 
    width: 900px; 
    background: #ffffff; 
    padding: 25px; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); 
    border-radius: 10px; 
    z-index: 1000; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 25px; 
} 
 
.services-dropdown:hover .services-menu { 
    display: grid; 
} 
 
.service-menu-column h4 { 
    color: #ff7a00; 
    font-size: 17px; 
    margin-bottom: 12px; 
} 
 
.service-menu-column a { 
    display: block; 
    color: #333; 
    font-size: 14px; 
    padding: 7px 0; 
    text-decoration: none; 
} 
 
.service-menu-column a:hover { 
    color: #ff7a00; 
}


/* ================= NAVBAR LINK FIX ================= */

.nav-links a {
    display: block;
    color: #555;
    font-weight: 500;
    visibility: visible;
    opacity: 1;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ff7a00;
}