/* =============================================
   TALENTHUNT DELHI — style.css
   ============================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #1c0a00;
  color: #fff;
  overflow-x: hidden;
}

/* =============================================
   NAVBAR — Exact as image
   style.css mein purana navbar CSS replace karo
   ============================================= */

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;

  /* Left+right margin/padding like image — navbar doesn't touch edges */
  margin: 10px 24px;
  border-radius: 10px;
  padding: 12px 28px;

  /* Frosted dark bg with slight warm white fade — exactly like image */
  background: rgba(18, 8, 4, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  /* Subtle light border — frosted glass effect */
  border: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

/* ── Logo: italic + orange plus ── */
.nav-logo {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  font-style: italic;
  letter-spacing: -0.3px;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: flex-start;
  line-height: 1;
  text-decoration: none;
}

.nav-logo em {
  font-style: italic;
  color: #fff;
}

.nav-logo sup {
  font-size: 11px;
  font-weight: 700;
  color: #e8630a;
  font-style: normal;
  margin-left: 1px;
  margin-top: 4px;
  line-height: 1;
}

/* ── Right side: links + search + button ── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

/* ── Nav links (right aligned) ── */
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: color 0.2s;
}

.nav-links a:hover { color: #fff; }

/* ── Search icon circle button ── */
.nav-search {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.65);
  transition: all 0.2s;
  padding: 0;
  flex-shrink: 0;
}

.nav-search:hover {
  border-color: rgba(232, 99, 10, 0.5);
  color: #fff;
  background: rgba(232, 99, 10, 0.1);
}

/* ── Register Now — orange pill with border ── */
.btn-nav {
  background: linear-gradient(135deg, #e8630a 0%, #c94f00 100%);
  color: #fff;
  border: 1.5px solid rgba(255, 140, 50, 0.5);
  padding: 9px 24px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.3px;
  box-shadow:
    0 0 0 1px rgba(232, 99, 10, 0.3),
    0 4px 16px rgba(232, 99, 10, 0.35);
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.btn-nav:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(232, 99, 10, 0.4),
    0 6px 20px rgba(232, 99, 10, 0.5);
}


.glass {
            background: rgba(255, 255, 255, .12);
            backdrop-filter: blur(28px);
            border-radius: 22px;
            border: 1px solid rgba(255, 255, 255, .18);
            display: flex;
           
            }

/* ── Responsive ── */
@media (max-width: 768px) {
  .navbar { padding: 12px 18px; }
  .nav-links { display: none; }
  .nav-right { gap: 12px; }
}

/* =============================================
   SHARED BUTTON
   ============================================= */
.btn-fill {
  background: linear-gradient(135deg, #e8630a, #bf4800);
  color: #fff;
  border: none;
  padding: 11px 26px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(232, 99, 10, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-fill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 99, 10, 0.5);
}

/* =============================================
   HERO SECTION
   ============================================= */
/* =============================================
   HERO SECTION — style.css mein ye paste karo
   (purane .hero-bg aur .hero-rays ko hata do)
   ============================================= */

.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 100px 48px 0;
}

/* Three_girls_bg.png — poore hero ka background */
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

/* Dark gradient overlay:
   Left pe zyada dark (text readable)
   Right pe thoda transparent (bg image dikhti rahe) */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Sab cheez overlay ke upar */
.dot-grid,
.ring-lg,
.ring-sm,
.ring-dot,
.hero-content,
.hero-visual {
  position: relative;
  z-index: 2;
}

/* Dot grid */
.dot-grid {
  position: absolute;
  top: 72px; right: 44px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 9px;
  opacity: 0.4;
  pointer-events: none;
}
.dot-grid span {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: #c94f00;
  display: block;
}

/* Decorative rings */
.ring-lg {
  position: absolute;
  left: -80px; top: 50%;
  transform: translateY(-50%);
  width: 240px; height: 240px;
  border-radius: 50%;
  border: 1.5px solid rgba(220, 100, 20, 0.2);
  pointer-events: none;
}
.ring-sm {
  position: absolute;
  left: 50px; bottom: 130px;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(220, 100, 20, 0.32);
  pointer-events: none;
}
.ring-dot {
  position: absolute;
  left: 66px; top: 36%;
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1.5px solid rgba(220, 100, 20, 0.38);
  pointer-events: none;
}

/* Hero left content */
.hero-content {
  max-width: 400px;
  padding-bottom: 70px;
}
.hero-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-eyebrow span {
  display: inline-block;
  width: 18px; height: 1px;
  background: rgba(255, 255, 255, 0.35);
}
.hero h1 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 28px;
  color: #fff;
  letter-spacing: -0.5px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}

/* Hero right visual */
.hero-visual {
  position: absolute;
  right: 0; bottom: 0;
  width: 55%; height: 100%;
  pointer-events: none;
}

/* Orange tilted frames */
.v-frame {
  position: absolute;
  right: 22%; bottom: 20px;
  width: 180px; height: 260px;
  border: 2.5px solid #d45500;
  transform: rotate(7deg);
  z-index: 1;
}
.v-frame-outer {
  position: absolute;
  right: calc(22% - 13px); bottom: 8px;
  width: 180px; height: 260px;
  border: 1.5px solid rgba(210, 85, 0, 0.35);
  transform: rotate(7deg);
  z-index: 1;
}

/* Three_girls.png foreground */
.fig {
  position: absolute;
  bottom: 0;
  z-index: 3;
}
.fig img {
  height: 88vh;
  max-height: 580px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 28px rgba(220, 85, 0, 0.3));
}
.fig1 { right: 10; bottom: 10; }

/* Ground glow */
.ground-glow {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 90px;
  background: radial-gradient(
    ellipse 70% 100% at 50% 100%,
    rgba(200, 70, 0, 0.38),
    transparent 70%
  );
  z-index: 0;
}

/* Responsive */
@media (max-width: 960px) {
  .hero { padding: 90px 20px 0; }
  .hero h1 { font-size: 28px; }
  .ring-lg, .ring-sm, .ring-dot { display: none; }
  .hero-visual { width: 100%; position: relative; height: 280px; }
  .fig img { height: 260px; }
}




/* =============================================
   LOGOS SECTION
   ============================================= */
/* =============================================
   LOGOS SECTION — Infinite Scrolling Marquee
   style.css mein purana logos CSS replace karo
   ============================================= */

.logos-section {
  padding: 50px 0 42px;
  background: #1c0a00;
  text-align: center;
  overflow: hidden;
}

.logos-section .sec-small {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(232, 99, 10, 0.75);
  margin-bottom: 6px;
}

.logos-heading {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 34px;
  color: #fff;
}

/* ── Marquee container ── */
.logos-marquee-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px 0;

  /* Left + right fade edges */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}

/* ── Scrolling track ── */
.logos-marquee {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;

  /* Infinite left scroll animation */
  animation: marquee-scroll 22s linear infinite;
}

/* Pause on hover */
.logos-marquee-wrap:hover .logos-marquee {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Individual brand items ── */
.lbrand {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.28);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 8px 36px;
  white-space: nowrap;
  cursor: default;
  transition: color 0.25s;

  /* Divider between brands */
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.lbrand:hover {
  color: rgba(255, 255, 255, 0.7);
}

.lbrand svg {
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.25s;
}
.lbrand:hover svg {
  opacity: 1;
}

/* =============================================
   ABOUT SECTION
   ============================================= */
 
.about-section {
  padding: 40px 48px 60px;
   background: linear-gradient(to right, #8b1a006b 0%, transparent 40%), linear-gradient(to left, #8b1a006b 0%, transparent 40%), radial-gradient(ellipse at 50% 50%, #1a0000 0%, #1a0000 40%, #00000000 100%);
}
 
/* ── Outer card — rounded border (bilkul image jaise) ── */
.about-card {
  max-width: 1080px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: linear-gradient(135deg, #1e0a00 0%, #140600 100%);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  overflow: hidden;   /* dancer image andar clip ho */
  min-height: 420px;
  position: relative;
}
 
/* ── LEFT: Dancer visual side ── */
.about-visual {
  position: relative;
  height: 420px;
  overflow: visible;  /* dancer image upar nikle */
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
 
/* shape.png — sirf left dancer area ke peeche */
.about-shape-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: 16px 0 0 16px;
}
.about-shape-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.6;
}
 
/* Red→orange gradient rectangle frame */
.about-frame-box {
  position: absolute;
  left: 50%;
  transform: translateX(-48%);
  bottom: 28px;
  width: 240px;
  height: 310px;
  z-index: 2;
  border-radius: 4px;
 
  /* Gradient border using box-shadow + pseudo trick */
  background: transparent;
}
 
/* Gradient border: top = orange, bottom = red */
.about-frame-box::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 4px;
  padding: 2.5px;
  background: linear-gradient(
    to bottom,
    #f5a623 0%,
    #e8630a 35%,
    #c43e00 70%,
    #8b2200 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
 
/* Dancer image — overflows card top */
.about-img-wrap {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-48%);
  z-index: 3;
  width: 360px;
}
.about-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  /* Overflow karo card ke upar */
  margin-bottom: 0;
  position: relative;
  bottom: 0;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.7));
}
 
/* ── RIGHT: Text side ── */
.about-text {
  padding: 48px 44px 48px 20px;
}
 
.about-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #e8630a;
  margin-bottom: 12px;
}
 
.about-text h2 {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 22px;
  letter-spacing: -0.3px;
}
 
/* First paragraph — orange left border, italic bold */
.about-p-highlight {
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  margin-bottom: 18px;
  padding-left: 14px;
  border-left: 3px solid #e8630a;
  font-style: italic;
}
 
/* Second paragraph — normal lighter */
.about-p-normal {
  font-size: 12.5px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.8;
  margin-bottom: 4px;
}
 
/* ── Responsive ── */
@media (max-width: 960px) {
  .about-section { padding: 30px 16px 40px; }
  .about-card {
    grid-template-columns: 1fr;
    border-radius: 12px;
  }
  .about-visual { height: 300px; }
  .about-frame-box { width: 180px; height: 240px; bottom: 20px; }
  .about-img-wrap { width: 260px; }
  .about-text { padding: 30px 24px; }
  .about-text h2 { font-size: 24px; }
  .about-shape-bg { border-radius: 12px 12px 0 0; }
}

/* =============================================
   STEPS SECTION
   ============================================= */
/* =============================================
   STEPS SECTION — Exact as image
   style.css mein purana steps CSS replace karo
   ============================================= */

.steps-section {
  padding: 70px 48px 80px;
  background:
    radial-gradient(ellipse 60% 70% at 15% 50%, #2e1000 0%, transparent 55%),
    #1a0800;
}

.steps-inner {
  max-width: 1060px;
  margin: 0 auto;
}

.steps-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #e8630a;
  margin-bottom: 12px;
}

.steps-h {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 36px;
  line-height: 1.3;
  color: #fff;
}

/* ── 3 separate cards grid ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ── Individual card ── */
.s-card {
  background: linear-gradient(145deg, #2a1000, #1e0c00);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 28px 24px 32px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}

.s-card:hover {
  border-color: rgba(232, 99, 10, 0.3);
  transform: translateY(-4px);
}

/* Top row: icon left, number right */
.s-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

/* Icon box — gradient orange/brown square */
.s-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, #c94f00, #7a2800);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(200, 70, 0, 0.3);
}

.s-icon-wrap svg {
  opacity: 0.95;
}

/* Large gradient number — orange top to red bottom */
.s-num {
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  font-family: 'Poppins', sans-serif;

  /* Orange gradient on number */
  background: linear-gradient(
    to bottom,
    #f5a623 0%,
    #e8630a 50%,
    #c94f00 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  /* Slight opacity */
  opacity: 0.9;
}

.s-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 0.2px;
}

.s-card p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.75;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .steps-section { padding: 50px 20px 60px; }
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .steps-h { font-size: 22px; }
}

/* =============================================
   CATEGORIES SECTION
   ============================================= */


/* =============================================
   CATEGORIES SECTION — Fixed exact as image 2
   ============================================= */

.cat-section {
  padding: 70px 48px 90px;
  text-align: center;
  margin-right: 20;
  background:
    radial-gradient(ellipse 70% 60% at 50% 55%, #3a1200 0%, #1e0800 45%, #130500 100%);
}

.cat-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.cat-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #e8630a;
  margin-bottom: 12px;
}

.cat-h {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 60px;
  color: #fff;
}

/* ── Rows ── */
.cat-row {
  display: flex;
  justify-content: center;
  gap: 120px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  overflow: visible;
}
.cat-row-2 { justify-content: center; }

/* ── Each item — padding-top for overflow image space ── */
.cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  padding-top: 44px; /* space for image overflowing top */
}

/* ── Glass card ── */
.cat-card {
  width: 168px;
  height: 218px;
  border-radius: 14px;
  position: relative;
  margin-bottom: 12px;
  overflow: visible; /* MUST be visible for image to overflow top */

  /* Dark glass */
  background: rgba(32, 9, 2, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.55);
  transition: transform 0.3s, box-shadow 0.3s;
}

.cat-item:hover .cat-card {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.65), 0 0 20px rgba(232,99,10,0.12);
}

/* ── Two-color border frame inside card:
   Gold/yellow = top + left sides
   Red = bottom + right sides ── */


/* ── Bottom glow ── */
.cat-glow {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 90px;
  border-radius: 0 0 14px 14px;
  background: radial-gradient(ellipse 80% 100% at 50% 100%, rgba(190,60,0,0.4), transparent 80%);
  z-index: 1;
  pointer-events: none;
}

/* ── Performer image — overflows card top ── */
.cat-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 135%;        /* overflow top of card */
  width: auto;
  max-width: 165%;
  object-fit: contain;
  z-index: 3;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.65));
  pointer-events: none;
}

/* ── Label ── */
.cat-name {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.3px;
  transition: color 0.2s;
  margin-top: 6px;
}
.cat-item:hover .cat-name { color: #e8630a; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .cat-section { padding: 50px 20px 60px; }
  .cat-card { width: 140px; height: 185px; }
  .cat-item { padding-top: 34px; }
  .cat-row { gap: 12px; margin-bottom: 30px; }
  .cat-h { font-size: 22px; }
}
@media (max-width: 600px) {
  .cat-card { width: 115px; height: 155px; }
  .cat-name { font-size: 11px; }
  .cat-row { gap: 8px; }
}

/* =============================================
   FILTER TABS
   ============================================= */
.filter-bar {
  padding: 28px 48px;
  display: flex;
  justify-content: center;
  gap: 12px;
  background: #1c0a00;
}
#about {
      background: linear-gradient(to right, #8b1a006b 0%, transparent 40%), linear-gradient(to left, #8b1a006b 0%, transparent 40%), radial-gradient(ellipse at 50% 50%, #1a0000 0%, #1a0000 40%, #00000000 100%);

}


.f-btn {
  padding: 9px 30px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Poppins', sans-serif;
  transition: all 0.2s;
}
.f-btn:hover, .f-btn.on {
  background: rgba(232, 99, 10, 0.18);
  border-color: rgba(232, 99, 10, 0.5);
  color: #fff;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-sec {
  position: relative;
  background: url('images/dotted.png') no-repeat center center;
  background-size: cover;
  padding: 80px 20px;
  text-align: center;
  color: #fff;
  overflow: hidden;
  min-height: 220px;
 
  display: flex;
  align-items: center;
  justify-content: center;
 
  max-width: 1200px;   /* 👈 control width */
  margin: 40px auto;   /* 👈 center + top bottom spacing */
  border-radius: 12px; /* optional for nice look */
}
 
 
/* Sabhi ::before aur ::after HATAO — koi extra dots ya oval nahi */
 
.cta-in {
  position: relative;
  z-index: 2;
}
 
.cta-h {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #fff;
}
 
.cta-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  font-style: italic;
  letter-spacing: 0.3px;
  margin-bottom: 30px;
}
 
.btn-fill {
  background: linear-gradient(135deg, #e85d04, #f48c06);
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 0 18px rgba(232, 93, 4, 0.6);
}

.about-visual img {
  width: 100%;
  height: 50%;
  object-fit: cover;  /* ya contain — depend karta hai image pe */
  align-items: center;
}

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


.site-footer {
  padding: 30px 48px 24px;
  background:
    radial-gradient(ellipse 80% 70% at 50% 30%, #2e0e00 0%, #150600 55%, #0e0300 100%);
}

/* ── Outer glass card ── */
.foot-card {
  max-width: 940px;
  margin: 0 auto 24px;
  padding: 44px 40px 40px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(25, 8, 2, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: center;

  /* Subtle inner glow */
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 20px 60px rgba(0,0,0,0.4);
}

/* ── Logo ── */
.foot-logo {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 28px;
}

.foot-logo-text {
  font-size: 26px;
  font-weight: 800;
  font-style: italic;
  color: #fff;
  letter-spacing: -0.5px;
  font-family: 'Poppins', sans-serif;
}

.foot-logo-star {
  font-size: 18px;
  color: #fff;
  font-style: normal;
  margin-left: 2px;
  margin-top: -8px;
}

/* ── Horizontal divider ── */
.foot-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
}

/* ── Nav links ── */
.foot-nav {
  display: flex;
  justify-content: center;
  gap: 48px;
  list-style: none;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.foot-nav a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.foot-nav a:hover { color: #fff; }

/* ── Contact pills row ── */
.foot-contact {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.fc {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 18px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.fc:hover {
  border-color: rgba(232, 99, 10, 0.4);
  color: rgba(255,255,255,0.8);
}

.fc-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
}

/* ── Social icons ── */
.foot-social {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.soc {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: all 0.2s;
}
.soc:hover {
  border-color: rgba(232, 99, 10, 0.5);
  background: rgba(232, 99, 10, 0.1);
  color: #e8630a;
}
.soc svg { display: block; }

/* ── Copyright bar — outside card ── */
.foot-bottom {
  max-width: 940px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 4px;
}

.foot-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}
.foot-bottom p a {
  color: #e8630a;
  text-decoration: none;
  font-weight: 600;
}
.foot-bottom p a:hover { color: #f5a623; }

.foot-links {
  display: flex;
  align-items: center;
  gap: 12px;
}
.foot-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.2s;
}
.foot-links a:hover { color: rgba(255,255,255,0.65); }

.foot-sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 12px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .site-footer { padding: 20px 16px 16px; }
  .foot-card { padding: 32px 20px; }
  .foot-nav { gap: 20px; }
  .foot-contact { flex-direction: column; align-items: center; gap: 10px; }
  .foot-bottom { flex-direction: column; align-items: center; text-align: center; }
}

/* =============================================
   REVEAL ANIMATION
   ============================================= */
.rv {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.rv.in {
  opacity: 1;
  transform: none;
}

  .nav-center {
      flex: 1;
      display: flex;
      justify-content: center;
      /* padding: 0 40px; */
    }
 
    .search-bar {
      display: flex;
      align-items: center;
      background: rgba(255, 255, 255, 0.10);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 6px;
      height: 32px;
      width: 180px;
      padding: 0 12px;
      gap: 8px;
      transition: background 0.2s, border 0.2s;
    }
 
    .search-bar:focus-within {
      background: rgba(255, 255, 255, 0.15);
      border-color: rgba(255, 255, 255, 0.25);
    }
 
    .search-bar svg {
      color:white;
      flex-shrink: 0;
    }
 
    .search-bar input {
      background: transparent;
      border: none;
      outline: none;
      color: white;
      font-size: 13px;
      width: 100%;
      font-family: inherit;
    }
 
    .search-bar input::placeholder {
      color:white;
    }
/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 960px) {
  .navbar        { padding: 12px 20px; }
  .nav-center    { display: none; }
  .hero          { padding: 90px 20px 0; }
  .hero h1       { font-size: 28px; }
  .hero-visual   { width: 100%; position: relative; height: 280px; }
  .ring-lg, .ring-sm, .ring-dot, .oval-right { display: none; }
  .about-grid    { grid-template-columns: 1fr; gap: 40px; }
  .about-visual  { height: 260px; }
  .steps-box     { grid-template-columns: 1fr; }
  .s-card        { padding: 0 0 24px 0; }
  .s-card:not(:last-child)::after { top: auto; right: 0; left: 0; bottom: 0; width: auto; height: 1px; }
  .cat-row       { gap: 12px; }
  .cat-fig       { width: 120px; height: 168px; }
  .filter-bar    { flex-wrap: wrap; }
  .logos-section, .about-section, .steps-section,
  .cat-section, .cta-sec, footer { padding-left: 20px; padding-right: 20px; }
  .foot-nav      { gap: 20px; }
  .foot-contact  { flex-direction: column; align-items: center; gap: 10px; }
  .foot-bottom   { flex-direction: column; align-items: center; text-align: center; }
}