

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff8837;
    --primary-hover: #e67527;
    --secondary-color: #9b0d83;
    --secondary-hover: #7a0966;
    --text-dark: #222;
    --text-gray: #666;
    --bg-light: #fffaf7;
    --navbar-height: 90px;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
    width: 100%;
    font-family: 'Poppins', sans-serif;
}

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

a {
    text-decoration: none;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1 {
    font-size: clamp(1.6rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 15px;
}

.brand-highlight {
    color: var(--secondary-color);
}

.subtitle {
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.description {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 100%;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 136, 55, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

.btn-large {
    width: 100%;
    max-width: 340px;
    padding: 15px 20px;
    font-size: 1.05rem;
    border-radius: 8px;
}

/* Hide book buttons everywhere */
#mainBookBtn,
#headerBookBtn,
#mobileBookBtn {
    display: none !important;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    height: var(--navbar-height);
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
    z-index: 1000;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header-logo {
    max-height: 165px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-links > a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-links > a:hover {
    color: var(--primary-color);
}

.nav-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--secondary-color);
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 1001;
    padding: 5px;
    flex-shrink: 0;
}

.mobile-menu-btn:active {
    transform: scale(0.95);
}

.mobile-header-call-btn {
    display: none;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff9f52 100%);
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 8px 14px;
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 136, 55, 0.3);
    animation: premiumPulse 3s infinite;
    border: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.mobile-header-call-btn:hover {
    background: linear-gradient(135deg, var(--primary-hover) 0%, #ff7d1a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 136, 55, 0.5);
    color: #fff;
}

.mobile-nav-buttons {
    display: none;
}

/* ============================================================
   MEGA MENU
   ============================================================ */
.mega-wrapper {
    position: static;
}

.mega-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: color 0.3s;
    white-space: nowrap;
}

.mega-link:hover {
    color: var(--primary-color);
}

.dropdown-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
}



.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 40px 5%;
    border-top: 1px solid rgba(0,0,0,0.06);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.35s ease;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    z-index: 999;
}

.mega-wrapper.open .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-wrapper.open .dropdown-icon {
    transform: rotate(180deg);
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}
@media (max-width: 768px) {
  .mega-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
}
}

.mega-card {
    transition: transform 0.3s ease;
}

.mega-card:hover {
    transform: translateY(-6px);
}

.mega-card a {
    color: #505050;
    font-size: 13px;
    line-height: 1.7;
    text-decoration: none;
}

.mega-card h2 {
    color: #222;
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 700;
}

.mega-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 12px;
}
@media (max-width: 768) {
    .mega-card img {
        height: 220px;
    }
}

/* ------------------------header & body code end-------------------- */

/* ==========================================================================
   STICKY CALL BUTTON
   ========================================================================== */
.sticky-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff9f52 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(255, 136, 55, 0.4), inset 0 -2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 999;
    animation: premiumPulse 3s infinite;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.sticky-call-btn:hover {
    background: linear-gradient(135deg, var(--primary-hover) 0%, #ff7d1a 100%);
    transform: scale(1.15);
    box-shadow: 0 12px 40px rgba(255, 136, 55, 0.6), inset 0 -2px 8px rgba(0, 0, 0, 0.2);
}

.sticky-call-btn .call-text {
    display: none;
}

@media (max-width: 768px) {
    .sticky-call-btn {
        width: 70px;
        height: 70px;
        bottom: 20px;
        right: 20px;
        font-size: 1.8rem;
    }
}


@media (max-width: 768px) {
    body {
        overflow-x: clip;
        width: 100%;
    }
    .desktop-only {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .mobile-header-call-btn {
        display: flex !important;
    }
    .header-logo {
      width: 112px;
        max-height: 90px;
    }
    .nav-links {
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 30px 0;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
        transition: left 0.4s ease;
        gap: 25px;
        z-index: 98;
    }
    .nav-links.active {
        left: 0;
    }
    .mobile-nav-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 80%;
        margin-top: 10px;
    }
    .mobile-nav-buttons .btn {
        width: 100%;
    }
  }
/* ==========================================================================
   COPYRIGHT FOOTER STYLES
   ========================================================================== */
.site-footer {
    background-color: #111111; /* Sleek dark background */
    border-top: 4px solid #9b0d83; /* Purple brand accent line */
}

.footer-bottom {
    padding: 25px 5%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright-text {
    color: #999999;
    font-size: 0.95rem;
    margin: 0;
}

.brand-text {
    color: #ff8837; /* Orange highlight for brand name */
    font-weight: 600;
}

/* --- Legal Links --- */
.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: #999999;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff8837; /* Orange on hover */
}

/* --- Social Icons --- */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background-color: #222222; /* Slightly lighter dark gray for contrast */
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #9b0d83; /* Purple on hover */
    transform: translateY(-3px); /* Subtle lift effect */
}

/* --- Responsive Rules --- */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        gap: 25px;
    }

    .footer-links {
        justify-content: center;
    }
}



/* ==========================================================================
   BOTTOM CTA SECTION STYLES
   ========================================================================== */
.bottom-cta-section {
    position: relative;
    padding: 80px 5% 40px;
    background-color: #ffffff;
    text-align: center;
    overflow: hidden; /* Keeps background icons from causing scrollbars */
}

.cta-wrapper {
    position: relative;
    z-index: 2; /* Keeps buttons above background icons */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    max-width: 1000px;
    margin: 0 auto 70px auto;
    flex-wrap: wrap;
}

.cta-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cta-heading {
    font-size: 1.25rem;
    font-weight: 600;
    color: #222222;
}

.cta-action-btn {
    width: 300px; /* Fixed width to match the image perfectly */
    padding: 16px;
    font-size: 1.1rem;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    gap: 8px;
}

/* Premium styling for call buttons (with phone icon) */
.cta-block:last-child .cta-action-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff9f52 100%);
    color: white !important;
    border: 2px solid transparent;
    box-shadow: 0 8px 25px rgba(255, 136, 55, 0.35), inset 0 -2px 6px rgba(0, 0, 0, 0.1);
    animation: premiumPulse 3s infinite;
}

.cta-block:last-child .cta-action-btn:hover {
    background: linear-gradient(135deg, var(--primary-hover) 0%, #ff7d1a 100%);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 136, 55, 0.5), inset 0 -2px 6px rgba(0, 0, 0, 0.15);
}

/* Premium styling for book button */
.btm-cta-block .cta-action-btn {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #c4178f 100%);
    color: white !important;
    border: 2px solid transparent;
    box-shadow: 0 8px 25px rgba(155, 13, 131, 0.35), inset 0 -2px 6px rgba(0, 0, 0, 0.1);
}

.btm-cta-block .cta-action-btn:hover {
    background: linear-gradient(135deg, var(--secondary-hover) 0%, #a01575 100%);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(155, 13, 131, 0.5), inset 0 -2px 6px rgba(0, 0, 0, 0.15);
}


.oha-footer{
  background:
    radial-gradient(circle at top left, rgba(223, 125, 13, 0.753), transparent 35%),
    linear-gradient(135deg,#090d14a1,#111827fb 55%,#06080d7c);
  color:#fff;
  padding:80px 6% 60px;
  font-family:'Outfit',sans-serif;
}

.oha-footer-container{
  display:grid;
  grid-template-columns:1.15fr 1.2fr 1fr 1fr;
  gap:28px;
  align-items:stretch;
}

.oha-logo{
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:28px;
}

.oha-logo img{
    margin-left:-20px;
    height:143px;
    width:300px;
}

.oha-logo i{
    margin-top:10px;
  font-size:71px;
  color:#fff;
}

.oha-logo h2{
  color:#fff;
  font-size:45px;
  margin:0;
  text-transform:uppercase;
}

.oha-logo h2::first-letter{
  color:#ffb937;
}

.oha-logo span{
  letter-spacing:0px;
  text-transform:uppercase;
  font-size:25px;
}

.oha-brand p{
  color:#e5e7eb;
  line-height:1.8;
  font-size:16px;
  margin-bottom:28px;
}


.oha-contact{
  display:grid;
  gap:18px;
}

.oha-contact div{
  display:flex;
  align-items:center;
  gap:14px;
  font-weight:600;
}

.oha-contact i{
  width:45px;
  height:45px;
  background:#ff8837;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
}

.oha-glass-card{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(16px);
  border-radius:22px;
  padding:28px;
  box-shadow:0 20px 50px rgba(0,0,0,.25);
}

.oha-glass-card h3{
  font-size:23px;
  margin-bottom:28px;
  padding-bottom:20px;
  border-bottom:1px solid rgba(255,255,255,.25);
}

.oha-glass-card h3 i{
  background:#ff8837;
  width:44px;
  height:44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  margin-right:12px;
}

.oha-glass-card ul{
  list-style:none;
  padding:0;
  margin:0;
}

.oha-glass-card li{
  position:relative;
  padding-left:24px;
  margin-bottom:18px;
  color:#f3f4f6;
  font-size:16px;
}

.oha-glass-card li::before{
  content:"›";
  position:absolute;
  left:0;
  color:#ff8837;
  font-size:26px;
  line-height:18px;
  font-weight:900;
}

.oha-social-box{
  padding:32px 10px;
}

.oha-social-box h3{
  font-size:28px;
  line-height:1.3;
  margin-bottom:18px;
}

.oha-social-box h3 span{
  color:#ff8837;
}

.oha-social-box p{
  color:#d1d5db;
  line-height:1.7;
  margin-bottom:35px;
}

.oha-social-icons{
    padding-top: 35px;
  display:flex;
  gap:14px;
  margin-bottom:45px;
}

.oha-social-icons a{
  width:46px;
  height:46px;
  background:rgba(255,255,255,.08);
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  border:1px solid rgba(255,255,255,.18);
  transition:.3s ease;
}

.oha-social-icons a:hover{
  background:#ff8837;
  transform:translateY(-5px);
  color:#fff;
}

.oha-helpline{
  border:1px solid rgba(245, 153, 14, 0.699);
  background:rgba(223, 114, 12, 0.144);
  border-radius:18px;
  padding:20px;
  display:flex;
  gap:16px;
  align-items:center;
}

.oha-helpline i{
  width:58px;
  height:58px;
  background:#ff8837;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
}

.oha-helpline span{
  text-transform:uppercase;
  font-size:13px;
  color:#e5e7eb;
}

.oha-helpline strong{
  display:block;
  font-size:26px;
  margin-top:4px;
}

.oha-footer-bottom{
  margin-top:55px;
  padding-top:28px;
  border-top:1px solid rgba(255,255,255,.18);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:25px;
  flex-wrap:wrap;
}

.bottom-logo{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:800;
  color:#fff;
}

.bottom-logo i{
  color:#ff8837;
  font-size:28px;
}

.oha-footer-bottom p{
  color:#d1d5db;
}

.oha-footer-bottom strong{
  color:#ff8837;
}

.bottom-links{
  display:flex;
  gap:28px;
}

.bottom-links a{
  color:#d1d5db;
  text-decoration:none;
  transition:.3s ease;
}

.bottom-links a:hover{
  color:#ff8837;
}

@media(max-width:1200px){
  .oha-footer-container{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:768px){
  .oha-footer-container{
    grid-template-columns:1fr;
  }

  .oha-footer{
    padding:60px 5% 25px;
  }

  .oha-logo h2{
    font-size:26px;
  }

  .oha-footer-bottom{
    flex-direction:column;
    text-align:center;
  }

  .bottom-links{
    flex-direction:column;
    gap:14px;
  }

  .oha-helpline strong{
  display:block;
  font-size:23px;
  margin-top:4px;
}

.oha-social-box h3{
  font-size:22px;
  line-height:1.3;
  margin-bottom:18px;
}

.oha-glass-card h3{
    font-size:18px;
}

.oha-glass-card h3 i{
    width: 36px;
    height:36px;
}

}


/* APPLY SCROLL INSIDE BOTH LIST BOXES */

.oha-glass-card ul{
    list-style:none;
    padding-right:8px;

    height:310px;          /* box height */
    overflow-y:auto;       /* vertical scroll */

    scrollbar-width:thin;
    scrollbar-color:#ff8837 transparent;
}

/* CHROME SCROLLBAR */

.oha-glass-card ul::-webkit-scrollbar{
    width:6px;
}

.oha-glass-card ul::-webkit-scrollbar-track{
    background:transparent;
}

.oha-glass-card ul::-webkit-scrollbar-thumb{
    background:#ff8837;
    border-radius:20px;
}


/*------------ hero section --------------
------------------------------------------*/

.oha-page-banner{
    position:relative;
    min-height:70vh;

    display:flex;
    Justify-content: space-around;
    align-items:center;

    overflow:hidden;

    padding:120px 7%;

    background:
    linear-gradient(rgba(5,8,18,.82),rgba(5,8,18,.88)),
    url('images/VIP.png');

    background-size:cover;
    background-position:center;

    font-family:'Outfit',sans-serif;
}

.banner-overlay{
    position:absolute;
    inset:0;

    background:
    radial-gradient(circle at top left,
    rgba(239, 151, 35, 0.623),
    transparent 28%),

    radial-gradient(circle at bottom right,
    rgba(255,255,255,.06),
    transparent 24%);
}

.oha-page-content{
    position:relative;
    z-index:2;
    max-width:850px;
}

/* BREADCRUMB */

.oha-breadcrumb{
    display:flex;
    align-items:center;
    gap:14px;
    justify-content:center;

    margin-bottom:28px;
}

.oha-breadcrumb a{
    color:#fff;
    text-decoration:none;

    font-size:18px;
    font-weight:600;

    transition:.3s ease;
}

.oha-breadcrumb a:hover{
    color:#ca7e0c;
}

.oha-breadcrumb span{
    color:#ca7e0c;
    font-size:18px;
}

.oha-breadcrumb p{
    color:#ca7e0c;
    margin:0;

    font-size:15px;
    font-weight:700;
}

/* HEADING */

.oha-page-content h1{
    color:#fff;
    text-align:center;

    font-size:65px;
    line-height:1.08;

    font-weight:900;

    margin-bottom:24px;
}

.oha-page-content p{
    color:#d1d5db;

    font-size:16px;
    line-height:1.9;

    max-width:760px;
}

/* MOBILE */

@media(max-width:768px){

.oha-page-banner{
    padding:100px 5%;
    min-height:58vh;
}

.oha-page-content h1{
    font-size:42px;
}

.oha-page-content p{
    font-size:16px;
}

.oha-breadcrumb{
    gap:10px;
    flex-wrap:wrap;
}

}



/* ==============================================================
   WHY TRUST SECTION STYLES
   ===============================================================*/


@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css");

.trust-section{
  padding:80px 20px;
  background:linear-gradient(180deg,#fff7f2 0%,#fbf3fb 100%);
  font-family:Poppins,Arial,sans-serif;
}

.trust-container{
  max-width:1320px;
  margin:auto;
}

.trust-heading{
  text-align:center;
  margin-bottom:42px;
}

.trust-heading h2{
  font-size:56px;
  font-weight:900;
  background:linear-gradient(90deg,#8f168f,#ff5b16);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.trust-heading p{
  margin-top:18px;
  font-size:20px;
  line-height:1.5;
  color:#555766;
}

.trust-tabs{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  max-width:1160px;
  margin:0 auto 38px;
  /* gap:14px; */
}

.trust-tab{
  height:74px;
  border:1px solid #ffffff;
  background:#fff;
  color:#8f168f;
  font-size:21px;
  font-weight:800;
  text-transform:uppercase;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  cursor:pointer;
  border-radius:18px 18px 0 0;
  clip-path:polygon(8% 0, 93% 0, 100% 100%, 0 100%);
  box-shadow:0 10px 25px rgba(0,0,0,.05);
  transition:.3s ease;
}

.trust-tab i{
  color:#ff5b16;
  font-size:28px;
}

.trust-tab.active{
  color:#fff;
  border:none;
  background:linear-gradient(135deg,#ff5b16,#8f168f);
  border-radius:18px 18px 0 0;
  clip-path:polygon(8% 0, 93% 0, 100% 100%, 0 100%);
}

.trust-tab.active i{
  color:#fff;
}

.tab-content{
  display:none;
}

.tab-content.active{
  display:block;
}

.values-grid{
  display:grid;
  grid-template-columns:repeat(2,2fr);
  gap:30px;
}

.value-card{
  background:#fff;
  border-radius:22px;
  padding:42px;
  display:grid;
  grid-template-columns:130px 1fr;
  gap:30px;
  align-items:center;
  min-height:220px;
  border:1px solid #f0e7f0;
  box-shadow:0 18px 40px rgba(0,0,0,.06);
  transition:.35s ease;
}

.value-card:hover{
  transform:translateY(-6px);
  box-shadow:0 24px 55px rgba(155,13,131,.12);
}

.value-icon{
  width:105px;
  height:105px;
  border-radius:50%;
  background:#fff0e8;
  color:#ff5b16;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:45px;
}

.value-icon.violet{
  background:#f7e9f7;
  color:#8f168f;
}

.value-content{
  border-left:1px solid #d9d9d9;
  padding-left:34px;
}

.value-content h3{
  color:#ff5b16;
  font-size:26px;
  font-weight:900;
  text-transform:uppercase;
  margin:0 0 16px;
}

.value-content h3::after{
  content:"";
  display:block;
  width:42px;
  height:3px;
  background:#ff5b16;
  margin-top:9px;
}

.value-content p{
  margin:0;
  font-size:16px;
  line-height:1.65;
  color:#071225;
}

@media(max-width:900px){
  .trust-heading h2{
    font-size:38px;
  }

  .trust-tabs,
  .values-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:600px){
  .trust-section{
    padding:50px 14px;
  }

  .trust-heading h2{
    font-size:32px;
  }

  .trust-heading p{
    font-size:15px;
  }

  .trust-tab{
    height:auto;
    padding:18px;
    font-size:16px;
  }

  .value-card{
    grid-template-columns:1fr;
    padding:26px;
  }

  .value-icon{
    width:78px;
    height:78px;
    font-size:32px;
  }

  .value-content{
    border-left:none;
    padding-left:0;
  }

  .value-content h3{
    font-size:22px;
  }

  .value-content p{
    font-size:14px;
  }
}


/* ==========================================================================
   FAQ's SECTION STYLES
   ========================================================================== */

.faq-section{
    padding:90px 20px;
    background:#fff;
    font-family:'Poppins',sans-serif;
}

.faq-container{
    max-width:1100px;
    margin:auto;
}

.faq-heading{
    text-align:center;
    margin-bottom:50px;
}

.faq-heading span{
    color:#ff6b2c;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    font-size:13px;
}

.faq-heading h2{
    font-size:42px;
    color:#071225;
    margin:12px 0;
    font-weight:800;
}

.faq-heading p{
    color:#64748b;
    font-size:16px;
}

.faq-list{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.faq-item{
    border:1px solid #ececec;
    border-radius:18px;
    overflow:hidden;
    background:#fff;
    transition:.3s;
}

.faq-question{
    width:100%;
    background:none;
    border:none;
    cursor:pointer;
    padding:24px 30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:18px;
    font-weight:700;
    color:#071225;
    text-align:left;
}

.faq-question span{
    font-size:24px;
    color:#ff6b2c;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:.4s ease;
    padding:0 30px;
    color:#64748b;
    line-height:1.8;
}

.faq-item.active .faq-answer{
    max-height:300px;
    padding:0 30px 24px;
}

.faq-item.active{
    border-color:#ff6b2c;
    box-shadow:0 15px 35px rgba(255,107,44,.08);
}

.faq-icon{
    font-size:28px;
    font-weight:600;
    color:#ff6b2c;
    transition:.2s ease;
}

.faq-item.active .faq-icon{
    transform:rotate(180deg);
}





