@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 66px; /* Offset for fixed navbar */
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #000000;
            color: #ffffff;
            overflow-x: hidden;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        /* Navigation Bar */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            max-width: 100%;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            z-index: 100;
            padding: 1rem 2rem;
            transition: all 0.3s ease;
            margin: 0 auto;
        }

        .navbar.scrolled {
            background: rgba(0, 0, 0, 0.95);
            border-bottom: 1px solid rgba(15, 252, 190, 0.2);
        }

        .nav-container {
            max-width: 1440px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            padding: 0 1rem;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .nav-logo img {
            height: 50px;
            width: auto;
            transition: transform 0.3s ease;
        }

        .nav-logo:hover img {
            transform: scale(1.05);
        }

        .nav-logo .sea-text {
            font-size: 0.9rem;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.7);
        }

        .nav-logo:hover {
            color: #0FFCBE !important;
            text-shadow: 0 0 10px rgba(15, 252, 190, 0.5);
        }

        .nav-logo:hover .sea-text {
            color: rgba(15, 252, 190, 0.7);
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 2.5rem;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-weight: 400;
            font-size: 1rem;
            padding: 0.5rem 0;
            transition: all 0.3s ease;
            position: relative;
            cursor: pointer;
        }

        .nav-link:hover {
            color: #0FFCBE;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #0FFCBE, rgba(15, 252, 190, 0.5));
            transition: width 0.3s ease;
        }

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

        .nav-link.active {
            color: #0FFCBE;
        }

        .nav-link.active::after {
            width: 100%;
        }

        .nav-link.coming-soon {
            color: rgba(255, 255, 255, 0.4);
            cursor: not-allowed;
        }

        .nav-link.coming-soon:hover {
            color: rgba(255, 255, 255, 0.4);
        }

        .nav-link.coming-soon::after {
            display: none;
        }

        .nav-link.coming-soon::before {
            content: 'Coming Soon';
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            margin-top: 8px;
            background: rgba(0, 0, 0, 0.9);
            color: #888888;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.75rem;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
            border: 1px solid rgba(136, 136, 136, 0.3);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }

        .nav-link.coming-soon:hover::before {
            opacity: 1;
        }

        /* Dropdown Menu */
        .dropdown-container {
            position: relative;
        }

        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 50%;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(15, 252, 190, 0.2);
            border-radius: 12px;
            padding: 0.75rem;
            min-width: 280px;
            z-index: 110;
            margin-top: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            opacity: 0;
            transform: translateX(-50%) translateY(-10px);
            transition: opacity 0.3s ease, transform 0.3s ease;
            pointer-events: none;
        }

        .dropdown-container:hover .dropdown-menu {
            display: block;
            opacity: 1;
            transform: translateX(-50%) translateY(0);
            pointer-events: auto;
        }

        .dropdown-item {
            display: block;
            color: rgba(255, 255, 255, 0.8);
            padding: 0.8rem 1.2rem;
            text-decoration: none;
            font-size: 0.95rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            white-space: nowrap;
            cursor: pointer;
        }

        .dropdown-item:hover {
            background-color: rgba(15, 252, 190, 0.15);
            color: #0FFCBE;
        }

        .dropdown-divider {
            height: 1px;
            background-color: rgba(255, 255, 255, 0.1);
            margin: 0.5rem 0;
        }

        .contact-btn {
            background: linear-gradient(135deg, #0FFCBE 0%, rgba(15, 252, 190, 0.8) 100%);
            color: #000000;
            padding: 0.6rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            cursor: pointer;
        }

        .contact-btn:hover {
            background: transparent;
            border-color: #0FFCBE;
            color: #0FFCBE;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(15, 252, 190, 0.3);
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: #ffffff;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
        }

        .mobile-menu-toggle:hover {
            color: #0FFCBE;
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            left: -100%;
            width: 80%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px);
            z-index: 200;
            transition: left 0.3s ease;
            padding: 2rem;
            border-right: 1px solid rgba(15, 252, 190, 0.2);
        }

        .mobile-menu.active {
            left: 0;
        }

        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 3rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .mobile-menu-close {
            background: none;
            border: none;
            color: #ffffff;
            font-size: 2rem;
            cursor: pointer;
        }

        .mobile-menu-close:hover {
            color: #0FFCBE;
        }

        .mobile-nav-menu {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .mobile-nav-link {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: 400;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .mobile-nav-link:hover {
            color: #0FFCBE;
            padding-left: 1rem;
        }

        .mobile-nav-link.active {
            color: #0FFCBE;
        }

        .mobile-nav-link.coming-soon {
            color: rgba(255, 255, 255, 0.4);
            cursor: not-allowed;
            position: relative;
        }

        .mobile-nav-link.coming-soon:hover {
            color: rgba(255, 255, 255, 0.4);
            padding-left: 0;
        }

        .mobile-nav-link.coming-soon::after {
            content: 'Coming Soon';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.9);
            color: #0FFCBE;
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.7rem;
            border: 1px solid rgba(15, 252, 190, 0.3);
        }

        /* Mobile Dropdown */
        .mobile-dropdown-container .mobile-nav-link {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .mobile-dropdown-menu {
            display: none;
            list-style: none;
            padding-left: 1.5rem;
            margin-top: -1rem;
            margin-bottom: 1rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out;
        }

        .mobile-dropdown-menu.active {
            display: block;
            max-height: 500px; /* A large enough value to show all items */
        }

        .mobile-dropdown-item {
            display: block;
            color: rgba(255, 255, 255, 0.7);
            padding: 0.8rem 0;
            text-decoration: none;
            font-size: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .mobile-dropdown-item:hover {
            color: #0FFCBE;
            padding-left: 0.5rem;
        }

        .mobile-dropdown-divider {
            height: 1px;
            background-color: rgba(255, 255, 255, 0.1);
            margin: 0.5rem 0;
        }

        .mobile-contact-btn {
            background: linear-gradient(135deg, #0FFCBE 0%, rgba(15, 252, 190, 0.8) 100%);
            color: #000000;
            padding: 1rem 2rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            text-align: center;
            margin-top: 2rem;
            display: block;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .mobile-contact-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(15, 252, 190, 0.3);
        }

        .mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 150;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            pointer-events: none;
        }

        .mobile-overlay.active {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .grid-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .grid-overlay {
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(128, 128, 128, 0.2) 1px, transparent 1px),
                linear-gradient(90deg, rgba(128, 128, 128, 0.2) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridPulse 4s ease-in-out infinite;
        }

        @keyframes gridPulse {
            0%, 100% { opacity: 0.8; }
            50% { opacity: 0.4; }
        }

        /* Container */
        .container {
            width: 100%;
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        @media (max-width: 1200px) {
            .container {
                max-width: 1140px;
            }
        }

        @media (max-width: 992px) {
            .container {
                max-width: 960px;
            }
        }

        @media (max-width: 768px) {
            .container {
                max-width: 720px;
                padding: 0 1.5rem;
            }
        }

        @media (max-width: 576px) {
            .container {
                max-width: 540px;
                padding: 0 1rem;
            }
        }

        .main-content-wrapper {
            position: relative;
            z-index: 2;
            padding-top: 66px; /* Space for fixed navbar */
            flex: 1 0 auto;
            display: flex;
            flex-direction: column;
            max-width: 100%;
            overflow-x: hidden;
        }

        .page-section {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 100%;
            padding: 2rem;
        }

        .main-container {
            height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            box-sizing: border-box;
        }

        .logo-section {
            text-align: center;
            animation: logoFloat 6s ease-in-out infinite;
        }

        .main-title {
            font-size: clamp(4rem, 12vw, 8rem);
            font-weight: 300;
            letter-spacing: 0.2em;
            color: #ffffff;
            text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
            text-align: center;
            line-height: 1;
        }

        .logo {
            margin-bottom: 2rem;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .logo::before {
            content: '';
            position: absolute;
            top: -2%;
            left: 50%;
            transform: translateX(-50%);
            width: 110%;
            height: 110%;
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            animation: borderGlow 3s ease-in-out infinite;
        }

        @keyframes borderGlow {
            0%, 100% { 
                border-color: rgba(255, 255, 255, 0.1);
                box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
            }
            50% { 
                border-color: rgba(255, 255, 255, 0.3);
                box-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
            }
        }

        @keyframes logoFloat {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .region {
            font-size: clamp(1.2rem, 3vw, 2rem);
            font-weight: 300;
            color: rgba(255, 255, 255, 0.6);
            letter-spacing: 0.15em;
            margin-top: 0.3rem;
            text-transform: uppercase;
            animation: fadeInUp 1s ease-out 0.3s both;
            text-align: center;
            line-height: 1;
        }

        .tagline {
            font-size: clamp(1rem, 3vw, 1.5rem);
            font-weight: 200;
            color: rgba(255, 255, 255, 0.7);
            letter-spacing: 0.1em;
            margin-top: 4rem;
            animation: fadeInUp 1s ease-out 0.5s both;
        }
        
        .animated-tagline-section {
            padding: 0 2rem;
            position: relative;
            z-index: 1;
            justify-content: center;
            padding-bottom: 4rem; /* Added space */
        }

        .animated-tagline-section .tagline {
            position: relative;
            z-index: 1;
        }
        
        .animated-tagline-section .tagline h2, .animated-tagline-section .tagline .line {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .animated-tagline-section .tagline h2 {
            font-family: 'Inter', sans-serif;
        }
        
        .animated-tagline-section .tagline.visible h2, .animated-tagline-section .tagline.visible .line {
            opacity: 1;
            transform: translateY(0);
        }

        .gallery-section {
            position: relative;
            z-index: 2;
            min-height: auto;
            padding: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background-color: transparent;
        }

        .gallery-section::before {
            display: none;
        }

        .gallery-title {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 300;
            color: #ffffff;
            text-align: center;
            margin-bottom: 4rem;
            letter-spacing: 0.1em;
            animation: fadeInUp 1s ease-out;
            position: relative;
            z-index: 3;
        }

        .gallery-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: #0FFCBE;
            border-radius: 2px;
        }

        .gallery-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 1440px;
            width: 100%;
            padding: 0 2rem;
            position: relative;
            z-index: 3;
            margin: 0 auto;
        }

        @media (max-width: 992px) {
            .gallery-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .gallery-container {
                grid-template-columns: 1fr;
                padding: 0 1rem;
            }
        }

        .gallery-container-row-2 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            max-width: 800px;
            width: 100%;
            padding: 0 20px;
            position: relative;
            z-index: 3;
            margin: 2rem auto 0;
        }

        .gallery-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 2rem;
            min-height: 350px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            z-index: 5;
        }

        .gallery-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-card.clickable:hover {
            transform: translateY(-10px) scale(1.05);
            box-shadow: 0 20px 40px rgba(15, 252, 190, 0.2);
            border-color: #0FFCBE;
            background: rgba(255, 255, 255, 0.08);
        }

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

        .gallery-card.highlighted {
            transform: translateY(-10px) scale(1.05);
            box-shadow: 0 0 40px rgba(15, 252, 190, 0.4), 0 0 15px rgba(15, 252, 190, 0.3) inset;
            border-color: #0FFCBE;
            background: rgba(255, 255, 255, 0.08);
        }

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

        .card-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            transition: transform 0.3s ease;
        }

        .card-icon svg {
            transition: transform 0.3s ease;
        }

        .gallery-card:hover .card-icon svg {
            transform: scale(1.1) rotate(5deg);
        }

        .card-title {
            font-size: 1.3rem;
            font-weight: 500;
            color: #ffffff;
            margin-bottom: 1rem;
            letter-spacing: 0.05em;
        }

        .card-description {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            font-size: 0.95rem;
        }
        
        .card-cta {
            display: flex;
            align-items: center;
            justify-content: center; /* Center since card text is centered */
            gap: 0.5rem;
            color: #0FFCBE;
            font-weight: 500;
            font-size: 0.95rem;
            margin-top: auto;
            padding-top: 1rem;
            opacity: 0;
            transform: translateY(10px);
            transition: opacity 0.3s ease, transform 0.3s ease;
            width: 100%; /* Take full width for centering */
        }

        .gallery-card.clickable:hover .card-cta,
        .ai-solution-page .gallery-card:hover .card-cta {
            opacity: 1;
            transform: translateY(0);
        }

        .ai-solution-page .gallery-card .card-cta {
            justify-content: flex-start; /* Align left for solution page cards */
        }

        .ai-solution-page .gallery-card:hover {
            transform: translateY(-10px) scale(1.05);
            box-shadow: 0 20px 40px rgba(15, 252, 190, 0.2);
            border-color: #0FFCBE;
            background: rgba(255, 255, 255, 0.08);
            cursor: pointer;
        }

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

        .ai-solution-page .gallery-card.coming-soon {
            opacity: 0.6;
            cursor: not-allowed;
            position: relative;
        }

        .ai-solution-page .gallery-card.coming-soon:hover {
            transform: none;
            box-shadow: none;
            border-color: rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.05);
        }
        
        .ai-solution-page .gallery-card.coming-soon .card-cta {
            display: none; /* Hide the 'Learn More' CTA */
        }
        
        .ai-solution-page .gallery-card.coming-soon::after {
            content: 'Coming Soon';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(0, 0, 0, 0.8);
            color: #0FFCBE;
            padding: 0.5rem 1.5rem;
            border-radius: 20px;
            font-size: 1rem;
            font-weight: 600;
            border: 1px solid #0FFCBE;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
            z-index: 10;
        }
        
        .ai-solution-page .gallery-card.coming-soon:hover::after {
            opacity: 1;
        }

        #core-tech-card .card-description {
            flex-grow: 0;
            flex-shrink: 0;
        }

        .placeholder-card {
            align-items: center;
            text-align: center;
            justify-content: center;
            aspect-ratio: 1 / 1;
            min-height: auto;
        }

        .placeholder-card:not(.clickable) {
            cursor: default !important;
        }

        .placeholder-card:not(.clickable):hover {
            transform: none;
            box-shadow: none;
            border-color: rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.05);
        }

        .placeholder-card:not(.clickable):hover::before {
            opacity: 0;
        }

        .card-image-placeholder {
            width: 100%;
            height: 70%;
            background-color: rgba(255, 255, 255, 0.08);
            border-radius: 15px;
            margin-bottom: 1.5rem;
            border: 1px dashed rgba(255, 255, 255, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.5);
            font-size: 1rem;
            font-style: italic;
        }

        .card-image-placeholder::after {
            content: 'Image Placeholder';
        }
        
        .placeholder-card .card-description {
            flex-grow: 0;
        }

        .placeholder-card .card-title {
            color: #0FFCBE;
            margin-bottom: 1.5rem;
            flex-shrink: 0;
        }

        /* Futuristic Logic Diagram Styles */
        .card-diagram-container {
            width: 100%;
            height: 150px;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .card-diagram-container svg {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        @keyframes pulse-glow {
            0%, 100% {
                filter: drop-shadow(0 0 4px rgba(15, 252, 190, 0.7));
            }
            50% {
                filter: drop-shadow(0 0 12px rgba(15, 252, 190, 1));
            }
        }

        @keyframes flow {
            to {
                stroke-dashoffset: -100;
            }
        }

        .diagram-node-shape {
            fill: #000000;
            stroke: #FFFFFF;
            stroke-width: 1.5;
            animation: pulse-glow 4s infinite ease-in-out;
        }
        
        .diagram-node-text {
            fill: #ffffff;
            font-size: 18px;
            font-weight: 500;
            text-anchor: middle;
            dominant-baseline: middle;
        }

        .diagram-connector-line {
            fill: none;
            stroke: #0FFCBE;
            stroke-width: 1.5;
            stroke-opacity: 0.5;
        }

        .diagram-flow-line {
            fill: none;
            stroke: #FFFFFF;
            stroke-width: 2;
            stroke-dasharray: 10 40;
            stroke-dashoffset: 0;
            animation: flow 3s linear infinite;
            opacity: 0.8;
        }
        
        .diagram-label-text {
            fill: #0FFCBE;
            font-size: 14px;
            font-weight: 400;
            text-anchor: middle;
        }
        
        .diagram-symbol-text {
            font-size: 18px;
        }

        .nav-dots {
            position: fixed;
            right: 30px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
        }

        .nav-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.3);
            margin: 15px 0;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-dot.active {
            background-color: #0FFCBE;
            transform: scale(1.2);
            box-shadow: 0 0 10px rgba(15, 252, 190, 0.4);
        }

        .nav-dot::before {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            border-radius: 50%;
            border: 1px solid #0FFCBE;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .nav-dot:hover::before {
            opacity: 1;
        }

        .floating-elements {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .floating-element {
            position: absolute;
            width: 2px;
            height: 2px;
            background-color: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
        }

        .floating-element:nth-child(1) {
            top: 20%;
            left: 10%;
            animation: float1 8s ease-in-out infinite;
        }

        .floating-element:nth-child(2) {
            top: 60%;
            right: 15%;
            animation: float2 6s ease-in-out infinite;
        }

        .floating-element:nth-child(3) {
            bottom: 30%;
            left: 20%;
            animation: float3 10s ease-in-out infinite;
        }

        .floating-element:nth-child(4) {
            top: 30%;
            right: 25%;
            animation: float4 7s ease-in-out infinite;
        }

        @keyframes float1 {
            0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
            50% { transform: translate(20px, -15px) scale(1.5); opacity: 0.8; }
        }

        @keyframes float2 {
            0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
            50% { transform: translate(-15px, 20px) scale(1.2); opacity: 0.6; }
        }

        @keyframes float3 {
            0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
            50% { transform: translate(25px, -10px) scale(1.8); opacity: 0.9; }
        }

        @keyframes float4 {
            0%, 100% { transform: translate(-10px, -25px) scale(1.3); opacity: 0.7; }
        }

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

        .bottom-indicator {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            animation: bounce 2s ease-in-out infinite;
        }

        .scroll-indicator {
            width: 1px;
            height: 40px;
            background: linear-gradient(to bottom, transparent, #0FFCBE, transparent);
            position: relative;
        }

        .scroll-indicator::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 4px solid transparent;
            border-right: 4px solid transparent;
            border-top: 6px solid #0FFCBE;
        }

        @keyframes bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(10px); }
        }

        /* Modal Styles */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            pointer-events: none;
        }

        .modal.active {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .modal-content {
            background: rgba(40, 40, 40, 0.95);
            border-radius: 20px;
            padding: 2.5rem;
            max-width: 700px;
            width: 90%;
            height: auto;
            max-height: 90vh;
            border: 2px solid rgba(15, 252, 190, 0.3);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
            position: relative;
            transform: scale(0.8);
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        .modal.active .modal-content {
            transform: scale(1);
        }

        .modal-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1.5rem;
            flex-shrink: 0;
        }

        .modal-title-container {
            display: flex;
            align-items: center;
            flex: 1;
        }

        .modal-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, rgba(15, 252, 190, 0.2) 0%, rgba(15, 252, 190, 0.1) 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1.5rem;
            border: 2px solid rgba(15, 252, 190, 0.3);
            flex-shrink: 0;
        }

        .modal-icon svg {
            color: #0FFCBE;
            width: 35px;
            height: 35px;
        }

        .modal-close {
            position: static;
            font-size: 28px;
            color: #0FFCBE;
            cursor: pointer;
            transition: color 0.3s ease;
            background: none;
            border: none;
            padding: 0;
            line-height: 1;
            margin-top: 0;
            flex-shrink: 0;
        }

        .modal-close:hover {
            color: rgba(255, 255, 255, 0.9);
        }

        .modal-title {
            font-size: 2rem;
            font-weight: 400;
            color: #ffffff;
            margin: 0;
        }

        .modal-description {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            flex-shrink: 0;
        }

        .modal-features {
            flex: 1;
            display: flex;
            flex-direction: column;
            min-height: 0;
            position: relative;
            overflow-y: auto;
        }

        .single-column-features {
            width: 100%;
            margin: 0;
            padding: 0;
        }

        .single-column-features li {
            display: block;
            width: 100%;
            color: rgba(255, 255, 255, 0.8);
            font-size: 1rem;
            font-weight: 300;
            line-height: 1.6;
            margin-bottom: 1rem;
            padding-left: 1.5rem;
            position: relative;
            list-style: none;
        }

        .single-column-features li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.6rem;
            width: 6px;
            height: 6px;
            background-color: #0FFCBE;
            border-radius: 50%;
        }

        .single-column-features li::after {
            content: '';
            position: absolute;
            bottom: -0.5rem;
            left: 1.5rem;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, rgba(15, 252, 190, 0.3) 0%, transparent 70%);
            animation: featureGlow 3s ease-in-out infinite;
            animation-delay: calc(var(--index) * 0.3s);
        }

        @keyframes featureGlow {
            0%, 100% { opacity: 0.3; transform: scaleX(0.8); }
            50% { opacity: 0.8; transform: scaleX(1); }
        }

        .feature-animation {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60px;
            overflow: hidden;
            pointer-events: none;
        }

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

        .floating-dot {
            position: absolute;
            width: 3px;
            height: 3px;
            background-color: rgba(15, 252, 190, 0.4);
            border-radius: 50%;
            animation: floatUp 4s ease-in-out infinite;
        }

        .floating-dot:nth-child(1) {
            left: 10%;
            animation-delay: 0s;
        }

        .floating-dot:nth-child(2) {
            left: 25%;
            animation-delay: 0.8s;
        }

        .floating-dot:nth-child(3) {
            left: 40%;
            animation-delay: 1.6s;
        }

        .floating-dot:nth-child(4) {
            left: 55%;
            animation-delay: 2.4s;
        }

        .floating-dot:nth-child(5) {
            left: 70%;
            animation-delay: 3.2s;
        }

        .floating-dot:nth-child(6) {
            left: 85%;
            animation-delay: 1.2s;
        }

        @keyframes floatUp {
            0% {
                transform: translateY(60px);
                opacity: 0;
            }
            20% {
                opacity: 1;
            }
            80% {
                opacity: 1;
            }
            100% {
                transform: translateY(-20px);
                opacity: 0;
            }
        }

        .pulse-wave {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height: 2px;
            background: linear-gradient(90deg, transparent, #0FFCBE, transparent);
            animation: pulseWave 2s ease-in-out infinite;
        }

        @keyframes pulseWave {
            0%, 100% {
                transform: translateX(-50%) scaleX(0.5);
                opacity: 0.3;
            }
            50% {
                transform: translateX(-50%) scaleX(1);
                opacity: 0.8;
            }
        }

        .modal-cta {
            text-align: center;
            padding-top: 1.5rem;
            flex-shrink: 0;
        }

        .cta-button {
            background: #0FFCBE;
            color: #000000;
            font-weight: 600;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
            width: 100%;
            max-width: 350px;
        }

        .cta-button:hover {
            background: rgba(15, 252, 190, 0.9);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(15, 252, 190, 0.3);
        }

        /* Coming Soon Tooltip for Modal CTA */
        .modal-cta.coming-soon-tooltip {
            position: relative;
        }

        .modal-cta.coming-soon-tooltip .cta-button {
            cursor: not-allowed;
            opacity: 0.6;
            pointer-events: none; /* To prevent clicks */
        }

        .modal-cta.coming-soon-tooltip .cta-button:hover {
            background: #0FFCBE;
            transform: none;
            box-shadow: none;
        }

        .modal-cta.coming-soon-tooltip::before {
            content: 'Coming Soon';
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            margin-top: 10px;
            background: rgba(0, 0, 0, 0.9);
            color: #ffffff;
            padding: 0.5rem 1.2rem;
            border-radius: 20px;
            font-size: 0.85rem;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
            border: 1px solid rgba(15, 252, 190, 0.3);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            z-index: 10;
        }

        .modal-cta.coming-soon-tooltip:hover::before {
            opacity: 1;
        }

        .back-btn {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: rgba(255, 255, 255, 0.8);
            font-size: 1rem;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .back-btn:hover {
            color: #0FFCBE;
        }

        /* AI Solution Page Styles */
        .ai-solution-page {
            display: flex;
            flex-direction: column;
            flex-grow: 1;
            position: relative;
            z-index: 2;
        }

        .ai-solution-page-main {
            flex-grow: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 4rem 2rem;
        }

        .ai-solution-page .gallery-section {
            background-color: transparent;
            min-height: auto;
            padding: 0;
        }

        .ai-solution-page .gallery-section::before {
            display: none;
        }
        
        .ai-solution-page .gallery-card {
            align-items: center;
            text-align: center;
            justify-content: flex-start;
            min-height: auto;
            cursor: default;
        }

        .ai-solution-page .gallery-card .card-title {
            color: #0FFCBE;
        }

        .ai-solution-page .gallery-card .card-description {
            text-align: left;
            width: 100%;
        }
        
        .ai-solution-page .card-features {
            list-style: none;
            padding: 0;
            margin-top: 1rem;
            text-align: left;
        }

        .ai-solution-page .card-features li {
            position: relative;
            padding-left: 1.5rem;
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
            line-height: 1.5;
            color: rgba(255, 255, 255, 0.8);
        }

        .ai-solution-page .card-features li::before {
            content: '';
            position: absolute;
            left: 0.25rem;
            top: 0.6rem; 
            width: 6px;
            height: 6px;
            background-color: #0FFCBE;
            border-radius: 50%;
        }

        /* AI Service Page Styles */
        .ai-service-page-wrapper {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            width: 100%;
        }

        .ai-service-page-wrapper::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(15, 252, 190, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(15, 252, 190, 0.02) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(15, 252, 190, 0.025) 0%, transparent 50%);
            animation: backgroundMove 20s ease-in-out infinite;
            pointer-events: none;
            z-index: -1;
        }
        
        .ai-service-page {
            width: 100%;
            padding: 0 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6rem;
            flex-grow: 1;
        }

        .service-section {
            width: 100%;
            max-width: 1200px;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 6rem 0;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 300;
            color: #ffffff;
            margin-bottom: 4rem;
            text-align: center;
            letter-spacing: 0.05em;
            position: relative;
            width: 100%;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: #0FFCBE;
            border-radius: 2px;
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            width: 100%;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .service-card:hover {
            transform: translateY(-8px);
            border-color: #0FFCBE;
            box-shadow: 0 10px 20px rgba(15, 252, 190, 0.1);
        }

        .service-icon {
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, rgba(15, 252, 190, 0.2), rgba(15, 252, 190, 0.1));
            width: 80px;
            height: 80px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(15, 252, 190, 0.3);
        }

        .service-icon svg {
            width: 40px;
            height: 40px;
            color: #0FFCBE;
        }

        .service-title {
            font-size: 1.4rem;
            font-weight: 500;
            margin-bottom: 1rem;
        }

        .service-description {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
            line-height: 1.7;
            text-align: left;
        }

        .how-it-works-timeline {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            width: 100%;
            position: relative;
            padding: 2rem 0;
        }

        .how-it-works-timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(-1px);
        }

        .timeline-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .timeline-content {
            width: calc(50% - 40px);
            background: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .timeline-item:nth-child(even) {
            flex-direction: row-reverse;
        }

        .timeline-text {
            text-align: left;
        }

        .timeline-dot {
            width: 20px;
            height: 20px;
            background: #000;
            border: 3px solid #0FFCBE;
            border-radius: 50%;
            z-index: 1;
        }

        .timeline-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: #0FFCBE;
            margin-bottom: 0.5rem;
        }

        .timeline-description {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .timeline-icon {
            flex-shrink: 0;
            background: linear-gradient(135deg, rgba(15, 252, 190, 0.2), rgba(15, 252, 190, 0.1));
            width: 80px;
            height: 80px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(15, 252, 190, 0.3);
        }

        .timeline-icon svg {
             width: 40px;
            height: 40px;
            color: #0FFCBE;
        }

        /* AI Bootcamp Page Styles */
        .ai-bootcamp-page-wrapper {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            width: 100%;
        }
        
        .ai-bootcamp-page {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5rem;
            flex-grow: 1;
        }

        .hero-section {
            position: relative;
            overflow: hidden;
            padding: 8rem 2rem 4rem;
            text-align: center;
            max-width: 1200px;
            margin: 0 auto;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 900px;
            height: 900px;
            background: radial-gradient(circle, rgba(15, 252, 190, 0.15) 0%, rgba(15, 252, 190, 0) 70%);
            transform: translate(-50%, -50%);
            filter: blur(50px);
            z-index: -1;
            animation: heroGlow 10s ease-in-out infinite;
        }

        @keyframes heroGlow {
            0%, 100% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 0.8;
            }
            50% {
                transform: translate(-50%, -50%) scale(1.2);
                opacity: 1;
            }
        }

        .hero-main-title, .hero-subtitle-1, .hero-subtitle-2 {
            position: relative;
            z-index: 1;
        }

        .hero-main-title {
            font-size: clamp(3rem, 7vw, 5rem);
            font-weight: 600;
            color: #0FFCBE;
            margin-bottom: 1rem;
            letter-spacing: 0.05em;
            text-shadow: 0 0 20px rgba(15, 252, 190, 0.3);
        }

        .hero-subtitle-1 {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 300;
            color: #ffffff;
            margin-bottom: 1.5rem;
            letter-spacing: 0.02em;
        }

        .hero-subtitle-2 {
            font-size: clamp(1.1rem, 3vw, 1.5rem);
            font-weight: 300;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 3rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .bootcamp-section {
            width: 100%;
            max-width: 1200px;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 0 2rem 5rem;
            min-height: 100vh;
            justify-content: center;
        }

        .bootcamp-section-title {
            font-size: clamp(2rem, 5vw, 2.8rem);
            font-weight: 600;
            margin-bottom: 1rem;
            position: relative;
        }
        
        .bootcamp-section-intro {
            color: rgba(255, 255, 255, 0.8);
            text-align: center;
            max-width: 600px;
            margin-bottom: 3rem;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .bootcamp-section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 3px;
            background: #0FFCBE;
            border-radius: 2px;
        }

        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            width: 100%;
        }

        .info-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 2rem;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .info-card:hover {
            transform: translateY(-8px);
            border-color: #0FFCBE;
            box-shadow: 0 10px 20px rgba(15, 252, 190, 0.1);
        }

        .info-icon {
            margin-bottom: 1.5rem;
        }

        .info-icon svg {
            width: 50px;
            height: 50px;
            color: #0FFCBE;
        }

        .info-title {
            font-size: 1.25rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        .info-description {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
        }

        .modules-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            width: 100%;
        }

        .module-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            transition: all 0.3s ease;
        }
        
        .module-card:hover {
            background: rgba(255, 255, 255, 0.08);
            border-left: 5px solid #0FFCBE;
            transform: translateX(5px);
        }

        .module-number {
            font-size: 1.5rem;
            font-weight: 700;
            color: #0FFCBE;
            margin-bottom: 1rem;
        }

        .module-title {
            font-size: 1.3rem;
            font-weight: 500;
            margin-bottom: 1rem;
        }

        .module-description {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .bootcamp-cta {
            min-height: auto;
            padding: 5rem 2rem;
            text-align: center;
            border-radius: 20px;
            background: linear-gradient(135deg, rgba(15, 252, 190, 0.1) 0%, rgba(15, 252, 190, 0.05) 100%);
        }

        .bootcamp-cta-title {
            font-size: 2.2rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .bootcamp-cta-button {
            background: #0FFCBE;
            color: #000000;
            font-weight: 600;
            padding: 1rem 3rem;
            border-radius: 50px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1.2rem;
        }

        .bootcamp-cta-button:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 10px 25px rgba(15, 252, 190, 0.3);
        }

        /* Side Dot Navigation */
        .di-nav-dots {
            position: fixed;
            right: 30px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 100;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .di-nav-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            display: flex;
            align-items: center;
        }

        .di-nav-dot.active {
            background-color: #0FFCBE;
            transform: scale(1.3);
            box-shadow: 0 0 12px rgba(15, 252, 190, 0.5);
        }

        /* Mobile Responsive */
        @media (max-width: 1023px) {
            .navbar {
                padding: 1rem;
            }

            .nav-menu {
                display: none;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .nav-logo {
                font-size: 1.3rem;
            }

            .main-content-wrapper {
                padding-top: 62px; /* Adjust for smaller navbar */
            }

            .gallery-section {
                padding-top: 100px;
            }

            .nav-dots {
                right: 20px;
            }
            
            .di-nav-dots {
                display: none;
            }
            
            .logo {
                letter-spacing: 0.1em;
            }
            
            .tagline {
                padding: 0 20px;
            }
            
            .grid-overlay {
                background-size: 30px 30px;
            }
            
            .gallery-container {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .gallery-container-row-2 {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                max-width: 100%;
            }
            
            .gallery-title {
                margin-bottom: 2rem;
            }

            .modal-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }

            .modal-title-container {
                width: 100%;
                justify-content: space-between;
            }
            
            .modal-icon {
                width: 60px;
                height: 60px;
                margin-right: 1rem;
            }

            .modal-icon svg {
                width: 28px;
                height: 28px;
            }
            
            .modal-content {
                padding: 2rem 1.5rem;
                margin: 1rem;
            }
            
            .modal-title {
                font-size: 1.75rem;
            }
            
            .modal-description {
                font-size: 0.9rem;
            }
            
            .single-column-features li {
                font-size: 0.9rem;
                margin-bottom: 0.8rem;
            }
            
            .cta-button {
                font-size: 1rem;
                padding: 0.9rem 2rem;
            }
            
            .feature-animation {
                height: 40px;
            }

            .pulse-wave {
                width: 150px;
            }
        }

        @media (max-width: 480px) {
            .bottom-indicator {
                display: none;
            }
            
            .floating-elements {
                display: none;
            }
            
            .grid-overlay {
                background-size: 25px 25px;
            }
            
            .gallery-card {
                min-height: 300px;
                padding: 1.5rem;
            }
        }

        /* Contact Us Page Styles */
        .contact-page {
            display: flex;
            flex-direction: column;
            flex-grow: 1; /* Make page fill available space */
            position: relative;
            z-index: 2;
        }

        .contact-page-main {
            flex-grow: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        .contact-page::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(15, 252, 190, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(15, 252, 190, 0.02) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(15, 252, 190, 0.025) 0%, transparent 50%);
            animation: backgroundMove 20s ease-in-out infinite;
            pointer-events: none;
            z-index: -1;
        }

        @keyframes backgroundMove {
            0%, 100% { 
                background: 
                    radial-gradient(circle at 20% 50%, rgba(15, 252, 190, 0.03) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(15, 252, 190, 0.02) 0%, transparent 50%),
                    radial-gradient(circle at 40% 80%, rgba(15, 252, 190, 0.025) 0%, transparent 50%);
            }
            33% { 
                background: 
                    radial-gradient(circle at 60% 30%, rgba(15, 252, 190, 0.03) 0%, transparent 50%),
                    radial-gradient(circle at 20% 70%, rgba(15, 252, 190, 0.02) 0%, transparent 50%),
                    radial-gradient(circle at 80% 50%, rgba(15, 252, 190, 0.025) 0%, transparent 50%);
            }
            66% { 
                background: 
                    radial-gradient(circle at 40% 70%, rgba(15, 252, 190, 0.03) 0%, transparent 50%),
                    radial-gradient(circle at 70% 40%, rgba(15, 252, 190, 0.02) 0%, transparent 50%),
                    radial-gradient(circle at 10% 20%, rgba(15, 252, 190, 0.025) 0%, transparent 50%);
            }
        }

        .contact-container {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 3rem;
            align-items: center;
            width: 100%;
        }

        .contact-form-section {
            padding: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .contact-title {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 2rem;
            letter-spacing: 0.02em;
            position: relative;
            flex-shrink: 0;
        }

        .contact-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: #0FFCBE;
            border-radius: 2px;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
            flex-shrink: 0;
            max-width: 500px;
            margin-bottom: 1.5rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.2rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-input, .form-select, .form-textarea {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            padding: 0.9rem 1.2rem;
            color: #ffffff;
            font-size: 0.95rem;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .form-input::placeholder, .form-textarea::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .form-input:focus, .form-select:focus, .form-textarea:focus {
            outline: none;
            border-color: #0FFCBE;
            box-shadow: 0 0 0 2px rgba(15, 252, 190, 0.2);
            background: rgba(255, 255, 255, 0.08);
        }

        .form-select {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
            background-position: right 1rem center;
            background-repeat: no-repeat;
            background-size: 1.2em 1.2em;
            padding-right: 3rem;
        }

        .form-textarea {
            resize: vertical;
            min-height: 100px;
            max-height: 120px;
            grid-column: 1 / -1;
        }

        .form-submit-section {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-top: 1rem;
            flex-shrink: 0;
        }

        .form-submit {
            background: linear-gradient(135deg, #0FFCBE 0%, rgba(15, 252, 190, 0.8) 100%);
            color: #000000;
            border: 2px solid transparent;
            border-radius: 10px;
            padding: 0.9rem 1.8rem;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .form-submit:hover {
            background: transparent;
            border-color: #0FFCBE;
            color: #0FFCBE;
        }

        .response-time {
            color: rgba(255, 255, 255, 0.7);
            font-style: italic;
            font-size: 0.9rem;
            flex: 1;
        }

        .contact-details {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            flex: 1;
            max-width: 500px;
        }

        .detail-section {
            position: relative;
            padding-left: 1rem;
        }

        .detail-section::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(180deg, #0FFCBE 0%, rgba(15, 252, 190, 0.5) 100%);
            border-radius: 2px;
        }

        .detail-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .detail-content {
            color: #ffffff;
            line-height: 1.4;
            font-size: 1rem;
        }

        .detail-content p {
            margin-bottom: 0.2rem;
        }

        .location-content p:first-child {
            margin-bottom: 0.1rem;
        }

        .location-content p:nth-child(2) {
            margin-bottom: 0.1rem;
        }

        .contact-link {
            color: #0FFCBE;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-link:hover {
            color: rgba(15, 252, 190, 0.8);
        }

        .contact-info-section {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            justify-content: center;
            align-items: center;
        }

        .contact-map {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 1.5rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            position: relative;
        }

        .contact-map::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            height: 4px;
            background: linear-gradient(90deg, transparent, #0FFCBE, transparent);
            border-radius: 2px;
        }

        .map-container {
            width: 480px;
            height: 480px;
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            margin-bottom: 0.5rem;
        }

        .map-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(15, 252, 190, 0.1) 0%, rgba(15, 252, 190, 0.05) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.6);
            font-size: 1.1rem;
            border-radius: 15px;
            border: 1px solid rgba(15, 252, 190, 0.2);
        }

        /* Contact Page Footer */
        .contact-page-footer {
            position: relative;
            flex-shrink: 0;
            background: rgba(255, 255, 255, 0.05);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 0.8rem 2rem;
            backdrop-filter: blur(10px);
            z-index: 2;
        }

        .contact-page-footer .footer-bottom {
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            margin: 0;
        }

        /* Footer Styles */
        .footer {
            background: rgba(255, 255, 255, 0.05);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 0.8rem 2rem;
            backdrop-filter: blur(10px);
            position: relative;
            z-index: 2;
            flex-shrink: 0;
        }

        .footer-bottom {
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .contact-container {
                gap: 3rem;
                max-width: 1100px;
            }
            
            .contact-form {
                max-width: 450px;
            }

            .map-container {
                width: 400px;
                height: 400px;
            }
        }

        @media (max-width: 768px) {
            .contact-page-main {
                padding: 2rem 1rem;
            }

            .contact-container {
                grid-template-columns: 1fr;
                gap: 3rem;
                height: auto;
            }

            .contact-form {
                max-width: 100%;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .form-submit-section {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.8rem;
            }

            .contact-details {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                max-width: 100%;
            }

            .map-container {
                width: 320px;
                height: 320px;
            }

            .contact-info-section {
                order: 1;
            }
        }

        @media (max-width: 480px) {
            .map-container {
                width: 280px;
                height: 280px;
            }
        }

        /* AI Bootcamp Logo Styles */
        .ai-bootcamp-logo-wrapper {
            width: 100%;
            height: 150px;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .ai-bootcamp-logo-wrapper .logo-svg {
            width: 120px;
            height: 120px;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
            animation: bootcamp-glow-effect 4s infinite ease-in-out;
        }
        .ai-bootcamp-logo-wrapper .animated-draw {
            stroke: #FFFFFF;
            stroke-width: 1;
            stroke-dasharray: 100;
            stroke-dashoffset: 100;
            animation: bootcamp-draw 4s infinite ease-in-out;
        }
        .ai-bootcamp-logo-wrapper .animated-pulse {
            stroke: #0FFCBE;
            stroke-width: 1.5;
            animation: bootcamp-pulse 4s infinite ease-in-out;
            transform-origin: center;
        }
        .ai-bootcamp-logo-wrapper .animated-fade {
            stroke: #0FFCBE;
            stroke-width: 1.5;
            animation: bootcamp-fade 4s infinite alternate;
        }

        @keyframes bootcamp-draw {
            0% { stroke-dashoffset: 100; }
            25% { stroke-dashoffset: 0; }
            85% { stroke-dashoffset: 0; }
            100% { stroke-dashoffset: 100; }
        }
        @keyframes bootcamp-glow-effect {
            0%, 25%, 100% {
                filter: none;
            }
            50%, 85% {
                filter: drop-shadow(0 0 8px rgba(15, 252, 190, 0.7));
            }
        }
        @keyframes bootcamp-pulse {
            0%, 25% { opacity: 0; }
            50% { opacity: 1; }
            85% { opacity: 1; }
            100% { opacity: 0; }
        }
        @keyframes bootcamp-fade {
            0%, 25% { opacity: 0; }
            50% { opacity: 1; }
            100% { opacity: 1; }
        }

        /* AI Solution Logo Styles (Bar Chart) */
        .ai-solution-logo-wrapper {
            width: 100%;
            height: 150px;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .ai-solution-logo-wrapper .logo-svg {
            width: 120px;
            height: 120px;
            stroke: #FFFFFF;
            stroke-width: 1;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
            animation: solution-glow-effect 4s infinite ease-in-out;
        }
        .ai-solution-logo-wrapper .animated-draw {
            stroke-dasharray: 200;
            stroke-dashoffset: 200;
            animation: draw-barchart 4s ease-in-out infinite;
        }
        .ai-solution-logo-wrapper .animated-rise {
            stroke: #0FFCBE;
            stroke-width: 2;
            transform-origin: bottom;
            opacity: 0;
            transform: scaleY(0);
            animation: rise-barchart 4s infinite cubic-bezier(0.76, 0, 0.24, 1);
        }
        @keyframes draw-barchart {
            30% { stroke-dashoffset: 0; }
            100% { stroke-dashoffset: 0; }
        }
        @keyframes rise-barchart {
            30% { transform: scaleY(0); opacity: 0; }
            50% { transform: scaleY(1); opacity: 1; }
            90% { transform: scaleY(1); opacity: 1; }
            100% { transform: scaleY(0); opacity: 0; }
        }
        @keyframes solution-glow-effect {
            0%, 40%, 100% {
                filter: none;
            }
            60%, 90% {
                filter: drop-shadow(0 0 8px rgba(15, 252, 190, 0.7));
            }
        }
        
        /* AI Service Logo Styles */
        .ai-service-logo-wrapper {
            width: 100%;
            height: 150px;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .ai-service-logo-wrapper .logo-svg {
            width: 120px;
            height: 120px;
            stroke: #FFFFFF;
            stroke-width: 1.5;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
            filter: drop-shadow(0 0 8px rgba(15, 252, 190, 0.7));
        }
        .ai-service-logo-wrapper .logo-svg .fill-element {
            fill: #0FFCBE;
            stroke: #0FFCBE;
        }
        .ai-service-logo-wrapper .animated-draw {
            stroke-dasharray: 100;
            stroke-dashoffset: 100;
            animation: dialogue-draw 3s infinite ease-in-out;
        }
        .ai-service-logo-wrapper .animated-pulse {
            animation: dialogue-pulse 2.5s infinite ease-in-out;
            transform-origin: center;
        }
        .ai-service-logo-wrapper .animated-fade {
            animation: dialogue-fade 2s infinite alternate ease-in-out;
        }

        @keyframes dialogue-draw {
            50% { stroke-dashoffset: 0; }
        }
        @keyframes dialogue-pulse {
            50% { transform: scale(1.2); opacity: 0.8; }
        }
        @keyframes dialogue-fade {
            50% { opacity: 0.2; }
        }

        /* Decision Intelligence Page Styles */
        .decision-intelligence-page {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .decision-intelligence-page::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(15, 252, 190, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(15, 252, 190, 0.02) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(15, 252, 190, 0.025) 0%, transparent 50%);
            animation: backgroundMove 20s ease-in-out infinite;
            pointer-events: none;
            z-index: -1;
        }
        
        .floating-particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: rgba(15, 252, 190, 0.4);
            border-radius: 50%;
            animation: particleFloat 8s ease-in-out infinite;
        }

        .particle:nth-child(1) { top: 10%; left: 15%; animation-delay: 0s; animation-duration: 8s; }
        .particle:nth-child(2) { top: 25%; left: 75%; animation-delay: 2s; animation-duration: 10s; }
        .particle:nth-child(3) { top: 60%; left: 20%; animation-delay: 4s; animation-duration: 12s; }
        .particle:nth-child(4) { top: 80%; left: 65%; animation-delay: 1s; animation-duration: 9s; }
        .particle:nth-child(5) { top: 40%; left: 85%; animation-delay: 3s; animation-duration: 11s; }
        .particle:nth-child(6) { top: 70%; left: 45%; animation-delay: 5s; animation-duration: 7s; }

        @keyframes particleFloat {
            0%, 100% { 
                transform: translateY(0px) translateX(0px) scale(1);
                opacity: 0.4;
            }
            25% { 
                transform: translateY(-20px) translateX(10px) scale(1.2);
                opacity: 0.8;
            }
            50% { 
                transform: translateY(-10px) translateX(-15px) scale(0.8);
                opacity: 0.6;
            }
            75% { 
                transform: translateY(15px) translateX(5px) scale(1.1);
                opacity: 0.9;
            }
        }
        
        .decision-intelligence-page .hero-section {
            padding: 8rem 2rem 4rem;
            text-align: center;
            max-width: 1200px;
            margin: 0 auto;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .decision-intelligence-page .hero-main-title {
            font-size: clamp(3rem, 7vw, 5rem);
            font-weight: 600;
            color: #0FFCBE;
            margin-bottom: 1rem;
            letter-spacing: 0.05em;
            animation: fadeInUp 1s ease-out;
            text-shadow: 0 0 20px rgba(15, 252, 190, 0.3);
        }

        .decision-intelligence-page .hero-subtitle-1 {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 300;
            color: #ffffff;
            margin-bottom: 1.5rem;
            letter-spacing: 0.02em;
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        .decision-intelligence-page .hero-subtitle-2 {
            font-size: clamp(1.1rem, 3vw, 1.5rem);
            font-weight: 300;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 3rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 1s ease-out 0.6s both;
            line-height: 1.6;
        }
        
        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, #0FFCBE 0%, rgba(15, 252, 190, 0.8) 100%);
            color: #000000;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            animation: fadeInUp 1s ease-out 0.4s both;
            cursor: pointer;
            position: relative;
        }
        
        .coming-soon-hover {
            position: relative;
            display: inline-block;
        }
        
        .coming-soon-hover .hero-cta {
            cursor: not-allowed;
        }

        .coming-soon-hover:hover .hero-cta {
            background: transparent;
            border-color: rgba(255, 255, 255, 0.4);
            color: transparent;
            box-shadow: none;
        }

        .coming-soon-hover:hover .hero-cta svg {
            opacity: 0;
        }

        .coming-soon-hover .hero-cta::after {
            content: 'Coming Soon';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: rgba(255, 255, 255, 0.7);
            opacity: 0;
            transition: opacity 0.3s ease;
            font-weight: 500;
            pointer-events: none;
            white-space: nowrap;
        }

        .coming-soon-hover:hover .hero-cta::after {
            opacity: 1;
        }

        .product-section, .features-section, .benefits-section, .how-it-works {
            padding: 6rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .product-overview {
            display: flex;
            flex-direction: column;
            gap: 3rem;
            align-items: center;
        }

        .product-content {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .product-description {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.8;
            text-align: center;
            max-width: 800px;
        }

        .product-image {
            background: linear-gradient(135deg, rgba(15, 252, 190, 0.1) 0%, rgba(15, 252, 190, 0.05) 100%);
            border-radius: 20px;
            padding: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(15, 252, 190, 0.2);
            position: relative;
            overflow: hidden;
            max-width: 1000px;
            width: 100%;
        }

        .product-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at center, rgba(15, 252, 190, 0.1) 0%, transparent 70%);
            animation: pulse 3s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.5; transform: scale(0.95); }
            50% { opacity: 1; transform: scale(1); }
        }

        .features-nav {
            display: flex;
            justify-content: center;
            margin-bottom: 3rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50px;
            padding: 8px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            gap: 4px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .feature-nav-btn {
            background: transparent;
            border: none;
            color: rgba(255, 255, 255, 0.6);
            padding: 12px 24px;
            border-radius: 25px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
            white-space: nowrap;
            position: relative;
            overflow: hidden;
        }

        .feature-nav-btn:hover {
            color: rgba(255, 255, 255, 0.8);
        }

        .feature-nav-btn.active {
            background: rgba(255, 255, 255, 0.1);
            color: #ffffff;
            box-shadow: 0 2px 8px rgba(15, 252, 190, 0.2);
        }

        .feature-content-container {
            position: relative;
            min-height: 400px;
        }

        .feature-content {
            display: none;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease;
        }

        .feature-content.active {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }

        .feature-card-large {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 3rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .feature-icon-large {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(15, 252, 190, 0.2) 0%, rgba(15, 252, 190, 0.1) 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            border: 1px solid rgba(15, 252, 190, 0.3);
            color: #0FFCBE;
        }

        .feature-title-large {
            font-size: 2rem;
            font-weight: 500;
            color: #ffffff;
            margin-bottom: 1.5rem;
        }

        .feature-description-large {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.7;
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }

        .feature-benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-top: 2rem;
        }

        .benefit-item {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.95rem;
            padding: 0.8rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .benefit-item svg {
            color: #0FFCBE;
            flex-shrink: 0;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .benefit-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 2.5rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }

        .benefit-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, #0FFCBE 0%, rgba(15, 252, 190, 0.5) 100%);
        }

        .benefit-title {
            font-size: 1.4rem;
            font-weight: 500;
            color: #ffffff;
            margin-bottom: 1rem;
        }

        .benefit-description {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.7;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .process-step {
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #0FFCBE 0%, rgba(15, 252, 190, 0.8) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.5rem;
            font-weight: 600;
            color: #000000;
        }

        .step-title {
            font-size: 1.2rem;
            font-weight: 500;
            color: #ffffff;
            margin-bottom: 1rem;
        }

        .step-description {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
        }