 * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            line-height: 1.6;
        }

        .hero-section {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        /* .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 80%, rgba(74, 144, 226, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(24, 59, 107, 0.1) 0%, transparent 50%);
            pointer-events: none;
        } */

        .logo-container {
            font-size: 3rem;
            letter-spacing: 1px;
            color: #183b6b;
            font-weight: 700;
            animation: fontColorGradient 3s linear infinite;
        }
        @keyframes fontColorGradient {
            0% {
                color: #4a90e2;
            }
            33% {
                color: #357abd;
            }
            66% {
                color: #315fa0;
            }
            100% {
                color: #4a90e2;
            }
        }
            

        .logo-container img {
            margin-bottom: 1rem;
            background-color: #e2e8f0;
            box-shadow: 0 10px 30px rgba(24, 59, 107, 0.2);
        }

        .tagline {
            font-size: 1.5rem;
            font-weight: 600;
            color: #183b6b;
            margin-bottom: 2rem;
        }

        .description {
            font-size: 1.2rem;
            color: #64748b;
            max-width: 700px;
            margin: 0 auto 3rem;
            line-height: 1.8;
        }

        .cta-button {
            background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
            border: none;
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
            transition: all 0.3s ease;
            text-decoration: none;
            color: white;
            display: inline-block;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(74, 144, 226, 0.4);
            color: white;
        }
        .carousel-section{
            box-shadow: 0 8px 32px rgba(24, 59, 107, 0.18);
            -webkit-box-reflect: below 1px linear-gradient(transparent, rgba(24,59,107,0.04));
        }

        .features-section {
            padding: 80px 0;
            background: white;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #183b6b;
            text-align: center;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: #4a90e2;
            text-align: center;
            margin-bottom: 4rem;
        }

        .feature-card {
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 20px;
            padding: 2rem;
            height: 100%;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, #4a90e2, #00bcd4);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border-color: #4a90e2;
        }

        .feature-icon {
            font-size: 2.5rem;
            color: #00bcd4;
            margin-bottom: 1.5rem;
            display: block;
        }

        .feature-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: #183b6b;
            margin-bottom: 1rem;
        }

        .feature-description {
            color: #64748b;
            font-size: 1rem;
            line-height: 1.6;
        }

        .tools-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        }

        .tool-card {
            background: white;
            border-radius: 20px;
            padding: 3rem 2rem;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
            margin-bottom: 3rem;
            transition: all 0.3s ease;
        }

        .tool-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
        }

        .tool-title {
            font-size: 2rem;
            font-weight: 700;
            color: #183b6b;
            margin-bottom: 1rem;
        }

        .tool-description {
            font-size: 1.1rem;
            color: #64748b;
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .video-card {
            background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
            border-radius: 15px;
            padding: 2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            min-height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .video-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="20" fill="none" stroke="white" stroke-width="2" opacity="0.3"/></svg>') center/cover;
        }

        .video-card:hover {
            transform: scale(1.02);
            box-shadow: 0 15px 30px rgba(74, 144, 226, 0.3);
        }

        .play-button {
            font-size: 4rem;
            color: #4a90e2;
            z-index: 2;
            position: relative;
            opacity: 0.9;
        }

        .video-card:hover .play-button {
            opacity: 1;
            transform: scale(1.1);
        }

        .benefits-section {
            padding: 80px 0;
            background: white;
        }

        .benefit-card {
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 20px;
            padding: 2.5rem;
            height: 100%;
            transition: all 0.3s ease;
            
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        }

        .benefit-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #183b6b;
            margin-bottom: 2rem;
            text-align: center;
        }

        .benefit-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
        }

        .benefit-icon {
            font-size: 1.5rem;
            color: #4a90e2;
            margin-right: 1rem;
            flex-shrink: 0;
            margin-top: 0.2rem;
        }

        .benefit-text {
            color: #64748b;
            font-size: 1rem;
            line-height: 1.6;
        }
        /* .aisection{
            padding: 80px 0;
        } */
        .airoadmap {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            padding: 80px 0;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 1rem;
        }

        .highlight {
            color: #00bcd4;
        }

        .download-btn {
            display: inline-block;
            background-color: #00bcd4;
            color: #fff;
            padding: 10px 20px;
            margin-top: 15px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: background-color 0.3s ease;
        }
        .download-btn:hover {
            background-color: #0199b1;
        }

        .airoadmap-card {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 20px;
            padding: 2rem;
            height: 100%;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
            transition: transform 0.3s ease;
        }
        .airoadmap-card:hover {
            transform: translateY(-5px);
        }

        .ai-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: #183b6b;
            text-align: center;
            margin-bottom: 0.25rem;
        }

        .ai-week {
            text-align: center;
            display: block;
            margin-bottom: 2rem;
            color: #64748b;
            font-size: 0.9rem;
        }

        .ai-item {
            margin-bottom: 1rem;
        }

        .ai-text {
            font-size: 1rem;
            color: #475569;
            line-height: 1.6;
        }
        .roadmap-line-container {
            position: relative;
            /* width: 100%;
            height: 30px;
            margin-bottom: 40px; */
        }

        .roadmap-line {
            position: absolute;
            top: 10px;
            left: 5%;
            width: 90%;
            height: 2px;
            background-color: #00bcd4;
            z-index: 1;
        }

        .roadmap-dot {
            position: absolute;
            top: 3px;
            width: 16px;
            height: 16px;
            background-color: #00bcd4;
            border-radius: 50%;
            z-index: 2;
            transform: translateX(-50%);
            border: 3px solid #ffffff;
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
            animation: roadmap-dot-pulse 3s linear infinite;
            /* Each dot will have its own animation-delay for sequential effect */
        }

        /* Sequential animation delays for each dot */
        .roadmap-dot:nth-child(1) { animation-delay: 0s; }
        .roadmap-dot:nth-child(2) { animation-delay: 0.4s; }
        .roadmap-dot:nth-child(3) { animation-delay: 0.8s; }
        .roadmap-dot:nth-child(4) { animation-delay: 1.2s; }
        .roadmap-dot:nth-child(5) { animation-delay: 1.6s; }
        /* Add more as needed */

        @keyframes roadmap-dot-pulse {
            0% {
                transform: translateX(-50%) scale(1);
            }
            20% {
                transform: translateX(-50%) scale(1.6);
            }
            40% {
                transform: translateX(-50%) scale(1);
            }
            100% {
                transform: translateX(-50%) scale(1);
            }
        }

        .roadmap-dot:hover {
            transform: translateX(-50%) scale(1.5);
        }


        .modal-content {
            border-radius: 15px;
            border: none;
        }

        .modal-header {
            background-color: #183b6b;
            color: #fff;
            border-bottom: 1px solid #e2e8f0;
            padding: 1rem;
        }

        .modal-body {
            padding: 2rem;
        }

        .navbar {
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.95) !important;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }
        .fade-in {
            opacity: 0;
            animation: fadeIn 1.2s ease-in forwards;
        }
        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }
        @media (max-width: 768px) {
            .logo-container {
                font-size: 2.2rem;
            }

            .tagline {
                font-size: 1.2rem;
            }

            .description {
                font-size: 1rem;
            }

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

            .tool-title {
                font-size: 1.5rem;
            }

            .feature-card {
                margin-bottom: 2rem;
            }

            .video-card {
                min-height: 250px;
            }

            .play-button {
                font-size: 3rem;
            }
        }
        .footer {
            
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            padding: 50px 100px;
            /* max-width: 1200px; */
            margin: 0 auto;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 16px;
            font-weight: bold;
            color: #333;
            margin-bottom: 15px;
        }

        .footer-column {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
        }

        .footer-column p {
            margin-bottom: 8px;
        }

        .contact-info {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
        }

        .contact-info::before {
            content: '';
            width: 16px;
            height: 16px;
            margin-right: 8px;
            background-size: contain;
            background-repeat: no-repeat;
            display: inline-block;
        }

        .phone::before {
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23666"><path d="M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z"/></svg>');
        }

        .fax::before {
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23666"><path d="M19 8h-1V3H6v5H5c-1.66 0-3 1.34-3 3v6h4v4h12v-4h4v-6c0-1.66-1.34-3-3-3zM8 5h8v3H8V5zm8 12.5h-1v-1h1v1zm0-2h-1v-1h1v1zm-4 2h-1v-1h1v1zm0-2h-1v-1h1v1z"/></svg>');
        }

        .email::before {
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23666"><path d="M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z"/></svg>');
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #e0e0e0;
        }

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

        .footer-logo img {
            height: 60px;
            width: auto;
        }

        .copyright {
            color: #999;
            font-size: 12px;
            margin-bottom: 10px;
        }

        .credits {
            color: #999;
            font-size: 12px;
        }

        .credits a {
            color: #666;
            text-decoration: none;
        }

        .credits a:hover {
            text-decoration: underline;
        }

        @media (max-width: 576px) {
            /* body{
                padding: 20px;
            } */
            .hero-section {
                padding: 2rem 1rem;
            }

            .features-section,
            .tools-section,
            .benefits-section {
                padding: 60px 0;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
            }

            .feature-card,
            .tool-card,
            .benefit-card {
                padding: 1.5rem;
            }
        }
        
        

        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .footer {
                padding: 30px 15px 15px;
            }
        }