    /* GLOBAL STYLES */
    body {
      margin: 0;
      padding: 0;
      font-family: 'Poppins', sans-serif;
      background: #f8f9fa;
    }
a{
  text-decoration: none;
  color: unset;
}
    /* ===============================
       TOP INFO BAR
    =============================== */
    .top-bar {
      background: #fff;
      width: 100%;
      padding: 15px 150px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      box-shadow: 0px 4px 10px rgba(138, 138, 138, 0.25);
      flex-wrap: wrap;
      gap: 10px;
    }

    .top-group {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 12px;
      font-weight: 400;
      line-height: 24px;
      color: #001857;
      flex-wrap: wrap;
    }

    .top-bar img {
      width: 24px;
      height: 24px;
    }

    .email-box {
      color: #001857;
      min-width: 150px;
      height: 23px;
      display: flex;
      align-items: center;
      border-radius: 4px;
      font-size: 12px;
      line-height: 24px;
      padding: 0 5px;
    }

    /* ===============================
       NAVBAR
    =============================== */
    .navbar {
      background: linear-gradient(90deg, #2AECF4 0%, #25D5DC 100%);
      padding: 10px 0;
      z-index: 1000;
    }

    .nav-link {
      color: rgba(0, 24, 87, 1) !important;
      font-size: 16px;
      font-weight: 400;
      line-height: 24px;
      padding: 8px 14px !important;
      border-radius: 5px;
      transition: 0.3s ease;
      position: relative;
    }

    .nav-link.active {
      font-weight: 700;
      color: rgba(0, 24, 87, 1) !important;
    }

    .nav-link.active::after {
      content: "";
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: -10px;
      width: 74px;
      height: 8px;
      background: rgba(255, 255, 255, 1);
      border-radius: 5px;
    }

    /* Navbar Buttons */
    .login {
      width: 130px;
      height: 40px;
      border-radius: 10px;
      background: #ffffff;
      margin-right: 10px;
      font-weight: 600;
      font-size: 14px;
      border: none;
      transition: 0.3s;
    }

    .login:hover {
      background: #f0f0f0;
      cursor: pointer;
    }

    .trial {
      width: 130px;
      height: 40px;
      border-radius: 10px;
      background: rgba(6, 37, 120, 1);
      color: #fff !important;
      font-weight: 600;
      font-size: 14px;
      border: none;
      transition: 0.3s;
    }

    .trial:hover {
      background: rgba(6, 37, 120, 0.8);
      cursor: pointer;
    }

    /* ===============================
       HERO SECTION
    =============================== */
    .hero-section {
      position: relative;
      width: 100%;
      height: 450px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 5%;
      background-image: url('./icons/Ellipse.svg');
      background-repeat: no-repeat;
      background-position: center bottom;
      background-size: cover;
      flex-wrap: wrap;
      gap: 20px;
    }

    .hero-content {
      max-width: 550px;
      
    }

    .hero-content h2 {
      font-family: 'Reddit Sans', sans-serif;
      font-weight: 400;
      font-size: 48px;
      line-height: 100%;
      color: rgba(1, 177, 183, 1);
      margin-bottom: 15px;
    }

    .hero-content h1 {
      font-family: 'Poppins', sans-serif;
      font-weight: 500;
      font-size: 48px;
      line-height: 100%;
      color: rgba(255, 255, 255, 1);
      margin-bottom: 30px;
    }

    .hero-buttons {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .try-for-free {
      width: 226px;
      height: 48px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 1);
      color: #001857;
      font-weight: 500;
      font-size: 18px;
      border: none;
      transition: 0.3s;
    }

    .try-for-free:hover {
      background: #f0f0f0;
      cursor: pointer;
    }

    .get-in-touch {
     width: 226px;
       height: 48px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0);
      color: #ffffff;
      font-family: 'Poppins', sans-serif;
      font-weight: 400;
      font-size: 24px;
      border: 1px solid rgba(255, 255, 255, 1);
      text-align: center;
      transition: 0.3s;
    }

    .get-in-touch:hover {
      background: rgba(136, 225, 228, 0.8);
      cursor: pointer;
    }

    .hero-image img {
      max-width: 100%;
      height: auto;
    }
    .feature-cards {
  background: #f5f8ff;
}

.feature-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #031b4e;
  margin-top: 20px;
  margin-bottom: 15px;
}

.feature-card p {
  font-size: 16px;
  color: #3a4a60;
  line-height: 1.6;
}

.icon-box {
  width: 100px;
  height: 100px;
  background: #001857;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box img {
  width: 50px;
}


/* RESPONSIVE — MOBILE */
@media (max-width: 768px) {

  .hero-section {
    padding: 60px 0;
    text-align: center;
  }

  .hero-content h2 {
    font-size: 32px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .try-for-free,
  .get-in-touch {
    width: 100%;
  }
}
/* ------------------------------
   Sales Platform Section
------------------------------ */

.sales-platform-section {
  background: #ffffff;
}

.large-circle {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  overflow: hidden;
}

.large-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* SMALL IMAGE */
.small-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  top: -20px;
  left: 40px;
  border: 6px solid #fff;
}

.small-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* PLAY BUTTON */
.play-btn {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background: #002d72;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 30px;
  left: 320px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.play-btn img {
  width: 40px;
}

/* TEXT CONTENT */
.sales-title {
  font-size: 36px;
  font-weight: 700;
  color: #072c5a;
  margin-bottom: 20px;
}

.sales-text {
  font-size: 16px;
  color: #2a2a2a;
  line-height: 1.5;
  margin-bottom: 25px;
  text-align: justify;
}

/* LIST ITEMS */
.sales-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.sales-list li {
  display: flex;
  align-items: center;
  font-size: 16px;
  margin-bottom: 14px;
  text-align: justify;
}

.tick-icon {
  width: 24px;       
  height: 24px; 
  background: #00d2be;
  border-radius: 50%;   
  display: flex;        
  align-items: center; 
  justify-content: center; 
  position: relative;
  flex-shrink: 0;       
}

.tick-icon::after {
  content: "✔";
  color: white;
  font-size: 16px;
}



/* BUTTON */
.try-btn {
  background: #002d72;
  color: white;
  padding: 14px 40px;
  font-size: 18px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: 0.3s ease;
}

.try-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}
/* WORKFLOW FEATURE CARDS */
.workflow-section {
  background: linear-gradient(
    to bottom,
    #00154C 0%,
    #0132B2 50%,
    #00154C 100%
  );
  padding: 100px 0;
}

/* Grid layout (3 equal cards) */
.workflow-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.workflow-card {
  text-align: center;
  position: relative;
}

/* Top Image */
.workflow-img {
  width: 100%;
  height: 220px;
  border-radius: 20px;
  overflow: hidden;
}

.workflow-img img {
  width: 100%;
  object-fit: cover;
}

/* Round Icon */
.workflow-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #E9F7FF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -40px auto 0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  z-index: 10;
  position: relative;
}

.workflow-icon img {
  width: 40px;
  height: 40px;
}

/* White Text Box */
.workflow-text {
  background: #ffffff;
  padding: 10px;
  border-radius: 20px;
  margin-top: -20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  min-height: 160px; /* Ensures all cards same height */
  display: flex;
  align-items: center;
}

.workflow-text p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #001f4d;
  font-weight: 400;
}

/* ========================================================== */
/* FAQ SECTION STYLES */
/* ========================================================== */

.faq-with-mockup {
  background-color: white; /* Assuming default white background */
  padding: 80px 0;
  
}

.faq-with-mockup h2 {
  color: #123458;
  font-weight: 700;
  font-size: 2.5rem;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 40px;
}

.faq-item {
  border: 1px solid #e0faff; /* Light border */
  border-radius: 8px;
  margin-bottom: 10px;
  background-color: #f7fcff; /* Very light background for items */
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  font-weight: 600;
  color: #001857;
  font-size: 1.1rem;
}

.faq-question .icon {
  font-size: 1.5rem;
  color: #001857; 
}

.faq-answer {
  max-height: 0;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding: 0 20px;
}

.faq-item.open .faq-answer {
  max-height: 600px; 
  padding: 15px 20px;
}

.faq-item.open {
  background-color: #fff; 
  border-color: #001857;
}

.faq-item.open .faq-question .icon {
  color: #001857;
}

.faq-answer p {
  margin-bottom: 0;
  color: #555;
  line-height: 1.6;
}

.mockup-container.single-image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.single-mockup-img {
  max-width: 100%;
  height: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15); 
  border-radius: 12px;
}

@media (max-width: 991px) {
  .faq-with-mockup h2 {
    font-size: 2rem;
    text-align: center;
  }
}
.testimonials-section {
  /* Light cyan/mint background color */
  background-color: #c9ffff; 
}

.testimonials-section .tagline {
  color: #555;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 0.5rem;
}

.testimonials-section .section-title {
  color: #123458;
  font-weight: 700;
  font-size: 2.5rem;
  font-family: 'Poppins', sans-serif;
}

.testimonial-card {
  background-color: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  height: 100%; /* Ensure all cards are the same height */
  display: flex;
  flex-direction: column;
}

.testimonial-card .quote-icon {
  position: absolute;
  top: -20px;
  left: 20px;
  width: 50px;
  height: 50px;
  background-color: #01D4DC; 
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonial-card .quote-icon svg {
  width: 28px;
  height: 28px;
}

.testimonial-text {
  margin-top: 25px; 
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  flex-grow: 1; 
  text-align: center;
}

.client-info {
  display: flex;
  align-items: center;
  margin-top: auto; 
}

.client-info .client-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.client-info .client-name {
  font-weight: 600;
  color: #123458;
  margin: 0;
  font-size: 1rem;
}

.client-info .client-title {
  color: #00c9c7;
  font-weight: 500;
  margin: 0;
  font-size: 0.9rem;
}


.stats-section {
  background: linear-gradient(to right, #01D3DC, #0032BC);
  color: white;
  padding: 80px 0;
}

.stat-item {
  display: flex;
  flex-direction: row; 
  align-items: center; 
  justify-content: flex-start; 
}

.stat-icon {
  width: 100px; 
  height: 100px;
  margin-right: 15px; 
  margin-bottom: 0; 
  display: flex; 
  align-items: center;
  justify-content: center;
    border-radius: 50%; 
}

.stat-icon img {
  width: 70px; 
  height: 80px;
  object-fit: contain; 
  filter: none; 
}

.stat-content {
  display: flex;
  flex-direction: column; 
  align-items: flex-start; 
}

.stat-number {
  font-size: 2.8rem; 
  font-weight: 700;
  margin-bottom: 0px; 
  font-family: 'Poppins', sans-serif;
  line-height: 1.1; 
}

.stat-label {
  font-size: 1rem; 
  font-weight: 400;
  opacity: 0.8; 
  white-space: nowrap; 
}


/* ========================================================== */
/* BLOG SECTION STYLES */
/* ========================================================== */

.blog-section {
  background-color: #fff; 
  padding: 80px 0;
}

.blog-tagline {
  color: #555;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.blog-section-title {
  color: #123458;
  font-weight: 700;
  font-size: 2.5rem;
  font-family: 'Poppins', sans-serif;
}

/* General Blog Card Styling */
.blog-card {
  background-color: #F0FFFF;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  height: 100%; 
  padding: 15px;
}

/* Main Blog Card (Left) */
.main-blog-card .blog-card-img {
  width: 100%;
  height: 300px; 
  object-fit: cover;
  border-radius:10px ;
  border-bottom: 1px solid #eee; 
}

.main-blog-card .blog-card-body {
  padding: 25px;
}

.main-blog-card .blog-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #123458;
  margin-bottom: 15px;
  line-height: 1.3;
}

.main-blog-card .blog-card-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.small-blog-card {
  display: flex; 
  align-items: flex-start; 
}

.small-blog-card .blog-card-img-small {
  width: 200px; 
  height: 160px; 
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0; 
  border-right: 1px solid #eee; 
}

.small-blog-card .blog-card-body-small {
  padding: 20px;
  flex-grow: 1;
}

.small-blog-card .blog-card-title-small {
  font-size: 1.15rem;
  font-weight: 600;
  color: #123458;
  margin-bottom: 10px;
  line-height: 1.3;
}

.small-blog-card .blog-card-text-small {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
}
/* Footer Container */
.fahosel-footer {
  background: #001756; /* exact purple from screenshot */
  color: #ffffff;
  padding: 60px 0 40px;
  font-family: "Inter", sans-serif;
}

.footer-container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Top Section */
.footer-top {
  display: flex;
  justify-content: space-between;
}

.footer-left {
  max-width: 900px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 20px;
}

.footer-company {
  font-size: 18px;
  margin-bottom: 18px;
  opacity: 0.9;
}

.footer-desc {
  font-size: 18px;
  line-height: 1.6;
  max-width: 900px;
  margin-bottom: 28px;
}

/* Social Icons */
.footer-social {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-social img {
  width: 32px;
  height: 32px;
  filter: brightness(100%);
}

.footer-email {
  font-size: 18px;
  margin-left: 10px;
  opacity: 0.9;
}

/* Divider */
.footer-divider {
  margin: 40px 0;
  border-color: rgba(255, 255, 255, 0.3);
}

/* Bottom Section */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 16px;
  opacity: 0.9;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  opacity: 0.95;
}

.footer-links a:hover {
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}



    /* ===============================
       MEDIA QUERIES
    =============================== */
    @media (max-width: 992px) {
      .top-bar {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 20px;
      }

      .navbar .container {
        padding: 0 20px;
      }

      .login,
      .trial {
        width: 100px;
        font-size: 13px;
      }

      .hero-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
      height: 100%;
      position: relative;
      bottom: 45px;
      }

      .hero-content {
        max-width: 100%;
      }
      .workflow-img {
    height: 180px;
  }
  .workflow-cards {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .faq-with-mockup {
    grid-template-columns: 1fr;
  }

  .mockup-container {
    height: auto;
  }

  .mockup {
    position: static;
    margin-top: 20px;
  }
   .stat-item {
    flex-direction: column;        
    text-align: center;
    align-items: center;
  }

  .stat-icon {
    width: 80px;
    height: 80px;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .stat-icon img {
    width: 55px;
    height: 60px;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .stat-label {
    font-size: 0.9rem;
    white-space: normal;          /* allow wrapping */
    text-align: center;
  }
   .hero-content h2 {
        padding-top: 22px;
      }
  .navbar-nav .nav-link.active::after {
    display: none;
  }
 .hero-buttons {
    display: flex;
    justify-content: center !important;
    align-items: center;
    width: 100%;
    text-align: center;
    gap: 15px;
  }
  }

    @media (max-width: 576px) {
      .top-bar {
        padding: 10px 15px;
      }

      .top-group {
        font-size: 11px;
        gap: 3px;
      }

      .nav-link {
        font-size: 14px;
        padding: 6px 10px !important;
      }

      .login,
      .trial {
        width: 90px;
        font-size: 12px;
      }

      .hero-content h1,
      .hero-content h2 {
        font-size: 32px;
        padding-top: 22px;
      }

      .try-for-free {
        width: 180px;
        font-size: 16px;
      }

      .get-in-touch {
        width: 120px;
        font-size: 16px;
      }
      .workflow-icon {
    width: 70px;
    height: 70px;
      }
       .stat-item {
    margin-bottom: 30px; 
  }
  .stat-number {
    font-size: 2.5rem;
  }
  .stat-label {
    font-size: 0.95rem;
  }
  .main-blog-card .blog-card-img {
    height: 200px;
  }
  .blog-card-body {
    padding: 15px;
  }
  .small-blog-card {
    flex-direction: column; 
    align-items: center;
    text-align: center;
  }
  .small-blog-card .blog-card-img-small {
    width: 100%; 
    height: 180px; 
    border-right: none;
    border-bottom: 1px solid #eee; 
  }
  .small-blog-card .blog-card-body-small {
    padding: 15px;
  }
    }


@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
 
  .stat-number {
    font-size: 2.8rem;
  }
  .stat-label {
    font-size: 1rem;
  }
  .stats-section {
    padding: 60px 0;
  }
  .col-sm-6:nth-child(even) .stat-item { 
    margin-right: 0; 
  }
  .blog-section {
    padding: 60px 0;
  }
  .main-blog-card .blog-card-title {
    font-size: 1.3rem;
  }
  /* .small-blog-card .blog-card-img-small {
    width: 150px; 
    height: 120px;
  } */
  .small-blog-card .blog-card-title-small {
    font-size: 1rem;
  }
  .small-blog-card .blog-card-text-small {
    font-size: 0.85rem;
  }
  .hero-section {
    position: relative;
    bottom: 12px;
    z-index: -1;
      }
 .large-circle {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
       
}

.large-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;  
}


  .play-btn {
    width: 65px;
    height: 65px;
    left: 200px;
    bottom: 20px;
  }

  .play-btn img {
    width: 28px;
  }
  
}