:root {
  --amber: #C4711A;
  --amber-light: #E8943A;
  --amber-pale: #FBF0E4;
  --dark: #1A1814;
  --dark-mid: #2E2B26;
  --mid: #5A554C;
  --muted: #9A9590;
  --light: #F5F3EF;
  --white: #FDFCFA;
  --border: rgba(90, 85, 76, 0.15);
  --border-strong: rgba(90, 85, 76, 0.3);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
      font-family: 'Cormorant Garamond', serif;
  background: #f5f3ef;
  color: var(--dark);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}

/* ── NAV ── */


nav.scrolled {
  height: 58px;
  box-shadow: 0 1px 20px rgba(26, 24, 20, 0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 32px;
  height: 32px;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-text .brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.nav-logo-text .sub {
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--amber);
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 1px;
  font-family: 'Cormorant Garamond', serif;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  color: var(--mid);
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 100%;
  height: 1px;
  background: var(--amber);
  transition: right 0.25s ease;
}

.nav-links a:hover {
  color: var(--dark);
}

.nav-links a:hover::after {
  right: 0;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: -16px;
  background: var(--white);
  border: 0.5px solid var(--border-strong);
  border-radius: 8px;
  padding: 8px;
  min-width: 160px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: all 0.2s ease;
  box-shadow: 0 8px 32px rgba(26, 24, 20, 0.1);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 7px 12px;
  font-size: 13px;
  color: var(--mid);
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.15s;
}

.nav-dropdown-menu a:hover {
  background: var(--light);
  color: var(--dark);
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-cta {
  background: var(--amber);
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover {
  background: var(--amber-light);
  transform: translateY(-1px);
}

.nav-cta::after {
  display: none !important;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 68px;
}

.hero-left {
  background: var(--light);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 80px;
  position: relative;
  overflow: hidden;
}

.hero-left::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: var(--amber-pale);
  opacity: 0.6;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
  margin-bottom: 24px;
  animation: fadeUp 0.7s 0.1s ease forwards;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--amber);
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.7s 0.25s ease forwards;
}

.hero-headline em {
  font-style: italic;
  color: var(--amber);
}

.hero-sub {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.65;
  max-width: 400px;
  margin-bottom: 40px;
  animation: fadeUp 0.7s 0.4s ease forwards;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  animation: fadeUp 0.7s 0.55s ease forwards;
}

.btn-primary {
  background: var(--amber);
  color: #fff;
  padding: 13px 28px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background: var(--amber-light);
  transform: translateY(-1px);
}

.btn-ghost {
  font-size: 14px;
  color: var(--mid);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
  border-bottom: 1px solid var(--border-strong);
  padding-bottom: 2px;
}

.btn-ghost:hover {
  color: var(--dark);
  border-color: var(--dark);
}

.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

.hero-img-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
}

.hero-img-top {
  background: linear-gradient(135deg, #2A2620 0%, #1E1C18 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.hero-img-bot {
  background: linear-gradient(135deg, #1E1C18 0%, #2A2620 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

/* Placeholder building illustration */
.building-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.hero-img-label {
  position: absolute;
  bottom: 16px;
  left: 20px;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 24, 20, 0.85);
  backdrop-filter: blur(8px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 0.5px solid rgba(255, 255, 255, 0.08);
}

.hero-stat {
  padding: 20px 24px;
  border-right: 0.5px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--amber-light);
  line-height: 1;
}

.hero-stat-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@keyframes fadeUp {
  from {
    opacity: 0.01;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--dark);
  padding: 20px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  overflow-x: auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}

.trust-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}

.trust-text {
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
}

/* ── SECTION COMMON ── */
section {
  padding: 40px 80px;
}

.section-tag {
  font-family: 'Cormorant Garamond', serif;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 35px;
  /* letter-spacing: 0.1em; */
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 700;
  margin-bottom: 0px;
}

/* .section-tag::before {
    content: '';
    display: block;
    width: 20px; height: 1px;
    background: var(--amber);
  } */

.section-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--dark);
}

/* ── ABOUT ── */

.container {
  max-width: 1260px;
  margin: auto;
}

/* HEADER */
.about-header {
  text-align: center;
  margin-bottom: 50px;
}


.about-header h1 {
  font-size: 40px;
  line-height: 1.3;
  margin: 15px 0;
}

.about-header p {
  max-width: 700px;
  margin: auto;
  color: #555;
}


.heading-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}

.heading-divider span {
  width: 200px;
  height: 1px;
  background: #C4711A;
  position: relative;
  display: inline-block;
}

/* diamond */
.heading-divider span::after {
  content: "";
  width: 8px;
  height: 8px;
  background: #C4711A;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

/* optional side lines (like your image) */
/* .heading-divider::before,
.heading-divider::after {
  content: "";
  width: 80px;
  height: 1px;
  background: #C4711A;
  margin: 0 10px;
} */


/* CARD LAYOUT */
.founder-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 30px;
  background: #f9f9f9;
  border-radius: 12px;
  padding: 30px;
  align-items: center;
}

/* IMAGE */
.founder-img img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

/* CONTENT */

.founder-content h2 {
  font-size: 24px;
  margin: 10px 0;
}

.founder-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* STATS */
.founder-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.stat-box .icon {
  width: 45px;
  height: 45px;
  border: 2px solid #C4711A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C4711A;
}

.stat-box h3 {
  margin: 0;
  font-size: 20px;
}

.stat-box p {
  margin: 0;
  font-size: 14px;
  color: #777;
}

.trusted-box {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: #555;
}

/* ========================= */
/* ✅ RESPONSIVE FIXES */
/* ========================= */

/* Tablet */
@media (max-width: 992px) {
  .founder-card {
    grid-template-columns: 1fr !important;
    padding: 20px !important;

    /* text-align: center; */
  }

  .founder-stats {
    align-items: start;
  }

  .stat-box {
    justify-content: center;
  }

  .trusted-box {
    justify-content: center;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .about-header h1 {
    font-size: 26px !important;
  }

  .founder-content h2 {
    font-size: 30px !important;
  }

  .founder-content p {
    font-size: 14px;
  }

  .stat-box h3 {
    font-size: 18px;
  }

  .stat-box p {
    font-size: 13px;
  }
}



.f-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--amber);
  line-height: 1;
}

.f-stat-lbl {
  font-size: 11px;
  color: var(--muted);
  margin-top: 3px;
}



.services-new {
  background: #f5f3ef;
  padding: 25px 0 60px;
}

/* TOP */
.services-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
  gap: 40px;
  align-items: center;
}

.services-top .tag {
  font-size: 22px;
  letter-spacing: 2px;
  color: #C4711A;
  font-weight: 900;
}

.services-top p {
  font-family: 'Cormorant Garamond', serif;
  color: #000;
  font-size: 20px;
}

.services-top h2 {
  font-size: 42px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: #1a1a1a;
}

.services-top .right {
  max-width: 460px;
  border-left: 2px solid #C4711A;
  padding-left: 20px;
  color: #555;
}




.features-strip {
  background: #f5efe8;
  padding: 25px 15px;
  border-radius: 15px;
  max-width: 1260px;
  margin: auto;
}

.features-strip .container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

/* ITEM */
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  flex: 1;
}

/* ICON */
.feature-item .icon {
  width: 45px;
  height: 45px;
  min-width: 45px;
  /* prevents shrink */
  flex-shrink: 0;
  /* key fix */

  border: 2px solid #C4711A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}


.feature-item .icon i {
  color: #C4711A;
  font-size: 18px;
}

/* TEXT */
.feature-item h4 {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #000000;
  font-family: 'Cormorant Garamond', serif;

}

.feature-item p {
  font-size: 20px;
  color: #000000;
  line-height: 1.5;
  margin-bottom: 0px;
  font-family: 'Cormorant Garamond', serif;

}

/* RESPONSIVE */

/* Tablet */
@media (max-width: 992px) {
  .features-strip .container {
    flex-wrap: wrap;
  }

  .feature-item {
    flex: 0 0 48%;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .features-strip {
    padding: 20px;
  }

  .feature-item {
    flex: 0 0 100%;
  }
}
















/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.service-card-new {
  border-radius: 16px;
  overflow: hidden;
  background: #0f2235;
  color: #fff;
  transition: 0.3s;
}

.service-card-new:hover {
  transform: translateY(-6px);
}

/* IMAGE */
.service-card-new .img {
  height: 220px;
  overflow: hidden;
}

.service-card-new .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT */
.service-card-new .content {
  padding: 25px;
  position: relative;
}

/* ICON */
.icon-box {
  width: 60px;
  height: 50px;
  background: #C4711A;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  position: absolute;
  top: -20px;
  left: 25px;

  /* HEXAGON SHAPE */
  clip-path: polygon(25% 0%,
      75% 0%,
      100% 50%,
      75% 100%,
      25% 100%,
      0% 50%);
}

/* TEXT */
.service-card-new h3 {
  margin-top: 30px;
  font-size: 24px;
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 10px;
  color: #C4711A;
}

.service-card-new p {
  font-size: 20px;
  color: #ccc;
  line-height: 1.2;
  font-family: 'Cormorant Garamond', serif;

}


/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
  .services-top {
    flex-direction: column;
    gap: 20px;
  }

  .services-top h2 {
    font-size: 36px;
  }

  .services-top .right {
    max-width: 100%;
    border-left: none;
    padding-left: 0;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-top h2 {
    font-size: 28px;
  }

  .service-card-new .img {
    height: 180px;
  }

  .service-card-new h3 {
    font-size: 20px;
  }

  .service-card-new p {
    font-size: 18px;
  }

  .icon-box {
    width: 40px;
    height: 40px;
    font-size: 16px;
    top: -20px;
  }

  .services-top .left {
    text-align: center;
  }
}





















/* ── PROCESS ── */
.process {
  background: var(--dark);
}

.process .section-tag {
  color: var(--amber-light);
}

.process .section-tag::before {
  background: var(--amber-light);
}

.process .section-headline {
  color: var(--white);
}

.process-head {
  max-width: 560px;
  margin-bottom: 64px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(10% + 28px);
  right: calc(10% + 28px);
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
}

.step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--dark-mid);
  border: 1px solid rgba(196, 113, 26, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  transition: border-color 0.3s, background 0.3s;
}

.process-step.active .step-circle {
  background: var(--amber);
  border-color: var(--amber);
}

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--amber);
}

.process-step.active .step-num {
  color: #fff;
}

.step-title {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
}

.step-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.5;
}

/* ── TESTIMONIALS ── */
.testimonials {
  background: var(--white);
}

.testimonials-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testi-card {
  background: var(--light);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}

.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.star {
  width: 12px;
  height: 12px;
  fill: var(--amber);
}

.testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--dark);
  line-height: 1.6;
  margin-bottom: 20px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 0.5px solid var(--border);
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--amber-light);
  flex-shrink: 0;
}

.testi-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
}

.testi-co {
  font-size: 12px;
  color: var(--muted);
  margin-top: 1px;
  font-family: 'Cormorant Garamond', serif;

}

/* ── CONTACT / CTA ── */
.contact-section {
  background: var(--light);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-left .section-headline {
  margin-bottom: 16px;
}

.contact-sub {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--mid);
}

.contact-icon {
  width: 36px;
  height: 36px;
  background: var(--amber-pale);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  color: #25D366;
}

.contact-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--amber);
}

.contact-form {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.form-group.full {
  grid-column: 1 / -1;
}

label {
  font-size: 12px;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.03em;
}

input,
select,
textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px !important;
  color: var(--dark);
  background: var(--light);
  border: 0.5px solid var(--border-strong);
  border-radius: 6px;
  padding: 10px 14px;
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--amber);
  background: var(--white);
}

textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  width: 100%;
  background: var(--amber);
  color: #fff;
  border: none;
  padding: 13px 24px;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 4px;
  letter-spacing: 0.01em;
}

.form-submit:hover {
  background: var(--amber-light);
  transform: translateY(-1px);
}

/* ── FOOTER ── */
/* Footer Section */
.footer-5 {
  margin-top: 50px;
}

/* Footer Grid */
.footer-5-widget-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 991px) {
  .footer-5-widget-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .footer-5-widget-wrapper {
    grid-template-columns: 1fr;
    padding-top: 30px;
  }
}

/* Footer Box */
.footer-5-widget-box {
  padding: 30px 0 25px 150px;
}

@media (max-width: 1399px) {
  .footer-5-widget-box {
    padding-left: 0;
  }
}

.footer-5-widget-box:first-child {
  padding-left: 40px;
}

@media (max-width: 1399px) {
  .footer-5-widget-box:first-child {
    padding-left: 0;
  }
}

/* Titles */
.footer-5-widget-box .title {
  color: #000;
  font-size: 22px;
  font-weight: 900;
  line-height: 18px;
  font-family: 'Cormorant Garamond', serif;
}

.footer-5-widget-box .content .title {
  font-size: 45px;
  font-weight: 500;
  line-height: 50px;
  /* letter-spacing: -2px; */
  color: #111;
  margin-bottom: 40px;
  font-family: 'Cormorant Garamond', serif;
}

@media (max-width: 575px) {
  .footer-5-widget-box .content .title {
    font-size: 28px;
  }
}

@media (max-width: 332px) {
  .footer-5-widget-box .content .title {
    font-size: 20px;
  }
}

/* Button */
.rr-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 500;
  padding: 15px 30px;
  border-radius: 30px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: #b5550be8;
  color: #fff;
  transition: 0.3s;
}

.rr-btn-primary i {
  font-size: 18px;
}

.rr-btn-primary:hover {
  background: #000;
  color: #fff;
}

/* Address / Email */
.footer-5-location {
  margin-top: 15px;
}

.footer-5-location p {
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
  margin-bottom: 15px;
  color: #616161f2;
  font-family: 'Cormorant Garamond', serif;
}

.footer-5-location a {
  display: block;
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 700;
  color: #111;
  transition: 0.3s;
  font-family: 'Cormorant Garamond', serif;
}

.footer-5-location a:hover {
  color: #999;
}

/* Footer Bottom */
.footer-5__bottom-box {
  padding: 25px 30px;
}

@media (max-width: 767px) {
  .footer-5__bottom-box {
    padding: 10px;
  }
}

/* Copyright */
.footer-copyright p {
  font-size: 18px;
  font-weight: 500;
  color: #111;
  font-family: 'Cormorant Garamond', serif;
}

.footer-copyright a {
  font-size: 18px;
  font-weight: 500;
  color: #111;
  font-family: 'Cormorant Garamond', serif;
  text-decoration: none;
}

.footer-copyright a:hover {
  color: #000;
}

/* WhatsApp float */
.wa-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  z-index: 200;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.wa-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
}

.wa-btn svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* Scroll reveal */
.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Hamburger */

/* Mobile drawer */


/* Responsive */
@media (max-width: 900px) {
  nav {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  section {
    padding: 64px 20px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-left {
    padding: 60px 20px;
  }

  .hero-right {
    height: 280px;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-features {
    grid-template-columns: 1fr 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .process-steps::before {
    display: none;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contact-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .trust-bar {
    padding: 16px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .about-features {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }
}

.services-slider {
  padding-bottom: 20px;
}

.services-slider .swiper-slide {
  height: auto;
}

.services-slider .service-card {
  height: 100%;
}

.services-slider {
  overflow: hidden;
}

.services-slider .swiper-slide {
  height: auto;
}







.services {
  position: relative;
}

.services-next-btn {
  position: absolute;
  top: 62%;
  right: 15px;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 22px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  z-index: 20;
}

.services-prev-btn {
  position: absolute;
  top: 62%;
  left: 15px;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 22px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  z-index: 20;
}

.bg-style h6 {
  /* background: white; */
  /* width: max-content; */
  /* border-radius: 4px; */
  /* padding: 5px 15px 5px 15px; */
  margin-bottom: 14px;
}

.bg-style {
  background-color: #e5e5e5;
  padding: 5px 3px 3px 15px;
  border-radius: 4px;
  margin-top: 10px;
  border: 1px solid rgb(205 205 205);
}

.bg-style P {
  font-weight: 500;
}

.bg-style-1 {
  background-color: #f58837;

}

.bg-style-1 p {
  color: white;
  font-weight: 500;
}

.bg-style {
  background-color: #e5e5e5;
  padding: 5px 3px 3px 15px;
  border-radius: 4px;
  margin-top: 10px;
  border: 1px solid rgb(205 205 205);

  /* mild shadow */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

/* hover effect */
.bg-style:hover {
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.about-matrix {
  padding: 80px 0 20px;
  background: #f8f6f3;
  font-family: 'Cormorant Garamond', serif;
}

/* HEADER */
.about-header {
  text-align: center;
  max-width: 800px;
  margin: auto;
}

.about-header span {
  color: #C4711A;
  letter-spacing: 3px;
  font-size: 22px;
  font-weight: 900;
}

.about-header h1 {
  font-size: 42px;
  margin: 20px 0;
  color: var(--dark);
  font-family: 'Cormorant Garamond', serif;

}

.about-header h1 strong {
  color: #C4711A;
  font-weight: 600;
  font-family: 'Cormorant Garamond', serif;

}

.about-header p {
  color: #000000;
  font-size: 20px;
  line-height: 1.6;
  font-family: 'Cormorant Garamond', serif;
  max-width: 600px;
  margin: auto;

}

/* CARD */
.founder-card {
  margin-top: 20px;
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  display: grid;
  grid-template-columns: 280px 1fr 300px;
  gap: 40px;
  border: 1px solid #eee;
  align-items: center;
}

/* IMAGE */
.founder-img img {
  width: 100%;
  border-radius: 15px;
}

/* CONTENT */
.founder-content h2 {
  font-size: 40px;
  margin: 10px 0 25px;
  color: var(--dark);
  font-family: 'Cormorant Garamond', serif;
  position: relative;
}

.founder-content {
  font-family: "Cormorant Garamond", serif;

}

.founder-content .role {
  color: #C4711A;
  /* gold color */
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 1px;
  font-family: "Cormorant Garamond", serif;

}

.founder-content h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -30px;
  width: 60px;
  /* control line length */
  height: 2px;
  background: #C4711A;
  /* gold color */
  margin: 20px 0;
}


.founder-content p {
  font-size: 20px;
  color: #000000;
  line-height: 1.6;
  font-family: 'Cormorant Garamond', serif;
}

.signature {
  margin-top: 20px;
  font-style: italic;
  color: #C4711A;
}

/* RIGHT STATS */
.founder-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat-box {
  display: flex;
  align-items: center;
  gap: 15px;
  /* padding-bottom: 15px; */
  border-bottom: 1px solid #eee;
}

.stat-box .icon {
  width: 50px;
  height: 50px;
  background: #0f2235;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.stat-box h3 {
  font-size: 35px;
  color: #C4711A;
  font-family: 'Cormorant Garamond', serif;
}

.stat-box p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: #000000;

}


.trusted-box {
  background: #0f2235;
  color: #fff;
  padding: 20px;
  border-radius: 12px;

  display: flex;
  /* KEY */
  align-items: center;
  /* vertical align */
  gap: 15px;
  /* space between icon & text */
}

/* ICON */
.trusted-box i {
  width: 50px;
  height: 50px;
  min-width: 50px;
  /* prevents shrinking */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #C4711A;
  font-size: 18px;
}

/* TEXT */
.trusted-box p {
  font-size: 18px;
  font-family: 'Cormorant Garamond', serif;
  color: #fff;
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 576px) {
  .trusted-box {
    gap: 10px;
  }

  .trusted-box p {
    font-size: 16px;
  }

  .trusted-box i {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

/* STATS */

.founder-stats {
  background: #f3f0ea;
  padding: 30px 0 0 15px;
  border-radius: 10px;
  border: 1px solid #00000021;
}

.stat {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.stat:last-child {
  margin-bottom: 0;
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: #e6e3da;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.stat-icon img {
  width: 22px;
}

.stat h3 {
  margin: 0;
  font-size: 36px;
  line-height: 38px;
  color: #C4711A;
  font-family: 'Cormorant Garamond', serif;
}

.stat-icon i {
  font-size: 24px;
}

.stat p {
  margin: 0;
  font-size: 19px;
  color: #1e1e1e;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}


/* TEAM */

.team-section {
  text-align: center;
  margin-top: 20px;
}

.team-section h2 {
  font-size: 28px;
  margin-bottom: 10px;
  font-family: 'Cormorant Garamond', serif;
}

.team-desc {
  max-width: 1000px;
  margin: auto;
  color: #272727;
  font-size: 23px;
  font-family: 'Cormorant Garamond', serif;
}


.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #e6e6e6;
}

.team-box {
  text-align: center;
}

.team-box img {
  width: 40px;
  margin-bottom: 10px;
}

.team-box h4 {
  margin: 5px 0;
  font-size: 15px;
  font-family: 'Cormorant Garamond', serif;
}

.team-box p {
  font-size: 13px;
  color: #777;
  font-family: 'Cormorant Garamond', serif;
}





















@media (max-width: 767px) {
  .about-header {
    display: block !important;
  }

  .section-headline {
    font-size: clamp(30px, 4vw, 52px);
  }

  .about-features {
    display: block;
  }

  .about-feat {
    margin-bottom: 10px;
  }

  .about-desc {
    font-size: 16px;
  }

  .services-head {
    display: block;
  }

  .section-padding {
    padding: 10px 15px;
  }

  section {
    padding: 25px 20px;
  }

  #home-1 .hero-area-banner h1 {
    font-size: 70px;
    line-height: 60px;
  }


  #home-1 .section-title span {
    color: #ffffff;
    font-size: 75px;

  }

  .founder-section {
    display: flow;
  }

  .section-tag {
    font-size: 28px;
  }

}



@media (min-width: 767px) and (max-width: 1130px) {
  #home-1 .hero-area-banner h1 {
    font-size: 70px;
    line-height: 60px;
  }

  .founder-section {
    grid-template-columns: 280px 1fr;
  }

  /* stats move to next row */
  .founder-stats {
    grid-column: 1 / -1;
    justify-self: center;
    /* center horizontally */
    max-width: 350px;
    width: 100%;
  }

  #home-1 .section-title span {
    color: #ffffff;
    font-size: 75px;

  }
}

@media (min-width: 330px) and (max-width: 680px) {
  #home-1 .hero-area-banner h1 {
    font-size: 33px;
    line-height: 60px;
  }


  #home-1 .section-title span {
    color: #ffffff;
    font-size: 51px;
  }
}





/* our team */

/* SECTION */
.our-team {
  padding: 30px 0;
  background: #f4f1ec;
  display: flex;
  justify-content: center;
}

/* CARD */
.team-card {
  width: 1260px;
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1.1fr;
  background: linear-gradient(135deg, #0f2235, #0b1a2a);
  position: relative;
}

/* LEFT SIDE */
.team-left {
  padding: 60px;
  color: #fff;
  position: relative;
}

/* SMALL TAG */
.tag {
  font-size: 22px;
  color: #C4711A;
  letter-spacing: 2px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 900;
}

.tag i {
  margin-right: 8px;
}

/* HEADING */
.team-left h2 {
  font-size: 40px;
  margin: 20px 0;
  color: #C4711A;

  font-family: 'Cormorant Garamond', serif;
}

/* GOLD LINE */
.line {
  width: 50px;
  height: 2px;
  background: #C4711A;
  margin-bottom: 20px;
}

/* TEXT */
.team-left p {
  font-size: 20px;
  line-height: 1.2;
  color: #d1d5db;
  max-width: 420px;
  font-family: 'Cormorant Garamond', serif;

}

/* RIGHT IMAGE */
.team-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-bottom-left-radius: 20px;
  /* ONLY this corner */

}



/* ANGLED DIVIDER LINE */
.team-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 45%;
  width: 2px;
  height: 100%;
  background: #C4711A;
  transform: rotate(10deg);
  transform-origin: top;
}

/* ROUNDED IMAGE CORNER LOOK */
.team-right {
  overflow: hidden;
}

.team-right {
  position: relative;
  overflow: hidden;
}

.team-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* MAIN SHAPE */
  clip-path: polygon(12% 0%,
      /* top-left cut */
      100% 0%,
      100% 100%,
      0% 100%
      /* bottom straight */
    );
}

@media (max-width: 992px) {
  .team-card {
    grid-template-columns: 1fr;
  }

  .team-card::after {
    display: none;
  }

  .team-left {
    padding: 40px;
  }

  .team-left h2 {
    font-size: 28px;
  }
}




.counter{
  padding: 20px 0;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eee;
}

/* Tablet */
@media (max-width: 992px) {
  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .counter-grid {
    grid-template-columns: 1fr;
  }
}

.counter-card {
  background: #fff;
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-right: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

/* Remove extra borders */
.counter-card:nth-child(4n) {
  border-right: none;
}

.counter-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.counter-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0f2040;
  display: flex;
  align-items: center;
  justify-content: center;
}

.counter-icon svg {
  width: 22px;
  height: 22px;
  stroke: #C4711A;
  fill: none;
  stroke-width: 2;
}

.counter-icon i {
  font-size: 22px;
  color: #C4711A;
}

.counter-text {
  display: flex;
  flex-direction: column;
}

.counter-number {
  font-size: 40px;
  font-weight: 600;
  color: #C4711A;
}

.counter-number.small-text {
  font-size: 24px;
  line-height: 1.3;
}

.counter-label {
  font-size: 18px;
  color: #000000;
      font-weight: 700;
}

.counter-desc {
  font-size: 18px;
  color: #000000;
  border-top: 1px solid #eee;
  padding-top: 10px;
}

/* Mobile tweaks */
@media (max-width: 576px) {
  .counter-number {
    font-size: 35px;
  }

  .counter-icon {
    width: 40px;
    height: 40px;
  }
}