@import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible:ital,wght@0,400;0,700;1,400;1,700&display=swap');

html,
body {
  overflow-x: hidden;
  /* Prevent horizontal overflow */
  margin: 0;
  /* Remove default margin */
  font-family: 'Poppins', sans-serif;
  -webkit-overflow-scrolling: touch;
  /* For iOS smoothness */
  scroll-behavior: smooth;
  
}

body {
  padding-top: 70px;
}

/*hero section*/
/*hero section*/
.dx-wide {
  max-width: 1350px !important;
}

.hero-bg {
  background: linear-gradient(to bottom, rgba(162, 93, 214, 0.45), #ffffff);
  color: #000000;
}

.hero-section {
  position: relative;
  overflow: hidden;
  /* Ensures no unwanted overflow */
}

.hero-decor {
  position: absolute;
  z-index: 1;
  /* Below all content but above background/gradient */
  pointer-events: none;
}

.hero-decor-left {
  left: -40px;
  bottom: 30px;
  max-width: 400px;
}

.hero-decor-right {
  right: -25px;
  top: 30px;
  max-width: 400px;
}

.hero-content {
  position: relative;
  z-index: 2;
  /* keep content above decor */
}

.badge-wrapper {
  margin-top: 60px;
  /* space from top if needed */
}

.badge-flex-wrapper {
  display: flex;
  justify-content: left;
  align-items: left;
  width: 100%;
}

.badge-wrapper {
  text-align: center;
  margin-bottom: 15px;
}

.badge-img {
  position: absolute;
  top: -25px;
  left: 12px;
  transform: translateX(-50%);
  width: 55px;
  height: auto;
  z-index: 1;
}

.student-badge {
  background-color: #a25dd6;
  color: white;
  /* padding: 14px 24px; */
  font-weight: 500;
  font-size: 14px;
  border-radius: 10px;
  position: relative;
  margin-bottom: 10px;
  padding-top: 18px;
  padding-bottom: 18px;
  padding-left: 36px;
  padding-right: 18px;
}

.hero-heading {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-subheading {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-para {
  font-size: 16px;
  color: #000000;
  font-family: "poppins";
  max-width: 650px;
}

.hero-tagline {
  font-size: 16px;
  color: #000000;
  margin-top: 10px;
  font-family: "poppins";
}

.flag-img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
}

.custom-btn {
  font-weight: 400;
  font-size: 16px;
  background-color: #a25dd6;
  padding: 10px 22px;
  color: #fff;
  border-radius: 25px;
}

.custom-btn:hover {
  color: #000;
}


.custom-more {
  font-family: 'Apricot', cursive;
  font-size: 22px;
}

@font-face {
  font-family: 'Apricot';
  font-style: normal;
  font-weight: normal;
  src: url('/study-abroad/fonts/Apricot-BF650c4a6357ce1.woff') format('woff');
}

.btn{
  display: inline;
}
.btn-outline-light {
  color: #000000;
  border:1.5px solid #a25dd6;
  border-radius: 12px;
  padding: 10px 22px;
}

.btn-outline-light:hover {
  border:1.5px solid #a25dd6;
  background-color: #ffffff;
  color: #a25dd6;
  border-radius: 12px;
}

@media screen and (max-width:992px) {

  .testimonial-card {
    margin-left: 0 !important;
  }

}

.hero-image {
  max-width: 85%;
  /* adjust as needed: try 60%–90% */
  height: auto;
}

@media (max-width: 570px) {
  .hero-heading {
    font-size: 32px;
    line-height: 1.3;
    text-align: center;
  }

  .hero-subheading {
    font-size: 24px;
    line-height: 1.3;
    text-align: center;
  }

  .hero-para,
  .hero-tagline {
    font-size: 14px;
    text-align: center;
  }

  .hero-image {
    max-width: 100%;
    margin-top: 20px;
  }

  .badge-flex-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .badge-img {
    left: 15px;
    transform: translateX(-50%);
  }

  .student-badge {
    font-size: 12px;
    padding: 10px 18px;
  }

  .custom-btn,
  .btn-outline-light {
    display: block;
    width: 100%;
    margin: 10px auto;
    text-align: center;
  }

  .flag-img {
    width: 40px;
    height: 40px;
  }

  .custom-more {
    display: block;
    font-size: 18px;
    text-align: center;
    margin-top: 10px;
  }

  .hero-decor-left,
  .hero-decor-right {
    display: none;
    /* Hide decorative images on mobile for clarity */
  }
}


/*services box*/
/*services box*/
.service-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

/* .service-box:hover {
  background-color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
} */

.service-icon {
  width: 75px;
  height: 75px;
  object-fit: contain;
}

.service-content h5 {
  font-size: 22px;
  margin-bottom: 5px;
  font-weight: 700;
  color: #000;
}

.service-content p {
  font-size: 15px;
  color: #a6a6a6;
  margin: 0;
  font-weight: 600;
}

/*about section*/
/*about section*/

.about-btn {
  background: linear-gradient(to right, #ffffff, rgba(162, 93, 214, 0.5));
  border: none;
  padding: 8px 18px;
  font-weight: 600;
  border-radius: 20px;
  color: #a25dd6;
  font-size: 14px;
}
  .about-heading {
    color: #000;
    font-size: 38px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
  }

  .about-desc {
    font-size: 15px;
    color: #000000;
  }

  .about-btn {
    font-size: 12px;
    padding: 6px 14px;
  }

  .about-img {
    width: 100%;
    margin-top: 20px;
  }
/* .about-heading {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 15px;
} */

/* .about-desc {
  color: #000000;
  font-size: 15px;
  margin-bottom: 25px;
} */

/* Combined base styles for both card types */
.card-grid .info-card,
.card-grid .info-cards {
  aspect-ratio: 1 / 1; /* Perfect square */
  width: 100%; /* Takes full column width */
  padding: 16px 12px;
  border-radius: 43px;
  text-align: center;
  transition: 0.3s;
  margin-bottom: 20px;
  color: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(217, 217, 217, 0.6);
}

/* Font styles for headings */
.card-grid .info-card h5,
.card-grid .info-cards h5 {
  font-size: 36px;
  font-weight: bold;
  color: #737373;
  margin-bottom: 8px;
}

/* Font styles for paragraphs */
.card-grid .info-card p,
.card-grid .info-cards p {
  font-size: 22px !important;
  margin: 0;
  color: #a6a6a6;
  transition: color 0.3s ease;
  line-height: 1.3;
}

/* Text color on hover */
.card-grid .info-card:hover p,
.card-grid .info-cards:hover p {
  color: #a6a6a6;
}

/* Responsive sizing */
@media (max-width: 1200px) {
  .card-grid .info-card h5,
  .card-grid .info-cards h5 {
    font-size: 28px;
  }
  
  .card-grid .info-card p,
  .card-grid .info-cards p {
    font-size: 13px !important;
  }
}

@media (max-width: 768px) {
  .card-grid .info-card,
  .card-grid .info-cards {
    padding: 12px 8px;
  }
  
  .card-grid .info-card h5,
  .card-grid .info-cards h5 {
    font-size: 24px;
  }
  
  .card-grid .info-card p,
  .card-grid .info-cards p {
    font-size: 12px !important;
  }
}

@media (max-width: 576px) {
  .card-grid .info-card h5,
  .card-grid .info-cards h5 {
    font-size: 20px;
  }
  
  .card-grid .info-card p,
  .card-grid .info-cards p {
    font-size: 11px !important;
  }
}

/* Hover background overrides (solid colors to highlight) */
.hover-green:hover {
  background-color: rgba(140, 197, 62, 0.5);
}

.hover-blue:hover {
  background-color: #b3e0ff;
}

.hover-yellow:hover {
  background-color: #fff4b3;
}

.hover-purple:hover {
  background-color: #e6d6ff;
}

.hover-orange:hover {
  background-color: #ffd1a3;
}

.hover-pink:hover {
  background-color: #fbd4f6;
}

.bg-green:hover {
  background-color: rgba(217, 217, 217, 0.9);
}

.about-img {
  width: 80%;
  max-width: 100%;
  height: auto;
}


@media (max-width: 570px) {
  .card-grid .col-4 {
    width: 50%;
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 8px;
    padding-right: 8px;
  }

  .card-grid {
    margin-left: -8px;
    margin-right: -8px;
  }

  

}


/*call to action box*/
/*call to action box*/
/* CTA Box Background and Styling */
.cta-box {
  background: linear-gradient(to top, #0a1a2fc2), url("../images/1.png");
  border-radius: 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.cta-box-bg {
  background: linear-gradient(to top, #312a45d7), url("../images/consult-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Heading Styles */
.cta-heading {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
}

.cta-subheading {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
}

/* Paragraph Description */
.cta-description {
  

  font-size: 18px;
  color: #f0f0f0;
  line-height: 1.6;
}

.logo-animation {
  animation: logoFloat 3s ease-in-out infinite;
}

/* CTA Button */
.cta-button {
  background-color: #7d0049;
  color: #fff;
  font-weight: 400;
  padding: 12px 40px;
  border-radius: 0;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.3s ease;
  text-align: center;
  justify-content: center;
}

.cta-button:hover {
  background-color:#8b8989;
  color: #fff;
}

@media (max-width: 767.98px) {
  .cta-box {
    padding: 20px 5px !important;
    margin: 15px !important;
    text-align: center;
    width: calc(100% - 30px);
    /* Prevent overflow with margin */
    box-sizing: border-box;
    /* Ensures width + padding + margin behave predictably */
  }

  .cta-box .row {
    margin-left: 0;
    margin-right: 0;
  }

  .cta-heading {
    font-size: 26px;
  }

  .cta-subheading {
    font-size: 18px;
  }

  .cta-description {
    font-size: 18px;
  }

  .cta-button {
    display: inline-block;
    margin-top: 20px;
    font-size: 15px;
    padding: 10px 12px;
  }

  .text-right {
    text-align: center !important;
  }
}


/*why choose us*/
/*why choose us*/
/* WHAT WE OFFER Button */
.what-we-offer-btn {
  background: linear-gradient(to right, #ffffff, rgba(162, 93, 214, 0.3));
  border: none;
  padding: 8px 18px;
  font-weight: 600;
  border-radius: 20px;
  color: #a25dd6;
  font-size: 12px;
}

.offer {
  font-size: 46px;
  line-height: 1.4;
  color: #010101;
  text-align: center;
}

/* Offer Card */
.offer-card {
  background: #f8f9fa;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  height: 100%;
  padding-top: 25px;
}

.offer-card h5 {
  font-size: 30px;
}

.offer-card p {
  font-size: 14px;
}

.card-left {
  flex: 1;
}

.card-right {
  width: 160px;
  flex-shrink: 0;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Orange Button */
.btn-orange {
  background-color: #f05928;
  color: #fff;
  border: none;
  padding: 8px 15px;
  border-radius: 25px;
  font-size: 14px;
}

/* blue Button */
.btn-blue {
  background-color: #4a73e8;
  color: #fff;
  border: none;
  padding: 8px 15px;
  border-radius: 25px;
  font-size: 14px;
}

/* green Button */
.btn-green {
  background-color: #35961a;
  color: #fff;
  border: none;
  padding: 8px 15px;
  border-radius: 25px;
  font-size: 14px;
}

/* Bottom CTA Button */
.btn-contact {
  background-color: #d9d9d9;
  color: #a25dd6;
  padding: 10px 25px;
  border: none;
  border-radius: 30px;
  font-weight: bold;
}

@media (min-width: 570px) {

  /* Adjust card layout to side-by-side */
  .offer-card {
    flex-direction: row;
    text-align: left;
    align-items: center;
  }

  .offer-card h5 {
    color: #000;
    font-size: 28px;
  }

  .offer-card p {
    color: #000;
    font-size: 14px;
  }

  .img-cover {
    height: 220px;
    object-fit: cover;
  }

  .btn-orange,
  .btn-blue,
  .btn-green {
    font-size: 11.5px;
    padding: 8px 11px;
  }

  .text-center h3 {
    color: #000;
    font-size: 28px;
  }

  .text-center p {
    color: #000;
    font-size: 21px;
  }

  .btn-contact {
    font-size: 13px;
    padding: 10px 24px;
  }
}

/* Small screens (mobiles) */
@media (max-width: 576px) {
  .offer {
    font-size: 24px;
    line-height: 1.3;
  }

  .btn-orange {
    font-size: 13px;
    padding: 6px 16px;
  }
}

/*choose us section*/
/*choose us section*/
/* Section Background */
.choose-section-bg {
  background-color: #ffffff;
}

/* Main Container */
.choose-section {
  text-align: center;
}

/* Top Button */
.choose-btn {
  background-color: #a25dd6ae;
  color: #fff;
  opacity: 0.85;
  padding: 8px 20px;
  border: none;
  border-radius: 25px;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.btn-wrapper {
  position: relative;
  display: inline-block;
}

.overlay-word {
  position: absolute;
  font-size: 18px;
  font-weight: bold;
  color: #662d91;
}

.word-left {
  top: -25px;
  left: 30px;
  font-family: 'Apricot', cursive;
}


.arrow-img {
  position: absolute;
  width: 25px;
  height: auto;
}


.arrow-right {
  top: 30px;
  left: 38px;
  z-index: 1;
}

.choose-btn:hover {
  color: #ffffff;
}

/* Section Heading */
.choose-heading {
  font-size: 4rem;
  font-weight: 700;
  color: #020202;
  margin-bottom: 25px;
}

/* Section Paragraph */
.choose-para {
  font-size: 1.3rem;
  color: #555;
  max-width: 860px;
  margin: 0 auto;
}

/* Inner Card */
.choose-card {
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
   aspect-ratio: 1 / 1; /* Perfect square */
  width: 100%; /* Takes full column width */
  text-align: left;
  border-radius: 40px;
  padding: 60px;
  height: 550px;
}

/* Card Button - Gradient */
.choose-inner-btn {
  background: linear-gradient(90deg, #765bc2, #69ad9b);
  color: #fff;
  padding: 7px 14px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 12px;
}

/* Card Heading */
.choose-card-heading {
  font-size: 44px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

/* Card Text */
.choose-card-text {
  font-size: 1rem;
  text-align: justify;
  color: #444;
}

/* CTA Button */
.choose-cta-btn {
  background-color: #404040;
  color: #fff;
  padding: 8px 20px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  font-size: 18px;
}

/* CTA Button */
.choose-cta-btn:hover {
  color: #000;
  background-color: #777474;
  border-color: #000;
}

.bg {
  background-color: #a25dd6;
}

.choose-image img {
  /* width: 100%;
  height: auto; */
  border-radius: 40px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  transition: transform 0.3s ease;
}

.choose-image img:hover {
  transform: scale(1.02);
}

.choose-section-bg {
  position: relative;
  background-color: #ffffff;
  /* optional background */
}

.choose-decor {
  position: absolute;
  z-index: 0;
  max-width: 350px;
  pointer-events: none;
}

.choose-left {
  bottom: 20px;
  left: -25px;
}

.choose-right {
  top: 240px;
  right: 0;
}

.choose-section {
  position: relative;
  z-index: 2;
  text-align: center;
}


.guidance-section-bg {
  position: relative;
  background-color: #ffffff;
}

/* Wrapper Container */
.guidance-wrapper {
  text-align: center;
}

/* Gradient Badge */
.guidance-badge {
  background: #eff0f2;
  color: #737373;
  padding: 4px 12px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
}

/* Card Container */
.guidance-card {
  background: #ffffff;
   aspect-ratio: 1 / 1; /* Perfect square */
  width: 100%; /* Takes full column width */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  text-align: left;
  border-radius: 40px;
  padding: 60px;
  /* height: 520px; */
}

/* Heading */
.guidance-title {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

/* Paragraph Text */
.guidance-text {
  font-size: 18px !important;
  color: #444;
}

/* CTA Button */
.guidance-cta {
  background-color: #000;
  color: #fff;
  padding: 8px 20px;
  border-radius: 25px;
  border: none;
  font-weight: 600;
}

.guidance-cta:hover {
  color: #fff;
}

/* Image Styling */
.guidance-img-wrapper img {
  width: 100%;
  height: 498px;
  border-radius: 40px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  transition: transform 0.3s ease;
}

.guidance-img-wrapper img:hover {
  transform: scale(1.02);
}

.progress-compare {
  margin-top: 20px;
  text-align: left;
}

.progress-label {
  font-weight: 600;
  margin-bottom: 10px;
  color: #000000;
}

.custom-progress {
  width: 100%;
  height: 16px;
  background-color: #d9d9d9;
  border-radius: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
}

.custom-progress-bar {
  height: 100%;
  color: #fff;
  font-weight: 600;
 
  padding-left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  
}

.bg-other {
  width: 25%;
  background-color: #41b8d5;
}

.bg-wtw {
  width: 96%;
  background-color: #41b8d5;
}

.guidance-text {
  text-align: justify;
  margin-top: 1rem;
}

.guidance-text-p {
  font-size: 17px;
  color: #000000;
  font-weight: 400;
}

.guidance-step {
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #000000;
}

.guidance-step strong {
  display: block;
  font-weight: 700;
  text-align: left;
  font-size: 18px;
  margin-bottom: 4px;
  color: #000000;
}

.air-img {
  width: 100%;
  height: 640px;
  border-radius: 40px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  transition: transform 0.3s ease;
}



@media (max-width: 768px) {

  /* Section Headings */
  .choose-heading {
    font-size: 2rem;
    margin-bottom: 15px;
  }


  .choose-para {
    font-size: 0.95rem;
    padding: 0 15px;
  }

  .choose-card,
  .guidance-card {
    padding: 30px 20px;
    border-radius: 25px;
  }

  .choose-card-heading,
  .guidance-title {
    font-size: 1.75rem;
  }

  .choose-card-text,
  .guidance-text,
  .guidance-step {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  /* Buttons */
  .choose-btn,
  .choose-inner-btn,
  .choose-cta-btn,
  .guidance-badge,
  .guidance-cta {
    font-size: 0.85rem;
    padding: 6px 14px;
  }

  /* Images */
  .choose-image img,
  .guidance-img-wrapper img,
  .air-img {
    height: auto;
    max-height: 300px;
    margin-bottom: 20px;
  }

  .choose-image,
  .guidance-img-wrapper,
  .air {
    margin-bottom: 20px;
  }

  .guidance-img-wrapper {
    margin-top: 20px;
  }

  /* Layout Adjustments */
  .row.align-items-center {
    flex-direction: column;
    text-align: center;
  }

  .progress-compare {
    text-align: center;
  }

  .progress-label {
    font-size: 0.85rem;
  }

  .custom-progress {
    height: 12px;
  }

  .custom-progress-bar {
    font-size: 0.7rem;
    padding-left: 6px;
  }

  /* Decorative elements positioning */
  .choose-left {
    bottom: -10px;
    left: -30px;
    max-width: 180px;
  }

  .choose-right {
    top: 200px;
    right: -10px;
    max-width: 180px;
  }

  .overlay-word {
    font-size: 14px;
    top: -18px;
    left: 20px;
  }

  .arrow-img {
    width: 16px;
    top: 20px;
    left: 25px;
  }

  .choose-decor {
    display: none !important;
  }
}


/*stats section*/
/*stats section*/

.stat-container {
  background-color: rgba(203, 162, 235, 0.2);
  padding: 20px;
  border-radius: 30px;
}

.stat-container h2 {
  font-size: 49px;
  line-height: 1.4;
  font-weight: 700;
  color: #000000;
}

.highlight {
  background: none;
  position: relative;
  display: inline-block;
}

.highlight::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 70%;
  width: 100%;
  padding: 0;
  margin-bottom: 10px;
  background-color: #a55eea;
  z-index: -1;
}



.stat-box {
  max-width: 300px;
}

.stat-number {
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.arrow-icon {
  width: 70px;
  height: auto;
}

.stat-sub {
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  color: #000000;
}

.stat-desc {
  font-size: 16px;
  
  color: #000000;
}


#chart {
  max-width: 100%;
  position: relative;
  color: #000000;
}

.lab {
  position: absolute;
  right: 50px;
  top: 100px;
}

.x-axis-label {
  text-align: center;
  font-size: 19px;
  color: #000000;
}

.apexcharts-tooltip-title,
.apexcharts-tooltip-text {
  font-size: 13px;
}

/* Optional: Style override for the 30+ countries label */
.countries-label {
  position: absolute;
  font-weight: bold;
  color: #000000;
  top: 50px;
  right: 10px;
  font-size: 20px;
}

@media (max-width: 570px) {

  .stat-container {
    padding: 20px;
    border-radius: 20px;
    margin: 20px;
    width: calc(100% - 40px);
    /* Prevent overflow with margin */
    box-sizing: border-box;
    /* Ensures width + padding + margin behave predictably */
  }

  .stat-container h2 {
    font-size: 28px;
    line-height: 1.3;
    text-align: center;
  }

  .highlight {
    display: inline-block;
    padding: 0 4px;
  }

  .stat-box {
    max-width: 100%;
    text-align: center;
  }

  .stat-number {
    font-size: 3rem;
    justify-content: center;
    gap: 0.4rem;
  }

  .arrow-icon {
    width: 40px;
  }

  .stat-sub {
    font-size: 1rem;
  }

  .stat-desc {
    font-size: 0.85rem;
    padding: 0 10px;
  }

  #chart {
    width: 100%;
    height: 250px;
    margin-top: 30px;
  }

  .x-axis-label {
    font-size: 14px;
    margin-top: -10px;
    text-align: center;
  }

  /* .countries-label {
    position: static;
    margin: 10px 0;
    font-size: 16px;
    text-align: center;
  } */
}


/* Testimonials Section */
.testimonials-section {
  padding: 80px 16px;
}

.section-label {
  display: inline-block;
  background: linear-gradient(to left, #a25dd68e, #ffa2f400);
  color: #a25dd6;
  font-weight: 600;
  padding: 6px 16px;
  font-size: 0.85rem;
}

.testimonials-content {
  margin-top: 20px;
}

.testimonials-heading {
  font-size: 40px;
  font-weight: 700;
  color: #000000;
  line-height: 1.2;
  margin-bottom: 25px;
}

.testimonials-description {
  font-size: 16px;
  color: #000000;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 350px;
}

/* Navigation Arrows */
.testimonial-navigation {
  display: flex;
  gap: -10px;
}

.nav-arrow {
  width: 35px;
  border: none;
  height: 50px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: left;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 30px;
}

.nav-arrow:hover {
  /* border-color: #4ecdc4;
  color: #4ecdc4; */
  transform: translateY(-2px);
  /* box-shadow: 0 4px 12px rgba(78, 205, 196, 0.3); */
}

/* Testimonial Card */
.testimonial-card {
  position: relative;
  border: 3px solid #d9d9d9;
  padding: 30px;
  border-radius: 10px;
  margin-left: 20px;
  /* box-shadow: 0 0 15px rgba(0, 0, 0, 0.05); */
  background: #fff;
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-text {
  font-size: 17px;
  text-align: justify;
  line-height: 1.7;
  color: #000000;
  margin-bottom: 10px;
  margin-top: 20px;
  padding-right: 10px;
  font-family: "poppins";
}

/* Profile Section */
.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 15px;
}

.profile-image img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}

.profile-info h6 {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 5px;
}

.profile-info p {
  font-size: 14px;
  color: #000000;
  margin: 0;
}

.testimonials-description {
  text-align: justify;
  word-spacing: 5px;
}

/*logomarquee*/
/*logomarquee*/

.logo-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo-track {
  display: flex;
  gap: 40px;
  width: calc(200%);
  /* Ensures logos repeat seamlessly */
  animation: scrollLogos 25s linear infinite;
}

.logo-track img {
  height: 70px;
  flex-shrink: 0;
}

/* Adjust animation speed and smoothness */
@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}


/*faqs*/
/*faqs*/
.accordion {
  border-radius: 0;
  padding: 50px 20px 20px;
  background-color: #f1f1f1;
}


.h1style {
  font-family: "Atkinson Hyperlegible", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 130px;
  margin-bottom: -36px;
  color: #f7f7f7;
}

.faq-box {
  margin-bottom: 1.5rem;
}

.faq-item {
  width: 100%;
  background-color: #a35dd6;
  color: white;
  font-weight: bold;
  font-size: 18px;
  border: none;
  text-align: left;
  padding: 15px 20px;
  border-radius: 5px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item.collapsed {
  background-color: #a6a6a6;
  color: white;
}

.faq-item i {
  margin-left: 10px;
  transition: transform 0.3s ease;
  color: white;
}

.faq-item:not(.collapsed) i {
  transform: rotate(180deg);
}

.faq-body {
  background: transparent;
  padding: 15px 20px;
  color: #333;
  font-weight: normal;
  font-size: 15px;
}

/*footer*/
/*footer*/
.footer-section {
  background-color: rgba(203, 162, 235, 0.15);
}

.footer-heading {
  color: #000;
  font-weight: bold;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  color: #333;
  text-decoration: none;
}

.footer-links a:hover {
  color: #a25dd6;
}

.social-icon {
  background-color: #b757ff;
  color: #fff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  text-align: center;
  line-height: 36px;
  font-size: 16px;
  transition: 0.3s;
}

.social-icon:hover {
  background-color: #a25dd6;
  color: #fff;
}

.btn-outline-dark {
  border: 1px solid #333;
  background: transparent;
  color: #333;
  transition: 0.3s;
}

.btn-outline-dark:hover {
  background-color: #a25dd6;
  color: #fff;
  border-color: #a25dd6;
}

.journey-img {
  max-width: 220px;
  width: 100%;
  height: auto;
}

.swiper-button-prev {
  transform: rotate(180deg) !important;
}

.bg-color {
  background: linear-gradient(to left, #7d004976, #ff9ad500) !important;
  padding: 12px 16px;
  color: #7d0049;
  font-size: 15px;
}

.bg-color>span {
  padding: 2px 5px;
  background-color: #7d0049;
  color: #fff;
  margin-right: 14px;
}

.color {
  color: #7d0049;
}

.btn-pilot {
  background-color: #7d0049;
  font-weight: 600;
  border-radius: 0;
  height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.btn-pilot:hover {
  color: #000;
}

.pilot-left>h1 {
  font-weight: 700;
  font-size: 72px;
  color: #000000;
}

.pilot-left>h2 {
  font-weight: 700;
  font-size: 45px;
  color: #666666;
}
.pilot-left>p {
  max-width: 80%;
  font-size: 19px;
  text-align: justify;
  color: #000000;
  font-family: "open sans", sans-serif;
}

.pilot-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  font-size: 18px;
  font-family: "open sans" sans-serif;
  color: #000000;
}

.pilot-features>p>i {
  margin-right: 8px;
  color: #000000;
  
}

.pilot-right {
  display: flex;
  justify-content: right;
  align-items: center;
  padding-right: 120px;
  height: 100%;
  position: relative;
}

.labels {
  position: absolute;
  left: -41px; /* Originally 12px*/
  top: 40%;
}

.labels>label {
  display: block;
  background-color: #fff;
  border-radius: 5px;
  margin: 10px 0px;
  padding: 4px 10px;
  box-shadow: 0px 0px 10px 3px #0000002d;
  font-size: 12px;
}

.labels>label:first-child,
.labels>label:last-child {
  transform: scale(0.8);
}

.labels>label>i {
  margin-right: 10px;
}

.img-label {
  position: absolute;
  top: 5%;
  left: 20%;
}

.img-label>label,
.img-label3>label,
.img-label4>label {
  display: block;
  background-color: #fff;
  border-radius: 5px;
  margin: 10px 0px;
  font-size: 9px !important;
  padding: 4px 6px;
  box-shadow: 0px 0px 10px 3px #0000002d;
}

.img-label>label {
  position: absolute;
  top: 0%;
  min-width: 100px;
  left: 70%;
  font-size: 12px;
}

.img-label1 {
  position: absolute;
  top: 3%;
  right: 15%;
}

.img-label2 {
  position: absolute;
  top: 40%;
  right: 0%;
}

.img-label3 {
  position: absolute;
  bottom: 0%;
  right: 20%;
}

.img-label3>label {
  position: absolute;
  top: 0%;
  min-width: 145px;
  left: 70%;
  font-size: 12px;
}

.img-label4>label {
  min-width: 80px;
  position: absolute;
  bottom: 0%;
  left: 70%;
  font-size: 12px;
}

.img-label4 {
  position: absolute;
  bottom: 0%;
  left: 20%;
}

@media screen and (max-width:678px) {
  .pilot-right {
    margin-top: 70px;
    margin-bottom: 100px;
  }

  .pilot-features {
    grid-template-columns: 1fr;
  }

  .img-label {
    top: -20px;
    left: 2%;
  }

  .pilot-right {
    padding-right: 70px;
  }

  .labels {
    left: 0px;
    top: 56%;
  }

  .img-label1 {
    right: 2%;
  }

  .img-label2 {
    right: 0%;
  }

  .img-label4 {
    left: 3%;
  }

  .img-label3 {
    right: 2%;
    bottom: -20px;
  }

  .img-label3>label {
    left: -80%;
    top: -20px;
  }

  .testimonials-section {
    padding: 80px 0px;
  }

  .pilot-left>h1 {
    font-size: 40px;
  }

  .pilot-left>h2 {
    font-size: 30px;
  }

  .testimonials-heading {
    font-size: 2.5rem;
  }
}

.pilot-left>p.my-4>span.fw-bold {
  font-weight: 600;
}

.right-col {
  position: relative;
}

.rating-text {
  position: absolute;
  left: 20px;
  top: 75%;
  z-index: 10;
  font-size: 10px;
  border-radius: 5px;
  padding: 5px 7px;
  background-color: #fefefe;
  box-shadow: 0px 0px 10px 4px rgba(0, 0, 0, 0.411);
}

/*Custom Container*/
.container-custom {
    max-width: 1400px; /* Adjust this value (1400px, 1600px, etc.) */
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* Responsive adjustments */
@media (max-width: 1440px) {
    .container-custom {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .container-custom {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
}