        .footer-menu-container {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .footer-menu-column {
            flex: 1;
            min-width: 120px;
        }

        .footer-menu-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

:root {
    /* Primary palette */
    --primary: #6366F1;
    --primary-light: #EEF2FF;
    --primary-dark: #4F46E5;
    /* Neutral palette */
    --dark: #1F2937;
    --light: #F9FAFB;
    --gray: #6B7280;
    --gray-light: #E5E7EB;
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    /* Border radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    --transition: all 0.3s ease;
    --ideal-one: #1F3F8F;
}

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: "Inter", sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: var(--light);
            overflow-x: hidden;
            position: relative;
        }

        /* Reusable Festival Decor Classes */
        .festival-decor {
            position: absolute;
            z-index: 0;
            pointer-events: none;
            opacity: 0.95;
            filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.15));
            mix-blend-mode: multiply;
            /* Blends the pure white background of the asset into the page */
            transition: transform 0.3s ease;
            max-width: 100%;
        }

        .decor-top-right {
            top: 5%;
            right: 2%;
            width: 250px;
            animation: float 6s ease-in-out infinite;
        }

        .decor-bottom-left {
            bottom: 5%;
            left: 2%;
            width: 220px;
            animation: floatReverse 7s ease-in-out infinite;
        }

        .decor-top-left {
            top: 5%;
            left: 2%;
            width: 200px;
            animation: floatReverse 8s ease-in-out infinite;
        }

        .decor-bottom-right {
            bottom: 5%;
            right: 2%;
            width: 240px;
            animation: float 7.5s ease-in-out infinite;
        }

        .decor-center-left {
            top: 40%;
            left: 1%;
            width: 210px;
            animation: floatReverse 6.5s ease-in-out infinite;
        }

        .decor-center-right {
            top: 40%;
            right: 1%;
            width: 230px;
            animation: float 6.5s ease-in-out infinite;
        }

        @keyframes float {
            0% {
                transform: translateY(0px) rotate(0deg);
            }

            50% {
                transform: translateY(-20px) rotate(5deg);
            }

            100% {
                transform: translateY(0px) rotate(0deg);
            }
        }

        @keyframes floatReverse {
            0% {
                transform: scaleX(-1) translateY(0px) rotate(0deg);
            }

            50% {
                transform: scaleX(-1) translateY(-20px) rotate(-5deg);
            }

            100% {
                transform: scaleX(-1) translateY(0px) rotate(0deg);
            }
        }

        /* Standard Festival Banner - Common Structure */
        .festival-banner-container {
            display: none;
            /* Hidden by default, shown by specific theme CSS */
            width: 100%;
            padding: 14px 20px;
            overflow: hidden;
            position: relative;
            z-index: 999;
            margin-top: 72px;
            /* Standard Header offset */
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            text-align: center;
        }

        .festival-banner-content {
            display: block;
            width: 100%;
            font-size: 1.3rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            transition: all 0.4s ease;
        }

        @media (max-width: 768px) {
            .festival-banner-container {
                margin-top: 60px;
                padding: 12px 10px;
            }

            .festival-banner-content {
                font-size: 1rem;
                line-height: 1.4;
            }
        }

        /* Ensuring section transparency for theme visibility */
        .hero,
        .features-section,
        .videos,
        .upcoming,
        .brochures,
        .digital-solutions,
        .testimonials {
            /* background-color: rgba(255, 255, 255, 0.6) !important; */
            backdrop-filter: blur(5px);
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: "Inter", sans-serif;
            font-weight: 700;
            line-height: 1.3;
        }

        section {
            padding: 5rem 0;
            position: relative;
        }

        .container {
            max-width: 1480px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            padding: 0 1.5rem;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3.5rem;
            position: relative;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: "";
            position: absolute;
            bottom: -0.75rem;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--ideal-one);
            /*background: var(--primary);*/
            border-radius: var(--radius-full);
        }

        .section-title p {
            font-size: 1.125rem;
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
        }

        /* Custom Button Styles */
        .idealBtn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.875rem 2rem;
            border-radius: var(--radius-md);
            font-weight: 600;
            text-decoration: none;
            text-align: center;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1rem;
            border: none;
            outline: none;
            gap: 0.5rem;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .idealBtn-primary {
            background: #1F3F8F;
            /*background: var(--primary);*/
            color: white;
            box-shadow: 0 4px 14px rgba(99, 102, 241, 0.3);
        }

        .idealBtn-primary:hover {
            background: #1F3F8F;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
        }

        .idealBtn-secondary {
            background: white;
            color: var(--primary);
            border: 1px solid var(--primary-light);
            box-shadow: var(--shadow-sm);
        }

        .idealBtn-secondary:hover {
            background: var(--primary-light);
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }




        /*  .idealBtn-outline {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            box-shadow: none;
        }

            .idealBtn-outline:hover {
                background: var(--primary-light);
                transform: translateY(-3px);
            } */

        /* Header Styles */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            box-shadow: var(--shadow-sm);
            padding: 1rem 0;
            transition: all 0.3s ease;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1480px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
        }

        .logo img {
            height: 40px;
            width: auto;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark);
        }

        .nav-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            font-size: 1.5rem;
            color: var(--dark);
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .nav-link {
            color: var(--dark);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
            padding: 0.5rem 0;
        }

        .nav-link:hover {
            color: var(--ideal-one);
        }

        /* .nav-link::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: var(--transition);
        } */

        .nav-link:hover::after {
            width: 100%;
        }

        .header-buttons {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        /* Base button for login and register */
        .idealBtn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 8px 18px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.25s ease;
            white-space: nowrap;
        }

        /* Primary button (Login) */
        .idealBtn-primary {
            background: #1F3F8F;
            color: #ffffff;
            border: 1px solid #1F3F8F;
        }

        .idealBtn-primary:hover {
            /*background: #1d4ed8;
            border-color: #1d4ed8;*/
            transform: translateY(-1px);
        }

        /* Outline button (Register) */
        .idealBtn-outline {
            border: 1.5px solid #1F3F8F;
            color: #1F3F8F;
            background: #fff;
        }

        /*  .idealBtn-outline {
            background: transparent;
            color: #2563eb;
            border: 1px solid #2563eb;
        }

            .idealBtn-outline:hover {
                background: #2563eb;
                color: #ffffff;
                transform: translateY(-1px);
            } */

        /* Icon alignment fix */
        .idealBtn lord-icon {
            display: inline-block;
        }

        /* END OF REGISTER */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 320px;
            height: 100%;
            background-color: white;
            z-index: 1100;
            padding: 2rem;
            transition: right 0.3s ease;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }

        .mobile-menu-close {
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--dark);
            cursor: pointer;
        }

        .mobile-nav {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .mobile-nav-link {
            color: var(--dark);
            text-decoration: none;
            font-size: 1.125rem;
            font-weight: 500;
            transition: var(--transition);
            padding: 0.75rem 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .mobile-nav-link:hover {
            color: var(--primary);
        }

        .mobile-header-right {
            display: none;
            align-items: center;
            gap: 1rem;
        }

        .login-btn-mobile {
            padding: 0.5rem 1rem;
            font-size: 0.875rem;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
            cursor: pointer;
            z-index: 1200;
        }

        .menu-toggle span {
            display: block;
            height: 3px;
            width: 100%;
            background-color: var(--dark);
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        /* Hero Section */
        .hero {
            position: relative;
            padding: 8rem 0 8rem;
            background-image:
                linear-gradient(rgba(7, 20, 58, 0.74), rgba(7, 20, 58, 0.74)),
                url('/assets/images/homepage/Ideal Hero.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            overflow: hidden;
        }
/*.hero {
    position: relative;
    padding: 8rem 0 8rem;
    background-image: linear-gradient(rgba(7, 20, 58, 0.74), rgba(7, 20, 58, 0.74)), url('/assets/images/homepage/Ideal Hero.jpg');
    background-size: 5px 5px;*/ /* 👈 image no size control */
    /*background-repeat: repeat;*/ /* 👈 repeat karva mate */
    /*background-position: top left;
    overflow: hidden;
}*/



        /* Animated Glowing Orbs Background */
        .hero-bg-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
            pointer-events: none;
        }

        .hero-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.6;
            animation: floatOrb 15s ease-in-out infinite alternate;
        }




        .hero-mesh {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
            background-size: 30px 30px;
            opacity: 0.3;
        }

        @keyframes floatOrb {
            0% {
                transform: translate(0, 0) scale(1);
            }

            50% {
                transform: translate(50px, -50px) scale(1.1);
            }

            100% {
                transform: translate(-50px, 50px) scale(0.9);
            }
        }

        .hero-container {
            display: flex;
            align-items: center;
            /* gap: 3rem; */
            justify-content: space-between;
            width: 100%;
            overflow: visible;
            /* allow illustrations to overflow without being clipped */
        }

        /* Give the content and image fixed, proportional space so image doesn't get cropped */
        .hero-content {
            flex: 0 0 50%;
            max-width: 620px;
            position: relative;
            z-index: 3;
            min-width: 320px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 0.5rem 1.25rem;
            border-radius: var(--radius-full);
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            font-weight: 600;
            color: white;
            font-size: 0.875rem;
        }

        .hero-badge i {
            margin-right: 0.5rem;
            font-size: 1rem;
            color: #60a5fa;
            /* Light blue accent */
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            color: white;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero-title span {
            color: #93c5fd;
            /* Soft light blue/cyan for contrast */
        }

        .hero-description {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.85);
            /* Light silver/white */
            margin-bottom: 2.5rem;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            margin-bottom: 2.5rem;
        }

        .hero-features {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .hero-feature {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 0.75rem 1.25rem;
            border-radius: var(--radius-md);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }

        .hero-feature:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .hero-feature-icon {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.875rem;
        }

        .hero-feature-text {
            font-size: 0.9375rem;
            font-weight: 600;
            color: white;
        }

        /* Premium 3D Laptop Mockup */

        .hero-laptop {
            flex: 0 0 48%;
            display: flex;
            justify-content: center;
            align-items: center;
            perspective: 1200px;
            /* Essential for 3D effect */
            position: relative;
            z-index: 2;
            min-width: 360px;
            overflow: visible;
            /* allow illustration shadows/overflow */
        }

        .laptop {
            width: 100%;
            max-width: 760px;
            transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
            transform-style: preserve-3d;
            margin-top: 1rem;
            overflow: visible;
        }

        .laptop:hover {
            transform: rotateX(0deg) rotateY(0deg) translateY(-10px);
        }

        /* Screen Bezel */
        .laptop-screen {
            background: #0f172a;
            /* Deep slate bezel */
            border-radius: 16px 16px 0 0;
            /* Only top corners rounded */
            padding: 12px 12px 20px 12px;
            /* Thicker bottom bezel */
            position: relative;
            box-shadow:
                0 0 0 2px #475569,
                /* Outer silver rim */
                inset 0 0 10px rgba(0, 0, 0, 0.8),
                /* Inner bezel shadow */
                0 25px 50px -12px rgba(0, 0, 0, 0.5);
            /* Massive drop shadow */
            border-bottom: 2px solid #1e293b;
            border-top: 1px solid #94a3b8;
        }

        /* Webcam Dot */
        .laptop-screen::before {
            content: '';
            position: absolute;
            top: 5px;
            left: 50%;
            transform: translateX(-50%);
            width: 6px;
            height: 6px;
            background: #020617;
            border-radius: 50%;
            box-shadow: inset 0 0 2px rgba(255, 255, 255, 0.2);
        }

        /* Hero Slider (Inside Laptop) */
        .hero-slider {
            width: 100%;
            height: 550px;
            /* Reduced from 700px for better proportion */
            position: relative;
            overflow: visible;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Premium Laptop Base */
        .laptop-base {
            height: 16px;
            /* Slightly thicker base */
            background: linear-gradient(to bottom, #94a3b8 0%, #cbd5e1 30%, #64748b 100%);
            /* Metallic silver gradient */
            border-radius: 0 0 16px 16px;
            position: relative;
            box-shadow:
                inset 0 2px 4px rgba(255, 255, 255, 0.8),
                /* Top highlight edge */
                0 10px 20px rgba(0, 0, 0, 0.4);
            /* Base drop shadow */
            z-index: 2;
            /* Sit slightly above screen bottom */
        }

        /* Trackpad Notch */
        .laptop-base::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 6px;
            background: #cbd5e1;
            border-radius: 0 0 6px 6px;
            box-shadow: inset 0 -1px 3px rgba(0, 0, 0, 0.3);
        }

        .modern-slider {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .modern-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transform: scale(1.1);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .modern-slide.active {
            opacity: 1;
            transform: scale(1);
            z-index: 1;
        }

        .hero-slider-img {
            width: auto;
            height: auto;
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            /* background: #ffffff; */
            border-radius: 24px;
            /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(99, 102, 241, 0.1); */
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease;
            margin: auto;
            display: block;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        /* .modern-slide:hover .hero-slider-img {
            transform: translate(-50%, -58%) scale(1.02);
            box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), 0 0 50px rgba(99, 102, 241, 0.2);
        } */



        .slider-controls {
            position: absolute;
            bottom: 20px;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: center;
            gap: 10px;
            z-index: 10;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: var(--transition);
        }

        .slider-dot.active {
            background: white;
            transform: scale(1.2);
        }

        .slider-arrows {
            position: absolute;
            top: 50%;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            transform: translateY(-50%);
            z-index: 10;
        }

        .slider-arrow {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            color: var(--primary);
            font-size: 1.25rem;
            border: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .slider-arrow:hover {
            background: white;
            transform: scale(1.1);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        /* Features Section */
        .features-section {
            background: white;
            padding: 6rem 0;
            position: relative;
            overflow: hidden;
        }



        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 2rem;
            position: relative;
            z-index: 2;
        }

        .feature-card {
            background: white;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            height: 100%;
            border: 1px solid rgba(0, 0, 0, 0.05);
            position: relative;
            z-index: 1;
        }

        .feature-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-xl);
        }

.feature-icon {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #DCE4FA;
    /*background: var(--primary-light);*/
}

        .feature-icon::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 40%;
            background: linear-gradient(to top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
            z-index: 1;
        }

        .feature-icon i {
            font-size: 3rem;
            position: relative;
            z-index: 2;
            transition: var(--transition);
            color: var(--primary);
        }

        .feature-card:hover .feature-icon i {
            transform: scale(1.1);
        }

        .feature-content {
            padding: 1.75rem;
            position: relative;
        }

            .feature-content h5 {
                font-size: 1.25rem;
                margin-bottom: 0.75rem;
                color: var(--dark);
                position: relative;
                display: inline-block;
                transition: var(--transition);
            }

        .feature-card:hover .feature-content h5 {
             color: var(--ideal-one); 
        }

        .feature-content p {
            color: var(--gray);
            font-size: 0.9375rem;
            line-height: 1.6;
        }

        /* Videos Section */
        .videos {
            background: var(--primary-light);
            padding: 6rem 0;
            position: relative;
            overflow: hidden;
        }

        .video-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            position: relative;
            z-index: 2;
        }

        .video-item {
            background: white;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            /* height: 100%; */
            display: flex;
            flex-direction: column;
            position: relative;
            z-index: 1;
            border: 1px solid rgba(0, 0, 0, 0.05);
            width: 100%;
            max-width: 350px;
            /* Control the width of each video item */
        }

        .video-item:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-xl);
        }

        .video-thumbnail {
            position: relative;
            padding-bottom: 56.25%;
            /* 16:9 Aspect Ratio */
            height: 0;
            overflow: hidden;
            cursor: pointer;
        }

        .video-thumbnail::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
            z-index: 1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .video-item:hover .video-thumbnail::before {
            opacity: 1;
        }

        .video-thumbnail img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .video-item:hover .video-thumbnail img {
            transform: scale(1.1);
        }

        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 70px;
            height: 70px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(5px);
            z-index: 5;
            transition: var(--transition);
            border: 2px solid rgba(255, 255, 255, 0.5);
        }

        .play-button::before {
            content: "";
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            border-radius: 50%;
            border: 2px solid rgba(255, 255, 255, 0.5);
            animation: pulse 2s infinite;
        }

        .play-button::after {
            content: "";
            width: 0;
            height: 0;
            border-top: 15px solid transparent;
            border-bottom: 15px solid transparent;
            border-left: 25px solid white;
            margin-left: 5px;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 1;
            }

            100% {
                transform: scale(1.5);
                opacity: 0;
            }

        }

        .video-item:hover .play-button {
            background: var(--primary);
            transform: translate(-50%, -50%) scale(1.1);
            box-shadow: 0 0 30px rgba(99, 102, 241, 0.5);
        }

        .video-info {
            padding: 1.75rem;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
            background: white;
            position: relative;
        }

        .video-info h3 {
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
            color: var(--dark);
            transition: color 0.3s ease;
        }

        .video-item:hover .video-info h3 {
            color: var(--primary);
        }

        .video-info p {
            color: var(--gray);
            font-size: 0.9375rem;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            line-height: 1.6;
        }

        /* Coming Soon Section */
        .upcoming {
            background: white;
            padding: 6rem 0;
            position: relative;
            z-index: 1;
        }

        .upcoming::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236366F1' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4H6zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.5;
            z-index: -1;
        }

        /* Replace the grid with flex layout */
        .upcoming-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            position: relative;
            z-index: 2;
        }

        .upcoming-item {
            background: white;
            border-radius: var(--radius-lg);
            padding: 2rem;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.05);
            width: 100%;
            max-width: 350px;
            /* Control the width of each item */
        }

        .upcoming-item:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-xl);
            border-color: rgba(99, 102, 241, 0.2);
        }

        .upcoming-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: var(--primary);
            color: white;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 0.25rem 0.75rem;
            border-radius: var(--radius-full);
            letter-spacing: 0.5px;
            text-transform: uppercase;
            box-shadow: 0 4px 10px rgba(99, 102, 241, 0.3);
        }

        .upcoming-item h3 {
            display: flex;
            align-items: center;
            gap: 1rem;
            font-size: 1.25rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .upcoming-item h3 svg {
            color: var(--primary);
            flex-shrink: 0;
        }

        .upcoming-item p {
            color: var(--gray);
            font-size: 0.9375rem;
            line-height: 1.6;
        }

        /* Brochures Section */
        .brochures {
            background-image:
                linear-gradient(rgba(7, 20, 58, 0.72), rgba(7, 20, 58, 0.72)),
                url('/assets/images/homepage/ideal brochture.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            padding: 6rem 0;
            position: relative;
        }

        .brochures .section-title h2,
        .brochures .section-title p {
            color: #ffffff;
        }

        .brochures .section-title h2::after {
            background: #93c5fd;
        }

        /* Modern Card Grid for Brochures */
.brochure-grid {
    display: grid;
    /*display: flex;*/
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

        /* Modern Card Design */
        .brochure-item {
            background: white;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            position: relative;
            border: 1px solid rgba(0, 0, 0, 0.05);
            width: 100%;
            max-width: 350px;
            /* height: 450px;  */
        }

        .brochure-item:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-xl);
            border-color: rgba(99, 102, 241, 0.2);
        }

        /* Image Container with Fixed Aspect Ratio */
        .brochure-thumbnail {
            position: relative;
            width: 100%;
            height: 0;
            padding-top: 66.67%;
            /* 3:2 Aspect Ratio */
            overflow: hidden;
        }

        .brochure-thumbnail img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            /* This ensures the image covers the area without distortion */
            transition: var(--transition);
        }

        .brochure-item:hover .brochure-thumbnail img {
            transform: scale(1.1);
        }

        .brochure-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /*background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 70%);*/
        }

        .brochure-info {
            padding: 1.75rem;
             display: flex; 
            flex-direction: column;
            flex-grow: 1;
            background: white;
            position: relative;
            z-index: 2;
        }

        .brochure-info h3 {
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
            color: var(--dark);
            transition: color 0.3s ease;
        }

        .brochure-item:hover .brochure-info h3 {
            color: var(--ideal-one);
        }

        .brochure-info p {
            color: var(--gray);
            margin-bottom: 1rem;
            flex-grow: 1;
            font-size: 0.9375rem;
            line-height: 1.6;
        }

        .brochure-meta {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            margin-top: auto;
        }

        .brochure-item .idealBtn {
            padding: 0.75rem 1.5rem;
            border-radius: var(--radius-md);
            font-weight: 500;
            transition: var(--transition);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            width: 100%;
            justify-content: center;
        }

        /* Load More Button */
        .load-more-container {
            display: flex;
            justify-content: center;
            margin-top: 3rem;
        }

        .load-more-btn {
            background: white;
            color: var(--primary);
            border: 2px solid var(--primary);
            padding: 0.75rem 2rem;
            border-radius: var(--radius-md);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .load-more-btn:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }

        /* Digital Solutions Section */
        .digital-solutions {
            background: white;
            padding: 6rem 0;
            position: relative;
            overflow: hidden;
        }

        /* Modern Solutions Grid */
.solutions-grid {
    display: grid;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

        /* Modern Solution Card */
        .solution-item {
            background: white;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            position: relative;
            z-index: 1;
            border: 1px solid rgba(0, 0, 0, 0.05);
            width: 100%;
            max-width: 350px;
            /* height: 450px; */
        }

        .solution-item:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-xl);
            /* border-color: rgba(99, 102, 241, 0.2); */
        }

        /* Fixed Aspect Ratio Image Container */
        .solution-image {
            position: relative;
            width: 100%;
            height: 0;
            padding-top: 66.67%;
            /* 3:2 Aspect Ratio */
            overflow: hidden;

        }

        .solution-image img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* object-fit: cover; /* This ensures the image covers the area without distortion */
            transition: var(--transition);
            object-fit: contain;
        }

        .solution-item:hover .solution-image img {
            transform: scale(1.1);
        }

        .solution-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /*background: linear-gradient(to top, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 50%);*/
            /* background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 70%); */
        }

        .solution-info {
            padding: 1.75rem;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
            background: white;
            position: relative;
            z-index: 2;
        }

        .solution-info h3 {
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
            color: var(--dark);
            transition: color 0.3s ease;
        }

        .solution-item:hover .solution-info h3 {
             color: var(--ideal-one); 
        }

        .solution-info p {
            color: var(--gray);
            margin-bottom: 1.25rem;
            flex-grow: 1;
            font-size: 0.9375rem;
            line-height: 1.6;
        }

        .solution-footer {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            margin-top: auto;
        }

        .solution-footer .idealBtn {
            width: 100%;
            justify-content: center;
        }

        /* Modern Testimonials Section */
        .testimonials {
            background: #f8fafc;
            padding: 6rem 0;
            position: relative;
        }

        .testimonials::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%236366F1' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.5;
            z-index: 0;
        }

        /* Modern Testimonial Container */
        .testimonial-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        /* Modern Testimonial Slider */
        .testimonial-slider {
            position: relative;
            margin: 3rem 0;
        }

        /* Modern Testimonial Card */
        .testimonial-card {
            background: white;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            padding: 40px;
            margin: 0 auto;
            max-width: 800px;
            position: relative;
            display: none;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .testimonial-card.active {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }

        /* Quote Icon */
        .testimonial-card::before {
            content: '"';
            font-family: Georgia, serif;
            font-size: 120px;
            color: var(--primary);
            opacity: 0.1;
            position: absolute;
            top: -20px;
            left: 20px;
            line-height: 1;
        }

        /* Testimonial Content */
        .testimonial-content {
            font-size: 1.2rem;
            line-height: 1.8;
            color: var(--dark);
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
        }

        /* Testimonial Author */
        .testimonial-author {
            display: flex;
            align-items: center;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
            padding-top: 20px;
        }

        .author-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 20px;
            border: 3px solid white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .author-info {
            flex: 1;
        }

        .author-name {
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--dark);
            margin: 0;
        }

        .author-title {
            color: var(--primary);
            font-size: 0.9rem;
            margin: 5px 0 0;
        }

        /* Testimonial Navigation */
        .testimonial-nav {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin-top: 30px;
        }

        .testimonial-arrow {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: none;
            color: var(--primary);
            font-size: 1.2rem;
        }

        .testimonial-arrow:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
        }

        .testimonial-dots {
            display: flex;
            gap: 8px;
        }

        .testimonial-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #e5e7eb;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .testimonial-dot.active {
            background: var(--primary);
            transform: scale(1.3);
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 1000;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .modal.active {
            opacity: 1;
        }

        .modal-content {
            position: relative;
            width: 90%;
            max-width: 900px;
            background-color: white;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-xl);
            transform: scale(0.9);
            transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .modal.active .modal-content {
            transform: scale(1);
        }

        .video-container {
            position: relative;
            padding-bottom: 56.25%;
            /* 16:9 Aspect Ratio */
            height: 0;
            overflow: hidden;
        }

        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .close-modal {
            position: absolute;
            top: 1rem;
            right: 1rem;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            color: white;
            font-size: 1.5rem;
            transition: var(--transition);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .close-modal:hover {
            background-color: rgba(0, 0, 0, 0.7);
            transform: scale(1.1);
        }

        /* Footer Styles */
        .footer {
            background-color: #0f172a;
            color: #f8fafc;
            padding: 4rem 1rem 2rem;
        }

        .footer-container {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }

        .footer-section {
            display: flex;
            flex-direction: column;
        }

        .footer-logo {
            margin-bottom: 1.5rem;
        }

        .footer-logo img {
            height: 40px;
            width: auto;
            margin-bottom: 1rem;
        }

        .footer-section p {
            color: #94a3b8;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            color: #f8fafc;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }

        .footer-section h3 {
            font-size: 1.25rem;
            margin-bottom: 1.5rem;
            color: white;
            position: relative;
        }

        .footer-section h3::after {
            content: "";
            position: absolute;
            bottom: -0.5rem;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--primary);
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
        }

        .footer-links li i {
            margin-right: 0.75rem;
            color: var(--primary);
            width: 16px;
        }

        .footer-links a {
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary);
        }

        .footer-bottom {
            max-width: 1280px;
            margin: 0 auto;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: #94a3b8;
            font-size: 0.875rem;
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .section-title h2 {
                font-size: 2rem;
            }

            .hero-title {
                font-size: 3rem;
            }

        }

        @media (max-width: 992px) {
            section {
                padding: 4rem 0;
            }

            .hero {
                padding: 7rem 0 4rem;
            }

            .hero-container {
                flex-direction: column;
                gap: 2rem;
            }

            .hero-content {
                max-width: 100%;
                margin-bottom: 2rem;
            }

            .hero-slider {
                height: 400px;
                width: 100%;
            }

            .testimonial-card {
                max-width: 90%;
                padding: 30px;
            }

            .nav-menu {
                display: none;
            }

            .header-buttons {
                display: none;
            }

            .mobile-header-right {
                display: flex;
            }

            .menu-toggle {
                display: flex;
            }

        }

        @media (max-width: 768px) {
            .section-title h2 {
                font-size: 1.75rem;
            }

            .hero-title {
                font-size: 2.25rem;
            }

            .hero-description {
                font-size: 1rem;
            }

            .hero-slider {
                height: 350px;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 1rem;
            }

            .hero-features {
                flex-direction: column;
                gap: 1rem;
            }

            .brochure-grid,
            .upcoming-grid,
            .solutions-grid {
                grid-template-columns: 1fr;
            }

            .footer-section h3::after {
                left: 0;
                transform: none;
            }

            /* Fix video thumbnails in mobile view */
            .video-thumbnail img {
                position: absolute;
                top: 0;
                left: 0;
                width: 100% !important;
                height: 100% !important;
                object-fit: cover !important;
            }

            /* Make video grid single column on small screens */
            .video-grid {
                grid-template-columns: 1fr !important;
            }

            .testimonial-content {
                font-size: 1rem;
            }

            .testimonial-card {
                padding: 25px;
            }

        }

        @media (max-width: 576px) {
            section {
                padding: 3rem 0;
            }

            .section-title h2 {
                font-size: 1.5rem;
            }

            .hero {
                padding: 6rem 0 3rem;
            }

            .hero-title {
                font-size: 1.75rem;
            }

            .hero-slider {
                height: 300px;
            }

            .idealBtn {
                padding: 0.625rem 1.25rem;
                font-size: 0.9375rem;
            }

            .video-grid {
                grid-template-columns: 1fr;
            }

            .feature-icon {
                height: 100px;
            }

            .testimonial-card {
                padding: 20px;
            }

            .testimonial-content {
                font-size: 0.9rem;
            }

            .author-image {
                width: 50px;
                height: 50px;
            }

        }

        /* Menu toggle animation */
        .menu-toggle.active span:nth-child(1) {
            transform: translateY(9px) rotate(45deg);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: translateY(-9px) rotate(-45deg);
        }

        /* Overlay for mobile menu */
        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1050;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Fix play button on video thumbnails */
        .play-button {
            z-index: 5 !important;
        }

        /* Ensure video thumbnails are visible */
        .video-thumbnail {
            background-color: #f0f0f0;
        }

        /* Hidden items for load more functionality */
        .hidden-item {
            display: none;
        }

        /* Swiper Slider for Brochures */
        .swiper {
            width: 100%;
            padding: 2rem 1rem;
        }

        .swiper-slide {
            height: auto;
            /* Let slides take their natural height */
        }

        /* Swiper Navigation Buttons */
        .swiper-button-next,
        .swiper-button-prev {
            background-color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            box-shadow: var(--shadow-md);
            color: var(--primary);
            transition: var(--transition);
        }

        .swiper-button-next:hover,
        .swiper-button-prev:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        .swiper-button-next::after,
        .swiper-button-prev::after {
            font-size: 1.25rem;
            font-weight: bold;
        }

        /* Swiper Pagination */
        .swiper-pagination-bullet {
            width: 10px;
            height: 10px;
            background-color: rgba(99, 102, 241, 0.3);
            opacity: 1;
            transition: var(--transition);
        }

        .swiper-pagination-bullet-active {
            background-color: var(--primary);
            transform: scale(1.3);
        }

        /* Swiper Pagination Styling */
        .swiper-pagination {
            padding: 20px 0;
            /* Add proper vertical padding */
            margin-top: 10px;
            /* Add some margin from the slides */
            position: relative;
            /* Ensure it's positioned properly */
            bottom: 0 !important;
            /* Override any absolute positioning */
        }

        .swiper-pagination-bullet {
            width: 10px;
            height: 10px;
            margin: 0 5px;
            /* Add horizontal spacing between bullets */
            background-color: rgba(99, 102, 241, 0.3);
            opacity: 1;
            transition: all 0.3s ease;
        }

        .swiper-pagination-bullet-active {
            background-color: var(--primary);
            transform: scale(1.3);
        }

        /* Add this CSS to fix mobile image display issues */
        /*@media (max-width: 768px) {*/

        /* Force hero slider visibility */
        /*.hero-slider {
                display: block !important;
                visibility: visible !important;
                opacity: 1 !important;
                height: 400px !important;
                width: 100% !important;
                position: relative !important;
                overflow: hidden !important;
                z-index: 5 !important;
            }*/

        /* Fix slider container */
        /*.modern-slider {
                position: relative !important;
                width: 100% !important;
                height: 100% !important;
                display: block !important;
            }*/

        /* Fix slide positioning */
        /*.modern-slide {
                position: absolute !important;
                top: 0 !important;
                left: 0 !important;
                width: 100% !important;
                height: 100% !important;
            }*/

        /* Ensure active slide is visible */
        /*.modern-slide.active {
                opacity: 1 !important;
                transform: scale(1) !important;
                z-index: 5 !important;
                display: block !important;
            }*/

        /* Fix image sizing within slides */
        /*.modern-slide img,
            .modern-slide a {
                width: 100% !important;
                height: 100% !important;
                object-fit: cover !important;
                display: block !important;
            }
        }*/
        /* Add these rules to your CommonPage.css media queries */

        /* ===== FIX FOR @media (max-width: 992px) ===== */
        @media (max-width: 992px) {
            /* ... existing rules ... */

            /* ADDED: Disable 3D effects on medium screens */
            .hero-laptop {
                perspective: none;
            }

            .laptop {
                max-width: 100%;
                width: 100%;
                transform-style: initial;
            }

            .laptop:hover {
                transform: translateY(-10px);
            }

            .laptop-screen {
                padding: 10px 10px 15px 10px;
                border-radius: 12px 12px 0 0;
            }

            .hero-slider {
                height: 350px;
                width: 100%;
                border-radius: 8px;
            }
        }

        /* ===== FIX FOR @media (max-width: 768px) ===== */
        @media (max-width: 768px) {
            /* ... existing rules ... */

            /* ADDED: Further optimize for tablet/mobile */
            .hero-laptop {
                flex: 1;
                width: 100%;
                max-width: 100%;
                perspective: none;
            }

            .laptop {
                max-width: 100%;
                width: 100%;
                transform-style: flat;
                margin-top: 0.5rem;
            }

            .laptop-screen {
                background: #0f172a;
                border-radius: 12px 12px 0 0;
                padding: 8px 8px 12px 8px;
                border-bottom: 2px solid #1e293b;
                border-top: 1px solid #94a3b8;
                box-shadow: 0 0 0 1px #475569, inset 0 0 5px rgba(0, 0, 0, 0.8);
            }

            .hero-slider {
                width: 100%;
                height: 300px;
                position: relative;
                /*background: #000;*/
                overflow: hidden;
                border-radius: 20px;
            }

            .laptop-base {
                height: 12px;
                border-radius: 0 0 12px 12px;
            }

            .modern-slider {
                position: relative;
                width: 100%;
                height: 100%;
                overflow: hidden;
            }

            .modern-slide {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                opacity: 0;
                transform: none;
                transition: opacity 0.8s ease;
            }

            .modern-slide.active {
                opacity: 1;
                transform: none;
                z-index: 1;
            }

            .slider-controls {
                position: absolute;
                bottom: 15px;
                left: 0;
                width: 100%;
                display: flex;
                justify-content: center;
                gap: 8px;
                z-index: 10;
            }

            .slider-dot {
                width: 10px;
                height: 10px;
                border-radius: 50%;
                background: rgba(255, 255, 255, 0.5);
                cursor: pointer;
            }

            .slider-dot.active {
                background: white;
                transform: scale(1.1);
            }
        }

        /* ===== FIX FOR @media (max-width: 576px) ===== */
        @media (max-width: 576px) {
            /* ... existing rules ... */

            /* ADDED: Optimize for small phones */
            .hero-laptop {
                flex: 1;
                width: 100%;
                max-width: 100%;
                display: flex;
                justify-content: center;
                align-items: center;
                perspective: none;
            }

            .laptop {
                width: 100%;
                max-width: 100%;
                transform-style: flat;
                margin-top: 0.25rem;
            }

            .laptop-screen {
                background: #0f172a;
                border-radius: 10px 10px 0 0;
                padding: 6px 6px 10px 6px;
                border-bottom: 1px solid #1e293b;
                border-top: 1px solid #94a3b8;
                box-shadow: 0 0 0 1px #475569, inset 0 0 3px rgba(0, 0, 0, 0.6);
            }

            .hero-slider {
                width: 100%;
                height: 250px;
                position: relative;
                /*background: #000;*/
                overflow: hidden;
                border-radius: 20px;
            }

            .laptop-base {
                height: 10px;
                border-radius: 0 0 10px 10px;
            }

            .slider-controls {
                position: absolute;
                bottom: 12px;
                left: 0;
                width: 100%;
                display: flex;
                justify-content: center;
                gap: 6px;
                z-index: 10;
            }

            .slider-dot {
                width: 8px;
                height: 8px;
            }
        }

        /* HomePage Specific Testimonials */
        /* Clean Professional Testimonials */
        .testimonials {
            background-color: #f8f9fa;
            padding: 4rem 0;
            text-align: center;
        }

        .testimonial-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
        }

        .section-title {
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: var(--ideal-one);
            /*color: #333;*/
        }

        .section-title p {
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Testimonial Carousel */
        .testimonial-carousel {
            position: relative;
            height: 320px;
            /* Fixed height to prevent layout shifts */
            margin: 0 auto;
            overflow: hidden;
        }

        .testimonial-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.5s ease, visibility 0.5s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .testimonial-slide.active {
            opacity: 1;
            visibility: visible;
        }

        /* Testimonial Card */
        .testimonial-card {
            background: white;
            border-radius: 8px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            padding: 30px;
            max-width: 700px;
            width: 100%;
            text-align: center;
            position: relative;
        }

        /* Quote Icon */
        .testimonial-card:before {
            content: '"';
            font-family: Georgia, serif;
            font-size: 80px;
            color: #6366F1;
            opacity: 0.1;
            position: absolute;
            top: 20px;
            left: 20px;
            line-height: 0;
        }

        .testimonial-content {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #555;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
            /* text-align:left; */
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 20px;
        }

        .author-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid white;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            margin-right: 15px;
        }

        .author-info {
            text-align: left;
        }

        .author-name {
            font-weight: 600;
            color: #333;
            margin: 0;
            font-size: 1rem;
        }

        .author-title {
            color: #6366F1;
            margin: 0;
            font-size: 0.9rem;
        }

        /* Navigation */
        .testimonial-nav {
            margin-top: 30px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
        }

        .testimonial-dots {
            display: flex;
            gap: 8px;
        }

        .testimonial-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: #ddd;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .testimonial-dot.active {
            background-color: #6366F1;
            transform: scale(1.2);
        }

        .nav-button {
            background-color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            color: #6366F1;
            transition: all 0.3s ease;
        }

        .nav-button:hover {
            background-color: #6366F1;
            color: white;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .testimonial-carousel {
                height: 380px;
            }

            .testimonial-card {
                padding: 25px 20px;
            }

            .testimonial-content {
                font-size: 1rem;
            }

            .testimonial-author {
                flex-direction: column;
            }

            .author-image {
                margin-right: 0;
                margin-bottom: 10px;
            }

            .author-info {
                text-align: center;
            }
        }


        /* Ensure homepage doesn't interfere with footer positioning */
        .homepage-wrapper {
            min-height: calc(100vh - 200px);
            display: flex;
            flex-direction: column;
        }

        .homepage-content {
            flex: 1;
        }