/* ============================================================
   BRAND MENTOR – NIKHIL KOTHARE
   style.css | Bootstrap 5 + Custom
   ============================================================ */

/* ============================================================
   01. CSS VARIABLES
   ============================================================ */
:root {
  --primary: #ffc800;
  --primary-hover: #e6b400;
  --primary-light: rgba(255, 200, 0, 0.12);
  --dark: #111111;
  --dark-2: #1a1a1a;
  --dark-3: #222222;
  --gray: #555555;
  --gray-light: #888888;
  --border: #e8e8e8;
  --light-bg: #f9f9f9;
  --white: #ffffff;

  --ff-heading: "Poppins", sans-serif;
  --ff-body: "Inter", sans-serif;

  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 6px 28px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.14);
  --shadow-yellow: 0 8px 32px rgba(255, 200, 0, 0.3);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   02. RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--ff-body);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ff-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

a:hover {
  color: var(--primary);
}

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

p {
  line-height: 1.75;
}

.section-pad {
  padding-top: 100px;
  padding-bottom: 100px;
}

/* ============================================================
   03. REUSABLE COMPONENTS
   ============================================================ */

/* Section Tag */
.section-tag {
  display: inline-block;
  font-family: var(--ff-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-hover);
  background: var(--primary-light);
  border: 1px solid rgba(255, 200, 0, 0.25);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-tag--dark {
  color: var(--dark);
  background: rgba(255, 200, 0, 0.25);
  border-color: var(--primary);
}

/* Section Header */
.section-header {
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
}

/* Text Highlight */
.text-highlight {
  color: var(--primary-hover);
  position: relative;
  display: inline-block;
}

.text-highlight::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  opacity: 0.5;
}

/* Buttons */
.btn-primary-yellow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--dark);
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-yellow);
  transition: all var(--transition);
}

.btn-primary-yellow:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  color: var(--dark);
  box-shadow: 0 10px 36px rgba(255, 200, 0, 0.45);
  transform: translateY(-2px);
}

.btn-outline-dark-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--dark);
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  border: 2px solid var(--dark);
  transition: all var(--transition);
}

.btn-outline-dark-custom:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================================
   04. HEADER / NAVBAR
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--transition);
}

#mainNav {
  padding: 20px 0;
  background: #fdce1a;
  transition: all var(--transition);
}

#mainNav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  padding: 12px 0;
}

.nav-logo {
  height: 68px;
  width: auto;
  object-fit: contain;
}

.navbar-nav .nav-link {
  font-family: var(--ff-heading);
  font-size: 15px;
  font-weight: 400;
  color: var(--dark);
  padding: 8px 14px !important;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: width var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 60%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--dark);
}

/* Hero transparent nav — white text */
#mainNav:not(.scrolled) .nav-link {
  color: var(--dark);
}

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  font-family: var(--ff-heading);
  font-size: 0.88rem;
  font-weight: 600;
  background: var(--dark);
  color: var(--white);
  border: 2px solid var(--dark);
  padding: 10px 22px;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-nav-cta:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-yellow);
}

/* Custom Toggler */
.navbar-toggler {
  border: none;
  background: transparent;
  padding: 4px;
}

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

.toggler-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.toggler-icon span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============================================================
   05. HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  background: var(--primary);
  overflow: hidden;
  min-height: 100vh;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-container {
  position: relative;
  z-index: 1;
}

.hero-content {
  padding-top: 190px;
  padding-bottom: 120px;
}

.hero-badge {
  display: inline-block;
  font-family: var(--ff-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.08);
  color: var(--dark);
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 95px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 20px;
}

.hero-title .text-highlight::after {
  opacity: 0.4;
  height: 5px;
  bottom: 4px;
}

.hero-desc {
  font-size: 16px;
  color: #00000080;
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.6;
}

/* Hero CTA Buttons */
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark);
  color: var(--white);
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 30px;
  border-radius: var(--radius-md);
  border: 2px solid var(--dark);
  transition: all var(--transition);
}

.btn-hero-primary:hover {
  background: transparent;
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  color: #131313;
  font-family: var(--ff-heading);
  /* font-weight: 600; */
  font-size: 15px;
  padding: 15px 18px;
  border-radius: 12px;
  /* border: 2px solid rgba(17,17,17,.35); */
  transition: all var(--transition);
}

.btn-hero-outline:hover {
  background: #fcc900;
  border-color: var(--dark);
  /* color: #000000; */
  /* transform: translateY(-3px); */
}

.btn-hero-outline img {
  transition: all 0.3s ease;
}

.btn-hero-outline:hover img {
  transform: rotate(45deg);
}

/* Hero Trust Bar */
.hero-trust {
  margin-top: 40px;
  flex-wrap: wrap;
  gap: 16px !important;
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-item strong {
  font-family: var(--ff-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}

.trust-item span {
  font-size: 0.8rem;
  color: rgba(17, 17, 17, 0.6);
  font-weight: 500;
  margin-top: 3px;
}

.trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(17, 17, 17, 0.2);
}

/* Hero Image */
.hero-image-col {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding-top: 183px;
}

.hero-photo-wrap {
  position: relative;
  display: inline-block;
  max-width: 650px;
  width: 100%;
}

.hero-photo {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.25));
  position: relative;
  z-index: 1;
}

.hero-avatar-badge {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.15),
    inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

/* LEFT BADGE */
.badge-left {
  left: 18px;
  bottom: 255px;
  /* animation: float 3s ease-in-out infinite; */
}

/* RIGHT BADGE */
.badge-right {
  right: -40px;
  bottom: 200px;
  /* animation: float2 4s ease-in-out infinite; */
}

/* ICON */
.hero-avatar-badge i {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #000000;
  /* font-size: 20px; */
  flex-shrink: 0;
}

/* TEXT */
.mentor-badge-content {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.mentor-badge-content span {
  color: #131313;
  font-size: 13px;
  /* text-transform: uppercase; */
  /* letter-spacing: 1px; */
}

.mentor-badge-content strong {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes float2 {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }
}

@media (max-width: 991px) {
  .badge-left {
    left: 10px;
    bottom: 30px;
  }

  .badge-right {
    right: 10px;
    top: 20px;
    bottom: auto;
  }

  .hero-avatar-badge {
    padding: 8px 12px;
    max-width: 180px;
  }

  .hero-avatar-badge i {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .mentor-badge-content span {
    font-size: 10px;
    line-height: 1.3;
  }

  .mentor-badge-content strong {
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .hero-photo-wrap {
    position: relative;
    width: 100%;
    max-width: 320px;
    margin: auto;
  }

  .badge-left {
    left: 5px;
    bottom: 20px;
  }

  .badge-right {
    right: 5px;
    top: 150px;
  }

  .hero-avatar-badge {
    padding: 6px 10px;
    border-radius: 50px;
    max-width: 150px;
  }

  .hero-avatar-badge i {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .mentor-badge-content span {
    font-size: 9px;
    letter-spacing: 0;
  }
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s ease-in-out infinite;
}

.hero-scroll-hint a {
  font-size: 1.5rem;
  color: rgba(17, 17, 17, 0.4);
  transition: color var(--transition);
}

.hero-scroll-hint a:hover {
  color: var(--dark);
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ==========================================
   VISION SECTION
========================================== */

.vision-section {
  background: #f4f4f4;
  overflow: hidden;
}

.vision-left {
  height: 100%;
}

.vision-left img {
  width: 100%;
  height: 100%;
  min-height: 700px;
  object-fit: cover;
  display: block;
}

.vision-right {
  height: 100%;
  /* display: flex; */
  flex-direction: column;
  justify-content: center;
  padding: 50px;
  position: relative;
}

/* Top Logo Image */
.vision-logo {
  margin-bottom: 40px;
  position: absolute;
}

.vision-logo img {
  width: 100%;
  max-width: 650px;
  display: block;
}

/* Content */
.vision-content {
  max-width: 420px;
  margin-top: 170px;
}

.vision-content p {
  font-size: 17px;
  line-height: 1.5;
  color: #777;
  margin-bottom: 11px;
  font-weight: 300;
}

/* Button */
.vision-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border: 1px solid #d5d5d5;
  border-radius: 14px;
  background: #fff;
  color: #131313;
  font-weight: 400;
  transition: 0.3s ease;
  font-size: 15px;
  z-index: 1;
  position: absolute;
}

.vision-btn:hover {
  background: #fcc900;
  color: #000000;
}

.vision-btn img {
  transition: all 0.3s ease;
  width: 11px;
}

.vision-btn:hover img {
  transform: rotate(45deg);
  color: #fff;
}

.vision-btn i {
  font-size: 16px;
}

/* ==========================================
   LARGE DESKTOP
========================================== */

@media (min-width: 1600px) {
  .vision-right {
    padding: 120px;
  }

  .vision-logo img {
    max-width: 800px;
  }

  .vision-content p {
    font-size: 20px;
  }

  .vision-content {
    max-width: 420px;
    margin-top: 210px;
  }
}

/* ==========================================
   LAPTOP
========================================== */

@media (max-width: 1199px) {
  .vision-right {
    padding: 60px;
  }

  .vision-logo img {
    max-width: 500px;
  }

  .vision-content p {
    font-size: 20px;
  }
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {
  .vision-left img {
    min-height: auto;
    height: 500px;
  }

  .vision-right {
    padding: 50px 40px;
    text-align: start;
    align-items: center;
  }

  .vision-content {
    max-width: 100%;
  }

  .vision-logo {
    margin-bottom: 150px;
    /* margin-top: 90px; */
  }

  .vision-logo img {
    max-width: 450px;
    margin: auto;
  }
}

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

@media (max-width: 767px) {
  .vision-left img {
    height: 350px;
  }

  .vision-right {
    padding: 40px 20px;
  }

  .vision-logo img {
    max-width: 100%;
  }

  .vision-content p {
    font-size: 16px;
    line-height: 1.7;
  }

  .vision-btn {
    /* width: 100%; */
    justify-content: center;
  }
}

/* ============================================================
   06. STATS SECTION
   ============================================================ */
.stats-section {
  background: var(--dark);
  padding: 0;
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
}

.stat-item {
  padding: 48px 24px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: background var(--transition);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item:hover {
  background: rgba(255, 200, 0, 0.06);
}

.stat-number {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 8px;
}

.counter {
  font-family: var(--ff-heading);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-plus {
  font-family: var(--ff-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-family: var(--ff-heading);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0;
}

/* ============================================================
   07. SERVICES SECTION
   ============================================================ */
/* ==========================
   IMPACT SECTION
========================== */

.impact-section {
  background: #f5f5f5;
  padding: 100px 0;
}

.impact-top {
  max-width: 840px;
  margin-bottom: 60px;
}

.impact-label {
  /* display: block; */
  font-size: 18px;
  color: #999;
  margin-bottom: 15px;
  padding-right: 100px;
}

.impact-heading {
  font-size: 45px;
  line-height: 1.5;
  letter-spacing: -1px;
  font-weight: 300;
  color: #8e8e8e;
}

.impact-heading strong {
  font-weight: 400;
}

.impact-list {
  width: 100%;
}

/* .impact-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 28px 0;
    border-bottom: 1px solid #e6e6e6;
} */

.impact-item {
  border-bottom: 1px solid #e6e6e6;
  padding: 28px 0;
}

.impact-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

/* .impact-left {
    display: flex;
    align-items: center;
    gap: 30px;
} */

.impact-left {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  flex: 1;
}

.impact-number {
  font-size: 42px;
  font-weight: 300;
  color: #ffc400;
  min-width: 55px;
}

.impact-left h3 {
  margin: 0;
  font-size: 42px;
  font-weight: 300;
  color: #a3a3a3;
  transition: 0.4s;
}

.impact-item:hover h3 {
  color: #000000 !important;
}

/* Right Dot */

.impact-preview {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #cfcfcf;
  overflow: hidden;
  transition: all 0.5s ease;
  flex-shrink: 0;
}

/* Hover Effect */

.impact-item:hover .impact-preview {
  width: 300px;
  height: 200px;
  border-radius: 18px;
}

.impact-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: 0.4s;
}

.impact-item:hover .impact-preview img {
  opacity: 1;
}

/* Mobile hidden */

.impact-mobile-image {
  display: none;
}

/* Left Content Wrapper */

/* .impact-content{
    display:flex;
    flex-direction:column;
} */

.impact-content {
  flex: 1;
}

/* Hidden Paragraph */

/* .impact-desc{
    max-width:600px;
    font-size:16px;
    line-height:1.7;
    color:#777;
    margin-top:12px;

    opacity:0;
    max-height:0;
    overflow:hidden;

    transform:translateY(-10px);
    transition:all .45s ease;
} */

/* Show on Hover */

/* .impact-item:hover .impact-desc{
    opacity:1;
    max-height:120px;
    transform:translateY(0);
} */

.impact-desc {
  max-width: 550px;

  font-size: 16px;
  line-height: 1.7;
  color: #777;

  margin-top: 12px;
  margin-bottom: 0;

  opacity: 0;
  max-height: 0;
  overflow: hidden;

  transform: translateY(-10px);

  transition:
    opacity 0.4s ease,
    max-height 0.4s ease,
    transform 0.4s ease;
}

.impact-item:hover .impact-desc {
  opacity: 1;
  max-height: 120px;
  transform: translateY(0);
}

/* ==========================================
   LARGE LAPTOP (1400px)
========================================== */

@media (max-width: 1400px) {
  .impact-heading {
    font-size: 40px;
  }

  .impact-left h3 {
    font-size: 36px;
  }

  .impact-number {
    font-size: 36px;
  }

  .impact-item:hover .impact-preview {
    width: 300px;
    height: 200px;
  }
}

/* ==========================================
   LAPTOP (1200px)
========================================== */

@media (max-width: 1199px) {
  .impact-section {
    padding: 80px 0;
  }

  .impact-top {
    margin-bottom: 50px;
  }

  .impact-heading {
    font-size: 36px;
  }

  .impact-left h3 {
    font-size: 32px;
  }

  .impact-number {
    font-size: 32px;
    min-width: 45px;
  }

  .impact-item:hover .impact-preview {
    width: 220px;
    height: 150px;
  }

  .impact-desc {
    max-width: 500px;
    font-size: 15px;
  }
}

/* ==========================================
   TABLET LANDSCAPE
========================================== */

@media (max-width: 991px) {
  .impact-section {
    padding: 70px 0;
  }

  .impact-label {
    display: block;
    padding-right: 0;
    margin-bottom: 15px;
  }

  .impact-heading {
    font-size: 32px;
    line-height: 1.4;
  }

  .impact-main {
    gap: 20px;
  }

  .impact-left {
    gap: 20px;
  }

  .impact-left h3 {
    font-size: 26px;
  }

  .impact-number {
    font-size: 26px;
    min-width: 35px;
  }

  .impact-item:hover .impact-preview {
    width: 180px;
    height: 120px;
  }

  .impact-desc {
    max-width: 420px;
    font-size: 14px;
  }
}

/* ==========================================
   MOBILE & TABLET
========================================== */

@media (max-width: 767px) {
  .impact-section {
    padding: 60px 0;
  }

  .impact-top {
    margin-bottom: 40px;
  }

  .impact-label {
    display: block;
    padding-right: 0;
    margin-bottom: 10px;
    font-size: 16px;
  }

  .impact-heading {
    font-size: 28px;
    line-height: 1.4;
  }

  .impact-item {
    padding: 24px 0;
  }

  .impact-main {
    display: block;
  }

  .impact-left {
    gap: 15px;
  }

  .impact-number {
    font-size: 22px;
    min-width: 30px;
    margin-top: 2px;
  }

  .impact-left h3 {
    font-size: 22px;
    color: #000;
  }

  /* Hover image hide */

  .impact-preview {
    display: none;
  }

  /* Description always visible */

  .impact-desc {
    opacity: 1;
    max-height: 500px;
    overflow: visible;
    transform: none;
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.7;
  }

  /* Mobile image show */

  .impact-mobile-image {
    display: block;
    margin-top: 18px;
    margin-left: 45px;
  }

  .impact-mobile-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
  }
}

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

@media (max-width: 575px) {
  .impact-section {
    padding: 50px 0;
  }

  .impact-heading {
    font-size: 24px;
  }

  .impact-left h3 {
    font-size: 20px;
    line-height: 1.3;
  }

  .impact-number {
    font-size: 20px;
    min-width: 28px;
  }

  .impact-desc {
    font-size: 13px;
  }

  .impact-mobile-image {
    margin-left: 0;
    margin-top: 15px;
  }

  .impact-mobile-image img {
    height: 200px;
  }
}

/* ==========================================
   EXTRA SMALL MOBILE
========================================== */

@media (max-width: 380px) {
  .impact-heading {
    font-size: 22px;
  }

  .impact-left h3 {
    font-size: 18px;
  }

  .impact-number {
    font-size: 18px;
  }

  .impact-mobile-image img {
    height: 180px;
  }
}

/* =================================
   HAND HOLDING SECTION
================================= */

/* .handholding-section {
    background: #f4f4f4;
    padding: 0 0 120px;
    overflow: hidden;
}

.handholding-title {
    text-align: center;
    font-size: 60px;
    font-weight: 300;
    color: #111;
    margin-bottom: 100px;
} */

/* =================================
   TIMELINE WRAPPER
================================= */

/* .timeline-wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 700px;
} */

/* =================================
   FULL WIDTH YELLOW LINE
================================= */

/* .timeline-line {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 50px;
    background: #ffc800;
    z-index: 1;
} */

/* =================================
   ITEMS
================================= */

/* .timeline-item {
    width: 20%;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.timeline-content {
    max-width: 220px;
    text-align: center;
}

.timeline-icon {
    width: 52px;
    margin: 0 auto 18px;
}

.timeline-icon img {
    width: 100%;
    display: block;
}

.timeline-content h4 {
    font-size: 18px;
    font-weight: 500;
    color: #222;
    margin-bottom: 12px;
}

.timeline-content p {
    font-size: 14px;
    line-height: 1.8;
    color: #888;
    margin: 0;
} */

/* =================================
   TOP ITEMS
================================= */

/* .timeline-item.top {
    align-self: flex-start;
    padding-bottom: 320px;
} */

/* =================================
   BOTTOM ITEMS
================================= */

/* .timeline-item.bottom {
    align-self: flex-end;
    padding-top: 320px;
} */

/* =================================
   DIAMOND
================================= */

/* .timeline-diamond {
    position: absolute;
    width: 64px;
    height: 64px;
    background: #ffd84d;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    z-index: 4;
}

.timeline-diamond span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-45deg);
    font-size: 18px;
    font-weight: 600;
    color: #111;
} */

/* All diamonds centered on yellow strip */

/* .timeline-item.top .timeline-diamond,
.timeline-item.bottom .timeline-diamond {
    top: 50%;
    margin-top: -32px;
} */

/* .timeline-item:nth-child(2) .timeline-diamond{
    top:50%;
    margin-top:-110px;
}

.timeline-item:nth-child(3) .timeline-diamond{
    top:50%;
    margin-top: 66px;
}

.timeline-item:nth-child(4) .timeline-diamond{
    top:50%;
    margin-top: -128px;
}

.timeline-item:nth-child(5) .timeline-diamond{
    top:50%;
    margin-top: 66px;
}

.timeline-item:nth-child(6) .timeline-diamond{
    top:50%;
    margin-top:-124px;
} */

/* =================================
   LARGE DESKTOP
================================= */

/* @media(min-width:1600px) {

    .timeline-content {
        max-width: 260px;
    }

    .timeline-content h4 {
        font-size: 22px;
    }

    .timeline-content p {
        font-size: 15px;
    }
} */

/* =================================
   LAPTOP
================================= */

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

    .handholding-title {
        font-size: 52px;
    }

    .timeline-content {
        max-width: 180px;
    }

    .timeline-content h4 {
        font-size: 16px;
    }

    .timeline-content p {
        font-size: 13px;
    }
} */

/* =================================
   TABLET & MOBILE
================================= */

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

    .handholding-section {
        padding: 40px 0;
    }

    .handholding-title {
        font-size: 42px;
        margin-bottom: 60px;
    }

    .timeline-wrapper {
        display: block;
        min-height: auto;
        margin: 0px 0 0 25px;
    }

    .timeline-line {
        width: 8px;
        height: 100%;
        top: 0;
        left: 0;
        transform: none;
    }

    .timeline-item {
        width: 100%;
        margin-bottom: 60px;
        padding: 0 !important;
        justify-content: flex-start;
    }

    .timeline-content {
        max-width: 100%;
        text-align: left;
        padding-left: 50px;
    }

    .timeline-content h4 {
        font-size: 22px;
    }

    .timeline-content p {
        font-size: 15px;
    }

    .timeline-diamond {
        width: 50px;
        height: 50px;
        left: -21px;
        top: 25px !important;
        bottom: auto !important;
        transform: rotate(45deg);
    }

    .timeline-diamond span {
        font-size: 15px;
    }

    .timeline-icon {
        width: 45px;
        margin: 0 0 15px;
    }
} */

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

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

    .handholding-title {
        font-size: 34px;
    }

    .timeline-content h4 {
        font-size: 18px;
    }

    .timeline-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .timeline-diamond {
        width: 42px;
        height: 42px;
        left: -17px;
    }

    .timeline-diamond span {
        font-size: 13px;
    }

    .timeline-icon {
        width: 40px;
    }
} */

/* =================================
   HAND HOLDING SECTION
================================= */

.handholding-section {
  background: #f4f4f4;
  padding: 0 0 120px;
  overflow: hidden;
}

.handholding-title {
  text-align: center;
  font-size: 60px;
  font-weight: 300;
  color: #111;
  margin-bottom: 100px;
}

/* =================================
   TIMELINE WRAPPER
================================= */

.timeline-wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  /* every item now stretches to full wrapper height
                              so "top:50%" inside an item == the yellow line's center */
  min-height: 700px;
}

/* =================================
   FULL WIDTH YELLOW LINE
================================= */

.timeline-line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 50px;
  background: #ffc800;
  z-index: 4;
}

/* =================================
   ITEMS
================================= */

.timeline-item {
  width: 20%;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.timeline-content {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  max-width: 220px;
  text-align: center;
}

/* TOP items -> content sits ABOVE the line */
.timeline-item.top .timeline-content {
  bottom: 50%;
  margin-bottom: 90px;
  width: 75%;
}

/* BOTTOM items -> content sits BELOW the line */
.timeline-item.bottom .timeline-content {
  top: 50%;
  margin-top: 90px;
  width: 75%;
}

.timeline-icon {
  width: 52px;
  margin: 0 auto 18px;
}

.timeline-icon img {
  width: 100%;
  display: block;
}

.timeline-content h4 {
  font-size: 18px;
  font-weight: 500;
  color: #222;
  margin-bottom: 12px;
}

.timeline-content p {
  font-size: 14px;
  line-height: 1.8;
  color: #888;
  margin: 0;
}

/* =================================
   DIAMOND
================================= */

.timeline-diamond {
  position: absolute;
  width: 64px;
  height: 64px;
  background: #ffd84d;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) rotate(45deg);
  z-index: 4;
}

.timeline-diamond span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: start;
  justify-content: center;
  transform: rotate(-45deg);
  font-size: 18px;
  font-weight: 600;
  color: #111;
}

/* TOP diamonds (2, 4) -> number normal alignment */
.timeline-item.top .timeline-diamond span {
  align-items: normal;
}

/* BOTTOM diamonds (1, 3, 5) -> number centered */
.timeline-item.bottom .timeline-diamond span {
  align-items: end;
}

/* TOP diamonds: nudged up so they sit half tucked into the line, half above it */
.timeline-item.top .timeline-diamond {
  margin-top: -57px;
  /* -32 (self-center) + -25 (push above line) */
}

/* BOTTOM diamonds: nudged down so they sit half tucked into the line, half below it */
.timeline-item.bottom .timeline-diamond {
  margin-top: -7px;
  /* -32 (self-center) + 25 (push below line) */
}

/* =================================
   LARGE DESKTOP
================================= */

@media (min-width: 1600px) {
  .timeline-content {
    max-width: 260px;
  }

  .timeline-content h4 {
    font-size: 22px;
  }

  .timeline-content p {
    font-size: 15px;
  }
}

/* =================================
   LAPTOP
================================= */

@media (max-width: 1200px) {
  .handholding-title {
    font-size: 52px;
  }

  .timeline-content {
    max-width: 180px;
  }

  .timeline-content h4 {
    font-size: 16px;
  }

  .timeline-content p {
    font-size: 13px;
  }
}

/* =================================
   TABLET & MOBILE
================================= */

@media (max-width: 991px) {
  .handholding-section {
    padding: 40px 0;
  }

  .handholding-title {
    font-size: 42px;
    margin-bottom: 60px;
  }

  .timeline-wrapper {
    display: block;
    min-height: auto;
    margin: 0px 0 0 25px;
  }

  .timeline-line {
    width: 8px;
    height: 100%;
    top: 0;
    left: 0;
    transform: none;
    z-index: 1;
  }

  .timeline-item {
    width: 100%;
    margin-bottom: 60px;
    padding: 0 !important;
    justify-content: flex-start;
  }

  /* undo the desktop zigzag positioning so content goes back to normal flow */
  .timeline-content {
    position: static;
    left: auto;
    transform: none;
    max-width: 100%;
    text-align: left;
    padding-left: 50px;
  }

  .timeline-item.top .timeline-content,
  .timeline-item.bottom .timeline-content {
    bottom: auto;
    top: auto;
    margin: 0;
    width: 100%;
  }

  .timeline-content h4 {
    font-size: 22px;
  }

  .timeline-content p {
    font-size: 15px;
  }

  .timeline-diamond {
    width: 50px;
    height: 50px;
    left: -21px;
    top: 25px !important;
    bottom: auto !important;
    transform: rotate(45deg);
  }

  /* undo the desktop top/bottom diamond offset, restore single centered value */
  .timeline-item.top .timeline-diamond,
  .timeline-item.bottom .timeline-diamond {
    margin-top: -32px;
  }

  .timeline-diamond span {
    font-size: 15px;
  }

  .timeline-icon {
    width: 45px;
    margin: 0 0 15px;
  }

  /* TOP diamonds (2, 4) -> number normal alignment */
  .timeline-item.top .timeline-diamond span {
    align-items: center;
  }

  /* BOTTOM diamonds (1, 3, 5) -> number centered */
  .timeline-item.bottom .timeline-diamond span {
    align-items: center;
  }
}

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

@media (max-width: 767px) {
  .handholding-title {
    font-size: 34px;
  }

  .timeline-content h4 {
    font-size: 18px;
  }

  .timeline-content p {
    font-size: 14px;
    line-height: 1.7;
  }

  .timeline-diamond {
    width: 42px;
    height: 42px;
    left: -17px;
  }

  .timeline-diamond span {
    font-size: 13px;
  }

  .timeline-icon {
    width: 40px;
  }
}

/* ==================================
   PROGRAM SECTION
================================== */

.programs-section {
  padding: 0px 0 100px 0;
  background: #f4f4f4;
}

.programs-title {
  text-align: center;
  font-size: 56px;
  font-weight: 300;
  color: #111;
  margin-bottom: 60px;
}

/* Tabs */

.program-tabs {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 70px;
  flex-wrap: wrap;
  border-bottom: 0.4px solid #80808042;
}

.program-tab {
  background: none;
  border: none;
  cursor: pointer;
  color: #999;
  font-size: 18px;
  line-height: 1.5;
  padding-bottom: 15px;
  position: relative;
  transition: 0.3s;
}

.program-tab.active {
  color: #111;
}

.program-tab.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #111;
}

/* Content */

.program-content {
  display: flex;
  align-items: center;
  gap: 80px;
}

.program-image {
  width: 45%;
}

.program-image img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

.program-info {
  width: 55%;
}

.program-info h3 {
  font-size: 33px;
  font-weight: 300;
  color: #111;
  margin-bottom: 10px;
}

.program-subtitle {
  display: block;
  color: #777;
  font-size: 13px;
  margin-bottom: 10px;
  margin-top: 20px;
}

.program-text {
  color: #666;
  line-height: 1.8;
  margin-bottom: 35px;
  font-size: 13px;
}

/* Points */

/* .program-points {
    border-left: 0.5px solid #11111165;
    padding-left: 30px;
} */

.program-points {
  position: relative;
  padding-left: 40px;
}

.program-points::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: #11111165;
}

/* .point-block {
    margin-bottom: 30px;
} */

.point-block {
  position: relative;
  margin-bottom: 35px;
}

.point-block::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 8px;

  width: 14px;
  height: 14px;

  background: #111;
  border-radius: 50%;
}

.point-block h4 {
  font-size: 17px;
  margin-bottom: 10px;
  color: #4d4d4d;
  font-weight: 500;
}

.point-block ul {
  padding-left: 18px;
  margin: 0;
  font-size: 12px;
}

.point-block li {
  color: #777;
  line-height: 2.5;
}

.point-block p {
  color: #777;
  line-height: 1.8;
  margin: 0;
  font-size: 12px;
}

/* ==========================
   TABLET
========================== */

@media (max-width: 991px) {
  .program-content {
    flex-direction: column;
    gap: 50px;
  }

  .program-image,
  .program-info {
    width: 100%;
  }

  .program-info h3 {
    font-size: 38px;
  }

  .program-tabs {
    gap: 25px;
  }
}

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

@media (max-width: 767px) {
  .programs-section {
    padding: 0px 0;
  }

  .programs-title {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .program-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    /* padding-bottom: 10px; */
  }

  .program-tab {
    white-space: nowrap;
    font-size: 14px;
  }

  .program-info h3 {
    font-size: 22px;
  }

  .program-points {
    padding-left: 20px;
  }

  .point-block::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 8px;

    width: 14px;
    height: 14px;

    background: #111;
    border-radius: 50%;
  }
}

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

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 22px 20px;

  min-height: 340px;
  height: 340px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  position: relative;
  overflow: hidden;

  border-left: 4px solid #ffc800;
  border-bottom: 4px solid #ffc800;

  transition: 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

/* Bottom Right Yellow Corner */

.testimonial-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 24px;
  height: 24px;
  background: #ffc800;
  clip-path: polygon(-28% 0, 58% 100%, 0 100%);
}

/* Quote */

.quote-text {
  font-size: 14px;
  line-height: 1.9;
  color: #666;
  font-weight: 400;
}

/* Client Info */

.client-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 25px;
}

.client-image {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.client-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.client-details h5 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #222;
  line-height: 1.2;
}

.client-details span {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  color: #999;
  line-height: 1.4;
}

/* ==========================
   TABLET
========================== */

@media (max-width: 991px) {
  .testimonial-card {
    height: 320px;
    min-height: 320px;
  }
}

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

@media (max-width: 767px) {
  .testimonial-card {
    height: auto;
    min-height: 280px;
    padding: 22px 18px;
  }

  .quote-text {
    font-size: 13px;
    line-height: 1.8;
  }

  .client-image {
    width: 38px;
    height: 38px;
  }

  .client-details h5 {
    font-size: 13px;
  }

  .client-details span {
    font-size: 11px;
  }
}

/* ==========================
   TRANSFORMATION SECTION
========================== */

.transformation-section {
  background: #f5f5f5;
  padding: 0px 0 70px 0;
}

.transformation-title {
  text-align: center;
  font-size: 52px;
  font-weight: 300;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 20px;
}

.transformation-subtitle {
  max-width: 600px;
  margin: 0 auto 70px;
  text-align: center;
  color: #888;
  font-size: 15px;
  line-height: 1.8;
}

/* Slider */

.transformation-slider {
  position: relative;
  padding: 0 45px;
}

/* Card */

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 22px 20px;
  position: relative;

  min-height: 340px;
  height: 340px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  overflow: hidden;
}

/* Left Yellow Border */

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #ffc800;
}

/* Bottom Corner */

.testimonial-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;

  width: 0;
  height: 0;

  border-style: solid;
  border-width: 0 0 24px 24px;
  border-color: transparent transparent #ffc800 transparent;
}

/* Quote */

.quote-text {
  font-size: 14px;
  line-height: 1.9;
  color: #666;
}

/* User */

.client-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 15px;
}

.client-image {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

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

.client-details h5 {
  margin: 0;
  font-size: 14px;
  color: #222;
  font-weight: 600;
}

.client-details span {
  display: block;
  margin-top: 3px;
  color: #999;
  font-size: 12px;
}

/* Navigation */

.swiper-button-prev,
.swiper-button-next {
  width: 40px;
  height: 40px;
  color: #222;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 18px !important;
  font-weight: 700;
  color: #000000;
}

/* ==========================
   TABLET
========================== */

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

  .testimonial-card {
    min-height: 300px;
    height: 300px;
  }
}

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

@media (max-width: 767px) {
  .transformation-section {
    padding: 70px 0;
  }

  .transformation-title {
    font-size: 32px;
  }

  .transformation-subtitle {
    font-size: 14px;
    margin-bottom: 40px;
  }

  .transformation-slider {
    padding: 0 20px;
  }

  .testimonial-card {
    height: auto;
    min-height: 280px;
    padding: 22px 18px;
  }

  .quote-text {
    font-size: 13px;
    line-height: 1.8;
  }

  .client-image {
    width: 38px;
    height: 38px;
  }
}

/* ==========================
   FOOTER
========================== */

.custom-footer {
  background: #0a0a0a;
  padding: 60px 0px 0px;
  text-align: center;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
}

/* Profile */

.footer-profile {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 12px;
  overflow: hidden;
}

.footer-profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Name */

.footer-name {
  color: #fff;
  font-size: 52px;
  font-weight: 300;
  margin: 0;
  letter-spacing: 1px;
}

/* Designation */

.footer-designation {
  color: #777;
  font-size: 13px;
  margin: 12px 0 20px;
}

/* CTA */

.footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 22px;

  background: #fff;
  color: #111;

  text-decoration: none;
  border-radius: 8px;

  font-size: 15px;
  font-weight: 400;

  transition: 0.3s;
}

.footer-btn:hover {
  background: #ffc800;
  color: #111;
}

.footer-btn span {
  display: inline-block;
  transition: transform 0.3s ease;
}

.footer-btn:hover span {
  transform: rotate(45deg);
}

/* .footer-btn span {
  font-size: 16px;
} */

/* Menu */

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 40px 0 40px;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
}

.footer-menu a {
  text-decoration: none;
  color: #f3f3f3;
  font-size: 13px;
  transition: 0.3s;
}

.footer-menu a:hover {
  color: #ffc800;
}

/* Bottom */

.footer-bottom {
  color: #f3f3f3;
  font-size: 11px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 20px;
}

.footer-bottom strong {
  color: #fff;
  font-weight: 500;
}

.custom-footer img {
  max-width: 100%;
  height: auto;
  display: inline;
  /* width: 11px; */
}

/* ==========================
   TABLET
========================== */

@media (max-width: 991px) {
  .footer-name {
    font-size: 40px;
  }

  .footer-menu {
    flex-wrap: wrap;
    gap: 20px;
  }
}

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

@media (max-width: 767px) {
  .custom-footer {
    padding: 50px 20px 25px;
  }

  .footer-profile {
    width: 56px;
    height: 56px;
  }

  .footer-name {
    font-size: 30px;
    line-height: 1.2;
  }

  .footer-designation {
    font-size: 12px;
  }

  .footer-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .footer-menu {
    flex-direction: column;
    gap: 14px;
    margin: 40px 0;
    display: none;
  }

  .footer-bottom {
    font-size: 10px;
    line-height: 1.8;
  }
}

/* ============================================================
   08. ABOUT SECTION
   ============================================================ */
.about-section {
  background: var(--light-bg);
}

.about-image-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

.about-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  max-height: 560px;
}

.about-accent-card {
  position: absolute;
  bottom: 28px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  border-left: 4px solid var(--primary);
  min-width: 220px;
}

.about-accent-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.about-accent-card div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about-accent-card strong {
  font-family: var(--ff-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}

.about-accent-card span {
  font-size: 0.8rem;
  color: var(--gray);
  font-weight: 400;
}

.about-text {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 14px;
}

.about-checklist {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-heading);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--dark);
}

.about-checklist li .bi {
  color: var(--primary-hover);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ============================================================
   09. WHY CHOOSE US SECTION
   ============================================================ */
.why-section {
  background: var(--white);
}

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  height: 100%;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.why-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 200, 0, 0.4);
  transform: translateY(-5px);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-icon {
  width: 72px;
  height: 72px;
  background: var(--primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  padding: 16px;
  transition: background var(--transition);
}

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

.why-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.why-title {
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.why-desc {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.75;
  margin: 0;
}

/* ============================================================
   10. CONTACT / CTA SECTION
   ============================================================ */
.contact-section {
  background: var(--primary);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.contact-section::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 320px;
  height: 320px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 50%;
  pointer-events: none;
}

.contact-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--dark);
  margin-bottom: 16px;
}

.contact-intro {
  font-size: 1.05rem;
  color: rgba(17, 17, 17, 0.7);
  line-height: 1.8;
  max-width: 440px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-info-item {
  background: rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  transition: background var(--transition);
}

.contact-info-item:hover {
  background: rgba(255, 255, 255, 0.4);
}

.contact-icon-wrap {
  width: 44px;
  height: 44px;
  background: var(--dark);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--primary);
}

.contact-info-item div {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.contact-info-item strong {
  font-family: var(--ff-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
}

.contact-info-item span {
  font-size: 0.9rem;
  color: rgba(17, 17, 17, 0.7);
}

/* Contact Form Card */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
}

.form-card-title {
  font-family: var(--ff-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
}

.form-label {
  font-family: var(--ff-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.custom-input {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.92rem;
  color: var(--dark);
  background: var(--white);
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.custom-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 200, 0, 0.2);
  outline: none;
}

.custom-input::placeholder {
  color: #bbb;
}

.btn-submit {
  background: var(--dark);
  color: var(--white);
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 32px;
  border-radius: var(--radius-md);
  border: 2px solid var(--dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--transition);
}

.btn-submit:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--dark);
  box-shadow: var(--shadow-yellow);
  transform: translateY(-2px);
}

.form-success-msg {
  text-align: center;
  padding: 24px;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: #166534;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.form-success-msg .bi {
  font-size: 1.4rem;
  color: #22c55e;
}

/* ============================================================
   11. FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark-2);
  color: var(--white);
}

.footer-top {
  padding: 72px 0 56px;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}

.footer-about {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  max-width: 280px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--primary);
  color: var(--dark);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--ff-heading);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: "›";
  color: var(--primary);
  font-size: 1rem;
  transition: transform var(--transition);
}

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

.footer-links a:hover::before {
  transform: translateX(3px);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.footer-contact-list li .bi {
  color: var(--primary);
  font-size: 0.95rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
}

.footer-copy {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-legal-link {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--transition);
}

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

/* ============================================================
   12. BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: var(--dark);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary);
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-yellow);
}

/* ============================================================
   13. AOS-LIKE ENTRY ANIMATIONS (no library needed)
   ============================================================ */
[data-aos] {
  opacity: 0;
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

[data-aos="fade-up"] {
  transform: translateY(30px);
}

[data-aos="fade-right"] {
  transform: translateX(-30px);
}

[data-aos="fade-left"] {
  transform: translateX(30px);
}

[data-aos].is-visible {
  opacity: 1;
  transform: none !important;
}

/* ============================================================
   14. RESPONSIVE — 1920px & ABOVE
   ============================================================ */
@media (min-width: 1920px) {
  .container {
    max-width: 1440px;
  }

  .hero-title {
    font-size: 4.5rem;
  }

  .section-title {
    font-size: 3rem;
  }

  .hero-photo {
    max-width: 500px;
  }
}

/* ============================================================
   15. RESPONSIVE — 1440px
   ============================================================ */
@media (max-width: 1440px) {
  .hero-title {
    font-size: 84px;
  }

  .hero-container-inner {
    margin: 0px 25px;
  }
}

/* ============================================================
   16. RESPONSIVE — 1280px
   ============================================================ */
@media (max-width: 1280px) {
  .hero-photo {
    max-width: 380px;
  }

  .about-accent-card {
    right: 0;
  }
}

/* ============================================================
   17. RESPONSIVE — 1200px (xl breakpoint)
   ============================================================ */
@media (max-width: 1199px) {
  .hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
  }

  .hero-image-col {
    padding-top: 100px;
    justify-content: center;
  }

  .section-pad {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

/* ============================================================
   18. RESPONSIVE — TABLET LANDSCAPE (1024px)
   ============================================================ */
@media (max-width: 1023px) {
  .hero-content {
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .hero-image-col {
    padding-top: 0;
    padding-bottom: 60px;
  }

  .hero-photo {
    max-width: 320px;
  }

  .about-accent-card {
    right: 10px;
  }

  .contact-form-card {
    padding: 30px;
  }

  .service-img-wrap {
    height: 200px;
  }
}

/* ============================================================
   19. RESPONSIVE — TABLET PORTRAIT (768px–1024px)
   ============================================================ */
@media (max-width: 991px) {
  /* Navbar mobile */
  #navbarMain {
    background: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    margin-top: 10px;
    box-shadow: var(--shadow-md);
  }

  .navbar-nav {
    gap: 0 !important;
  }

  .navbar-nav .nav-link {
    padding: 10px 8px !important;
    border-bottom: 1px solid var(--border);
  }

  .navbar-nav .nav-link:last-child {
    border-bottom: none;
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  .btn-nav-cta {
    margin-top: 10px !important;
    width: 100%;
    justify-content: center;
  }

  /* Hero */
  .hero-section {
    min-height: auto;
  }

  .hero-content {
    padding-top: 110px;
    padding-bottom: 40px;
    text-align: center;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .hero-image-col {
    justify-content: center;
    padding-top: 0;
    padding-bottom: 0px;
  }

  .hero-photo {
    max-width: 340px;
    margin: 0 auto;
  }

  /* .hero-avatar-badge {
        left: 10px;
        bottom: 40px;
    } */

  /* Stats */
  .stat-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-right: none;
  }

  .col-6 .stat-item {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  .col-6:nth-child(even) .stat-item {
    border-right: none;
  }

  /* About */
  .about-accent-card {
    right: 20px;
    bottom: 20px;
    min-width: 180px;
  }

  .about-section .col-lg-6:first-child {
    text-align: center;
  }

  .about-section .col-lg-6:first-child .about-image-wrap {
    display: inline-block;
    max-width: 420px;
  }

  /* Contact */
  .contact-form-card {
    margin-top: 0;
  }

  /* Sections */
  .section-pad {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .contact-section {
    padding: 60px 0;
  }

  .footer-top {
    padding: 52px 0 40px;
  }
}

/* ============================================================
   20. RESPONSIVE — MOBILE LARGE (600px–767px)
   ============================================================ */
@media (max-width: 767px) {
  .hero-title {
    font-size: clamp(1.9rem, 7vw, 2.6rem);
  }

  .hero-desc {
    font-size: 1rem;
  }

  .section-title {
    font-size: clamp(1.7rem, 6vw, 2.2rem);
  }

  .stat-item {
    padding: 32px 16px;
  }

  .counter {
    font-size: 2.4rem;
  }

  .service-img-wrap {
    height: 190px;
  }

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

  .footer-about {
    max-width: 100%;
  }

  .footer-logo-img {
    height: 34px;
  }

  .back-to-top {
    width: 42px;
    height: 42px;
    bottom: 20px;
    right: 20px;
  }

  .hero-trust {
    gap: 12px !important;
  }

  .trust-divider {
    height: 28px;
  }

  .trust-item strong {
    font-size: 1.1rem;
  }

  .about-accent-card {
    position: static;
    margin: 16px auto 0;
    max-width: 280px;
    justify-content: center;
  }
}

/* ============================================================
   21. RESPONSIVE — MOBILE MEDIUM (480px–599px)
   ============================================================ */
@media (max-width: 599px) {
  .hero-title {
    font-size: 1.9rem;
  }

  .btn-hero-primary,
  .btn-hero-outline {
    width: 100%;
    justify-content: center;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .service-img-wrap {
    height: 180px;
  }

  .service-body {
    padding: 18px;
  }

  .why-card {
    padding: 28px 20px;
  }

  .stats-row .col-6 .stat-item {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  .stats-row .col-6:nth-child(2) .stat-item,
  .stats-row .col-6:nth-child(4) .stat-item {
    border-right: none;
  }
}

/* ============================================================
   22. RESPONSIVE — MOBILE SMALL (up to 479px)
   ============================================================ */
@media (max-width: 479px) {
  .hero-content {
    padding-top: 140px;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-container-inner {
    margin: 0px 0px;
  }

  .hero-badge {
    font-size: 0.72rem;
    padding: 5px 14px;
  }

  .section-tag {
    font-size: 0.72rem;
    padding: 5px 12px;
  }

  .section-title {
    font-size: 1.65rem;
  }

  .service-img-wrap {
    height: 165px;
  }

  .service-title {
    font-size: 1rem;
  }

  .about-img {
    border-radius: var(--radius-lg);
  }

  .contact-info-list {
    gap: 12px;
  }

  .contact-form-card {
    padding: 20px 16px;
    border-radius: var(--radius-lg);
  }

  .form-card-title {
    font-size: 1.2rem;
  }

  .footer-top {
    padding: 40px 0 32px;
  }

  .footer-bottom {
    padding: 16px 0;
    text-align: center;
  }

  .footer-bottom .col-md-6.text-md-end {
    text-align: center !important;
    margin-top: 8px !important;
  }
}

/* ============================================================
   23. PRINT & UTILITY
   ============================================================ */
@media print {
  .site-header,
  .back-to-top,
  .hero-scroll-hint {
    display: none !important;
  }

  .hero-section {
    min-height: auto;
    padding-top: 40px;
  }

  * {
    box-shadow: none !important;
  }
}

/* Accessibility */
:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
}

/* Selection */
::selection {
  background: var(--primary);
  color: var(--dark);
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 0;
  align-items: center;
}

/* Model pop Form  */
.custom-modal .modal-dialog {
  max-width: 950px;
}

.custom-modal .modal-content {
  border-radius: 24px;
  background: #fff;
  position: relative;
}

.custom-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 99;
  /* background: #fff; */
  border-radius: 50%;
  opacity: 1;
  width: 40px;
  height: 40px;
}

.modal-form-wrap {
  padding: 30px 40px;
}

.modal-badge {
  display: inline-block;
  background: rgba(255, 183, 0, 0.12);
  color: #d68900;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.modal-form-wrap h2 {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  color: #111;
  margin-bottom: 18px;
}

.modal-form-wrap p {
  color: #666;
  margin-bottom: 25px;
  line-height: 1.2;
}

.modal-form-wrap .form-control {
  height: 55px;
  border-radius: 12px;
  border: 1px solid #ddd;
  box-shadow: none;
}

.modal-form-wrap textarea.form-control {
  height: auto;
  min-height: 120px;
  resize: none;
}

.modal-form-wrap .form-control:focus {
  border-color: #ffb700;
  box-shadow: 0 0 0 4px rgba(255, 183, 0, 0.15);
}

.btn-submit {
  width: 100%;
  border: 0;
  background: #ffb700;
  color: #111;
  font-weight: 700;
  padding: 15px;
  border-radius: 12px;
  transition: 0.3s;
}

.btn-submit:hover {
  transform: translateY(-2px);
  background: #f3ab00;
}

.modal-image {
  height: 100%;
}

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

/* Mobile */

@media (max-width: 991px) {
  .modal-form-wrap {
    padding: 35px 25px;
  }

  .modal-form-wrap h2 {
    font-size: 30px;
  }
}
