  * {
      scroll-behavior: smooth;
    }

.video-hero-section {
            position: relative;
            width: 100%;
            height: 100vh;
            min-height: 600px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            object-fit: cover;
            pointer-events: none;
        }

        /* REMOVED the dark overlay completely for transparent text effect */

        .content-wrapper {
            position: relative;
            z-index: 3;
            width: 100%;
            max-width: 1200px;
            padding: 0 20px;
            text-align: center;
            margin-top: 435px;
        }

        .max-w-screen-2xl {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        .hero-title {
            font-size: 45px;
            font-weight: 700; /* Increased weight for better visibility */
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: -0.5px;
            color: #ffffff;
            /* Stronger text shadow for better contrast */
            text-shadow: 
                0 2px 10px rgba(0, 0, 0, 0.8),
                0 4px 20px rgba(0, 0, 0, 0.6),
                0 0 40px rgba(0, 0, 0, 0.4);
            animation: fadeInUp 1s ease-out 0.2s both;
            /* Optional: Add a subtle text outline */
            -webkit-text-stroke: 1px rgba(0, 0, 0, 0.3);
            text-stroke: 1px rgba(0, 0, 0, 0.3);
        }

        .hero-subtitle {
            font-size: 18px;
            max-width: 800px;
            margin: 0 auto 2rem;
            line-height: 1.6;
            font-weight: 600; /* Increased weight for better visibility */
            color: #ffffff;
            /* Stronger text shadow */
            text-shadow: 
                0 1px 8px rgba(0, 0, 0, 0.8),
                0 2px 15px rgba(0, 0, 0, 0.6);
            animation: fadeInUp 1s ease-out 0.4s both;
            /* Optional semi-transparent background for subtitle only */
            /* Uncomment the line below if you want a subtle background for the subtitle */
            /* background: rgba(0, 0, 0, 0.2); */
            /* padding: 10px 20px; */
            /* border-radius: 10px; */
            /* display: inline-block; */
        }

        /* Optional: Add a transparent background container for all text */
        .text-container {
            /* Uncomment the block below if you want a subtle transparent background for all text */
            /* 
            background: rgba(0, 0, 0, 0.15);
            backdrop-filter: blur(5px);
            padding: 40px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            */
        }

        .hero-cta {
            background: linear-gradient(135deg, #4f46e5, #7c3aed);
            color: white;
            border: none;
            padding: 16px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 
                0 8px 25px rgba(79, 70, 229, 0.4),
                0 2px 10px rgba(0, 0, 0, 0.3); /* Added black shadow for contrast */
            animation: fadeInUp 1s ease-out 0.6s both;
            position: relative;
            z-index: 4;
        }

        .hero-cta:hover {
            transform: translateY(-3px);
            box-shadow: 
                0 12px 30px rgba(79, 70, 229, 0.6),
                0 4px 15px rgba(0, 0, 0, 0.4);
            background: linear-gradient(135deg, #5b55e8, #8b5cf6);
        }

        .hero-cta:active {
            transform: translateY(-1px);
        }

        .sound-toggle {
            position: absolute;
            bottom: 30px;
            right: 30px;
            z-index: 4;
            background: rgba(0, 0, 0, 0.5);
            border: 2px solid rgba(255, 255, 255, 0.2);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .sound-toggle:hover {
            background: rgba(0, 0, 0, 0.7);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .loading-indicator {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #000;
            z-index: 5;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: opacity 0.5s ease;
        }

        .spinner {
            width: 60px;
            height: 60px;
            border: 5px solid rgba(255, 255, 255, 0.1);
            border-top: 5px solid #7c3aed;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-bottom: 20px;
        }

        .loading-text {
            font-size: 1.2rem;
            color: #aaa;
        }

        .video-credit {
            position: absolute;
            bottom: 30px;
            left: 30px;
            z-index: 4;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.7);
            background: rgba(0, 0, 0, 0.5);
            padding: 5px 10px;
            border-radius: 4px;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.8rem;
                text-shadow: 
                    0 2px 8px rgba(0, 0, 0, 0.8),
                    0 4px 15px rgba(0, 0, 0, 0.6);
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
                padding: 0 10px;
                text-shadow: 
                    0 1px 6px rgba(0, 0, 0, 0.8),
                    0 2px 10px rgba(0, 0, 0, 0.6);
            }
            
            .sound-toggle {
                bottom: 20px;
                right: 20px;
                width: 45px;
                height: 45px;
            }
            
            .video-credit {
                bottom: 20px;
                left: 20px;
                font-size: 0.7rem;
            }
            
            .hero-cta {
                padding: 14px 32px;
                font-size: 1rem;
            }
            
            .content-wrapper {
              position: relative;
              z-index: 1;
              width: 100%;
              max-width: 1200px;
              padding: 0 20px;
              text-align: center;
              margin-top: 435px;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2.2rem;
                text-shadow: 
                    0 2px 6px rgba(0, 0, 0, 0.8),
                    0 4px 12px rgba(0, 0, 0, 0.6);
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .sound-toggle {
                bottom: 15px;
                right: 15px;
                width: 40px;
                height: 40px;
            }
            
            .video-credit {
                bottom: 15px;
                left: 15px;
            }
            
            .content-wrapper {
              position: relative;
              z-index: 1;
              width: 100%;
              max-width: 1200px;
              padding: 0 20px;
              text-align: center;
              margin-top: 250px;
            }
        }

        /* Fallback for when video fails to load */
        .video-fallback {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #1e1b4b, #0f172a);
            z-index: 1;
            display: none;
        }

        /* Subtle vignette effect to improve text readability without overlay */
        .vignette {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
            pointer-events: none;
            background: radial-gradient(circle at center, transparent 30%, rgba(0,0,0,0.1) 70%);
        }
        
        @media only screen and (max-width: 600px) {
            .video-hero-section {
              position: relative;
              width: 100%;
             height: 27vh;
    min-height: 237px;
              overflow: hidden;
              display: flex;
              align-items: center;
              justify-content: center;
            }
        }






       
        /* ===========================
           CONTACT SECTION START
        ============================ */

        .avi-contact-section {
            position: relative;
            padding: 40px 0;
            background: transparent;
            overflow: hidden;
          
        }

        .avi-contact-section::before {
            position: absolute;
            content: "";
            width: 450px;
            height: 450px;
            background: rgba(255,255,255,0.04);
            border-radius: 50%;
            top: -150px;
            left: -150px;
            filter: blur(40px);
        }

        .avi-contact-section::after {
            position: absolute;
            content: "";
            width: 350px;
            height: 350px;
            background: rgba(255,255,255,0.03);
            border-radius: 50%;
            bottom: -100px;
            right: -100px;
            filter: blur(40px);
        }

        .avi-contact-title {
            font-size: 52px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 15px;
            animation: fadeUp 1s ease;
        }

        .avi-contact-subtitle {
            color: rgba(255,255,255,0.75);
            margin-bottom: 60px;
            max-width: 650px;
            line-height: 1.8;
            animation: fadeUp 1.2s ease;
        }

        /* ===========================
           FORM BOX
        ============================ */

        .avi-contact-form-box {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            padding: 40px;
            border-radius: 30px;
            backdrop-filter: blur(10px);
            transition: 0.4s ease;
            animation: fadeLeft 1s ease;
        }

        .avi-contact-form-box:hover {
            transform: translateY(-8px);
            border-color: rgba(255,255,255,0.2);
            box-shadow: 0 20px 50px rgba(255,255,255,0.06);
        }

        .avi-contact-form-title {
            color: #fff;
            font-size: 30px;
            font-weight: 700;
            margin-bottom: 30px;
        }

        .avi-contact-input {
            width: 100%;
            height: 58px;
            border-radius: 14px;
            border: 1px solid rgba(255,255,255,0.12);
            background: rgba(255,255,255,0.03);
            color: #fff;
            padding: 0 20px;
            margin-bottom: 22px;
            transition: 0.3s ease;
        }

        .avi-contact-input:focus {
            outline: none;
            border-color: #fff;
            box-shadow: 0 0 15px rgba(255,255,255,0.15);
            background: rgba(255,255,255,0.05);
        }

        .avi-contact-input::placeholder {
            color: rgba(255,255,255,0.65);
        }

        .avi-contact-select option {
            color: #000;
        }

        .avi-contact-btn {
            width: 100%;
            height: 58px;
            border: none;
            border-radius: 14px;
            background: #fff;
            color: #000;
            font-weight: 700;
            font-size: 17px;
            position: relative;
            overflow: hidden;
            transition: 0.4s ease;
        }

        .avi-contact-btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 30px rgba(255,255,255,0.2);
            background: #e9e9e9;
        }

        /* ===========================
           OFFICE BOX
        ============================ */

        .avi-office-wrapper {
            animation: fadeRight 1s ease;
        }

       /* ===========================
   OFFICE CARD UPDATED STYLE
=========================== */

.avi-office-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 28px;
    overflow: hidden;
    margin-bottom: 25px;
    transition: 0.4s ease;

    display: flex;
    align-items: stretch;
    min-height: 260px;
}

.avi-office-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 20px 50px rgba(255,255,255,0.06);
}

/* SMALL MAP */

.avi-office-map {
    width: 38%;
    min-width: 38%;
}

.avi-office-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* CONTENT */

.avi-office-content {
    width: 62%;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* MOBILE RESPONSIVE */

@media (max-width: 767px) {

    .avi-office-card {
        flex-direction: column;
    }

    .avi-office-map,
    .avi-office-content {
        width: 100%;
    }

    .avi-office-map {
        height: 220px;
    }

}

        /* ===========================
           ANIMATIONS
        ============================ */

        @keyframes fadeLeft {
            from {
                opacity: 0;
                transform: translateX(-60px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeRight {
            from {
                opacity: 0;
                transform: translateX(60px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ===========================
           RESPONSIVE
        ============================ */

        @media (max-width: 991px) {

            .avi-contact-title {
                font-size: 40px;
            }

            .avi-office-wrapper {
                margin-top: 40px;
            }

        }

        @media (max-width: 767px) {

            .avi-contact-section {
                padding: 70px 0;
            }

            .avi-contact-title {
                font-size: 32px;
            }

            .avi-contact-form-box,
            .avi-office-content {
                padding: 25px;
            }

            .avi-office-heading {
                font-size: 22px;
            }

        } 
        .avi-office-text a{
            color: #fff;
        }




/* Extra small devices (phones, 576px and down) */
@media only screen and (max-width: 576px) {

          .avi-contact-section {
    padding: 40px 0 0px;
  }
   .avi-office-wrapper {
    margin-top: 0px;
  }
}