/* ═══════════════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --accent:    #e87c1e;
  --accent-dk: #c96510;
  --white:     #ffffff;
  --dark:      #0a0a0a;
  
  /* Ise 10s se badal kar 7s kar do */
  --slide-dur: 7s;   
}

html, body {
  width: 100%;
  
  /* MAGIC FIX: 'hidden' ko 'clip' kar diya taaki sticky effect chal sake */
  overflow-x: clip; 
  
  font-family: 'Barlow', sans-serif;
  background: #f8f9fa; 
  color: var(--dark);  
}

/* ═══════════════════════════════════════════════════════════
   SMART SCROLL BEHAVIOR (Makkhan Slide Effect)
═══════════════════════════════════════════════════════════ */
html {
  /* Ye ek line page ko jhatke se jump karne ki jagah smoothly slide karegi */
  scroll-behavior: smooth !important;
  
  /* Ye line ensure karegi ki target section header ke peeche na chhupe (80px ka offset) */
  scroll-padding-top: 50px !important; 
}

/* ═══════════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 0 48px;
  height: 60px;
  
  /* Naya dark semi-transparent background (65% dark) */
  background: rgba(0, 0, 0, 0.65); 
  
  /* Piche ki image ko thoda blur karne ke liye (Premium Glass effect) */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* Safari browser ke support ke liye */
  
  /* Ek bahut hi halki white line border ke liye taaki header alag dikhe */
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  
  transition: background 0.4s;
}

.site-header.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  gap: 15px; /* Image aur text ke beech ka space */
  flex-shrink: 0;
  margin-right: auto; /* Ye magic trick baki ke aage wale menu ko right side dhakel degi */
}

.header-logo img {
  height: 40px; /* Logo ki height thodi si badhai hai taaki text ke sath proportion mein lage */
  width: auto;
  object-fit: contain;
}

.logo-text {
  display: block; /* Ab ye hamesha dikhega (pehle none tha) */
  font-family: 'Bebas Neue', sans-serif; /* Wahi same exact font client ki demand par */
  font-size: 24px; 
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1.1;
  padding-top: 4px; /* Shield aur text ko ekdum center align karne ke liye slight adjustment */
}

/* Nav */
.header-nav ul {
  list-style: none;
  display: flex;
  gap: 6px;
}

.header-nav ul li a {
  display: block;
  padding: 8px 18px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}

.header-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 18px; right: 18px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.header-nav ul li a:hover,
.header-nav ul li a.active {
  color: var(--white);
}

.header-nav ul li a.active::after,
.header-nav ul li a:hover::after {
  transform: scaleX(1);
}

/* Active gets a box like in reference */
.header-nav ul li a.active {
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 2px;
}

/* Search icon */
.nav-search-btn {
  margin-left: auto;
  background: none;
  border: none;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  padding: 8px;
  transition: color 0.2s;
}
.nav-search-btn:hover { color: var(--white); }


/* ═══════════════════════════════════════════════════════════
   MODERN SERVICES DROPDOWN MENU
═══════════════════════════════════════════════════════════ */
.nav-dropdown {
  position: relative;
  padding-bottom: 20px; 
  margin-bottom: -20px; 
}

/* 2. Dropdown Container (Dark Glassmorphism) */
.dropdown-menu {
  position: absolute;
  top: 100%; 
  left: 0;
  min-width: 240px;
  background: rgba(10, 10, 10, 0.95); 
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 10px 0;
  list-style: none;
  
  /* ── MAGIC FIX: In do lines ne isko wapas vertical kar diya ── */
  display: flex !important;
  flex-direction: column;
  /* ───────────────────────────────────────────────────────── */

  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5); 
  z-index: 200;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0); 
}

.dropdown-menu li { width: 100%; }

.dropdown-menu li a {
  display: block;
  padding: 12px 24px; 
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  text-transform: none; 
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
}

.dropdown-menu li a::after { display: none !important; }

.dropdown-menu li a:hover {
  background: rgba(232, 124, 30, 0.08); 
  color: var(--accent); 
  padding-left: 30px; 
  border-left: 3px solid var(--accent); 
}

.dropdown-trigger svg { transition: transform 0.3s ease; }
.nav-dropdown:hover .dropdown-trigger svg { transform: rotate(-180deg); }


/* ═══════════════════════════════════════════════════════════
   HERO SLIDER WRAPPER
═══════════════════════════════════════════════════════════ */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  /* min-height: 600px; */
  overflow: hidden;
}

/* ═══════════════════════════════════════════════════════════
   INDIVIDUAL SLIDE
═══════════════════════════════════════════════════════════ */
.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  
  /* DRAMATIC EFFECT: Thoda zoom-in aur blur rahega shuru mein */
  transform: scale(1.15); 
  filter: blur(8px); 
  
  /* Transition ko aur smooth aur cinematic banaya hai */
  transition: opacity 1.5s cubic-bezier(0.25, 1, 0.5, 1), 
              transform 1.5s cubic-bezier(0.25, 1, 0.5, 1),
              filter 1.5s ease-out;
              
  overflow: hidden;
  padding-top: 60px; /* Header space */
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
  
  /* Wapas normal size aur clear focus pe aayega */
  transform: scale(1);
  filter: blur(0px);
}

/* Background image with Ken Burns */
.slide-bg {
  position: absolute;
  inset: -5%;           
  background-size: cover;
  
  /* Pura focus upar rakhne ke liye is line ko change karo: */
  background-position: center top; 
  
  transform: scale(1.08);
  transition: transform 12s linear;
  will-change: transform;
}

.slide.active .slide-bg {
  transform: scale(1);
}

/* Dark gradient overlay */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.65) 30%,
    rgba(0,0,0,0.35) 55%,
    rgba(0,0,0,0.1) 75%,
    rgba(0,0,0,0) 100%
  );
}

/* ═══════════════════════════════════════════════════════════
   SLIDE CONTENT
═══════════════════════════════════════════════════════════ */
/* .slide-content {
  position: relative;
  z-index: 2;
  padding-left: 10%;
  padding-right: 10%;
  max-width: 600px;

  margin-top: 40px;   /* 🔥 pushes text down like Envato */
  /* max-width: 600px;
} */ 

.slide-content {
  position: relative;
  z-index: 2;
  padding-left: 120px;
  /* padding-right hata di hai taaki text daba hua feel na ho */
  max-width: 900px; /* Ise 600px se badha kar 900px kar diya */
  margin-top: -15px;
}

/* Special class for centering Slide 2 */
.slide-content.center-content {
  padding-left: 20px; /* Left margin hata diya jo humne pichli baar 120px kiya tha */
  padding-right: 20px;
  margin: -40px auto 0 auto; /* Ise beech mein laane ke liye */
  text-align: center; /* Text ko center align karne ke liye */
  
  /* Elements ko exactly beech mein stack karne ke liye Flexbox ka use */
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Ensure title aur description bhi center mein hi rahein */
.slide-content.center-content .slide-title,
.slide-content.center-content .slide-desc,
.slide-content.center-content .slide-tagline {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}



/* Tagline */
.slide-tagline {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 18px;

  /* Animated in */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.3s, transform 0.7s ease 0.3s;
}

/* Big title */
/* .slide-title {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;

  font-size: clamp(40px, 4.5vw, 58px);
  line-height: 1.25;
  letter-spacing: 0.3px;

  color: var(--white);
  margin-bottom: 20px;

  max-width: 600px;   /* VERY IMPORTANT */

  /* opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease 0.55s, transform 0.8s ease 0.55s;

  word-break: normal;
} */ 

/* Big title */
.slide-title {
  font-family: 'Barlow', sans-serif;
  font-weight: 800; 
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  letter-spacing: 0.3px;
  color: var(--white);
  margin-bottom: 20px;
  max-width: 100%; /* Ise 600px se badal kar 100% kar diya */
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease 0.55s, transform 0.8s ease 0.55s;
  word-break: normal;
}

/* Description */
/* .slide-desc {
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  margin-bottom: 30px;
  max-width: 520px;

  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.8s, transform 0.8s ease 0.8s;
} */


/* Description */
.slide-desc {
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  margin-bottom: 30px;
  max-width: 700px; /* Ise 520px se badha kar 700px kar diya */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.8s, transform 0.8s ease 0.8s;
}
/* CTA Button */
.slide-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  background: var(--accent);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;

  opacity: 0;
  transform: translateY(20px);
  /* transition for entry: */
  transition: opacity 0.8s ease 1.05s, transform 0.8s ease 1.05s,
              background 0.25s, box-shadow 0.25s;
}

.slide-btn span { font-size: 18px; line-height: 1; }

.slide-btn:hover {
  background: var(--accent-dk);
  box-shadow: 0 8px 28px rgba(232,124,30,0.45);
  transform: translateY(-2px) !important;
}

/* ACTIVATE text animations when slide is active */
.slide.active .slide-tagline,
.slide.active .slide-title,
.slide.active .slide-desc,
.slide.active .slide-btn {
  opacity: 1;
  transform: translateY(0);
}

.slide.exiting {
  opacity: 0;
  
  /* Jate waqt halka sa peeche jayega (scale down) ek 3D depth ke liye */
  transform: scale(0.95);
  filter: blur(5px);
  
  transition: opacity 1s ease, transform 1s ease, filter 1s ease;
}

/* EXIT: fade out text before slide changes */
.slide.exiting .slide-tagline,
.slide.exiting .slide-title,
.slide.exiting .slide-desc,
.slide.exiting .slide-btn {
  opacity: 0;
  transform: translateY(-18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}


/* ═══════════════════════════════════════════════════════════
   ARROWS
═══════════════════════════════════════════════════════════ */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, transform 0.2s;
}

.slider-arrow:hover {
  background: var(--accent);
  transform: translateY(-50%) scale(1.08);
}

.slider-arrow.prev { left: 28px; }
.slider-arrow.next { right: 28px; display: none; }


/* ═══════════════════════════════════════════════════════════
   SLIDE INDICATORS  (SLIDE 1 / SLIDE 2 on the right)
═══════════════════════════════════════════════════════════ */
.slide-indicators {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.indicator {
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.55);
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 8px 14px;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s;
}

.indicator.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.indicator:hover:not(.active) {
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}


/* ═══════════════════════════════════════════════════════════
   PROGRESS BAR  (bottom, left → right, 10s cycle)
═══════════════════════════════════════════════════════════ */
.progress-bar-wrap {
  position: absolute;
  top: 60px; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,0.15);
  z-index: 20;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: var(--accent);
  /* JS will control this via animation */
}

/* The actual progress animation keyframes */
@keyframes progressFill {
  from { width: 0%; }
  to   { width: 100%; }
}

.progress-bar.running {
  animation: progressFill var(--slide-dur) linear forwards;
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .site-header { padding: 0 20px; }

  /* .header-nav {
    display: none; /* hide nav on mobile for now — add hamburger if needed */
  /* }  */

  .slide-content {
    padding: 0 6%;
  }

  .slider-arrow { display: none; }

  .slide-indicators {
    right: 12px;
    flex-direction: row;
    top: auto;
    bottom: 24px;
    transform: none;
  }
}

/* ═══════════════════════════════════════════════════════════
   IMAGE TEASER SECTION
═══════════════════════════════════════════════════════════ */
.teaser-section {
  position: relative;
  z-index: 50; 
  width: 100%;
  padding: 0 48px; 
  
  /* -120px ko badal kar -50px ya -60px kar do */
  margin-top: -50px; 
}

.teaser-container {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--white); /* Reference image jaisa white background */
  padding: 15px; /* Images ke chaaron taraf white border banayega */
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 barabar columns */
  gap: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4); /* Premium 3D depth ke liye shadow */
}

.teaser-card {
  width: 100%;
  height: 220px; /* Images ki height fixed rakhi hai taaki sab barabar dikhein */
  overflow: hidden;
  position: relative;
}

.teaser-card img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Isse image katega nahi aur dabe bhi nahi */
  transition: transform 0.4s ease;
  cursor: pointer;
}

/* Thoda sa hover effect premium feel badhane ke liye */
.teaser-card:hover img {
  transform: scale(1.08); 
}

/* Responsive: Mobile par images ek ke niche ek aayengi */
@media (max-width: 768px) {
  .teaser-section {
    padding: 0 20px;
    margin-top: -60px; /* Mobile par overlap thoda kam */
  }
  .teaser-container {
    grid-template-columns: 1fr; /* Mobile par ek hi column */
  }
}


/* ═══════════════════════════════════════════════════════════
   HOW IT WORKS (PROCESS SECTION)
═══════════════════════════════════════════════════════════ */
.process-section {
  padding: 80px 48px;
  background: transparent; /* Kyunki body already light hai */
}
.process-header { text-align: center; }

/* Titles & Description with animations */
.section-tag {
  display: inline-block;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #c9a84c; /* Premium Gold */
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s, transform 0.6s;
}
/* Update this block in your style.css */
.section-title {
  /* Font ko Bebas Neue se badal kar Barlow aur bold kar diya */
  font-family: 'Barlow', sans-serif;
  font-weight: 800; 
  
  /* Size thoda adjust kiya kyunki Barlow wide hota hai */
  font-size: clamp(36px, 5vw, 54px); 
  line-height: 1.2;
  letter-spacing: 0.5px; /* Letter spacing thodi kam kar di */
  
  color: #0a0c14;
  opacity: 0; 
  transform: translateY(30px);
  transition: opacity 0.7s 0.1s, transform 0.7s 0.1s;
}

.section-desc {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: #555;
  max-width: 560px;
  margin: 16px auto 0;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s 0.2s, transform 0.7s 0.2s;
}

/* Visibility classes toggled by JavaScript */
.section-tag.visible, .section-title.visible, 
.section-desc.visible, .process-step.visible {
  opacity: 1; transform: translateY(0);
}

/* Horizontal Line & Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 80px;
  position: relative;
  max-width: 1200px;
  margin-left: auto; margin-right: auto;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 40px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, #c9a84c, #2563b0, #c9a84c);
  z-index: 0;
}
.process-step {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  padding: 0 20px;
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.5s, transform 0.5s;
}

/* Number Circle */
.process-num {
  width: 80px; height: 80px;
  background: #ffffff;
  border: 2px solid #e8ecf5;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: #0a0c14;
  margin-bottom: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}
.process-step:hover .process-num {
  border-color: #c9a84c;
  box-shadow: 0 8px 30px rgba(201,168,76,0.2);
  background: #0a0c14;
  color: #c9a84c;
}

/* Step Text */
.process-step h4 {
  font-family: 'Barlow', sans-serif;
  font-size: 18px; font-weight: 600;
  color: #0a0c14; margin-bottom: 10px;
}
.process-step p {
  font-family: 'Barlow', sans-serif;
  font-size: 14px; color: #8892a4; line-height: 1.6;
}

/* Responsiveness */
@media (max-width: 1024px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 60px 40px; }
  .process-steps::before { display: none; }
}
@media (max-width: 768px) {
  .process-steps { grid-template-columns: 1fr; }
  .process-section { padding: 80px 20px; }
}

/* ═══════════════════════════════════════════════════════════
   FLOATING CONTACT BUTTON (PREMIUM GLASSMORPHISM)
═══════════════════════════════════════════════════════════ */
.floating-contact-btn {
  position: fixed;
  
  /* POSITION UPDATED: thoda upar aur right sarka diya images se clear karne ke liye */
  bottom: 20px;    /* Reduced from 40px (thoda upar gaya) */
  right: 15px;     /* Reduced from 40px (thoda right edge ke paas gaya) */
  
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;       /* Reduced gap for sleekness */
  
  /* SIZE UPDATED: Height aur width dono kam ki hain SLEEK look ke liye */
  padding: 8px 18px;  /* Vertical padding bohot kam ki hai (SLEEK) */
  border-radius: 50px;
  font-family: 'Barlow', sans-serif;
  
  /* Font size slight kam kiya sleekness ke liye */
  font-size: 14px;    /* Reduced from 16px */
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  
  /* PURE GLASS EFFECT (TRANSPARENT, NO BROWN) */
  /* Brownish background hata ke ekdum halke transparent gray/white jaisa look diya */
  background: rgba(255, 255, 255, 0.05); /* Very light, barely there white tint */
  
  /* Baki glass effect settings same rakhi hain */
  backdrop-filter: blur(16px);         /* Blur effect same */
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2); 
  border-top: 1px solid rgba(255, 255, 255, 0.4); 
  
  /* Light shadow taaki text focus mein rahe, out of picture brown na lage */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Reduced from heavy shadow */
  
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.floating-contact-btn:hover {
  /* Hover effect bhi subtle rakha hai, non-brown */
  background: rgba(255, 255, 255, 0.15); /* More visible glass on hover */
  transform: translateY(-3px); /* Halka lift (SLEEK) */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

/* ── ANIMATED PULSING DOT ── */
.pulse-dot {
  width: 10px;
  height: 10px;
  background-color: #00ff00; /* Neon green color for "Online/Active" vibe */
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.7);
  animation: glowingDot 2s infinite;
}

/* Dot ke saans lene wala animation */
@keyframes glowingDot {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.7);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 12px rgba(0, 255, 0, 0); /* Ring bahar nikal ke fade hogi */
  }
  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(0, 255, 0, 0);
  }
}

/* Mobile screen ke liye adjustment */
@media (max-width: 768px) {
  .floating-contact-btn {
    bottom: 10px;  /* Even lower to avoid overlap on mobile */
    right: 10px;
    padding: 6px 14px; /* Even smaller on mobile */
    font-size: 12px;
  }
}


/* ── MAGIC: Jab button white background par jaye (JS Auto Class) ── */
.floating-contact-btn.dark-text-mode {
  color: #0a0c14; /* Text dark ho jayega taaki white pe dikhe */
  background: rgba(0, 0, 0, 0.04); /* Halka sa dark smoked glass */
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.floating-contact-btn.dark-text-mode:hover {
  background: rgba(0, 0, 0, 0.08); /* Hover par thoda aur dark */
  border: 1px solid rgba(0, 0, 0, 0.2);
}


/* ═══════════════════════════════════════════════════════════
   ABOUT US SECTION (Dark Theme + Split Layout)
═══════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════
   ABOUT US SECTION (Compact Fit-to-Screen)
═══════════════════════════════════════════════════════════ */
.about-section {
  background: var(--dark);
  
  /* MAGIC: Padding kam karke ise 100vh (full screen) mein center kiya */
  padding: 40px 48px; 
  min-height: 100vh; 
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px; /* Gap 80px se 40px kar diya taaki compact lage */
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* ── LEFT VISUAL (Shield & Pills) ── */
.about-visual {
  position: relative;
  height: 380px; /* Height 480px se 380px kar di */
  width: 100%;
}

.about-card-main {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a24 100%);
  border-radius: 20px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.05);
}

.about-card-main::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 30px 30px;
}


/* ── NAYA: Shield Container with slightly adjusted float animation ── */
/* Update this in your style.css */

/* ── 1. Logo Container (Size & Center Fix) ── */
.about-shield-big {
  width: 220px; /* Logo ka size strict aur chhota kar diya */
  height: 220px; 
  background: transparent; 
  
  /* Ekdum Center laane ke liye magic */
  margin: 0 auto; 
  display: flex; 
  align-items: center; 
  justify-content: center;
  
  filter: drop-shadow(0 10px 20px rgba(255, 255, 255, 0.2));
  
  /* Naya fast aur bouncy dance animation (3s) */
  animation: logoDance 3s ease-in-out infinite;
}

/* ── 2. Actual Logo Image Fix ── */
.about-shield-logo {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Isse image dabe ya kate bina poori fit aayegi */
}

/* ── 3. Naya Mast Dance Animation (Float + Wiggle) ── */
@keyframes logoDance {
  0%, 100% { 
    transform: translateY(0) scale(1) rotate(0deg); 
  }
  33% { 
    transform: translateY(-15px) scale(1.05) rotate(-3deg); /* Hawa mein uthega aur left ghoomega */
  }
  66% { 
    transform: translateY(-15px) scale(1.05) rotate(3deg);  /* Hawa mein right ghoomega */
  }
}

/* ── PURANI TEXT WALI LINE HATA DO ── */
/* .about-shield-big::after { ... } <-- IS CODE KO DELETE KAR DENA KYUNKI AB IMAGE HAI */

@keyframes floatShield {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* .about-shield-big::after {
  content: 'PKSP';
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px; color: var(--white); letter-spacing: 2px;
} */

.about-pill {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 8px 16px; /* Padding thodi slim ki */
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  font-size: 12px; font-weight: 600; color: var(--white);
}

.about-pill-icon {
  width: 24px; height: 24px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
}

.pill-1 { top: 30px; left: -15px; }
.pill-2 { bottom: 30px; left: 10%; }
.pill-3 { top: 50%; right: -20px; transform: translateY(-50%); }

/* ── RIGHT CONTENT & CARDS ── */
.dark-mode-title {
  color: var(--white);
  text-align: left;
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 44px); /* Title thoda scale down kiya */
}

.dark-mode-desc {
  color: rgba(255,255,255,0.7);
  text-align: left;
  margin: 0 0 24px 0; /* Margin kam ki */
  max-width: 100%;
  font-size: 14px;
  line-height: 1.6;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px; /* Gap kam kiya */
}

.about-stat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 16px 20px; /* Card ki padding reduce ki */
  transition: transform 0.3s, background 0.3s, border-color 0.3s;
}

.about-stat-card.full-width { grid-column: 1 / -1; }

.about-stat-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.06);
  border-color: rgba(232, 124, 30, 0.4); 
}

.stat-title {
  font-family: 'Barlow', sans-serif;
  font-size: 22px; font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}

.stat-desc {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .about-visual { height: 300px; }
  .pill-1 { left: 0; }
  .pill-3 { right: 0; }
}
@media (max-width: 768px) {
  .about-stats-grid { grid-template-columns: 1fr; }
  .about-section { 
    padding: 60px 20px; 
    min-height: auto; /* Mobile par auto-height best rehti hai */
  } 
}


/* ═══════════════════════════════════════════════════════════
   OUR SERVICES (Interactive 3D Carousel) - NORMAL SCROLL
═══════════════════════════════════════════════════════════ */

/* 1. Section ab normal ho gaya (500vh aur sticky HATA DIYA) */
.services-showcase {
  position: relative;
  background: #f4f6fc; 
  padding: 40px 0 100px 0; /* Upar neeche normal space */
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

/* 2. Wrapper ab normal flow mein hai */
.sticky-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 3. Header ki normal position */
.services-header-sticky {
  position: relative;
  text-align: center;
  z-index: 10;
  margin-bottom: 50px; /* Cards aur title ke beech gap */
}

.services-header-sticky .section-tag { margin-bottom: 4px; }

/* ═══════════════════════════════════════════════════════════
   OUR SERVICES (Interactive 3D Carousel) - ULTRA SLEEK FIX
═══════════════════════════════════════════════════════════ */

/* ... (Section, Wrapper, Header wahi purana rahega) ... */

/* 4. Cards Container (Height kam karke Sleek kiya, width wahi rakhi) */
.service-cards-container {
  position: relative;
  width: 90%;
  max-width: 500px; /* Horizontal width wahi rakhi */
  
  /* MAGIC FIX: Height 300px se kam karke 220px kar di sleeker feel ke liye */
  height: 220px; 
  
  perspective: 1200px; 
  margin: 0 auto;
}

/* 5. Base Card Style (Padding compact ki) */
.s-card {
  position: absolute;
  inset: 0;
  border-radius: 12px; /* Thode modern sharp corners chhotey dabbe pe */
  
  /* Compact Padding updated for sleeker vertical space */
  padding: 20px 30px; 
  
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  background-size: cover; background-position: center 25%; background-repeat: no-repeat;
  
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  opacity: 0;
  pointer-events: none; 
  
  transform: scale(0.4); 
  z-index: 0;
}

/* ── MAGIC 3D COVER FLOW (5 CARDS) ── */

/* 1. CENTER CARD (Active - Ab Stretch nahi, normal sleek rahega) */
.s-card.active {
  opacity: 1;
  /* Reset horizontal stretch: Back to normal scale(1). Container handles sleek ratio. */
  transform: translateX(0) scale(1) rotateY(0deg);
  pointer-events: auto;
  z-index: 5;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(232, 124, 30, 0.15); 
  border: 1px solid rgba(232, 124, 30, 0.5);
  filter: blur(0px);
}

/* 2. LEVEL 1: IMMEDIATE LEFT & RIGHT (Translation adjusted for sleek height) */
.s-card.prev {
  opacity: 0.6; 
  transform: translateX(-70%) scale(0.85) rotateY(15deg);
  z-index: 4;
  filter: blur(2px); 
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.s-card.next {
  opacity: 0.6;
  transform: translateX(70%) scale(0.85) rotateY(-15deg);
  z-index: 4;
  filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* 3. LEVEL 2: FAR LEFT & RIGHT (Translation adjusted) */
.s-card.prev-2 {
  opacity: 0.25; 
  transform: translateX(-140%) scale(0.7) rotateY(25deg);
  z-index: 3;
  filter: blur(5px); 
  border: 1px solid rgba(255, 255, 255, 0.02);
}
.s-card.next-2 {
  opacity: 0.25;
  transform: translateX(140%) scale(0.7) rotateY(-25deg);
  z-index: 3;
  filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.02);
}

/* ── Card Content Compact Updates (Chhotey dabbe pe fitting ke liye) ── */
.s-icon {
  font-size: 36px; /* Icon thoda chhota kiya */
  margin-bottom: 6px; /* Margin compact */
  filter: drop-shadow(0 8px 10px rgba(232,124,30,0.2));
}

.s-card h3 {
  font-family: 'Barlow', sans-serif;
  
  /* Text smaller and tightly fit (Sleek Clamp) */
  font-size: clamp(20px, 2.5vw, 28px); 
  
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px; /* Margin bahut compact diya button upar lane ke liye */
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Learn More Button (Sleek Update) */
.s-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  
  /* Padding compact ki sleek height ke liye */
  padding: 8px 20px; 
  
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 13px; /* Text chhota kiya */
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.s-btn:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(232,124,30,0.3);
}

.s-btn span { transition: transform 0.3s; }
.s-btn:hover span { transform: translateX(5px); }

/* Iske theek neeche ab 'Mobile Adjustments' block start hona chahiye... */

/* Mobile Adjustments - Services Carousel */
@media (max-width: 768px) {
  .services-showcase {
    padding-top: 30px !important;
    padding-bottom: 60px !important;
  }
  .services-header-sticky { 
    top: 0 !important;
    margin-bottom: 24px !important;
  }
  .service-cards-container { 
    top: 0 !important;
    height: 185px !important;
    width: 78% !important;
    max-width: 300px !important;
    margin-top: 0 !important;
  }
  .s-icon { font-size: 32px; margin-bottom: 6px; }
  .s-card h3 { margin-bottom: 10px; font-size: clamp(15px, 4.5vw, 19px); }
  .s-btn { padding: 6px 16px; font-size: 12px; }
  .s-card.prev  { transform: translateX(-62%) scale(0.80) rotateY(10deg); }
  .s-card.next  { transform: translateX(62%)  scale(0.80) rotateY(-10deg); }
  .s-card.prev-2 { transform: translateX(-120%) scale(0.62) rotateY(18deg); }
  .s-card.next-2 { transform: translateX(120%)  scale(0.62) rotateY(-18deg); }
}

/* 1. Halka sa security blueprint/radar grid */
.sec-bg-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(37, 99, 176, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 176, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
  pointer-events: none;
}

/* 2. Udte hue icons ka main container */
.floating-sec-icons {
  position: absolute;
  inset: 0;
  z-index: 1; /* Main content se theek peeche */
  overflow: hidden;
  pointer-events: none;
}

/* 3. Base Icon Style (Ekdum faint aur premium) */
.f-icon {
  position: absolute;
  bottom: -200px; /* Screen ke neeche chhupe rahenge */
  font-size: 80px;
  
  /* MAGIC: Opacity sirf 4% rakhi hai taaki saste na lagen, premium shadows lagen */
  opacity: 0.04; 
  filter: grayscale(100%); /* Colors hata diye taaki professional gray/black shadow lage */
  
  animation: floatSecurity 18s linear infinite;
}

/* 4. Alag-alag icons ki position, size aur speed */
.f-icon-1 { left: 10%; font-size: 140px; animation-duration: 25s; animation-delay: 0s; }
.f-icon-2 { left: 80%; font-size: 100px; animation-duration: 22s; animation-delay: 4s; }
.f-icon-3 { left: 25%; font-size: 180px; animation-duration: 28s; animation-delay: 2s; }
.f-icon-4 { left: 70%; font-size: 120px; animation-duration: 26s; animation-delay: 8s; }
.f-icon-5 { left: 45%; font-size: 160px; animation-duration: 20s; animation-delay: 12s; }
.f-icon-6 { left: 60%; font-size: 110px; animation-duration: 30s; animation-delay: 16s; }

/* 5. Udne ka aur dheere-dheere ghoomne ka animation */
@keyframes floatSecurity {
  0% {
    transform: translateY(0) rotate(0deg) scale(0.8);
    opacity: 0;
  }
  10% {
    opacity: 0.03; /* Screen par aate hi halke se dikhenge */
  }
  90% {
    opacity: 0.03;
  }
  100% {
    transform: translateY(-110vh) rotate(360deg) scale(1.2); /* Upar jaake gayab */
    opacity: 0;
  }
}


/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE SPECIFIC STYLES (DARK THEME)
═══════════════════════════════════════════════════════════ */

/* About Page Text Fixes */
.about-page-title {
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 54px);
  color: var(--white);
  margin-bottom: 20px;
}

.about-page-desc {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  max-width: 800px;
  margin: 0 auto;
}


/* ═══════════════════════════════════════════════════════════
   PAGE LOAD ANIMATION (About Us Premium Fade)
═══════════════════════════════════════════════════════════ */
.about-page-body {
  background-color: var(--dark); /* Ye pehle se tha */
  
  /* MAGIC FIX: Page load hote hi 1.2 seconds ka smooth animation chalega */
  animation: smoothPageLoad 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* Page load animation - opacity only, NO filter (filter on body breaks position:fixed!) */
@keyframes smoothPageLoad {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}


.about-hero {
  position: relative;
  width: 100%;
  padding: 180px 20px 100px 20px;
  
  /* MAGIC FIX: Upar se thoda kam dark (0.6) aur neeche poora dark (0.95) taaki image dikhe */
  background-image: linear-gradient(to bottom, rgba(10,10,10,0.6), rgba(10,10,10,0.95)), url('images/slide2BackgroundImage.webp'); 
  
  background-size: cover;
  background-position: center;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.about-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 2. Details & Stats Section */
.about-details-section {
  background-color: var(--dark);
  padding: 80px 20px 120px 20px;
}

.about-details-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Mobile Adjustments for Stats Grid on About Page */
@media (max-width: 900px) {
  .about-stats-grid[style] {
    grid-template-columns: 1fr !important; /* Mobile pe 1 ke neeche 1 aayega */
    gap: 20px;
  }
}


/* ═══════════════════════════════════════════════════════════
   TEAM STRUCTURE SECTION (DARK & PREMIUM) - COMPACT FIT
═══════════════════════════════════════════════════════════ */
.team-section {
  background-color: #07080a; 
  background-image: 
    radial-gradient(circle at top right, rgba(232, 124, 30, 0.04), transparent 40%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.02), transparent 40%);
    
  /* MAGIC FIX 1: Top aur Bottom gap ko 100px se 50px kar diya */
  padding: 50px 20px;
  position: relative;
  overflow: hidden;
}

.team-container {
  max-width: 1000px; /* Thoda aur tight kiya */
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.team-header {
  margin-bottom: 30px; /* Header aur Dabbon ke beech ka gap 60px se 30px kiya */
}

/* 2-Column Layout Grid */
.org-chart-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px; /* Column gap kam kiya */
}

/* Column Container */
.org-column {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  
  /* MAGIC FIX 2: Box ke andar ki padding bohot compress kar di */
  padding: 30px 20px; 
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.org-column:hover {
  border-color: rgba(232, 124, 30, 0.15); 
  transform: translateY(-5px);
}

.org-title {
  font-family: 'Barlow', sans-serif;
  font-size: 22px; /* Text thoda chhota kiya */
  font-weight: 800;
  color: var(--white);
  text-align: center;
  margin-bottom: 25px; /* Title ke baad ka gap kam kiya */
  letter-spacing: 0.5px;
}

.org-tree {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Connecting Lines (Compact) */
.org-line {
  width: 2px;
  /* MAGIC FIX 3: Lines ko 35px se 18px kar diya */
  height: 18px; 
  background: linear-gradient(to bottom, rgba(232, 124, 30, 0.4), rgba(255, 255, 255, 0.05));
}

/* Nodes / Boxes (Compact) */
.org-node {
  background: rgba(15, 16, 20, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  
  /* MAGIC FIX 4: Dabbon ki padding aur height kam ki */
  padding: 12px 18px; 
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-family: 'Barlow', sans-serif;
  font-size: 14px; /* Font thoda sleek kiya */
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  width: 100%;
  max-width: 340px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.org-node:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: var(--accent);
  color: var(--white);
  box-shadow: 0 15px 35px rgba(232, 124, 30, 0.15);
  z-index: 10;
}

.org-node.leader {
  border-color: rgba(232, 124, 30, 0.5);
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(232, 124, 30, 0.1), rgba(15, 16, 20, 0.9));
  letter-spacing: 1px;
}

.org-node.highlight {
  border-bottom: 3px solid rgba(255, 255, 255, 0.2);
}
.org-node.highlight:hover {
  border-bottom: 3px solid var(--accent);
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
  .org-chart-wrapper { grid-template-columns: 1fr; }
  .org-column { padding: 30px 20px; }
}



/* ═══════════════════════════════════════════════════════════
   TRAINING & QUALITY ASSURANCE (COMPACT LIGHT THEME)
═══════════════════════════════════════════════════════════ */
.training-section {
  background: #f4f6fc; /* Halka sa premium cool-white background */
  padding: 60px 20px; /* Padding kam rakhi hai taaki screen pe fit ho */
  position: relative;
  overflow: hidden;
}

.training-container {
  max-width: 1000px;
  margin: 0 auto;
}

.training-header {
  margin-bottom: 40px;
  text-align: center;
}

/* 2x2 Grid - Ultimate space saver! */
.training-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px; /* Cards ke beech compact spacing */
}

/* Base Card Style */
.t-card {
  background: var(--white);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04); /* Ekdum soft shadow */
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.t-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(232, 124, 30, 0.08); /* Hover pe halka orange glow shadow */
  border-color: rgba(232, 124, 30, 0.2);
}

/* Glowing Number Badge */
.t-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  color: var(--accent);
  background: rgba(232, 124, 30, 0.1); /* Light orange background */
  min-width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.t-card:hover .t-num {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 5px 15px rgba(232, 124, 30, 0.3);
}

/* Text Content */
.t-content h4 {
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  margin-top: 2px;
}

.t-content p {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

/* Mobile Responsiveness (Screen choti hone pe wapas list ban jayega) */
@media (max-width: 768px) {
  .training-grid {
    grid-template-columns: 1fr;
  }
}


/* ═══════════════════════════════════════════════════════════
   WHY PKSP STANDS OUT (ULTRA-COMPACT DARK MIX)
═══════════════════════════════════════════════════════════ */
.why-section {
  background-color: #07080a; 
  /* MAGIC FIX 1: Padding 100px se ghata kar 50px kar di taaki screen pe fit aaye */
  padding: 50px 20px; 
  position: relative;
  overflow: hidden;
}

.why-container {
  max-width: 1100px;
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px; /* Gap tight kar diya */
  align-items: center;
}

/* ── LEFT SIDE TEXT (Compact) ── */
.why-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(45px, 5vw, 65px); /* Font thoda chhota */
  line-height: 0.95;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.why-desc {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  max-width: 450px;
  margin-bottom: 30px; /* Space bachaya */
}

/* ── PREMIUM SPINNING RINGS & LOGO (Visual) ── */
.why-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px; /* Rings chhote kiye */
  width: 200px;
  margin-left: 20px;
}

.why-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(232, 124, 30, 0.2); 
  animation: spin-slow linear infinite;
}

.why-ring.ring-1 { width: 220px; height: 220px; animation-duration: 25s; border-color: rgba(255, 255, 255, 0.1); }
.why-ring.ring-2 { width: 160px; height: 160px; animation-duration: 18s; animation-direction: reverse; }
.why-ring.ring-3 { width: 100px; height: 100px; animation-duration: 12s; }

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.why-center-shield {
  position: relative;
  z-index: 2;
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Orange dabba hata kar logo ke peeche glowing shadow lagadi */
  filter: drop-shadow(0 0 20px rgba(232, 124, 30, 0.6));
}

.why-center-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ── RIGHT SIDE: COMPACT LIST CARDS ── */
.why-right {
  display: flex;
  flex-direction: column;
  gap: 20px; /* Cards ke beech ka gap kam kiya */
}

.why-list-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px 30px; /* Andar ka space tighten kiya */
  transition: transform 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.why-list-card:hover {
  transform: translateX(-8px); 
  border-color: rgba(232, 124, 30, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.why-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 12px;
}

.why-card-icon {
  width: 36px;
  height: 36px;
  background: rgba(232, 124, 30, 0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}

.why-card-header h3 {
  font-family: 'Barlow', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}

.why-bullet-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px; /* List tightly pack kardi */
}

.why-bullet-list li {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  display: flex; align-items: center; gap: 10px;
  line-height: 1.3;
  transition: color 0.2s;
}

.why-list-card:hover .why-bullet-list li {
  color: rgba(255, 255, 255, 0.95);
}

.check-icon {
  color: var(--accent);
  font-weight: 800; font-size: 14px;
  background: rgba(232, 124, 30, 0.1);
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Mobile Adjustments */
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-visual { margin: 20px auto 0 auto; }
}



/* ═══════════════════════════════════════════════════════════
   CLIENTS & TESTIMONIALS (LIGHT PREMIUM THEME)
═══════════════════════════════════════════════════════════ */
.clients-section {
  background-color: #f4f6fc; /* Fresh whitish/light background */
  padding: 40px 20px;
  position: relative;
}

.clients-container {
  max-width: 1100px;
  margin: 0 auto;
}

.clients-header {
  margin-bottom: 50px;
}

/* ── 1. STATS ROW ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.stat-box {
  background: var(--white);
  border-radius: 16px;
  padding: 35px 20px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(232, 124, 30, 0.1);
  border-color: rgba(232, 124, 30, 0.3);
}

.stat-box .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  color: var(--accent); /* Humara brand orange */
  line-height: 1;
  margin-bottom: 8px;
}

.stat-box .lbl {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #8892a4;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ── 2. TESTIMONIALS ── */
.testi-header {
  margin-bottom: 40px;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.testi-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 30px;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

/* Background mein bada sa stylish quote mark */
.quote-mark {
  position: absolute;
  top: 20px;
  right: 30px;
  font-family: serif;
  font-size: 80px;
  color: rgba(232, 124, 30, 0.1); /* Halka orange */
  line-height: 1;
}

.testi-text {
  font-family: 'Barlow', sans-serif;
  font-style: italic;
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
  flex-grow: 1; /* Isse author name hamesha bottom mein chipka rahega */
}

.testi-author {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--accent);
}

/* ── 3. BOTTOM CTA ── */
.clients-cta {
  text-align: center;
  background: var(--white);
  padding: 40px 20px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.clients-cta p {
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  color: #333;
  margin-bottom: 24px;
}

/* Solid Orange Button */
.primary-solid-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  background: var(--accent);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(232, 124, 30, 0.3);
}

.primary-solid-btn:hover {
  background: var(--accent-dk); /* Hover pe thoda dark orange */
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(232, 124, 30, 0.4);
  color: var(--white);
}

/* Mobile Adjustments */
@media(max-width: 900px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
}
@media(max-width: 500px) {
  .stats-row { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════════
   SMART CONTACT SECTION (DARK PREMIUM THEME)
═══════════════════════════════════════════════════════════ */
.smart-contact-section {
  background-color: #07080a; /* Deep dark background */
  padding: 30px 20px 100px 20px;
  position: relative;
  overflow: hidden;
}

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

.contact-header {
  margin-bottom: 60px;
}

.smart-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: start;
}

/* ── LEFT PANEL (Info) ── */
.sc-info-panel h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.sc-info-panel p {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 36px;
}

.sc-info-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sc-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.sc-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}

.sc-text strong {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 15px; font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.sc-text span, .sc-text a {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.2s;
}

.sc-text a:hover { color: var(--accent); }

/* WhatsApp Button */
.sc-wa-btn {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 40px;
  padding: 14px 28px;
  background: #25D366; /* WhatsApp Green */
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-weight: 700; font-size: 15px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.sc-wa-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37,211,102,0.3);
}

/* ── RIGHT PANEL (Smart Form) ── */
.sc-form-panel {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.sc-form-panel h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.sc-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.sc-input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.sc-input-group label {
  font-family: 'Barlow', sans-serif;
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.5px;
}

.req { color: #ff4d4d; } /* Red star for required */

.sc-input-group input,
.sc-input-group select,
.sc-input-group textarea {
  padding: 14px 16px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

/* Select Box Special Styling for Dark Mode */
.sc-input-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 15px;
  padding-right: 40px;
}

.sc-input-group select option {
  background-color: #1a1a24;
  color: var(--white);
}

.sc-input-group input:focus,
.sc-input-group select:focus,
.sc-input-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232, 124, 30, 0.2);
}

.sc-input-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Error message styling */
.error-msg {
  color: #ff4d4d;
  font-size: 11px;
  font-family: 'Barlow', sans-serif;
  display: none; /* JS will show this if wrong */
}

input:invalid:not(:placeholder-shown) + .error-msg {
  display: block;
}

/* ── DYNAMIC BLOCKS STYLING ── */
.dynamic-service-block {
  background: rgba(255,255,255,0.02);
  border: 1px dashed rgba(232, 124, 30, 0.3);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  animation: slideDown 0.4s ease forwards;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.dynamic-service-block h4 {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  color: var(--accent);
  margin-bottom: 15px;
}

/* Submit Button */
.sc-submit-btn {
  width: 100%;
  margin-top: 10px;
  padding: 16px;
  background: var(--accent);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 16px; font-weight: 700;
  border: none; border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.sc-submit-btn:hover {
  background: var(--accent-dk);
  transform: translateY(-2px);
}

/* Mobile Adjustments */
@media (max-width: 900px) {
  .smart-contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .sc-form-row { grid-template-columns: 1fr; gap: 15px; }
  .sc-form-panel { padding: 30px 20px; }
}



/* ═══════════════════════════════════════════════════════════
   SITE FOOTER (DARK PREMIUM)
═══════════════════════════════════════════════════════════ */
.site-footer {
  background: #050608; /* Ekdum deep dark base */
  padding: 80px 20px 30px 20px;
  position: relative;
  border-top: 30px solid #fff;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* 1. Brand Area */
.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-logo-img {
  height: 45px;
  width: auto;
  object-fit: contain;
}

.footer-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1.1;
}

.footer-logo-text span {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-brand p {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  max-width: 300px;
}

/* 2. Columns (Links & Contact) */
.footer-col h5 {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.footer-col a {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  margin-bottom: 14px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-col a:hover {
  color: var(--white);
  transform: translateX(4px); /* Hover pe thoda aage slide hoga */
}

.footer-col address {
  font-family: 'Barlow', sans-serif;
  font-style: normal;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}

.f-contact-link {
  display: inline-block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.8) !important;
}

.f-contact-link:hover {
  color: var(--accent) !important;
  transform: translateX(0) !important; /* Phone number pe slide effect nahi chahiye */
}

/* 3. Bottom Row */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p, .footer-bottom span {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom span {
  font-weight: 600;
  letter-spacing: 1px;
}

/* Mobile Adjustments */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; justify-content: center; }
}



/* ═══════════════════════════════════════════════════════════
   UNIVERSAL FADE-IN ANIMATION FOR ALL NEW PAGES
═══════════════════════════════════════════════════════════ */
.premium-page-load {
  animation: smoothPageLoad 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* ═══════════════════════════════════════════════════════════
   SERVICE DETAIL PAGES (TADAGTA FADAGTA DESIGN)
═══════════════════════════════════════════════════════════ */
.sp-container { max-width: 1000px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }

/* 1. Premium Hero */
.sp-hero {
  position: relative;
  padding: 160px 20px 80px;
  background-image: linear-gradient(to right, rgba(10,10,10,0.9), rgba(10,10,10,0.7)), url('images/slide1BackgroundImage.webp');
  background-size: cover;
  background-position: center;
  text-align: center;
}
.back-link {
  display: inline-block; font-family: 'Barlow', sans-serif; font-size: 14px; font-weight: 600;
  color: var(--accent); text-decoration: none; margin-bottom: 20px;
  transition: transform 0.3s;
}
.back-link:hover { transform: translateX(-5px); color: var(--white); }

.sp-title {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(45px, 6vw, 70px);
  color: var(--white); letter-spacing: 2px; line-height: 1;
}
.sp-title span { color: var(--accent); }

/* 2. Common Headings & Text */
.sp-heading {
  font-family: 'Barlow', sans-serif; font-size: clamp(28px, 3vw, 36px); font-weight: 800;
  color: var(--dark); margin-bottom: 30px;
}
.sp-para {
  font-family: 'Barlow', sans-serif; font-size: 16px; line-height: 1.8;
  color: #444; margin-bottom: 20px;
}

.sp-intro { padding: 80px 0 40px; }

/* 3. Features Grid (Sleek Cards) */
.sp-features { padding: 40px 0; }
.sp-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.sp-card {
  background: var(--white); border: 1px solid rgba(0,0,0,0.05); border-radius: 16px;
  padding: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.sp-card:hover {
  transform: translateY(-5px); box-shadow: 0 15px 40px rgba(232, 124, 30, 0.1);
  border-color: rgba(232, 124, 30, 0.4);
}
.sp-icon { font-size: 32px; margin-bottom: 15px; }
.sp-card h4 { font-family: 'Barlow', sans-serif; font-size: 18px; color: var(--dark); margin-bottom: 10px; }
.sp-card p { font-family: 'Barlow', sans-serif; font-size: 14px; color: #555; line-height: 1.5; }

/* 4. Location Pills */
.sp-locations { padding: 40px 0; }
.sp-pill-container {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 30px;
}
.sp-pill {
  background: var(--white); border: 1px solid rgba(0,0,0,0.05); border-radius: 100px;
  padding: 12px 24px; font-family: 'Barlow', sans-serif; font-size: 14px; font-weight: 600;
  color: var(--dark); box-shadow: 0 5px 15px rgba(0,0,0,0.02);
  transition: all 0.3s;
}
.sp-pill:hover { background: var(--accent); color: var(--white); transform: scale(1.05); }

/* 5. Process Timeline */
.sp-process { padding: 40px 0; }
.timeline-wrapper { border-left: 3px dashed rgba(232, 124, 30, 0.3); margin-left: 20px; padding-left: 30px; }
.timeline-item { position: relative; margin-bottom: 40px; }
.tl-dot {
  position: absolute; left: -50px; top: 0;
  width: 36px; height: 36px; background: var(--accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-family: 'Bebas Neue', sans-serif; font-size: 20px;
  box-shadow: 0 0 0 5px #f4f6fc;
}
.tl-content { background: var(--white); padding: 25px; border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.04); }
.tl-content h4 { font-family: 'Barlow', sans-serif; font-size: 18px; color: var(--dark); margin-bottom: 8px; }
.tl-content p { font-family: 'Barlow', sans-serif; font-size: 14px; color: #555; margin: 0; }

/* 6. FAQ Accordion */
.sp-faq { padding: 40px 0 80px; }
.faq-item { margin-bottom: 15px; border-radius: 12px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.03); }
.faq-btn {
  width: 100%; text-align: left; padding: 20px 25px;
  background: var(--white); border: none; outline: none; cursor: pointer;
  font-family: 'Barlow', sans-serif; font-size: 16px; font-weight: 600; color: var(--dark);
  display: flex; justify-content: space-between; align-items: center;
  transition: background 0.3s, color 0.3s;
}
.faq-btn:hover { background: rgba(232, 124, 30, 0.05); color: var(--accent); }
.faq-btn .arrow { font-size: 12px; transition: transform 0.3s; }
.faq-btn.active .arrow { transform: rotate(180deg); }
.faq-content {
  background: var(--white); padding: 0 25px; max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-content p { font-family: 'Barlow', sans-serif; font-size: 14px; color: #555; padding-bottom: 20px; margin: 0; }

/* 7. Bottom Banner */
.sp-why-banner { padding: 60px 20px; background: rgba(232, 124, 30, 0.1); border-top: 1px solid rgba(232, 124, 30, 0.2); }
.sp-banner-text { font-family: 'Barlow', sans-serif; font-size: 18px; font-weight: 600; color: #444; line-height: 1.8; }

@media (max-width: 768px) {
  .sp-grid { grid-template-columns: 1fr; }
  .timeline-wrapper { margin-left: 10px; padding-left: 20px; }
  .tl-dot { left: -38px; width: 30px; height: 30px; font-size: 16px; }
}



/* ═══════════════════════════════════════════════════════════
   OUR INSIGHTS (BLOG) SECTION - WHITISH THEME
═══════════════════════════════════════════════════════════ */
.insights-section {
  background-color: #f8f9fc; /* Premium soft whitish background */
  padding: 40px 20px;
  position: relative;
}

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

.insights-header {
  margin-bottom: 60px;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Insight Cards Styling */
.insight-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.insight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(232, 124, 30, 0.1);
}

.ic-image {
  position: relative;
  height: 220px;
  background: linear-gradient(135deg, #e0e5ec 0%, #f0f2f5 100%); /* Placeholder color */
  overflow: hidden;
}

.ic-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.insight-card:hover .ic-image img {
  transform: scale(1.05); /* Hover pe image halki si zoom hogi */
}

.ic-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--accent);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(232, 124, 30, 0.3);
}

.ic-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.ic-date {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #8892a4;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ic-content h3 {
  font-family: 'Barlow', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #0a0a0a;
  line-height: 1.4;
  margin-bottom: 16px;
  transition: color 0.2s;
}

.insight-card:hover .ic-content h3 {
  color: var(--accent);
}

.ic-content p {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

.ic-link {
  margin-top: auto; /* Pushes the link to the bottom */
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--accent);
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s;
}

.insight-card:hover .ic-link {
  transform: translateX(5px); /* Arrow thoda aage jayega */
}

/* ═══════════════════════════════════════════════════════════
   BOTTOM CTA BANNER (CLEAN & MODERN)
═══════════════════════════════════════════════════════════ */
.cta-banner {
  background-color: var(--white);
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px, 5vw, 54px);
  color: var(--dark);
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.cta-banner p {
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  color: #555;
  margin-bottom: 35px;
}

.cta-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Secondary Ghost Button */
.ghost-dark-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ghost-dark-btn:hover {
  background: rgba(0,0,0,0.05);
  transform: translateY(-3px);
}

/* Mobile Adjustments */
@media (max-width: 900px) {
  .insights-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .insights-grid { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; }
}



/* ═══════════════════════════════════════════════════════════
   MOBILE FIX: SERVICES SECTION OVERLAP & GAPS
═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  /* 1. Main section ki height auto karo aur padding theek karo */
  #services-showcase,
  .services-section {
    height: auto !important;
    min-height: auto !important;
    padding-top: 50px !important;    /* Upar ka extra lamba gap kam kiya */
    padding-bottom: 80px !important; /* Neeche extra jagah di taaki cards agle section me na ghusein */
  }

  /* 2. Heading ka gap theek karo */
  .services-header,
  .services-header-class { 
    margin-top: 0 !important;
    padding-top: 0 !important;
    margin-bottom: 30px !important;
  }

  /* 3. Cards ko properly stack karo bina height limit ke */
  .services-grid,
  .service-cards {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    height: auto !important;
    overflow: visible !important;
    position: relative !important;
  }
}



/* ═══════════════════════════════════════════════════════════
   NUCLEAR MOBILE FIX: SERVICES OVERLAP (100% BULLETPROOF)
   NOTE: .s-card rules REMOVED — they were breaking the 3D carousel
═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  #services-showcase {
    height: auto !important;
    min-height: auto !important;
    padding-top: 50px !important;
    padding-bottom: 80px !important;
    overflow: hidden !important; 
  }
}



/* ═══════════════════════════════════════════════════════════
   MOBILE HERO BACKGROUND FIX 2.0 (100% Working)
═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* MAGIC FIX: Ekdum sahi class '.slide-bg' ko target kiya */
  .hero-slider .slide-bg {
    /* Bodyguard Right mein hai, isliye 80% (Right ki taraf) shift kiya */
    background-position: 70% top !important; 
  }
}



/* ═══════════════════════════════════════════════════════════
   PREMIUM MOBILE HAMBURGER MENU (GLASSMORPHISM)
═══════════════════════════════════════════════════════════ */
/* Hamburger Button Baseline (Hidden on Desktop) */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  z-index: 1001; /* Sabse upar rahega */
  margin-left: auto;
  width: 32px;
  height: 32px;
}

.mobile-menu-toggle .bar {
  display: block;
  width: 28px;
  height: 2px;
  background-color: var(--white);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
  border-radius: 2px;
  margin-left: auto;
}

/* Stylish asymmetric look: Beech wali line thodi chhoti */
.mobile-menu-toggle .bar:nth-child(2) { width: 20px; }

@media (max-width: 900px) {
  .mobile-menu-toggle { display: flex; }

  /* Glassmorphism Full Screen Overlay */
  .header-nav {
    position: fixed;
    top: 0; right: -100%; /* Shuru mein screen ke bahar right mein */
    width: 100%; height: 100vh;
    background: rgba(5, 6, 8, 0.96); /* Deep dark premium background */
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.5s cubic-bezier(0.25, 1, 0.5, 1); /* Makkhan slide in */
    z-index: 1000;
  }

  /* Jab menu khulega */
  .header-nav.nav-open { right: 0; }

  /* Menu Links */
  .header-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    width: 100%;
  }

  .header-nav ul li a {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.85);
  }

  /* Mobile ke liye Dropdown Reset */
  .nav-dropdown { padding-bottom: 0; margin-bottom: 0; text-align: center; }
  
  .nav-dropdown .dropdown-menu {
    position: relative; top: 0;
    opacity: 1; visibility: visible; transform: none;
    background: transparent; border: none; box-shadow: none;
    display: none !important; /* JS isey kholega */
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
  }

  /* Jab Services pe click hoga tab ye open hoga */
  .nav-dropdown.mobile-open .dropdown-menu {
    display: flex !important;
    animation: slideDownMobile 0.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  }
  .nav-dropdown.mobile-open .dropdown-trigger { color: var(--accent); }
  .nav-dropdown.mobile-open .dropdown-trigger svg { transform: rotate(-180deg); color: var(--accent); }

  @keyframes slideDownMobile {
    from { opacity: 0; transform: translateY(-15px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* Sub-links (Services ke andar wale) chhote aur greyish */
  .dropdown-menu li a {
    font-size: 16px !important;
    font-weight: 500 !important;
    color: rgba(255,255,255,0.5) !important;
    padding: 0 !important;
    text-align: center;
  }
  .dropdown-menu li a:hover { color: var(--accent) !important; border: none !important; }

  /* ── HAMBURGER TO "X" ANIMATION ── */
  .mobile-menu-toggle.open .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg); width: 28px;
  }
  .mobile-menu-toggle.open .bar:nth-child(2) { opacity: 0; }
  .mobile-menu-toggle.open .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg); width: 28px;
  }
}


.view-all-container .ghost-dark-btn {
    transition: all 0.3s ease;
    letter-spacing: 2px;
}

.view-all-container .ghost-dark-btn:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.view-all-container .ghost-dark-btn span {
    margin-left: 8px;
    transition: margin 0.3s ease;
}

.view-all-container .ghost-dark-btn:hover span {
    margin-left: 15px;
}


/* Clients Page Specific */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin: -40px auto 50px;
  position: relative;
  z-index: 10;
  padding: 0 20px;
}

.filter-btn {
  background: var(--white);
  border: none;
  padding: 12px 25px;
  border-radius: 50px;
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-5px);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto 80px;
}

.client-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-bottom: 4px solid #eee;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.client-card:hover {
  border-color: var(--accent);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.client-icon { font-size: 2.5rem; margin-bottom: 15px; }
.client-card h3 { 
  font-family: 'Bebas Neue', sans-serif; 
  font-size: 1.5rem; 
  letter-spacing: 1px;
  margin-bottom: 5px;
}
.client-card p { color: #666; font-size: 0.9rem; margin-bottom: 15px; }
.client-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  background: #f0f0f0;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 700;
  color: var(--accent);
}

