@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&family=Inter:wght@400;600&display=swap');

/* ==================================================
   eAdvisorPro365 Website Styles
   ================================================== */

   :root {
    --blue-dark: #07142d;
    --blue-primary: #1549B2;
    --blue-mid: #2e4b84;
    --blue-accent: #377dff;
    --blue-slate: #223645;
    --grey-text: #444444;
    --blue-light: #6cb5ff;
    --brand-navy: #07142d;
    --brand-blue: #377dff;
    --brand-gray: #f4f6fa;
  }
  
  body {
    font-family: "Inter", sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: var(--grey-text);
    background-color: white;
  }
  
  h1, h2, h3, h4 {
    color: var(--blue-dark);
    margin-top: 0;
  }
  
  /* ---------------------------------------------------
     Navigation
     ---------------------------------------------------*/
     .site-header {
        position: sticky;
        top: 0;
        z-index: 1000;
        background-color: var(--blue-dark);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        width: 100%;
      }
      
      /* Top Navigation Layout */
      .top-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 2px 0;
        max-width: none !important;
        margin: 0;
      }
  
      
      /* Logo */
      .logo {
        flex-shrink: 0;
      }
      
      .logo img {
        height: 120px;
        max-width: 100%;
        padding-left: 20px;
      }
      
      /* Navigation Links */
      .nav-actions {
        display: flex;
        align-items: center;
        gap: 24px;
        margin-left: auto; 
        margin-right: 20px;
      }
      
      
      .nav-actions a {
        text-decoration: none;
        color: var(--blue-primary);
        font-weight: 400;
        text-transform: uppercase;
        transition: color 0.3s ease;
      }
  
      
      /* Subscribe Button */
      .cta.subscribe {
        background-color: var(--blue-primary);
        color: white;
        padding: 10px 20px;
        border-radius: 8px;
        font-weight: 400;
        border: none;
        text-transform: uppercase;
        transition: background-color 0.3s ease;
      }
      
      .cta.subscribe:hover {
        background-color: var(--blue-accent);
        cursor: pointer;
      }

    /* Main Nav Menu */
    .main-nav {
        background-color: var(--blue-primary);
      }

      .main-nav :hover {
        background-color: var(--blue-accent);
        cursor: pointer;
      }
      
      .main-nav h1 {
        color: #ffffff;
        text-decoration: none;
        font-weight: 400;
        padding-bottom: 6px;
        border-bottom: 3px solid transparent;
        transition: border-bottom 0.3s ease;
        gap: 24px;
        list-style: none;
        padding: 3px 10px;
        margin: 0;
        text-align: center;
        font-size: medium;
      }
      
      .main-nav a:hover,
      .main-nav a.active,
      .nav-actions a:hover {
        border-bottom: 3px solid var(--blue-light);
        cursor: pointer;
      }

      .free-trial-banner-btn {
        font-size: 1.0rem;
        font-weight: 700;
        background: none;
        border: none;
        color: #fff;
        cursor: pointer;
        text-align: center;
        width: 100%;
        padding: 10px 0;
        transition: color 0.3s ease;
      }
    

  /* ---------------------------------------------------
     Moving Logo Banner
     ---------------------------------------------------*/
  .logo-marquee {
    background-color: #fff;
    text-align: center;
    padding: 4rem 1rem;
    overflow: hidden;
  }
  
  .logo-marquee h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #07142d;
    margin-bottom: 2rem;
  }
  
  .marquee {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  
  .marquee-track {
    display: flex;
    width: fit-content;
    animation: scroll 50s linear infinite;
    gap: 4rem;
    align-items: center;
  }
  
  .marquee-track img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: grayscale(0%);
    transition: transform 0.3s ease;
  }
  
  .marquee-track img:hover {
    transform: scale(1.1);
  }
  
  @keyframes scroll {
    from {
      transform: translateX(0%);
    }
    to {
      transform: translateX(-50%);
    }
  }
  
/* ---------------------------------------------------
  Hero Section
  ---------------------------------------------------*/
.hero-section {
  position: relative;
  width: 100%;
  height: 60vh; /* 60% of viewport height */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  padding: 2rem;
}

.text-block {
  max-width: 800px;
  margin: 0 auto;
}

.text-block h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: white;
}

.text-block p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: white;
}

.trial-banner {
  background-color: var(--blue-primary);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.trial-bold {
  font-size: 1.25rem;
  font-weight: bold;
  display: block;
}

.trial-sub {
  font-size: 0.875rem;
  opacity: 0.9;
}

.trial-banner:hover {
  background-color: #377dff;
  cursor: pointer;
}

/* ---------------------------------------------------
  Why Join Us Section
  ---------------------------------------------------*/
.why-choose-us {
  text-align: center;
  padding: 80px 20px;
  background-image: url('RBimages\ copy/wcubackground.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  color: white;
  }

.why-choose-us h2 {
    color: #fff;
}
  
  .feature-grid {
    display: grid;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .feature-box {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  }
  
  .feature-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 1rem;
  }
  
  .feature-box h3 {
    color: var(--blue-dark);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
  }
  
  .feature-box p {
    font-size: 0.95rem;
    color: var(--grey-text);
  }
  
  .center-button {
    display: flex;
    justify-content: center;
  }
  
  .cta-button {
    background-color: var(--blue-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 99px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: var(--blue-accent);
    cursor: pointer;
  }
  
/* ---------------------------------------------------
  Our Product Section
  ---------------------------------------------------*/
  .product-showcase {
    text-align: center;
    padding: 80px 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    color: white;
  }

  .product-showcase h2 {
    font-size: 2.25rem;
    margin-bottom: 40px;
    color: #07142d;
  }

  .product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 10px;
    row-gap: 40px;
    justify-items: center;
    max-width: 960px;
    margin: 0 auto;
  }

  .product-box {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    padding: 24px 20px; /* reduced vertical padding */
    max-width: 340px;
    width: 100%;
    text-align: center;
  }

  .product-icon {
    max-width: 220px;
    margin-bottom: 0.5rem; /* tighter space between icon and heading */
  }

  .product-box h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px; /* reduced from 12px */
    color: var(--blue-primary);
  }

  .product-box p {
    font-size: 0.95rem;
    color: var(--grey-text);
    margin-bottom: 16px; /* reduced from 20px */
    line-height: 1.4; /* more compact lines */
  }

  .product-box .cta-button {
    background-color: var(--blue-primary);
    color: white;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    transition: background-color 0.3s ease;
  }

  .product-box .cta-button:hover {
    background-color: var(--blue-accent);
    cursor: pointer;
  }

  @media (max-width: 768px) {
    .product-grid {
      grid-template-columns: 1fr;
      row-gap: 32px;
    }
  }

/* ---------------------------------------------------
  Video Cta Section
  ---------------------------------------------------*/
  .video-cta {
    position: relative;
    text-align: center;
    padding: 5rem 1rem;
    background-image: url('RBimages\ copy/videobackground.png');
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
  }
  
  .video-cta #tsparticles {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  
  .video-cta-content {
    position: relative;
    z-index: 1;
  }
  
  .video-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  }
  
  .video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border: none;
  }
  
/* ---------------------------------------------------
  Table Comparison Section
  ---------------------------------------------------*/
  .eap365-comparison {
    background: #f9fbff;
    padding: 60px 20px;
    text-align: center;
  }
  .eap365-comparison h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #07142d;
  }
  .comparison-subtitle {
    color: #555;
    margin-bottom: 30px;
  }
  .comparison-table {
    display: flex;
    flex-direction: column;
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    max-width: 960px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
  }
  .comparison-row {
    display: flex;
    justify-content: space-between;
    background: #fff;
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
  }
  .comparison-row.alt-row {
    background: #f1f6fd;
  }
  .comparison-header {
    background: #07142d;
    color: #fff;
    font-weight: 700;
  }
  .comparison-row.total {
    background: #eaf4ff;
    font-weight: bold;
  }
  .comparison-row .col {
    flex: 1;
    text-align: center;
    padding: 4px 10px;
  }
  .comparison-row .col.feature {
    text-align: left;
    flex: 1.5;
  }

  .enterprise-banner .cta-button {
    width: 100%;
    max-width: 1000px;
    margin: 40px auto 0 auto;
    display: block;
    text-align: center;
    background-color: var(--blue-accent);
    color: white;
    padding: 28px 40px; /* makes it taller and wider */
    font-size: 22px;
    font-weight: 500;
    border: none;
    border-radius: 12px;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .enterprise-banner .cta-button:hover {
    background-color: var(--blue-primary);
    cursor: pointer;
  }

  
/* ---------------------------------------------------
  Price Package Comp Section
  ---------------------------------------------------*/
  .pricing-comparison {
    padding: 4rem 1rem;
    text-align: center;
    background-image: url('RBimages\ copy/wcubackground.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    color: white;

  }

  .pricing-comparison h2 {
    color: white;
  }

  .pricing-comparison li {
    color: black;
  }

  .price {
    color: black;
  }

  .plan-grid {
    display: grid;
    gap: 2rem;
    max-width: 1000px;
    margin: 2rem auto 0;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    padding: 1rem;
  }
  
  .plan-box {
    background-color: white;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .plan-box .price {
    font-size: 2rem;
    font-weight: 800;
    margin-top: 1rem;
  }
  .pricing-comparison ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
  }
  
  .pricing-comparison li {
    margin-bottom: 10px; 
  }

/* ---------------------------------------------------
    eAP Portal Section
  ---------------------------------------------------*/
  .portal-edu-section {
    background-color: #fefefe;
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
    color: #1f2937;
  }

  .container2 {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
  }

  .portal-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 50px;
  }

  .portal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0 10px;
  }

  .portal-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  }

  .portal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  }

  .card-title {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111827;
  }

  /* Updated bullet list styles */
  .portal-card ul {
    padding-left: 20px;
    list-style-type: disc;
    line-height: 1.7;
    color: #374151;
    margin: 0;
  }

  .portal-card ul li {
    font-size: 1.05rem;
    margin-bottom: 8px;
  }


  /* Responsive: stack cards in one column on smaller screens */
  @media (max-width: 768px) {
    .portal-grid {
      grid-template-columns: 1fr;
    }

    .portal-card {
      text-align: center;
    }

    .icon-box {
      font-size: 2rem;
    }

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

    .portal-card p {
      font-size: 1rem;
    }
  }

/* ---------------------------------------------------
    eAP Assist Section
  ---------------------------------------------------*/  
  .eap-assist-section {
    position: relative;
    background: #f9fbff;
    padding: 100px 20px;
    text-align: center;
    overflow: hidden;
    z-index: 1;
  }

  .eap-assist-section .container {
    max-width: 1100px;
    margin: 0 auto;
  }

  .eap-assist-section .section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 16px;
  }

  .eap-assist-section .section-description {
    font-size: 1.05rem;
    margin-bottom: 48px;
    color: #4a4a4a;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .eap-assist-section .info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
    text-align: left;
  }

  .eap-assist-section .info-category {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease-in-out;
  }

  .eap-assist-section .info-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  }

  .eap-assist-section .info-category h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111827;
  }

  .eap-assist-section .info-category ul {
    padding-left: 20px;
    line-height: 1.6;
    color: #374151;
  }

  .eap-assist-section .info-category ul li {
    margin-bottom: 8px;
    font-size: 1.05rem;
  }

  @media (max-width: 768px) {
    .eap-assist-section .info-grid {
      grid-template-columns: 1fr;
    }

    .eap-assist-section .info-category {
      text-align: center;
    }

    .eap-assist-section .info-category ul {
      padding-left: 0;
    }
  }

/* ---------------------------------------------------
    eAPUniversity Section
  ---------------------------------------------------*/
  .eap-university-section {
    padding: 80px 20px;
    background-color: #fefefe;
    color: #07142d;
  }

  .eap-university-section .container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
  }

  .eap-university-section .section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 16px;
  }

  .eap-university-section .section-description {
    font-size: 1.05rem;
    margin-bottom: 48px;
    color: #4a4a4a;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .eap-university-section .info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
    text-align: left;
  }

  .eap-university-section .info-category {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease-in-out;
  }

  .eap-university-section .info-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  }

  .eap-university-section .info-category h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111827;
  }

  .eap-university-section .info-category ul {
    padding-left: 20px;
    line-height: 1.6;
    color: #374151;
  }

  .eap-university-section .info-category ul li {
    margin-bottom: 8px;
    font-size: 1.05rem;
  }

  @media (max-width: 768px) {
    .eap-university-section .info-grid {
      grid-template-columns: 1fr;
    }

    .eap-university-section .info-category {
      text-align: center;
    }

    .eap-university-section .info-category ul {
      padding-left: 0;
    }
  }

  /* ---------------------------------------------------
    RoboMax Section
  ---------------------------------------------------*/
    .robomax-section {
    position: relative;
    background: #f9fbff;
    padding: 100px 20px;
    text-align: center;
    overflow: hidden;
    z-index: 1;
  }

  .robomax-section .container {
    max-width: 1100px;
    margin: 0 auto;
  }

  .robomax-section .section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 16px;
  }

  .robomax-section .section-description {
    font-size: 1.05rem;
    margin-bottom: 48px;
    color: #4a4a4a;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .robomax-section .info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
    text-align: left;
  }

  .robomax-section .info-category {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease-in-out;
  }

  .robomax-section .info-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  }

  .robomax-section .info-category h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111827;
  }

  .robomax-section .info-category ul {
    padding-left: 20px;
    line-height: 1.6;
    color: #374151;
  }

  .robomax-section .info-category ul li {
    margin-bottom: 8px;
    font-size: 1.05rem;
  }

  @media (max-width: 768px) {
    .robomax-section .info-grid {
      grid-template-columns: 1fr;
    }

    .robomax-section .info-category {
      text-align: center;
    }

    .robomax-section .info-category ul {
      padding-left: 0;
    }
  }



/* ---------------------------------------------------
  Core Values Section
  ---------------------------------------------------*/
  .core-values {
    position: relative;
    background-color: #f9fbff;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 5rem 1rem;
    text-align: left;
    z-index: 0;
    color: var(--grey-text);
  }

  .core-values h2 {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .values-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }
  
  .value-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
  }
  
  .value-icon {
    min-width: 64px;
    height: 64px;
    border: 2px solid var(--blue-accent);
    border-radius: 50%;
    padding: 0.5rem;
    object-fit: contain;
    background-color: transparent;
  }
  
  .value-item h3 {
    margin: 0;
    color: var(--blue-accent);
  }
  
  .value-item p {
    margin: 0.5rem 0 0 0;
  }
  
  /* ---------------------------------------------------
     Footer
     ---------------------------------------------------*/
     .site-footer {
        font-family: 'Inter', sans-serif;
        background-color: #07142d;
        color: #fff;
      }
      
      .newsletter-section {
        text-align: center;
        padding: 60px 20px 40px;
        background-color: #f0f6ff;
      }
      
      .newsletter-section h3 {
        font-size: 1.6rem;
        font-weight: 700;
        color: #07142d;
        margin-bottom: 10px;
      }
      
      .newsletter-section p {
        color: #07142d;
        margin-bottom: 20px;
      }
      
      .newsletter-form {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0;
        max-width: 600px;
        margin: 0 auto;
      }
      
      .newsletter-form input[type="email"] {
        padding: 14px 20px;
        font-size: 1rem;
        border: none;
        border-radius: 30px 0 0 30px;
        width: 100%;
        max-width: 400px;
      }
      
      .newsletter-form button {
        padding: 14px 30px;
        border-radius: 0 30px 30px 0;
        border: none;
        background-color: #1549B2;
        color: #fff;
        font-weight: 600;
        cursor: pointer;
      }
      
      .footer-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
        align-items: flex-start;
        gap: 20px; 
        padding: 30px 20px;
        background-color: #07142d;
        max-width: 1600px;
        margin: auto;
      }      
      
      .newsletter-inline h4 {
        margin-bottom: 8px;
      }
      
      .newsletter-inline p {
        font-size: 0.9rem;
        margin-bottom: 10px;
      }
      
      .newsletter-form {
        display: flex;
        flex-wrap: nowrap;
        gap: 0;
      }
      
      .newsletter-form input[type="email"] {
        padding: 10px 14px;
        border-radius: 20px 0 0 20px;
        border: none;
        flex: 1;
      }
      
      .newsletter-form button {
        padding: 10px 20px;
        border-radius: 0 20px 20px 0;
        border: none;
        background-color: var(--blue-primary);
        color: #fff;
        font-weight: 600;
        cursor: pointer;
      }
      
      .footer-bottom {
        background-color: #000;
        color: #fff;
        padding: 20px 40px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
      }
      
      .footer-bottom .social-icons {
        display: flex;
        align-items: center;
        gap: 12px;
      }
      
      .footer-bottom img {
        width: 22px;
        height: 22px;
        filter: brightness(0) invert(1);
      }

      .footer-row.single-line {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-wrap: nowrap;
        gap: 60px;
        padding: 60px 40px;
        background-color: #07142d;
        max-width: 1600px;
        margin: auto;
      }
      
      .footer-column {
        color: #fff;
      }
      
      .footer-column h4 {
        font-size: 1.1rem;
        margin-bottom: 10px;
        color: #fff;
        text-decoration: underline;
      }
      
      .footer-column ul {
        list-style: none;
        padding: 0;
        margin: 0;
      }
      
      .footer-column ul li {
        margin-bottom: 8px;
        font-size: 0.95rem;
        color: #fff;
      }

      .footer-column li a {
        color: #ffffff;
        text-decoration: none;
        transition: color 0.3s ease;
      }
      
      .footer-column li a:hover {
        color: var(--blue-accent);
        cursor: pointer;
        text-decoration: underline;
      }
      
      .logo-column {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        min-width: 300px;
      }
      
      
      .logo-column img {
        width: 140px;
        margin-bottom: 12px;
      }

      .logo-wrapper {
        display: flex;
        align-items: center; /* this vertically centers logo and contact info */
        gap: 20px;
      }
        
      
      .logo-wrapper img {
        width: 120px;
        height: auto;
        margin-bottom: 0;
      }
      
      .contact-info {
        list-style: none;
        padding: 0;
        margin: 0;
        font-size: 0.95rem;
        color: #fff;
      }      
      
      .contact-info li {
        margin-bottom: 6px;
        color: #fff; /* Adjust if needed */
        font-size: 0.95rem;
        justify-content: center;
      }

      .contact-info a {
        color: #fff;
        text-decoration: none;
        transition: color 0.3s ease;
      }

      .contact-info a:hover {
        text-decoration: underline;
        cursor: pointer;
      }

      .eap365-hero {
        position: relative;
        background: #f9fbff;
        padding: 120px 20px 80px;
        text-align: center;
        overflow: hidden;
      }
      
      .hero-card {
        position: relative;
        background: #ffffff;
        border-radius: 20px;
        max-width: 650px;
        margin: 0 auto;
        padding: 70px 40px 50px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        z-index: 2;
      }
      
      .logo-badge {
        background: #eaf2ff;
        border-radius: 50%;
        width: 80px;
        height: 80px;
        margin: -100px auto 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
      }
      
      .logo-badge img {
        width: 45px;
        height: auto;
      }
      
      .hero-card h2 {
        font-size: 1.9rem;
        color: #07142d;
        font-weight: 700;
        margin-bottom: 16px;
      }
      
      .hero-card p {
        color: #444;
        font-size: 1rem;
        margin-bottom: 30px;
      }
      
    /* ---------------------------------------------------
      Join Agents Card
     ---------------------------------------------------*/
      .cta-btn {
        display: inline-block;
        background-color: var(--blue-primary);
        color: #fff;
        padding: 16px 30px;
        font-size: 1rem;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        border: none;
      }
      
      .cta-btn small {
        display: block;
        margin-top: 5px;
        font-weight: 500;
        font-size: 0.85rem;
      }
      
      .cta-btn:hover {
        background-color: var(--blue-accent);
        cursor: pointer;
      }
      
  /* ---------------------------------------------------
     colorful background dots
     ---------------------------------------------------*/      
    .dot {
      position: absolute;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      filter: blur(10px);
      opacity: 0.4;
      background-size: cover;
    }

    .dot.red    { background: #ff5a5f; top: 10%; left: 15%; }
    .dot.green  { background: #00c97e; top: 40%; right: 10%; }
    .dot.yellow { background: #ffc800; bottom: 20%; left: 25%; }
    .dot.blue   { background: #377dff; bottom: 15%; right: 20%; }

    /* Background Containers */
    .hero-background,
    .comparison-background,
    .value-background,
    .product-background,
    .video-background {
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
    }

    /* Section Styles */
    .eap365-comparison,
    .product-showcase,
    .video-cta,
    .eap-university-section,
    .portal-edu-section {
      position: relative;
      background: #f9fbff;
      padding: 100px 20px;
      text-align: center;
      overflow: hidden;
      z-index: 1;
    }

    /* Adjust padding for specific section if needed */
    .product-showcase {
      padding: 50px 20px;
    }


  /* ---------------------------------------------------
  Form
  ---------------------------------------------------*/
  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    overflow-y: auto;
  }

  .modal__panel {
    background: #fff;
    border-radius: 8px;
    margin: 60px auto;
    padding: 36px 28px;
    max-width: 640px;
    width: 92%;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  }

  .modal__close {
    position: absolute;
    right: 18px;
    top: 14px;
    font-size: 26px;
    color: #888;
    cursor: pointer;
    line-height: 1;
  }

  .stepper {
    display: flex;
    justify-content: space-between;
    border-bottom: 3px solid #377dff;
    margin-bottom: 24px;
  }

  .stepper__item {
    flex: 1;
    text-align: center;
    padding-bottom: 6px;
    font-weight: 600;
    color: #07142d;
  }

  .stepper__item.active {
    border-bottom: 4px solid #377dff;
  }

  .stepper__sub {
    font-size: 0.825rem;
    font-weight: 400;
  }

  form {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  input[type="text"],
  input[type="email"],
  input[type="tel"] {
    padding: 14px 16px;
    border: 2px solid #dfe8ff;
    border-radius: 8px;
    font-size: 0.95rem;
  }

  input:focus {
    outline: none;
    border-color: #377dff;
  }

  .radio-group {
    display: flex;
    gap: 32px;
  }

  label.radio {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
  }

  .btn-primary {
    background: #377dff;
    color: #fff;
    border: none;
    padding: 14px 20px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: opacity 0.2s;
  }

  .btn-primary:hover {
    opacity: 0.9;
    cursor: pointer;
  }

  .pricing {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
  }

  .pricing label {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 0.95rem;
  }

  #card-element {
    padding: 14px 16px;
    border: 2px solid #dfe8ff;
    border-radius: 8px;
  }

  /* ✅ Modular modal view containers inside #subscribeModal */
  .modal-view {
    display: none;
    text-align: center;
  }

  .modal-view p {
    font-size: 1.1rem;
    font-weight: 500;
    color: #07142d;
    margin-bottom: 24px;
  }

  .modal-view button {
    background: #377dff;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    transition: opacity 0.2s;
  }

  .modal-view button:hover {
    opacity: 0.9;
    cursor: pointer;
  }