  :root {
            --primary-color: #6366f1;
            --secondary-color: #f59e0b;
            --accent-color: #ec4899;
            --dark-color: #023b4c;
            --light-color: #f8fafc;
           --gradient-1: linear-gradient(135deg, #29a1c7 0%, #bd389f 100%);
            --gradient-2: linear-gradient(135deg, #29a1c7 0%, #bd389f 100%);
             --gradient-3: linear-gradient(135deg, #29a1c7 0%, #bd389f 100%);

        }

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

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.8;
            color: var(--dark-color);
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            line-height: 1.3;
        }

        .display-font {
            font-family: 'Lora', serif;
            font-weight: 700;
        }

 ul {
            list-style: none;
        }


    
        nav {
            /* position: fixed; */
            top: 0;
            width: 100%;
            padding: 15px 0;
            z-index: 1000;
            background: rgb(232, 249, 255);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }

        .nav-flex {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text-main);
            letter-spacing: 1px;
        }

    
        .nav-links {
            display: flex;
            gap: 35px;
        }

        .nav-links li {
            position: relative;
        }

        .nav-links li a {
            font-size: 0.85rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: #000;
            padding-bottom: 5px;
            position: relative;
        }

    
        .nav-links li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            bottom: 0;
            left: 0;
            background-color: var(--gold);
            transition: width 0.3s ease;
        }

        .nav-links li a:hover {
            color: var(--gold);
        }

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







      
        .hero-section {
            background: var(--gradient-1);
            color: white;
            padding: 50px 0 60px;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
            opacity: 0.5;
        }

        .hero-section .container {
            position: relative;
            z-index: 2;
        }

        .hero-title {
            font-size: clamp(2.5rem, 5vw, 2.7rem);
            margin-bottom: 25px;
            
            animation: fadeInUp 0.8s ease-out;
        }

        .hero-subtitle {
            font-size: clamp(1.1rem, 2vw, 3.0rem);
  margin-bottom: 30px;
  opacity: 0.95;
  animation: fadeInUp 0.8s ease-out 0.2s both;
  line-height: 40px;
        }

        .hero-badge {
            background: rgba(255, 255, 255, 0.95);
            color: #be3ba0;
            padding: 2px 21px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            display: inline-block;
            margin-bottom: 30px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }

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

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

        .btn-primary-custom {
            background: #bd3aa0;
  color: white;
  padding: 16px 40px;
  font-size: 1.2rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(41, 163, 202, 0.41);
        }

        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(41, 163, 202, 0.41);
            background: #bd3aa0;
            color: white;
        }

        .btn-primary-custom i {
            margin-right: 10px;
        }

        
        .launch-details {
            padding: 80px 0;
            background: white;
        }

        .detail-card {
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
            padding: 35px 25px;
            border-radius: 20px;
            border: 2px solid #e2e8f0;
            transition: all 0.3s ease;
            text-align: center;
            height: 100%;
        }

        .detail-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(99, 102, 241, 0.15);
            border-color: var(--primary-color);
        }

        .detail-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .detail-label {
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            color: #2da3c8;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 12px;
        }

        .detail-value {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--dark-color);
        }

    
        .section-padding {
            padding: 60px 0;
        }

        .section-bg-light {
            background: #fff;
        }

        .section-bg-dark {
            background: var(--dark-color);
            color: white;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 2.8rem);
            margin-bottom: 25px;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-bg-dark .section-title {
            background: #74d5f4;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: #64748b;
            margin-bottom: 50px;
        }

        .section-bg-dark .section-subtitle {
            color: rgba(255, 255, 255, 0.8);
        }

      
        .content-image {
            width: 100%;
            height: 100%;
            min-height: 400px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            font-weight: 600;
            text-align: center;
            padding: 40px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            position: relative;
            overflow: hidden;
        }

        .content-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
        }

        .content-image i {
            font-size: 4rem;
            margin-bottom: 20px;
            opacity: 0.9;
        }

        .content-image .image-text {
            position: relative;
            z-index: 2;
        }

        .content-image.variant-2 {
            background: var(--gradient-2);
        }

        .content-image.variant-3 {
            background: var(--gradient-3);
        }

        .content-image.variant-4 {
            background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
        }

        .content-image.variant-5 {
            background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
        }

        .content-image.variant-6 {
            background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
        }

        .content-image.variant-7 {
            background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
        }

        .content-image.variant-8 {
            background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
        }

        
        .content-block h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--dark-color);
        }

        .section-bg-dark .content-block h3 {
            color: white;
        }

        .content-block p {
            font-size: 16px;
  line-height: 25px;
            color: #475569;
            margin-bottom: 20px;
        }

        .section-bg-dark .content-block p {
            color: rgba(255, 255, 255, 0.85);
        }

        .content-block ul {
            list-style: none;
            padding-left: 0;
        }

        .content-block ul li {
            padding: 12px 0;
            padding-left: 35px;
            position: relative;
            font-size: 1.05rem;
            color: #475569;
        }

        .section-bg-dark .content-block ul li {
            color: rgba(255, 255, 255, 0.85);
        }

        .content-block ul li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--secondary-color);
            font-size: 1.1rem;
        }

   
        .feature-card {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            border: 2px solid transparent;
            height: 100%;
            text-align: center;
        }

        .section-bg-dark .feature-card {
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 255, 255, 0.1);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(99, 102, 241, 0.2);
            border-color: var(--primary-color);
        }

        .feature-icon {
            font-size: 3.5rem;
            margin-bottom: 25px;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .feature-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--dark-color);
        }

        .section-bg-dark .feature-title {
            color: white;
        }

        .feature-description {
            color: #262626;
            line-height: 1.8;
        }

        .section-bg-dark .feature-description {
            color: rgba(255, 255, 255, 0.7);
        }

      
        .highlight-box {
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
        
           padding: 15px;
  border-radius: 15px;
  margin: 15px 0;
        }

        .section-bg-dark .highlight-box {
            background: rgba(255, 255, 255, 0.05);
            border-left: 5px solid var(--accent-color);
        }

        .highlight-box p {
            margin-bottom: 0;
            font-weight: 600;
        }

      
        .niche-overview {
            background: white;
            padding: 30px;
            border-radius: 20px;
            margin-bottom: 25px;
            border-left: 5px solid var(--secondary-color);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .section-bg-dark .niche-overview {
            background: rgba(255, 255, 255, 0.05);
            border-left: 5px solid var(--primary-color);
        }

        .niche-overview:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .niche-overview h4 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--dark-color);
        }

        .section-bg-dark .niche-overview h4 {
            color: white;
        }

        .niche-overview h4 i {
            margin-right: 12px;
            color: var(--secondary-color);
        }

        .section-bg-dark .niche-overview h4 i {
            color: var(--primary-color);
        }

        .niche-overview p {
            margin-bottom: 0;
            color: #64748b;
        }

        .section-bg-dark .niche-overview p {
            color: rgba(255, 255, 255, 0.7);
        }

       
        .niche-card {
            background: white;
            padding: 30px;
            border-radius: 20px;
            margin-bottom: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 2px solid #e2e8f0;
        }

        .section-bg-dark .niche-card {
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 255, 255, 0.1);
        }

        .niche-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            border-color: #bd389f;
        }

        .niche-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .niche-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-right: 15px;
            min-width: 50px;
        }

        .niche-title {
            font-size: 1.6rem;
            font-weight: 700;
            margin: 0;
            color: var(--dark-color);
        }

        .section-bg-dark .niche-title {
            color: white;
        }

        .sub-niche-item {
            background: var(--light-color);
            padding: 12px 20px;
            border-radius: 12px;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border: 2px solid #e2e8f0;
            transition: all 0.3s ease;
        }

        .section-bg-dark .sub-niche-item {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.2);
            color: white;
        }

        .sub-niche-item:hover {
            transform: translateX(5px);
       
            box-shadow: 0 3px 15px rgba(99, 102, 241, 0.2);
        }

        .sub-niche-name {
            font-weight: 600;
        }

        .sub-niche-name i {
            margin-right: 10px;
            color: var(--secondary-color);
            font-size: 0.9rem;
        }

        .prompt-count {
            font-weight: 700;
            color: #bd389f;
            background: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.9rem;
        }

        .section-bg-dark .prompt-count {
            background: rgba(255, 255, 255, 0.15);
            color: #38d8ff;
        }

      
        .reason-card {
            background: white;
            padding: 40px;
            border-radius: 25px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
            height: 100%;
            transition: all 0.3s ease;
        }

        .reason-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-1);
        }

        .reason-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .reason-number {
            font-family: 'Montserrat', sans-serif;
            font-size: 5rem;
            font-weight: 900;
            color: #e2e8f0;
            position: absolute;
            top: 10px;
            right: 30px;
            line-height: 1;
            z-index: 1;
        }

        .reason-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }

        .reason-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--dark-color);
            position: relative;
            z-index: 2;
        }

        .reason-description {
            color: #64748b;
            line-height: 1.8;
            position: relative;
            z-index: 2;
        }

       
        .earnings-section {
            background: var(--gradient-1);
            color: white;
            padding: 50px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .earnings-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        .earnings-icon {
            font-size: 5rem;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }

        .earnings-amount {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(3rem, 6vw, 5rem);
            font-weight: 900;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }

        .earnings-text {
            font-size: 1.6rem;
            font-weight: 600;
            position: relative;
            z-index: 2;
        }

      
        .stats-section {
           background: linear-gradient(135deg, #329bc4 0%, #5a7eba 50%, #a847a5 100%);
    padding: 50px 0;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
        }

        .stat-card {
            text-align: center;
            padding: 30px;
            position: relative;
            z-index: 2;
        }

        .stat-icon {
            font-size: 3rem;
            margin-bottom: 15px;
        }

        .stat-number {
            font-family: 'Montserrat', sans-serif;
            font-size: 4rem;
            font-weight: 900;
            display: block;
            margin-bottom: 15px;
        }

        .stat-label {
            font-size: 1.2rem;
            opacity: 0.95;
            font-weight: 600;
        }

     
        .letter-box {
            background: white;
            padding: 30px;
            border-radius: 30px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }

        .section-bg-dark .letter-box {
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 255, 255, 0.1);
        }

        .letter-greeting {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 30px;
            color: var(--dark-color);
        }

        .section-bg-dark .letter-greeting {
            color: white;
        }

        .letter-box p {
            font-size: 1.1rem;
            line-height: 1.9;
            color: #475569;
            margin-bottom: 25px;
        }

        .section-bg-dark .letter-box p {
            color: rgba(255, 255, 255, 0.85);
        }

 
        @media (max-width: 768px) {
            .section-padding {
                padding: 60px 0;
            }

            .hero-section {
                padding: 80px 0 60px;
            }

            .content-image {
                min-height: 300px;
                margin-bottom: 40px;
            }

            .letter-box {
                padding: 40px 30px;
            }

            .reason-number {
                font-size: 3.5rem;
                top: 15px;
                right: 20px;
            }
        }

  
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease-out;
        }

        .fade-in-up.animate {
            opacity: 1;
            transform: translateY(0);
        }





        @media (max-width:767px) {
            .hidden-xs {
                display: none !important
            }
        }


        .visible-xs {
            display: none !important
        }


        @media (max-width:767px) {
            .visible-xs {
                display: block !important
            }
        }

        .footer {
            background: #111;
            color: rgba(255, 255, 255, 0.4);
            padding: 4rem 0 2rem 0;
            text-align: center;
        }