/* =============================================
   SAMPARK ODISHA - MAIN STYLESHEET
   Color Palette:
   Primary:   #1B3A6B (Deep Navy Blue)
   Secondary: #F4831F (Saffron Orange)
   Accent:    #00A86B (Emerald Green)
   Light:     #EEF2F7
   Dark:      #0A1628
============================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Noto+Sans+Oriya:wght@400;700&display=swap');

:root {
  --primary:   #1B3A6B;
  --secondary: #F4831F;
  --accent:    #00A86B;
  --light:     #EEF2F7;
  --dark:      #0A1628;
  --gray:      #6c757d;
  --white:     #ffffff;
  --shadow:    0 4px 24px rgba(27,58,107,0.12);
  --radius:    12px;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', 'Noto Sans Oriya', sans-serif;
  color: #333;
  background: #fff;
  overflow-x: hidden;
  line-height: 1.7;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ---- UTILITIES ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 90px 0; }
.text-center { text-align: center; }
.text-orange { color: var(--secondary); }
.text-navy   { color: var(--primary); }
.text-green  { color: var(--accent); }
.bg-light { background: var(--light); }
.bg-dark  { background: var(--dark); color: #fff; }
.bg-primary { background: var(--primary); color: #fff; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-primary {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 4px 18px rgba(244,131,31,0.4);
}
.btn-primary:hover {
  background: #e07010;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(244,131,31,0.5);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-outline:hover {
  background: #fff;
  color: var(--primary);
}
.btn-navy {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 18px rgba(27,58,107,0.35);
}
.btn-navy:hover {
  background: #0d2a52;
  transform: translateY(-2px);
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 16px;
  color: var(--gray);
  max-width: 580px;
  margin: 0 auto 50px;
}
.tag-line {
  display: inline-block;
  background: rgba(244,131,31,0.12);
  color: var(--secondary);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.divider {
  width: 60px;
  height: 4px;
  background: var(--secondary);
  border-radius: 4px;
  margin: 0 auto 20px;
}
.divider-left { margin: 0 0 20px; }

/* ---- WE DEAL WITH SECTION ---- */
.wdw-section {
  position: relative;
  padding: 90px 0;
  background: var(--dark);
  overflow: hidden;
}
.wdw-bg {
  position: absolute;
  inset: 0;
  background: url('images/slider01.png') center/cover no-repeat;
  opacity: 0.06;
}
.wdw-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.wdw-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.wdw-card:hover {
  border-color: rgba(244,131,31,0.3);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  transform: translateY(-4px);
}
.wdw-card-head {
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.wdw-card-head i {
  font-size: 26px;
  color: rgba(255,255,255,0.85);
}
.wdw-card-head h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}
.wdw-card-body {
  padding: 20px 24px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Deal tags (inside cards) */
.deal-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  transition: var(--transition);
  white-space: nowrap;
}
.deal-tag i { font-size: 11px; color: var(--secondary); opacity: .8; }
.deal-tag:hover {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(244,131,31,0.35);
}
.deal-tag:hover i { color: #fff; opacity: 1; }

@media (max-width: 900px) {
  .wdw-section { padding: 60px 0; }
  .wdw-grid { gap: 20px; }
}
@media (max-width: 600px) {
  .wdw-section { padding: 50px 0; }
  .wdw-grid { grid-template-columns: 1fr; gap: 16px; }
  .wdw-card-head { padding: 18px 18px; }
  .wdw-card-head i { font-size: 22px; }
  .wdw-card-head h3 { font-size: 15px; }
  .wdw-card-body { padding: 14px 16px 18px; gap: 6px; }
  .deal-tag { padding: 6px 11px; font-size: 11px; }
}
@media (max-width: 400px) {
  .deal-tag { padding: 5px 9px; font-size: 10px; gap: 4px; }
  .wdw-card-body { gap: 5px; }
}

/* ============ NAVBAR ============ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
  background: transparent;
}
#navbar.scrolled {
  background: var(--dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav-logo img { height: 55px; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3)); }

/* ---- Desktop nav links ---- */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links > li {
  position: relative;
}
.nav-links > li > a {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 11px;
  border-radius: 6px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--secondary);
  background: rgba(255,255,255,0.08);
}
.nav-links > li > a .nav-arrow {
  font-size: 9px;
  transition: transform 0.3s;
  opacity: .7;
}
.nav-links > li:hover > a .nav-arrow { transform: rotate(180deg); }

/* ---- Dropdown ---- */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 10px 0;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 200;
}
/* wide dropdown for Services (2-column) */
.dropdown.wide {
  min-width: 480px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 10px 0;
}
.dropdown.wide .drop-heading {
  grid-column: 1 / -1;
}
.nav-links > li:hover > .dropdown,
.nav-links > li:focus-within > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  font-weight: 400;
  transition: var(--transition);
  border-radius: 0;
}
.dropdown a i {
  font-size: 13px;
  color: var(--secondary);
  width: 16px;
  flex-shrink: 0;
}
.dropdown a:hover {
  color: var(--secondary);
  background: rgba(244,131,31,0.08);
  padding-left: 24px;
}
.drop-heading {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255,255,255,0.3);
  padding: 8px 18px 4px;
}
.dropdown .divider-line {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin: 6px 0;
}

/* ---- CTA button ---- */
.nav-cta {
  background: var(--secondary) !important;
  color: #fff !important;
  padding: 9px 18px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 13px !important;
}
.nav-cta:hover {
  background: #e07010 !important;
  color: #fff !important;
}

/* ---- Hamburger ---- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: var(--transition);
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 4px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Mobile nav ---- */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--dark);
  padding: 16px;
  gap: 2px;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}
.nav-mobile.show { display: flex; }

.nav-mobile > a,
.mob-item > .mob-top {
  color: rgba(255,255,255,0.85);
  padding: 11px 14px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  cursor: pointer;
}
.nav-mobile > a:hover,
.mob-item > .mob-top:hover { color: var(--secondary); background: rgba(255,255,255,0.05); }
.mob-item > .mob-top .arrow { font-size: 11px; transition: transform 0.3s; }
.mob-item.open > .mob-top .arrow { transform: rotate(180deg); color: var(--secondary); }

.mob-sub {
  display: none;
  flex-direction: column;
  gap: 2px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  margin: 4px 0 4px 10px;
  padding: 6px 0;
}
.mob-item.open .mob-sub { display: flex; }
.mob-sub a {
  color: rgba(255,255,255,0.65);
  padding: 9px 16px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 6px;
  transition: var(--transition);
}
.mob-sub a i { color: var(--secondary); font-size: 12px; width: 14px; }
.mob-sub a:hover { color: var(--secondary); background: rgba(244,131,31,0.07); }

/* ============ HERO SLIDER ============ */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  background: var(--dark);
}

/* --- SLIDES TRACK --- */
.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}

/* --- SINGLE SLIDE --- */
.slide {
  position: relative;
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 7s ease;
}
.slide.active .slide-bg { transform: scale(1); }

.slide-overlay {
  position: absolute;
  inset: 0;
}
.slide:nth-child(1) .slide-overlay { background: linear-gradient(120deg, rgba(10,22,40,0.93) 0%, rgba(27,58,107,0.80) 55%, rgba(244,131,31,0.15) 100%); }
.slide:nth-child(2) .slide-overlay { background: linear-gradient(120deg, rgba(10,22,40,0.92) 0%, rgba(0,80,50,0.65) 60%, rgba(0,168,107,0.12) 100%); }
.slide:nth-child(3) .slide-overlay { background: linear-gradient(120deg, rgba(10,22,40,0.94) 0%, rgba(80,20,100,0.65) 55%, rgba(244,131,31,0.12) 100%); }
.slide:nth-child(4) .slide-overlay { background: linear-gradient(120deg, rgba(10,22,40,0.93) 0%, rgba(27,58,107,0.82) 58%, rgba(0,168,107,0.15) 100%); }

/* --- SLIDE CONTENT --- */
.slide-content {
  position: relative;
  z-index: 3;
  max-width: 720px;
  padding-top: 80px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}
.slide.active .slide-content {
  opacity: 1;
  transform: translateY(0);
}
.slide-content .tag-line { margin-bottom: 20px; }
.hero-title {
  font-size: clamp(34px, 5.5vw, 66px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -1px;
}
.hero-title span { color: var(--secondary); }
.hero-title .text-green-hl { color: #4ade80; }
.hero-title .text-purple-hl { color: #c084fc; }
.hero-odia {
  font-family: 'Noto Sans Oriya', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 22px;
  border-left: 3px solid var(--secondary);
  padding-left: 14px;
  font-style: italic;
  line-height: 1.7;
}
.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  max-width: 580px;
  line-height: 1.8;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* --- SLIDE BADGE (bottom-right stats) --- */
.hero-stats {
  position: absolute;
  bottom: 50px;
  right: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  z-index: 4;
}
.hero-stat {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 20px 26px;
  text-align: center;
  border-radius: 4px;
}
.hero-stat:first-child { border-radius: 12px 4px 4px 4px; }
.hero-stat:last-child  { border-radius: 4px 4px 12px 4px; }
.hero-stat .num { font-size: 30px; font-weight: 800; color: var(--secondary); display: block; }
.hero-stat .lbl { font-size: 11px; color: rgba(255,255,255,0.7); font-weight: 500; }

/* --- ARROW BUTTONS --- */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.slider-arrow:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  transform: translateY(-50%) scale(1.1);
}
.slider-arrow.prev { left: 28px; }
.slider-arrow.next { right: 100px; }

/* --- DOT INDICATORS --- */
.slider-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}
.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.slider-dot.active {
  background: var(--secondary);
  width: 30px;
  border-radius: 6px;
}

/* --- PROGRESS BAR --- */
.slider-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  background: var(--secondary);
  z-index: 5;
  width: 0%;
  transition: width linear;
}

/* --- SCROLL DOWN --- */
.scroll-down {
  position: absolute;
  bottom: 38px;
  right: 40px; left: auto;
  transform: none;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  animation: bounce 2s infinite;
}
.scroll-down i { font-size: 18px; color: var(--secondary); }

/* Slide number indicator */
.slide-counter {
  position: absolute;
  top: 50%;
  right: 28px;
  transform: translateY(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  pointer-events: none;
}
.slide-counter .current {
  font-size: 32px;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
}
.slide-counter .sep {
  width: 2px; height: 40px;
  background: rgba(255,255,255,0.2);
}
.slide-counter .total {
  font-size: 16px;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
}

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

/* --- SLIDER RESPONSIVE --- */
@media (max-width: 900px) {
  .hero-stats    { display: none; }
  .slide-counter { display: none; }
  .scroll-down   { right: 50%; transform: translateX(50%); bottom: 56px; }
  .slider-arrow  { width: 42px; height: 42px; font-size: 15px; }
  .slider-arrow.prev { left: 14px; }
  .slider-arrow.next { right: 14px; }
}
@media (max-width: 600px) {
  .hero-slider { min-height: 100svh; }
  .scroll-down { display: none; }
}

/* ============ MARQUEE TICKER ============ */
.ticker-wrap {
  background: var(--secondary);
  padding: 12px 0;
  overflow: hidden;
}
.ticker {
  display: flex;
  gap: 60px;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}
.ticker span {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.ticker span i { font-size: 16px; opacity: .75; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============ QUICK ICONS ============ */
.quick-icons { padding: 60px 0; }
.quick-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.quick-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 16px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
  border-bottom: 3px solid transparent;
}
.quick-card:hover {
  transform: translateY(-6px);
  border-bottom-color: var(--secondary);
  box-shadow: 0 12px 36px rgba(27,58,107,0.18);
}
.quick-card .icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #2d5fd4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  transition: var(--transition);
}
.quick-card:hover .icon-wrap { background: linear-gradient(135deg, var(--secondary), #e07010); }
.quick-card .icon-wrap i { font-size: 24px; color: #fff; }
.quick-card h4 { font-size: 14px; color: var(--primary); font-weight: 600; margin-bottom: 4px; }
.quick-card p  { font-size: 11px; color: var(--gray); font-family: 'Noto Sans Oriya', sans-serif; }

/* ============ ABOUT SECTION ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-main {
  border-radius: 20px;
  width: 100%;
  object-fit: cover;
  height: 480px;
  box-shadow: 0 20px 60px rgba(27,58,107,0.25);
}
.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--secondary);
  color: #fff;
  border-radius: 14px;
  padding: 22px 28px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(244,131,31,0.45);
}
.about-badge .num { font-size: 40px; font-weight: 800; display: block; line-height: 1; }
.about-badge .lbl { font-size: 13px; font-weight: 500; opacity: .9; }
.about-content .tag-line { margin-bottom: 14px; }
.about-content .section-title { margin-bottom: 18px; }
.about-desc {
  color: var(--gray);
  margin-bottom: 14px;
  line-height: 1.85;
}
.about-odia {
  font-family: 'Noto Sans Oriya', sans-serif;
  font-size: 14px;
  color: var(--gray);
  background: var(--light);
  padding: 16px 20px;
  border-left: 4px solid var(--secondary);
  border-radius: 0 8px 8px 0;
  margin-bottom: 28px;
  line-height: 1.9;
}
.about-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 34px; }
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #444;
}
.about-list li i { color: var(--accent); font-size: 18px; margin-top: 2px; flex-shrink: 0; }

/* ============ SERVICES ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(27,58,107,0.06);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(27,58,107,0.18); }
.service-card:hover::before { transform: scaleX(1); }
.service-card .s-icon {
  width: 70px; height: 70px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(27,58,107,0.08), rgba(244,131,31,0.08));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: var(--transition);
}
.service-card:hover .s-icon { background: linear-gradient(135deg, var(--primary), var(--secondary)); }
.service-card .s-icon i { font-size: 28px; color: var(--primary); transition: var(--transition); }
.service-card:hover .s-icon i { color: #fff; }
.service-card h3 { font-size: 18px; color: var(--primary); font-weight: 600; margin-bottom: 8px; }
.service-card .s-odia {
  font-family: 'Noto Sans Oriya', sans-serif;
  font-size: 12px; color: var(--secondary); margin-bottom: 12px;
}
.service-card p { font-size: 14px; color: var(--gray); line-height: 1.75; }
.service-card .s-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px; font-size: 14px; font-weight: 600;
  color: var(--primary); transition: var(--transition);
}
.service-card:hover .s-link { color: var(--secondary); }
.service-card .s-link i { transition: var(--transition); }
.service-card:hover .s-link i { transform: translateX(4px); }

/* ============ WHY CHOOSE US ============ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-items { display: flex; flex-direction: column; gap: 24px; }
.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.why-item:hover { transform: translateX(8px); box-shadow: 0 8px 32px rgba(27,58,107,0.15); }
.why-icon {
  width: 56px; height: 56px; flex-shrink: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), #2d5fd4);
  display: flex; align-items: center; justify-content: center;
}
.why-icon i { font-size: 22px; color: #fff; }
.why-item h4 { font-size: 16px; font-weight: 600; color: var(--primary); margin-bottom: 6px; }
.why-item p  { font-size: 14px; color: var(--gray); line-height: 1.7; }
.why-visual { position: relative; }
.why-visual img {
  border-radius: 20px;
  width: 100%;
  height: 520px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(27,58,107,0.2);
}
.why-tag {
  position: absolute;
  top: 30px; left: -24px;
  background: var(--primary);
  color: #fff;
  padding: 16px 22px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 28px rgba(27,58,107,0.35);
}
.why-tag .nt { font-size: 26px; font-weight: 800; display: block; }
.why-tag .lt { font-size: 12px; opacity: .8; }

/* ============ STATS COUNTER ============ */
.stats-section {
  background: linear-gradient(135deg, var(--primary) 0%, #0d2a52 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: -60%; right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(244,131,31,0.08);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}
.stat-box {
  text-align: center;
  padding: 30px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-box:last-child { border-right: none; }
.stat-num {
  font-size: 52px;
  font-weight: 800;
  color: var(--secondary);
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label { font-size: 15px; color: rgba(255,255,255,0.75); font-weight: 500; }

/* ============ LOAN / PROCESS ============ */
.process-steps {
  display: flex;
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 40px; left: 40px; right: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}
.process-step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.step-circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.process-step:hover .step-circle {
  background: var(--secondary);
  border-color: var(--secondary);
  color: #fff;
  transform: scale(1.1);
}
.process-step h4 { font-size: 15px; color: var(--primary); font-weight: 600; margin-bottom: 8px; }
.process-step p  { font-size: 13px; color: var(--gray); }

/* ============ LOAN CARDS ============ */
.loan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.loan-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  background: #fff;
}
.loan-card:hover { transform: translateY(-8px); }
.loan-card-header {
  padding: 32px 28px 24px;
  background: linear-gradient(135deg, var(--primary), #2d5fd4);
}
.loan-card.featured .loan-card-header {
  background: linear-gradient(135deg, var(--secondary), #c06010);
}
.loan-card-header i { font-size: 36px; color: rgba(255,255,255,0.8); margin-bottom: 14px; }
.loan-card-header h3 { font-size: 20px; color: #fff; font-weight: 700; margin-bottom: 6px; }
.loan-card-header p  { font-size: 13px; color: rgba(255,255,255,0.75); }
.loan-card-body { padding: 24px 28px; }
.loan-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.loan-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: #444;
}
.loan-features li i { color: var(--accent); font-size: 15px; }

/* ============ INDUSTRIES ============ */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.industry-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  height: 220px;
  transition: var(--transition);
}
.industry-card:hover { transform: scale(1.03); }
.industry-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.industry-card:hover .industry-img { transform: scale(1.08); }
.industry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.92), rgba(27,58,107,0.3));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  transition: var(--transition);
}
.industry-card:hover .industry-overlay { background: linear-gradient(to top, rgba(244,131,31,0.9), rgba(27,58,107,0.5)); }
.industry-overlay i   { font-size: 28px; color: rgba(255,255,255,0.7); margin-bottom: 8px; }
.industry-overlay h4  { font-size: 15px; color: #fff; font-weight: 600; }

/* ============ MSME ============ */
.msme-hero {
  background: linear-gradient(135deg, var(--primary), #0d2a52);
  padding: 120px 0 80px;
  color: #fff;
}
.msme-hero h1 { font-size: clamp(30px,5vw,52px); font-weight: 800; margin-bottom: 18px; }
.msme-hero p  { font-size: 17px; opacity: .8; max-width: 600px; }
.msme-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.msme-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--primary);
  transition: var(--transition);
}
.msme-card:hover { border-left-color: var(--secondary); transform: translateX(6px); }
.msme-card h3 { font-size: 18px; color: var(--primary); font-weight: 700; margin-bottom: 10px; }
.msme-card p  { font-size: 14px; color: var(--gray); line-height: 1.8; margin-bottom: 16px; }

/* ============ FAQ ============ */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}
.faq-q {
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer;
  font-size: 15px; font-weight: 600; color: var(--primary);
  transition: var(--transition);
}
.faq-q:hover { color: var(--secondary); }
.faq-q .arrow { font-size: 18px; transition: var(--transition); }
.faq-item.open .faq-q .arrow { transform: rotate(180deg); color: var(--secondary); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 14px; color: var(--gray); line-height: 1.8;
}
.faq-a-inner { padding: 0 24px 20px; border-top: 1px solid rgba(27,58,107,0.08); }
.faq-item.open .faq-a { max-height: 300px; }

/* ============ FRANCHISE ============ */
.franchise-banner {
  background: linear-gradient(135deg, var(--secondary), #c06010);
  padding: 100px 0 70px;
  color: #fff;
}
.franchise-banner h1 { font-size: clamp(30px,5vw,52px); font-weight: 800; margin-bottom: 18px; }
.franchise-banner p  { font-size: 18px; opacity: .88; max-width: 580px; }
.franchise-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.f-step {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.f-step:hover { transform: translateY(-6px); }
.f-step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--secondary);
  color: #fff;
  font-size: 20px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.f-step h4 { font-size: 15px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.f-step p  { font-size: 13px; color: var(--gray); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit-card {
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}
.benefit-card:hover { transform: translateY(-5px); }
.benefit-card i   { font-size: 36px; color: var(--primary); margin-bottom: 14px; }
.benefit-card h4  { font-size: 16px; font-weight: 600; color: var(--primary); margin-bottom: 8px; }
.benefit-card p   { font-size: 14px; color: var(--gray); }

/* ============ CONTACT FORM ============ */
.contact-section {
  background: var(--light);
  padding: 90px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { font-size: 32px; font-weight: 700; color: var(--primary); margin-bottom: 16px; }
.contact-info p  { color: var(--gray); margin-bottom: 32px; line-height: 1.8; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.c-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 22px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.c-item-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), #2d5fd4);
  display: flex; align-items: center; justify-content: center;
}
.c-item-icon i { color: #fff; font-size: 18px; }
.c-item-text h5 { font-size: 14px; color: var(--gray); font-weight: 500; margin-bottom: 2px; }
.c-item-text p  { font-size: 15px; color: var(--primary); font-weight: 600; }
.contact-form-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 44px 40px;
  box-shadow: 0 10px 50px rgba(27,58,107,0.12);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--primary); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid #e8ecf0;
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  color: #333;
  outline: none;
  transition: var(--transition);
  background: #f9fafb;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(27,58,107,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  text-align: center;
  padding: 20px;
  color: var(--accent);
  font-weight: 600;
}

/* ============ PAGE HERO ============ */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  padding: 140px 0 80px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/slider01.png') center/cover no-repeat;
  opacity: 0.08;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(28px,5vw,52px); font-weight: 800; margin-bottom: 14px; }
.page-hero p  { font-size: 17px; opacity: .8; max-width: 540px; margin: 0 auto 20px; }
.breadcrumb {
  display: flex; justify-content: center; gap: 10px;
  font-size: 14px; color: rgba(255,255,255,0.65);
}
.breadcrumb a { color: var(--secondary); }
.breadcrumb span i { font-size: 10px; }

/* ============ FOOTER ============ */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { height: 52px; margin-bottom: 18px; }
.footer-brand p { font-size: 14px; line-height: 1.85; opacity: .7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 16px;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--secondary); transform: translateY(-3px); }
.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 32px; height: 3px;
  background: var(--secondary);
  border-radius: 4px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  display: flex; align-items: center; gap: 8px;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--secondary); transform: translateX(4px); }
.footer-links a i { font-size: 10px; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 16px;
}
.footer-contact-item i { color: var(--secondary); font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item span { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.45); }
.footer-bottom a { color: var(--secondary); }

/* ============ FLOATING BUTTONS ============ */
.float-btns {
  position: fixed;
  bottom: 30px; right: 25px;
  display: flex; flex-direction: column; gap: 12px;
  z-index: 999;
}
.float-btn {
  width: 50px; height: 50px;
  border-radius: 50%;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.float-btn:hover { transform: scale(1.12); }
.whatsapp-btn { background: #25D366; color: #fff; }
.scroll-top-btn { background: var(--primary); color: #fff; opacity: 0; pointer-events: none; }
.scroll-top-btn.show { opacity: 1; pointer-events: auto; }

/* ============ ANIMATIONS ============ */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-right.visible { opacity: 1; transform: translateX(0); }

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

/* ---- Laptop / Large Tablet (1100px) ---- */
@media (max-width: 1100px) {
  .quick-grid    { grid-template-columns: repeat(3, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 36px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Tablet / Small Laptop (900px) ---- */
@media (max-width: 900px) {
  /* Nav */
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Layout grids */
  .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .stats-grid      { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .loan-grid       { grid-template-columns: 1fr 1fr; }
  .franchise-steps { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid   { grid-template-columns: repeat(2, 1fr); }
  .msme-cards      { grid-template-columns: 1fr; }

  /* Images */
  .about-img-main, .why-visual img { height: 280px; }

  /* Badges */
  .about-badge { bottom: 10px; right: 10px; padding: 14px 18px; }
  .about-badge .num { font-size: 26px; }
  .why-tag { left: 10px; top: 12px; }

  /* Stats */
  .stat-num { font-size: 36px; }
  .stat-box { border-right: none; }

  /* Process */
  .process-steps { flex-direction: column; align-items: center; }
  .process-steps::before { display: none; }

  /* Hero */
  .hero-stats { display: none; }

  /* Page heroes */
  .page-hero { padding: 110px 0 56px; }
  .msme-hero { padding: 100px 0 56px; }
  .franchise-banner { padding: 100px 0 56px; }

  /* Stats decorative circle — hide on tablet */
  .stats-section::before { display: none; }

  /* Inline-style grids — tablet: 2 columns */
  [style*="grid-template-columns:repeat(4"],
  [style*="grid-template-columns: repeat(4"],
  [style*="grid-template-columns:repeat(3"],
  [style*="grid-template-columns: repeat(3"],
  [style*="grid-template-columns:1fr 1fr 1fr"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }

  /* Inline-style padding — reduce on tablet */
  [style*="padding:70px 0"],
  [style*="padding: 70px 0"],
  [style*="padding:80px 0"],
  [style*="padding: 80px 0"] {
    padding: 50px 0 !important;
  }

  /* Inline-style images — cap height */
  [style*="height:420px"],
  [style*="height: 420px"],
  [style*="height:400px"],
  [style*="height: 400px"] {
    height: 280px !important;
  }
}

/* ---- Tablet Portrait (768px) ---- */
@media (max-width: 768px) {
  /* 2-column inline grids → 1 column */
  [style*="grid-template-columns:1fr 1fr;"],
  [style*="grid-template-columns: 1fr 1fr;"] {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .loan-grid { grid-template-columns: 1fr; }
  .why-grid .why-visual { order: -1; }
  .why-tag { display: none; }
  .stat-num { font-size: 32px; }
  .stat-label { font-size: 12px; }
  .contact-form-wrap { padding: 28px 22px; }

  /* Inline font-size overrides for large headings */
  [style*="font-size:clamp(24px"],
  [style*="font-size: clamp(24px"],
  [style*="font-size:clamp(26px"],
  [style*="font-size: clamp(26px"] {
    font-size: clamp(22px, 5vw, 34px) !important;
  }
}

/* ---- Mobile (600px) ---- */
@media (max-width: 600px) {
  /* Spacing */
  .section-pad  { padding: 50px 0; }
  .quick-icons  { padding: 36px 0; }

  /* Layout grids */
  .quick-grid      { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .services-grid   { grid-template-columns: 1fr; }
  .loan-grid       { grid-template-columns: 1fr; }
  .franchise-steps { grid-template-columns: 1fr; }
  .benefits-grid   { grid-template-columns: 1fr; }
  .industry-grid   { grid-template-columns: 1fr 1fr; }
  .footer-grid     { grid-template-columns: 1fr; gap: 30px; }
  .stats-grid      { grid-template-columns: 1fr 1fr; gap: 12px; }
  .form-row        { grid-template-columns: 1fr; }

  /* ALL inline grids → single column */
  [style*="grid-template-columns:repeat(4"],
  [style*="grid-template-columns: repeat(4"],
  [style*="grid-template-columns:repeat(3"],
  [style*="grid-template-columns: repeat(3"],
  [style*="grid-template-columns:repeat(2"],
  [style*="grid-template-columns: repeat(2"],
  [style*="grid-template-columns:1fr 1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* Inline gaps — tighten */
  [style*="gap:60px"], [style*="gap: 60px"] { gap: 24px !important; }
  [style*="gap:50px"], [style*="gap: 50px"] { gap: 22px !important; }
  [style*="gap:40px"], [style*="gap: 40px"] { gap: 20px !important; }
  [style*="gap:30px"], [style*="gap: 30px"] { gap: 18px !important; }
  [style*="gap:28px"], [style*="gap: 28px"] { gap: 16px !important; }
  [style*="gap:26px"], [style*="gap: 26px"] { gap: 16px !important; }
  [style*="gap:24px"], [style*="gap: 24px"] { gap: 14px !important; }

  /* Inline padding — reduce */
  [style*="padding:70px 0"], [style*="padding: 70px 0"] { padding: 40px 0 !important; }
  [style*="padding:80px 0"], [style*="padding: 80px 0"] { padding: 40px 0 !important; }
  [style*="padding:60px 0"], [style*="padding: 60px 0"] { padding: 36px 0 !important; }
  [style*="margin-bottom:50px"], [style*="margin-bottom: 50px"] { margin-bottom: 30px !important; }
  [style*="margin-bottom:60px"], [style*="margin-bottom: 60px"] { margin-bottom: 30px !important; }

  /* Inline images — cap height */
  [style*="height:420px"], [style*="height: 420px"],
  [style*="height:400px"], [style*="height: 400px"] {
    height: 220px !important;
  }
  .about-img-main { height: 200px; }

  /* Hero slider */
  .slide-content { padding: 90px 0 40px; }
  .hero-title { letter-spacing: -0.5px; }
  .hero-odia  { font-size: 13px; padding-left: 10px; }
  .hero-desc  { font-size: 14px; margin-bottom: 24px; }
  .hero-btns  { flex-direction: column; align-items: stretch; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .slider-arrow { width: 34px; height: 34px; font-size: 12px; }
  .slider-arrow.prev { left: 8px; }
  .slider-arrow.next { right: 8px; }
  .slider-dots { bottom: 14px; gap: 7px; }
  .slider-dot  { width: 8px; height: 8px; }
  .slider-dot.active { width: 24px; }

  /* Badges / Tags — hide */
  .about-badge { display: none; }
  .why-tag     { display: none; }

  /* Stats */
  .stat-num   { font-size: 28px; }
  .stat-label { font-size: 11px; }
  .stat-box   { padding: 18px 10px; }
  .stats-section { padding: 40px 0; }

  /* Page hero */
  .page-hero { padding: 96px 0 44px; }
  .page-hero h1 { font-size: 24px; }
  .page-hero p  { font-size: 13px; }
  .breadcrumb   { font-size: 12px; }

  /* MSME / Franchise banners */
  .msme-hero, .franchise-banner { padding: 96px 0 44px; }
  .msme-hero h1, .franchise-banner h1 { font-size: 24px; }
  .msme-hero p, .franchise-banner p { font-size: 14px; }

  /* Section titles */
  .section-title    { font-size: 22px; }
  .section-subtitle { font-size: 14px; margin-bottom: 30px; }
  .tag-line         { font-size: 11px; padding: 4px 12px; }
  .divider          { width: 44px; margin-bottom: 14px; }

  /* Cards */
  .service-card { padding: 22px 18px; }
  .service-card .s-icon { width: 52px; height: 52px; }
  .service-card .s-icon i { font-size: 20px; }
  .service-card h3 { font-size: 16px; }
  .service-card p  { font-size: 13px; }
  .quick-card { padding: 18px 10px; }
  .quick-card .icon-wrap { width: 48px; height: 48px; }
  .quick-card .icon-wrap i { font-size: 18px; }
  .quick-card h4 { font-size: 12px; }
  .quick-card p  { font-size: 10px; }

  /* Loan cards */
  .loan-card-header { padding: 24px 20px 18px; }
  .loan-card-header h3 { font-size: 18px; }
  .loan-card-body { padding: 20px; }
  .loan-features li { font-size: 13px; }

  /* Why section */
  .why-item { padding: 18px; gap: 14px; }
  .why-icon { width: 48px; height: 48px; }
  .why-icon i { font-size: 18px; }
  .why-item h4 { font-size: 15px; }
  .why-item p  { font-size: 13px; }

  /* FAQ */
  .faq-q { padding: 16px 18px; font-size: 14px; }
  .faq-a-inner { padding: 0 18px 16px; font-size: 13px; }

  /* MSME cards */
  .msme-card { padding: 22px; }
  .msme-card h3 { font-size: 16px; }

  /* Process steps */
  .step-circle { width: 64px; height: 64px; font-size: 18px; }
  .process-step h4 { font-size: 14px; }
  .process-step p  { font-size: 12px; }

  /* Franchise steps */
  .f-step { padding: 24px 18px; }
  .f-step-num { width: 44px; height: 44px; font-size: 18px; }
  .benefit-card { padding: 22px 16px; }
  .benefit-card i { font-size: 28px; }
  .benefit-card h4 { font-size: 14px; }
  .benefit-card p  { font-size: 13px; }

  /* Forms */
  .contact-form-wrap { padding: 22px 16px; }
  .form-group { margin-bottom: 14px; }
  .form-group label { font-size: 12px; }
  .form-group input,
  .form-group textarea,
  .form-group select { padding: 11px 13px; font-size: 13px; }

  /* About */
  .about-desc { font-size: 14px; }
  .about-odia { font-size: 13px; padding: 12px 14px; }
  .about-list li { font-size: 13px; gap: 10px; }
  .about-list li i { font-size: 16px; }

  /* Contact items */
  .c-item { padding: 14px 16px; gap: 12px; }
  .c-item-icon { width: 40px; height: 40px; }
  .c-item-icon i { font-size: 15px; }
  .c-item-text p { font-size: 14px; }

  /* Buttons */
  .btn { padding: 11px 22px; font-size: 14px; }

  /* Footer */
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }
  .footer-col h4 { font-size: 15px; }
  .footer-links a { font-size: 13px; }
  .footer-contact-item span { font-size: 13px; }
  .footer-brand p { font-size: 13px; }
  .footer-social a { width: 34px; height: 34px; font-size: 14px; }

  /* Ticker */
  .ticker span { font-size: 12px; }
  .ticker { gap: 36px; }

  /* Float buttons */
  .float-btns { bottom: 20px; right: 16px; gap: 10px; }
  .float-btn { width: 44px; height: 44px; font-size: 18px; }

  /* Map on contact page */
  iframe[src*="google.com/maps"] { height: 260px !important; }

  /* Industry cards */
  .industry-card { height: 180px; }
}

/* ---- Small Mobile (400px) ---- */
@media (max-width: 400px) {
  .container  { padding: 0 12px; }
  .nav-inner  { height: 66px; }
  .nav-logo img { height: 42px; }

  .hero-title { font-size: 26px; }
  .hero-desc  { font-size: 13px; }
  .slide-content { padding: 76px 0 26px; }

  .quick-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .quick-card { padding: 14px 8px; }
  .quick-card .icon-wrap { width: 42px; height: 42px; }
  .quick-card .icon-wrap i { font-size: 16px; }
  .quick-card h4 { font-size: 11px; }
  .quick-card p  { font-size: 9px; }

  .section-title { font-size: 20px; }
  .page-hero h1  { font-size: 22px; }
  .stat-num { font-size: 24px; }

  .service-card { padding: 18px 14px; }
  .service-card h3 { font-size: 15px; }

  .footer-grid { gap: 24px; }
  .float-btns { bottom: 14px; right: 12px; }
  .float-btn { width: 40px; height: 40px; font-size: 16px; }

  /* Industry grid */
  .industry-grid { grid-template-columns: 1fr; }
  .industry-card { height: 160px; }
}
