* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Tajawal', Arial, sans-serif;
        }

        body {
            background-color: #ffffff;
            color: #003f62;
            width: 100%;
            min-height: 100vh;
            position: relative;
            overflow-x: hidden;
        }

        /* Dynamic Background Elements */
        .bg-animation-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -3;
            overflow: hidden;
        }

        .bg-circle {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle at center, rgba(249, 157, 28, 0.2), rgba(249, 157, 28, 0));
            filter: blur(40px);
        }

        .bg-circle-1 {
            width: 600px;
            height: 600px;
            top: -200px;
            left: -200px;
            animation: float-circle 25s infinite alternate ease-in-out;
        }

        .bg-circle-2 {
            width: 800px;
            height: 800px;
            bottom: -300px;
            right: -300px;
            animation: float-circle 30s infinite alternate-reverse ease-in-out;
        }

        .bg-circle-3 {
            width: 400px;
            height: 400px;
            top: 40%;
            left: 60%;
            animation: float-circle 20s infinite alternate ease-in-out;
        }

        @keyframes float-circle {
            0% {
                transform: translate(0, 0);
            }
            100% {
                transform: translate(100px, 100px);
            }
        }

        .bg-line {
            position: absolute;
            background: linear-gradient(90deg, rgba(249, 157, 28, 0), rgba(249, 157, 28, 0.2), rgba(249, 157, 28, 0));
            height: 1px;
            width: 100%;
            transform-origin: left;
        }

        .bg-line-1 {
            top: 20%;
            animation: line-animation 15s infinite alternate ease-in-out;
        }

        .bg-line-2 {
            top: 50%;
            animation: line-animation 20s infinite alternate-reverse ease-in-out;
        }

        .bg-line-3 {
            top: 80%;
            animation: line-animation 25s infinite alternate ease-in-out;
        }

        @keyframes line-animation {
            0% {
                transform: scaleX(0.5) translateY(0);
                opacity: 0.3;
            }
            50% {
                transform: scaleX(1.2) translateY(20px);
                opacity: 0.7;
            }
            100% {
                transform: scaleX(0.8) translateY(0);
                opacity: 0.3;
            }
        }

        .floating-dots {
            position: absolute;
            width: 100%;
            height: 100%;
            z-index: -2;
        }

        .dot {
            position: absolute;
            width: 3px;
            height: 3px;
            background-color: rgba(249, 157, 28, 0.3);
            border-radius: 50%;
        }

        /* Background gradient effects */
        body::before {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 40%;
            background: radial-gradient(ellipse at bottom, rgba(249, 157, 28, 0.3) 0%, rgba(0, 63, 98, 0) 70%);
            z-index: -1;
        }

        body::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 30%;
            background: linear-gradient(to top, rgba(249, 157, 28, 0.2) 0%, rgba(0, 63, 98, 0) 100%);
            z-index: -2;
        }

        /* Navigation Bar - Glassmorphism */
        .navbar-container {
            display: flex;
            justify-content: center;
            width: 100%;
            position: fixed;
            top: 20px;
            left: 0;
            z-index: 1000;
        }

        .navbar {
            display: flex;
            justify-content: center;
            align-items: center;
            width: auto;
            max-width: 700px;
            padding: 10px 40px;
            background: #003f62;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 15px;
            border: 1px solid rgba(0, 63, 98, 0.1);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
            position: relative;
            opacity: 1 !important;
            visibility: visible !important;
        }

        .navbar .logo {
            position: static;
            transform: none;
            opacity: 1 !important;
            visibility: visible !important;
        }

        .navbar .nav-links {
            position: static;
            transform: none;
            opacity: 1 !important;
            visibility: visible !important;
            display: flex !important;
        }


        .logo {
            display: flex;
            align-items: center;
            opacity: 1 !important;
            transform: translateY(0) !important;
        }

        .logo img {
            height: 80px;
            width: auto;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            opacity: 1 !important;
            visibility: visible !important;
        }

        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-size: 16px;
            font-weight: bold;
            opacity: 1 !important;
            transform: translateY(0) !important;
            transition: color 0.3s, transform 0.3s;
            position: relative;
        }

        .nav-links a:hover {
            color: #f99d1c;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #f99d1c;
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .book-call-btn {
            background-color: #f99d1c;
            color: #ffffff;
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            opacity: 0;
            transform: translateY(-20px);
            transition: background-color 0.3s, transform 0.3s;
        }

        .book-call-btn:hover {
            background-color: rgba(249, 157, 28, 0.8);
            transform: translateY(-23px);
        }

        .burger-menu {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 50px;
            height: 40px;
            cursor: pointer;
            padding: 8px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            z-index: 1002;
        }

        .burger-menu:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(249, 157, 28, 0.3);
            transform: scale(1.05);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .burger-menu span {
            display: block;
            height: 3px;
            width: 100%;
            background-color: #ffffff;
            border-radius: 3px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .menu-close {
            display: none;
            width: 50px;
            height: 40px;
            cursor: pointer;
            padding: 8px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            z-index: 1002;
            align-items: center;
            justify-content: center;
        }

        .menu-close:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(249, 157, 28, 0.3);
            transform: scale(1.05);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .menu-close span {
            font-size: 24px;
            font-weight: bold;
            color: #ffffff;
            line-height: 1;
        }

        /* Hero Section */
        .hero-section {
            position: relative;
            height: 100vh;
            min-height: 600px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #003f62 0%, #1a4d6b 50%, #2d5a7c 100%);
            z-index: 1;
            width: 100%;
        }

        .hero-bg-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 10%;
            z-index: -2;
            min-height: 100vh;
            display: block;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(0, 63, 98, 0.2) 0%, rgba(0, 63, 98, 0.6) 50%, rgba(0, 63, 98, 0.9) 100%);
            z-index: -1;
        }

        .hero-content {
            text-align: center;
            color: #ffffff;
            z-index: 10;
            max-width: 800px;
            padding: 0 20px;
            opacity: 1;
            transform: translateY(0);
            position: relative;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .hero-logo {
            margin-bottom: 30px;
            opacity: 1;
            transform: translateY(0);
            animation: fadeInDown 0.8s ease-out;
        }

        .hero-logo-image {
            max-width: 500px;
            width: 100%;
            height: auto;
            filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
            transition: transform 0.3s ease;
        }

        .hero-logo-image:hover {
            transform: scale(1.05);
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }


        .hero-title {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.1;
            opacity: 1;
            transform: translateY(0);
            color: #ffffff;
            background-clip: text;
            animation: gradientShift 3s ease-in-out infinite;
            text-shadow: 0 0 30px rgba(0, 63, 98, 0.3);
            letter-spacing: -0.02em;
        }

        .premium-text {
            color: #f99d1c !important;
            background: none !important;
            -webkit-background-clip: unset !important;
            -webkit-text-fill-color: #f99d1c !important;
            background-clip: unset !important;
            text-shadow: 0 0 20px rgba(249, 157, 28, 0.5);
            position: relative;
            font-weight: 800;
            animation: none !important;
        }

        @keyframes gradientShift {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }

        .hero-subtitle {
            font-size: 1.25rem;
            font-weight: 300;
            margin-bottom: 40px;
            opacity: 1;
            transform: translateY(0);
            color: #ffffff;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            opacity: 1;
            transform: translateY(0);
        }

        .btn-primary {
            background-color: #f99d1c;
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(249, 157, 28, 0.3);
        }

        .btn-primary:hover {
            background-color: #e88a0a;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(249, 157, 28, 0.4);
        }

        .btn-secondary {
            background-color: white;
            color: #003f62;
            padding: 15px 30px;
            border: 2px solid #003f62;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .btn-secondary:hover {
            background-color: #003f62;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 63, 98, 0.3);
        }

        /* Fallback classes for sections visibility */
        .features-section.loaded,
        .client-logos-section.loaded,
        .product-gallery-section.loaded,
        .faq-section.loaded,
        .professional-footer.loaded {
            opacity: 1 !important;
            transform: translateY(0) !important;
        }

        /* Emergency visibility fix — legacy hero only; cinematic hero uses hero-3d.css */
        .hero-section:not(.hero-cinematic) {
            opacity: 1 !important;
            transform: translateY(0) !important;
            display: flex !important;
            height: 100vh !important;
            min-height: 600px !important;
        }

        .hero-section.hero-cinematic {
            opacity: 1 !important;
            transform: none !important;
            display: block !important;
        }
        
        .features-section,
        .client-logos-section,
        .product-gallery-section,
        .testimonials-section,
        .faq-section,
        .professional-footer {
            opacity: 1 !important;
            transform: translateY(0) !important;
            display: block !important;
        }

        .hero-bg-image {
            display: block !important;
            opacity: 1 !important;
            visibility: visible !important;
        }

        .hero-content,
        .hero-title,
        .hero-subtitle,
        .hero-buttons,
        .hero-buttons a,
        .hero-cinematic .hero-buttons a {
            opacity: 1 !important;
            transform: translateY(0) !important;
            visibility: visible !important;
        }

        /* Force header elements to be visible */
        .navbar-container {
            opacity: 1 !important;
            visibility: visible !important;
            display: flex !important;
            justify-content: center !important;
        }

        .navbar {
            opacity: 1 !important;
            visibility: visible !important;
            display: flex !important;
            justify-content: space-between !important;
        }

        .logo,
        .nav-links {
            opacity: 1 !important;
            visibility: visible !important;
        }

        .nav-links a {
            opacity: 1 !important;
            visibility: visible !important;
            display: flex !important;
        }

        .nav-links a {
            display: block !important;
        }

        /* Force mobile menu to be hidden by default */
        @media (max-width: 768px) {
            .nav-links {
                display: none !important;
                position: fixed !important;
                top: 0 !important;
                left: 0 !important;
                width: 100vw !important;
                height: 100vh !important;
                background: rgba(255, 255, 255, 0.9) !important;
                backdrop-filter: blur(20px) !important;
                -webkit-backdrop-filter: blur(20px) !important;
                flex-direction: column !important;
                justify-content: center !important;
                align-items: center !important;
                padding: 60px 20px 20px 20px !important;
                opacity: 0 !important;
                z-index: 1001 !important;
                transform: translateY(-100%) !important;
                transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
            }
            .nav-links.active {
                display: flex !important;
                opacity: 1 !important;
                transform: translateY(0) !important;
            }
        }

        /* Mobile Responsive for Hero */
        @media (max-width: 768px) {
            .hero-section {
                height: 100vh;
                min-height: 500px;
                padding: 20px 0;
            }

            .hero-content {
                padding: 0 15px;
            }


            .hero-logo {
                margin-bottom: 20px;
            }

            .hero-logo-image {
                max-width: 350px;
            }

            .hero-title {
                font-size: 2.5rem;
                margin-bottom: 15px;
            }

            .hero-subtitle {
                font-size: 1.1rem;
                margin-bottom: 30px;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
                max-width: 280px;
                padding: 12px 25px;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .hero-logo-image {
                max-width: 280px;
            }

            .hero-title {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

        }

        /* Main Content */
        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            z-index: 1;
            position: relative;
        }

        .main-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 50px;
            width: 100%;
            opacity: 0;
            transform: translateY(30px);
        }

        .text-content {
            flex: 1;
        }

        .subtitle {
            color: #ffffff;
            font-size: 18px;
            margin-bottom: 15px;
        }

        .title {
            font-size: 48px;
            font-weight: bold;
            line-height: 1.1;
            margin-bottom: 10px;
        }

        .subtitle-large {
            font-size: 48px;
            color: #f99d1c;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .guarantee {
            font-size: 18px;
            margin-bottom: 30px;
        }

        .red-text {
            color: #ff3a3a;
        }

        .video-container {
            flex: 1;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            position: relative;
            aspect-ratio: 16/9;
            width: 100%;
            max-width: 600px;
            cursor: pointer;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .video-container::before {
            content: "";
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #00ffb3, transparent, #00ffb3, transparent);
            z-index: -1;
            animation: border-animation 8s linear infinite;
            border-radius: 12px;
        }

        @keyframes border-animation {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        .video-container video {
            width: 100%;
            height: 100%;
            border-radius: 10px;
            object-fit: cover;
        }

        .cta-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            width: 100%;
            margin-top: 20px;
            opacity: 0;
            transform: translateY(30px);
        }

        .cta-button {
            background-color: #f99d1c;
            color: #ffffff;
            font-size: 20px;
            font-weight: bold;
            padding: 15px 40px;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            margin-bottom: 15px;
            transition: transform 0.2s, box-shadow 0.2s;
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transform: rotate(45deg);
            animation: button-shine 3s infinite;
        }

        @keyframes button-shine {
            0% {
                left: -50%;
            }
            100% {
                left: 150%;
            }
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(249, 157, 28, 0.3);
        }

        .price-text {
            font-size: 14px;
            color: #ffffff;
            margin-bottom: 20px;
        }

        .students-count {
            font-size: 18px;
            margin-bottom: 10px;
        }

        .bold {
            font-weight: bold;
        }

        .divider {
            width: 100%;
            height: 1px;
            background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
            margin: 0 auto 50px;
            opacity: 0;
        }



        /* Client Logos Section */
        .client-logos-section {
            padding: 80px 0;
            text-align: center;
            opacity: 0;
            transform: translateY(30px);
            position: relative;
        }

        .client-logos-header {
            margin-bottom: 60px;
        }

        .client-logos-title {
            font-size: 48px;
            font-weight: bold;
            color: #003f62;
            margin-bottom: 20px;
            line-height: 1.1;
        }

        .client-logos-subtitle {
            font-size: 18px;
            color: #003f62;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
            opacity: 0.9;
        }

        .client-logos-container {
            background: rgba(0, 63, 98, 0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px;
            border: 1px solid rgba(0, 63, 98, 0.1);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        .client-logos-track {
            display: flex;
            animation: scroll 60s linear infinite;
            gap: 40px;
            align-items: center;
            width: max-content;
        }

        .client-logos-track:hover {
            animation-play-state: paused;
        }

        .client-logo-item {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
            flex-shrink: 0;
            min-width: 120px;
        }

        .client-logo-item:hover {
            transform: translateY(-5px);
            background: rgba(249, 157, 28, 0.1);
            border-color: rgba(249, 157, 28, 0.3);
            box-shadow: 0 10px 25px rgba(249, 157, 28, 0.2);
        }

        .client-logo {
            max-width: 100%;
            max-height: 60px;
            width: auto;
            height: auto;
            object-fit: contain;
            filter: brightness(1);
            transition: all 0.3s ease;
        }

        .client-logo-item:hover .client-logo {
            transform: scale(1.1);
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        /* Hide duplicate logos on mobile */
        @media (max-width: 768px) {
            .desktop-duplicate {
                display: none;
            }
        }

        /* Mobile Responsive for Client Logos */
        @media (max-width: 768px) {
            .client-logos-section {
                padding: 60px 0;
            }

            .client-logos-title {
                font-size: 32px;
            }

            .client-logos-subtitle {
                font-size: 16px;
            }

            .client-logos-container {
                padding: 30px 20px;
                overflow: visible;
            }

            .client-logos-track {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
                animation: none;
                width: 100%;
                transform: none;
            }

            .client-logos-track:hover {
                animation-play-state: unset;
            }

            .client-logo-item {
                padding: 20px;
                min-width: auto;
                width: 100%;
            }

            .client-logo {
                max-height: 80px;
            }
        }

        @media (max-width: 480px) {
            .client-logos-container {
                padding: 20px 15px;
            }

            .client-logos-track {
                gap: 15px;
            }

            .client-logo-item {
                padding: 15px;
            }

            .client-logo {
                max-height: 70px;
            }
        }

        /* Product Gallery Section */
        .product-gallery-section {
            padding: 80px 0;
            text-align: center;
            opacity: 0;
            transform: translateY(30px);
            position: relative;
        }

        .gallery-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .gallery-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: #003f62;
            margin-bottom: 20px;
        }

        .gallery-subtitle {
            font-size: 1.1rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        .gallery-container {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        /* Category Tabs */
        .gallery-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
            background: rgba(0, 63, 98, 0.1);
            border-radius: 15px;
            padding: 8px;
            border: 1px solid rgba(0, 63, 98, 0.2);
        }

        .gallery-tab {
            padding: 12px 24px;
            margin: 0 4px;
            background: transparent;
            border: none;
            border-radius: 10px;
            color: #003f62;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .gallery-tab.active {
            background: #f99d1c;
            color: #ffffff;
            box-shadow: 0 4px 15px rgba(249, 157, 28, 0.3);
        }

        .gallery-tab:hover:not(.active) {
            background: rgba(0, 63, 98, 0.1);
            color: #003f62;
        }

        /* Tab Content */
        .gallery-tab-content {
            display: none;
        }

        .gallery-tab-content.active {
            display: block;
        }

        /* Subcategory Cards */
        .subcategory-card {
            background: rgba(0, 63, 98, 0.05);
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 30px;
            border: 1px solid rgba(0, 63, 98, 0.1);
            transition: all 0.3s ease;
        }

        .subcategory-card:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(249, 157, 28, 0.3);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

        .subcategory-title {
            font-size: 1.4rem;
            font-weight: bold;
            color: #003f62;
            margin-bottom: 20px;
            text-align: center;
            position: relative;
        }

        .subcategory-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, #003f62, #f99d1c);
            border-radius: 2px;
        }

        /* Image Grid */
        .subcategory-images {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }

        .image-item {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
            aspect-ratio: 1;
            background: rgba(255, 255, 255, 0.05);
        }

        .image-item:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .image-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .image-item:hover img {
            transform: scale(1.1);
        }

        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 63, 98, 0.9);
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.3s ease;
            font-weight: bold;
            text-align: center;
            padding: 15px;
            font-size: 1.1rem;
            z-index: 1;
            border-radius: 12px;
        }

        .image-item:hover .image-overlay {
            opacity: 1;
        }

        /* Text Placeholder for No Images */
        .text-placeholder {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 120px;
            background: linear-gradient(135deg, rgba(0, 63, 98, 0.1) 0%, rgba(249, 157, 28, 0.1) 100%);
            border: 2px dashed rgba(0, 63, 98, 0.3);
            border-radius: 12px;
            color: #003f62;
            font-weight: 600;
            font-size: 1.1rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .text-placeholder:hover {
            background: linear-gradient(135deg, rgba(0, 63, 98, 0.15) 0%, rgba(249, 157, 28, 0.15) 100%);
            border-color: rgba(249, 157, 28, 0.5);
            transform: scale(1.02);
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .gallery-tabs {
            flex-direction: column;
                gap: 8px;
                padding: 15px;
            }

            .gallery-tab {
                margin: 0;
                text-align: center;
            }

            /* Disable zoom effect on mobile */
            .image-item:hover img {
                transform: none;
            }

            .subcategory-images {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .subcategory-card {
                padding: 20px;
                margin-bottom: 25px;
            }

            .subcategory-title {
                font-size: 1.2rem;
            }

            .text-placeholder {
                min-height: 100px;
                font-size: 1rem;
            }
        }

        /* Fallback for when GSAP doesn't load */
        .product-gallery-section.loaded {
            opacity: 1;
            transform: translateY(0);
        }

        .gallery-header {
            margin-bottom: 60px;
        }

        .gallery-title {
            font-size: 48px;
            font-weight: bold;
            color: #003f62;
            margin-bottom: 20px;
            line-height: 1.1;
        }

        .gallery-subtitle {
            font-size: 18px;
            color: #003f62;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
            opacity: 0.9;
        }

        .gallery-container {
            background: rgba(0, 63, 98, 0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }

        .gallery-card {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
            border: 1px solid rgba(255, 255, 255, 0.1);
            aspect-ratio: 9/16;
            opacity: 0;
            transform: translateY(30px);
        }

        .gallery-card:hover {
            transform: translateY(-10px);
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.4),
                0 0 30px rgba(249, 157, 28, 0.2);
            border-color: rgba(249, 157, 28, 0.3);
        }

        .gallery-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(249, 157, 28, 0.1), transparent 50%, rgba(249, 157, 28, 0.1));
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 1;
            pointer-events: none;
        }

        .gallery-card:hover::before {
            opacity: 1;
        }

        .gallery-card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .gallery-card:hover .gallery-card-image {
            transform: scale(1.05);
        }

        .gallery-card-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            padding: 20px;
            color: white;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .gallery-card:hover .gallery-card-overlay {
            transform: translateY(0);
        }

        .gallery-card-title {
            font-size: 16px;
            font-weight: bold;
            margin: 0;
        }

        .gallery-subcategories {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.8);
            padding: 20px;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            opacity: 0;
            transform: translateY(100%);
            transition: all 0.3s ease;
            overflow-y: auto;
        }

        .gallery-card:hover .gallery-subcategories {
            opacity: 1;
            transform: translateY(0);
        }

        .subcategory-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 10px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .subcategory-item:hover {
            background: rgba(249, 157, 28, 0.2);
            border-color: rgba(249, 157, 28, 0.5);
            transform: scale(1.05);
        }

        .subcategory-item img {
            width: 100%;
            height: 60px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 8px;
        }

        .subcategory-item span {
            color: white;
            font-size: 12px;
            font-weight: bold;
            text-align: center;
        }

        .subcategory-item.no-image {
            background: rgba(249, 157, 28, 0.1);
            border-color: rgba(249, 157, 28, 0.3);
        }

        .subcategory-item.no-image .no-image-placeholder {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(249, 157, 28, 0.2);
            border-radius: 50%;
            color: #f99d1c;
            margin-bottom: 8px;
        }

        .subcategory-container {
            margin-bottom: 25px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .subcategory-container:last-child {
            margin-bottom: 0;
        }

        .subcategory-name {
            font-size: 18px;
            font-weight: bold;
            color: #ffffff;
            margin-bottom: 15px;
            text-align: center;
            padding: 10px;
            background: rgba(249, 157, 28, 0.1);
            border-radius: 10px;
            border: 1px solid rgba(249, 157, 28, 0.2);
        }

        .media-files-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 15px;
            align-items: center;
        }

        .media-item {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            aspect-ratio: 1/1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .media-item:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
            border-color: rgba(249, 157, 28, 0.3);
        }

        .media-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 12px;
            transition: transform 0.6s ease;
        }

        .media-item:hover .media-image {
            transform: scale(1.05);
        }

        .media-item.no-image {
            background: rgba(249, 157, 28, 0.1);
            border: 2px solid rgba(249, 157, 28, 0.2);
        }

        .media-item.no-image:hover {
            background: rgba(249, 157, 28, 0.2);
            border-color: rgba(249, 157, 28, 0.4);
        }

        .no-image-placeholder {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(249, 157, 28, 0.2);
            border-radius: 50%;
            color: #f99d1c;
        }

        .no-image-placeholder svg {
            width: 30px;
            height: 30px;
        }

        /* Fullscreen Modal */
        .fullscreen-modal {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .modal-content {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .close-btn {
            position: absolute;
            top: 20px;
            right: 30px;
            color: #ffffff;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            z-index: 10000;
            transition: color 0.3s ease;
        }

        .close-btn:hover {
            color: #f99d1c;
        }

        .fullscreen-image {
            max-width: 90%;
            max-height: 80%;
            object-fit: contain;
            border-radius: 10px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        .image-title {
            color: #ffffff;
            font-size: 24px;
            font-weight: bold;
            margin-top: 20px;
            text-align: center;
        }

        /* Mobile Carousel */
        .mobile-carousel {
            display: none;
        }

        .carousel-container {
            position: relative;
            width: 100%;
            overflow: hidden;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .carousel-slide {
            min-width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .carousel-slide .media-item {
            width: 80%;
            max-width: 300px;
        }

        .carousel-nav {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }

        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .carousel-dot.active {
            background: #f99d1c;
        }

        .carousel-arrow {
            display: none;
        }

        /* Gallery Carousel */
        .gallery-carousel {
            display: none;
            position: relative;
            overflow: hidden;
            border-radius: 20px;
        }

        .gallery-carousel .gallery-card {
            display: none;
            width: 100%;
            height: 534px;
            margin: 0;
            opacity: 1;
            transform: none;
        }

        .gallery-carousel .gallery-card.active {
            display: block;
        }

        /* Mobile Responsive for Gallery */
        @media (max-width: 768px) {
            .product-gallery-section {
                padding: 60px 0;
            }
            
            .gallery-title {
                font-size: 32px;
            }
            
            .gallery-subtitle {
                font-size: 16px;
            }
            
            .gallery-container {
                padding: 30px 20px;
            }

            .gallery-grid {
                display: none;
            }
            
            .gallery-carousel {
                display: block;
            }
            
            .gallery-carousel .gallery-card {
            width: 100%;
            height: 534px;
            margin: 0;
        }

            .fullscreen-image {
                max-width: 95%;
                max-height: 85%;
            }

            .image-title {
                font-size: 20px;
            }
        }

        @media (max-width: 480px) {
            .gallery-container {
                padding: 20px 15px;
            }

            .category-section {
                padding: 15px;
                margin-bottom: 50px;
            }

            .category-title {
                font-size: 24px;
                letter-spacing: 0.5px;
            }

            .subcategory-section {
                padding: 15px;
                margin-bottom: 25px;
            }

            .subcategory-title {
                font-size: 18px;
            }

            .media-files-grid {
                grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
                gap: 12px;
            }

            .no-image-placeholder {
                width: 40px;
                height: 40px;
            }

            .no-image-placeholder svg {
                width: 24px;
                height: 24px;
            }
        }

        /* Testimonials Section */
        .testimonials-section {
            text-align: center;
                padding: 60px 0;
            width: 100%;
            opacity: 0;
            transform: translateY(30px);
            position: relative;
            }
            
        .testimonials-container {
            max-width: 1200px;
            margin: 0 auto;
                padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .testimonials-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .testimonials-small-title {
            font-size: 14px;
            font-weight: 600;
            color: #f99d1c;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
        }

        .testimonials-title {
            font-size: 48px;
            font-weight: bold;
            margin-bottom: 20px;
            color: #003f62;
        }

        .testimonials-title span {
            color: #f99d1c;
        }

        .testimonials-subtitle {
            font-size: 18px;
            color: #003f62;
            max-width: 800px;
            margin: 0 auto 60px;
            line-height: 1.6;
        }

        .testimonials-carousel {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }

        .testimonials-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
        }

        .testimonial-slide {
            display: none;
            padding: 40px;
            background-color: rgba(0, 63, 98, 0.05);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(0, 63, 98, 0.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
        }

        .testimonial-slide.active {
                display: block;
            animation: fadeInUp 0.6s ease-out;
        }

        .testimonial-slide:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(249, 157, 28, 0.2);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .testimonial-quote {
            margin-bottom: 30px;
        }

        .quote-icon {
            color: #f99d1c;
            opacity: 0.8;
        }

        .testimonial-text {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #003f62;
            margin-bottom: 30px;
            font-style: italic;
            position: relative;
        }

        .testimonial-text::before {
            content: '"';
            font-size: 4rem;
            color: #f99d1c;
            position: absolute;
            top: -20px;
            left: -10px;
            opacity: 0.3;
            font-family: serif;
        }

        .testimonial-text::after {
            content: '"';
            font-size: 4rem;
            color: #f99d1c;
            position: absolute;
            bottom: -40px;
            right: -10px;
            opacity: 0.3;
            font-family: serif;
        }

        .testimonial-author {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .author-info {
            text-align: center;
        }

        .author-name {
            font-size: 1.1rem;
            font-weight: 600;
            color: #003f62;
            margin-bottom: 5px;
        }

        .author-company {
            font-size: 0.95rem;
            color: #f99d1c;
            font-weight: 500;
        }


        /* Mobile Responsive */
        @media (max-width: 768px) {
            .testimonials-section {
                padding: 60px 0;
            }
            
            .testimonials-title {
                font-size: 2rem;
            }
            
            .testimonials-subtitle {
                font-size: 1rem;
            }
            
            .testimonial-slide {
                padding: 30px 20px;
            }
            
            .testimonial-text {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 480px) {
            .testimonials-container {
                padding: 0 15px;
            }
            
            .testimonials-title {
                font-size: 1.8rem;
            }
            
            .testimonial-slide {
                padding: 25px 15px;
            }
            
            .testimonial-text {
                font-size: 1rem;
            }
        }

        /* Features Section */
        .features-section {
            text-align: center;
            padding: 60px 0;
            width: 100%;
            opacity: 0;
            transform: translateY(30px);
            position: relative;
        }

        .features-title {
            font-size: 48px;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .features-subtitle {
            font-size: 18px;
            color: #003f62;
            max-width: 800px;
            margin: 0 auto 60px;
            line-height: 1.6;
        }

        .features-grid {
            display: flex;
            justify-content: space-between;
            gap: 30px;
            margin-bottom: 60px;
        }

        .feature-card {
            flex: 1;
            background-color: rgba(0, 63, 98, 0.05);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(0, 63, 98, 0.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
            height: 600px; /* Fixed height for all cards */
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(249, 157, 28, 0.2);
        }

        .feature-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(249, 157, 28, 0.05), transparent);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-image {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }

        /* Specific styling for outdoor printing image */
        .feature-card:nth-child(3) .feature-image {
            object-fit: contain;
            object-position: center;
            background-color: #f8f9fa;
        }

        .feature-content {
            padding: 30px 20px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
            justify-content: space-between;
        }

        .feature-title {
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 20px;
            text-align: center;
            color: #003f62;
        }

        .feature-description {
            font-size: 16px;
            color: #003f62;
            line-height: 1.6;
            text-align: center;
            display: -webkit-box;
            -webkit-line-clamp: 6;
            line-clamp: 6;
            -webkit-box-orient: vertical;
            overflow: hidden;
            height: 150px; /* Fixed height for descriptions */
        }

        .feature-button {
            background-color: #f99d1c;
            color: #ffffff;
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            margin-top: 20px;
            cursor: pointer;
            transition: background-color 0.3s;
            align-self: center;
        }

        .feature-button:hover {
            background-color: rgba(249, 157, 28, 0.8);
        }

      

        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(249, 157, 28, 0.1));
            opacity: 0;
            transform: translateY(30px);
            position: relative;
            box-sizing: border-box;
        }
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            box-sizing: border-box;
        }
        @media (max-width: 600px) {
            .faq-section {
                padding-left: 8px;
                padding-right: 8px;
            }
            .faq-container {
                padding-left: 0;
                padding-right: 0;
            }
            .faq-list {
                margin-left: 2px;
                margin-right: 2px;
            }
        }

        .faq-small-title {
            font-size: 18px;
            color: #003f62;
            margin-bottom: 10px;
        }

        .faq-title {
            font-size: 60px;
            font-weight: bold;
            margin-bottom: 20px;
            line-height: 1.2;
            color: #003f62;
        }

        .faq-title span {
            font-style: italic;
            font-weight: normal;
        }

        .faq-subtitle {
            font-size: 18px;
            color: #003f62;
            margin-bottom: 50px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .faq-list {
            text-align: left;
        }

        .faq-item {
            background-color: rgba(0, 63, 98, 0.05);
            border-radius: 10px;
            margin-bottom: 15px;
            overflow: hidden;
            border: 1px solid rgba(0, 63, 98, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .faq-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .faq-question {
            padding: 20px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #003f62;
        }

        .faq-question::after {
            content: "+";
            font-size: 24px;
            transition: transform 0.3s;
        }

        .faq-item.active .faq-question::after {
            content: "−";
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease, padding 0.5s ease, opacity 0.3s ease;
            color: #003f62;
            line-height: 1.6;
            text-align: left;
            font-size: 20px;
            opacity: 0;
        }


        .faq-item.active .faq-answer {
            padding: 0 20px 20px;
            max-height: 500px;
            opacity: 1;
        }


        /* Professional Footer */
        .professional-footer {
            background: transparent;
            padding: 60px 0 20px;
            margin-top: 80px;
            position: relative;
            overflow: hidden;
        }

        .professional-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(249, 157, 28, 0.5), transparent);
        }

        .professional-footer .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .professional-footer .footer-main {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-bottom: 40px;
            background: rgba(0, 63, 98, 0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
        }

        .professional-footer .footer-logo {
            height: 80px;
            width: 200px;
            margin-bottom: 20px;
            object-fit: contain;
        }

        .footer-description {
            color: #003f62;
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 20px;
            opacity: 0.9;
        }

        .company-profile-btn {
            display: inline-block;
            background: #f99d1c;
            color: #ffffff;
            padding: 12px 24px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: bold;
            font-size: 14px;
            margin-bottom: 30px;
            transition: all 0.3s ease;
            border: 2px solid #f99d1c;
        }

        .company-profile-btn:hover {
            background: transparent;
            color: #f99d1c;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(249, 157, 28, 0.3);
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: #ffffff;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .social-link:hover {
            background: #f99d1c;
            color: #ffffff;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(249, 157, 28, 0.3);
        }

        .footer-links {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .footer-column {
            display: flex;
            flex-direction: column;
        }

        .footer-title {
            color: #003f62;
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 20px;
            position: relative;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 30px;
            height: 2px;
            background: #f99d1c;
        }

        .footer-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-list li {
            margin-bottom: 12px;
        }

        .footer-list a {
            color: #003f62;
            text-decoration: none;
            font-size: 16px;
            opacity: 0.8;
            transition: all 0.3s ease;
            position: relative;
        }

        .footer-list a:hover {
            color: #f99d1c;
            opacity: 1;
            padding-left: 10px;
        }

        .contact-info {
            display: flex;
                flex-direction: column;
            gap: 15px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            color: #003f62;
            font-size: 16px;
            line-height: 1.5;
        }

        .contact-detail--ltr {
            direction: ltr;
            unicode-bidi: isolate;
            text-align: left;
        }

        html[dir="rtl"] .contact-detail--ltr {
            text-align: left;
        }

        .contact-item svg {
            color: #f99d1c;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .footer-bottom {
            background: rgba(0, 63, 98, 0.05);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .professional-footer .footer-copyright {
            color: #003f62;
            font-size: 14px;
            opacity: 0.7;
            margin: 0;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .professional-footer {
                padding: 40px 0 20px;
                margin-top: 60px;
            }

            .professional-footer .footer-container {
                padding: 0 20px;
            }

            .professional-footer .footer-main {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 30px 20px;
            }

            .footer-links {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .social-links {
            justify-content: center;
            }

            .footer-description {
                text-align: center;
            }

            .footer-brand {
                align-items: center;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .professional-footer .footer-container {
                padding: 0 15px;
            }

            .professional-footer .footer-main {
                padding: 20px 15px;
            }

            .social-links {
                gap: 10px;
            }

            .social-link {
                width: 40px;
                height: 40px;
            }

            .footer-title {
                font-size: 18px;
            }

            .footer-description {
                font-size: 14px;
            }
        }

        /* --- MOBILE RESPONSIVE FIXES --- */
        @media (max-width: 992px) {
            .navbar {
                width: 95%;
                padding: 10px 10px;
            }
            .container {
                padding: 0 10px;
            }
        }
        @media (max-width: 768px) {
            .navbar-container {
                display: none !important;
            }
            .navbar {
                flex-direction: row;
                width: 100%;
                max-width: 1100px;
                padding: 8px 4px;
            }
            .navbar .logo {
                display: none !important;
            }
            .navbar .nav-links {
                position: absolute;
                left: 0;
                transform: none;
                display: none !important;
            }
            .logo img {
                height: 80px;
            }
            .nav-links {
                position: fixed;
                top: 50%;
                left: 50%;
                transform: translateX(-50%) translateY(-50%) scale(0.95);
                width: calc(100vw - 40px);
                max-width: 400px;
                background: rgba(255, 255, 255, 0.9);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                flex-direction: column;
                align-items: center;
                gap: 0;
                padding: 30px 20px;
                display: none !important;
                z-index: 1001;
                border-radius: 20px;
                border: 1px solid rgba(0, 63, 98, 0.2);
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
                opacity: 0;
                transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            }
            .nav-links.active {
                display: flex !important;
                opacity: 1;
                transform: translateX(-50%) translateY(-50%) scale(1);
            }
            .nav-links a {
                font-size: 28px;
                font-weight: 700;
                padding: 25px 40px;
                width: 80%;
                max-width: 300px;
                color: #003f62;
                text-align: center;
                border-radius: 15px;
                margin: 15px 0;
                transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                position: relative;
                overflow: hidden;
                opacity: 1 !important;
                transform: none !important;
                background: rgba(255, 255, 255, 0.1);
                border: 2px solid rgba(255, 255, 255, 0.2);
                letter-spacing: 1px;
            }

            .nav-links a::before {
                content: '';
                position: absolute;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100%;
                background: linear-gradient(90deg, transparent, rgba(249, 157, 28, 0.2), transparent);
                transition: left 0.5s;
            }

            .nav-links a:hover {
                background: rgba(0, 63, 98, 0.1);
                color: #f99d1c;
                transform: scale(1.05);
                border-color: rgba(249, 157, 28, 0.5);
                box-shadow: 0 10px 30px rgba(249, 157, 28, 0.3);
            }

            .nav-links a:hover::before {
                left: 100%;
            }
            .book-call-btn {
                font-size: 16px;
                padding: 10px 16px;
                margin-left: 0;
            }
            .burger-menu {
                display: flex;
                margin-left: 10px;
            }

            .menu-close {
                display: flex;
                margin-left: 10px;
            }
            .container {
                padding: 0 16px;
            }
            .main-content {
                flex-direction: column;
                gap: 20px;
                align-items: stretch;
                padding: 0 4px;
            }
            .text-content {
                text-align: center;
                align-items: center;
            }
            .title, .subtitle-large {
                font-size: 32px;
                text-align: center;
            }
            .subtitle, .guarantee {
                text-align: center;
            }
            .cta-section {
                margin-top: 30px;
            }
            .students-count {
                margin-bottom: 15px;
            }
            .features-grid {
                flex-direction: column;
                gap: 20px;
            }
            .feature-card {
                height: auto;
            }
    
            .faq-section {
                padding: 40px 0;
            }
            .faq-title {
                font-size: 32px;
            }
            .final-cta-section {
                padding: 40px 0;
            }
            .final-cta-title {
                font-size: 32px;
            }
            .final-cta-logo {
                width: 70px;
                margin-bottom: 20px;
            }
            .footer {
                padding: 30px 0 10px;
            }
            .footer-container {
                padding: 0 10px;
            }
        }
        @media (max-width: 600px) {
            .container {
                padding: 0 8px;
            }
            .main-content {
                padding: 0 2px;
            }
        }
        @media (max-width: 480px) {
            .title, .subtitle-large, .features-title, .final-cta-title, .faq-title {
                font-size: 22px !important;
            }
            .footer-logo {
                height: 60px;
                width: 150px;
            }
            .floating-lang-toggle {
                left: 10px;
                bottom: 10px;
                padding: 4px 8px;
            }
        }
        .calendly-inline-widget {
            width: 100% !important;
            min-width: 320px;
            height: 700px;
        }
        .pricing-card.pro {
            border: 2.5px solid #00ffb3;
            background: linear-gradient(135deg, rgba(0,255,179,0.10) 0%, rgba(0,0,0,0.85) 100%);
            box-shadow: 0 0 32px 4px rgba(0,255,179,0.18), 0 2px 8px rgba(0,0,0,0.18);
            position: relative;
        }
        .pricing-card.pro .popular-badge {
            background: linear-gradient(90deg, #00ffb3 60%, #00c3a0 100%);
            color: #000;
            font-size: 1.05rem;
            font-weight: bold;
            box-shadow: 0 2px 16px rgba(0,255,179,0.25);
            border: 1.5px solid #fff;
            right: 32px;
            top: 10px;
        }
        .pricing-card.pro::after {
            content: '\2605'; /* Star icon */
            position: absolute;
            top: 18px;
            left: 18px;
            font-size: 2.1rem;
            color: #00ffb3;
            opacity: 0.7;
            filter: blur(0.5px);
        }
        @media (max-width: 600px) {
            .pricing-cards-wrapper {
                flex-direction: column;
                align-items: center;
                gap: 24px;
            }
            .pricing-card {
                max-width: 95vw;
                min-width: 0;
            }
            .pricing-card.pro .popular-badge {
                font-size: 0.85rem;
                padding: 2px 10px;
                right: 10px;
                top: 8px;
            }
        }

        /* WhatsApp Widget */
        .whatsapp-widget {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 2000;
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
            animation: whatsapp-pulse 2s infinite;
        }

        .whatsapp-widget:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
        }

        .whatsapp-widget svg {
            width: 32px;
            height: 32px;
            fill: white;
        }

        @keyframes whatsapp-pulse {
            0% {
                box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            }
            50% {
                box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8), 0 0 0 10px rgba(37, 211, 102, 0.1);
            }
            100% {
                box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            }
        }

        @media (max-width: 768px) {
            .whatsapp-widget {
                bottom: 20px;
                right: 20px;
                width: 55px;
                height: 55px;
            }
            
            .whatsapp-widget svg {
                width: 28px;
                height: 28px;
            }
        }
/* Language switcher */
.lang-widget {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 1100;
    display: flex;
    background: #003f62;
    border-radius: 999px;
    padding: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.lang-widget button {
    border: none;
    background: transparent;
    color: #fff;
    padding: 8px 14px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
}
.lang-widget button.active {
    background: #f99d1c;
    color: #003f62;
}
html[dir="rtl"] body { direction: rtl; }
html[dir="ltr"] body { direction: ltr; }

/* Mobile gallery dropdown */
.gallery-tab-select-wrap { display: none; margin-bottom: 20px; }
.gallery-tab-select {
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    border: 2px solid rgba(0,63,98,.15);
    font-size: 16px;
    color: #003f62;
    background: #fff;
}
@media (max-width: 768px) {
    .gallery-tabs { display: none !important; }
    .gallery-tab-select-wrap { display: block; }
}

/* Events section */
.events-section { padding: 80px 0; }
.events-header { text-align: center; margin-bottom: 40px; }
.events-title { font-size: 2.5rem; color: #003f62; margin-bottom: 12px; }
.events-subtitle { color: #666; font-size: 1.1rem; }
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.events-grid .event-item {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,.1);
    transition: transform .3s;
}
.events-grid .event-item:hover { transform: translateY(-4px); }
.events-grid img { width: 100%; height: 220px; object-fit: cover; display: block; }
.events-swiper { display: none; }
@media (max-width: 768px) {
    .events-grid { display: none; }
    .events-swiper { display: block; }
    .events-swiper .swiper-slide img {
        width: 100%; height: 260px; object-fit: cover; border-radius: 12px;
    }
}

/* Lightbox navigation */
.fullscreen-modal .modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.2);
    border: none;
    color: #fff;
    font-size: 28px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
}
.fullscreen-modal .modal-prev { left: 20px; }
.fullscreen-modal .modal-next { right: 20px; }

html[dir="rtl"] .fullscreen-modal .modal-prev {
    left: auto;
    right: 20px;
}

html[dir="rtl"] .fullscreen-modal .modal-next {
    right: auto;
    left: 20px;
}
.fullscreen-modal .modal-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 14px;
    background: rgba(0,0,0,.4);
    padding: 6px 12px;
    border-radius: 20px;
}

/* Survey minimal layout */
.survey-page {
    direction: rtl;
    text-align: right;
}

.survey-page .navbar-container,
.survey-page .professional-footer,
.survey-page .whatsapp-widget,
.survey-page .lang-widget { display: none !important; }

.survey-logo-bar {
    display: flex;
    justify-content: center;
    padding: 30px 20px 10px;
    position: relative;
    z-index: 2;
}

.survey-logo-link {
    text-decoration: none;
}

.survey-logo-bar .brand-logo-plate--hero img {
    display: block;
    width: clamp(160px, 40vw, 220px);
    height: auto;
}

.survey-intro {
    text-align: center;
    margin-bottom: 30px;
}

.survey-title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 800;
    color: #003f62 !important;
    margin: 0 0 12px;
    line-height: 1.25;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    background: none !important;
    -webkit-text-fill-color: #003f62 !important;
    text-shadow: none !important;
}

.survey-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    color: #555 !important;
    margin: 0;
    line-height: 1.65;
    opacity: 1 !important;
    transform: none !important;
}

.survey-page .success-message {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

/* Survey form */
.form-section { padding: 40px 0 80px; position: relative; z-index: 1; }
.form-container {
    background: rgba(255,255,255,.95);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 8px 32px rgba(0,0,0,.1);
    border: 1px solid rgba(0,63,98,.1);
    max-width: 900px;
    margin: 0 auto;
}
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-weight: 600; color: #003f62; margin-bottom: 8px; }
.form-group .required { color: #f99d1c; margin-left: 4px; }
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid rgba(0,63,98,.2);
    border-radius: 10px;
    font-family: inherit;
    text-align: right;
    direction: rtl;
    box-sizing: border-box;
}
.radio-group { display: flex; flex-direction: column; gap: 10px; }
.radio-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(0,63,98,.05);
    border-radius: 8px;
}
.radio-option input[type="radio"] {
    width: auto;
    margin: 0;
    flex-shrink: 0;
}
.radio-option label {
    margin: 0;
    font-weight: 500;
    cursor: pointer;
}
.submit-btn {
    width: 100%;
    padding: 16px;
    background: #f99d1c;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    font-family: inherit;
}
.submit-btn:hover {
    background: #e88a0a;
}
.form-note { text-align: center; color: #666; margin-top: 16px; font-size: 14px; }

@media (max-width: 768px) {
    .form-container { padding: 24px 16px; }
    .survey-logo-bar { padding: 24px 16px 8px; }
}

/* ── Global responsive polish ─────────────────────────────── */
html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-behavior: smooth;
}

section[id],
footer[id] {
    scroll-margin-top: clamp(72px, 12vh, 96px);
}

body {
    overflow-x: clip;
}

body {
    overflow-x: clip;
}

img,
video {
    max-width: 100%;
    height: auto;
}

@media (min-width: 481px) and (max-width: 768px) {
    .subcategory-images {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .gallery-header {
        padding: 0 16px;
    }

    .gallery-title {
        font-size: clamp(1.75rem, 7vw, 2rem) !important;
        line-height: 1.2;
    }

    .gallery-subtitle {
        font-size: 15px;
        padding: 0 8px;
    }

    .product-gallery-section {
        padding-left: 0;
        padding-right: 0;
    }

    .gallery-container {
        margin-left: 12px;
        margin-right: 12px;
        border-radius: 16px;
    }

    .events-section {
        padding: 48px 0;
    }

    .events-section .container {
        padding-left: 16px;
        padding-right: 16px;
        box-sizing: border-box;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 4px;
    }

    .events-title {
        font-size: clamp(1.6rem, 6vw, 2rem);
        padding: 0 16px;
    }

    .events-subtitle {
        font-size: 0.95rem;
        padding: 0 16px;
    }

    .container {
        padding-left: 16px;
        padding-right: 16px;
        box-sizing: border-box;
    }

    .faq-section {
        padding: 48px 16px;
    }

    .faq-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }

    .faq-subtitle {
        font-size: 15px;
        padding: 0 8px;
    }

    .faq-question {
        font-size: 1rem;
        padding: 16px 18px;
    }

    .client-logos-title {
        font-size: clamp(1.6rem, 6vw, 2rem);
    }

    .client-logos-subtitle {
        font-size: 0.95rem;
        padding: 0 16px;
    }

    .fullscreen-modal .modal-prev {
        left: 8px;
    }

    .fullscreen-modal .modal-next {
        right: 8px;
    }

    .fullscreen-modal .modal-nav {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }

    .fullscreen-modal .modal-counter {
        bottom: 12px;
        font-size: 12px;
    }

    .lang-widget {
        bottom: max(16px, env(safe-area-inset-bottom));
        left: max(16px, env(safe-area-inset-left));
    }

    .whatsapp-widget {
        bottom: max(16px, env(safe-area-inset-bottom));
        right: max(16px, env(safe-area-inset-right));
    }

    .company-profile-btn {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .gallery-container {
        margin-left: 8px;
        margin-right: 8px;
        padding: 20px 12px !important;
    }

    .subcategory-card {
        padding: 16px !important;
    }

    .image-item img {
        width: 100%;
    }

    .events-swiper .swiper-slide img {
        height: 200px;
    }

    .lang-widget button {
        padding: 7px 11px;
        font-size: 12px;
    }

    .whatsapp-widget {
        width: 50px;
        height: 50px;
    }

    .survey-logo-bar .brand-logo-plate--hero img {
        width: min(68vw, 180px);
    }

    .form-container {
        margin-left: 12px;
        margin-right: 12px;
        padding: 20px 14px !important;
    }

    .submit-btn {
        font-size: 16px;
        padding: 14px;
    }
}
