*{
  margin: 0 ;
  padding: 0 ;
  box-sizing: border-box;
}


/* Example for Regular */
@font-face {
  font-family: 'InterDisplay';
  src: url('./interdisplay-font/InterDisplay-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

/* Bold */
@font-face {
  font-family: 'InterDisplay';
  src: url('./interdisplay-font/InterDisplay-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

/* Bold Italic */
@font-face {
  font-family: 'InterDisplay';
  src: url('./interdisplay-font/InterDisplay-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
}

/* Medium */
@font-face {
  font-family: 'InterDisplay';
  src: url('./interdisplay-font/InterDisplay-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

/* Light */
@font-face {
  font-family: 'InterDisplay';
  src: url('./interdisplay-font/InterDisplay-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

/* Light Italic */
@font-face {
  font-family: 'InterDisplay';
  src: url('./interdisplay-font/InterDisplay-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
}

/* Italic */
@font-face {
  font-family: 'InterDisplay';
  src: url('./interdisplay-font/InterDisplay-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}

/* You can repeat this for all the other weights/styles like ExtraBold, Thin, etc. */

body {
  font-family: 'InterDisplay', sans-serif;
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
img{
  border: none;
  border-radius: 0;
  box-shadow: none;
  max-width: 100%;
}
.logo__img{
  width: 100%;
  height: 200px !important;
}
/* header css  start  */
    /* Top marquee disclaimer bar */
    .disclaimer {
        background-color: rgba(21, 203, 250, 0.3);
        color: #2C2C2C;
        font-size: 14px;
        padding: 20px 0;
        overflow: hidden;
        white-space: nowrap;
      }
  
      .disclaimer marquee {
        font-weight: 400;
        font-size: 20px;
        font-family: 'Inter';
      }
  
      /* Header base styles */
      .header {
        display: flex;
        align-items: center;
        justify-content: center;
        /* margin-bottom: 20px; */
        padding: 20px 20px;
        background-color: white;
        flex-wrap: wrap;
        border-top:  1px solid rgba(180, 180, 180, 1);
        border-bottom: 1px solid rgba(180, 180, 180, 1);
      }

header.header {}
  
      .header-left img {
        height: 50px;
      }
  
      /* Navigation */
      .nav {
        display: flex;
        gap: 108px;
        font-weight: bold;
      }
  
      .nav a {
        text-decoration: none;
        color: #2C2C2C;
        font-size: 22px;
        padding: 0px 40px;
        font-weight: 500;
        transition: color 0.3s;
        font-family: 'Inter';
      }
  
      .nav a:hover {
        color: #15CBFA;
      }
  
      
  /* Dropdown container */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown button (menu link) */
.dropbtn {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 300px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  z-index: 999;
  top: 100%;
  left: 0;
}

.dropdown-content a {
  color: #2c2c2c;
  padding: 10px 15px;
  text-decoration: none;
  display: block;
  transition: background 0.3s;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

/* Show the dropdown on hover for desktop */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Optional: show on click for mobile using JS if needed */

      /* Buttons */
      .header-right {
        display: flex;
        gap: 10px;
        margin-top: 10px;
      }
  
      .btn-chat,
      .btn-author {
        display: flex;
        align-items: center;
        gap: 6px;
        font-weight: bold;
        cursor: pointer;
        padding: 10px 16px;
        border-radius: 30px;
        font-size: 14px;
        white-space: nowrap;
      }
  
      .btn-chat {
        background-color: #15CBFA;
        color: white;
        border: 5px solid #f7b2d0;
      }
  
      .btn-author {
        background-color: #261668;
        color: white;
      }
  
      /* Hamburger menu */
      .menu-toggle {
        display: none;
        font-size: 22px;
        cursor: pointer;
      }
  
      /* Responsive Styles */
      @media (max-width: 900px) {
        .nav {
          display: none;
          flex-direction: column;
          width: 100%;
          margin-top: 10px;
        }
  
        .nav.active {
          display: flex;
        }
  
        .header {
          flex-direction: column;
          align-items: center;
        }
  
        .header-right {
          width: 100%;
          justify-content: flex-start;
          margin-top: 10px;
          flex-wrap: wrap;
        }
  
        .menu-toggle {
          display: block;
         
        }
      }

/* end Header css  */

/* partner css section */
/* Container */
.container-logo {
  max-width: 1440px;
  display: flex;
  margin: 0 auto;
  padding: 0px 0px 80px 0px;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}

/* Logos row */
.logos-item {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
.logo-box {
  /* background: #f3f4f6; */
  /* border-radius: 15px; */
  /* padding: 15px; */
  /* width: 100%; */
  /* height: 150px; */
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-box img {
  max-width: 80%;
}
@media (max-width: 991px) {
  .logos-item{
    flex-wrap: wrap;
  }

}
/* end */

/* about-cta style */
.about-container{
  display: flex;
  padding: 80px 0px 100px 0;
  gap: 40px;
  /* flex-direction: row; */
  max-width: 1440px;
  margin: 0 auto;
  justify-content: space-between;
}
.text-content{
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
  width: 50%;
}
.text-content h2{
  font-size: 62px;
  font-family: 'Inter';
  line-height: 1;
  color: #2C2C2C;
  font-weight: 700;
}
.text-content p{
  font-size: 20px;
  font-weight: 500;
  color: #2c2c2c;
  line-height: 1.6;
}
.book-covers{/* width: 50%; */display: flex;justify-content: center;}

.card-bg-section{
  background-color: rgba(21, 203, 250, 0.3);
  color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: column;
  margin: 80px 0 80px 0;
  padding: 80px 0 80px 0;
  gap: 40px;
}
.card-content{
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
/* card section style */
.card-bg-section h2 {
    font-size: 62px;
    font-weight: 700;
    color: #2C2C2C;
  text-align: center;
  max-width: 768px;
  margin: 0 auto;
}

.card-bg-section p.intro {
  color: #2c2c2c;
  font-size: 20px; /* 12px */
  text-align: center;
  max-width: 768px;
  margin: 8px auto 0;
  line-height: 1.6;
}

.cards-container {
  display: flex;
  flex-direction: row;
  gap: 20px;
}


@media (max-width: 768px) {
  .cards-container {
    flex-wrap: wrap;
  }
}

.cards-container .card {
  background-color: white;
  border-radius: 15px;
  width: 100%;
  padding: 30px;
  height: 300px;
  text-align: center;
  gap: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.icon-wrapper {
  position: relative;
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
}

.icon-wrapper img {
  width: 64px;
  height: 64px;
  display: block;
  margin: 0 auto;
  background: none !important;
}

.cards-container .card h3 {
  color: #2c2c2c;
  font-weight: 600;
  font-size: 32px; /* 16px */
  /* margin: 0 0 4px; */
}

.cards-container .card p {
  font-size: 16px; /* 12px */
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
}
/* end */


/* services section style */
.our-services-section{
  width: 100%;
  padding: 80px 0 80px 0;
  }
  .container-services{
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 20px;
  }
  .content{
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  .content h2{
    font-size: 62px;
    line-height: 1;
    font-weight: 600;
    color: #2C2C2C !important;
  }
    .content p{
    font-size: 20px;
    line-height: 1.5;
    font-weight: 600;
    color: #2C2C2C !important;
    font-family: 'Inter';
    font-weight: 400;
  }
  .img-content{
 width: 50%;
  }
/* end */

/* process css style */
.our-process-section{
  background-color: #241468;
  background: linear-gradient(139deg, #202A67 39.15%, #15CBFA 106.7%);
  padding: 80px 0 80px 0;
}
.process-container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
  align-items: center;
}
.process{
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.item-process {
  max-width: 300px;
  padding: 20px;
  border-radius: 40px;
  background: #FFF;
  aspect-ratio: 1 / 1;
  height: 260px;
  background: white;
  display: flex;
  gap: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.item-process h3{
  color: #2C2C2C;
  text-align: center;
  font-family: "Inter";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 100% */
}
.item-process:hover h3{
  color: #fff;
}
.item-process:hover{
  border-radius: 40px;
border: 1px solid #FFF;
background: rgba(255, 255, 255, 0.20);
}
.item-process img{
width: 80px;
height: 80px;
}

.content-process h2{color: #fff;font-size: 62px;line-height: 1;font-family: 'Inter';font-weight: 600;text-align: center;}
.content-process p{
  color: white;
  font-size: 20px;
  text-align: center;
  max-width: 950px;
  margin: 8px auto 0;
  line-height: 1.5;
}
/* end */


.container-slide{
  overflow: hidden;
  display: flex;
  max-width: 1440px;
  padding: 80px 0;
  margin: 0 auto;
  /* padding: 0 1rem 3rem 1rem; */
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
}
.container-slide h2{
    font-size: 62px !important;
    line-height: 1;
    font-weight: 600;
    color: #2C2C2C !important;
    }
.slider {
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  margin: 20px 0px;
  gap: 1.5rem;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
  animation-play-state: running;
}

.top-slider .slider-track {
  animation-name: scrollLeft;
  animation-duration: 30s;
}

.bottom-slider .slider-track {
  animation-name: scrollRight;
  animation-duration: 30s;
}

.slider:hover .slider-track {
  animation-play-state: paused;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.slider-track .card {
  background: #f3f3f3;
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  min-width: 120px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 4px 8px rgb(0 0 0 / 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.slider-track .card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgb(0 0 0 / 0.15);
  z-index: 10;
}
.slider-track .card img {
  width: 80px;
  height: 110px;
  object-fit: contain;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,0.1));
  user-select: none;
  pointer-events: none;
}
.title {
  font-size: 20px;
  font-family: 'Inter';
  font-weight: 600;
  color: #222;
  text-align: center;
  margin: 0;
}
.author {
  font-size: 16px;
  font-family: 'Inter';
  color: #15CBFA;
  font-weight: 500;
  text-align: center;
  margin: 0;
}
@media (min-width: 640px) {
  .slider-track .card {
    min-width: 140px;
    padding: 1.5rem 2rem;
  }
  .slider-track .card img {
    width: 90px;
    height: 120px;
  }
}
@media (min-width: 768px) {
  .slider-track .card {
    min-width: 267px;
  }
  .slider-track .card img {
    width: 157px;
    height: 260px;
    width: 214px;
    height: 295px;
    flex-shrink: 0;
    aspect-ratio: 214/295;
  }
}

/* end */



/* form css style */

a {
  text-decoration: none;
}

/* Container */
.container-form {
  max-width: 1440px;
  margin: 80px auto;
  background-color: #f0f0f5;
  border-radius: 12px;
  /* padding: 80px 0; */
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}

/* Left side */
.left {
  /* background-color: #2e2073; */
  border-radius: 30px;
  background: linear-gradient(139deg, #202A67 39.15%, #15CBFA 106.7%);
  color: white;
  flex: 1 1 100%;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .left {
    flex: 1 1 50%;
    padding: 60px 48px;
  }
}

.left h2 {
   font-size: 62px;
   line-height: 1;
   font-weight: 600;
   color: #ffffff !important;
   margin: 0 0 12px 0;
   text-align: center;
}
.left p {
  font-size: 1.125rem;
  margin: 0 0 40px 0;
  text-align: center;
  line-height: 1.4;
}

/* Rating buttons container */
.ratings {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
  width: 100%;
  max-width: 320px;
}


.rating-btn img {
  
  width: 100%;
}


/* Logos container */
.logos-partner {
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 0px;
  align-items: center;
  flex-direction: column;
}
.logos-partner img {

  width: 50%;
}


/* Right side */
.right {
  flex: 1 1 100%;
  padding: 40px 32px;
}
@media (min-width: 768px) {
  .right {
    flex: 1 1 50%;
    padding: 60px 48px;
  }
}

.right h3 {
  font-weight: 800;
  font-size: 2.90rem;
  margin: 0 0 24px 0;
  line-height: 1.1;
  color: #333333;
}
.right h3 .highlight {
  color: #15CBFA;
}

form {
  max-width: 100%;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 18px 12px;
  font-size: 0.875rem;
  color: #4a4a4a;
  font-family: inherit;
  margin-bottom: 20px;
  resize: none;
  transition: border-color 0.3s ease;
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color:#15CBFA;
  box-shadow: 0 0 4px #15CBFA;
}

.form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 0px;
}
.form-row input {
  flex: 1;
}
textarea {
  min-height: 80px;
  margin-bottom: 24px;
}

button {
  border: none;
  /* background: transparent; */
  border-radius: 70px;
  background: #15CBFA;
  color: #ffffff;
  font-weight: 800;
  font-size: 1rem;
  /* padding: 10px 28px; */
  border-radius: 9999px;
  cursor: pointer;
  display: block;
  margin: 0 auto;
  transition: background-color 0.3s ease, color 0.3s ease;
}
button:hover,
button:focus {
  background-color: #2e2073;
  color: white;
  outline: none;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .ratings {
    max-width: 100%;
  }
  .logos {
    max-width: 100%;
    gap: 24px;
  }
  form {
    max-width: 100%;
  }
  .form-row {
    flex-direction: column;
  }
  .form-row input {
    flex: none;
    width: 100%;
  }
}



/* end */


/* testimaonl slide style */

.testimonial-section {
  text-align: center;
  background-image: url('../images/testi-bg.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 0 80px 0;

}

.testimonial-section h4 {
  color: #15CBFA;
  margin-bottom: 8px;
  font-size: 24px;
}

.testimonial-section h2 {
  font-size: 24px;
  margin-bottom: 30px;
}

.slider-container {
  max-width: 1046px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  border-radius: 12px;
}

.slider {
  display: flex;
  transition: transform 0.8s ease-in-out;
  width: fit-content;
}

.testimonial {
  flex: 0 0 40%;
  text-align: center;
  max-width: 50%;
  padding: 20px;
  box-sizing: border-box;
  background: #f8f8f8;
  border-radius: 10px;
  margin: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.testimonial p {
  font-size: 15px;
  color: #333;
  margin-bottom: 20px;
}

.stars {
  color: #00c853;

  display: flex;
  align-items: center;
  gap: 10px;
  flex-direction: column;
}
.client {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

.client img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.client-name {
  font-weight: bold;
  font-size: 14px;
}

@media (max-width: 768px) {
  .testimonial {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.client img{
max-width: 60px;
border-radius: 100px;
}

/* end */

.services-cards{
display: flex;
justify-content: center;
flex-direction: column;
gap: 30px;
}
.text-sec{
  max-width: 1140px;
  display: flex;
  gap: 20px;
  margin: 0 auto;
  flex-direction: column;
}
.text-sec h2{
  text-align: center;
 font-size: 62px;
    line-height: 1;
    font-weight: 600;
    color: #2C2C2C !important;
}
.text-sec p{
font-size: 18px;
    font-weight: 500;
    color: #2c2c2c;
    text-align: center;
}


.tabs {
  display: flex;
  justify-content: center;
  /* margin-bottom: 30px; */
  margin: 30px;
  gap: 10px;
  padding: 0;
  align-content: center;
  align-items: center;
  flex-direction: row;
}

.tab {
  padding: 10px 20px;
  margin: 5px;
  border: none;
  background-color: #15CBFA;
  color: #ffffff !important;
  font-weight: 500;
  cursor: pointer;
  border-radius: 30px;
  transition: background 0.3s ease;
}

.tab.active {
  color: #fff;
}

.pricing-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin: 0 auto;
  max-width: 1280px;
  width: 100%;
}

.pricing-card {
  background: rgba(21, 203, 250, 0.3);
  display: flex;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  /* padding: 30px; */
  width: 380px;
  transition: transform 0.3s ease;
  flex-direction: column;
  align-content: center;
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-card h3 {
  color: #ea1179;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.pricing-card h4 {
  font-size: 18px;
  margin-bottom: 15px;
}

.price {
  background: #ea1179;
  color: #fff;
  font-size: 28px;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 20px;
  text-align: center;
}

.pricing-card ul {
  list-style: none;
  padding-left: 0;
  padding: 0px 30px;
}

.pricing-card ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.pricing-card ul li::before {
  background-image: url(../images/dot.png);
  position: absolute;
  left: 0;
  color: #15CBFA;
  font-weight: bold;
}

.btn-p {
  display: inline-block;
  margin-top: 20px;
  background: rgba(44, 44, 44, 1);
  width: 203px;
  color: #fff;
  padding: 18px;
  text-align: center;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}

@media(max-width: 992px) {
  .pricing-card {
    width: 100%;
    max-width: 360px;
  }
}

.hidden {
  display: none;
}

.text-p{
  color: #2c2c2c;
  font-size: 28px;
  text-align: center;
}
.pricing-section{
  padding: 0px 0 80px 0;
}
.services-cards{
  background-color: rgba(21, 203, 250, 0.3);
  padding: 80px 0 80px 0;
}


 /* Contact info container */
 .contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border-top: 2px solid #15CBFA;
  border-bottom: 2px solid #15CBFA;
  padding: 30px 0;
  gap: 40px;
}
/* Each contact item */
.contact-item {
  flex: 1 1 250px;
  max-width: 250px;
  text-align: center;
  position: relative;
  padding: 0 15px;
}
/* Vertical pink divider lines except last and middle */
.contact-item:not(:last-child):not(:nth-child(2))::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 1px;
  background-color: #15CBFA;
}
/* Middle item slightly wider */
.contact-item:nth-child(2) {
  max-width: 350px;
}
/* Icon style */
.icon {
  font-size: 40px;
  color: #15CBFA;
  margin-bottom: 10px;
}
/* Titles */
.title {
  font-weight: 700;
  margin-bottom: 6px;
}
/* Subtitles */
.subtitle {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.3;
  word-wrap: break-word;
}
/* Message box */
.message-box {
  max-width: 700px;
  margin: 40px auto 0;
  border: 1px solid #4b4b4b;
  border-radius: 6px;
  padding: 20px 30px;
  text-align: center;
}
.message-box h2 {
  color: #15CBFA;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
}
.message-box p {
  font-size: 16px;
  line-height: 1.5;
  margin: 0 auto;
  max-width: 600px;
}
/* Responsive adjustments */
@media (max-width: 768px) {
  body {
    padding: 30px 15px;
  }
  .contact-info {
    gap: 30px;
    padding: 20px 0;
  }
  .contact-item {
    max-width: 100%;
    flex: 1 1 100%;
    padding: 0;
  }
  /* Remove vertical lines on small screens */
  .contact-item::after {
    display: none;
  }
  .contact-item:nth-child(2) {
    max-width: 100%;
  }
  .message-box {
    max-width: 100%;
    padding: 20px;
    margin: 30px auto 0;
  }
  .message-box p {
    max-width: 100%;
    font-size: 15px;
  }
}
@media (max-width: 400px) {
  .icon {
    font-size: 32px;
    margin-bottom: 8px;
  }
  .title {
    font-size: 16px;
  }
  .subtitle {
    font-size: 13px;
  }
  .message-box h2 {
    font-size: 18px;
  }
  .message-box p {
    font-size: 14px;
  }
}
.inner-header{
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0px 0px;
}
.left-header a{
  border-radius: 70px;
  background: #202A67;
  padding: 20px 40px 20px 40px;
  color: #FFF;
  font-family: 'Inter';
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
}

.right-header-btn a{border-radius: 60px;border: 1px solid #2C2C2C;color: #2C2C2C;font-family: 'Inter';padding: 20px 31px 20px 31px;font-size: 20px;font-style: normal;font-weight: 400;}


.service h3{
  font-size: 24px;
  font-family: 'Inter';
   font-weight: 500;
}


.testimonial-section{
  color: #2C2C2C;
text-align: center;
font-size: 80px;
font-style: normal;
font-weight: 600;
}
.heading-pricing{
  height: 210px;
  background-color: #202a67;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  padding: 30px 30px;
  color: #fff;
  margin-bottom: -50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.heading-pricing h3{
  color: #FFF;
text-align: center;
font-size: 38px;
font-style: normal;
font-weight: 600;
}
.heading-pricing h4{
  color: #FFF;
text-align: center;

font-size: 20px;
font-style: normal;
font-weight: 500;

}


.price-badge {
  position: relative;
  width: 100%;
  max-width: 120px;
  height: 120px;
  background: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  font-weight: bold;
  color: #333;
  z-index: 1;
}

.price-badge::after {
  content: '';
  position: absolute;
  /* left: -12px; */
  width: 144px;
  height: 144px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.7); /* transparent white ring */
  z-index: -1;
}
.contact-details{
  background-color: rgba(21, 203, 250, 0.3);
  padding: 80px 80px;

}
.item-content{
  border-radius: 30px;
background: #15CBFA;
width: 100%;
height: 180px;
padding: 30px;
display: flex;
justify-content: center;
flex-direction: row;
align-items: center;
gap: 20px;

}
.content-d{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.container-contact-details{
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}
.icon{
  width: 60px;
  height: 60px;
  font-size: 24px;
flex-shrink: 0;
background-color: #fff;
border-radius: 50%;
color: #000000;
display: flex;
justify-content: center;
align-items: center;
}
.title{
  color: #fff;
  font-size: 34px;
  font-weight: 500;
  color: #2C2C2C;
}
.content-d a{
  color: #fff;
  font-size: 24px;
  font-weight: 500;
}



.contact-card {
  width: 100%;
  max-width: 567px;
  background: linear-gradient(139deg, #202A67 39.15%, #15CBFA 106.7%);
  border-radius: 30px;
  padding: 50px 40px;
  color: white;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-card h2 {
  font-size: 26px;
  margin-bottom: 40px;
  text-align: center;
}

.form-field {
  position: relative;
  margin-bottom: 25px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  padding: 12px 10px;
  font-size: 16px;
  color: #fff;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-field input:focus,
.form-field textarea:focus {
  border-bottom: 2px solid #fff;
}

.form-field textarea {
  resize: none;
  height: 100px !important;
}

.btn-submit {
  background-color: #fff;
  color: #202A67;
  font-weight: bold;
  padding: 14px 20px;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
}

.btn-submit:hover {
  background-color: #e0e0e0;
}

.profile-icon {
  position: absolute;
  top: -30px;
  left: -30px;
  background: white;
  border-radius: 50%;
  padding: 10px;
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}



@media (max-width: 600px) {
  .contact-card {
    padding: 40px 25px;
    border-radius: 20px;
  }

  .contact-card h2 {
    font-size: 22px;
  }

  .profile-icon {
    top: -25px;
    left: -25px;
    width: 60px;
    height: 60px;
  }

  .profile-icon img {
    width: 40px;
  }
}


.faq-container {
  max-width: 1440px;
  margin: 0 auto;
}

.faq-title {
  font-weight: 600;
  font-size: 60px;
  line-height: 1.2;
  text-align: left;
  color: #2c2c2c;
  /* font-size: 2rem; */
  /* font-weight: bold; */
  margin-bottom: 30px;
  line-height: 1.2;
}

.faq-item {
  background: #e0e0e0;
  border-radius: 16px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  background: #d5f3ff;
}

.faq-question {
  cursor: pointer;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1rem;
}

.faq-answer {
  padding: 0 20px 20px 20px;
  display: none;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-toggle {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .faq-title {
    font-size: 1.8rem;
    text-align: center;
  }

  .faq-question {
    font-size: 0.95rem;
    flex-direction: row;
    gap: 10px;
  }

  .faq-answer {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .faq-question {
    flex-direction: column;
    align-items: flex-start;
  }

  .faq-toggle {
    align-self: flex-end;
    margin-top: 10px;
  }
}

.faqs{
  padding: 80px 0px;
}



p.subheading {
  color: #666;
  font-size: 20px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 30px;
}

.tab-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.tab-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #eaf7fc;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
}



.tab-icon.active {
  background: rgba(21, 203, 250, 0.4);
  border: 1px solid rgba(32, 42, 103, 1);
}

.tab-content {
  max-width: 700px;
  height: 249px;
  display: flex;
  margin: 0 auto 40px;
  text-align: left;
  background: #c9f0fd;
  padding: 30px 30px;
  border-radius: 10px;
  flex-direction: column;
  align-content: center;
  justify-content: center;
}

.tab-content h3 {
  margin-top: 0;
  font-size: 30px;
  margin-bottom: 10px;
  color: #2c2c2c;
}
section.tabs-section {
  padding: 80px 0px 80px 0;
}
.tab-content p{
  font-size: 20px;
  line-height: 1.5;
  font-weight: 400;
}
.tabs h2{
  color: #2C2C2C;
text-align: center;
font-family: "Inter";
font-size: 80px;
font-style: normal;
font-weight: 600;

}
 textarea {
    width: 100%;
    height: 220px !important;
 }
 .m-l{
  margin-right: 20px !important;
 }