
html{
  scroll-behavior: smooth;
}

body{
    background:  white;
    font-family: 'Nunito', sans-serif;
}

::selection{
    background-color: var(--primary-blue);
    color: white;
}

:root {
    --primary-blue: #f10ade;
    --primary-blue-dark:  #f10ade;
    --accent-grey: black;
    --accent-grey-dark:black;
    --light-gray: #f8f9fa;
    --text-color: black;
}

.container{
  display: flex;
  padding: .7rem 1rem;
  justify-content: center;
  text-align: center !important;
}

.navbar-brand{
  display: flex;
  align-self: center;
}


#contact {
  background-color: #f4f4f4;
  padding: 60px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}

.contact-form,
.contact-info {
  flex: 1 1 400px;
}

.contact-form h2,
.contact-info h2 {
  margin-bottom: 20px;
  color: #333;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-weight: 600;
  margin-bottom: 5px;
  color: #555;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  background-color: #fafafa;
  transition: border-color 0.3s;
}

.contact-form textarea{
  height: 30vh;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary-blue);
  outline: none;
}

.contact-form button {
  padding: 14px;
  background-color: var(--primary-blue);
  color: white;
  border: none;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: var(--primary-blue);
}

.contact-info p {
  margin-bottom: 16px;
  font-size: 16px;
  color: #444;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    padding: 20px;
  }
}

.features-item i{
  color: var(--primary-blue) !important;
}


.testimonial-section {
  padding: 5rem 2rem;
  background: linear-gradient(160deg, #0a0a0a, var(--primary-blue));
  color: #fff;
}

.testimonial-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.testimonial-text .badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.testimonial-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.testimonial-text .quote {
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.testimonial-user img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
}

.testimonial-user h4 {
  margin: 0;
}

.testimonial-user small {
  opacity: 0.7;
}

.testimonial-stats {
  display: flex;
  gap: 2rem;
}

.testimonial-stats h3 {
  color: #00ffae;
  font-size: 1.6rem;
}

.testimonial-stats p {
  font-size: 0.85rem;
  opacity: 0.8;
}

.testimonial-video {
  text-align: center;
}

.video-frame {
  position: relative;
  padding-top: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.video-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-caption {
  margin-top: 1rem;
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 900px) {
  .testimonial-wrapper {
    grid-template-columns: 1fr;
  }
}



.custom-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px;
    background: #fff;
}

.navbar-toggler{
  display: none;
}

.custom-logo {
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    color: #333;
}

.custom-middle {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-menu, .custom-right {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.custom-menu li{
  margin-bottom: 0;
}

.custom-right li{
  margin-bottom: 0;
  align-self: center;
}

.custom-item {
    display: inline-block;
}

.custom-link {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.custom-link:hover {
    color: var(--primary-blue);
}

.custom-right {
    margin-left: auto;
}

/* General Button Styling */
.custom-button {
    display: inline-block;
    padding: 6px 30px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.trial {
    padding-top: 8px;
    padding-bottom: 8px;
    color: white;
    border: 1px solid var(--primary-blue);
    background: var(--primary-blue);
}

.demo {
    color: var(--accent-grey);
    border: 1px solid rgba(128, 128, 128, 0.432);
    background: transparent;
    align-items: center;
    display: flex;
}

.border-btn:hover{
    background-color: var(--primary-blue);
    color: white;
    border: var(--accent-grey-dark);
}

/* Login Button (Outlined) */
.login-button {
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
    background: transparent;
}

.login-button:hover {
    background: var(--primary-blue);
    border: 1px solid var(--accent-grey);
    color: white;
}

/* Signup Button (Filled) */
.signup-button {
    background: var(--primary-blue);
    color: white;
    border: 1px solid var(--primary-blue);
}

.signup-button:hover {
    background: var(--primary-blue-dark);
    color: white;
    border-color: var(--primary-blue-dark);
}

.hidden-navbar {
    position: fixed;
    top: -80px; 
    left: 0;
    width: 100%;
    background: white; /* Adjust color as needed */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Adds a shadow */
    transition: top 0.5s ease-in-out; /* Smooth slide effect */
    z-index: 1000;
}

.visible-navbar {
    top: 0; /* Slide down when active */
}

.feature-section {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.feature-card {
  width: 250px;
    text-align: left;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(128, 128, 128, 0.233);
    background-color: #fff;
}

.feature-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}
.feature-card h4{
    font-weight: 600;
    color: black;

}

.business-support {
    padding: 2rem;
    background-color: #f9f9f9;
    text-align: center;
}

.business-support h2 {
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

#businessTitle{
  padding-bottom: 1rem;
}

.usecase {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.usecase button {
    padding: 0.75rem 1.5rem;
    background-color: #f10ade;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.usecase button.active {
    background-color: black;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .card-content img,
  .text-content {
    transition: all 0.3s ease-in-out;
  }
  

.usecase button:hover {
    background-color: black;
}
input, button, select, optgroup, textarea {
    margin: 0.5rem;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    background-color:whitesmoke;
    border-radius: 2rem;
    height: 3rem;
    color: black;
}
.business-card {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    max-width: 1100px;
    color: white;
    margin: 0px auto;
    background-color: black;
  }

  .b-color{
    background-color: #f9f9f9;
    padding: 40px 0;
  }
  
  .card-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
  }
  
  .text-content,
  .card-content img {
    flex: 1 1 50%; /* Both take equal width */
    max-width: 50%; /* Ensure image and text do not exceed 50% width each */
    
  }
  
  .text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px;
  }
  
  .card-content img {
    width: 100%;
    height: auto;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    object-fit: cover;
  }
  
  .green-heading {
    color: #28a745;
    font-weight: bold;
    margin-bottom: 1rem;
  }

  #businessDescription{
    margin-bottom: 2rem;
  }

  .businessbtn{
    padding-top: 8px;
    padding-bottom: 8px;
    color: white;
    border: 1px solid var(--primary-blue);
    background: var(--primary-blue);
    display: inline-block;
    padding: 6px 30px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.7s ease;
    text-align: center;
    width: 50%;
  }
  .aboutbloom {
    padding: 60px 20px;
    background-color: white;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .aboutbloom > div {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }
  
  .aboutbloom .text-content {
    flex: 1 1 600px;
  }
  
  .aboutbloom .image-content {
    flex: 1 1 500px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .aboutbloom ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .aboutbloom li {
    margin: 25px 0;
    display: flex;
    gap: 1rem;
  }

  .aboutbloom li span i{
    font-size: 2rem;
    color: var(--primary-blue);
  }
  
  .aboutbloom li h5 {
    font-size: 20px;
    color: #0d094d;
    margin-bottom: 10px;
    letter-spacing: 1px;
  }
  
  .aboutbloom li p {
    font-size: 16px;
    color: #636e72;
    line-height: 1.6;
  }
  
  .aboutbloom img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
  }
  
  .calltoaction {
    background-color: black;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  
  .cta-text.animate-slide-up {
    transform: translateY(0); /* Slide to original position */
  }
  
  .cta-text h1 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.4;
  }
  
  .cta-button {
    color: black;
    border: none;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.8s ease-out;
    transform: translateY(100px); /* Start from above */
  }
  
  .cta-button.animate-slide-down {
    transform: translateY(0); /* Slide down to position */
  }
  
  .cta-button:hover {
    background-color: #f1f1f1;
  }
  
  /* frequency asked quetions */
  .faq-wrapper {
    margin: 0 40px;
    padding: 40px 20px;
    font-family: sans-serif;
    display: flex;
    justify-content: space-between;
  }

  .faq-intro {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background-color: #f9fbff;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }
  
  .faq-intro h5 {
    font-size: 1rem;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
  }
  
  .faq-intro h1 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #1f1f1f;
  }
  
  .faq-intro p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #555;
  }
  
  .ask-btn {
    background-color: var(--primary-blue);
    color: white;
    padding: 0.75rem 1.5rem;
    border: 1px solid transparent;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
  }
  
  .ask-btn:hover {
    background-color: black;
    border-color: black;
  }
  

  .lefthand-faq,
  .righthand-faq {
    flex: 1;
    min-width: 300px;
  }

  .start-free{
    display: inline-block;
    padding: 6px 30px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
  }

  .faq-item {
    margin-bottom: 15px;
  }

  .faq-columns{
    width: 700px;
  }

  .faq-question {
    width: 100%;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: bold;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    color: black;
    background-color: #f1f1f1;
    border-radius: 6px;
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 10px;
    background: #f9f9f9;
    border-left: 3px solid var(--primary-blue);
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .faq-answer.open {
    padding: 1.5rem;
    margin-left: 1rem;
    max-height: 200px;
  }

  .faq-question .icon {
    font-size: 20px;
    transition: transform 0.7s;
    color: var(--primary-blue);
  }

  .faq-question.active .icon {
    transform: rotate(0deg); /* changes + to × */
  }
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .cta-text h1 {
      font-size: 22px;
    }
  
    .calltoaction {
      padding: 40px 15px;
    }
  
    .cta-button {
      padding: 14px 28px;
      font-size: 15px;
    }
  }
  
  /* Responsive Styling */
  @media (max-width: 768px) {
    .aboutbloom > div {
      flex-direction: column;
      text-align: center;
    }
  
    .aboutbloom h1 {
      font-size: 28px;
    }
  
    .aboutbloom li h5 {
      font-size: 18px;
    }
  
    .aboutbloom li p {
      font-size: 15px;
    }

    .navbar-toggler{
      display: block;
      background-color: transparent;
      color: var(--primary-blue);
      border: none;
    }

    .navbar-toggler i{
      font-size: 1.5rem;
      color: var(--primary-blue);
      font-weight: bold;
    }

.custom-middle,
.custom-right {
  display: none;
}

.container{
  flex-direction: column;
  gap: 10px;
}

.custom-middle.show,
.custom-right.show {
  display: flex;
}

.custom-middle.show .custom-menu,
.custom-right.show .custom-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.custom-right {
    margin-left: 0;
    justify-content: center;
}

.faq-wrapper{
  flex-direction: column;
  margin: 0;
  padding: 40px 5px;
}

.faq-columns {
    width: 98%;
}

.con-name{
  display: flex;
  justify-content: space-between;
}

.feature-card {
  width: 280px;
}

.business-support {
    padding: .7rem;
}

.usecase button {
    width: 170px;
}

.usecase {
    gap: 0;
}



/* .hidden-navbar {
    width: 55%;
} */

  }
  
  /* Responsive: Stack content on smaller screens */
  @media (max-width: 768px) {
    .card-content {
      flex-direction: column;
    }
  
    .text-content,
    .card-content img {
      max-width: 100%; /* Full width on mobile */
      flex: 1 1 100%;  /* Take up full space */
    }
  
    .card-content img {
      margin-top: 1rem;
    }
  }
  
  
/* HERO SECTION */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: auto;
    gap: 2rem;
    flex-wrap: wrap; /* For responsive stacking on smaller screens */
}

.hero-text {
    flex: 1;
    min-width: 300px;
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hero-link {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}




.general-support {
  background:#e7c0d9;
  padding: 60px 20px;
  text-align: center;
}
.support-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
}
.support-subtitle {
  font-size: 1.4rem;
  margin-top: 10px;
  color: #666;
}
.support-note {
  font-size: 1rem;
  margin-top: 15px;
}
.support-note a {
  color: #007bff;
  text-decoration: underline;
}
.support-description {
  margin-top: 25px;
  font-size: 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #444;
}
.support-contact {
  margin-top: 30px;
}
.support-contact h3 {
  font-size: 1.2rem;
  font-weight: 600;
}
.support-button {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #e7c0d9;
  color: white;
  border-radius: 5px;
  text-decoration: none;
}

.support-cards {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}
.support-cards-title {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #333;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.support-card {
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  padding: 30px 20px;
  width: 300px;
  text-align: center;
  transition: transform 0.2s ease;
}
.support-card:hover {
  transform: translateY(-5px);
}
.support-card i {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 15px;
}
.support-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #222;
}
.support-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 20px;
}
.card-button {
  display: inline-block;
  background-color: #007bff;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.card-button:hover {
  background-color: #0056b3;
}

.icon-card-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.icon-card {
    width: 160px;
    height: 160px;
    background: #fff;
    border-radius: 16px;
    text-decoration: none;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon-card i {
    font-size: 3.2rem;
    margin-bottom: 0.5rem;
}

.icon-card span {
    font-size: 1rem;
    font-weight: 600;
}

/* Hover effect */
.icon-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* Brand colors */
.icon-card.whatsapp i { color: #25D366; }
.icon-card.email i { color: #EA4335; }
.icon-card.phone i { color: #0d6efd; }

