        /* -- Start : Styles for Section 1 -- */

        .fixstate-top {
            margin-top: 25px;
        }

        @media (min-width: 993px) {
            header {
                top: -74px;
            }
        }

        /* Section 1 CSS ==================== */

        * {
            box-sizing: border-box;
        }

        #section-1 {
            display: flex;
            min-height: calc(100vh - 74px);
            /* Full height minus navigation menu */
            background-color: #fff;
        }

        #section-1 .image-section {
            flex: 1;
            position: relative;
            background: #edeefd;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        #section-1 .image-section img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        #section-1 .play-button {
            position: absolute;
            width: 80px;
            height: 80px;
            background-color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        #section-1 .play-button:hover {
            transform: scale(1.1);
        }

        #section-1 .play-button::after {
            content: '';
            border-left: 20px solid #2c2d65;
            border-top: 15px solid transparent;
            border-bottom: 15px solid transparent;
            margin-left: 5px;
        }

        #section-1 .content-section {
            width: 50%;
            /* Changed from flex: 1 */
            background-color: #2c2d65;
            display: flex;
            align-items: center;
            /* Added */
        }

        /* Add these new styles */
        #section-1 .content-wrapper {
            width: 100%;
            max-width: 1120px;
            margin: 0 auto;
            display: flex;
        }

        #section-1 .content-inner {
            width: 560px;
            /* Half of 1120px */
            padding: 1rem 0rem 1rem 4rem;
            color: white;
        }


        #section-1 .callback-text {
            font-size: 1rem;
            letter-spacing: 2px;
            margin-bottom: 1rem;
        }

        #section-1 .main-heading {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            color: white !important;
        }

        #section-1 .description {
            font-size: 1rem;
            margin-bottom: 3rem;
            line-height: 1.6;
        }

        #section-1 .stats-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            position: relative;
        }

        #section-1 .stats-container::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            width: 1px;
            background-color: rgba(255, 255, 255, 0.3);
        }

        #section-1 .stats-container::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            top: 50%;
            height: 1px;
            background-color: rgba(255, 255, 255, 0.3);
        }

        #section-1 .stat-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        #section-1 .stat-icon {
            width: 40px;
            height: 40px;
            fill: white;
        }

        #section-1 .stat-number {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        #section-1 .stat-label {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .video-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }

        .video-modal.active {
            display: flex;
        }

        .video-container {
            position: relative;
            width: 80%;
            max-width: 800px;
            aspect-ratio: 16/9;
        }

        .close-button {
            position: absolute;
            top: -40px;
            right: 0;
            color: white;
            font-size: 30px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 5px;
        }

        iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        @media (max-width: 1024px) {
            #section-1 {
                flex-direction: column;
            }


            #section-1 .image-section img {
                width: 100%;
                height: auto;

            }
        }

        @media (max-width: 768px) {
            #section-1 {
                flex-direction: column;
            }

            #section-1 .content-section {
                padding: 2rem;
            }

            #section-1 .main-heading {
                font-size: 2rem;
            }

            #section-1 .stats-container {
                grid-template-columns: 1fr;
            }

            #section-1 .stats-container::before,
            #section-1 .stats-container::after {
                display: none;
            }


            #section-1 .image-section img {
                width: 100%;
                height: auto;

            }

            #section-1 .description {
                margin-bottom: 0rem !important;
            }

            #section-1 .content-section {
                padding: 1.5rem;
            }
        }

        /* Section 1 CSS ==================== */

        /* Update media queries */
        @media (max-width: 1120px) {
            #section-1 .content-inner {
                width: 100%;
                padding: 4rem 2rem;
            }
        }

        @media (max-width: 1024px) {

            #section-1 .image-section,
            #section-1 .content-section {
                width: 100%;
            }

            #section-1 .image-section {
                height: 50vh;
            }

            #section-1 .content-wrapper {
                flex-direction: column;
            }

        }



        /* Add animation styles for cards */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }



        /* Disable animation on mobile devices */
        @media (max-width: 768px) {

            .fixstate-top {
                margin-top: 0px !important;
            }


            #section-1 {
                flex-direction: column;
            }

            #section-1 .image-section,
            #section-1 .content-section {
                width: 100%;
            }

            #section-1 .image-section {
                height: 50vh;
            }

            #section-1 .content-wrapper {
                flex-direction: column;
            }

            .fix-mtop-mobile {
                margin-top: 50px;
            }
        }

        /* -- Start : Styles for Section 2 -- */
        #emirati-district {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        #emirati-district .section-card {
            display: flex;
            flex-direction: row;
            background-color: white;
            border-radius: 15px;
            overflow: hidden;
            position: relative;
        }

        #emirati-district .section-card.reverse {
            flex-direction: row-reverse;
        }

        #emirati-district .card-image {
            object-fit: cover;
            display: none;
        }

        #emirati-district .card-content {
            padding: 20px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background-color: white;
            border-radius: 15px;
        }

        /* Desktop Styles */
        @media (min-width: 769px) {
            #emirati-district .card-image.desktop {
                width: 50%;
                display: block;
                height: 400px;
            }

            #emirati-district .card-image.mobile {
                display: none;
            }

            #emirati-district .card-content {
                width: 50%;
            }
        }

        /* Mobile Styles */
        @media (max-width: 768px) {
            #emirati-district .section-card {
                flex-direction: column;
                position: relative;
                background-color: transparent;
            }

            #emirati-district .section-card.reverse {
                flex-direction: column;
                /* Ensure reverse cards stack like normal cards in mobile */
            }

            #emirati-district .card-image.desktop {
                display: none;
            }

            #emirati-district .card-image.mobile {
                display: block;
                width: 100%;
                /* Full-width images for mobile */
                height: auto;
                /* Maintain aspect ratio */
            }

            #emirati-district .card-content {
                width: 100%;
                margin: 0 auto;
                margin-top: -40px;
                /* Pull content up to overlap */
                background-color: white;
                padding: 40px;
                z-index: 2;
                border-radius: 15px;
            }

            #emirati-district .btn {
                width: 100%;
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .padding-fix-intro {
                padding: 0px 25px 25px 25px;
            }

            .hero-img-controller h1 {
                padding: 25px 25px 0px 25px;
            }
        }

        .sep-bg .lg\:pt-80 {
            padding: 0px !important;
        }

        .sep-bg {
            display: flex;
            justify-content: center;
            /* Centers the .max-w-6xl container */
            align-items: center;
            position: relative;
            background-image: url('/images/passengerslibraries/campaigns/emirati-district/dxb-img.png');
            background-position: right center;
            background-repeat: no-repeat;
            background-size: auto 310px;
            width: 100%;
            min-height: 310px;
            padding: 0 !important;
        }


        .sep-bg:has(.arabic) {
            background-image: url('/images/passengerslibraries/_dev/pod-ar-emg.png') !important;
            background-position: left center !important;
            text-align: right !important;
            padding: 0px 20px !important;
        }


        @media (max-width: 500px) {
            .sep-bg:has(.arabic) {
                padding: 0px 20px !important;
            }
        }



        .sep-bg .max-w-6xl {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            box-sizing: border-box;
            width: 100%;
            max-width: 1120px;
        }

        .sep-bg .max-w-6xl>div {
            flex: 1;
            text-align: left;
        }

        .sep-bg-content {
            width: 100%;
            margin: 0;
            padding: 0;
        }

        @media (max-width: 1120px) {
            .sep-bg .max-w-6xl {
                padding-left: 16px !important;
            }
        }

        .start-content .lg\:pt-80 {
            padding-top: 24px;
        }

        .start-content .lg\:pb-80 {
            padding-bottom: 24px;
        }