
body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    background: #f7f7f7;
}

.icon-row i {
    font-size: 3rem;
    color: #0d6efd;
    margin: 20px;
}
.product-card-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background-color: #001f4d;
  border-radius: 25px;
  color: white;
  padding: 40px;
  margin-top: 80px;
  margin-bottom: 100px;
  background-image: url(banner_bg.svg);
  background-size: cover;
  position: relative;
  z-index: 10; 
}

.product-card-bg {
  background-color: #000000;
  border-radius: 25px;
  position: absolute;
  top: -93px;
  left: 5px;
  right: 5px;
  height: 100%;
  background-image: url(banner_bg.svg);
  background-size: cover;
  opacity: 0.7;
}

/* Pre-defined stacking layers */
.product-card-bg-1 {
  transform: translateY(-15px) scale(0.98);
  z-index: 9;
}
.product-card-bg-2 {
  transform: translateY(-30px) scale(0.96);
  z-index: 8;
}
.product-card-bg-3 {
  transform: translateY(-45px) scale(0.94);
  z-index: 7;
}
.product-card-bg-4 {
  transform: translateY(-60px) scale(0.92);
  z-index: 6;
}
.product-card-bg-5 {
  transform: translateY(-75px) scale(0.90);
  z-index: 5;
}


footer {
    background-color: #eee;
    padding: 40px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* Navigation Bar */
.navigationbar {
  background: #ffffff;
  border-radius: 23px;
  border-style: solid;
  border-color: #656565;
  border-width: 1px;
  opacity: 0.9;
  height: 75px;
  backdrop-filter: blur(26.95px);
  padding: 0 20px;
  margin-top: 29px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  margin-right: 140px;
}

.navbar-brand img {
  max-height: 40px;
}

.nav-link {
  font-size: 18px;
  letter-spacing: -0.05em;
  font-weight: 200;
  margin-left: 20px;
  color: #000 !important;
}

.nav-link.active {
  color: #ffffff !important;
  background: #000000;
  border-radius: 38px;
  border-style: solid;
  border-color: #000000;
  border-width: 1px;
  width: 100px;
  text-align: center;
}

.button_SignIn {
  color: #1081c4;
  font-size: 18px;
  border-radius: 38px;
  border-style: solid;
  border-color: #1081c4;
  border-width: 1px;
  padding: 10px;
  width: 100px;
  text-align: center;
}

.button_SignUp {
  color: #1081c4;
  font-size: 18px;
  line-height: 35px;
  letter-spacing: -0.05em;
  font-weight: 500;
  width: 100px;
  text-align: center;
}

/* Custom Drawer Icon */
.navbar-toggler {
  border: none;
  padding: 10px;
  order: -1;
}

.navbar-toggler-icon {
  width: 24px;
  height: 24px;
  background: none;
}

.navbar-toggler-icon::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  border: 2px solid #656565;
  border-radius: 4px;
  position: relative;
}

.navbar-toggler-icon::after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: #656565;
  position: absolute;
  top: 2px;
  left: 2px;
}

/* Override Bootstrap's navbar-toggler focus styles */
.navbar-toggler:focus {
  text-decoration: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.navbar-collapse {
  background: #ffffff;
  border-radius: 10px;
  /* padding: 15px; */
  margin-top: 10px;
}

/* Drawer logo at top */
.navbar-collapse .navbar-brand {
  position: static;
  margin-bottom: 15px;
  transform: none;
}

@media (max-width: 991px) {
  .navigationbar {
    padding: 0 20px;
    height: auto;
    min-height: 75px;
    margin: 2%;
  }

  .nav-link {
    margin: 10px 0;
    text-align: center;
  }

  .navbar-nav {
    align-items: center;
  }

  .button_SignIn, .button_SignUp {
    margin: 10px auto;
    display: block;
    text-align: center;
  }

  .navbar-collapse {
    position: absolute;
    top: 75px;
    left: 0;
    width: 100%;
    z-index: 1000;
  }

  .navbar-brand img {
    max-height: 40px;
    transition: all 0.3s ease;
  }

  .navbar-collapse.show .navbar-brand {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
  }

  .navbar-collapse.show .navbar-brand img {
    max-height: 60px; 
    transition: all 0.3s ease;
  }

}



@media (min-width: 992px) {
  .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-nav {
    flex-direction: row;
  }
  .button_SignIn, .button_SignUp {
    margin-left: 10px;
  }
}

/* Abput page Start */

/* Hero Section */
.hero {
  text-align: center;
  padding: 40px 40px;
}

.hero_h1 {
  color: #000000;
  text-align: center;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  line-height: 1.2; 
  letter-spacing: -0.05em;
  font-weight: 600;
  margin-bottom: 2.5rem; 
  padding: 0 1rem; 
}

/* Media query for smaller screens */
@media (max-width: 768px) {
  .hero_h1 {
      font-size: clamp(1.8rem, 6vw, 3rem);
      line-height: 1.3;
      margin-bottom: 1.5rem;
  }
}

/* Media query for very small screens */
@media (max-width: 480px) {
  .hero_h1 {
      font-size: clamp(1.5rem, 5vw, 2.5rem);
      line-height: 1.4;
      margin-bottom: 1rem;
  }
}

.featureHeading {
  color: #000000;
  text-align: center;
  font-size: clamp(1.8rem, 6vw, 2.8rem);
  line-height: 1.4; 
  letter-spacing: -0.05em;
  font-weight: 600;
  margin-top: 2.5rem;
  padding: 0 1rem; 
}

.feasibility_h4 {
  color: #000000;
  text-align: center;
  font-size: clamp(1.6rem, 5.5vw, 2.5rem); 
  line-height: 1.3; 
  letter-spacing: -0.05em;
  font-weight: 600;
  margin-bottom: 2.5rem; 
  padding: 0 1rem;
}

/* Media query for tablets and smaller */
@media (max-width: 768px) {
  .featureHeading {
      font-size: clamp(1.5rem, 5vw, 2.2rem);
      line-height: 1.5;
      margin-top: 1.5rem;
  }

  .feasibility_h4 {
      font-size: clamp(1.4rem, 4.5vw, 2rem);
      line-height: 1.4;
      margin-bottom: 1.5rem;
  }
}

/* Media query for mobile phones */
@media (max-width: 480px) {
  .featureHeading {
      font-size: clamp(1.2rem, 4vw, 1.8rem);
      line-height: 1.6;
      margin-top: 1rem;
  }

  .feasibility_h4 {
      font-size: clamp(1.1rem, 3.5vw, 1.6rem);
      line-height: 1.5;
      margin-bottom: 1rem;
  }
}


.featureText {
  color: #8b8b8b;
  text-align: center;
  font-size: clamp(1rem, 3.5vw, 1.4rem); 
  line-height: 1.5; 
  letter-spacing: -0.05em;
  font-weight: 400;
  margin-top: 1rem; 
  padding: 0 1rem; 
}

.feasibility_text {
  color: #8b8b8b;
  text-align: center;
  font-size: clamp(1rem, 3.5vw, 1.4rem);
  line-height: 1.6; 
  letter-spacing: -0.05em;
  font-weight: 400;
  margin-bottom: 4rem; 
  padding: 0 1rem;
}

/* Media query for tablets and smaller */
@media (max-width: 768px) {
  .featureText {
      font-size: clamp(0.9rem, 3vw, 1.2rem);
      line-height: 1.6;
      margin-top: 0.75rem;
  }

  .feasibility_text {
      font-size: clamp(0.9rem, 3vw, 1.2rem);
      line-height: 1.7;
      margin-bottom: 2.5rem;
  }
}

/* Media query for mobile phones */
@media (max-width: 480px) {
  .featureText {
      font-size: clamp(0.8rem, 2.5vw, 1rem);
      line-height: 1.8;
      margin-top: 0.5rem;
  }

  .feasibility_text {
      font-size: clamp(0.8rem, 2.5vw, 1rem);
      line-height: 1.8;
      margin-bottom: 1.5rem;
  }
}


.bookademo_btn{
    color: #ffffff;
    font-size: 16px;
    letter-spacing: -0.05em;
    font-weight: 400;

    background: linear-gradient(256.95deg, rgba(7, 91, 168, 1) 0%, rgba(9, 125, 194, 1) 50%, rgba(112, 181, 228, 1) 100%);
    border-radius: 38px;
    padding: 10px;
    align-items: center;
    justify-content: center;
    width: 300px;
    margin: 30px auto 0;
}

/* about us page */


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

/* Hero Section */
.hero {
  text-align: center;
  padding: 60px 40px;
}

.aboutHero {
  border-radius: 999px;
  background-image: url('assets/hero_bg.png');
  background-size: cover;
  margin: 50px 0;
  padding: 40px 0;
  margin-top: 0;
}

.aboutHero-h1 {
  color: #FFF;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 4rem;
  font-weight: 600;
  line-height: 4.5rem;
  letter-spacing: -0.2rem;
  margin-bottom: 30px; 
}


.aboutHeading {
  color: #000;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 3.875rem;
  font-weight: 600;
  line-height: 5rem;
  letter-spacing: -0.19375rem;
  margin-top: 20px;
}

.aboutText {
  color: #8B8B8B;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.475rem;
  font-weight: 300;
  line-height: 2.375rem;
  letter-spacing: -0.09375rem;
  max-width: 800px;
  margin: 20px auto;
}

.bookademo_btn {
  color: #ffffff;
  font-size: 16px;
  letter-spacing: -0.05em;
  font-weight: 400;
  background: linear-gradient(256.95deg, rgba(7, 91, 168, 1) 0%, rgba(9, 125, 194, 1) 50%, rgba(112, 181, 228, 1) 100%);
  border-radius: 38px;
  padding: 10px;
  width: 300px;
  display: block;
  margin: 30px auto 0;
  text-align: center;
  border: none;
}

.bookademo_btn:hover {
  background: linear-gradient(256.95deg, rgba(112, 181, 228, 1) 0%, rgba(9, 125, 194, 1) 50%, rgba(7, 91, 168, 1) 100%);
}

/* Feasibility Section */


/* Product Section */
.product-section {
  position: relative;
  height: 800px;
  overflow: hidden;
  margin-top: 40px;
}

.product-section img.w-100 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .hero {
    padding: 40px 20px;
  }

  .aboutHero {
    padding: 60px 20px;
    margin: 30px 0;
    border-radius: 50px;
  }

  .aboutHero-h1 {
    font-size: 4rem;
    line-height: 4.5rem;
    letter-spacing: -0.2rem;
  }

  .aboutHeading {
    font-size: 2.5rem;
    line-height: 3.5rem;
    letter-spacing: -0.125rem;
  }

  .aboutText {
    font-size: 1.2rem;
    line-height: 2rem;
    max-width: 600px;
  }

  .bookademo_btn {
    width: 250px;
    font-size: 14px;
    padding: 8px;
  }

  
  .product-section {
    height: 600px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 30px 15px;
  }

  .aboutHero {
    padding: 40px 15px;
    margin: 20px 0;
    border-radius: 30px;
  }

  .aboutHero-h1 {
    font-size: 3rem;
    line-height: 3.5rem;
    letter-spacing: -0.15rem;
  }

  .aboutHeading {
    font-size: 2rem;
    line-height: 2.8rem;
    letter-spacing: -0.1rem;
  }

  .aboutText {
    font-size: 1rem;
    line-height: 1.8rem;
    max-width: 500px;
  }

  .bookademo_btn {
    width: 200px;
    font-size: 13px;
  }

 
  .product-section {
    height: 400px;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 20px 10px;
  }

  .aboutHero {
    padding: 30px 10px;
    margin: 10px 0;
    border-radius: 20px;
  }

  .aboutHero-h1 {
    font-size: 2rem;
    line-height: 2.5rem;
    letter-spacing: -0.1rem;
  }

  .aboutHeading {
    font-size: 1.5rem;
    line-height: 2rem;
    letter-spacing: -0.075rem;
  }

  .aboutText {
    font-size: 0.875rem;
    line-height: 1.5rem;
    max-width: 100%;
  }

  .bookademo_btn {
    width: 180px;
    font-size: 12px;
    padding: 6px;
  }

  
  .product-section {
    height: 300px;
  }
}


/* Product Page css */

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

/* Hero Section */
.hero {
  padding: 60px 40px;
  text-align: center;
}

.hero-section {
  text-align: center;
  padding: 60px 20px;
}

.hero img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.hero-title {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1rem;
  color: #6c757d;
  margin: 20px auto;
  max-width: 750px;
}

.hero-button {
  background: linear-gradient(to right, #4ca1ff, #007aff);
  color: white;
  border: none;
  padding: 10px 30px;
  border-radius: 999px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.hero-button:hover {
  background: linear-gradient(to right, #007aff, #4ca1ff);
}

.rounded-image {
  max-width: 100%;
  height: auto;
  border-radius: 25px;
  display: block;
  margin: 20px auto;
}

/* Features Section */
.features-section {
  text-align: center;
  padding: 60px 20px;
}

.features-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
}

.features-subtitle {
  font-size: 1rem;
  color: #6c757d;
  max-width: 700px;
  margin: 15px auto 0;
}

.feature-row {
  margin-top: 20px;
}

.feature-card {
  background: url('./assets/product/6.jpg') lightgray 50% / cover no-repeat;
  color: white;
  border-radius: 20px;
  padding: 30px 25px;
  position: relative;
  min-height: 250px;
}

.feature-card h5 {
  font-weight: bold;
  font-size: 1.25rem;
  margin-bottom: 30px;
}

.feature-card p {
  font-size: 0.9rem;
  line-height: 1.5;
}

.arrow-icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 24px;
  color: white;
}

/* FAQ Section */
.faq-section {
  padding: 60px 0;
}

.faq-section h1 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
}

.faq-section .bg-white {
  border-radius: 23px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.faq-section h5 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #6c757d;
  font-weight: 600;
}

.form-control {
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 16px;
}

.btn-primary {
  background: linear-gradient(to right, #4ca1ff, #007aff);
  border: none;
  border-radius: 25px;
  padding: 10px 20px;
}

.btn-outline-secondary {
  border-radius: 25px;
  /* padding: 10px 20px; */
}

.faq-toggle {
  cursor: pointer;
  transition: background 0.2s;
}

.faq-toggle:hover {
  background-color: #f8f9fa;
}

.faq-answer {
  font-size: 14px;
  line-height: 1.6;
  color: #6c757d;
  display: none;
  padding-left: 1rem;
}

.faq-open .faq-answer {
  display: block;
}

.faq-open .faq-toggle span.fs-5 {
  content: "−";
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .hero {
    padding: 40px 20px;
  }

  .hero-section {
    padding: 40px 20px;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    max-width: 600px;
  }

  .hero-button {
    padding: 8px 25px;
    font-size: 0.9rem;
  }

  .features-section {
    padding: 40px 20px;
  }

  .features-title {
    font-size: 1.25rem;
  }

  .features-subtitle {
    font-size: 0.9rem;
    max-width: 600px;
  }

  .feature-card {
    min-height: 220px;
  }

  .feature-card h5 {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }

  .feature-card p {
    font-size: 0.85rem;
  }

  .arrow-icon {
    font-size: 20px;
  }

  .faq-section {
    padding: 40px 0;
  }

  .faq-section .row {
    flex-direction: column;
  }

  .faq-section h1 {
    font-size: 28px;
  }

  .faq-section .bg-white {
    padding: 20px;
  }

  .faq-section .col-md-6 {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 30px 15px;
  }

  .hero-section {
    padding: 30px 15px;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.85rem;
    max-width: 500px;
  }

  .hero-button {
    padding: 8px 20px;
    font-size: 0.85rem;
  }

  .rounded-image {
    width: 100%;
    height: auto;
  }

  .features-section {
    padding: 30px 15px;
  }

  .features-title {
    font-size: 1.1rem;
  }

  .features-subtitle {
    font-size: 0.85rem;
  }

  .feature-card {
    min-height: 200px;
  }

  .feature-card h5 {
    font-size: 1rem;
  }

  .feature-card p {
    font-size: 0.8rem;
  }

  .arrow-icon {
    font-size: 18px;
  }

  .faq-section h1 {
    font-size: 24px;
  }

  .faq-section h5 {
    font-size: 18px;
  }

  .faq-toggle {
    font-size: 14px;
  }

  .faq-answer {
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 20px 10px;
  }

  .hero-section {
    padding: 20px 10px;
  }

  .hero-title {
    font-size: 1.25rem;
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 0.8rem;
    max-width: 100%;
  }

  .hero-button {
    padding: 6px 15px;
    font-size: 0.8rem;
  }

  .features-section {
    padding: 20px 10px;
  }

  .features-title {
    font-size: 1rem;
  }

  .features-subtitle {
    font-size: 0.8rem;
  }

  .feature-card {
    min-height: 180px;
    padding: 20px 15px;
  }

  .feature-card h5 {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }

  .feature-card p {
    font-size: 0.75rem;
  }

  .arrow-icon {
    font-size: 16px;
    bottom: 15px;
    right: 15px;
  }

  .faq-section {
    padding: 20px 0;
  }

  .faq-section .bg-white {
    padding: 15px;
  }

  .faq-section h1 {
    font-size: 20px;
  }

  .faq-section h5 {
    font-size: 16px;
  }

  .form-control {
    font-size: 14px;
  }

  .btn-primary,
  .btn-outline-secondary {
    padding: 8px 15px;
    font-size: 14px;
  }
}
  /* Pricing Page css */
/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Gradient Text and Buttons */
.gradient-text {
  background: linear-gradient(to right, rgb(125, 186, 240), rgb(7, 98, 151));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-btn {
  background: linear-gradient(to right, #3a8dde, #0a4a8a);
  color: #fff;
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 16px;
}

.gradient-btn:hover {
  background: linear-gradient(to right, rgb(172, 196, 219), rgb(2, 49, 95));
}

.disabled-card {
  opacity: 0.6;
  pointer-events: none;
}

.check-icon::before {
  content: "✓ ";
  color: #6ea8c9;
}

/* Gradient Heading */
.gradient-heading {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 62px;
  font-weight: 600;
  line-height: 80px;
  letter-spacing: -3.1px;
  background: linear-gradient(90deg, #0872BA 0%, #419CD5 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 40px;
}

/* Pricing Section */
.hero {
  padding: 60px 40px;
}

.bg-white.border {
  border-radius: 23px;
  padding: 20px;
}

.bg-white.border h4 {
  font-size: 24px;
  margin-bottom: 15px;
}

.bg-white.border p {
  font-size: 16px;
  line-height: 1.5;
  color: #8b8b8b;
}

/* Plan Cards */
.card {
  border-radius: 15px;
  padding: 20px;
}

.card-body h5 {
  font-size: 20px;
  margin-bottom: 10px;
}

.card-body h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.card-body p.fw-semibold {
  font-size: 16px;
  margin-bottom: 15px;
}

.card-body ul {
  margin-bottom: 20px;
}

.card-body ul li {
  font-size: 14px;
  line-height: 1.6;
}

.card-body p.small {
  font-size: 14px;
  color: #8b8b8b;
}

.badge {
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 0 15px 0 15px;
}

/* FAQ Section */
.faq-section {
  padding: 60px 0;
}

.faq-section h1 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 30px;
}

.faq-section .bg-white {
  border-radius: 23px;
  padding: 30px;
}

.faq-section h5 {
  font-size: 20px;
  margin-bottom: 20px;
}

.form-control {
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 16px;
}

.btn-primary {
  background: linear-gradient(to right, #3a8dde, #0a4a8a);
  border: none;
  border-radius: 25px;
  /* padding: 10px 20px; */
}

.btn-outline-secondary {
  border-radius: 25px;
  padding: 10px 20px;
}

.faq-item {
  cursor: pointer;
}

.faq-toggle {
  font-size: 16px;
}

.faq-answer {
  font-size: 14px;
  line-height: 1.6;
  display: none;
}

.faq-open .faq-answer {
  display: block;
}

.faq-open .faq-toggle span.fs-5 {
  content: "−";
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .gradient-heading {
    font-size: 48px;
    line-height: 60px;
    letter-spacing: -2.4px;
  }

  .hero {
    padding: 40px 20px;
  }

  .bg-white.border {
    flex-direction: column;
    text-align: center;
  }

  .bg-white.border .gradient-btn {
    width: 100%;
    max-width: 200px;
    margin: 20px auto 0;
  }

  .card {
    margin-bottom: 20px;
  }

  .faq-section {
    padding: 40px 0;
  }

  .faq-section .row {
    flex-direction: column;
  }

  .faq-section h1 {
    font-size: 28px;
  }

  .faq-section .bg-white {
    padding: 20px;
  }

  .faq-section .col-md-6 {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .gradient-heading {
    font-size: 36px;
    line-height: 48px;
    letter-spacing: -1.8px;
  }

  .hero {
    padding: 30px 15px;
  }

  .bg-white.border h4 {
    font-size: 20px;
  }

  .bg-white.border p {
    font-size: 14px;
  }

  .card-body h5 {
    font-size: 18px;
  }

  .card-body h3 {
    font-size: 24px;
  }

  .card-body p.fw-semibold {
    font-size: 14px;
  }

  .card-body ul li {
    font-size: 12px;
  }

  .card-body p.small {
    font-size: 12px;
  }

  .gradient-btn {
    font-size: 14px;
    padding: 8px 15px;
  }

  .faq-section h1 {
    font-size: 24px;
  }

  .faq-section h5 {
    font-size: 18px;
  }

  .faq-toggle {
    font-size: 14px;
  }

  .faq-answer {
    font-size: 12px;
  }
}



@media (max-width: 576px) {
  .gradient-heading {
    font-size: 28px;
    line-height: 40px;
    letter-spacing: -1.4px;
  }

  .bg-white.border {
    padding: 15px;
  }

  .card {
    padding: 15px;
  }

  .card-body h5 {
    font-size: 16px;
  }

  .card-body h3 {
    font-size: 20px;
  }

  .gradient-btn {
    font-size: 12px;
  }

  .faq-section {
    padding: 20px 0;
  }

  .faq-section .bg-white {
    padding: 15px;
  }
}
    /* Footer css */
  .icon-gray {
    fill: #808080;
    width: 39.27px;
    height: 39.27px;
    flex-shrink: 0;
  }
  
  .gradient-text {
    font-size: 1.25rem; 
    font-weight: 600;
    background: linear-gradient(to right, #70B5E4, #075BA8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
  }

  .group-10713 {
    width: 40px; 
    height: auto;
  }

  .vertical-line {
    width: 1px;
    height: 30px;
    background-color: #ccc;
  }

  .footer-right {
    min-height: 100px; 
  }



  