/* ============================================================
   ALISH PHARMACEUTICALS – style.css  (Responsive + Cleaned)
   ============================================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
  --primary-blue:  #2B1776;
  --primary-red:   #E1231C;
  --accent-light:  #B2DFF4;
  --dark-navy:     #251B5C;
  --mid-blue:      #3a2799;
  --white:         #ffffff;
  --off-white:     #f7f9fc;
  --text-dark:     #1a1a2e;
  --text-muted:    #6b7280;
  --border-light:  #e8ecf4;
  --shadow-soft:   0 6px 32px rgba(43,23,118,.10);
  --shadow-card:   0 4px 24px rgba(43,23,118,.08);
  --shadow-hover:  0 12px 48px rgba(43,23,118,.18);
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --font-display:  'Playfair Display', serif;
  --font-body:     'DM Sans', sans-serif;
  --transition:    all 0.35s cubic-bezier(.4,0,.2,1);
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body { font-family: var(--font-body); color: var(--text-dark); background: var(--white); overflow-x: hidden; line-height: 1.7; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ---------- UTILITY ---------- */
.section-pad { padding: 90px 0; }
.text-accent { color: var(--primary-red); }

.section-tag {
  display: inline-block;
  background: rgba(178,223,244,.4);
  color: var(--primary-blue);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  border: 1px solid rgba(43,23,118,.15);
  margin-bottom: 14px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--dark-navy);
  line-height: 1.25;
  margin-bottom: 12px;
}

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

/* ---------- BUTTONS ---------- */
.btn-primary-brand {
  background: linear-gradient(135deg, var(--primary-red) 0%, #c11a14 100%);
  color: var(--white);
  border: none;
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(225,35,28,.35);
  display: inline-flex;
  align-items: center;
}
.btn-primary-brand:hover { background: linear-gradient(135deg,#c11a14,#a01510); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(225,35,28,.45); }

.btn-contact {
  background: var(--primary-red);
  color: var(--white) !important;
  padding: 10px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  transition: var(--transition);
  box-shadow: 0 3px 14px rgba(225,35,28,.30);
}
.btn-contact:hover { background: #c11a14; transform: translateY(-1px); }

.btn-light-brand {
  background: var(--white);
  color: var(--primary-blue);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
}
.btn-light-brand:hover { background: var(--accent-light); }

.btn-outline-light-brand {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.7);
  padding: 10px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
}
.btn-outline-light-brand:hover { background: rgba(255,255,255,.12); border-color: var(--white); color: var(--white); }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--primary-blue);
  color: rgba(255,255,255,.82);
  font-size: .82rem;
  padding: 7px 0;
}
.topbar span { display: inline-flex; align-items: center; }
.topbar-right a { color: rgba(255,255,255,.75); margin-left: 14px; font-size: .85rem; transition: var(--transition); }
.topbar-right a:hover { color: var(--accent-light); }

@media (max-width: 767px) {
  .topbar { padding: 5px 0; font-size: .75rem; }
  .topbar-right a { margin-left: 8px; font-size: .75rem; }
}

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNavbar {
  background: var(--white);
  padding: 0;
  box-shadow: 0 2px 20px rgba(43,23,118,.10);
  transition: var(--transition);
  z-index: 999;
}
#mainNavbar.scrolled { box-shadow: 0 4px 30px rgba(43,23,118,.18); }

.nav-logo { width: 56px; height: 56px; object-fit: contain; border-radius: 10px; }

.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--primary-blue); letter-spacing: 2px; }
.brand-tagline { font-size: .68rem; font-weight: 500; color: var(--primary-red); letter-spacing: 1.5px; text-transform: uppercase; }

.navbar-nav .nav-link {
  font-weight: 500;
  font-size: .93rem;
  color: var(--dark-navy);
  padding: 16px 12px !important;
  position: relative;
  transition: var(--transition);
  letter-spacing: .3px;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 10px; left: 14px; right: 14px;
  height: 2.5px;
  background: var(--primary-red);
  transform: scaleX(0);
  transition: var(--transition);
  border-radius: 2px;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--primary-blue); }
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }

/* Cart button */
.nav-cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  background: rgba(43,23,118,.08);
  border-radius: 50%;
  color: var(--primary-blue);
  font-size: 1rem;
  transition: var(--transition);
}
.nav-cart-btn:hover { background: var(--primary-blue); color: var(--white); }
.cart-count {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--primary-red);
  color: var(--white);
  font-size: .65rem;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* Navbar toggler dark icon */
.navbar-toggler {
  border-color: rgba(43, 23, 118, 0.25) !important;
  padding: 6px 10px;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%232B1776' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}
@media (max-width: 991px) {
  #mainNavbar .container-fluid {
    padding-left: 10px;
    padding-right: 10px;
  }

  /* Brand ko fixed width de taki cart/toggler ko space mile */
  #mainNavbar .navbar-brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .brand-name {
    font-size: 1rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-tagline { font-size: .58rem; }

  .nav-logo { width: 38px; height: 38px; }

  /* Cart + toggler wrapper — shrink nahi hone dena */
  #mainNavbar .order-lg-3 {
    flex-shrink: 0;
    margin-left: auto;
    gap: 8px !important;
  }

  .nav-cart-btn {
    width: 36px;
    height: 36px;
    font-size: .88rem;
    flex-shrink: 0;
  }

  .navbar-toggler {
    flex-shrink: 0;
    padding: 5px 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .navbar-collapse {
    background: var(--white);
    padding: 10px 16px 18px;
    border-top: 1px solid var(--border-light);
    box-shadow: 0 8px 24px rgba(43,23,118,.08);
    margin-top: 4px;
    border-radius: 0 0 12px 12px;
  }

  .navbar-nav .nav-link {
    padding: 11px 8px !important;
    border-bottom: 1px solid var(--border-light);
    font-size: .9rem;
  }

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

@media (max-width: 480px) {
  .brand-name { font-size: .88rem; }
  .brand-tagline { display: none; }
  .nav-logo { width: 34px; height: 34px; }
  .brand-text { gap: 0; }
}
/* Scroll offset — navbar height ke barabar */
html {
  scroll-padding-top: 72px;
}

@media (max-width: 991px) {
  html {
    scroll-padding-top: 62px;
  }
}

@media (max-width: 480px) {
  html {
    scroll-padding-top: 56px;
  }
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-section { width: 100%; overflow: hidden; }

.hero-img {
  width: 100%;
  height: 580px;
  object-fit: fill;
  object-position: center center;
  display: block;
}

.carousel-control-prev,
.carousel-control-next {
  width: 44px; height: 44px;
  background: rgba(43,23,118,.75);
  border-radius: 50%;
  top: 50%; transform: translateY(-50%);
  opacity: 1;
  transition: var(--transition);
}
.carousel-control-prev { left: 12px; }
.carousel-control-next { right: 12px; }
.carousel-control-prev-icon,
.carousel-control-next-icon { width: 16px; height: 16px; }

.carousel-indicators [data-bs-target] { width: 30px; height: 3px; border-radius: 2px; background: rgba(255,255,255,.6); border: none; transition: var(--transition); }
.carousel-indicators .active { background: var(--primary-red); width: 48px; }

@media (max-width: 1199px) { .hero-img { height: 420px; } }
@media (max-width: 991px) {
  .hero-img { height: 310px; }
  .carousel-control-prev, .carousel-control-next { width: 36px; height: 36px; }
  .carousel-indicators [data-bs-target] { width: 20px; }
}
@media (max-width: 767px) {
  .hero-img { height: 220px; }
  .carousel-control-prev { left: 6px; }
  .carousel-control-next { right: 6px; }
  .carousel-control-prev, .carousel-control-next { width: 30px; height: 30px; }
  .carousel-control-prev-icon, .carousel-control-next-icon { width: 12px; height: 12px; }
}
@media (max-width: 480px) { .hero-img { height: 180px; } }

/* ============================================================
   ACHIEVEMENTS
   ============================================================ */
.achievements-section {
  padding: 0;
  background: var(--white);
  overflow: visible;        /* hidden → visible */
  position: relative;       /* ← add karo */
  z-index: 1;               /* ← add karo */
}

.achievements-wrapper {
  background: linear-gradient(135deg, #0f1952 0%, #0a0f3d 100%);
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* Dot grid */
.achievements-wrapper::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}

/* Top accent line */
.achievements-wrapper::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(125,211,252,0.6) 30%, var(--primary-red, #e1231c) 50%, rgba(125,211,252,0.6) 70%, transparent 100%);
  z-index: 2;
}

/* ── Item ── */
.achievement-item {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 52px 24px 48px;
  border-right: 1px solid rgba(255,255,255,0.09);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: background 0.35s ease;
}
.achievement-item.last { border-right: none; }
.achievement-item:hover { background: rgba(255,255,255,0.03); }

/* ── Icon — square with rounded corners ── */
.achievement-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: rgba(125,211,252,0.08);
  border: 1px solid rgba(125,211,252,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  color: #7dd3fc;
  margin-bottom: 6px;
  transition: background 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}
.achievement-item:hover .achievement-icon {
  background: rgba(125,211,252,0.16);
  box-shadow: 0 0 20px rgba(125,211,252,0.2);
  transform: translateY(-2px);
}

/* ── Stat ── */
.achievement-stat {
  display: flex;
  align-items: baseline;
  gap: 2px;
  line-height: 1;
}
.achievement-number {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -2px;
  line-height: 1;
}
.achievement-suffix {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 800;
  color: var(--primary-red, #e1231c);
  line-height: 1;
}

/* ── Small bar under number ── */
.achievement-bar {
  width: 28px; height: 2px;
  border-radius: 2px;
  background: rgba(125,211,252,0.25);
  transition: width 0.35s ease, background 0.35s ease;
}
.achievement-item:hover .achievement-bar {
  width: 44px;
  background: rgba(125,211,252,0.55);
}

/* ── Label ── */
.achievement-label {
  font-size: 0.70rem;
  font-weight: 600;
  color: rgba(255,255,255,0.42);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  line-height: 1.5;
}
/* ── TABLET ── */
@media (max-width: 991px) {
  .achievement-item { padding: 28px 16px 24px; }
  .achievement-icon { width: 44px; height: 44px; font-size: 1.15rem; border-radius: 10px; }
}

/* ── MOBILE 2×2 ── */
/* ── MOBILE 2×2 ── */
@media (max-width: 767px) {
  .achievement-item {
    padding: 14px 10px 12px !important;
    gap: 4px !important;
  }

  .achievement-icon {
    width: 34px !important;
    height: 34px !important;
    font-size: 0.9rem !important;
    border-radius: 8px !important;
    margin-bottom: 0 !important;
  }

  .achievement-number {
    font-size: 1.75rem !important;
    letter-spacing: -1px !important;
  }

  .achievement-suffix {
    font-size: 1.1rem !important;
  }

  .achievement-bar {
    width: 20px !important;
    height: 2px !important;
  }

  .achievement-label {
    font-size: 0.55rem !important;
    letter-spacing: 1.8px !important;
  }
}
@media (max-width: 380px) {
  .achievement-item { padding: 10px 6px 8px !important; }  /* 28px → 10px */
}
/* ============================================================
   FOUNDER SECTION
   ============================================================ */
.founder-section { background: var(--off-white); overflow: hidden; }

.founder-img-wrap { position: relative; padding: 24px 24px 24px 0; }
.founder-img-inner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  position: relative;
  z-index: 2;
}
.founder-img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .6s ease;
}
.founder-img:hover { transform: scale(1.03); }

.founder-img-wrap::before {
  content: '';
  position: absolute; top: 0; right: -20px;
  width: 85%; height: 90%;
  background: linear-gradient(135deg, var(--accent-light) 0%, rgba(178,223,244,.2) 100%);
  border-radius: var(--radius-lg); z-index: 1;
}

.founder-badge {
  position: absolute; bottom: 40px; left: 30px;
  background: var(--primary-red); color: var(--white);
  font-size: .78rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 8px 20px; border-radius: 50px; z-index: 3;
  box-shadow: 0 4px 14px rgba(225,35,28,.40);
}

.quote-mark { font-family: Georgia,serif; font-size: 6rem; color: var(--accent-light); line-height: .8; margin-bottom: 10px; user-select: none; }
.founder-quote { font-family: var(--font-display); font-size: 1.25rem; font-style: italic; color: var(--dark-navy); line-height: 1.7; border-left: 4px solid var(--primary-red); padding-left: 20px; margin: 0; }
.founder-body { color: var(--text-muted); font-size: 1rem; line-height: 1.8; }
.founder-signature .sig-name { font-weight: 700; color: var(--primary-blue); font-size: 1rem; }
.founder-signature .sig-company { font-size: .85rem; color: var(--text-muted); margin-top: 2px; }

/* ── TABLET (768px – 991px) ── */
@media (min-width: 768px) and (max-width: 991px) {
  .founder-img-wrap { padding: 10; }
  .founder-img-wrap::before { display: none; }

  /* Image puri dikhni chahiye — height fix + object-position top */
  .founder-img {
    height: 100%;
    min-height: 420px;
    max-height: 520px;
    object-position: center top;
  }

  /* Dono columns equal height pe align hon */
  .founder-section .row { align-items: stretch; }
  .founder-section .col-md-6:first-child { display: flex; align-items: stretch; }
  .founder-img-wrap { width: 100%; height: 100%; }
  .founder-img-inner { height: 100%; }

  .founder-badge { bottom: 16px; left: 16px; font-size: .72rem; padding: 6px 14px; }
  .founder-content { padding-top: 0 !important; }
  .founder-quote { font-size: 1.05rem; }
  .founder-body { font-size: .92rem; }
  .quote-mark { font-size: 4.5rem; }
}

/* ── MOBILE (max 767px) ── */
@media (max-width: 767px) {
  .founder-img {
    height: 380px;
    object-position: center top;
  }
  .founder-img-wrap { margin-bottom: 24px; padding: 0; }
  .founder-img-wrap::before { display: none; }
  .founder-content { padding-top: 8px !important; }
  .founder-quote { font-size: 1rem; padding-left: 14px; }
  .founder-body { font-size: .9rem; }
  .quote-mark { font-size: 4rem; margin-bottom: 6px; }
  .founder-badge { font-size: .7rem; padding: 6px 14px; bottom: 16px; left: 16px; }
}

/* ── SMALL MOBILE (max 480px) ── */
@media (max-width: 480px) {
  .founder-img { height: 450px; object-position: center top; }
}
/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
.products-section { background: linear-gradient(180deg,#f0f4ff 0%,var(--white) 100%); position: relative; overflow: hidden; }
.products-section::before {
  content: '';
  position: absolute; top: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle,rgba(178,223,244,.35) 0%,transparent 70%);
  pointer-events: none;
}

.product-carousel-wrap { position: relative; display: flex; align-items: center; gap: 12px; }
.product-carousel-viewport { flex: 1; overflow: hidden; }
.product-carousel-track {
  display: flex;
  gap: 20px;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  will-change: transform;
  touch-action: pan-x pan-y;
  cursor: grab;
}
.product-carousel-track:active { cursor: grabbing; }

.product-card {
  flex: 0 0 calc((100% - 60px) / 4);
  min-width: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-color: rgba(43,23,118,.15); }

.prod-img-wrap { width: 100%; aspect-ratio: 1/1; overflow: hidden; background: var(--off-white); }
.prod-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .prod-img-wrap img { transform: scale(1.06); }

.prod-info { padding: 16px; }
.prod-category { font-size: .7rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--primary-blue); background: rgba(43,23,118,.08); padding: 3px 10px; border-radius: 50px; display: inline-block; margin-bottom: 8px; }
.prod-name { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--dark-navy); margin-bottom: 6px; line-height: 1.3; }
.prod-price { font-size: .85rem; font-weight: 600; color: var(--primary-red); margin-bottom: 12px; }

.btn-enquiry {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--mid-blue) 100%);
  color: var(--white); border: none;
  padding: 9px 0; border-radius: var(--radius-sm);
  font-size: .85rem; font-weight: 600; letter-spacing: .3px;
  transition: var(--transition);
}
.btn-enquiry:hover { background: linear-gradient(135deg,var(--primary-red),#c11a14); color: var(--white); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(225,35,28,.35); }

.prod-nav-btn {
  flex: 0 0 44px; width: 44px; height: 44px;
  border-radius: 50%; background: var(--primary-blue); color: var(--white);
  border: none; display: flex; align-items: center; justify-content: center;
  font-size: .9rem; cursor: pointer; transition: var(--transition);
  box-shadow: 0 4px 16px rgba(43,23,118,.30); z-index: 2; flex-shrink: 0;
}
.prod-nav-btn:hover { background: var(--primary-red); transform: scale(1.1); }

@media (max-width: 1199px) { .product-card { flex: 0 0 calc((100% - 40px) / 3); } }
@media (max-width: 991px) {
  .product-card { flex: 0 0 calc((100% - 40px) / 3); }
  .prod-nav-btn { width: 38px; height: 38px; font-size: .8rem; }
}
@media (max-width: 767px) {
  .product-carousel-wrap { gap: 0; }
  .product-card { flex: 0 0 calc(50% - 6px); }
  .prod-nav-btn { display: none !important; }
  .product-carousel-viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }
  .product-carousel-viewport::-webkit-scrollbar { display: none; }
  .product-carousel-track {
    transition: none;
    transform: none !important;
    gap: 12px;
    padding-bottom: 8px;
  }
  .product-card { scroll-snap-align: start; }
  .prod-info { padding: 12px; }
  .prod-name { font-size: .9rem; }
  .prod-category { font-size: .65rem; }
  .prod-price { font-size: .8rem; margin-bottom: 10px; }
  .btn-enquiry { padding: 8px 0; font-size: .8rem; }
}
@media (max-width: 480px) { .product-card { flex: 0 0 75vw; } }

/* ============================================================
   FOCUS AREAS
   ============================================================ */
.focus-section { background: var(--white); }

.focus-card {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius-md); padding: 36px 28px;
  height: 100%; position: relative; overflow: hidden;
  transition: var(--transition);
}
.focus-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-red));
  transform: scaleX(0); transform-origin: left; transition: var(--transition);
}
.focus-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-color: transparent; }
.focus-card:hover::before { transform: scaleX(1); }

.focus-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg,rgba(43,23,118,.08) 0%,rgba(178,223,244,.3) 100%);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--primary-blue);
  margin-bottom: 18px; transition: var(--transition);
}
.focus-card:hover .focus-icon { background: linear-gradient(135deg,var(--primary-blue),var(--mid-blue)); color: var(--white); }
.focus-card h5 { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--dark-navy); margin-bottom: 10px; }
.focus-card p { color: var(--text-muted); font-size: .9rem; line-height: 1.7; margin-bottom: 0; }
.focus-line { width: 40px; height: 3px; background: var(--primary-red); border-radius: 2px; margin-top: 16px; transition: width .3s ease; }
.focus-card:hover .focus-line { width: 70px; }

@media (max-width: 991px) {
  .focus-card { padding: 28px 20px; }
  .focus-icon { width: 52px; height: 52px; font-size: 1.3rem; }
}
@media (max-width: 767px) {
  .focus-card { padding: 24px 18px; margin-bottom: 16px; }
  .focus-card h5 { font-size: 1rem; }
  .focus-card p { font-size: .85rem; }
}

/* ============================================================
   CLIENTS
   ============================================================ */
.clients-section { background: var(--off-white); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }

.clients-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

.client-logo-card {
  background: var(--white); border-radius: var(--radius-md); border: 1px solid var(--border-light);
  padding: 28px 20px; display: flex; flex-direction: column; align-items: center; gap: 12px;
  transition: var(--transition);
}
.client-logo-card:hover { border-color: var(--primary-blue); box-shadow: var(--shadow-card); transform: translateY(-4px); }
.client-icon { font-size: 2.2rem; color: var(--primary-blue); opacity: .5; transition: var(--transition); }
.client-logo-card:hover .client-icon { opacity: 1; }
.client-logo-card span { font-size: .82rem; font-weight: 700; color: var(--text-muted); text-align: center; text-transform: uppercase; letter-spacing: .8px; transition: var(--transition); }
.client-logo-card:hover span { color: var(--primary-blue); }

@media (max-width: 991px) { .clients-grid { grid-template-columns: repeat(3,1fr); gap: 14px; } }
@media (max-width: 767px) {
  .clients-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .client-logo-card { padding: 20px 12px; gap: 8px; }
  .client-icon { font-size: 1.8rem; }
  .client-logo-card span { font-size: .75rem; }
}
@media (max-width: 480px) { .clients-grid { grid-template-columns: 1fr 1fr; gap: 10px; } }

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

.why-card {
  background: var(--white); padding: 35px; border-radius: var(--radius-md);
  border: 1px solid var(--border-light); text-align: center; height: 100%;
  box-shadow: var(--shadow-card); transition: var(--transition);
}
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-color: rgba(43,23,118,.15); }
.why-card i { font-size: 2.4rem; margin-bottom: 18px; color: var(--primary-blue); display: block; }
.why-card h5 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--dark-navy); margin-bottom: 10px; }
.why-card p { color: var(--text-muted); font-size: .9rem; line-height: 1.7; margin: 0; }

@media (max-width: 991px) { .why-card { padding: 26px 20px; } }
@media (max-width: 767px) {
  .why-card { padding: 22px 16px; margin-bottom: 16px; }
  .why-card i { font-size: 2rem; margin-bottom: 14px; }
  .why-card h5 { font-size: .95rem; }
  .why-card p { font-size: .85rem; }
}

/* ============================================================
   INSIGHTS / BLOG
   ============================================================ */
.insights-section { background: linear-gradient(180deg,var(--white) 0%,#f0f4ff 100%); }

.insight-card {
  background: var(--white); border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-card); border: 1px solid var(--border-light);
  height: 100%; display: flex; flex-direction: column; transition: var(--transition);
}
.insight-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-color: transparent; }

.insight-img-wrap { position: relative; overflow: hidden; height: 220px; }
.insight-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.insight-card:hover .insight-img-wrap img { transform: scale(1.07); }

.insight-category {
  position: absolute; top: 16px; left: 16px;
  background: var(--primary-red); color: var(--white);
  font-size: .7rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 50px;
}

.insight-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.insight-date { font-size: .8rem; color: var(--text-muted); margin-bottom: 10px; }
.insight-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--dark-navy); line-height: 1.4; margin-bottom: 10px; flex: 1; }
.insight-text { font-size: .88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.insight-link { font-size: .88rem; font-weight: 700; color: var(--primary-blue); display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); margin-top: auto; }
.insight-link:hover { color: var(--primary-red); gap: 10px; }

@media (max-width: 991px) { .insight-img-wrap { height: 190px; } }
@media (max-width: 767px) {
  .insight-img-wrap { height: 170px; }
  .insight-body { padding: 18px; }
  .insight-title { font-size: .95rem; }
  .insight-text { font-size: .83rem; -webkit-line-clamp: 2; }
  .insight-card { margin-bottom: 16px; }
}
@media (max-width: 480px) {
  .insight-img-wrap { height: 155px; }
  .insight-body { padding: 14px; }
}

/* ============================================================
   FOOTER — Premium Edition
   ============================================================ */

.site-footer {
  background: linear-gradient(160deg, #0d0820 0%, #12063a 45%, #0a1f4e 100%);
  font-family: var(--font-body, 'DM Sans', sans-serif);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 64px;
  position: relative;
  overflow: hidden;
}

/* Ambient glow orbs */
.site-footer::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 60, 210, 0.16) 0%, transparent 70%);
  pointer-events: none;
}

.site-footer::after {
  content: '';
  position: absolute;
  bottom: 100px;
  left: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 80, 180, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Brand Block ── */
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.footer-logo {
  max-width: 180px;
  width: auto;
  height: auto;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 5px;
  object-fit: contain;
}
@media (max-width: 767px) {
  .footer-logo {
    max-width: 100px !important; /* Ye size na zyada bada hoga na chhota */
    width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto 15px auto !important;

  }
}
@media (max-width: 767px) {
  /* Logo ko left side align karne ke liye */
  .footer-brand {
    text-align: left !important;
  }

  .footer-logo {
    margin: 0 0 15px 0 !important; /* Left alignment ke liye margin set kiya */
    display: block;
  }
}


.footer-brand-name {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.footer-brand-tag {
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-top: 3px;
}

.footer-about {
  font-size: 0.84rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 22px;
  max-width: 280px;
}

/* ── Social Icons ── */
.footer-social {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}

.footer-social a:hover {
  background: var(--primary-red, #c0392b);
  border-color: var(--primary-red, #c0392b);
  color: #fff;
  transform: translateY(-3px);
}

/* ── Column Headings ── */
.footer-heading {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 12px;
  position: relative;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 1.5px;
  background: var(--primary-red, #c0392b);
  border-radius: 2px;
}

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

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

.footer-links a {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s, padding-left 0.2s;
}

.footer-links a::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary-red, #c0392b);
  flex-shrink: 0;
  opacity: 0.65;
  transition: opacity 0.2s;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.9);
  padding-left: 3px;
}

.footer-links a:hover::before {
  opacity: 1;
}

/* ── Contact List ── */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  transition: background 0.2s, border-color 0.2s;
}

.footer-contact-list li:hover .footer-contact-icon {
  background: rgba(192, 57, 43, 0.2);
  border-color: rgba(192, 57, 43, 0.4);
}

.footer-contact-text {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
}

.footer-contact-text a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-text a:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* ── Top divider ── */
.footer-top {
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  z-index: 1;
}

/* ── Bottom bar ── */
.footer-bottom {
  padding: 22px 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.75);
}

/* ============================================================
   TABLET  768px – 991px
   ============================================================ */
@media (max-width: 991px) {
  .site-footer {
    padding-top: 52px;
  }

  .footer-top {
    padding-bottom: 40px;
  }

  .footer-top .row {
    row-gap: 36px;
  }

  .footer-about {
    max-width: 100%;
    font-size: 0.83rem;
  }

  .footer-heading {
    font-size: 0.78rem;
    margin-bottom: 16px;
  }

  .footer-links a,
  .footer-contact-text {
    font-size: 0.82rem;
  }

  .footer-bottom {
    padding: 18px 0;
  }

  .footer-bottom .row {
    row-gap: 8px;
  }
}

/* ============================================================
   MOBILE  max 767px
   ============================================================ */
@media (max-width: 767px) {
  .site-footer {
    padding-top: 44px;
  }

  .site-footer::before {
    width: 260px;
    height: 260px;
    top: -60px;
    right: -40px;
  }

  .site-footer::after {
    display: none;
  }

  .footer-top {
    padding-bottom: 32px;
  }

  .footer-top .row {
    row-gap: 32px;
  }

  /* Brand — centered on mobile */
  .footer-brand-col {
    text-align: center;
  }

  .footer-logo-wrap {
    justify-content: center;
  }

  .footer-about {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.82rem;
  }

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

  /* Links — side-by-side 2 col grid */
  .footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 16px;
  }

  .footer-heading {
    font-size: 0.76rem;
    margin-bottom: 14px;
  }

  .footer-links a,
  .footer-contact-text {
    font-size: 0.81rem;
  }

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

  .footer-contact-icon {
    width: 28px;
    height: 28px;
    font-size: 0.72rem;
  }

  .footer-social a {
    width: 32px;
    height: 32px;
    font-size: 0.76rem;
  }

  /* Bottom bar */
  .footer-bottom {
    padding: 18px 0;
    text-align: center;
  }

  .footer-bottom .row {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .footer-bottom [class*="col-"] {
    text-align: center !important;
  }

  .footer-bottom a {
    margin: 0 6px;
  }

  .footer-bottom .ms-3 {
    margin-left: 0 !important;
  }
}

/* ============================================================
   SMALL MOBILE  max 480px
   ============================================================ */
@media (max-width: 480px) {
  .site-footer {
    padding-top: 36px;
  }

  .footer-top {
    padding-bottom: 26px;
  }

  .footer-top .row {
    row-gap: 26px;
  }

  /* Stack link columns single col */
  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-logo {
    width: 46px;
    height: 46px;
  }

  .footer-brand-name {
    font-size: 1.1rem;
  }

  .footer-about {
    font-size: 0.8rem;
  }

  .footer-heading {
    font-size: 0.74rem;
  }

  .footer-links a,
  .footer-contact-text {
    font-size: 0.79rem;
  }

  .footer-bottom {
    padding: 14px 0;
    font-size: 0.74rem;
  }
}

/* ============================================================
   ENQUIRY MODAL
   ============================================================ */
.enquiry-modal-content { border: none; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 30px 80px rgba(43,23,118,.25); }
.enquiry-modal-header { background: linear-gradient(135deg,var(--primary-blue),var(--dark-navy)); padding: 24px 30px; border: none; }
.enquiry-modal-header .modal-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--white); margin: 0 0 4px; }
.modal-product-name { font-size: .85rem; font-weight: 600; color: var(--accent-light); letter-spacing: .5px; }
.enquiry-modal-body { padding: 30px; background: var(--off-white); }

.enq-input { font-family: var(--font-body); border: 1.5px solid var(--border-light); border-radius: var(--radius-sm); padding: 12px 16px; font-size: .93rem; color: var(--text-dark); background: var(--white); transition: var(--transition); }
.enq-input:focus { border-color: var(--primary-blue); box-shadow: 0 0 0 3px rgba(43,23,118,.10); outline: none; }
.form-label { font-weight: 600; font-size: .86rem; color: var(--dark-navy); margin-bottom: 6px; }
.form-label span { color: var(--primary-red); }

@media (max-width: 767px) {
  .enquiry-modal-content { border-radius: 16px; margin: 12px; }
  .enquiry-modal-header { padding: 18px 20px; }
  .enquiry-modal-header .modal-title { font-size: 1.15rem; }
  .enquiry-modal-body { padding: 20px; }
  .enq-input { padding: 10px 14px; font-size: .88rem; }
  .form-label { font-size: .82rem; }
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed; bottom: 30px; right: 30px;
  width: 46px; height: 46px;
  background: var(--primary-blue); color: var(--white);
  border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; box-shadow: 0 4px 16px rgba(43,23,118,.35);
  opacity: 0; visibility: hidden; transform: translateY(20px);
  transition: var(--transition); z-index: 998; cursor: pointer;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--primary-red); transform: translateY(-3px); }

@media (max-width: 767px) { .back-to-top { bottom: 16px; right: 16px; width: 40px; height: 40px; font-size: .82rem; } }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-in-up { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.fade-in-up.is-visible { opacity: 1; transform: translateY(0); }
.fade-in-up:nth-child(2) { transition-delay: .10s; }
.fade-in-up:nth-child(3) { transition-delay: .20s; }
.fade-in-up:nth-child(4) { transition-delay: .30s; }
.fade-in-up:nth-child(5) { transition-delay: .40s; }
.fade-in-up:nth-child(6) { transition-delay: .50s; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(50px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   GLOBAL RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .section-pad { padding: 64px 0; }
  .section-heading { font-size: clamp(1.4rem, 3vw, 2.2rem); }
}
@media (max-width: 767px) {
  .section-pad { padding: 48px 0; }
  .section-heading { font-size: 1.55rem; }
  .section-sub { font-size: .9rem; }
  .section-tag { font-size: .72rem; padding: 5px 14px; }
  .row { margin-left: -8px; margin-right: -8px; }
  .row > * { padding-left: 8px; padding-right: 8px; }
}
@media (max-width: 480px) {
  .section-pad { padding: 40px 0; }
  .section-heading { font-size: 1.35rem; }
  .section-sub { font-size: .85rem; }
  .brand-name { font-size: 1.2rem; }
  .nav-logo { width: 44px; height: 44px; }
  .section-tag { font-size: .7rem; }
  .achievement-number { font-size: 2.2rem; }
  .container, .container-fluid { padding-left: 14px; padding-right: 14px; }
  .btn-primary-brand, .btn-light-brand, .btn-outline-light-brand { padding: 12px 24px; font-size: .88rem; min-height: 44px; }
}


    /* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 120px 8%;
  background:
    radial-gradient(circle at top left, #8b5cf6 0%, transparent 35%),
    radial-gradient(circle at bottom right, #06b6d4 0%, transparent 35%),
    #050816;
  position: relative;
  overflow: hidden;
}

.testimonial-header { text-align: center; color: white; margin-bottom: 70px; }
.testimonial-header span { color: #00d4ff; letter-spacing: 3px; font-weight: 600; font-size: 13px; display: block; }
.testimonial-header h2 { font-size: 55px; margin: 15px 0; font-weight: 700; }
.testimonial-header p { color: #bfc7d6; max-width: 650px; margin: auto; line-height: 1.7; }

.testimonial-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  align-items: start;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 35px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 20px 50px rgba(0, 212, 255, 0.15);
}

.featured {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(139, 92, 246, 0.08));
  border-color: rgba(0, 212, 255, 0.35);
}

.quote-icon {
  font-size: 52px;
  color: #00d4ff;
  line-height: 1;
  font-family: Georgia, serif;
  opacity: 0.85;
}

.testimonial-card p {
  color: #9aa5b5;
  line-height: 1.8;
  font-size: 15px;
  flex: 1;
  margin: 0;
}

.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  margin: 0;
}

.client { display: flex; align-items: center; gap: 15px; }

.client img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid #00d4ff;
  object-fit: cover;
  flex-shrink: 0;
}

.client h4 { margin: 0 0 4px; font-size: 16px; font-weight: 600; color: #ffffff; }
.client span { color: #6b8aad; font-size: 13px; }

.stars { display: flex; gap: 4px; color: #fbbf24; font-size: 15px; }

@media (max-width: 991px) {
  .testimonials { padding: 80px 5%; }
  .testimonial-header h2 { font-size: 38px; }
  .testimonial-header { margin-bottom: 50px; }
  .testimonial-wrapper { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .featured { transform: none; }
}

@media (max-width: 767px) {
  .testimonials { padding: 60px 4%; }
  .testimonial-header { margin-bottom: 36px; }
  .testimonial-header h2 { font-size: 28px; margin: 10px 0; }
  .testimonial-header p { font-size: .88rem; }
  .testimonial-wrapper { grid-template-columns: 1fr; gap: 16px; }
  .testimonial-card { padding: 24px 20px; border-radius: 20px; }
  .quote-icon { font-size: 40px; }
  .testimonial-card p { font-size: .88rem; line-height: 1.7; }
  .client img { width: 44px; height: 44px; }
  .client h4 { font-size: 15px; }
  .client span { font-size: 12px; }
}

@media (max-width: 480px) {
  .testimonials { padding: 50px 16px; }
  .testimonial-header h2 { font-size: 24px; }
}

/* ============================================================
   NAVBAR ALIGNMENT & TOGGLER COLOR FIXES
   ============================================================ */
@media (min-width: 992px) {
  .navbar-expand-lg .navbar-collapse { display: flex !important; flex-basis: auto; }
  .navbar-nav { flex-direction: row !important; align-items: center; }
}

/* Alternative — section ke upar space do */
#about,
#focus-area,
#achievements {
  scroll-margin-top: 80px; /* navbar height */
}


.contact-strip {
  background-color: #f8f9fa; /* Light background for contrast */
  padding: 50px 0;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
}

.contact-strip h3 {
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.contact-strip p {
  color: #666;
  margin-bottom: 0;
}

/* Button Styling */
.btn-light-brand {
  background-color: #007bff; /* Replace with your brand color */
  color: #fff;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-light-brand:hover {
  background-color: #0056b3;
  color: #fff;
}

.btn-outline-light-brand {
  border: 2px solid #007bff;
  color: #007bff;
  padding: 9px 24px;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline-light-brand:hover {
  background-color: #007bff;
  color: #fff;
}