/* ============================================================
   HR Consultancy Services – FINAL MERGED STYLESHEET
   Base: New style.css (naye pages ka design)
   + Purani sstyle.css ki sab unique cheezain add ki hain
   ============================================================ */

/* ============================================================
   CSS CUSTOM PROPERTIES (VARIABLES)
   ============================================================ */
:root {
  /* --- Purane variables (sstyle.css se) --- */
  --soft-blue:       #eaebfa;
  --soft-green:      #e8e9f9;
  --primary:         #4547C0;
  --primary-light:   #6668D4;
  --secondary-blue:  #5254C8;
  --bg-light:        #f9fcff;
  --white-glass:     rgba(255,255,255,0.85);
  --shadow-sm:       0 12px 28px -8px rgba(20,20,100,0.08), 0 4px 12px rgba(20,20,90,0.02);
  --shadow-hover:    0 24px 42px -12px rgba(30,32,112,0.18);
  --border-soft:     1px solid rgba(255,255,255,0.5);

  /* --- Naye variables (style.css se) --- */
  --primary-dark:    #3a3c90;
  --primary-lighter: #e8e9f9;
  --accent:          #6c276a;
  --text:            #1a1a2e;
  --text-muted:      #3a3c90;
  --text-light:      #7a7cba;
  --bg:              #ffffff;
  --bg-soft:         #f7f8ff;
  --footer-bg:       #1a1c6e;
  --shadow:          0 4px 24px rgba(69,71,192,0.10);
  --radius:          16px;
  --radius-sm:       10px;
  --transition:      all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', 'Inter', sans-serif;
  background-color: #ffffff;
  color: #1e2b37;
  line-height: 1.7;
  font-size: 1rem;
}

img  { max-width: 100%; display: block; }
a    { text-decoration: none; transition: var(--transition); }
ul   { list-style: none; }

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   STICKY HEADER
   ============================================================ */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 6px 18px rgba(20,20,90,0.04);
  border-bottom: var(--border-soft);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  flex-wrap: nowrap; /* 🔥 IMPORTANT FIX */
  gap: 12px;
}

/* ================= LOGO ================= */
.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-area img {
  height: 50px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  white-space: nowrap; /* 🔥 prevent break */
}

.logo-line {
  display: flex;
  align-items: baseline;
  gap: 4px;
  white-space: nowrap;
}

.big {
  font-weight: 700;
  font-size: 0.82rem;
  color: #2a2c8a;
  letter-spacing: 0.3px;
}

.small {
  font-size: 0.48rem;
  color: #666;
  letter-spacing: 1px;
}

/* ================= NAV ================= */
.nav-menu {
  display: flex;
  gap: 22px;
  align-items: center;
  flex: 1;
  justify-content: center;
  min-width: 0;
}

.nav-menu a {
  text-decoration: none;
  color: #2a2c8a;
  font-weight: 500;
  font-size: 0.95rem;
  white-space: nowrap;
  position: relative;
}

.nav-menu a::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--primary);
  width: 0;
  transition: 0.25s ease;
  margin-top: 2px;
}

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

.nav-menu a:hover::after {
  width: 100%;
}

/* ================= HEADER ACTIONS ================= */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0; /* 🔥 prevent wrap */
  white-space: nowrap;
}

.phone-top {
  font-weight: 600;
  color: #2a2c8a;
  background: var(--soft-green);
  padding: 8px 12px;
  border-radius: 60px;
  font-size: 0.85rem;
  white-space: nowrap;
}

.phone-top i {
  margin-right: 6px;
}

/* ================= DROPDOWN ================= */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-inner {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 48px rgba(0,0,0,0.12);
  min-width: 220px;
  padding: 10px 0;
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-inner {
  display: block;
}

.nav-dropdown-inner a {
  display: flex;
  gap: 10px;
  padding: 10px 18px;
  font-size: 0.9rem;
  color: #2a2c8a;
  text-decoration: none;
}

.nav-dropdown-inner a:hover {
  background: #f3f4ff;
}/* ============================================================
   HAMBURGER BUTTON (mobile)
   ============================================================ */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2.5px;
  background: #1a1a2e;
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   BADGES
   ============================================================ */
.cqc-badge {
  background: #1e2070;
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.3px;
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  display: inline-block;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  background: white;
  border-radius: 60px;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: #1e2070;
  border: 1px solid rgba(69,71,192,0.2);
}

.btn-primary {
  background: #4547C0;
  color: white;
  border: none;
  box-shadow: 0 8px 18px -6px rgba(69,71,192,0.4);
}

.btn-primary:hover {
  background: #3234A8;
  transform: scale(1.02);
  box-shadow: 0 16px 24px -8px rgba(69,71,192,0.5);
}

.btn-outline-light {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(4px);
  border: 1px solid white;
  border-radius: 60px;
}

.btn-outline-light:hover {
  background: white;
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 60px;
  padding: 11px 26px;
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--primary);
  border-radius: 60px;
  padding: 13px 32px;
  font-weight: 700;
  display: inline-block;
  transition: var(--transition);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ============================================================
   SECTION TITLES
   ============================================================ */
.section-title {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #1e2070;
  line-height: 1.25;
}

.section-label {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* ============================================================
   TRUST GRID
   ============================================================ */
.trust-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 48px;
  background: white;
  padding: 40px 24px;
  border-radius: 80px 80px 24px 24px;
  margin-top: -40px;
  box-shadow: var(--shadow-sm);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: #2a2c8a;
  margin: 20px 0;
}

.trust-item i {
  font-size: 2rem;
  color: #4547C0;
  background: var(--soft-green);
  padding: 10px;
  border-radius: 50%;
}

/* ============================================================
   SPLIT LAYOUT
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin: 40px 0;
}

.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

.rounded-image {
  background: #c7c9f0;
  border-radius: 48px;
  height: 380px;
  background-image: url('care2.jpg');
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-hover);
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin: 40px 0;
}

.service-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(4px);
  border-radius: 36px;
  padding: 20px 16px;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s;
  border: 1px solid rgba(255,255,255,0.7);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  background: white;
}

.service-card i {
  font-size: 2.0rem;
  color: #4547C0;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.0rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-card p { color: #3a3c90; }

/* ============================================================
   RECRUITMENT STRIP
   ============================================================ */
.recruitment-strip {
  background: var(--soft-blue);
  border-radius: 48px;
  padding: 48px 40px;
  margin: 40px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.sector-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0;
}

.tag {
  background: white;
  border-radius: 60px;
  padding: 8px 20px;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   FORMS
   ============================================================ */
.form-card {
  background: white;
  border-radius: 48px;
  padding: 48px;
  box-shadow: var(--shadow-hover);
  margin: 40px 0;
}

.input-group { margin-bottom: 24px; }

input, select, textarea {
  width: 100%;
  padding: 18px 24px;
  border: 1px solid #d5e7e3;
  border-radius: 48px;
  font-family: inherit;
  font-size: 1rem;
  background: #f6fbfa;
  transition: 0.2s;
  margin-bottom: 20px;
}

input:focus, select:focus, textarea:focus {
  outline: 2px solid #4547C0;
  background: white;
}

input[type="file"], .file-input {
  background: white;
  padding: 12px;
}

.success-message {
  background: #e8e9f9;
  padding: 16px;
  border-radius: 48px;
  color: #3234A8;
  font-weight: 500;
  display: none;
  text-align: center;
  margin-top: 20px;
}

/* ============================================================
   CONTACT CARDS
   ============================================================ */
.contact-card {
  background: #f7f8fe;
  border-radius: 48px;
  padding: 32px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--soft-green);
  padding: 32px;
  border-radius: 48px;
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #1a1c6e;
  color: #dddad0;
  padding: 64px 0 0;
  border-radius: 48px 48px 0 0;
  margin-top: 60px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 40px;
}

.footer a { color: #a0a3da; transition: var(--transition); }
.footer a:hover { color: #fff; }

.footer-col p.col-title {
  color: #fff;
  font-weight: 600;
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 8px;
  padding: 24px 0;
  text-align: center;
  color: #a0a3da;
  font-size: 0.9rem;
}

.social-links { display: flex; gap: 16px; margin-top: 16px; }
.social-links a { font-size: 1.3rem; }

/* ============================================================
   PAGE HERO BANNER
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, #1e2070 0%, var(--primary) 60%, var(--accent) 100%);
  color: #fff;
  padding: 90px 0 70px;
  text-align: center;
}

.page-hero .breadcrumb {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}

.page-hero .breadcrumb a { color: rgba(255,255,255,0.7); }
.page-hero .breadcrumb a:hover { color: #fff; }

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 18px;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  max-width: 640px;
  margin: 0 auto;
}

/* ============================================================
   CONTENT SECTIONS
   ============================================================ */
.content-section { padding: 80px 0; }

.content-section + .content-section {
  border-top: 1px solid #e8e9f9;
}

.content-section.bg-soft { background: var(--bg-soft); }

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.97rem;
  color: #3a3c90;
  line-height: 1.6;
}

.feature-list li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.highlight-box {
  background: linear-gradient(135deg, #e8e9f9, rgba(108,39,106,0.07));
  border-left: 4px solid var(--primary);
  border-radius: 10px;
  padding: 24px 28px;
  margin: 28px 0;
}

.highlight-box h3 { color: #1e2070; margin-bottom: 8px; font-size: 1.05rem; }
.highlight-box p  { color: #3a3c90; font-size: 0.95rem; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin: 40px 0;
}

.step-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--primary);
  transition: var(--transition);
}

.step-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.step-card .step-num {
  width: 38px;
  height: 38px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.step-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step-card p  { font-size: 0.9rem; color: #3a3c90; }

.who-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0; }
.who-tag {
  background: #e8e9f9;
  color: #1e2070;
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 0.88rem;
  font-weight: 500;
}

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  background: linear-gradient(145deg, var(--accent), var(--primary));
  padding: 64px 0;
  text-align: center;
}

.cta-strip h2 { color: #fff; font-size: 1.9rem; margin-bottom: 12px; }
.cta-strip p  { color: #000; margin-bottom: 28px; }

.cqc-strip {
  background: var(--accent);
  padding: 5px 0;
  margin: 60px 0;
  text-align: center;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(25px);
  transition: 0.8s cubic-bezier(0.2, 0.9, 0.3, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   HOME PAGE – HERO SLIDER
   ============================================================ */
.hero-slider {
  position: relative;
  height: 80vh;
  min-height: 520px;
  overflow: hidden;

  max-width: 1280px;
  margin: 24px auto 0;
  padding: 0 24px;
  border-radius: 40px;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center 30%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  pointer-events: none;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.slide-1 {
  background: linear-gradient(107deg, #e8e9f9 0%, #dfe0f8 100%),
              url('hero2.jpg');
  background-blend-mode: overlay;
  background-size: cover;
  background-position: center 30%;
}

.slide-2 {
  background: linear-gradient(107deg, #dfe0f8 0%, #e5e6fa 100%),
              url('hero3.jpg');
  background-blend-mode: overlay;
  background-size: cover;
  background-position: center 20%;
}

.slide-3 {
  background: linear-gradient(107deg, #e8e9f9 0%, #e5e6fa 100%),
              url('hero1.jpg');
  background-blend-mode: overlay;
  background-size: cover;
  background-position: center 30%;
}

.slide-overlay {
  background: linear-gradient(115deg, rgba(255,255,255,0.45) 0%, rgba(225,226,248,0.2) 100%);
  width: 100%;
  padding: 80px 0;
}

.hero-content {
  max-width: 620px;
  backdrop-filter: blur(2px);
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: #1e2070;
  text-shadow: 0 2px 10px rgba(255,255,255,0.5);
}

.hero-sub {
  font-size: 1.2rem;
  margin: 24px 0 32px;
  color: #2a2c8a;
  font-weight: 400;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.85);
  border: none;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  font-size: 1.1rem;
  color: #4547C0;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(20,20,90,0.15);
  backdrop-filter: blur(6px);
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: white;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 12px 28px rgba(20,20,90,0.22);
}

.slider-btn.prev { left: 28px; }
.slider-btn.next { right: 28px; }

.slider-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: 2px solid rgba(69,71,192,0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #4547C0;
  border-color: #4547C0;
  transform: scale(1.3);
}

/* ============================================================
   SERVICES PAGE – SERVICE ROWS
   ============================================================ */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 40px 0;
}

.service-row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 32px;
  align-items: flex-start;
  padding: 36px 40px;
  border-radius: 28px;
  transition: background 0.25s, box-shadow 0.25s;
}

.service-row:nth-child(even) { background: #f7f8fe; }

.service-row:hover {
  background: white;
  box-shadow: var(--shadow-sm);
}

.service-row-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #e8e9f9, #d5d7f7);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-row-icon i {
  font-size: 1.8rem;
  color: #4547C0;
}

.service-row-body h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e2070;
  margin-bottom: 10px;
}

.service-row-body p {
  color: #3a3c90;
  line-height: 1.75;
  font-size: 1rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .rounded-image { min-height: 240px; height: 260px; }
}

@media (max-width: 768px) {
  .header-inner { position: relative; flex-wrap: wrap; gap: 16px; }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    gap: 16px;
    z-index: 200;
  }

  .nav-menu.open { display: flex; }
  .hamburger { display: flex; }
  .header-actions .phone-top { display: none; }

  /* Mobile dropdown – remove bridge & static positioning */
  .nav-dropdown {
    width: 100%;
  }
  
  .nav-dropdown::after {
    display: none;
  }
  
  .nav-dropdown-inner {
    position: static;
    box-shadow: none;
    margin-top: 8px;
    padding-left: 20px;
  }
  
  .nav-dropdown-inner::before {
    display: none;
  }

  .trust-grid { border-radius: 48px; }

  .slider-btn { width: 40px; height: 40px; font-size: 0.9rem; }
  .slider-btn.prev { left: 12px; }
  .slider-btn.next { right: 12px; }

  .service-row { grid-template-columns: 1fr; padding: 28px 20px; gap: 16px; }
  .service-row-icon { width: 56px; height: 56px; }

  .form-card { padding: 28px; border-radius: 28px; }
  .page-hero { padding: 60px 0 50px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .steps-grid  { grid-template-columns: 1fr; }
  .card-grid   { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 2rem; }
}

.whatsapp-float{
    position: fixed;
    right: 24px;
    bottom: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px 14px 14px;
    background: #fff;
    border-radius: 80px;
    text-decoration: none;
    z-index: 9999;

    border: 1px solid rgba(69,71,192,0.08);
    box-shadow:
        0 10px 30px rgba(69,71,192,0.12),
        0 4px 12px rgba(69,71,192,0.08);

    transition: all .35s ease;
}

/* Hover */
.whatsapp-float:hover{
    transform: translateY(-4px);
    box-shadow:
        0 18px 40px rgba(69,71,192,0.20),
        0 6px 18px rgba(69,71,192,0.12);
}

/* Icon Circle */
.wa-icon{
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        var(--primary),
        var(--secondary-blue)
    );

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    overflow: hidden;
}

/* Shine Animation */
.wa-icon::before{
    content: "";
    position: absolute;
    top: -120%;
    left: -40%;
    width: 70%;
    height: 300%;
    background: rgba(255,255,255,0.25);
    transform: rotate(25deg);
    animation: shine 3.5s infinite;
}

@keyframes shine{
    0%{
        left: -80%;
    }
    100%{
        left: 140%;
    }
}

/* WhatsApp Icon */
.wa-icon i{
    color: #fff;
    font-size: 34px;
    position: relative;
    z-index: 2;
}

/* Text */
.whatsapp-text{
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.whatsapp-text small{
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 3px;
}

.whatsapp-text span{
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-dark);
}

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

    .whatsapp-float{
        right: 16px;
        bottom: 16px;
        padding: 12px 16px 12px 12px;
    }

    .wa-icon{
        width: 54px;
        height: 54px;
        min-width: 54px;
    }

    .wa-icon i{
        font-size: 30px;
    }

    .whatsapp-text span{
        font-size: 15px;
    }
}
    
        /* ─── LOADER ─── */
        #loader {
            position: fixed; inset: 0;
            background: #4547C0;
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 20px;
            transition: opacity 0.6s, transform 0.6s;
        }
        #loader.gone { opacity: 0; pointer-events: none; }
        .loader-logo {
            font-family: 'Inter', sans-serif;
            font-size: 36px;
            color: #ffffff;
            letter-spacing: 0.18em;
            font-weight: 300;
        }
        .loader-logo span { color: #C9A96E; }
        .loader-line {
            width: 0; height: 1px;
            background: linear-gradient(90deg, transparent, #C9A96E, transparent);
            animation: loader-grow 1.4s cubic-bezier(0.25,0.46,0.45,0.94) forwards;
        }
        @keyframes loader-grow { to { width: 240px; } }
        .loader-text {
            font-size: 10px;
            letter-spacing: 0.3em;
            color: #7A869A;
            text-transform: uppercase;
            opacity: 0;
            animation: loader-fade-in 0.6s 0.8s forwards;
        }
        @keyframes loader-fade-in { to { opacity: 1; } }

.logo-wrap{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}

.logo-wrap img{
  width:90px;
  height:auto;
}

.logo-text{
  display:flex;
  flex-direction:column;
  line-height:1.2;
  font-family:'Poppins', sans-serif;
}

.logo-ticker {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.logo-track {
    display: flex;
    width: max-content;
    animation: scroll 18s linear infinite;
}

.logo-track .set {
    display: flex;
    align-items: center;
    gap: 80px;
    flex-shrink: 0;
}

.logo-track img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

/* smooth infinite loop */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}