 :root {
            --primary-color: #1a365d;
            --secondary-color: #2d4d8c;
            --light-color: #f8f9fa;
            --text-color: #333;
            --text-light: #666;
            --border-color: #e0e0e0;
            --gradient-start: #1a365d;
            --gradient-end: #2d4d8c;
            --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.05);
            --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.1);
            --shadow-heavy: 0 15px 40px rgba(0, 0, 0, 0.15);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Lexend', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: #fff;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            color: var(--primary-color);
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

      
        .header-area {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            width: 100%;
            background-color: white;
            box-shadow: var(--shadow-light);
            z-index: 1000;
            transition: var(--transition);
            padding: 15px 0;
        }

        .header-area.stick {
            padding: 10px 0;
            box-shadow: var(--shadow-medium);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo a {
            display: inline-block;
        }

        .logo-img {
            height: 50px;
            width: auto;
            transition: var(--transition);
        }

        .header-area.stick .logo-img {
            height: 40px;
        }

       
        .desktop-nav {
            display: flex;
            align-items: center;
            gap: 30px;
             flex: 1;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
            margin-left: auto;
            margin-right: 30px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-color);
            font-weight: 600;
            font-size: 16px;
            position: relative;
            padding: 8px 0;
            transition: var(--transition);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
            transition: var(--transition);
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--secondary-color);
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        
 .header-right {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 40px;
}

.social-icons {
    order: 2;
}

.enquiry-btn {
    order: 1; 
}

.header-area {
    width: 100%;
}




.header-container {
    display: flex;
    align-items: center;
    width: 100%;
       max-width: 100%;
    padding-right: 30px !important;
    padding-left: 150px; 
    margin-right: 0;
}

        .enquiry-btn {
            background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
            color: white;
            border: none;
            padding: 10px 22px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            display: inline-block;
            box-shadow: var(--shadow-light);
        }

        .enquiry-btn:hover {
            background: linear-gradient(to right, var(--secondary-color), #3a5da0);
            transform: translateY(-3px);
            box-shadow: var(--shadow-medium);
            color: white;
            text-decoration: none;
        }

        .social-icons {
            display: flex;
            gap: 10px;
            list-style: none;
            margin-bottom: 10px;
        }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: var(--primary-color);
            color: white;
            transition: var(--transition);
            text-decoration: none;
        }

        .social-icons a:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: var(--shadow-light);
        }

        .hamburger-menu {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 22px;
            cursor: pointer;
            z-index: 1001;
            transition: var(--transition);
        }

        .hamburger-menu span {
            display: block;
            height: 3px;
            width: 100%;
            background-color: var(--primary-color);
            border-radius: 3px;
            transition: var(--transition);
        }

        .hamburger-menu.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .hamburger-menu.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger-menu.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }
        .mobile-sidebar {
            position: fixed;
            top: 0;
            right: -100%;
            width: 85%;
            max-width: 350px;
            height: 100%;
            background: white;
            z-index: 999;
            box-shadow: var(--shadow-heavy);
            transition: var(--transition);
            overflow-y: auto;
            display: flex;
            flex-direction: column;
        }

        .mobile-sidebar.active {
            right: 0;
        }

        .sidebar-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(75, 106, 164, 0.65);

            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .sidebar-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .sidebar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 25px 20px;
            border-bottom: 1px solid var(--border-color);
            background-color: white;
        }

        .sidebar-logo {
            height: 40px;
            width: auto;
        }

        .sidebar-close {
            background: none;
            border: none;
            color: var(--primary-color);
            font-size: 24px;
            cursor: pointer;
            transition: var(--transition);
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .sidebar-close:hover {
            background-color: rgba(26, 54, 93, 0.1);
            color: var(--secondary-color);
        }

        .sidebar-nav {
            padding: 30px 20px;
            flex-grow: 1;
        }

        .sidebar-links {
            list-style: none;
            padding: 0;
        }

        .sidebar-links li {
            margin-bottom: 10px;
        }

        .sidebar-links a {
            display: block;
            text-decoration: none;
            color: var(--text-color);
            font-size: 18px;
            font-weight: 600;
            padding: 15px 20px;
            border-radius: 10px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .sidebar-links a:hover,
        .sidebar-links a.active {
            background-color: rgba(26, 54, 93, 0.1);
            color: var(--secondary-color);
            transform: translateX(5px);
        }

        .sidebar-links a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, var(--gradient-start), var(--gradient-end));
            transform: translateX(-100%);
            transition: var(--transition);
        }

        .sidebar-links a:hover::before,
        .sidebar-links a.active::before {
            transform: translateX(0);
        }

        .sidebar-footer {
            padding: 25px 20px;
            border-top: 1px solid var(--border-color);
            background-color: white;
        }

        .sidebar-footer .enquiry-btn {
            display: block;
            width: 100%;
            text-align: center;
            margin-bottom: 20px;
            font-size: 16px;
            padding: 12px;
        }

        .sidebar-social {
            text-align: center;
        }

        .sidebar-social h4 {
            color: var(--primary-color);
            font-size: 16px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .sidebar-social-icons {
            display: flex;
            justify-content: center;
            gap: 15px;
            list-style: none;
            padding: 0;
        }

        .sidebar-social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background-color: var(--primary-color);
            color: white;
            transition: var(--transition);
            text-decoration: none;
            font-size: 18px;
        }

        .sidebar-social-icons a:hover {
            background-color: var(--secondary-color);
            transform: translateY(-5px);
            box-shadow: var(--shadow-light);
        }
        
        .section-spacing {
            padding: 100px 0;
        }

       .contact-hero {
    padding: 120px 0 80px; 
    background:
        linear-gradient(
            rgba(12, 45, 87, 0.65),
            rgba(12, 45, 87, 0.65)
        ),
        url('../img2/maruti2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}


        .contact-hero::before {
            content: none;
            position: absolute;
            top: 0;
            right: 0;
            width: 40%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(26, 54, 93, 0.03)"/></svg>');
            background-size: cover;
            z-index: 0;
        }

        .contact-hero-content {
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .contact-title {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 20px;
            color:white;
            line-height: 1.2;
        }

        .contact-subtitle {
            font-size: 18px;
            color: white;
            max-width: 600px;
            margin: 0 auto 40px;
            line-height: 1.8;
        }

        .contact-section {
            background-color: white;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-subtitle {
            color: var(--secondary-color);
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
            display: block;
        }

        .section-main-title {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .section-main-title::after {
            content: none;
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
            border-radius: 2px;
        }

        .contact-form-container {
            background: white;
            border-radius: 20px;
            padding: 50px;
            box-shadow: var(--shadow-medium);
            height: 100%;
        }

        .form-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 30px;
            color: var(--primary-color);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--text-color);
        }

        .form-control {
            width: 100%;
            padding: 15px 20px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            font-family: 'Lexend', sans-serif;
            font-size: 16px;
            transition: var(--transition);
            background: white;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 3px rgba(45, 77, 140, 0.1);
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .submit-btn {
            background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
            color: white;
            border: none;
            padding: 18px 40px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 18px;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            width: 100%;
        }

        .submit-btn:hover {
            background: linear-gradient(to right, var(--secondary-color), #3a5da0);
            transform: translateY(-3px);
            box-shadow: var(--shadow-medium);
        }

        .submit-btn i {
            margin-left: 10px;
        }

        /* Contact Info Cards */
        .contact-info-card {
            background: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: var(--shadow-light);
            height: 100%;
            transition: var(--transition);
            margin-bottom: 30px;
        }

        .contact-info-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-heavy);
        }

        .contact-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            color: white;
            font-size: 28px;
        }

        .contact-card-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--primary-color);
        }

        .contact-card-text {
            font-size: 16px;
            line-height: 1.7;
            color: var(--text-light);
            margin-bottom: 15px;
        }

        .contact-link {
            color: var(--secondary-color);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            transition: var(--transition);
        }

        .contact-link:hover {
            color: var(--primary-color);
            text-decoration: none;
        }

        .contact-link i {
            margin-left: 8px;
            transition: transform 0.3s;
        }

        .contact-link:hover i {
            transform: translateX(5px);
        }

        /* Address Cards */
        .address-section {
            background: linear-gradient(135deg, rgba(26, 54, 93, 0.03) 0%, rgba(45, 77, 140, 0.03) 100%);
        }

        .address-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-medium);
            margin-bottom: 40px;
            transition: var(--transition);
            height: 100%;
            margin-left: 100px !important;
        }

        .address-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-heavy);
        }

        .address-header {
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            padding: 25px;
            color: white;
            display: flex;
            align-items: center;
        }

        .address-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            font-size: 22px;
        }

        .address-title {
            font-size: 22px;
            font-weight: 700;
            margin: 0;
            color:black;
        }

        .address-body {
            padding: 30px;
        }

        .address-text {
            font-size: 16px;
            line-height: 1.8;
            color: var(--text-light);
            margin-bottom: 25px;
        }

        .map-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--primary-color);
            color: white;
            text-decoration: none;
            padding: 12px 25px;
            border-radius: 6px;
            font-weight: 600;
            transition: var(--transition);
        }

        .map-btn:hover {
            background: var(--secondary-color);
            color: white;
            text-decoration: none;
            transform: translateY(-3px);
            box-shadow: var(--shadow-light);
        }

        .map-btn i {
            margin-right: 8px;
        }

  
     
        @media (max-width: 992px) {
            .nav-links {
                display: none;
            }
            
            .hamburger-menu {
                display: flex;
            }
            
            .contact-title {
                font-size: 36px;
            }
            
            .section-main-title {
                font-size: 36px;
            }
            
            .contact-form-container {
                padding: 40px 30px;
            }
            
            .form-title {
                font-size: 24px;
            }
        }
        
        @media (max-width: 768px) {
            .contact-hero {
                padding: 150px 0 80px;
            }
            
            .contact-title {
                font-size: 32px;
            }
            
            .section-spacing {
                padding: 80px 0;
            }
            
            .section-main-title {
                font-size: 32px;
            }
            
            .contact-info-card {
                padding: 30px;
            }
            
            .address-body {
                padding: 25px;
            }
            
            .footer-social {
                justify-content: center;
                margin-top: 20px;
            }
            
            .footer-social li:first-child {
                margin-left: 0;
            }
        }
        
        @media (max-width: 576px) {
            .contact-title {
                font-size: 28px;
            }
            
            .contact-subtitle {
                font-size: 16px;
            }
            
            .section-main-title {
                font-size: 28px;
            }
            
            .contact-form-container {
                padding: 30px 20px;
            }
            
            .contact-info-card {
                padding: 25px;
            }
            
            .contact-card-title {
                font-size: 20px;
            }
            
            .address-header {
                padding: 20px;
                flex-direction: column;
                text-align: center;
            }
            
            .address-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }

       .whatsapp-container {
    position: fixed !important;
    left: 20px !important;    
    bottom: 20px !important; 
    right: auto !important;   
    
    z-index: 99999;
}


        .whatsapp-scroll {
            position: relative;
            width: 60px;
            height: 60px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
            font-size: 30px;
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }

        .whatsapp-scroll:hover {
            background-color: #128C7E;
            transform: scale(1.1);
            box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
        }

     
        .whatsapp-tooltip {
            position: absolute;
            left: 70px;
            top: 50%;
            transform: translateY(-50%);
            background: #333;
            color: white;
            padding: 8px 15px;
            border-radius: 6px;
            font-size: 14px;
            font-family: 'Poppins', sans-serif;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
            z-index: 9999;
        }

        .whatsapp-tooltip:before {
            content: '';
            position: absolute;
            left: -6px;
            top: 50%;
            transform: translateY(-50%);
            border-width: 6px 6px 6px 0;
            border-style: solid;
            border-color: transparent #333 transparent transparent;
        }

        .whatsapp-scroll:hover .whatsapp-tooltip {
            opacity: 1;
            visibility: visible;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

      
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            min-height: 200vh; /* Extra height for scrolling */
            background: linear-gradient(to bottom, #f0f0f0, #e0e0e0);
        }
        
        .content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .section {
            background: white;
            padding: 40px;
            margin: 20px 0;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        h1, h2 {
            color: #333;
        }
        
        p {
            line-height: 1.6;
            color: #666;
        }

       
        @media (max-width: 768px) {
            .whatsapp-container {
                left: 15px;
                bottom: 15px;
            }
            
            .whatsapp-scroll {
                width: 50px;
                height: 50px;
                font-size: 25px;
            }
            
            .whatsapp-tooltip {
                left: 60px;
                font-size: 12px;
                padding: 6px 12px;
            }
        }



.social-icons {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 12px;
}

.social-icons li a {
    color: #ccc;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.social-icons li a:hover {
    color: #fff;
}





@media (max-width: 480px) {
   
    .header-container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .header-right {
        gap: 8px;
        margin-left: 20px;
    }
    
    .enquiry-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .social-icons {
        gap: 6px;
    }
    
    .social-icons a {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .contact-hero {
        padding: 100px 0 50px;
    }
    
    .contact-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .contact-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
        padding: 0 10px;
    }
    
    .enquiry-btn.animate__fadeInUp {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .address-section {
        padding: 50px 0;
    }
    
    .section-main-title {
        font-size: 22px;
    }
    
    .section-subtitle {
        font-size: 12px;
        letter-spacing: 1px;
    }
    
    .address-card {
        margin-bottom: 25px;
    }
    
    .address-header {
        padding: 18px;
        flex-direction: column;
        text-align: center;
    }
    
    .address-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .address-title {
        font-size: 18px;
    }
    
    .address-body {
        padding: 20px;
    }
    
    .address-text {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .map-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
  
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-form-container {
        padding: 25px 15px;
        margin-bottom: 25px;
    }
    
    .form-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .form-label {
        font-size: 14px;
    }
    
    .form-control {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    textarea.form-control {
        min-height: 120px;
    }
    
    .submit-btn {
        padding: 15px 20px;
        font-size: 16px;
    }
    
 
    .contact-info-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .contact-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .contact-card-title {
        font-size: 18px;
    }
    
    .contact-card-text {
        font-size: 14px;
    }
    
    .contact-link {
        font-size: 14px;
    }
    
    .footer .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    
    .footer-logo-img {
        max-width: 140px;
        margin-bottom: 20px;
    }
    
    .footer-logo p {
        font-size: 14px;
        line-height: 1.6;
        max-width: 100%;
        margin-bottom: 25px;
    }
    
    .footer-contact a {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .footer-contact a i {
        margin-right: 10px;
        font-size: 16px;
    }
    
    .footer-links .link-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .footer-links ul li {
        margin-bottom: 10px;
    }
    
    .footer-links ul li a {
        font-size: 13px;
    }
    
    .social-icons {
        justify-content: flex-start;
        margin-top: 15px;
    }
    
    .social-icons li a {
        font-size: 16px;
    }
    
    
    .footer-copyright {
        padding: 15px 0;
    }
    
    .footer-copyright p {
        font-size: 12px;
        text-align: center;
    }
    
    .whatsapp-container {
        left: 10px;
        bottom: 10px;
    }
    
    .whatsapp-scroll {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .whatsapp-tooltip {
        left: 55px;
        font-size: 11px;
        padding: 5px 10px;
    }
    
    .mobile-sidebar {
        width: 90%;
        max-width: 300px;
    }
    
    .sidebar-links a {
        font-size: 16px;
        padding: 12px 15px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
   
    .enquiry-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
}


@media (max-width: 576px) {
    .row {
        margin-left: -10px;
        margin-right: -10px;
    }
    
    .col-6, .col-12, .col-sm-4, .col-md-6, .col-lg-4 {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .contact-form-container {
        margin-bottom: 20px;
    }
}

@media (max-width: 360px) {
    .mobile-sidebar {
        width: 95%;
    }
    
    .sidebar-header {
        padding: 20px 15px;
    }
    
    .sidebar-logo {
        height: 35px;
    }
    
    .sidebar-links a {
        padding: 10px 15px;
        font-size: 15px;
    }
}
@media (max-width: 480px) {
    
    .header-container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .header-right {
        gap: 8px;
        margin-left: 15px;
    }
    
    .enquiry-btn {
        padding: 8px 16px;
        font-size: 12px;
        display: none; 
    }
    
    .social-icons {
        gap: 6px;
        display: none; 
        margin-bottom: 10px;
    }
    
    .social-icons a {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
 
    .hamburger-menu {
        margin-left: auto;
    }
    
 
    .contact-hero {
        padding: 100px 0 50px;
    }
    
    .contact-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .contact-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
        padding: 0 10px;
    }
    
    .enquiry-btn.animate__fadeInUp {
        padding: 10px 20px;
        font-size: 14px;
        display: inline-block; 
    }
    

    .address-section {
        padding: 50px 0;
    }
    
    .section-main-title {
        font-size: 22px;
    }
    
    .section-subtitle {
        font-size: 12px;
        letter-spacing: 1px;
    }
    
    .address-card {
        margin-bottom: 25px;
    }
    
    .address-header {
        padding: 18px;
        flex-direction: column;
        text-align: center;
    }
    
    .address-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .address-title {
        font-size: 18px;
    }
    
    .address-body {
        padding: 20px;
    }
    
    .address-text {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .map-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
 
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-form-container {
        padding: 25px 15px;
        margin-bottom: 25px;
    }
    
    .form-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .form-label {
        font-size: 14px;
    }
    
    .form-control {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    textarea.form-control {
        min-height: 120px;
    }
    
    .submit-btn {
        padding: 15px 20px;
        font-size: 16px;
    }
   
    .contact-info-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .contact-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .contact-card-title {
        font-size: 18px;
    }
    
    .contact-card-text {
        font-size: 14px;
    }
    
    .contact-link {
        font-size: 14px;
    }
    

    .footer .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .footer-logo-img {
        max-width: 140px;
        margin-bottom: 20px;
    }
    
    .footer-logo p {
        font-size: 14px;
        line-height: 1.6;
        max-width: 100%;
        margin-bottom: 25px;
    }
    
    .footer-contact a {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .footer-contact a i {
        margin-right: 10px;
        font-size: 16px;
    }
    
    .footer-links .link-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .footer-links ul li {
        margin-bottom: 10px;
    }
    
    .footer-links ul li a {
        font-size: 13px;
    }
    
    .social-icons {
        justify-content: flex-start;
        margin-top: 15px;
        display: flex; 
    }
    
    .social-icons li a {
        font-size: 16px;
    }
 
    .footer-copyright {
        padding: 15px 0;
    }
    
    .footer-copyright p {
        font-size: 12px;
        text-align: center;
    }
    
    
    .whatsapp-container {
        left: 10px;
        bottom: 10px;
    }
    
    .whatsapp-scroll {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .whatsapp-tooltip {
        left: 55px;
        font-size: 11px;
        padding: 5px 10px;
    }
    
 
    .mobile-sidebar {
        width: 85%;
        max-width: 280px;
    }
    
    .sidebar-header {
        padding: 20px 15px;
    }
    
    .sidebar-logo {
        height: 35px;
    }
    
    .sidebar-links a {
        font-size: 16px;
        padding: 12px 15px;
    }
    
    .sidebar-footer {
        padding: 20px 15px;
    }
    
    .sidebar-footer .enquiry-btn {
        font-size: 14px;
        padding: 10px;
    }
    
    .sidebar-social h4 {
        font-size: 14px;
    }
    
    .sidebar-social-icons a {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .desktop-nav .nav-links {
        display: none;
    }
    
    .desktop-nav .header-right {
        display: none; 
    }
    
    .hamburger-menu {
        display: flex;
        margin-left: auto;
    }
    .header-container {
        justify-content: space-between;
    }
    
    .logo {
        flex-shrink: 0;
    }
    
   
    .enquiry-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
}


@media (max-width: 480px) {
    .sidebar-overlay.active {
        backdrop-filter: blur(2px);
    }
}
.footer {
    position: relative;
    overflow: hidden;
    color: #fff;
    padding-top: 80px;
}

.footer-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;     
    z-index: 0;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
background: rgba(75, 106, 164, 0.65);
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-logo-img {
    width: 160px;
    margin-bottom: 15px;
}

.footer p {
    color: #ddd;
    font-size: 14px;
    line-height: 1.7;
}

.social-icons {
    list-style: none;
    padding: 0;
    margin-top: 15px;
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #fff;
    font-size: 16px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #00bfff;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ddd;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.link-title {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-contact a {
    display: block;
    margin-bottom: 10px;
    color: #ddd;
    font-size: 14px;
}

.footer-contact i {
    margin-right: 8px;
    color: #00bfff;
}

.footer-copyright {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.6);
    padding: 15px 0;
    margin-top: 50px;
    font-size: 14px;
}

.footer-copyright a {
    color: #00bfff;
    text-decoration: none;
}

@media (min-width: 992px) {
    .footer-copyright .footer-links {
        text-align: right;
    }
}

@media (max-width: 991px) {

    .footer {
        padding-top: 50px;
    }

    .footer-logo {
        text-align: center;
        margin-bottom: 30px;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-links {
        margin-bottom: 25px;
        text-align: center;
    }

    .footer-contact {
        text-align: center;
    }

    .footer-copyright .row {
        text-align: center;
    }

    .footer-copyright .footer-links {
        margin-top: 10px;
    }
}
.footer-copyright p {
    margin: 0;
    white-space: nowrap;   
}

.footer-copyright .row {
    align-items: center;
}

.footer-copyright .col-lg-6 {
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .footer-copyright p {
        white-space: normal;
        text-align: center;
    }
}
.footer a {
    color: #ddd;
    transition: color 0.2s ease;
}

.footer a:hover {
    color: #00bfff;  /* simple blue */
}

.social-icons a {
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #00bfff;
    transform: translateY(-3px) scale(1.15);
    text-shadow: 0 0 10px rgba(0,191,255,0.9),
                 0 0 20px rgba(0,191,255,0.7);
}
.footer-contact i {
    transition: all 0.3s ease;
}

.footer-contact a:hover i {
   color: #00bfff; 
}
