:root {
  --primary: #956C1C;
  --primary-rgb: 149, 108, 28;
  --primary-hover: #7A5718;
  --secondary: #0A1031;
  --secondary-rgb: 10, 16, 49;
  --secondary-hover: #080B24;
  --tertiary: #F4F0E8;
  --white: #FFFFFF;
  --bg-color: #F9FAFB;
  --title-color: #111827;
  --body: #4B5563;
  --border-color: #E8E8E8;

  --card-bg: #fff;
  --card-hover-bg: #f8f9fa;
  --card-shadow: 2px 2px 7px rgba(0, 0, 0, 0.1);
  --card-hover-shadow: 2px 2px 7px rgba(0, 0, 0, 0.2);

  --nav-color: #FFFFFF;
  --nav-hover-color: #FFFFFF;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #0A1031;
  --nav-dropdown-hover-color: #F4F0E8;

  --default-font: "Inter", sans-serif;
  --heading-font: "Playfair Display", serif;
}

* {
  transition: all 0.3s ease;
}


body {
  font-family: var(--default-font);
  background-color: var(--bg-color);
  color: var(--body);
  font-size: 16px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--heading-font);
  color: var(--title-color);
  font-weight: 700;
}

h5,
h6 {
  font-family: var(--default-font);
  color: var(--title-color);
  font-weight: 700;
}

a {
  text-decoration: none;
}

.primary-color {
  color: var(--primary);
}

.border {
  border: solid 1px var(--border-color);
}

.bg-tertiary {
  background-color: var(--tertiary);
}

.bg-primary-soft {
  background-color: rgba(var(--primary-rgb), 0.08);
}

.bg-gradient-br {
  background: linear-gradient(135deg, #F9FAFB 0%, #ffffff 100%);
}

.btn {
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  border-radius: 6px;
  border: none;
  font-size: 16px;
  transition: 0.3s ease;
  box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--title-color);
}

.btn-secondary:hover {
  background-color: var(--primary-hover);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 0.4rem 1.5rem;
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
}

.btn-light {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);

  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* ICON */
.btn-light i {
  font-size: 18px;
  height: 24px;
}

/* HOVER */
.btn-light:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.shadow-md {
  box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.header-right {
  margin-left: 24px;
}

.custom-navbar {
  background-color: var(--nav-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgb(0 0 0 / 0.1);

}

.brand-logo {
  font-family: var(--heading-font);
  font-size: 22px;
  font-weight: 600;
  color: var(--secondary);
}

.navbar-expand-lg .offcanvas .offcanvas-body {
  align-items: center;
}

.nav-link {
  color: var(--secondary);
  font-weight: 500;
  transition: 0.3s;
  padding-top: 18px;
  padding-bottom: 18px;
}


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

/* ============================
   NAVBAR DROPDOWN HOVER (DESKTOP)
============================ */

@media (min-width: 992px) {

  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }

  .navbar .dropdown-menu {
    display: none;
  }

  .navbar .dropdown-toggle::after {
    transition: transform 0.3s ease;
  }

  .navbar .dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
  }

}

.custom-dropdown {
  background-color: var(--nav-dropdown-background-color);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 10px 0;
}

.custom-dropdown .dropdown-item {
  color: var(--nav-dropdown-color);
  padding: 8px 20px;
  transition: 0.3s;
}

.custom-dropdown .dropdown-item:hover {
  background-color: var(--nav-dropdown-hover-color);
  color: var(--secondary);
}

.navbar-toggler {
  border: none;
  padding: 8px;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
  border: none;
}

.navbar-toggler-icon {
  background-image: none;
}

.navbar-toggler-icon img {
  width: 30px;
  height: 30px;
}

@media (max-width: 991px) {
  .navbar-collapse {
    background-color: var(--nav-mobile-background-color);
    padding: 20px;
    border-radius: 8px;
    margin-top: 10px;
  }

  .header-right {
    margin-left: 0;
    margin-top: 24px;
  }

  .nav-link {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .custom-dropdown{
    border: none;
    border-radius: 0;
    padding: 0;
  }
}

.section {
  padding: 80px 0;
}

.section-sm {
  padding: 50px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-tag {
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: 40px;
  margin: 10px 0;
}

.section-title-md {
  font-size: 30px;
  margin-bottom: 10px;
}

/* SMALL TITLE */
.section-title-sm {
  font-size: 22px;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #6b7280;
  font-size: 18px;
  font-weight: 300;
}

@media (max-width:768px) {
  .section-title {
    font-size: 28px;
  }
}

.card-custom {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  transition: 0.3s ease;
  height: 100%;
}

.card-custom:hover {
  box-shadow: var(--card-hover-shadow);
  transform: translateY(-5px);
}

.card-title-custom {
  font-size: 20px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 15px;
}

.card-text-custom {
  font-size: 14px;
  color: var(--body);
}

.text-primary-custom {
  color: var(--primary);
}

.text-secondary-custom {
  color: var(--secondary);
}

.text-body-custom {
  color: var(--body);
}

.fw-semibold-custom {
  font-weight: 600;
}

.fw-bold-custom {
  font-weight: 700;
}

.bg-primary-soft {
  background-color: rgba(var(--primary-rgb), 0.08);
}

.bg-tertiary-custom {
  background-color: var(--tertiary);
}

.bg-dark-custom {
  background-color: var(--secondary);
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 36px;
  }

  .section-title {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 28px;
  }

  .section-title {
    font-size: 24px;
  }

  .section {
    padding: 50px 0;
  }

  section {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}

/* Footer Base */
.footer-section {
  background: linear-gradient(135deg, #0f172a, #0b1a33);
  color: #9CA3AF;
  padding: 60px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 576px) {
  .footer-section {
    padding: 60px 24px 20px;
  }
}

/* Text */
.footer-text {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Social */
.footer-social a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-radius: 8px;
  margin-right: 8px;
  transition: 0.2s;
}

.footer-social a:hover {
  background: var(--primary);
}

/* Titles */
.footer-title {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 18px;
  font-family: var(--default-font);
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: #9CA3AF;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--white);
}

/* Contact */
.contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.contact-item i {
  color: var(--primary);
  font-size: 16px;
  margin-top: 3px;
}

.contact-item small {
  font-size: 12px;
}

.contact-item p {
  margin: 0;
  color: var(--white);
  font-size: 14px;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 13px;
  color: #9CA3AF;
}

.footer-bottom-links a {
  margin-left: 16px;
  font-size: 13px;
  color: #9CA3AF;
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: var(--white);
}

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

.hero-section {
  padding: 80px 0px;
}

.hero-tagline {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 8px;
  background-color: rgb(149 108 28 / 0.1);
  display: inline-block;
  padding: 8px 16px;
  border-radius: 90px;
}

.hero-title {
  font-family: var(--heading-font);
  font-size: 70px;
  line-height: 1;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 20px;
}

.hero-description {
  font-size: 18px;
  color: var(--body);
  max-width: 600px;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-img {
  border-radius: 12px;
  width: 100%;
}

.img-area {
  position: relative;
  z-index: 10;
}

.layer {
  position: absolute;
  right: -1rem;
  bottom: -1.5rem;
  width: 100%;
  height: 100%;
  background-color: var(--tertiary);
  border-radius: 12px;
  z-index: 0;
}

@media (max-width: 768px) {
  .layer {
    display: none;
  }
}

.stat-box h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}

.stat-box p {
  font-size: 14px;
  color: var(--body);
  margin: 0;
}

.underline-gold {
  position: relative;
  display: inline-block;
}

.underline-gold::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 60%;
  height: 3px;
  background-color: var(--primary);
  border-radius: 2px;
}

@media (max-width: 991px) {

  .hero-section {
    padding: 70px 0 50px;
    text-align: center;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-description {
    margin: 0 auto 25px;
  }

  .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 576px) {

  .hero-title {
    font-size: 40px;
  }

  .hero-tagline {
    font-size: 12px;
  }

  .hero-stats {
    padding: 20px 0;
  }
}

.hero-stats {
  padding: 30px 0;
  display: flex;
  gap: 40px;
  margin-top: 20px;
}

.hero-stats h3 {
  font-family: var(--default-font);
  font-size: 30px;
  font-weight: 700;
}

.hero-stats div:not(:last-child) {
  border-right: solid 1px var(--border-color);
  padding-right: 40px;
}

@media (max-width: 576px) {
  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .hero-stats h3 {
    font-size: 22px;
  }

  .hero-stats div:not(:last-child) {
    border-right: none;
    padding-right: 0;
  }
}

.hero-stats2 {
  background: var(--white);
  border-top: solid 1px var(--border-color);
  padding: 30px 0;
  display: flex;
  gap: 40px;
  justify-content: center;
}

.hero-stats2 .stat-box {
  display: flex;
  gap: 8px;
}

.stat-box h4 {
  font-size: 16px;
  font-family: var(--default-font);
  color: var(--title-color);
}

.hero-stats2 .stat-box:not(:last-child) {
  border-right: solid 1px var(--border-color);
  padding-right: 40px;
}

.stat-icon {
  font-size: 24px;
  color: var(--primary);
}

@media (max-width: 576px) {
  .hero-stats2 {
    flex-direction: column;
    gap: 20px;
  }

  .hero-stats2 .stat-box:not(:last-child) {
    border-right: none;
    padding-right: 0;
  }
}

/* ============================
   GLOBAL CARD SYSTEM
============================ */

/* Base Card */
.card {
  background: #ffffff;
  color: var(--body);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  padding: 24px;
  transition: 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card .btn {
  margin-top: auto;
}

/* Hover Effect (optional class) */
.card-hover:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.card .btn-outline {
  box-shadow: none;
}


/* ============================
   CARD ICON
============================ */

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: var(--tertiary);
  transition: 0.3s;
}

.card-icon i {
  font-size: 26px;
  color: var(--primary);
}

.card-hover:hover .card-icon {
  background: var(--primary);
}

.card-hover:hover .card-icon i {
  color: #fff;
}


/* ============================
   CARD CONTENT
============================ */

.card-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--title-color);
}

.card-text {
  margin-bottom: 16px;
  line-height: 1.6;
}


/* ============================
   CARD LIST
============================ */

.card-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.card-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 8px;
}

.card-list i {
  color: var(--primary);
}


/* ============================
   CARD VARIANTS
============================ */

/* Small card (for features) */
.card-sm {
  padding: 18px;
}

/* Centered card */
.card-center {
  text-align: center;
}

/* Border highlight */
.card-bordered {
  border: 2px solid var(--primary);
}

/* Shadow only */
.card-shadow {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* ============================
   CARD STYLE 2 (FEATURE CARD)
============================ */

.card-feature {
  background: #f9fafb;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  transition: 0.3s;
  height: 100%;
}

/* Hover */
.card-feature:hover {
  background: var(--tertiary);
  transform: translateY(-6px);
}


/* ICON */
.card-feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tertiary);
  transition: 0.3s;
}

.card-feature-icon i {
  font-size: 28px;
  color: var(--primary);
}

.card-feature:hover .card-feature-icon {
  background: var(--primary);
}

.card-feature:hover .card-feature-icon i {
  color: #fff;
}

.card-feature-icon.small {
  width: 56px;
  height: 56px;
}


/* TITLE */
.card-feature-title {
  font-family: var(--default-font);
  font-size: 20px;
  font-weight: 700;
  color: var(--title-color);
  margin-bottom: 10px;
}

/* TEXT */
.card-feature-text {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}


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

@media (max-width:768px) {

  .card-feature {
    padding: 20px;
  }

  .card-feature-icon {
    width: 65px;
    height: 65px;
  }

  .card-feature-icon i {
    font-size: 22px;
  }

  .card-feature-title {
    font-size: 16px;
  }

}

.discription-list h6 {
  font-family: var(--default-font);
}

.discription-list p {
  font-size: 14px;
}

.mini-icon {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--tertiary);
  transition: 0.3s;
}

.mini-icon i {
  color: var(--primary);
  font-size: 18px;
}

/* Hover (optional) */
.mini-icon-hover:hover {
  background: var(--primary);
}

.mini-icon-hover:hover i {
  color: #fff;
}

/* ============================
   STEP CARD (HOW IT WORKS)
============================ */

.step-title {
  margin-top: 40px;
  margin-bottom: 16px;
  font-family: var(--default-font);
  font-size: 20px;
  font-weight: 600;
}

/* STEP NUMBER */
.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


/* OPTIONAL LINE CONNECTOR (desktop only) */
@media (min-width:992px) {

  #how-it-works .row {
    position: relative;
  }

  #how-it-works .row::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--tertiary);
    z-index: 0;
  }

  .card-step {
    position: relative;
    z-index: 1;
  }

}


/* RESPONSIVE */

@media (max-width:768px) {
  .card-step {
    padding: 20px;
  }

  .step-number {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}

/* ============================
   PARTNER CARDS
============================ */

.partner-card {
  background: var(--bg-color);
  padding: 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  transition: 0.3s;
}

.partner-card img {
  /* max-height:40px; */
  object-fit: contain;
  /* filter:grayscale(100%); */
  opacity: 0.8;
  transition: 0.3s;
}

.partner-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.partner-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}


/* ============================
   CTA BOX
============================ */

.partners-cta {
  background: #f3efe7;
  background-image: linear-gradient(to right, rgb(149 108 28 / 0.05), rgb(184 146 77 / 0.05));
  padding: 40px;
  border-radius: 16px;
}

.partners-cta h4 {
  font-weight: 600;
  margin-bottom: 10px;
  font-family: var(--default-font);
  font-size: 24px;
}

.partners-cta p {
  color: #6b7280;
  margin: auto;
}


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

@media (max-width:768px) {
  .partner-card {
    height: 80px;
    padding: 15px;
  }

  .partner-card img {
    /* max-height:30px; */
  }

  .partners-cta {
    padding: 25px;
  }
}

/* ============================
   TESTIMONIAL CARD
============================ */

.testimonial-card {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  height: 100%;
  transition: 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}


/* STARS */
.stars {
  color: #f4b400;
  margin-bottom: 15px;
}

.stars.small i {
  font-size: 12px;
}


/* TEXT */
.testimonial-text {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}


/* USER */
.testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-user img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-user h6 {
  margin: 0;
  font-weight: 600;
  font-family: var(--default-font);
}

.testimonial-user span {
  font-size: 14px;
  color: #6b7280;
}


/* ============================
   STATS
============================ */

.testimonial-stats {
  background: #ffffff;
  /* changed to white */
  padding: 30px;
  border-radius: 16px;
  max-width: 600px;
  margin: auto;
  border: 1px solid #eee;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}


/* OPTIONAL: divider between stats */
.stat-item {
  text-align: center;
  position: relative;
}

.testimonial-stats .stars {
  margin-bottom: 0;
}

@media (min-width:768px) {
  .stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: #e5e7eb;
  }
}

.stat-item h3 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 30px;
  font-family: var(--default-font);
}

.stat-item p {
  font-size: 14px;
  color: #6b7280;
}


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

@media (max-width:768px) {
  .testimonial-card {
    padding: 20px;
  }

  .testimonial-stats {
    padding: 20px;
  }
}

/* ============================
   CALLBACK SECTION
============================ */

.bg-gradient-primary {
  background: linear-gradient(135deg, #956C1C, #7a5616);
  color: var(--white)
}


/* LEFT TEXT */
.callback-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--white);
  max-width: 530px;
  line-height: 36px;
}

.callback-text {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  max-width: 530px;
}


/* FEATURES */
.callback-features h6 {
  margin: 0 0 4px;
  font-weight: 500;
  font-size: 16px;
  color: var(--white);
  font-family: var(--default-font);
}

.callback-features p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.callback-features .mini-icon {
  background: rgba(255, 255, 255, 0.2);
}

.callback-features .mini-icon i {
  color: var(--white);
}


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

.form-card {
  background: var(--white);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  color: var(--body);
}


/* FORM */
.form-control,
.form-select {
  height: 48px;
  border-radius: 8px;
  font-size: 14px;
}

textarea.form-control,
.contact-form-card textarea.form-control {
  height: 90px;
}


.form-label {
  font-size: 13px;
  font-weight: 500;
}

/* SECURE TEXT */
.secure-text {
  font-size: 12px;
  color: #6b7280;
}

.form-label {
  color: var(--title-color);
}


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

@media (max-width:768px) {
  .callback-title {
    font-size: 26px;
  }

  .form-card {
    padding: 20px;
  }
}

/* Section */

/* Wrapper */
.faq-wrapper {
  max-width: 800px;
}

/* Accordion */
.faq-accordion .accordion-item {
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-accordion .accordion-header {
  font-family: var(--default-font);
}

.faq-accordion .accordion-button {
  font-weight: 500;
  font-size: 16px;
  background: var(--white);
  box-shadow: none;
  color: var(--title-color);
  padding: 16px;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: #F9FAFB;
  color: var(--primary);
}

.faq-accordion .accordion-body {
  font-size: 13px;
  background: #F9FAFB;
  padding-top: 0;
}

/* Remove default arrow */
.accordion-button::after {
  font-size: 18px;
  transform: rotate(-90deg);
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(0deg);
}

/* CTA */
.faq-help {
  font-size: 13px;
  margin-bottom: 10px;
}

/* Section background */
.bg-gradient-black {
  background: linear-gradient(135deg, #0f172a, #1e293b, #334155);
  color: var(--white);
}

.bg-gradient-black .section-title,
.bg-gradient-black .section-subtitle {
  color: var(--white);
}


/* Contact text */
.cta-contact {
  font-size: 13px;
  color: #cbd5e1;
  font-weight: 300;
}

.cta-contact strong {
  color: var(--white);
  font-weight: 700;
}

/* BREADCRUMB */
.breadcrumb-section {
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color);
}

.breadcrumb-wrapper h5 {
  font-family: var(--default-font);
  font-weight: 600;
  font-size: 16px;
  color: var(--title-color);
}

.breadcrumb {
  background: none;
  margin: 0;
  display: flex;
  align-items: center;
}

.breadcrumb-item {
  line-height: 16px;
}

.breadcrumb-item a {
  color: var(--body);
  font-size: 13px;
  line-height: 16px;
}

.breadcrumb-item.active {
  color: var(--primary);
  font-size: 13px;
  line-height: 16px;
}

.breadcrumb-item+.breadcrumb-item::before {
  content: "/";
  color: #9ca3af;
}

.inner-hero {
  position: relative;
}

.inner-hero-cont {
  padding: 50px 0;
  position: relative;
  z-index: 1;
}

/* .inner-hero:after{
    content: '';
    background: url(../images/hero-layer.png);
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
} */

.inner-hero-img {
  position: relative;
  height: 100%;
  padding: 50px 0;
}

@media (max-width: 991px) {
  .inner-hero-img {
    display: none;
  }
}

.hero-layer {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  overflow: hidden;
}

.hero-layer img {
  height: 100%;
}

.inner-hero-title {
  font-size: 56px;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.inner-hero-desc {
  color: #D1D5DB;
}

/* outline light button */
.btn-outline-light {
  border: 2px solid var(--white);
  color: #fff;
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--secondary);
}

@media (max-width:768px) {
  .about-title {
    font-size: 32px;
  }
}

/* TEAM CARD */
.team-card {
  transition: 0.3s;
  height: 100%;
}

/* HOVER */
.team-card:hover {
  transform: translateY(-6px);
}

/* IMAGE */
.team-img {
  width: 100%;
  height: 320px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* NAME */
.team-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

/* ROLE */
.team-role {
  font-size: 13px;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 10px;
}

/* DESCRIPTION */
.team-desc {
  font-size: 14px;
  color: var(--body);
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width:768px) {
  .team-img {
    height: 250px;
  }
}

/* MILESTONE CARD */
.milestone-card {
  background: linear-gradient(to bottom, #ffffff, #fafafa);
  border-radius: 14px;
  padding: 24px 16px;
  border: 1px solid var(--border-color);
  transition: 0.3s;
  height: 100%;
}

/* HOVER */
.milestone-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
}

/* ICON */
.milestone-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;

  border-radius: 50%;

  background: linear-gradient(135deg, #b8892e, #956C1C);

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 6px 15px rgba(149, 108, 28, 0.25);
}

/* ICON */
.milestone-icon i {
  color: #fff;
  font-size: 20px;
}

/* REMOVE previous hover color change */
.milestone-card:hover .milestone-icon {
  transform: scale(1.05);
}

/* NUMBER */
.milestone-card h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
  font-family: var(--default-font);
}

/* TITLE */
.milestone-card p {
  font-size: 14px;
  font-weight: 600;
  color: var(--title-color);
  margin-bottom: 4px;
}

/* SUBTEXT */
.milestone-card span {
  font-size: 12px;
  color: var(--body);
}

/* RESPONSIVE */
@media (max-width:768px) {
  .milestone-card {
    padding: 20px 12px;
  }

  .milestone-card h3 {
    font-size: 22px;
  }
}

/* ============================
   TIMELINE SECTION
============================ */

.timeline {
  position: relative;
  max-width: 900px;
  margin: auto;
}

/* CENTER LINE */
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: var(--border-color);
}

/* ITEM */
.timeline-item {
  position: relative;
  width: 50%;
  padding: 30px 50px;
}

/* LEFT */
.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

/* RIGHT */
.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-item:nth-child(even) .timeline-icon {
  left: 0;
  transform: translate(-50%, -50%);
}

/* ICON */
.timeline-icon {
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translate(-50%, -50%);

  width: 50px;
  height: 50px;
  border-radius: 50%;

  background: linear-gradient(135deg, #c89b3c, #956C1C);
  color: var(--white);

  border: solid 2px var(--white);

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 8px 20px rgba(149, 108, 28, 0.3);
  z-index: 2;
}

/* CONTENT */
.timeline-content {
  background: var(--white);
  padding: 20px 24px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

/* YEAR */
.timeline-year {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  display: block;
  margin-bottom: 12px;
}

/* TITLE */
.timeline-content h5 {
  font-family: var(--default-font);
  font-weight: 600;
  margin-bottom: 12px;
}

/* TEXT */
.timeline-content p {
  font-size: 14px;
  margin: 0;
}


/* last card */
.timeline-highlight .timeline-content {
  background: linear-gradient(135deg, #f3efe7, #ffffff);
  border: 1px solid rgba(149, 108, 28, 0.3);
}

/* ============================
   MOBILE
============================ */

@media (max-width: 768px) {

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 60px;
    padding-right: 20px;
    text-align: left !important;
  }

  .timeline-item:nth-child(even) {
    left: 0;
  }

  .timeline-icon {
    left: -4px !important;
    top: 20px;
    transform: none;
  }

  .timeline-item:nth-child(2n) .timeline-icon {
    transform: none;
  }
}

/* INFO */
.contact-info {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

/* BOX */
.info-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.info-box i {
  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);

  color: var(--primary);
  font-size: 16px;
}

.info-box small {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.info-box p {
  margin: 0;
}

/* ============================
   BACKGROUND CIRCLES
============================ */

.hero-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(var(--primary-rgb), 0.08);
}

/* BIG LEFT */
.hero-circle-1 {
  width: 700px;
  height: 700px;
  top: 0px;
  left: 0px;
}

/* SMALL RIGHT */
.hero-circle-2 {
  width: 300px;
  height: 300px;
  right: 0px;
  top: 0px;
}

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

@media (max-width:768px) {

  .contact-info {
    flex-direction: column;
    gap: 16px;
  }

  .hero-circle-1 {
    width: 300px;
    height: 300px;
  }

  .hero-circle-2 {
    display: none;
  }
}

/* ============================
   CONTACT FORM SECTION
============================ */

.contact-features {
  margin-top: 20px;
}

.feature-box {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
}


/* CTA BOX */
.contact-cta-box {
  background: #f9fafb;
  padding: 20px;
  border-radius: 12px;
  margin-top: 20px;
  border: 1px solid var(--border-color);
}

/* FORM CARD */
.contact-form-card {
  padding: 28px;
  border-radius: 16px;
  border: 1px solid var(--border-color);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* INPUTS */
.contact-form-card .form-control,
.contact-form-card .form-select {
  height: 48px;
  border-radius: 8px;
  font-size: 14px;
}

.contact-form-card textarea {
  height: auto;
}

/* BUTTON */
.contact-form-card .btn {
  height: 48px;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width:768px) {
  .contact-form-card {
    padding: 20px;
  }
}

/* ICON */
.contact-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;

  border-radius: 16px;
  background: linear-gradient(135deg, #c89b3c, #956C1C);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 22px;

  box-shadow: 0 8px 20px rgba(149, 108, 28, 0.25);
}

.contact-text {
  font-size: 14px;
  font-weight: 300;
  margin-top: 16px;
}

.contact-text strong {
  font-size: 16px;
  color: var(--title-color);
  font-weight: 700;
}

/* ============================
   MAP SECTION
============================ */

.map-card {
  border-radius: 20px;
  border: 1px solid var(--border-color);

  display: flex;
  align-items: center;
  justify-content: center;
}

/* PLACEHOLDER */
.map-placeholder i {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 10px;
}

.map-placeholder p {
  margin: 0;
  font-weight: 600;
}

.map-placeholder small {
  color: #6b7280;
}

/* ============================
   BRANCH NETWORK
============================ */





/* TYPE */
.branch-type {
  font-size: 13px;
  color: var(--primary);
  display: block;
  margin-bottom: 16px;
}


/* PHONE */
.branch-phone {
  font-weight: 500;
  color: var(--title-color);
}

.branch-phone i {
  color: var(--primary);
  margin-right: 5px;
}

/* ============================
   NEWSLETTER
============================ */

.news-card {
  background: linear-gradient(135deg, #F9FAFB 0%, #ffffff 100%);
  border: solid 1px var(--border-color);
  border-radius: 24px;
  padding: 42px;
}

.news-card h5 {
  font-size: 24px;
}

/* FORM */
.newsletter-form {
  max-width: 500px;
  margin: auto;

  display: flex;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  overflow: hidden;
}

/* INPUT */
.newsletter-form input {
  flex: 1;
  border: none;
  padding: 14px 16px;
  font-size: 14px;
  outline: none;
}

/* BUTTON */
.newsletter-form .btn {
  border-radius: 0;
  padding: 0 20px;
}

/* RESPONSIVE */
@media (max-width:576px) {
  .news-card {
    padding: 32px 24px;
  }

  .newsletter-form .btn {
    padding: 8px;
  }
}

.inner-hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: .1;
}

.content-area {
  position: relative;
}

.content-area ul {
  margin: 0 0 0 24px;
  padding: 0;
}

.content-area ul li {
  padding-bottom: 8px;
}

.bg-light {
  background-color: var(--bg-color) !important;
}

/* ============================
   CTA STRIP
============================ */

.cta-strip {
  background: linear-gradient(135deg, #f3efe7, #e9e4da);
  border-radius: 16px;
  padding: 20px 24px;
  margin-top: 40px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  border: 1px solid rgba(149, 108, 28, 0.2);
}

/* LEFT CONTENT */
.cta-content h5 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 600;
}

.cta-content p {
  margin: 0;
  font-size: 14px;
  color: #6b7280;
}

/* BUTTON */
.cta-action .btn {
  padding: 6px 16px;
  font-size: 14px;
}

.cta-strip:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

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

@media (max-width:768px) {
  .cta-strip {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 24px;
  }

  .cta-action {
    width: 100%;
  }

  .cta-action .btn {
    width: 100%;
  }
}

/* ============================
   BASE TABLE (DESKTOP)
============================ */

.custom-table {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  margin-bottom: 24px;
}

.custom-table table {
  width: 100%;
  border-collapse: collapse;
}

.custom-table thead {
  background: #eae4d8;
}

.custom-table th {
  text-align: left;
  padding: 14px 18px;
  font-weight: 600;
  font-size: 14px;
  color: var(--title-color);
}

.custom-table td {
  padding: 14px 18px;
  font-size: 14px;
  border-top: 1px solid var(--border-color);
}

.custom-table tbody tr {
  background: #f9fafb;
}

/* TEXT */
.text-success-custom {
  color: #16a34a;
  font-weight: 500;
}

.text-highlight {
  color: var(--primary);
  font-weight: 600;
}


/* ============================
   MOBILE VIEW (STACKED CARD)
============================ */

@media (max-width: 768px) {

  .custom-table table,
  .custom-table thead,
  .custom-table tbody,
  .custom-table th,
  .custom-table td,
  .custom-table tr {
    display: block;
    width: 100%;
  }

  /* Hide header */
  .custom-table thead {
    display: none;
  }

  /* Each row becomes card */
  .custom-table tr {
    margin-bottom: 12px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: var(--white);
    padding: 10px;
  }

  /* Cells */
  .custom-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 10px;
    border: none;
    border-bottom: 1px solid var(--border-color);
  }

  .custom-table td:last-child {
    border-bottom: none;
  }

  /* Labels (Particulars) */
  .custom-table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #6b7280;
  }

}