 
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
 
body {
  font-family: "Sora", sans-serif;
}




 /* BANNER SECTION  */

.aboutBanner {
    flex-flow: column;
  justify-content: center;
  align-items: center;
  min-height: 500px;
  max-height: 500px;
  display: flex;
  position: relative;
}

.imgBlock {
    flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.imgBlock .bannerImg {
    z-index: 4;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.overLay {
    z-index: 5;
  background-color: #00000080;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.bannerTextDiv {
    width: 100%;
    max-width: 1360px;
    margin-inline: auto;
}
.bannerDivInner {
    z-index: 20;
  padding-top: 150px;
  position: relative;
}

.bannerText {
    text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.pageTitle {
    color: rgb(255, 255, 255);
    font-size: 70px;
    font-weight: 600;
    line-height: 84px;
}

.pageDesc {
    color: rgb(255, 255, 255);
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    max-width: 567px;
    margin-top: 12px;
}





/* SERVICE SECTION  */

.serviceSection {
  width: 100%;
  max-width: 1360px;
  margin-inline: auto;
  margin-block: 120px;
}
.serviceSection a {
   text-decoration: none;
}

.serviceText {
  text-align: center;
}

.serviceTitle {
  background-image: linear-gradient(-180deg, #ff711d54 33%, #fff);
  border: 1px solid #ffc5a2;
  border-radius: 40px;
  padding: 4px 12px;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  color: rgb(255, 113, 29);
  margin-bottom: 12px;
}

.serviceHeading {
  width: 100%;
  max-width: 721px;
  margin-inline: auto;
  color: #292929;
  font-size: 52px;
}

.servicesContainer {
  margin-top: 60px;
}
.servicesContainer {
  display: flex;
  width: 100%;
  gap: 24px 24px;
  flex-wrap: wrap;
}
.serviceCard {
  flex-basis: calc(50% - 12px);
  background-color: rgb(255, 113, 29);
  border-radius: 20px;
}
.innerCard {
  background: rgb(255, 253, 244);
  border-radius: 20px;
  border: 1px solid #c2c7d0;
  padding: 28px 50px;
  transform-style: preserve-3d;
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg);
  transition: all 0.5s;
}
.innerCard:hover {
  transform-style: preserve-3d;
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(2deg) skew(0deg)
}
.innerCard:hover a {
  color: rgb(255, 113, 29);
}
.innerCard:hover svg {
  color: rgb(255, 113, 29);
}

.sCardH {
  color: rgb(41, 41, 41);
  font-size: 32px;
  font-weight: 600;
  line-height: 38px;
}

.sCardImage {
  background-color: #ff711d;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  display: flex;
}

.serviceCard .innerOne {
  display: flex;
  align-items: center;
  gap: 24px;
}

.innerTwo {
  margin-top: 22px;
}


.sCardDescription {
  color: #606060;
  font-size: 18px;
  font-weight: 400;
  line-height: 32.4px;
}

.innerTwo svg {
  color: rgb(96, 96, 96);
  margin-top: 20px;
}



/* VERTICAL ACCORDION SECTION  */



.section {
    width: 100%;
    max-width: 1360px;
    margin-inline: auto;
    text-align: center;
    margin-block: 120px;
  }


  /* ── Accordion row ── */
  .accordionVertical {
    display: flex;
    gap: 26px;
    height: 430px;
    align-items: stretch;
    margin-top: 40px;
  }

  .card {
    background-color: #fff;
  box-shadow: 10px 10px 50px #e4d4ea80;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;

    /* default: collapsed */
    flex-basis: calc(15% - 26px);
    transition: all 0.55s cubic-bezier(0.65, 0, 0.35, 1);
    height: 430px;
  }

  /* card 2 expanded by default — using :has on accordion to not disturb hover */
  .accordionVertical:not(:hover) .card:nth-child(2) {
    flex-basis: calc(55% - 26px);
  }

  /* on hover: hovered card expands, siblings collapse */
  .accordionVertical:hover .card:hover {
    flex-basis: calc(55% - 26px);
  }

  .accordionVertical:hover .card:not(:hover) {
    flex-basis: calc(15% - 26px);
  }

  /* ── Number badge ── */
  .num {
    width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  color: rgb(9, 30, 66);
  flex-shrink: 0;
  line-height: 18px;
  }
  .card:nth-child(1) .num { background: #f9c49a; }
  .card:nth-child(2) .num { background: #a8d8bc; }
  .card:nth-child(3) .num { background: #e8d88a; }
  .card:nth-child(4) .num { background: #f9c49a; }

  /* ── Collapsed view ── */
  .card-collapsed {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 30px;
    gap: 20px;
    height: 100%;
    position: absolute;
    inset: 0;
    width: 100%;
    opacity: 1;
    transition: opacity 0.2s ease;
  }

  .title-vertical {
    writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: #292929;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  white-space: nowrap;
  }

  /* ── Expanded view ── */
  .card-expanded {
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    height: 100%;
    position: absolute;
    inset: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.2s ease 0s;
    pointer-events: none;
  }

  .card-expanded .header {
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .card-expanded .title {
    font-size: 24px;
  font-weight: 600;
  color: #292929;
  text-transform: uppercase;
  line-height: 31px;
  }

  .card-expanded .body {
    color: #606060;
  font-size: 18px;
  line-height: 32px;
  font-weight: 400;
  text-align: left;
  }

  /* Show expanded content on hover */
  .card:hover .card-expanded {
    opacity: 1;
    transition: opacity 0.25s ease 0.3s;
    pointer-events: all;
  }

  .card:hover .card-collapsed {
    opacity: 0;
  }

  /* Default card 2 expanded state (no hover on accordion) */
  .accordionVertical:not(:hover) .card:nth-child(2) .card-expanded {
    opacity: 1;
    pointer-events: all;
  }

  .accordionVertical:not(:hover) .card:nth-child(2) .card-collapsed {
    opacity: 0;
  }







/* SERVICE FAQ SECTION  */


.serviceFAQ {
  padding-block: 120px;
}

.innerFAQ {
  width: 100%;
  max-width: 1360px;
  margin-inline: auto;
  display: flex;
  gap: 87px;
}
.faqBox.faqImg img {
  border-radius: 20px;
}

.serviceText.faqText {
  text-align: left;
}
.faqBox.faqBlock {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.serviceHeading.faqHeading {
  max-width: 100%;
}




 .faq-container {
    width: 100%;
    max-width: 720px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 40px;
  }

  .faq-item {
    background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 10px 10px 50px #e4d4ea80;
  }


  .faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    cursor: pointer;
    user-select: none;
  }

  .faq-title {
  font-size: 19px;
  font-weight: 600;
  color: rgb(9, 30, 66);
  line-height: 36px;
  }

  .faq-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #1c1c1c;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 25px;
    font-weight: 500;
    line-height: 1;
    transition: transform 0.3s ease, background 0.2s ease;
  }

  .faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
  }

  .faq-body p {
    font-size: 18px;
  color: #606060;
  line-height: 32px;
  padding-bottom: 20px;
  }

  .faq-item.open .faq-body {
    max-height: 200px;
    padding: 0 24px;
  }

  .faq-item.open .faq-icon {
    transform: rotate(0deg);
  }

  .faq-item.open .faq-icon::after {
    content: '−';
  }

  .faq-item:not(.open) .faq-icon::after {
    content: '+';
  }



