:root {
  --c1: #ea5f28;
  /* --c1:#0b4d3c; */
  --c2: #f2277e;
  --c3: rgb(60, 57, 49);
  --c4: #142b3b;
  --bg: linear-gradient(188deg, #f8f6f5 10%, #dbf9f4 100%);
  --s-0: 0;
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 1rem;
  --s-4: 1.5rem;
  --s-5: 3rem;
}

html {
  width: 100vw !important;
  overflow-x: hidden !important;

}

.fw-bold {
  font-weight: 700 !important
}

.faq-section {
  max-width: 900px;
  margin: auto;
}


.faq-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
}


.faq-title span {
  color: #ec5f28;
}


.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}


.faq-item {
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}


.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 10px 12px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.faq-question .icon {
  font-size: 22px;
  transition: transform 0.3s ease;
}


.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 20px;
}


.faq-answer p {
  padding: 15px 0;
  color: #555;
  line-height: 1.6;
}


.faq-item.active .faq-answer {
  max-height: 200px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* 🔹 Mobile (default: full width) */
.col {
  flex: 0 0 100%;
}

/* 🔹 Tablet (≥768px) */
@media (min-width: 768px) {
  .col-md-6 {
    flex: 0 0 calc(50% - 16px);
  }

  .col-md-4 {
    flex: 0 0 calc(33.333% - 16px);
  }
}

/* 🔹 Desktop (≥992px) */
@media (min-width: 992px) {
  .col-lg-6 {
    flex: 0 0 calc(50% - 16px);
  }

  .col-lg-4 {
    flex: 0 0 calc(33.333% - 16px);
  }
}



.card-pop {
  position: relative;
  z-index: 1;
}

.card-pop::before {
  content: '';
  width: 100%;
  height: 90%;
  position: absolute;
  bottom: 0%;
  left: 0%;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  z-index: -1;
  border-radius: 2rem !important;
}

.pop-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  background-color: #fff;
}

.card-rat {
  position: absolute;
  top: 3px;
  right: 3px;
  background-color: var(--c1) !important;
  /* transform: translateX(-50%); */
}

.rat-star {
  font-size: 10px;
}

.pop-cont {
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
  background-color: #f6f6f6;
}

.text-clamp {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}



.faq-item.active .icon {
  transform: rotate(45deg);
}

/* All sides */
.p-0 {
  padding: var(--s-0);
}

.p-1 {
  padding: var(--s-1);
}

.p-2 {
  padding: var(--s-2);
}

.p-3 {
  padding: var(--s-3);
}

.p-4 {
  padding: var(--s-4);
}

.p-5 {
  padding: var(--s-5);
}

/* Vertical */
.py-1 {
  padding-top: var(--s-1);
  padding-bottom: var(--s-1);
}

.py-2 {
  padding-top: var(--s-2);
  padding-bottom: var(--s-2);
}

.py-3 {
  padding-top: var(--s-3);
  padding-bottom: var(--s-3);
}

/* Horizontal */
.px-1 {
  padding-left: var(--s-1);
  padding-right: var(--s-1);
}

.px-2 {
  padding-left: var(--s-2);
  padding-right: var(--s-2);
}

.px-3 {
  padding-left: var(--s-3);
  padding-right: var(--s-3);
}

/* Individual */
.pt-3 {
  padding-top: var(--s-3);
}

.pb-3 {
  padding-bottom: var(--s-3);
}

.ps-3 {
  padding-left: var(--s-3);
}

/* start */
.pe-3 {
  padding-right: var(--s-3);
}

/* end */


/* All sides */
.m-0 {
  margin: var(--s-0);
}

.m-1 {
  margin: var(--s-1);
}

.m-2 {
  margin: var(--s-2);
}

.m-3 {
  margin: var(--s-3);
}

.m-4 {
  margin: var(--s-4);
}

.m-5 {
  margin: var(--s-5);
}

/* Vertical */
.my-3 {
  margin-top: var(--s-3);
  margin-bottom: var(--s-3);
}

/* Horizontal */
.mx-3 {
  margin-left: var(--s-3);
  margin-right: var(--s-3);
}

/* Individual */
.mt-3 {
  margin-top: var(--s-3);
}

.mb-3 {
  margin-bottom: var(--s-3);
}

.ms-3 {
  margin-left: var(--s-3);
}

.me-3 {
  margin-right: var(--s-3);
}

/* Auto */
.ms-auto {
  margin-left: auto;
}

.me-auto {
  margin-right: auto;
}


@media (min-width: 768px) {
  .p-md-3 {
    padding: var(--s-3);
  }

  .px-md-4 {
    padding-left: var(--s-4);
    padding-right: var(--s-4);
  }

  .pt-md-5 {
    padding-top: var(--s-5);
  }

  .m-md-3 {
    margin: var(--s-3);
  }

  .mb-md-4 {
    margin-bottom: var(--s-4);
  }
}


@media (min-width: 992px) {
  .p-lg-4 {
    padding: var(--s-4);
  }

  .py-lg-5 {
    padding-top: var(--s-5);
    padding-bottom: var(--s-5);
  }

  .m-lg-5 {
    margin: var(--s-5);
  }

  .mt-lg-0 {
    margin-top: 0;
  }
}

/* Display */
.d-flex {
  display: flex;
}

/* Flex wrap */
.flex-wrap {
  flex-wrap: wrap;
}

/* Justify content */
.justify-content-between {
  justify-content: space-between;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-start {
  justify-content: flex-start;
}

.justify-content-end {
  justify-content: flex-end;
}

.small {
  font-size: 13px !important;
}

.rounded-0 {
  border-radius: 0;
}

.rounded-1 {
  border-radius: 0.2rem;
}

.rounded-2 {
  border-radius: 0.25rem;
}

.rounded-3 {
  border-radius: 0.5rem;
}

.rounded-4 {
  border-radius: 1rem;
}

.rounded-5 {
  border-radius: 2rem;
}

.rounded-pill {
  border-radius: 50rem;
}

.pt-4 {
  padding-top: 20px !important;
}

.pt-4 {
  padding-top: 10px !important;
}

.btn-c1 {
  width: 100%;
  text-align: center;
  background-color: #ea5f28;
  color: #fff;
}

@media (max-width: 600px) {
  .faq-title {
    font-size: 26px;
  }


  .faq-question {
    font-size: 15px;
  }
}

.c1 {
  color: var(--c1) !important;
}

.c2 {
  color: var(--c2) !important;
}

.c3 {
  color: var(--c3) !important;
}

.c4 {
  color: var(--c4) !important;
}

.bg {
  background-color: var(--bg);
}

/* .c5{
  color: var(--c5) !important;
} */

.w {
  color: #fff !important;
}

.b {
  color: black !important;
}

a {
  text-decoration: none !important;
}

.ls {
  letter-spacing: 1px;
}

.lh {
  line-height: 2rem !important;
}

p {
  color: #2a2722;
  line-height: 1.5rem;
  font-size: 14px;
}

.w {
  color: #fff !important;
}



.ascentia-fullstack-section p {
  max-width: 900px;
  margin: auto;
  color: #555;
}

.highlight-box {
  background: #fff;
  padding: 30px 20px;
  border-radius: 14px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.highlight-box:hover {
  transform: translateY(-8px);
}

.highlight-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: var(--c1);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.highlight-box h5 {
  font-weight: 600;
  margin: 0;
  font-size: 23px;
}

/* ------ */

.asc-tech-image img {
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}



.asc-coverage-highlight {
  display: inline-block;
  background: var(--c1);
  padding: 10px 22px;
  border-radius: 30px;
}

.asc-coverage-highlight h3 {
  font-size: 20px;
  font-weight: 600;
}

.asc-coverage-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  padding: 16px 18px;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.asc-coverage-box:hover {
  transform: translateX(6px);
}

.asc-coverage-box i {
  font-size: 22px;
  color: var(--c1);
}

.asc-coverage-box span {
  font-weight: 500;
}






.asc-zigzag-img {
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.asc-cta-section {
  /* background: var(--c1); */
  color: #fff;
}

.asc-cta-section a {
  color: var(--c1);
  font-weight: 600;
  text-decoration: underline;
}

.btn-c1 {
  background-color: var(--c1) !important;
  color: #fff !important;
  border: 1px solid var(--c1) !important;
}

.btn-c1:hover {
  background-color: #fff !important;
  color: var(--c1) !important;
  border: 1px solid var(--c1) !important;
}

/* --- faq --- */

.asc-faq-accordion {
  max-width: 900px;
  margin: auto;
}

.asc-faq-item {
  border: none;
  border-radius: 14px;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.asc-faq-btn {
  background: #ffffff;
  font-weight: 600;
  padding: 18px 22px;
}

.asc-faq-btn:not(.collapsed) {
  background: var(--c1) !important;
  color: #ffffff !important;
}

.asc-faq-btn:focus {
  box-shadow: none;
}

.asc-faq-item .accordion-body {
  background: #ffffff;
  color: #555;
  padding: 20px 22px;
  line-height: 1.6;
}


/* ------ thoothukudi page ----- */



.ftt-highlight-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.ftt-highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(219, 145, 239, 0.3);
}

.ftt-icon-box {
  width: 70px;
  height: 70px;
  margin: auto;
  border-radius: 50%;
  background: rgba(219, 145, 239, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c1);
  font-size: 28px;
}

.ftt-highlight-card h5 {
  font-weight: 700;
  margin-bottom: 10px;
}

.ftt-highlight-card p {
  font-size: 15px;
  color: #555;
}

/* -why -- */

.ftt-why-header h2 {
  font-weight: 800;
  margin-bottom: 12px;
}

.ftt-why-header p {
  max-width: 900px;
  margin: auto;
  color: #555;
}

.ftt-why-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.ftt-why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(219, 145, 239, 0.3);
}

.ftt-icon-wrap {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: rgba(219, 145, 239, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c1);
  font-size: 28px;
}

.ftt-why-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.ftt-why-card p {
  color: #555;
  margin: 0;
}

.ftt-why-card a {
  color: var(--c1);
  font-weight: 600;
  text-decoration: none;
}




.ftt-courses-header h2 {
  font-weight: 800;
  margin-bottom: 10px;
}

.ftt-courses-header p {
  max-width: 900px;
  margin: auto;
  color: #555;
}

.ftt-course-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.ftt-course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(219, 145, 239, 0.3);
}

.ftt-course-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.ftt-course-content {
  padding: 22px;
}

.ftt-course-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.ftt-course-content p {
  margin: 0;
  color: #555;
}

.ftt-course-content a {
  color: var(--c1);
  font-weight: 600;
  text-decoration: none;
}

.ftt-roadmap-image {
  border-radius: 20px;
  overflow: hidden;
}

.ftt-full-height-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* KEY line */
  border-radius: 20px;
}

.ftt-roadmap-image img {
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.ftt-roadmap-content h2 {
  font-weight: 800;
}

.ftt-roadmap-card {
  position: relative;
  background: #fff;
  padding: 20px 25px 20px 70px;
  border-radius: 16px;
  margin-bottom: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.ftt-roadmap-card:hover {
  transform: translateX(6px);
  box-shadow: 0 15px 35px rgba(219, 145, 239, 0.3);
}

.ftt-step-number {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  background: var(--c1);
  color: #fff;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ftt-roadmap-card p {
  margin: 0;
  color: #555;
  font-weight: 500;
}

/* --testi-- */




.ftt-testimonial-header h2 {
  font-weight: 800;
}

.ftt-testimonial-card {
  position: relative;
  background: #fff;
  padding: 35px 25px 30px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.ftt-testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(219, 145, 239, 0.3);
}

.ftt-quote-icon {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  background: var(--c1);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.ftt-testimonial-card p {
  margin-top: 20px;
  color: #555;
  font-style: italic;
}

.ftt-stars {
  margin: 12px 0;
  color: #f4b400;
  font-size: 18px;
}

.ftt-testimonial-card h5 {
  margin: 0;
  font-weight: 700;
}

.ftt-testimonial-card a {
  color: var(--c1);
  font-weight: 600;
  text-decoration: none;
}

/* --form -- */


.ftt-demo-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.ftt-demo-card h2 {
  font-weight: 800;
}

.ftt-label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.ftt-input {
  border-radius: 12px;
  padding: 12px 14px;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
}

.ftt-input:focus {
  border-color: var(--c1);
  box-shadow: 0 0 0 3px rgba(219, 145, 239, 0.2);
}

.ftt-submit-btn {
  background: linear-gradient(135deg, var(--c1), #9b5bdc);
  color: #fff;
  border: none;
  padding: 14px 40px;
  border-radius: 30px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.ftt-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(219, 145, 239, 0.4);
}

/* --------------------------------------make it responsive------------------------ */
@media (max-width: 768px) {}

@media screen and (max-width:1400px) {}

@media screen and (max-width:1025px) {}

@media screen and (min-width:960px) and (max-width:1030px) {}

@media (min-width:920px) and (max-width:1200px) {}

@media screen and (max-width:920px) {
  body {
    overflow-x: hidden !important;
  }

  .sm-js {
    text-align: justify !important;
  }

}



@media screen and (max-width:720px) {}



@media screen and (max-width:660px) {


  .sm-js {
    text-align: justify !important;
  }


}

@media screen and (max-width:500px) {}

@media screen and (max-width:400px) {}

@media screen and (max-width:380px) {}

@media screen and (max-width:320px) {}

@media screen and (min-width:321px) and (max-width:425px) {}