/* १. रिसेट आणि बेसिक सेटिंग - मार्जिन काढण्यासाठी */
        body, html {
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            font-family: 'Poppins', sans-serif;
        }

        :root {
            --primary-dark: #002D62; /* ANITA INFRA Dark Blue */
            --accent-blue: #00D2FF;  /* Bright Blue */
            --text-white: #ffffff;
            --transition-speed: 0.5s;
        }

        /* २. टॉप बार सेक्शन - अगदी वर चिकटलेला */
        .top-bar-section {
            background-color: var(--primary-dark);
            padding: 8px 0; /* उंची थोडी कमी केली जेणेकरून तो स्लिम दिसेल */
            border-bottom: 2px solid rgba(255, 255, 255, 0.1);
            width: 100%;
            position: relative; /* किंवा 'fixed' करा जर नेहमी वर हवा असेल तर */
            top: 0;
            left: 0;
            z-index: 1000;
        }

        .top-container {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 40px;
        }

        /* ३. संपर्क माहिती आणि अ‍ॅनिमेशन */
        .contact-details {
            display: flex;
            gap: 30px;
        }

        .contact-item {
            color: var(--text-white);
            font-size: 13px;
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            transition: var(--transition-speed);
            text-decoration: none;
        }

        .contact-item i {
            color: var(--accent-blue);
            font-size: 15px;
            transition: transform 0.4s ease;
        }

        .contact-item:hover {
            color: var(--accent-blue);
        }

        .contact-item:hover i {
            transform: rotateY(360deg) scale(1.3);
        }

        /* ४. सोशल मीडिया बटणे */
        .social-wrapper {
            display: flex;
            gap: 12px;
        }

        .social-icon {
            width: 32px;
            height: 32px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            font-size: 13px;
            transition: 0.4s;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .social-icon:hover {
            transform: translateY(-3px);
            background: var(--accent-blue);
            color: var(--primary-dark);
            box-shadow: 0 0 15px var(--accent-blue);
            border-color: white;
        }

        /* ५. मोबाईल रिस्पॉन्सिव्ह डिझाइन */
        @media (max-width: 991px) {
            .top-container {
                padding: 0 20px;
            }
        }

        @media (max-width: 768px) {
            .top-bar-section {
                padding: 10px 0;
            }
            .top-container {
                flex-direction: column;
                gap: 10px;
            }
            .contact-details {
                flex-direction: column;
                align-items: center;
                gap: 5px;
            }
            .social-wrapper {
                margin-top: 5px;
            }
        }

        /* Navbar Variables */
:root {
    --nav-bg: #ffffff;
    --nav-text: #002D62;
    --nav-hover: #00aaff;
    --nav-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.main-header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar-section {
    background: var(--nav-bg);
    box-shadow: var(--nav-shadow);
    padding: 15px 0;
    transition: all 0.4s ease;
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

/* Logo Styling */
.logo-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 26px;
    font-weight: 800;
    color: var(--nav-text);
    letter-spacing: 1px;
}

.blue-text {
    color: var(--nav-hover);
}

.logo-tagline {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #666;
    margin-top: -5px;
}

/* Nav Menu Styles */
.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 15px;
}

.nav-link {
    text-decoration: none;
    color: var(--nav-text);
    font-weight: 600;
    font-size: 15px;
    padding: 8px 15px;
    position: relative;
    transition: 0.3s;
}

/* Underline Animation */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--nav-hover);
    transition: 0.4s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link:hover {
    color: var(--nav-hover);
}

/* Contact Button Animation */
.btn-contact {
    background: var(--nav-text);
    color: white !important;
    border-radius: 50px;
    padding: 10px 25px !important;
    margin-left: 20px;
    box-shadow: 0 5px 15px rgba(0, 45, 98, 0.2);
}

.btn-contact:hover {
    background: var(--nav-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 170, 255, 0.3);
}

.btn-contact::after { display: none; }

/* Mobile Menu Toggle */
.mobile-menu-btn {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--nav-text);
    transition: 0.3s;
}

/* Responsive Logic */
@media (max-width: 992px) {
    .mobile-menu-btn { display: block; }
    
    .nav-menu {
        position: absolute;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: #fff;
        width: 100%;
        text-align: center;
        transition: 0.5s;
        box-shadow: var(--nav-shadow);
        padding: 40px 0;
    }

    .nav-menu.active { left: 0; }
    
    .nav-item { margin: 15px 0; }

    .btn-contact { margin-left: 0; }
}



/* Banner Styles */
.hero-banner {
    position: relative;
    width: 100%;
    height: 90vh; /* स्क्रीनच्या ९०% उंची */
    background: url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?q=80&w=2069&auto=format&fit=crop'); /* Modern Office Background */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax Effect */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 45, 98, 0.9) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.banner-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 0 40px;
    text-align: center;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.banner-content {
    animation: fadeInUp 1s ease-out;
}

.sub-title {
    color: #00D2FF;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
    font-weight: 600;
}

.main-title {
    color: #fff;
    font-size: clamp(40px, 8vw, 70px); /* Responsive Font */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.highlight {
    color: #00D2FF;
    text-shadow: 0 0 20px rgba(0, 210, 255, 0.5);
}

.banner-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

/* Buttons */
.banner-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 15px 35px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: 0.4s;
    text-transform: uppercase;
    font-size: 14px;
}

.btn-blue {
    background: #00D2FF;
    color: #002D62;
}

.btn-blue:hover {
    background: #fff;
    transform: scale(1.05);
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #002D62;
}

/* Scroll Mouse Animation */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #fff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 10px;
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 10px; }
    100% { opacity: 0; top: 25px; }
}

/* Responsive */
@media (max-width: 768px) {
    .banner-btns { flex-direction: column; }
    .hero-banner { height: 100vh; }
}


.about-section {
    padding: 100px 0;
    background-color: #fff;
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.about-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 20px 20px 0px #002D62; /* प्रेझेंटेशनचा निळा रंग */
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #00D2FF;
    color: #002D62;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.about-content {
    flex: 1;
    min-width: 300px;
}

.sub-heading {
    color: #00D2FF;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.main-heading {
    font-size: 36px;
    color: #002D62;
    margin-bottom: 20px;
    line-height: 1.3;
}

.main-heading span {
    color: #00D2FF;
}

.description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-points {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.about-points li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    font-weight: 500;
}

.about-points i {
    color: #00D2FF;
}

.read-more {
    display: inline-block;
    padding: 12px 30px;
    background: #002D62;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.read-more:hover {
    background: #00D2FF;
    color: #002D62;
}

/* Responsive */
@media (max-width: 768px) {
    .about-wrapper { gap: 40px; }
    .main-heading { font-size: 28px; }
    .about-image img { box-shadow: 10px 10px 0px #002D62; }
}



.mission-vision {
    padding: 80px 0;
    background-color: #f9fbfd;
    text-align: center;
}

.section-title h4 {
    color: #00D2FF;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.section-title h2 {
    color: #002D62;
    font-size: 36px;
    margin-bottom: 50px;
}

.cards-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.v-card {
    background: #fff;
    padding: 40px 30px;
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 45, 98, 0.05);
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
    border: 1px solid rgba(0, 45, 98, 0.05);
}

.v-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 45, 98, 0.1);
    border-color: #00D2FF;
}

.icon-box {
    width: 70px;
    height: 70px;
    background: rgba(0, 210, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: 0.4s;
}

.icon-box i {
    font-size: 30px;
    color: #002D62;
}

.v-card:hover .icon-box {
    background: #00D2FF;
}

.v-card:hover .icon-box i {
    color: #fff;
}

.v-card h3 {
    color: #002D62;
    margin-bottom: 15px;
    font-size: 22px;
}

.v-card p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

/* Decorative Shape */
.card-shape {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: rgba(0, 210, 255, 0.05);
    border-radius: 50%;
    z-index: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .v-card {
        max-width: 100%;
    }
}


/* Footer Styles */
.main-footer {
    background-color: #001a33; /* Extra Dark Blue */
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    padding-top: 70px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-col {
    flex: 1;
    min-width: 250px;
    margin-bottom: 40px;
    padding: 0 15px;
}

/* Logo & Desc */
.footer-logo {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-logo span {
    color: #00D2FF;
}

.footer-desc {
    color: #b0b0b0;
    line-height: 1.8;
    font-size: 14px;
    margin-bottom: 25px;
}

/* Title Styling */
.footer-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #00D2FF;
}

/* Links Animation */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: #00D2FF;
    transform: translateX(10px);
}

/* Contact Info */
.contact-info-list .contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: #b0b0b0;
    font-size: 14px;
}

.contact-item i {
    color: #00D2FF;
    font-size: 18px;
    margin-top: 5px;
}

/* Social Icons Animation */
.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: 0.4s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: #00D2FF;
    color: #001a33;
    transform: translateY(-5px) rotate(360deg);
}

/* Footer Bottom */
.footer-bottom {
    background: #001222;
    padding: 25px 0;
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: #707070;
    font-size: 13px;
}

.footer-bottom span {
    color: #00D2FF;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links a:hover {
        transform: translateY(-3px);
    }

    .contact-info-list .contact-item {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }
}