/*** Auriic service detail page design css start */ 

/* =============================================
   GLOBAL RESET & BASE
============================================= */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;

}

a, a:hover, a:active, a:focus{
    color: #ffffff;
}

body {
  overflow-x: hidden;
  width: 100%;
  font-family: 'Poppins', sans-serif !important;
  background: #0f6b57 !important;
  color: #ffffff !important;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* hero contact form design  */


.form-row input {
  flex: 1;
  min-width: 0;          /* prevent overflow in flex */
}

/* ── All inputs + textarea shared style ── */
.contact-form input,
.contact-form textarea {
  width: 100%;
  height: 42px !important;
  background: rgba(0, 0, 0, 0.05) !important;
  border: 1px solid rgba(0, 0, 0, 0.2) !important;
  border-radius: 5px;
  padding: 12px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #1a1a1a !important;
  outline: none;
  transition: border-color 0.22s ease,
              background 0.22s ease,
              box-shadow 0.22s ease;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}

/* Textarea overrides */
.contact-form textarea {
  height: auto;          /* allow rows="4" to control height */
  min-height: 110px;
  resize: vertical;
  line-height: 1.6;
}

/* Placeholder style */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(0, 0, 0, 0.4) !important;
  font-size: 14px;
}

/* ── Focus state ── */
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(0, 0, 0, 0.45) !important;
  background: rgba(0, 0, 0, 0.03) !important;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06) !important;
}

/* ── Validation: invalid after interaction ── */
.contact-form input:not(:placeholder-shown):invalid,
.contact-form textarea:not(:placeholder-shown):invalid {
  border-color: rgba(200, 60, 60, 0.55) !important;
  background: rgba(200, 60, 60, 0.04) !important;
}

/* ── Mobile ── */
@media (max-width: 480px) {
  .form-row {
    flex-direction: column;
    gap: 10px;
  }

  .form-row input {
    width: 100%;
  }

}

/* hero contact design end */

/* =========================
   HERO SECTION
========================= */

.hero-section {
  position: relative;
  height: 100vh;
  background: url("https://auriic.co/wp-content/uploads/2026/02/young-couple-talking-their-insurance-agent-while-having-consultations-office-1.png") 
              no-repeat center center / cover;
  display: flex;
  align-items: center;
  padding: 80px;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.75);
  width: 100%;
}

.hero-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    /* margin: auto; */
    /* flex: 1 0 auto; */
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* =========================
   LEFT CONTENT
========================= */

.hero-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    /* flex: 1; */
    /* width: 80%; */
    margin: 0 auto;
    margin-top: 5%;
}

.heading-accent {
    width: 5px;
    /* background-color: #0f6c5c; */
    min-height: 120px;
    border: 3px solid rgba(201, 152, 44, 1);
}

.hero-text{
  width: 100%;
}
.hero-text h1 {
    font-size: 80px;
    color: #0f6c5c;
    font-weight: 700;
    margin-bottom: 20px;
    width: 70%;
    line-height: 90px;
    margin-top: 31px;
}

.hero-text p {
  font-size: 32px;
  max-width: 850px;
  color: #333;
}

/* =========================
   CONTACT CARD
========================= */

.hero-wrapper .contact-card {
    flex: 1 0 auto;
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    padding: 30px;
    flex-direction: column;
    gap: 20px;
    display: flex;
    border-top-left-radius: 12px;
    width: 500px;
    border-top-right-radius: 12px;
    right: 2%;
    background: rgba(0, 0, 0, 0.1);
    /* top: -27px; */
    bottom: 0px;
    /* padding-top: 3%; */
    padding-bottom: 5%;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25) inset;
}

.mobile-contact-card{
  width: 100%;
    /* display: flex; */
    justify-self: center;
    /* padding-top: 20px; */
}

.mobile-contact-card .contact-card {
    position: relative;
    background: rgba(255, 255, 255, 0.85);
    display: flex;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25) inset;
    border-top-right-radius: 12px;
    right: 0;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25) inset;
    background: rgba(0, 0, 0, 0.1);
    flex-direction: column;
    width: 100% !important;
    top: 0px;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25) inset;
}

.mobile-contact-card .contact-card h3{
  color: #ffffff;
  font-size: 32px;
}

.contact-card h3 {
  margin-bottom: 20px;
  font-weight: 600;
  color: #000000;
}

/* =========================
   FORM
========================= */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: flex;
  gap: 10px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.95rem;
  outline: none;
  transition: border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0f6c5c;
}

.primary-btn {
  background-color: #c7952d;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.primary-btn:hover {
  background-color: #b38426;
}

/* =========================
   RESPONSIVE DESIGN
========================= */

@media (max-width: 2560px){
  .service-mobile-accordion{
    display: none;
  }
  .mobile-contact-card .contact-card{
    display: none;
  }
  .accordion-wrap{
      display: none;
  }
}

@media (max-width: 1440px){

  .card-title{
    font-size: 24px !important;
    font-weight: 600;
  }
  .card-excerpt{
    font-size: 18px !important;
    font-weight: 400;
  }
  .cta-heading{
    font-size: 54px !important;;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
  }
  .cta-subtext{
    font-size: 36px !important;;
    line-height: 56px !important;;
    max-width: 70%;
    font-weight: 400;
  }
  .cta-btn{
    line-height: 36px !important;;
    font-size: 32px !important;;
    font-weight: 600;
  }

  .service-mobile-accordion{
    display: none;
  }
  .hero-wrapper .contact-card {
    /* width: 100%;
    max-width: 500px;
    top: -112px; */
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-self: self-end;
    position: relative;
    bottom: 16px;

  }  
  .mobile-contact-card .contact-card{
    display: none;
  }
  .card-title{
    font-size: 24px !important;
    font-weight: 600;
  }
  .card-excerpt{
    font-size: 18px !important;
    font-weight: 400;
  }
  .hero-wrapper {
    flex-direction: column;
    /* text-align: center; */
    gap: 40px;
  }
  .promo-text h2{
    font-size: 24px;
  }
  .promo-content{
    width: 60%;
  }
  .promo-button{
    width: 40%;
    font-size: 24px;
  }
  .promo-content{
    padding-right: unset;
  }
  .services-sidebar ul{
    padding-left: unset;
  }
  .services-sidebar ul li{
      font-size: 18px;
  }
  /* .hero-content {
    flex-direction: column;
    align-items: center;
  } */
  .service-card p{
    font-size: 18px;
  }
}

@media (max-width: 1024px){

  .card-title{
    font-size: 24px !important;
    font-weight: 600;
  }
  .card-excerpt{
    font-size: 18px !important;
    font-weight: 400;
  }
  .hero-text h1{
    font-size: 40px !important;
    line-height: 48px !important;
  }
  .hero-text p{
    font-size: 24px !important;
    max-width: 300px !important;
  }
  .hero-wrapper .contact-card{
    /* top: 48px !important;
    width: 100%;
    max-width: 40%; */
    display: flex;
    max-width: 500px;
    flex-direction: column;
    align-self: self-end;
    position: relative;
    bottom: -30px;
  }
  .heading-accent{
    min-height: 96px;
  }
  .promo-wrapper{
    width: 100% !important;
  }
  .promo-button{
    font-size: 16px !important;
  }
  .marquee-outer{
    width: 100% !important;
  }

  .service-mobile-accordion{
    display: none;
  }
  .hero-wrapper .contact-card {
    display: flex;
    max-width: 500px;
    flex-direction: column;
    align-self: self-end;
    position: relative;
    bottom: -10px;
  }  
  .mobile-contact-card .contact-card{
    display: none;
  }
  .hero-wrapper {
    flex-direction: column;
    /* text-align: center; */
    gap: 40px;
  }
  .promo-content{
    width: 60%;
  }
  .promo-button{
    width: 40%;
  }
  .promo-content{
    padding-right: unset;
  }
  .services-sidebar ul{
    padding-left: unset;
  }
  .services-sidebar ul li{
      font-size: 18px;
  }
  /* .hero-content {
    flex-direction: column;
    align-items: center;
  } */
  .service-card p{
    font-size: 18px;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .hero-wrapper {
    flex-direction: column;
    /* text-align: center; */
    gap: 40px;
  }
 
  .service-mobile-accordion{
    display: none;
  }
  .mobile-contact-card .contact-card{
    display: none;
  }
  .promo-content{
    width: 60%;
  }
  .promo-button{
    width: 40%;
  }
  .promo-content{
    padding-right: unset;
  }
  .services-sidebar ul{
    padding-left: unset;
  }
  .services-sidebar ul li{
      font-size: 18px;
  }
  .hero-content {
    flex-direction: column;
    align-items: center;
  }
  .service-card p{
    font-size: 18px;
  }

  .heading-accent {
    display: none;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text p {
    max-width: 100%;
  }

  
}

/* Mobile */
@media (max-width: 576px) {

  .card-label{
    font-size: 24px !important;
  }
  .acc-quote p{
    font-size: 28px !important;
    font-weight: 600 !important;
  }
  .acc-label{
    font-size: 24px !important;
    font-weight: 500 !important;
  }
  .blogs-heading h2{
    font-size: 32px;
  }
  .trust-subtext{
    font-size: 18px;
    max-width: 100%;
  }
  .section-heading h2{
    font-size: 32px;
  }
  .promo-button a{
    font-size: 20px;
    font-weight: 600;
  }
  .promo-button{
    width: 100%;
  }
  .promo-text{
    font-size: 32px;
  }
  .review-text{
    font-weight: 400;
    font-size: 16px;
  }
  .faq-question span{
    font-size: 20px;
  }
  .faq-answer span{
    font-size: 16px;
  }
  .cta-heading{
    font-size: 36px !important;;
  }
  .cta-subtext{
    font-size: 24px !important;
    line-height: 36px !important;
  }
  .cta-btn{
    line-height: 24px !important;;
    font-size: 22px !important;;
    font-weight: 600 !important;;
  }
  .cta-heading h2{
    font-size: 28px;
  }
  .cta-heading p{
    font-size: 16px;
    max-width: 100%;
  }
  .card-body h4{
    font-size: 16px;
  }
  .card-body p{
    font-size: 16px;
  }
  .trust-heading h2{
    font-size: 40px;
  }
  .cards-scroll-wrapper{
    position: relative;
    left: 18px;
  }
  .mobile-accordion span{
    font-size: 32px;
    font-weight: 700;
    line-height: 36px;
    position: relative;
  }
  .accordion-wrap{
    width: 100% !important;
    max-width: 100% !important;
    background: linear-gradient(212.89deg, #006C5B 45.29%, #009A82 126.4%);
    border: 1px solid rgba(255, 255, 255, 0.72);
  }
  .service-mobile-accordion {
      display: flex;
      width: 94%;
      flex-direction: column;
      gap: 30px 30px;
      justify-self: end;
      padding-top: 50px;
    }
  .hero-section {
    padding: 19px;
    padding-top: 72px;
    height: auto;
  }
  .services-section{
    display: none;
  }
  .mobile-contact-card .contact-card{
    display: none;
  }
  .hero-content{
    width: 100%;
    padding-bottom: 40px;
  }
  .hero-text{
    width: 100%;
  }
  .hero-text h1 {
    font-size: 36px;
    line-height: 44px;
  }
  
  .hero-text p{
    margin: 0px;
    font-size: 18px;
  }

  .hero-wrapper{
    margin: unset;
  }

  .form-row {
    flex-direction: column;
  }

  .hero-wrapper .contact-card {
    padding: 20px;
    display: none;
  }
  
}
/*** Auriic service detail page design css end */ 


/*** Auriic coaching page design css start */ 
/* =========================
   SECTION
========================= */
.services-section {
  padding: 80px;
  width: 100%;
  padding-bottom: 0px;
}

.services-wrapper {
  max-width: 100%;
  /* margin: 0 auto; */
}

/* Badge */
.section-badge {
  display: inline-block;
  background-color: #c49b3d;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 24px;
  margin-bottom: 40px;
}

/* =========================
   MAIN BOX
========================= */
.services-box {
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 20px;
  display: flex;
  overflow: hidden;
}

/* =========================
   SIDEBAR
========================= */
.services-sidebar {
    width: 30%;
    padding: 40px 25px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(212.89deg, #006C5B 45.29%, #009A82 126.4%);
    border: 1px solid rgba(255, 255, 255, 0.72);
    padding-right: 0px;
}

.services-sidebar ul {
  list-style: none;
}

.services-sidebar li {
  padding: 18px 15px;
  margin-bottom: 10px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 28px;
}

.services-sidebar li:hover,
.services-sidebar li.active {
  background-color: rgba(255,255,255,0.12);
  padding-left: 25px;
}

/* =========================
   CONTENT AREA
========================= */
.services-content {
    width: 70%;
    padding: 30px;
    background: linear-gradient(246.86deg, #007260 46%, #014338 117.06%);
    border: 1px solid rgba(255, 255, 255, 0.72);
}

.content-header {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    margin-bottom: 50px;
}

.content-line {
    width: 4px;
    height: 40px;
    background-color: #c49b3d;
    position: relative;
    top: -10px;
}

.services-content h2 {
  font-size: 40px;
  font-weight: 600;
}

/* =========================
   CARD GRID
========================= */
.cards-grid {
    display: flex;
    flex-wrap: wrap;
}

.service-card {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 30px;
  width: 47%;
  transition: 0.3s ease;
  font-weight: 500;
  font-size: 28px;
  line-height: 36px;
  letter-spacing: -0.1px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card .pbmit-main-logo{
  width: 54px;
  height: 54px;
}

.service-card p{
  font-size: 28px;
  font-weight: 500;
  margin: 0px;
}

.service-card:hover {
  background-color: rgba(255,255,255,0.08);
}

.service-card .icon {
  font-size: 24px;
  margin-bottom: 20px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  .services-box {
    flex-direction: column;
  }

  .services-sidebar,
  .services-content {
    width: 100%;
  }

  .services-sidebar {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
  }
}

@media (max-width: 600px) {
  .services-section {
    padding: 60px 20px;
  }

  .services-content {
    padding: 30px 20px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .services-content h2 {
    font-size: 20px;
  }

  .section-badge {
    font-size: 12px;
    padding: 8px 14px;
  }
}
/*** Auriic coaching page design css end */ 
/* ===== Section Wrapper ===== */
.promo-section {
  padding: 80px 80px 0;
  width: 100%;
}

/* ===== Banner Layout ===== */
.promo-wrapper {
  position: relative;
  /* overflow: hidden; */
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  background-color: #b88a2b;
  border-radius: 12px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  z-index: -1;
}

/* ===== Quote Icon — Top Right Corner ===== */
.quote-icon {
    position: absolute;
    top: -24px;
    left: -14px;
    border: 0.4px solid rgba(255, 255, 255, 1);
    z-index: 1;
    background: linear-gradient(269.74deg, #007260 32.25%, #014E42 105%);
    width: 52px;
    height: 52px;
    background-color: #0f6b57;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    line-height: 1;
    display: flex;
    pointer-events: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    flex-direction: row;
    align-items: flex-start;
}

/* ===== Left Content ===== */
.promo-content {
    display: flex;
    align-items: center;
    flex: 1;
    position: relative;
    /* min-width: 250px;
    padding-right: 48px; */
}

.promo-text {
  font-size: 44px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
  letter-spacing: 0.3px;
}

/* ===== Button ===== */
.promo-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #ffffff;
  color: #111;
  text-decoration: none;
  padding: 13px 22px;
  border-radius: 8px;
  font-size: 32px;
  /* width: 40%; */
  font-weight: 600;
  letter-spacing: 0.4px;
  transition: background-color 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
  flex-shrink: 0;
  z-index: 2;
}

.promo-button:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.arrow {
  font-size: 16px;
  transition: transform 0.25s ease;
}

.promo-button:hover .arrow {
  transform: translateX(3px);   /* arrow nudges right on hover */
}

/* ===== Tablet ===== */
@media (max-width: 992px) {
  .promo-wrapper {
    max-width: 95%;
    width: 95%;
    padding: 22px 24px;
  }

  .promo-text {
    font-size: 18px;
  }
}

/* ===== Mobile ===== */
@media (max-width: 600px) {
  .promo-section {
    padding: 40px 16px 0;
  }

  .promo-wrapper {
    max-width: 100%;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 20px 24px;
    gap: 16px;
  }

  .promo-content {
      padding-left: 24px;
      width: 100%;
  }

  .blogs-section{
      padding-bottom: 40px;
  }

  .promo-text {
    font-size: 18px;
    width: 100%;
  }

  .promo-button {
    width: 100%;
    justify-content: center;
  }

  .quote-icon {
    width: 44px;
    height: 44px;
    font-size: 75px;
    top: -5px;
    right: 10px;
  }
}

/* Tesimonial Section Start */
  /* ════════════════════════════════════════
     DESKTOP (≥ 900px)
     Two-column: fixed heading left + scroll right
  ════════════════════════════════════════ */
  .testimonial-section {
    flex-shrink: 0;
    width: clamp(200px, 22vw, 320px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100% !important;
    padding: 80px;
    padding-top: 0px;
    margin: 0 auto;
  }

  /* LEFT heading panel */
  .section-heading {
    flex-shrink: 0;
    width: 100%;
    padding: 60px 0 60px clamp(24px, 4vw, 60px);
    display: flex;
    padding-left: 0px;
    margin: 0 auto;
    width: 100%;
    flex-direction: column;
    justify-content: center;
  }

  .section-heading h2 {
    font-size: clamp(22px, 2.6vw, 44px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 14px;
  }

  .section-heading .underline {
    width: 52px;
    height: 4px;
    background: #c79a2b;
    border-radius: 2px;
  }

  /* RIGHT scrollable strip */
  .cards-scroll-wrapper {
    flex: 1;
    overflow-x: auto;
    padding-left: 0px !important;
    overflow-y: hidden;
    /* padding: 48px clamp(16px, 3vw, 40px) 48px clamp(12px, 2vw, 28px); */
    scrollbar-width: none;
    width: 100%;
    margin: 0 auto;
  }

  .cards-scroll-wrapper::-webkit-scrollbar { display: none; }
  .cards-scroll-wrapper:active { cursor: grabbing; }

  /* Right-edge fade */
  .cards-scroll-wrapper::after {
    content: '';
    position: fixed;
    top: 0; right: 0;
    width: 60px;
    height: 100vh;
    background: linear-gradient(to right, transparent, #0e5c3f 90%);
    pointer-events: none;
    z-index: 10;
  }

  .services-content .cards-grid{
    width: 100%;
  }
  /* Cards strip */
  .cards-grid {
    display: flex;
    gap: clamp(12px, 1.5vw, 20px);
    align-items: stretch;
    width: max-content;
  }

  /* Single card */
  .testimonial-card {
    background: #edecea;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: clamp(220px, 22vw, 270px);
    flex-shrink: 0;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .testimonial-card:hover {
    /* transform: translateY(-6px); */
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  }

  /* Card body */
  .card-body {
    padding: clamp(16px, 2vw, 24px) clamp(14px, 1.8vw, 22px);
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .stars { display: flex; gap: 3px; }
  .stars span { font-size: clamp(15px, 1.4vw, 20px); color: #c79a2b; }

  .review-text {
    font-size: clamp(12px, 0.95vw, 14px);
    line-height: 1.7;
    color: #3a3a3a;
    font-weight: 400;
    flex: 1;
  }

  /* Card footer */
  .card-footer {
    background: #c79a2b !important;
    padding: clamp(10px, 1.2vw, 16px) clamp(12px, 1.4vw, 18px);
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .avatar-fallback {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(0,0,0,0.22);
    border: 2px solid rgba(255,255,255,0.45);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
  }

  .author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
  }

  .author-name {
    font-size: clamp(12px, 0.95vw, 14px);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .author-role {
    font-size: clamp(10px, 0.75vw, 12px);
    color: rgba(255,255,255,0.78);
    font-weight: 400;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* ════════════════════════════════════════
     TABLET  600px – 899px
     Heading stacks on top, cards scroll below
  ════════════════════════════════════════ */
  @media (max-width: 899px) {
    html, body { overflow-x: hidden; }

    .testimonial-section {
      flex-direction: column;
      align-items: flex-start;
      min-height: auto;
      padding: 48px 0 56px;
      overflow: visible;
    }

    .section-heading {
      width: 100%;
      padding: 0 28px 32px 28px;
    }

    .section-heading h2 { font-size: clamp(24px, 4vw, 36px); }

    .cards-scroll-wrapper {
      width: 100%;
      padding: 8px 28px 12px 28px;
      overflow-x: auto;
      overflow-y: visible;
      cursor: default;
    }

    .cards-scroll-wrapper::after { display: none; }

    .testimonial-card { width: clamp(200px, 55vw, 260px); }
    .review-text { font-size: 13px; }
    .author-name { font-size: 13px; }
    .author-role { font-size: 11px; }
    .stars span  { font-size: 16px; }
  }

  /* ════════════════════════════════════════
     MOBILE  ≤ 599px
     Heading on top, snap-scroll cards
  ════════════════════════════════════════ */
  @media (max-width: 599px) {
    .testimonial-section { padding: 36px 0 48px; }

    .section-heading { padding: 0 20px 28px 20px; }
    .section-heading h2 { font-size: clamp(22px, 6vw, 30px); }

    .cards-scroll-wrapper {
      padding: 4px 20px 8px 20px;
      scroll-snap-type: x mandatory;
      -webkit-scroll-snap-type: x mandatory;
    }

    .cards-grid { gap: 14px; }

    .testimonial-card {
      width: calc(82vw);
      max-width: 300px;
      scroll-snap-align: start;
      border-radius: 14px;
    }

    .card-body { padding: 18px 16px 16px; }
    .review-text  { font-size: 13px; line-height: 1.65; }
    .stars span   { font-size: 17px; }
    .author-name  { font-size: 13px; }
    .author-role  { font-size: 11px; }
    .avatar-fallback { width: 36px; height: 36px; font-size: 12px; }
  }

  /* Small mobile — iPhone SE, Galaxy A series */
  @media (max-width: 374px) {
    .testimonial-card { width: 90vw; }
  }

  /* Large desktop ≥ 1400px */
  @media (min-width: 1400px) {
    .testimonial-card { width: 280px; }
  }

  /* Remove hover lift on actual touch devices */
  @media (hover: none) {
    .testimonial-card:hover { transform: none; box-shadow: none; }
  }
  /* Tesimonial Section End */


  /* Companies trust hiring */
  :root {
    --green:      #0d5c40;
    --gold:       #c89b2a;
    --white:      #ffffff;
    --card-bg:    #f4f2ee;
    --text:   #e8f0ec;
    --divider:    rgba(255,255,255,0.12);
  }


  /* ── Section wrapper ── */
  .trust-section {
    width: 100%;
    max-width: 100%;
    padding: 80px;
    background: rgba(0, 86, 72, 1);
  }

  /* ── Heading row ── */
  .trust-heading {
    display: flex;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    /* margin: 0 auto; */
    margin-bottom: 20px;
  }

  /* Gold left border bar */
  .trust-heading::before {
    content: '';
    display: block;
    width: 5px;
    min-height: 100%;
    background: var(--gold);
    border-radius: 3px;
    margin-right: 20px;
    flex-shrink: 0;
    align-self: stretch;
  }

  .trust-heading h2 {
    font-size: clamp(24px, 3.5vw, 48px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
  }

  .trust-heading h2 .highlight {
    color: var(--gold);
  }

  /* ── Sub text ── */
  .trust-subtext {
    font-size: 20px;
    line-height: 52px;
    color: rgba(232, 240, 236, 0.82);
    max-width: 1435px;
    /* margin: 0 auto; */
    font-weight: 400;
    padding-bottom: 32px;
  }

  /* ── Marquee container ── */
  .marquee-outer {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
  }

  .marquee-outer::before,
  .marquee-outer::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
  }

  .marquee-outer::before {
    left: 0;
    /* background: linear-gradient(to right, var(--green) 0%, transparent 100%); */
  }

  .marquee-outer::after {
    right: 0;
    background: linear-gradient(to left, var(--green) 0%, transparent 100%);
  }

  /* ── Marquee track ── */
  .marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    /* JS will animate translateX */
    will-change: transform;
  }

  /* ── Single logo card ── */
  .logo-card {
    background: var(--card-bg);
    border-radius: 18px;
    width: clamp(160px, 16vw, 210px);
    height: clamp(72px, 7vw, 92px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    gap: 10px;
    padding: 0 22px;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    cursor: default;
    user-select: none;
  }

  .logo-card:hover {
    /* transform: translateY(-4px) scale(1.03); */
    box-shadow: 0 16px 40px rgba(0,0,0,0.22);
  }

  /* ── Logo SVG icons (inline) ── */
  .logo-card svg { flex-shrink: 0; }

  .logo-card .logo-label {    
    font-weight: 700;
    font-size: clamp(14px, 1.3vw, 19px);
    color: #1a1a1a;
    white-space: nowrap;
  }

  /* ── Responsive ── */
  @media (max-width: 768px) {
    .trust-subtext { margin-left: 0; }
    .logo-card { width: 150px; height: 68px; padding: 0 16px; }
    .marquee-outer::before,
    .marquee-outer::after { width: 50px; }
  }

  @media (max-width: 480px) {
    .logo-card { width: 130px; height: 62px; padding: 0 12px; gap: 7px; }
    .logo-card .logo-label { font-size: 13px; }
  }

  
/* Blog list section Start */
  /* ════════════════════════════
     SECTION
  ════════════════════════════ */
  .blogs-section {
    width: 100%;
    padding-top: 3%;
    display: flex;
    max-width: 100%;
    flex-direction: column;
    gap: 30px;
    padding-top: 40px;
  }

  /* ── Heading row — title left, arrows right ── */
  .blogs-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    gap: 16px;
    width: 90%;
    margin: 0 auto;
  }

  .blogs-heading h2 {    
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
  }

  .blogs-heading .underline {
    width: 48px;
    height: 4px;
    background: #c79a2b;
    border-radius: 2px;
  }

  /* ── Prev / Next buttons ── */
  .slider-controls {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    padding-bottom: 4px;
  }

  .slider-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.35);
    background: transparent;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
    user-select: none;
    outline: none;
  }

  .slider-btn:hover {
    background: #c79a2b;
    border-color: #c79a2b;
    transform: scale(1.08);
  }

  .slider-btn:disabled {
    opacity: 0.35;
    cursor: default;
    transform: none;
  }

  /* ════════════════════════════
     SLIDER VIEWPORT
  ════════════════════════════ */
  .blogs-slider-outer {
    overflow: hidden;
    width: 90%;
    padding-top: 2%;
    margin: 0 auto;
  }

  /* The moving track — width set by JS */
  .blogs-track {
    display: flex;
    gap: 22px;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
  }

  /* ════════════════════════════
     CARD
  ════════════════════════════ */
  .blog-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    width: 350px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    /* width calculated by JS based on visible count */
  }

  .blog-card:hover {
    /* transform: translateY(-5px); */
    box-shadow: 0 20px 48px rgba(0,0,0,0.28);
  }

  /* ── Thumbnail image ── */
  .card-thumb {
    width: 100%;
    height: 185px;
    overflow: hidden;
    flex-shrink: 0;
  }

  .card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
  }

  .blog-card:hover .card-thumb img {
    transform: scale(1.05);
  }

  /* ── Card body ── */
  .card-body {
    padding: 18px 18px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .card-title {    
    font-size: clamp(13px, 1.2vw, 15px);
    font-weight: 700;
    color: #111111;
    line-height: 1.45;
  }

  .card-excerpt {
    font-size: clamp(11px, 0.9vw, 13px);
    color: #555555;
    line-height: 1.65;
    flex: 1;
  }

  /* Read more arrow button */
  .card-arrow {
    align-self: flex-end;
    width: 34px;
    height: 34px;
    background: #c79a2b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
    margin-top: 4px;
  }

  .card-arrow:hover {
    background: #a07820;
    transform: scale(1.12);
  }

  /* ── Dot indicators ── */
  .slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
  }

  .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
    border: none;
    outline: none;
    padding: 0;
  }

  .dot.active {
    background: #c79a2b;
    transform: scale(1.35);
  }

  /* ════════════════════════════
     RESPONSIVE
  ════════════════════════════ */

  @media (max-width: 560px) {
    .slider-btn { width: 36px; height: 36px; font-size: 15px; }
    .card-thumb { height: 160px; }
  }

  /* Blog list section End */


  /* build carrer section css start*/
  
  /* ── CTA Banner ── */
  .cta-banner {
    width: 100%;
    max-width: 100%;
    background: #efefef !important;
    border-radius: 10px;
    padding: 80px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2%;
    gap: 14px;
  }

  /* ── Heading ── */
  .cta-heading {
    font-size: 54px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 64px;
  }

  .cta-heading .highlight {
    color: #c79a2b;          /* gold accent */
  }

  /* ── Sub text ── */
  .cta-subtext {
    font-size: 36px;
    color: #555555;
    line-height: 56px;
    max-width: 50%;
    font-weight: 400;
  }

  /* ── Button ── */
  .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #0e5c3f;
    color: #ffffff;
    text-decoration: none;    
    font-size: clamp(12px, 1vw, 13px);
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 15px 28px;
    border-radius: 6px;
    margin-top: 8px;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    border: 2px solid #0e5c3f;
  }

  .cta span{
    font-size: 32px;
    font-weight: 600;
  }
  
  .cta-btn .arrow {
    font-size: 16px;
    transition: transform 0.25s ease;
  }

  /* ── Responsive ── */
  @media (max-width: 480px) {

  .card-label{
    font-size: 24px !important;
  }
  .acc-quote p{
    font-size: 28px !important;
    font-weight: 600 !important;
  }
  .acc-label{
    font-size: 24px !important;
    font-weight: 500 !important;
  }
  .blogs-heading h2{
    font-size: 32px;
  }
  .trust-subtext{
    font-size: 18px;
    max-width: 100% !important;
  }
  .section-heading h2{
    font-size: 32px;
  }
  .promo-text{
    font-size: 32px;
  }
  .promo-button{
    width: 100% !important;
  }
  .review-text{
    font-weight: 400;
    font-size: 16px;
  }
  .faq-question span{
    font-size: 20px;
  }
  .faq-answer span{
    font-size: 16px;
  }
  .cta-btn{
    font-size: 16px;
  }
  .cta-heading{
    font-size: 36px !important;;
  }
  .cta-subtext{
    font-size: 24px !important;
    line-height: 36px !important;
  }
  .cta-btn{
    line-height: 24px !important;;
    font-size: 22px !important;;
    font-weight: 600 !important;;
  }
  .cta-heading h2{
    font-size: 28px;
  }
  .cta-heading p{
    font-size: 16px;
    max-width: 100%;
  }
    .card-body h4{
      font-size: 16px;
    }
    .card-body p{
      font-size: 16px;
    }
    .cards-scroll-wrapper{
      position: relative;
      left: 18px;
    }
    .hero-text h1{
      font-size: 36px !important;
      line-height: 44px !important;
    }
    .hero-text p{
      font-size: 18px;
      font-size: 20px !important;
      max-width: 500px !important;
    }
    .hero-content{
      padding-bottom: 40px;
      width: 100% ;
    }
    .accordion-wrap{
      width: 100% !important;
      max-width: 100% !important;
      background: linear-gradient(212.89deg, #006C5B 45.29%, #009A82 126.4%);
      border: 1px solid rgba(255, 255, 255, 0.72);
    }
    .services-section{
      display: none;
    }
    .service-mobile-accordion {
        width: 94%;
        display: flex;
        flex-direction: column;
        gap: 30px 30px;
        justify-self: end;
        padding-top: 50px;
    }
    .mobile-accordion span{
      font-size: 32px;
      font-weight: 700;
      line-height: 36px;
      position: relative;
    }
    .cta-banner {
      padding: 36px 20px;
      border-radius: unset;
    }
    .mobile-contact-card .contact-card{
      display: none;
    }
    .mobile-contact-card{ 
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(153, 153, 153, 0.1) 100%);
        box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25) inset;
        width: 80%;
    }
    .services-wrapper{
      max-width: 100%;
      margin: unset;
    }
    .services-sidebar ul{
      padding-left: 0px;
    }
    .cta-btn {
      width: 100%;
      justify-content: center;
    }
    .trust-heading{
      width: 100%;
      margin: unset;
    }
    .trust-heading h2{
      font-size: 40px;
    }
    .promo-button{
      font-size: 18px;
    }
    .promo-button a{
      font-size: 20px;
      font-weight: 600;
    }
    .hero-section::before {
      width: 100%;
    }
    .hero-section{
      height: auto;
    }
    .service-container{
      flex-direction: column;
      max-width: 100%;
    }
    .faq-card{
      width: 100%;
    }
    .trust-section{
      width: 100%;
      max-width: 100%;
      padding: 40px;
      display: flex;
      background: rgba(0, 86, 72, 1);
      flex-direction: column;
      gap: 22px;
    }
    .marquee-outer::after{
      background: unset;
    }
    .marquee-outer{
      overflow: unset;
    }
    .hero-wrapper{
        text-align: left;
    }
    .hero-wrapper{
      text-align: left;
    }
    .slider-dots{
      display: none;
    }
  }

  /* build carrer section css end*/

  /* serrvice faq start */

  
.service-faq-section {
    padding: 80px 20px;
}

.service-container {
    max-width: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* Left Lottie */
.lottie-box {
    flex: 1;
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Right FAQ Card */
.faq-card {
    flex: 1;
    background: #f4f4f4;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    overflow: hidden;
    width: 100%;
}

/* FAQ Items */
.service-faq-section {
    padding: 80px 20px;
}

.service-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* Left Lottie */
.lottie-box {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* Right FAQ Card */
.faq-card {
    flex: 1;
    background: #f4f4f4 !important;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    overflow: hidden;
}

/* FAQ Items */
.faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    position: relative;
    background: #f4f4f4 !important;
    transition: 0.3s;
}

.faq-question span{
  font-weight: 600;
  font-size: 21px;
  line-height: 32px;
  letter-spacing: -0.5px;
  color: rgba(22, 28, 45, 1);
}


.faq-question:hover {
    background: #ececec !important;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 20px;
    font-size: 18px;
    transition: 0.3s;
    color: rgba(22, 28, 45, 1);
}

.faq-item.active .faq-question::after {
    content: "−";
}

.faq-answer {
    display: none;
    padding: 0 20px 20px 20px;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

.faq-answer span{
  font-weight: 400;
  font-size: 17px;
  line-height: 29px;
  letter-spacing: -0.2px;
}

/* First item highlighted top border */
.faq-item:first-child .faq-question {
    border-top: 4px solid #f4b400;
}

.faq-card span{
    color: rgba(22, 28, 45, 1) !important;

}

/* Responsive */
@media(max-width: 992px){
    .container {
        flex-direction: column;
        text-align: center;
    }
    
}

@media(max-width:425px){
  
  
  .card-label{
    font-size: 24px !important;
  }
  .acc-quote p{
    font-size: 28px !important;
    font-weight: 600 !important;
  }
  .acc-label{
    font-size: 24px !important;
    font-weight: 500 !important;
  }
  .blogs-heading h2{
    font-size: 32px;
  }
  .trust-subtext{
    font-size: 18px;
    max-width: 100% !important;
  }
  .section-heading h2{
    font-size: 32px;
  }
  .promo-button a{
    font-size: 20px;
    font-weight: 600;
  }
  .promo-text{
    font-size: 32px;
  }
  .review-text{
    font-weight: 400;
    font-size: 16px;
  }
  .faq-question span{
    font-size: 20px;
  }
  .faq-answer span{
    font-size: 16px;
  }
  .cta-heading h2{
    font-size: 28px;
  }
  .cta-heading p{
    font-size: 16px;
    max-width: 100%;
  }
  .cta-heading{
    font-size: 36px !important;;
  }
  .cta-subtext{
    font-size: 24px !important;
    line-height: 36px !important;
  }
  .cta-btn{
    line-height: 24px !important;;
    font-size: 22px !important;;
    font-weight: 600 !important;;
  }
  .card-body h4{
    font-size: 16px;
  }
  .card-body p{
    font-size: 16px;
  }
  .cards-scroll-wrapper{
    position: relative;
    left: 18px;
  }
  .hero-section{
    padding: 19px;
    padding-top: 72px;
    height: auto;
  }
  .hero-text p{
    font-size: 20px !important;
    max-width: 500px !important;
  }
  .hero-content{
    padding-bottom: 40px;
    width: 100%;
  }
  .accordion-wrap{
    width: 100% !important;
    max-width: 100% !important;
    background: linear-gradient(212.89deg, #006C5B 45.29%, #009A82 126.4%);
    border: 1px solid rgba(255, 255, 255, 0.72);
  }
  .mobile-accordion span{
    font-size: 32px;
    font-weight: 700;
    line-height: 36px;
    position: relative;
  }

  .service-mobile-accordion {
      display: flex;
      width: 94%;
      flex-direction: column;
      gap: 30px 30px;
      justify-self: end;
      padding-top: 50px;
    }
  .services-section{
    display: none;
  }
  .trust-heading{
    width: 100%;
    margin: unset;
  }
  .trust-heading h2{
    font-size: 40px;
  }
  .promo-button{
    font-size: 18px;
    width: 100%;
  }
  .hero-section::before {
    width: 100%;
  }
  .hero-section{
    height: auto;
  }
  .service-container{
    flex-direction: column;
    max-width: 100%;
  }
  .faq-card{
    width: 100%; 
  }
  .hero-wrapper .contact-card{
      display: none; 
  }
  .mobile-contact-card .contact-card{
    display: none;
  }
  .mobile-contact-card{ 
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(153, 153, 153, 0.1) 100%);
      box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25) inset;
      width: 80%;
  }
  .services-wrapper{
    max-width: 100%;
    margin: unset;
  }
  .services-sidebar ul{
    padding-left: 0px;
  }
  .slider-dots{
    display: none;
  }
  .service-faq-section{
      padding: 20px 20px;
  }
  .slider-dots{
    display: none;
  }
}

  /* service faq end  */

  /* accordian section for mobile design  */
  /* ════════════════════════════════════
     MAIN WRAPPER
  ════════════════════════════════════ */
  .accordion-wrap {
    width: 100%;
    max-width: 300px;
    display: flex;
    background: var(--green);
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    overflow: hidden;
    box-shadow: 0 14px 50px rgba(0,0,0,0.28);
    background: linear-gradient(212.89deg, #006C5B 45.29%, #009A82 126.4%);
    /* border: 1px solid rgba(255, 255, 255, 0.72); */
    flex-direction: column;
    justify-self: flex-end;
  }

  /* ════════════════════════════════════
     EACH ACCORDION ITEM
  ════════════════════════════════════ */
  .acc-item {
    border-bottom: 1px solid var(--divider);
    background: rgba(0, 114, 96, 1);
  }

  .acc-item:last-child { border-bottom: none; }

  /* ── Trigger row ── */
  .acc-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    cursor: pointer;
    gap: 12px;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.2s ease;
    outline: none;
  }

  .acc-trigger:hover  { background: rgba(255,255,255,0.06); }
  .acc-trigger:active { background: rgba(255,255,255,0.10); }
  .acc-trigger:focus-visible {
    background: rgba(255,255,255,0.08);
    outline: 2px solid var(--gold);
    outline-offset: -2px;
  }

  .acc-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.45;
    flex: 1;
  }

  /* Circular arrow */
  .acc-arrow {
    width: 30px;
    height: 30px;
    border: 1.5px solid rgba(255,255,255,0.38);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.22s, background 0.22s, transform 0.35s ease;
  }

  .acc-trigger:hover .acc-arrow {
    border-color: var(--gold);
    background: rgba(200,155,42,0.15);
  }

  /* Rotate when open */
  .acc-item.open .acc-arrow {
    transform: rotate(180deg);
    border-color: var(--gold);
    background: rgba(200,155,42,0.2);
  }

  /* ── Body — collapsed by default ── */
  .acc-body {
    display: none;
    overflow: hidden;
  }

  /* ── Quote block ── */
  .acc-quote {
    padding: 16px 20px 16px 20px;
    border-left: 4px solid var(--gold);
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .acc-quote.visible {
    opacity: 1;
    transform: translateX(0);
  }

  .acc-quote p {
    
    font-size: 16px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.4;
  }

  /* ── Icon cards ── */
  .acc-cards {
    padding: 4px 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .acc-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 14px 14px 12px;
    display: flex;
    flex-direction: column;
    border: 0.4px solid rgba(255, 255, 255, 1);
    background: rgba(0, 114, 96, 1);
    gap: 10px;
    cursor: pointer;
    /* stagger start state */
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.28s ease, transform 0.28s ease,
                background 0.2s ease, box-shadow 0.2s ease;
    -webkit-tap-highlight-color: transparent;
  }

  .acc-card.visible {
    opacity: 1;
  }

  /* Icon box */
  .card-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: border-color 0.2s, background 0.2s;
    flex-shrink: 0;
  }

  /* .acc-card:hover .card-icon {
    border-color: var(--green);
    background: #e8f4ef;
  } */

  .card-label {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    color: rgba(255, 255, 255, 1);
    width:100%;
  }

  /* ── Footer row ── */
  .acc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-top: 1px solid var(--divider);
    gap: 12px;
    text-decoration: none;
    transition: background 0.2s ease;
    -webkit-tap-highlight-color: transparent;
    /* stagger */
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
  }

  .acc-footer.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .acc-footer:hover  { background: rgba(255,255,255,0.06); }
  .acc-footer:active { background: rgba(255,255,255,0.10); }

  .footer-label {
    
    font-size: 12.5px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.4;
    flex: 1;
  }

  .footer-arrow {
    width: 28px;
    height: 28px;
    border: 1.5px solid rgba(255,255,255,0.38);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.2s, background 0.2s, transform 0.22s ease;
  }

  .acc-footer:hover .footer-arrow {
    border-color: var(--gold);
    background: rgba(200,155,42,0.15);
    transform: translateX(3px);
  }

  /* ════════════════════════════════════
     MOBILE
  ════════════════════════════════════ */
  @media (max-width: 360px) {
    .accordion-wrap { max-width: 100%; border-radius: 14px; }
    .acc-quote p    { font-size: 14px; }
    .acc-label      { font-size: 12px; }
  }

  /* accorian design for mobile end  */ 



@media (max-width: 1280px) {

  .card-title{
    font-size: 24px !important;
    font-weight: 600;
  }
  .card-excerpt{
    font-size: 18px !important;
    font-weight: 400;
  }
  .hero-text h1{
    font-size: 52px;
  }
  .hero-text p{
    font-size: 28px;
    max-width: 500px;
  }
  .hero-wrapper .contact-card{
    /* width: 100%; */
    max-width: 500px;
    top: 60px;
  }
  .services-wrapper{
    max-width: 100%;
  }
  .promo-wrapper{
    max-width: 100%;
  }
  .promo-button{
    width: 34%;
  }
  .section-heading{
    width: 100% !important;
  }
  .cards-scroll-wrapper{
    width: 100%;
  }
  .trust-heading{
    width: 100%;
  }
  .trust-subtext{
    max-width: 50%;
    margin: unset;
  }
  .marquee-outer{
    max-width: 100%;
  }
  .cta-heading{
    font-size: 54px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
  }
  .cta-subtext{
    font-size: 36px;
    line-height: 56px;
    max-width: 80%;
    font-weight: 400;
  }
  .cta-btn{
    line-height: 36px;
    font-size: 32px;
    font-weight: 600;
  }
  .faq-question span{
    font-size: 21px;
    font-weight: 600;
  }
  .faq-answer span{
    font-weight: 400;
    font-size: 17px;
  }
  .card-title{
    font-weight: 600;
    font-size: 24px;
  }
  .card-excerpt{
    font-size: 18px;
    font-weight: 400;
  }
}

@media (max-width: 1200px) {

  .card-title{
    font-size: 24px !important;
    font-weight: 600;
  }
  .card-excerpt{
    font-size: 18px !important;
    font-weight: 400;
  }
  .hero-text h1{
    font-size: 52px;
  }
  .hero-text p{
    font-size: 28px;
    max-width: 500px;
  }
  .hero-wrapper .contact-card{
    /* top: 60px; */
     max-width: 500px;
    display: flex;
    flex-direction: column;
    align-self: self-end;
    position: relative;
    bottom: -14px;
  }
  .services-wrapper{
    max-width: 100%;
  }
  .promo-wrapper{
    max-width: 100%;
  }
  .promo-button{
    width: 34%;
  }
  .section-heading{
    width: 100% !important;
  }
  .cards-scroll-wrapper{
    width: 100%;
  }
  .trust-heading{
    width: 100%;
  }
  .trust-subtext{
    max-width: 50%;
    margin: unset;
  }
  .marquee-outer{
    max-width: 100%;
  }
  .cta-heading{
    font-size: 54px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
  }
  .cta-subtext{
    font-size: 36px;
    line-height: 56px;
    max-width: 80%;
    font-weight: 400;
  }
  .cta-btn{
    line-height: 36px;
    font-size: 32px;
    font-weight: 600;
  }
  .faq-question span{
    font-size: 21px;
    font-weight: 600;
  }
  .faq-answer span{
    font-weight: 400;
    font-size: 17px;
  }
  .card-title{
    font-weight: 600;
    font-size: 24px;
  }
  .card-excerpt{
    font-size: 18px;
    font-weight: 400;
  }
}