/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header/Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%; 
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
 
.enroll-btn {
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.enroll-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

/* Hero Section */ 
.feature {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-image {
    position: relative;
    height: 500px;
}

.hero-bg {
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect width="400" height="300" fill="%23f8fafc"/><circle cx="200" cy="150" r="80" fill="%238B5CF6" opacity="0.1"/><rect x="160" y="120" width="80" height="60" rx="10" fill="%236366F1" opacity="0.2"/><circle cx="180" cy="140" r="8" fill="%23EF4444"/><circle cx="220" cy="140" r="8" fill="%2310B981"/></svg>') center/cover;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* AI Section */
.ai-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    color: white;
}

.ai-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ai-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
}

.ai-text p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.enroll-btn-secondary {
    background: #10B981;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.enroll-btn-secondary:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.ai-image {
    position: relative;
    height: 400px;
}

.ai-bg {
    width: 100%;
    height: 100%; 
    background: url(images/frame45.png) center/ cover no-repeat;
     border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

/* Benefits Section */
.benefits-section {
    padding: 120px 0;
    background: #f8fafc;
}

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

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

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

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

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #E0E7FF, #C7D2FE);
    border-radius: 50%;
    margin: 0 auto 20px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #6B7280;
    line-height: 1.6;
}

/* Quote Section */
.quote-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #1F2937, #374151);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.full-stop { 
    display: inline-block;
    background-color: #F9A682; 
  width: 7px;  
  height: 7px; 
  border-radius: 50%;  
opacity: 1;  
 }
.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(7, 39, 67, 0.15) 0%, #072743 100%), url(images/rob.png) center / cover no-repeat; 
}

.quote-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.quote-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
}

.highlight {
    background: linear-gradient(135deg, #F59E0B, #F97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.quote-author {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 40px;
    font-style: italic;
}

.enroll-btn-quote {
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.enroll-btn-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.4);
}

/* Testimonials Section */
.testimonials-section {
    padding: 120px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #f8fafc;
    padding: 40px 30px;
    border-radius: 20px;
    border-left: 5px solid #8B5CF6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stars {
    color: #F59E0B;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-card p {
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
}

.testimonial-author strong {
    color: #1F2937;
    font-weight: 600;
}

/* Waitlist Section */
.waitlist-section {
    padding: 120px 0;
    background: linear-gradient(180deg, rgba(7, 39, 67, 0.15) 0%, #072743 100%), url(images/a.png) center / cover no-repeat; 
 
    color: white;
    text-align: center;
}

.waitlist-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.waitlist-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.waitlist-form {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
}

.email-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.join-btn {
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.join-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.4);
}

/* Pricing Section */
.pricing-section {
    padding: 120px 0;
    background: #f8fafc;
    text-align: center;
}

.section-subtitle {
    color: #6B7280;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 80px;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
     color: #9d57f6;
}

.pricing-card {
    background: white;
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    flex: 1;
    max-width: 350px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card.featured {
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
}

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

.pricing-card.featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.pricing-subtitle {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 30px;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.price-period {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 40px;
}

.order-btn, .order-btn-outline {
    width: 100%;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.order-btn {
    background: white;
    color: #8B5CF6;
    border: none;
}

.order-btn-outline {
    background: transparent;
    color: #8B5CF6;
    border: 2px solid #8B5CF6;
}

.order-btn:hover, .order-btn-outline:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: #f8fafc;
    border-radius: 15px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: #1F2937;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #8B5CF6;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 30px 25px;
    color: #6B7280;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    color: white;
    padding: 30px 0;
}

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

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

.social-links a {
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 0.8;
}


    .social-icons {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 40px;
      width: auto;
      height: 30px;
    }

    .social-icon {
      width: 20px;
      height: 20px;
      background: #f7fafc;
      display: inline-block;
    }

    .social-icon.facebook {
      width: 10px;

    }

    .social-icon.twitter {
      width: 24px;
      height: 24px;
      background: url('images/x-logo.jpg') no-repeat center;
      background-size: contain;
    }

    .social-icon.linkedin {
      width: 24px;
      height: 24px;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23007bb6"><path d="M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433c-1.144 0-2.063-.926-2.063-2.065 0-1.138.92-2.063 2.063-2.063 1.14 0 2.064.925 2.064 2.063 0 1.139-.925 2.065-2.064 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z"/></svg>') no-repeat center;
      background-size: contain;
    }

    .social-icon.instagram {
      width: 24px;
      height: 24px;
      background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"><rect width="24" height="24" rx="5" fill="%23E4405F"/><path d="M12 7.2a4.8 4.8 0 1 0 0 9.6 4.8 4.8 0 0 0 0-9.6zm0 7.8a3 3 0 1 1 0-6 3 3 0 0 1 0 6zm5.25-7.95a1.125 1.125 0 1 1-2.25 0 1.125 1.125 0 0 1 2.25 0z" fill="white"/><circle cx="12" cy="12" r="3" fill="none" stroke="white" stroke-width="1.5"/><rect x="3.75" y="3.75" width="16.5" height="16.5" rx="4.25" stroke="white" stroke-width="1.5"/></svg>') no-repeat center;
      background-size: contain;  background-size: contain;
    }
/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .ai-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .waitlist-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        display: none;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .quote-content h2 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #CBD5E0;
  border-radius: 8px;
  font-size: 1rem;
  background-color: #FFF;
}

/* Ensure the form wraps nicely inside your pricing section */
.payment-form {
  margin-top: 2rem;
}
/* General Styling */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: white;
    background-color: #2c004a; /* A dark purple for the background */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header { 
    padding: 20px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

/* Solid background after scrolling past AI section */
.header.scrolled {
    background: rgba(5, 39, 57, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-right: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

.enroll-btn {
    background-color: #4CAF50; /* A green color for the button */
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
}

/* Hero Section */
.hero {
    background: linear-gradient(180deg, rgba(7, 39, 67, 0.15) 0%, #072743 100%), url(images/image16.png) center / cover no-repeat; 
    background-size: cover;
    
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-content {
    padding: 20px;
    padding-top: 40px;
    background-color: rgba(0, 0, 0, 0.01); /* Semi-transparent overlay */
}

.tagline {
    font-size: 16px;
    letter-spacing: 2px;
}

h1 {
    font-size: 48px;
    margin: 10px 0;
}

.features span {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 10px 15px;
    margin: 5px;
    border-radius: 20px;
    display: inline-block;
}

/* AI Section */
.ai-section {
    background-color: #3b0066; /* A slightly different purple */
    padding: 80px 0;
}

.ai-section .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.ai-text {
    flex: 1;
}

.ai-image {
    flex: 1;
    min-height: 400px;
    background-image: url('images/rob.png'); /* Replace with the actual image path */
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}

h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

/* Hamburger styles */
.hamburger {
    display: none;
    flex-direction: column;
    position: relative;
    right: -20vw;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
    margin-left: 1rem;
}
.hamburger .bar {
    height: 4px;
    width: 100%;
    background: #222;
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s;
}
@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }
    nav ul.nav-links {
        display: none !important;
    }
    .enroll-btn {
        display: none !important;
    }
    .mobile-nav {
        display: block;
    }
}
.mobile-nav {
    display: flex;
    position: fixed;
    top: 0; left: 0; right: 0;
    background: #052739;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    z-index: 1001;
    padding: 2.5rem 1.5rem 1.5rem 1.5rem;
    transition: transform 0.3s ease;
    transform: translateY(-100%);
}
.mobile-nav.open {
    display: block;
    transform: translateY(0);
}
.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-direction: column;
    align-items: center;
}
.mobile-nav li {
    margin-bottom: 1.2rem;
}
.mobile-nav a {
    color: #f2f1f1;
    font-size: 1.1rem;
    text-decoration: none;
    font-weight: 500;
}
@media (min-width: 901px) {
    .mobile-nav {
        display: none !important;
    }
}
.testimonial-quote {
    font-style: italic;
    color: #040000;
    margin-bottom: 20px;
}

/* re-use small styles, adapt to your site as needed */
.waitlist-form { display:flex; gap:8px; align-items:center; margin-top:12px; } 
.join-btn { 
  background:#6b46c1; color:#fff; cursor:pointer;
}
.join-btn.loading { color: transparent; pointer-events: none; }
.join-btn.loading::after {
  content: "";
  width:18px; height:18px;
  border:2px solid rgba(255,255,255,0.6);
  border-top-color:#fff; border-radius:50%;
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  animation:spin .7s linear infinite;
}
@keyframes spin { from { transform: translate(-50%,-50%) rotate(0deg); } to { transform: translate(-50%,-50%) rotate(360deg); } }

.message { margin-top:12px; padding:10px; border-radius:6px; display:block; }
.message.success { background:#ecfdf5; color:#065f46; border:1px solid #bbf7d0; }
.message.error   { background:#fff1f2; color:#9f1239; border:1px solid #fecaca; }
.hidden { display:none !important; }
