/* ============================================================= */
/* ROOT VARIABLES - SIRF YAHAN CHANGE KARO = POORA SITE BADLEGA */
:root {
  /* ==================== COLORS ==================== */
  --primary: #50d1ff; /* Sky Blue */  --secondary: #303c68; /* Dark Navy */  --accent: #0d1a48; /* Gold Yellow */  --dark: #000000;  --light: #ffffff;  --gray-100: #f8f9fa;  --gray-200: #e0e0e0;  --gray-300: #f9f9f9;  --gray-900: #1e274a;  --text-dark: #303c68;  --text-light: #ffffff;  --text-muted: #94a3b8;
  --fs-h1: 62px;  --fs-h2: 52px;  --fs-h3: 36px;  --fs-h4: 28px;  --fs-h5: 22px;  --fs-h6: 18px;  --fs-lg: 20px;  --fs-base: 16px;  --fs-sm: 14px;  --fs-xs: 13px;  --fs-xxs: 12px;--transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); /* Super smooth easing */}


/* TYPOGRAPHY */
h1 {  font-size: var(--fs-h1);  font-weight: 900;  line-height: 1;}h2 {  font-size: var(--fs-h2);  font-weight: normal;  line-height: 1.1;}h3 {  font-size: var(--fs-h3);  font-weight: 700;  line-height: 1.2;}h4 {  font-size: var(--fs-h4);  font-weight: 700;  line-height: 1.3;}
h5 {  font-size: var(--fs-h5);  font-weight: 600;}h6 {  font-size: var(--fs-h6);  font-weight: 600;}
/* ============================================================= */
/* BASE & RESET */
/* ============================================================= */
*,*::before,*::after {  margin: 0;  padding: 0;  box-sizing: border-box;}html {  scroll-behavior: smooth;}
body { 
       font-family: "Geom", sans-serif; background: var(--light);  color: var(--text-dark);  overflow-x: hidden;  line-height: 1.6;  font-size: var(--fs-base);}::selection {  background: var(--secondary);  color: var(--primary);}
a {  color: inherit;  text-decoration: none;
}
.text-center{text-align:center ;}
.container {  max-width: 1600px;  margin: 0 auto;  padding: 0 5%;}
.container-1 {  max-width: 1600px;  margin: 0 auto;}
.mt-80{
  margin-top: 80px;
}
.mb-10{
  margin-bottom: 100px;
}
/* ===================== DESKTOP NAVBAR ===================== */
    .navbar-desktop {
      background: var(--light);
      padding: 1.3rem 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .navbar-desktop.hide {
      transform: translateY(-100%);
    }

    .navbar-desktop.show {
      transform: translateY(0);
    }

    .navbar-desktop.scrolled {
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    }

    .navbar-logo img {
      height: 52px;
      filter: drop-shadow(0 0 8px rgba(80, 209, 255, 0.3));
      transition: 0.4s;
    }

    .navbar-logo img:hover { transform: scale(1.08); }

    .desktop-menu {
      display: flex;
      gap: 17px;
      align-items: center;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
    }

    .desktop-menu a {
      color: var(--text-dark);
      font-weight: 500;
      font-size: 0.98rem;
      position: relative;
      transition: 0.3s;
      text-decoration: none;
    }

    .desktop-menu a:hover { color: var(--primary); }

    .desktop-menu a::after {
      content: "";
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--primary);
      box-shadow: 0 0 10px rgba(80, 209, 255, 0.6);
      transition: 0.3s;
    }

    .desktop-menu a:hover::after { width: 100%; }

    .navbar-contact-btn {
      background: var(--primary);
      color: var(--light);
      padding: 0.9rem 2rem;
      border-radius: 50px;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 0.7rem;
      transition: 0.5s;
      box-shadow: 0 4px 15px rgba(48, 60, 104, 0.4);
      font-size: 0.95rem;
      text-decoration: none;
    }

    .navbar-contact-btn:hover {
      background: var(--secondary);
      transform: translateY(-4px);
      box-shadow: 0 12px 30px rgba(48, 60, 104, 0.6);
    }

    .navbar-contact-btn i { font-size: 1.15rem; animation: pulse 2s infinite; }

    @keyframes pulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.2); }
    }

    /* Desktop Dropdown */
    .desktop-dropdown { position: relative; }
    .desktop-dropdown-content {
      position: absolute;
      top: 100%;
      left:140px;
      transform: translateX(-50%) translateY(10px);
      background: var(--light);
      min-width: 200px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      border-radius: 12px;
      opacity: 0;
      visibility: hidden;
      transition: 0.4s;
      z-index: 99;
      padding: 0.5rem 0;
    }
  
    .desktop-dropdown:hover .desktop-dropdown-content {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
    }

    .desktop-dropdown-content a {
      display: block;
      padding: 5px;
      color: var(--text-dark);
      font-size: 0.92rem;
      transition: 0.3s;
    }

    .desktop-dropdown-content a:hover {
      background: none;
      color: #333;
    }

    /* ===================== MOBILE NAVBAR ===================== */
    .navbar-mobile {
      background: var(--light);
      padding: 1rem 5%;
      display: none;
      justify-content: space-between;
      align-items: center;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
    }

    .navbar-mobile .navbar-contact-btn {
      padding: 0.8rem 1.6rem;
      font-size: 0.9rem;
      gap: 0.6rem;
    }

    .navbar-toggle {
      width: 48px;
      height: 48px;
      background: var(--secondary);
      color: var(--light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(48, 60, 104, 0.5);
      transition: 0.4s;
    }

    .navbar-toggle:hover {
      transform: scale(1.1);
      box-shadow: 0 8px 25px rgba(80, 209, 255, 0.6);
    }

    /* ===================== SIDEBAR ===================== */
    .sidebar {
      position: fixed;
      top: 0;
      right: -380px;
      width: 380px;
      height: 100%;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(20px);
      box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
      z-index: 1001;
      padding: 2rem;
      transition: 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
      overflow-y: auto;
    }

    .sidebar.open { right: 0; }

    .sidebar-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 2.5rem;
      padding-bottom: 1rem;
      border-bottom: 2px solid var(--primary);
    }

    .sidebar-close {
      width: 40px;
      height: 40px;
      background: var(--primary);
      color: var(--light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 1.2rem;
    }

    .sidebar-menu a {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.1rem 1.5rem;
      color: var(--text-dark);
      font-weight: 500;
      font-size: 1.05rem;
      border-bottom: 1px solid #eee;
      transition: 0.4s;
      text-decoration: none;
    }

    .sidebar-menu > a:hover {
      background: var(--primary);
      color: var(--light);
      padding-left: 2rem;
      border-radius: 8px;
    }

    .sidebar-dropdown-toggle {
      width: 100%;
      cursor: pointer;
    }

    .sidebar-dropdown-toggle i {
      transition: 0.4s;
    }

    .sidebar-dropdown.open .sidebar-dropdown-toggle i {
      transform: rotate(90deg);
    }

    .sidebar-dropdown-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s ease;
      background: var(--gray-300);
    }

    .sidebar-dropdown.open .sidebar-dropdown-content {
      max-height: 500px;
      padding: 0.5rem 0;
    }

    .sidebar-dropdown-content a {
      padding: 0.8rem 3rem;
      font-size: 0.95rem;
      border: none;
      display: block;
    }

    .sidebar-dropdown-content a:hover {
      background: var(--secondary);
      color: var(--light);
      padding-left: 3.5rem;
    }

    .sidebar-overlay {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(48, 60, 104, 0.6);
      opacity: 0;
      visibility: hidden;
      transition: 0.4s;
      z-index: 1000;
    }

    .sidebar-overlay.open {
      opacity: 1;
      visibility: visible;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .navbar-desktop { display: none; }
      .navbar-mobile { display: flex; }
    }

/* ============================================================= */
/* 6. ENQUIRY POPUP */
/* ============================================================= */
.enquiry-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.enquiry-popup.active {
  display: flex;
}

.enquiry-content {
  background: var(--light);
  width: 90%;
  max-width: 480px;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  position: relative;
  animation: popupZoom 0.4s ease;
}

@keyframes popupZoom {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.enquiry-close {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--text-dark);
  transition: 0.3s;
}

.enquiry-close:hover {
  color: var(--primary);
  transform: rotate(90deg);
}

/*   .input-group {
  margin-bottom: 1.2rem;
}	*/

.input-group label {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  padding: 0.9rem;
  border-radius: 8px;
  border: 1.5px solid #ccc;
  outline: none;
  /* font-family: "Inter", sans-serif; */
  transition: 0.3s;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(80, 209, 255, 0.2);
}

.enquiry-btn {
  width: 100%;
  padding: 0.95rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.enquiry-btn:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

/* ============================================================= */
/* RESPONSIVE */
/* ============================================================= */
@media (max-width: 1024px) {
  .navbar-desktop {
    display: none;
  }
  .navbar-mobile {
    display: flex;
  }
  .desktop-menu {
    display: none;
  }
}

@media (max-width: 480px) {
  :root {
    --fs-h1: 48px;
    --fs-h2: 40px;
    --fs-h3: 32px;
  }
  .top-bar {
    font-size: 0.85rem;
    padding: 0.6rem 5%;
  }
  .top-bar .contact-info {
    gap: 1rem;
  }
} /* ============================================================= */
/* 7. BANNER SECTION - SAME DESIGN, FULLY CONTROLLED BY :root */
/* ============================================================= */

.banner-container {
  display: flex;
  align-items: stretch;
  min-height: 80vh;
}

.banner-col {
  flex: 1;
  text-align: center;
  padding: 40px 25px;
  background: var(--gray-300);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  transition: all 0.5s ease;
}

.banner-col:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);
  z-index: 2;
}

/* Exact same premium gradients - now using variables where possible */
.banner-col:nth-child(1) {
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
}
.banner-col:nth-child(2) {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
}
.banner-col:nth-child(3) {
  background: linear-gradient(135deg, #e8f5e8, #c8e6c9);
}
.banner-col:nth-child(4) {
  flex: 1.6;
  background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
  color: var(--light);
  padding: 60px 50px;
}

.banner-title {
  /* font-size: var(--fs-lg); 20px from root */
  font-weight: normal;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.banner-col:nth-child(4) .banner-title {
  color: var(--primary); /* #50d1ff */
}

.banner-img {
  width: 220px;
  height: 240px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
  transition: 0.4s;
  margin: 0 auto;
}

.banner-col:hover .banner-img {
  transform: scale(1.1);
}

.banner-rocket {
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Hire Buttons - using exact same colors via variables */
.banner-hire-btn {
  background: var(--secondary); /* #303c68 */
  color: var(--primary); /* #50d1ff */
  border: none;
  padding: 14px 38px;
  font-weight: 900;
  font-size: 17px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  margin: 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.banner-hire-btn:hover {
  background: var(--primary); /* #50d1ff */
  color: #000;
  transform: scale(1.08);
}

/* 4th column button - inverted (exact same as original) */
.banner-col:nth-child(4) .banner-hire-btn {
  background: var(--primary); /* #50d1ff */
  color: #000;
}

.banner-col:nth-child(4) .banner-hire-btn:hover {
  background: var(--dark); /* #000000 */
  color: var(--primary); /* #50d1ff */
}

/* Main Title - 4th Column */
.banner-main-title {
  font-size: var(--fs-h1); /* 68px from root */
  font-weight: normal;
  line-height: 1;
  margin-bottom: 20px;
  color: var(--primary); /* #50d1ff */
}

.banner-subtitle-line {
  width: 100px;
  height: 8px;
  background: var(--primary); /* #50d1ff */
  margin: 25px auto;
  border-radius: 4px;
}

.banner-list {
  list-style: none;
  margin: 30px 0;
  padding: 0;
}

.banner-list li {
  font-size: 19px;
  color: var(--light);
  margin-bottom: 18px;
  font-weight: 600;
  padding-left: 50px;
  position: relative;
  text-align: left;
}

.banner-list li:before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary); /* #50d1ff */
  color: #000;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
}

/* Responsive - using root font variables */
@media (max-width: 992px) {
  .banner-container {
    flex-direction: column;
  }
  .banner-col:nth-child(4) {
    text-align: center;
    padding: 60px 40px;
  }
  .banner-main-title {
    font-size: var(--fs-h2); /* 52px */
  }
  .banner-list li {
    text-align: center;
    padding-left: 0;
  }
  .banner-list li:before {
    /* left: 50%; */
    transform: translateX(-50%) translateY(-50%);
  }
}

@media (max-width: 576px) {
  .banner-main-title {
    font-size: 42px;
  }
  .banner-img {
    width: 180px;
    height: 200px;
  }
  .banner-title {
    font-size: 19px;
  }
  .banner-hire-btn {
    padding: 12px 30px;
    font-size: 16px;
  }
}
/* ==================== HERO + COUNTER SECTION (PREMIUM LOOK) ==================== */
.hero-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 140px 20px 120px;
  position: relative;
  overflow: hidden;
}
/* .hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('https://i.ibb.co/7zYkP1c/subtle-pattern.png') repeat;
  opacity: 0.03;
  pointer-events: none;
} */

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
  align-items: center;
}

/* LEFT - Text */
.hero-title {
  font-size: 52px;
  font-weight: normal;
  line-height: 1.15;
  color: var(--secondary);
  margin-bottom: 24px;
}
.highlight {
  background: linear-gradient(120deg, var(--primary), #00d4ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero-desc {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  max-width: 620px;
}

/* RIGHT - Counter Cards */
.hero-counters {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.counter-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 36px 24px;
  text-align: center;
  border: 1px solid rgba(80, 209, 255, 0.2);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.counter-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #00d4ff);
  border-radius: 24px 24px 0 0;
}
.counter-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 25px 50px rgba(80, 209, 255, 0.25);
  border-color: var(--primary);
}

.counter-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary), #00d4ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  font-weight: bold;
}

.counter-number {
  font-size: 48px;
  font-weight: normal;
  color: var(--secondary);
  display: block;
  margin: 8px 0;
}
.plus {
  font-size: 36px;
  font-weight: 900;
  color: var(--primary);
  vertical-align: top;
  margin-left: 4px;
}

.counter-text {
  font-size: 15px;
  color: #444;
  margin-top: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 80px;
    text-align: center;
  }
  .hero-title { font-size: 44px; }
  .hero-desc { margin: 0 auto; }
}

@media (max-width: 768px) {
  .hero-section { padding: 100px 20px; }
  .counter-number { font-size: 42px; }
  .plus { font-size: 32px; }
}

@media (max-width: 480px) {
  .hero-counters { grid-template-columns: 1fr; gap: 24px; }
  .counter-card { padding: 32px 20px; }
}
.services-section {
  background: var(--secondary);
  padding: 5rem 0;
  text-align: center;
  color: var(--light);
}

.services-title {
  font-size: calc(var(--fs-h3) * 0.7);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.services-text {
  font-size: var(--fs-base);
  color: #e0e0e0;
  max-width: 900px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  padding: 0 1rem;
}

.service-card {
  background: var(--gray-900);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.5s ease;
  border: 1px solid #3a4b88;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  border-radius: 5px;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 20px 40px rgba(80, 209, 255, 0.3);
  border-color: var(--primary);
}

.service-icon {
  font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 1.2rem;
  display: inline-block;
  transition: transform 0.5s ease, color 0.5s ease;
}

.service-card:hover .service-icon {
  transform: rotate(10deg) scale(1.3);
  color: #ffffff; 
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.9rem;
  color: var(--light);
}

.service-card p {
  font-size: 0.95rem;
  color: #bfc7f5;
  line-height: 1.6;
}


/* ============================================================= */
/* 10. RESPONSIVE – FULLY CLEANED & USING :root VARIABLES */
/* ============================================================= */

@media (max-width: 992px) {
  .top-bar {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
    padding: 0.9rem 5%;
    background: var(--secondary);
  }

  .top-bar .contact-info {
    justify-content: center;
    gap: 1.2rem;
    font-size: 0.85rem;
    color: var(--primary);
  }

  .social-bar {
    justify-content: center;
    gap: 1.2rem;
    padding: 0.7rem 5%;
    background: var(--secondary);
  }

  .social-bar a {
    color: var(--primary);
  }

  .social-bar a:hover {
    color: var(--light);
  }

  .navbar-desktop {
    display: none !important;
  }
  .navbar-mobile {
    display: flex !important;
    background: var(--light);
  }

  .hero-title,
  .services-title {
    font-size: 1.7rem;
    color: var(--primary);
  }

  .hero-text,
  .services-text {
    color: var(--light);
  }
}

@media (max-width: 768px) {
  .hero-title,
  .services-title {
    font-size: 1.5rem;
    color: var(--primary);
  }

  .hero-text,
  .services-text {
    font-size: 0.95rem;
    color: #e0e0e0;
  }

  .counter-section {
    gap: 1.5rem;
    margin: 2.5rem 0;
  }

  .counter-number {
    font-size: 2.4rem;
    color: var(--primary);
  }

  .counter-number::after {
    font-size: 1.6rem;
    color: var(--primary);
  }

  .counter-label {
    font-size: 0.9rem;
    color: var(--light);
  }

  .service-card {
    padding: 1.6rem;
  }

  .service-icon {
    font-size: 2rem;
    color: var(--primary);
  }
}

@media (max-width: 480px) {
  .counter-section {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .counter-item {
    min-width: auto;
  }

  .hero-title,
  .services-title {
    font-size: 1.4rem;
    color: var(--primary);
  }

  .hero-text,
  .services-text {
    font-size: 0.9rem;
  }

  .service-card h3 {
    font-size: 1.1rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }

  .banner-main-title {
    font-size: 38px !important;
  }
}
/* mission Compact Css */
.mission-compact-section {
  padding: 90px 5% 100px;
  background: linear-gradient(135deg, #f8faff 0%, #f0f8ff 100%);
  position: relative;
  overflow: hidden;
}

.mission-title-wrapper {
  text-align: center;
  margin-bottom: 50px;
}

.mission-title {
  font-size: 2.8rem;
  font-weight: normal;
  color: #303c68;
  margin-bottom: 12px;
}
.mission-subtitle {
  color: #555;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Grid */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
  align-items: stretch;
}

/* Cards */
.mission-card {
  background: white;
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(80, 209, 255, 0.15);
  border: 1px solid rgba(80, 209, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.mission-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, #50d1ff, #3099ff);
  transition: all 0.5s ease;
  transform: translateX(-50%);
}

.mission-card:hover::before {
  width: 80%;
}

.mission-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(80, 209, 255, 0.25);
  border-color: #50d1ff;
}

.card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #50d1ff, #3099ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.9rem;
  color: white;
  box-shadow: 0 8px 25px rgba(80, 209, 255, 0.4);
}

.mission-card h3 {
  font-size: 15px;
  color: #303c68;
  margin: 0 0 12px;
  font-weight: normal;
}

.mission-card p {
  font-size: 12px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 18px;
}

.card-link {
  color: #50d1ff;
  font-weight: normal;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.card-link:hover {
  color: #303c68;
  letter-spacing: 1px;
}

/* Image Card */
.mission-image-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.18);
  height: 100%;
}

.mission-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.mission-image-card:hover img {
  transform: scale(1.12);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(48,60,104,0.7), rgba(80,209,255,0.4));
  opacity: 0;
  transition: opacity 0.5s ease;
}

.mission-image-card:hover .image-overlay {
  opacity: 1;
}

.image-caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: #50d1ff;
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.mission-image-card:hover .image-caption {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   SCROLL REVEAL — NAYA ADD KIYA
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Cards ek ke baad ek aayenge */
.mission-card.reveal:nth-child(1) { transition-delay: 0.1s; }
.mission-card.reveal:nth-child(2) { transition-delay: 0.25s; }
.mission-card.reveal:nth-child(3) { transition-delay: 0.4s; }

/* ============================================ */

/* Mobile */
@media (max-width: 992px) {
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .mission-title { font-size: 2.4rem; }
  .gradient-text { font-size: 2.7rem; }
  .mission-image-card { height: 380px; }
}

@media (max-width: 576px) {
  .mission-compact-section { padding: 70px 5%; }
  .mission-card { padding: 28px 20px; }
}

.our-mission-video-label,
.our-mission-video-title,
.our-mission-video-card::before {
  display: none !important;
}

.our-mission-video-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 0;
}

.our-mission-video-wrapper video {
  width: 100%;
  height: auto;
  border-radius: 0;
  object-fit: cover;
}
/* =================================== */
/* OUR CLIENTS SECTION */
/* =================================== */
.our-client-section {
  background: linear-gradient(180deg, #1a1a1a 0%, #111 100%);
  padding: 5rem 5%;
  text-align: center;
}
/* .our-client-container {
      max-width: 1400px;
      margin: 0 auto;
    } */
.our-client-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3rem;
}
.our-client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2.5rem;
  justify-items: center;
  align-items: center;
}
.our-client-logo {
  max-width: 140px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: all 0.4s ease;
}
.our-client-logo:hover {
  opacity: 1;
  transform: scale(1.1);
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(251, 207, 76, 0.5));
}
/* HERO */
    /* HERO */
.xyz-hero {  padding:120px 0 80px;  text-align:center;  background:var(--light);}.xyz-title {  font-size:62px;  font-weight:normal;  line-height:1.1;}

.xyz-title span {  color:#e74c3c;}.xyz-btn {  display:inline-block;  padding:14px 32px;  border:2px solid #000;  border-radius:50px;  font-weight:600;
  font-size:18px;  color:#000;  transition:all .3s;  margin-top:10px;}.xyz-btn:hover {  background:#000;  color:#fff;}
/* FAQ SECTION */
.xyz-faq-section {
  background: #ffffff;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.xyz-faq-section::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(80,209,255,0.05) 0%, transparent 65%);
  top: -100px; right: -100px;
  pointer-events: none;
}
.xyz-faq-section::after {
  content: '';
  position: absolute;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122,169,54,0.04) 0%, transparent 65%);
  bottom: -80px; left: -80px;
  pointer-events: none;
}

/* ── TITLE ── */
.xyz-faq-title {
  font-size: clamp(28px, 3.5vw, 46px);
  color: #1e274a;
  text-align: center;
  margin-bottom: 14px;
  line-height: 1.12;
}
.xyz-faq-title span { color: #50d1ff; }

.xyz-faq-subtitle {
  text-align: center;
  font-size: 16px;
  color: #6b7494;
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto 56px;
  line-height: 1.7;
  transition-delay: 0.1s;
}

/* ── 2 COLUMN GRID ── */
.xyz-faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 20px;
  padding: 0 5%;
  position: relative;
  z-index: 1;
}

/* ── FAQ BOX ── */
.xyz-faq-box {
  background: #fff;
  border: 1px solid rgba(48,60,104,0.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: border-color 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.xyz-faq-box.open {
  border-color: rgba(80,209,255,0.35);
  box-shadow: 0 4px 24px rgba(80,209,255,0.08);
}

/* question */
.xyz-q {
  padding: 22px 28px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
  color: #1e274a;
  line-height: 1.4;
  transition: background 0.3s, color 0.25s;
}
.xyz-q:hover { background: #f8f8f8; }
.xyz-q::after {
  content: '+';
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(48,60,104,0.06);
  border: 1px solid rgba(48,60,104,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 400;
  color: #1e274a;
  transition: all 0.3s ease;
  line-height: 28px;
  text-align: center;
}
.xyz-faq-box.open .xyz-q {
  color: #50d1ff;
  background: rgba(80,209,255,0.04);
}
.xyz-faq-box.open .xyz-q::after {
  content: '−';
  background: #50d1ff;
  border-color: #50d1ff;
  color: #030812;
}

/* answer */
.xyz-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  padding: 0 28px;
}
.xyz-faq-box.open .xyz-a {
  max-height: 600px;
  padding: 0 28px 20px;
}
.xyz-a p {
  margin: 0;
  padding: 14px 0 0;
  color: #6b7494;
  line-height: 1.75;
  font-size: 14px;
  font-weight: 300;
  border-top: 1px solid rgba(48,60,104,0.08);
}

/* ============================================
   SCROLL REVEAL — NAYA ADD KIYA
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* FAQ boxes stagger delay */
.xyz-faq-box.reveal:nth-child(1) { transition-delay: 0.05s; }
.xyz-faq-box.reveal:nth-child(2) { transition-delay: 0.12s; }
.xyz-faq-box.reveal:nth-child(3) { transition-delay: 0.19s; }
.xyz-faq-box.reveal:nth-child(4) { transition-delay: 0.26s; }
.xyz-faq-box.reveal:nth-child(5) { transition-delay: 0.33s; }
.xyz-faq-box.reveal:nth-child(6) { transition-delay: 0.40s; }
.xyz-faq-box.reveal:nth-child(7) { transition-delay: 0.47s; }
.xyz-faq-box.reveal:nth-child(8) { transition-delay: 0.54s; }

/* ============================================ */

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .xyz-faq-grid { grid-template-columns: 1fr; }
  .xyz-faq-section { padding: 60px 0; }
  .xyz-faq-title { font-size: 44px; }
}
/* =================================== */
/* BLOGS SECTION - ATTRACTIVE & CLEAN */.blog-section {  background: #f9f9f9;  padding: 5rem 0;  text-align: center;}.blog-title {  font-size: 32px;  font-weight: 700;  color: #28355f;  margin-bottom: 0.5rem;  position: relative;  display: inline-block;}
.blog-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #50d1ff;
  border-radius: 2px;
}
.blog-subtitle {
  font-size: 1rem;
  color: #666;
  margin-bottom: 3rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
  justify-items: center;
}
.blog-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.5s ease;
  text-align: left;
  border: 1px solid #eee;
  position: relative;
}
.blog-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #50d1ff, #50d1ff);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.blog-card:hover::before {
  opacity: 1;
}
.blog-card:hover {
  transform: translateY(-12px);
  /* box-shadow: 0 15px 20px #50d1ff; */
  border-color: #28355f;
}

.blog-img-wrapper {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: #f5f0e6;
}
.blog-img {
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-card:hover .blog-img {
  transform: scale(1.1);
}
.blog-logo {
  position: absolute;
  top: 14px;
  left: 14px;
  height: 42px;
  z-index: 2;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.blog-content {
  padding: 1.6rem;
}
.blog-meta {
  font-size: 0.82rem;
  color: #28355f;
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}
.blog-meta i {
  color: #50d1ff;
  font-size: 0.9rem;
}
.blog-meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.blog-card-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: #28355f;
  margin-bottom: 1rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-read-more {
  color: #50d1ff;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.4s ease;
  margin-top: 0.5rem;
}
.blog-read-more:hover {
  color: #50d1ff;
  gap: 1rem;
}
.blog-read-more i {
  font-size: 1.1rem;
  transition: transform 0.4s ease;
}
.blog-read-more:hover i {
  transform: translateX(4px);
}

/* =================================== */
/* RESPONSIVE */
/* =================================== */
@media (max-width: 992px) {
  .faq-title,
  .blog-title {
    font-size: 2.3rem;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .faq-item {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .faq-title,
  .blog-title {
    font-size: 2rem;
  }
  .faq-question {
    font-size: 1rem;
    padding: 1.2rem;
  }
  .faq-answer {
    font-size: 0.92rem;
  }
  .blog-img-wrapper {
    height: 170px;
  }
  .blog-content {
    padding: 1.4rem;
  }
  .blog-card-title {
    font-size: 1.1rem;
  }
}

/* / footer */
/* ==================== FOOTER ==================== */


.sx-cta-section {
  position: relative;
  overflow: hidden;
  /* font-family: 'Satoshi', sans-serif; */
  background: #0a0c14;
}

/* left half accent color, right darker */
.sx-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, #1a1c2e 0%, #1a1c2e 52%, #0d0f1a 52%);
  z-index: 0;
}

/* grid pattern */
.sx-cta-section::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(80,209,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80,209,255,0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
  z-index: 1;
}

/* blue accent glow top-left */
.sx-cta-glow {
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(80,209,255,0.1) 0%, transparent 65%);
  top: -180px; left: -80px;
  z-index: 1;
  pointer-events: none;
  animation: sxGlowPulse 7s ease-in-out infinite alternate;
}
@keyframes sxGlowPulse { to { transform: translate(20px, 15px) scale(1.08); } }

/* green glow bottom-right */
.sx-cta-glow2 {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122,169,54,0.08) 0%, transparent 65%);
  bottom: -120px; right: 100px;
  z-index: 1;
  pointer-events: none;
}

/* thin accent line at top */
.sx-cta-topline {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #50d1ff 30%, #7aa936 70%, transparent);
  z-index: 3;
}

.sx-cta-wrap {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 380px;
  gap: 0;
  align-items: center;
  padding: 55px 0;
  position: relative;
  z-index: 2;
}

/* ── LEFT ── */
.sx-cta-left {
  padding-right: 50px;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.sx-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(80,209,255,0.07);
  border: 1px solid rgba(80,209,255,0.2);
  color: #50d1ff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.sx-cta-eyebrow-dot {
  width: 5px; height: 5px;
  background: #50d1ff;
  border-radius: 50%;
  animation: sxDotPulse 2s ease-in-out infinite;
}
@keyframes sxDotPulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

.sx-cta-questions {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.sx-cta-ask {
  font-size: clamp(28px, 3vw, 40px);
  /* font-weight: 800; */
  color: #fff;
  /* font-family: 'Clash Display', 'Satoshi', sans-serif; */
  line-height: 1.1;
  margin-bottom: 10px;
}
.sx-cta-ask span { color: #50d1ff; }

.sx-cta-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 26px;
  max-width: 280px;
  font-weight: 300;
}

.sx-cta-btn-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.sx-cta-schedule-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #50d1ff;
  color: #030812;
  padding: 13px 26px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.sx-cta-schedule-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(80,209,255,0.3);
}
.sx-cta-ghost-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  padding: 13px 22px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.12);
}
.sx-cta-ghost-btn:hover {
  border-color: rgba(80,209,255,0.4);
  color: #50d1ff;
}

/* ── CENTER ── */
.sx-cta-center {
  padding: 0 50px;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.sx-cta-phone-label {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.sx-cta-phone-label::before {
  content: '';
  width: 20px; height: 1px;
  background: rgba(255,255,255,0.2);
  display: block;
}

.sx-cta-phone {
  display: block;
  font-size: 20px;
  /* font-weight: 900; */
  font-weight: normal;
  color: #fff;
  text-decoration: none;
  /* font-family: 'Clash Display', 'Satoshi', sans-serif; */
  line-height: 1;
  margin-bottom: 14px;
  transition: color 0.3s;
  letter-spacing: -0.01em;
}
.sx-cta-phone:hover { color: #50d1ff; }

.sx-cta-hours {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 2;
  padding-left: 14px;
  border-left: 2px solid rgba(80,209,255,0.25);
}

/* notif cards in center */
.sx-cta-notifs {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sx-notif {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 9px 14px;
  animation: sxSlideIn 0.5s ease both;
}
.sx-notif:nth-child(1) { animation-delay: 0.2s; }
.sx-notif:nth-child(2) { animation-delay: 0.4s; }
@keyframes sxSlideIn { from{opacity:0;transform:translateX(-10px)} to{opacity:1;transform:translateX(0)} }

.sx-notif-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(76,175,80,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; flex-shrink: 0; color: #4caf50;
  border: 1px solid rgba(76,175,80,0.25);
}
.sx-notif-icon.blue {
  background: rgba(80,209,255,0.15);
  color: #50d1ff;
  border-color: rgba(80,209,255,0.25);
}
.sx-notif-text { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.75); }

/* ── RIGHT: IMAGE ── */
.sx-cta-right {
  position: relative;
  height: 300px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-left: 20px;
}

.sx-cta-char {
  height: 300px;
  width: auto;
  object-fit: contain;
  object-position: bottom;
  display: block;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 10px 40px rgba(0,0,0,0.4));
}

/* discount badge */
.sx-discount {
  position: absolute;
  left: 10px;
  bottom: 50px;
  width: 54px; height: 54px;
  background: linear-gradient(135deg, #50d1ff, #7aa936);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 900;
  color: #030812;
  /* font-family: 'Clash Display', sans-serif; */
  z-index: 3;
  box-shadow: 0 6px 20px rgba(80,209,255,0.35);
  animation: sxDiscountPop 3s ease-in-out infinite;
}
@keyframes sxDiscountPop { 0%,100%{transform:scale(1) rotate(-5deg)} 50%{transform:scale(1.1) rotate(5deg)} }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .sx-cta-wrap { grid-template-columns: 1fr 1fr; }
  .sx-cta-right { display: none; }
  .sx-cta-center { border-right: none; }
}
@media (max-width: 700px) {
  .sx-cta-wrap { grid-template-columns: 1fr; gap: 32px; padding: 40px 0; }
  .sx-cta-left { padding-right: 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding-bottom: 32px; }
  .sx-cta-center { padding: 0; }
  .sx-cta-btn-row { flex-direction: column; }
  .sx-cta-schedule-btn, .sx-cta-ghost-btn { width: 100%; justify-content: center; }
}
/* ══════════════════════════════
   MAIN FOOTER — dark
══════════════════════════════ */
.sx-footer {
  background: #1b2340;
  /* font-family: 'Satoshi', sans-serif; */
}

.sx-footer-main {
  padding: 60px 0 40px;
}

.sx-footer-inner {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

/* 4-col grid */
.sx-footer-grid {
  display: grid;
  grid-template-columns: 260px 220px 220px 180px;
  gap: 60px;
  margin-bottom: 50px;
}

/* brand col */
.sx-brand {}
.sx-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  text-decoration: none;
}
.sx-logo-img {
  width: 38px; height: 38px;
  object-fit: contain;
}
.sx-logo-fallback {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: linear-gradient(135deg, #50d1ff, #7aa936);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  font-weight: 900;
  color: #030812;
  /* font-family: 'Clash Display', sans-serif; */
}
.sx-logo-text-wrap {}
.sx-logo-name {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  /* font-family: 'Clash Display', 'Satoshi', sans-serif; */
  display: block;
  line-height: 1;
}
.sx-logo-sub {
  font-size: 10px;
  color: #8a93b2;
  font-weight: 400;
}

.sx-brand-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 20px;
}
.sx-brand-desc strong { color: rgba(255,255,255,0.9); font-weight: 600; }

.sx-find-us {
  font-size: 11px;
  font-weight: 700;
  color: #8a93b2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.sx-address {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}
.sx-phone-link {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  margin-bottom: 6px;
  transition: color 0.25s;
}
.sx-phone-link:hover { color: #50d1ff; }
.sx-email-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  margin-bottom: 20px;
  transition: color 0.25s;
}
.sx-email-link:hover { color: #50d1ff; }

.sx-socials {
  display: flex;
  gap: 8px;
}
.sx-socials a {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all 0.28s;
}
.sx-socials a:hover {
  background: #50d1ff;
  border-color: #50d1ff;
  color: #030812;
  transform: translateY(-3px);
}

/* nav col */
.sx-nav-col {}
.sx-col-title {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
  padding-bottom: 0;
}
.sx-col-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sx-col-links li {
  display: flex;
  align-items: center;
  gap: 7px;
}
.sx-col-links li a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.25s;
}
.sx-col-links li a:hover { color: #fff; }

.sx-pill-hot {
  background: #e53935;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.sx-pill-new {
  background: #1565c0;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

/* privacy notice */
.sx-privacy-box {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 18px 22px;
  margin-bottom: 0;
}
.sx-privacy-title {
  font-size: 12px;
  font-weight: 700;
  color: #50d1ff;
  text-decoration: underline;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.sx-privacy-text {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.75;
}
.sx-privacy-text a { color: rgba(255,255,255,0.6); }
.sx-read-more {
  color: #50d1ff;
  font-size: 12px;
  cursor: pointer;
  text-decoration: underline;
  display: inline-flex; align-items: center; gap: 4px;
  margin-left: 4px;
}

/* ── BOTTOM ── */
.sx-footer-bottom {
  background: #1b2340;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 18px 0;
}
.sx-bottom-wrap {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.sx-bottom-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sx-dmca {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 9px;
  font-weight: 800;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.sx-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.sx-copy a { color: rgba(255,255,255,0.5); text-decoration: none; }

/* disclaimer */
.sx-disclaimer {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 0 18px;
}
.sx-disclaimer p {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  line-height: 1.75;
}
.sx-disclaimer a { color: rgba(255,255,255,0.35); text-decoration: underline; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .sx-cta-wrap { grid-template-columns: 1fr 1fr; }
  .sx-cta-right { display: none; }
  .sx-footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .sx-cta-wrap { grid-template-columns: 1fr; gap: 30px; }
  .sx-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .sx-bottom-wrap { flex-direction: column; text-align: center; }
}
/* industry modern section */
.industry-section {
  padding: 70px 5%;
  background: #0f172a; /* deep navy */
  color: #fff;
  text-align: center;
  /* font-family: "Inter", sans-serif; */
}

/* heading */
.industry-title {
  font-size: 32px;
  font-weight: normal;
  margin-bottom: 8px;
  color: #50d1ff;
}

.industry-subtitle {
  font-size: 16px;
  color: #cbd5e1;
  margin-bottom: 40px;
}

/* grid */
.industry-grid {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* card */
.industry-card {
  background: transparent;
  border: 2px solid #ffffff44;
  border-radius: 16px;
  padding: 25px 20px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(6px);
}

.industry-card:hover {
  transform: translateY(-8px);
  border-color: #50d1ff;
  box-shadow: 0px 8px 25px rgba(80, 209, 255, 0.25);
}

/* icon circle */
.industry-icon-box {
  width: 90px;
  height: 90px;
  margin: 0 auto 15px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 6px 16px rgba(255,255,255,0.2);
}

.industry-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

/* small heading */
.industry-name {
  font-size: 18px;
  font-weight: 700;
  color: #50d1ff;
  margin: 12px 0;
}

/* desc */
.industry-desc {
  font-size: 14px;
  line-height: 1.5;
  color: #e2e8f0;
  margin-top: 5px;
}

/* Responsive */
@media (max-width: 768px) {
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .industry-grid {
    grid-template-columns: 1fr;
  }
}
/* navbar */
/* Dropdown content — horizontal flex layout */
.desktop-dropdown-content {
  display: none;
  flex-direction: row;
  gap: 1.5rem;
  padding: 1rem 1.25rem;
  /* baaki aapki existing styles rahegi */
}

.desktop-dropdown:hover .desktop-dropdown-content {
  display: flex;
}

/* Section title */
.dropdown-section-title {
  display: block;
  font-size: 14px;
  /* font-weight: 600; */
      padding-left: 25px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #888;
  padding-bottom: 0.5rem;
  margin-bottom: 0.4rem;
  border-bottom: 1px solid #eee;
}

/* Each section */
.dropdown-section {
  display: flex;
  flex-direction: column;
  min-width: 260px;
}
/* mobile navbar section */
/* Sidebar Section Title */
.sidebar-section-title {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #aaa;
  padding: 0.75rem 1.25rem 0.35rem 1.5rem;
}

/* Section Divider */
.sidebar-section-divider {
  height: 1px;
  background: #ebebeb;
  margin: 0.3rem 1.25rem;
}

/* Dropdown Content Links */
.sidebar-dropdown-content a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.55rem 1.25rem 0.55rem 1.5rem;
  border-left: 2px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.sidebar-dropdown-content a:hover {
  background: #fff7f7;
  color: #e63946;
  border-left-color: #e63946;
}

/* Chevron rotate on open */
.sidebar-dropdown.open .chevron {
  transform: rotate(90deg);
}
.chevron {
  transition: transform 0.25s;
}
/* blog  */

/* ============================================================= */
/* BLOG DETAIL PAGE - FULLY COMPATIBLE WITH YOUR :root THEME */
/* ============================================================= */

.blog {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.blog_detail_container {
  max-width: 1400px;
  /* margin: 4rem auto; */
  padding: 0 3%;
}

.blog_detail_header img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* Title */
.blog_detail_title {
  font-size: var(--fs-h3); /* 36px */
  font-weight: 800;
  margin: 2rem 0 1rem;
  line-height: 1.2;
  color: var(--secondary); /* #303c68 */
}

/* Author */
.blog_detail_author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1.8rem;
  font-size: var(--fs-sm);
  color: var(--text-muted);
}

.blog_detail_author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
}

.blog_detail_author span {
  font-weight: 600;
  color: var(--secondary);
}

/* Social Share Buttons */
.blog_detail_social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 2rem 0;
}

.blog_detail_social a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--light);
  color: var(--secondary);
  padding: 11px 18px;
  border-radius: 50px;
  font-size: var(--fs-sm);
  font-weight: 600;
  border: 2px solid var(--gray-200);
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.blog_detail_social a:hover {
  background: var(--primary); /* #50d1ff */
  color: #000;
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(80, 209, 255, 0.3);
}

.blog_detail_social a i {
  font-size: 1.1rem;
}

/* Main Layout */
.blog_detail_main {
  display: flex;
  gap: 20px;
  margin-top: 3rem;
}

/* Article Content */
.blog_detail_article {
  flex: 3;
  background: var(--light);
  padding: 2.5rem;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.blog_detail_article h3 {
  margin: 2rem 0 1rem;
  font-size: var(--fs-h5); /* 22px */
  color: var(--secondary);
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}

.blog_detail_article h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70px;
  height: 4px;
  background: var(--primary); /* #50d1ff */
  border-radius: 4px;
}

.blog_detail_content p {
  margin: 1.2rem 0;
  font-size: var(--fs-base);
  color: var(--text-dark);
  line-height: 1.8;
  text-align: justify;
}

.blog_detail_content ul {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.blog_detail_content ul li {
  margin-bottom: 0.8rem;
  color: var(--text-dark);
  position: relative;
}

.blog_detail_content ul li::marker {
  color: var(--primary);
}

.blog_detail_content strong {
  color: var(--secondary);
  font-weight: 700;
}

.blog_detail_content a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 600;
}

/* Sidebar - Trending Posts */
.blog_detail_sidebar {
  flex: 1;
}

.blog_detail_sidebar h3 {
  font-size: var(--fs-h5);
  color: var(--secondary);
  font-weight: 700;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--primary);
  margin-bottom: 1.5rem;
}

.blog_detail_trending {
  display: flex;
  gap: 14px;
  padding: 14px;
  border-radius: 14px;
  background: var(--light);
  border: 1px solid var(--gray-200);
  margin-bottom: 1rem;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  width: 300px;
}

.blog_detail_trending:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(80, 209, 255, 0.2);
  border-color: var(--primary);
}

.blog_detail_trending img {
  width: 100px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

.blog_detail_trending p {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--secondary);
  line-height: 1.5;
}

/* Comment Form */
.blog_detail_form {
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 4px solid var(--primary);
}

.blog_detail_form h3 {
  font-size: var(--fs-h4);
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.blog_detail_form label {
  display: block;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 0.5rem;
  font-size: var(--fs-sm);
}

.blog_detail_form input,
.blog_detail_form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 1.2rem;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  background: var(--gray-100);
  /* font-family: "Inter", sans-serif; */
  font-size: var(--fs-base);
  transition: all 0.3s ease;
}

.blog_detail_form input:focus,
.blog_detail_form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--light);
  box-shadow: 0 0 0 4px rgba(80, 209, 255, 0.15);
}

.blog_detail_form textarea {
  min-height: 140px;
  resize: vertical;
}

.blog_detail_checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 1rem 0;
  font-size: var(--fs-sm);
  color: var(--text-muted);
}

.blog_detail_form button {
  background: var(--primary);
  color: #000;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: var(--fs-base);
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(80, 209, 255, 0.4);
}

.blog_detail_form button:hover {
  background: var(--accent);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(251, 207, 76, 0.5);
}

/* Responsive */
@media (max-width: 992px) {
  .blog_detail_main {
    flex-direction: column;
  }
  .blog_detail_sidebar {
    display: none;
  }
}

@media (max-width: 768px) {
  .blog_detail_title {
    font-size: var(--fs-h4);
  }
  .blog_detail_header img {
    height: 380px;
  }
}

@media (max-width: 576px) {
  .blog_detail_header img {
    height: 280px;
    border-radius: 12px;
  }
  .blog_detail_title {
    font-size: 28px;
  }
  .blog_detail_social a {
    padding: 10px 14px;
    font-size: 13px;
  }
  .blog_detail_form button {
    width: 100%;
    justify-content: center;
  }
}
.case-study-section {
  min-height: 100vh;
  padding: 140px 20px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f0f7ff, #e6f3ff);
}

.case-study-container {
  /* max-width: 1400px; 
      margin: 0 auto;  */
  width: 100%;
}

.case-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: center;
}

/* LEFT SIDE */
.case-left h1 {
  font-size: clamp(48px, 7vw, 82px);
  font-weight: normal;
  /* line-height: 1.05;
  margin-bottom: 40px; */
  background: linear-gradient(90deg, #10204e, #317ba9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: opacity 0.5s ease;
}

.case-left h1 span {
  display: block;
  font-size: clamp(72px, 11vw, 140px);
  background: linear-gradient(95deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 60px 0;
}

.case-tag {
  padding: 2px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 60px;
  font-weight: 700;
  font-size: 16px;
  background: rgba(80, 209, 255, 0.08);
  color: #10204e;
  cursor: pointer;
  transition: all 0.4s ease;
}

.case-tag:hover {
  background: rgba(80, 209, 255, 0.18);
  transform: translateY(-4px);
}

.case-tag.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 15px 45px var(--glow);
}

.case-btn {
  display: inline-block;
  color: var(--primary);
  font-weight: normal;
  font-size: 24px;
  padding-bottom: 8px;
  border-bottom: 4px solid transparent;
  transition: all 0.4s ease;
  text-decoration: none;
}

.case-btn:hover {
  color: var(--accent);
  border-color: var(--primary);
  transform: translateX(12px);
}

/* RIGHT SIDE - PHONE + THUMBS */
.case-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-right: 20%;
}

.phone-mockup {
  width: 390px;
  height: 800px;
  margin: 0 auto;
  position: relative;
}

.phone-frame {
  position: absolute;
  inset: 0;
  /* background: url("images/mobile-frame.png") center/contain no-repeat; */
  pointer-events: none;
  z-index: 10;
}

.phone-screen {
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
  width: 363px;
  height: 725px;
  border-radius: 28px;
  overflow: hidden;
  background: #000;
  z-index: 999;
}

.case-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.case-image.active {
  opacity: 1;
}

/* THUMBNAILS - Only 5 visible at a time on desktop */
.case-thumbs {
  position: absolute;
  right: -180px;
  top: 50%;
  transform: translateY(-50%);
  width: 160px;
  max-height: 720px; /* Exactly 5 thumbs × (130 + 10 gap) = 700px */
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 10px 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) rgba(0, 0, 0, 0.1);
}

/* Beautiful Scrollbar */
.case-thumbs::-webkit-scrollbar {
  width: 7px;
}

.case-thumbs::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.06);
  border-radius: 10px;
}

.case-thumbs::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
  transition: all 0.3s;
}

.case-thumbs::-webkit-scrollbar-thumb:hover {
  background: #265e85;
}

.case-thumb {
  width: 130px;
  height: 130px;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  border: 5px solid transparent;
  transition: all 0.4s ease;
  opacity: 0.8;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.case-thumb:hover,
.case-thumb.active {
  opacity: 1;
  border-color: var(--primary);
  transform: scale(1.12);
  box-shadow: 0 25px 60px var(--glow);
}

.case-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Arrows - Mobile Only */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  opacity: 0;
  pointer-events: none;
}

.nav-arrow svg {
  width: 28px;
  height: 28px;
  color: #10204e;
}

.nav-arrow:hover {
  background: var(--primary);
  transform: translateY(-50%) scale(1.15);
}

.nav-arrow:hover svg {
  color: white;
}

.nav-prev {
  left: 20px;
}
.nav-next {
  right: 20px;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .case-grid {
    grid-template-columns: 1fr;
    gap:15px;
    text-align: center;
  }
  .case-tags {
    justify-content: center;
  }
  .case-thumbs {
    display: none !important;
  }
  .nav-arrow {
    opacity: 1;
    pointer-events: all;
  }
  .phone-mockup {
    width: 340px;
    height: 700px;
  }
  .case-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-right: 0%;
  }

  .case-study-section {
    padding: 100px 15px;
  }
  .phone-screen {
    width: 315px;
    height: 635px;
    top: 30px;
  }
}

@media (max-width: 768px) {
  .case-tags{
      display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 15px 0;
}
  .case-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-right: 0%;
  }

  .case-study-section {
    padding: 100px 15px;
  }
  .phone-screen {
    width: 280px;
    height: 562px;
    top: 25px;
  }
  .phone-screen {
    width: 316px;
    height: 635px;
    top: 28px;
  }
  .nav-arrow {
    width: 50px;
    height: 50px;
  }
  .nav-arrow svg {
    width: 22px;
    height: 22px;
  }
}
.webservice-section {
      padding: 50px 20px 100px;
      background: linear-gradient(135deg, #0a1f3d 0%, #0f2d52 100%);
      position: relative;
      overflow: hidden;
    }

    .webservice-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: 
        radial-gradient(circle at 20% 80%, rgba(80, 209, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(49, 123, 169, 0.2) 0%, transparent 50%);
      pointer-events: none;
    }


 .webservice-title {
    text-align: center;
    font-size: clamp(32px, 12vw, 56px);
    font-weight: normal;
    background: linear-gradient(90deg, #fff, #003b88, #8be9fd);
    
    background-size: 300% 100%;
    animation: moveGradient 4s linear infinite;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    letter-spacing: -2px;
    margin-bottom: 65px;
}

@keyframes moveGradient {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}


    .webservice-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px 30px;
      align-items: center;
    }

    /* MAIN CARD STYLE */
    .webservice-card {
      height: 210px;
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-radius: 40px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      padding: 5px 35px;
      text-align: center;
      position: relative;
      cursor: pointer;
      overflow: hidden;
      transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      transform: translateY(0) rotate(0);
    }

    /* MAGICAL HOVER EFFECT - Yeh hai asli jaadu */
    .webservice-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: linear-gradient(135deg, 
        rgba(80, 209, 255, 0.15), 
        rgba(49, 123, 169, 0.25), 
        transparent);
      opacity: 0;
      transition: opacity 0.6s;
      border-radius: 40px;
    }

    .webservice-card::after {
      content: '';
      position: absolute;
      width: 300px;
      height: 300px;
      /* background: radial-gradient(circle, var(--accent) 0%, transparent 70%); */
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(0);
      transition: transform 0.8s ease;
      pointer-events: none;
      border-radius: 50%;
    }

    .webservice-card:hover {
      /* transform: translateY(-30px) scale(1) !important; */
      box-shadow: 
        0 40px 100px rgba(0,0,0,0.6),
        0 0 80px var(--glow);
      z-index: 100;
      border: 1px solid var(--accent);
    }

    .webservice-card:hover::before {
      opacity: 1;
    }

    .webservice-card:hover::after {
      transform: translate(-50%, -50%) scale(1.5);
    }

    .webservice-card:hover .webservice-icon img {
      transform: scale(1.3) rotate(15deg);
      filter: drop-shadow(0 0 30px var(--accent));
    }

    .webservice-card:hover .webservice-name {
      background: linear-gradient(90deg, #fff, var(--accent));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      transform: translateY(-10px);
    }

    /* ACTIVE CARD - Performance Marketing (Sabse bada boss) */
    .webservice-active {
      background: linear-gradient(135deg, var(--primary), #1e5f8a);
      height: 300px;
      grid-row: span 2;
      grid-column: 2 / span 2;
      transform: translateY(-80px) scale(1.1);
      border: 2px solid var(--accent);
      box-shadow: 
        0 70px 160px rgba(0,0,0,0.7),
        0 0 120px var(--glow);
      z-index: 50;margin-bottom: 100px;
    }

    .webservice-active::before {
      background: linear-gradient(135deg, 
        rgba(255,255,255,0.2), 
        rgba(80, 209, 255, 0.4));
      opacity: 0.6;
    }

    .webservice-active:hover {
      transform: translateY(-0px) scale(1) !important;
      box-shadow: 0 100px 200px rgba(0,0,0,0.8), 0 0 150px var(--glow);
    }

    .webservice-active .webservice-name {
      font-size: 36px;
      color: white;
    }

    .webservice-active .webservice-number {
      color: rgba(255,255,255,0.8);
    }

    .webservice-icon {
      width: 85px;
      height: 85px;
      /* margin-bottom: 15px; */
      transition: all 0.6s ease;
    }

    .webservice-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      filter: brightness(0) invert(1);
      transition: all 0.6s ease;
    }

    .webservice-active .webservice-icon img {
      filter: brightness(0) invert(1) drop-shadow(0 0 30px white);
    }

    .webservice-number {
      font-size: 15px;
      font-weight: 900;
      letter-spacing: 8px;
      color: rgba(255,255,255,0.4);
      text-transform: uppercase;
      margin-bottom: 10px;
      transition: all 0.4s;
    }

    .webservice-name {
      font-size: 26px;
      font-weight: normal;
      line-height: 1.3;
      color: white;
      transition: all 0.6s ease;
    }

    .webservice-arrow {
      position: absolute;
      bottom: 40px;
      right: 40px;
      width: 60px;
      height: 60px;
      background: rgba(255,255,255,0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transform: scale(0);
      transition: all 0.6s ease;
    }

    .webservice-active:hover .webservice-arrow {
      opacity: 1;
      transform: scale(1);
    }

    .webservice-arrow svg {
      width: 32px;
      height: 32px;
      stroke: white;
    }

    /* Staggered Layout */
    .webservice-grid > :nth-child(4n+1),
    .webservice-grid > :nth-child(4n+3) {
      transform: translateY(-50px);
    }

    .webservice-grid > :nth-child(4n+2),
    .webservice-grid > :nth-child(4n+4) {
      transform: translateY(50px);
    }

    /* Responsive */
    @media (max-width: 1200px) {
      .webservice-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
      }
      .webservice-active {
        grid-column: 1 / -1;
        height: 340px;
        transform: translateY(-40px) scale(1.05);
      }
      .webservice-grid > * {
        transform: none !important;
      }
    }

    @media (max-width: 768px) {
      .webservice-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      .webservice-card,
      .webservice-active {
        height: 280px;
        transform: none !important;
      }
      .webservice-active {
        height: 320px;
      }
      .webservice-title {
        font-size: 52px;
        margin-bottom: 100px;
      }
    }
/* ============================================================
   1. ABOUT INTRO SECTION
   ============================================================ */
.about-section {
  background: #fff;
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
}

.about-section .about-bg {
  display: none;
}

.about-section .container {
  /* max-width: 1100px; */
  margin: 0 auto;
  /* padding: 0 40px; */
  text-align: center;
}

/* Trustpilot */
.about-trustpilot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 32px;
}

/* Big heading */
.about-hero-heading {
  /* font-size: clamp(38px, 6vw, 80px); */
  font-weight: normal;
  line-height: 1.1;
  color: #272f4b;
  margin: 0 auto 40px;
  max-width: 900px;
}

/* Body text */
.about-hero-body {
  max-width: 780px;
  margin: 0 auto 56px;
}

.about-hero-body p {
  font-size: 16px;
  line-height: 1.8;
  color: #2a2a2a;
  margin-bottom: 20px;
}

.about-hero-body p:last-child {
  font-size: 14px;
  color: #555;
  margin-bottom: 0;
}

/* Full-width image */
.about-hero-img-wrap {
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  background: #eee;
  min-height: 300px;
}

.about-hero-img {
  /* width: 100%;
      margin: 20px 0 0;
    border-radius: 60px; */
  /* height: 480px;
  object-fit: cover;
  display: block; */
}

/* Remove old grid classes */
.about-grid,
.about-left,
.about-right,
.about-subtitle {
  display: none !important;
}

@media (max-width: 768px) {
  .about-hero-heading {
    font-size: clamp(28px, 8vw, 48px);
  }
  .about-section .container {
    padding: 0 20px;
  }
  .about-hero-img {
    height: 260px;
  }
}
/* ============================================================
   STATS SECTION
   ============================================================ */
.about-stats {
  background: #272f4b;
  padding: 80px 0;
  border-top: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
}

/* .about-stats .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
} */

.about-stats-title {
  text-align: center;
  font-size: clamp(22px, 2.8vw, 36px);
  /* font-weight: 800; */
  color: #fff;
  margin-bottom: 56px;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.about-stats-item {
  text-align: center;
  padding: 40px 32px;
  border-right: 1px solid #ebebeb;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-stats-item:last-child {
  border-right: none;
}

.about-stats-number {
  display: block;
  font-size: clamp(32px, 3.5vw, 48px);
  /* font-weight: 800; */
  color: #ffffff;
  line-height: 1;
  margin-bottom: 10px;
}

.about-stats-label {
  display: block;
  font-size: 13px;
  /* font-weight: 700; */
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 14px;
}

.about-stats-desc {
  display: block;           /* ← show description */
  font-size: 13.5px;
  line-height: 1.7;
  color: #ffffff;
  margin: 0;
  max-width: 200px;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-stats-item {
    border-bottom: 1px solid #ebebeb;
  }
  .about-stats-item:nth-child(2),
  .about-stats-item:nth-child(4) {
    border-right: none;
  }
}

@media (max-width: 500px) {
  .about-stats-grid {
    grid-template-columns: 1fr;
  }
  .about-stats-item {
    border-right: none;
  }
}

/* ============================================================
   3. WHAT MAKES US DIFFERENT
   ============================================================ */
.about-different {
  padding: 60px 0;
  background: var(--srv-white);
}


.about-different-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  /* align-items: center; */
}

.about-different-text h2 {
  /* font-family: 'Syne', sans-serif; */
  /* font-size: clamp(22px, 2.8vw, 38px); */
  /* font-weight: 800; */
  line-height: 1.15;
  color: var(--srv-black);
  margin-bottom: 24px;
  text-align: center;
}

.about-different-text p {
  /* font-family: 'DM Sans', sans-serif; */
  font-size: 15px;
  line-height: 1.8;
  /* color: var(--srv-gray4); */
  margin-bottom: 14px;
    text-align: center;
}

.about-different-img-wrap {
  border-radius: var(--srv-radius);
  overflow: hidden;
  background: var(--srv-gray1);
  min-height: 400px;
}

.about-different-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px;
}

/* ============================================================
   5. VISION SECTION
   ============================================================ */
.our_vision_section {
  padding: 20px 20px;
  background: var(--srv-black);
  text-align: center;
}
.our_vision_box {
  position: relative;
}

.our_vision_quote_left,
.our_vision_quote_right {
  font-size: 80px;
  line-height: 0.8;
  color: var(--srv-accent);
  opacity: 0.25;
  /* font-family: Georgia, serif; */
  position: absolute;
}

.our_vision_quote_left {
  top: -8px;
  left: 0;
}

.our_vision_quote_right {
  bottom: -32px;
  right: 0;
}

/* Core values title & grid (old chips style — now hidden, replaced by cards) */
.our_vision_core_title {
  display: none;
}

.our_vision_grid {
  display: none;
}


/* ============================================================
   6. VALUES CARDS SECTION
   ============================================================ */
.about-values {
  padding: 50px 20px;
}

.about-values-title {
  text-align: center;
  color: var(--srv-black);
  margin-bottom: 36px;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.about-values-item {
  padding: 32px 28px;
  border: 1px solid var(--srv-gray2);
  border-radius: var(--srv-radius);
  background: var(--srv-white);
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
  cursor: default;
}

.about-values-item:hover {
  border-color: var(--srv-accent);
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(224,62,37,.1);
}

.about-values-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  color: var(--srv-accent);
      background: #303c68;
    border-radius: 10px;

}

.about-values-icon svg {
  /* width: 100%;
  height: 100%; */
  color: #ffffff;
}

.about-values-item h3 {
  font-size: 20px;
  /* font-weight: 700; */
  /* color: var(--srv-black); */
  margin-bottom: 10px;
}

.about-values-item p {
  line-height: 1.75;
  color: var(--srv-gray4);
  margin: 0;
}


/* ============================================================
   7. OUR JOURNEY
   ============================================================ */
/* .our-journey {
  padding: 96px 0;
  background: #fff;
} */

/* .our-journey .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
} */
.our-journey {
  padding: 0px 0px 60px;
  background: #fff;
}
/* 
.our-journey .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
} */

.journey-heading {
  color: #303c68 !important;
  line-height: 1.15 !important;
  font-size: clamp(26px, 3vw, 42px);
  /* font-weight: 800; */
  margin-bottom: 56px;
}

.journey-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;        /* top-align so both sides start together */
}


.journey-left{
  margin-left: 60px;
}
.journey-milestone:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

/* Year badge */
.year-badge {
  display: inline-flex;
  margin: 10px;
}

.year-badge span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 60px;
  font-size: 26px;
  /* font-weight: 800; */
  color: #1a1a1a;
  border: 2px solid #1a1a1a;
  margin-left: -2px;
}

.year-badge span:first-child {
  border-radius: 8px 0 0 8px;
  margin-left: 0;
}

.year-badge span:last-child {
  border-radius: 0 8px 8px 0;
}

/* List */
.journey-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.journey-list li {
  font-size: 15px;
  color: #6b6760;
  padding-left: 22px;
  position: relative;
  line-height: 1.65;
}

.journey-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e03e25;
}

/* Right image — sticky so it stays visible while scrolling left */
.journey-right {
  border-radius: 16px;
  overflow: hidden;
  background: #f4f2ef;
  position: sticky;
  top: 40px;             /* sticks while left content scrolls */
}

.journey-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  transition: transform .4s ease;
}

.journey-img:hover {
  transform: scale(1.02);
}

/* Responsive */
@media (max-width: 900px) {
  .journey-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .journey-right {
    position: static;
  }

  .journey-img {
    height: 280px;
  }

  .our-journey {
    padding: 64px 0;
  }

  .our-journey .container {
    padding: 0 20px;
  }
}

/* ============================================================
   MAKING IT OFFICIAL
   ============================================================ */
.about-official {
  padding: 96px 0;
  background: #f7f5f2;
}
.official-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  border: 3px solid #303c68;
    border-radius: 30px;
    position: relative;
}
.official-text{
  padding: 80px;
}


.official-img-wrap {
  border-radius: 0px 18px 27px 0px;
  overflow: hidden;
  background: #e0ddd8;
  min-height: 380px;
}

.official-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  /* transition: transform .4s ease; */
}
.about-quote-text {
  font-size: 28px;
  /* font-weight: 600; */
  line-height: 1.5;
  /* color: #fff; */
  margin: 0 0 24px;
  /* font-style: italic; */
  position: relative;
  padding: 0 20px;
}
.about-quote-author {
  display: block;
  font-size: 13px;
  font-style: normal;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #888;
  /* font-weight: 500; */
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .journey-row,
  .journey-row--reverse,
  .official-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    direction: ltr;
  }

  .journey-row--reverse > * {
    direction: ltr;
  }

  .journey-img,
  .official-img {
    height: 260px;
  }

  .our-journey,
  .about-official {
    padding: 64px 0;
  }

  .our-journey .container,
  .about-official .container {
    padding: 0 20px;
  }

  .about-quote .container {
    padding: 0 20px;
  }
}
/* ============================================================
   8. GET IN TOUCH CTA
   ============================================================ */
.about-cta {
  padding: 60px 0;
  /* background: var(--srv-black); */
  text-align: center;
}
.about-cta-title {
  /* font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 800; */
  /* color: #fff; */
  margin-bottom: 18px;
  line-height: 1.1;
}

.about-cta-text {
  /* font-family: 'DM Sans', sans-serif; */
  /* font-size: 15px; */
  /* line-height: 1.8; */
  color: #888;
  max-width: 560px;
  margin: 0 auto 36px;
}

.about-cta-btn {
  display: inline-block;
  padding: 10px 30px;
  background: #303c68;
  color: #fff;
  border-radius: 40px;
  /* font-family: 'DM Sans', sans-serif; */
  font-size: 14px;
  /* font-weight: 500; */
  letter-spacing: .04em;
  text-decoration: none;
  transition: opacity .2s ease;
}

.about-cta-btn:hover {
  opacity: .85;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .about-grid,
  .about-different-grid,
  .about-story-grid,
  .journey-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .journey-row--reverse {
    direction: ltr;
  }

  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-hero-img,
  .about-different-img,
  .about-story-img,
  .journey-img {
    height: 280px;
  }

  .our_vision_box {
    font-size: 22px;
    padding: 0 28px;
  }
}

@media (max-width: 600px) {
  .about-section,
  .about-different,
  .about-story,
  .our_vision_section,
  .about-values,
  .our-journey,
  .about-cta {
    padding-left: 0;
    padding-right: 0;
  }

  .about-section .container,
  .about-different .container,
  .about-story .container,
  .our_vision_section .container,
  .about-values .container,
  .our-journey .container,
  .about-cta .container,
  .about-stats .container {
    padding: 0 20px;
  }

  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-img,
  .about-different-img,
  .about-story-img,
  .journey-img {
    height: 220px;
  }
} 
/* ========================= SERVICE BANNER ========================= */
.service-banner {
  position: relative;
  background: url('image/bg-image.webp') center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  margin-top: 100px;
}

.sb-mesh {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  transition: transform 0.2s ease-out;
}
.sb-mesh-1 {
  width: 700px; height: 700px;
  top: -200px; left: -200px;
  background: radial-gradient(circle, rgba(80,209,255,0.13) 0%, transparent 70%);
  animation: sbDrift1 12s ease-in-out infinite alternate;
}
.sb-mesh-2 {
  width: 500px; height: 500px;
  bottom: -100px; right: 50px;
  background: radial-gradient(circle, rgba(122,169,54,0.10) 0%, transparent 70%);
  animation: sbDrift2 15s ease-in-out infinite alternate;
}
.sb-mesh-3 {
  width: 350px; height: 350px;
  top: 40%; right: 28%;
  background: radial-gradient(circle, rgba(80,209,255,0.07) 0%, transparent 70%);
  animation: sbDrift3 18s ease-in-out infinite alternate;
}
@keyframes sbDrift1 { from{transform:translate(0,0) scale(1)} to{transform:translate(60px,40px) scale(1.1)} }
@keyframes sbDrift2 { from{transform:translate(0,0) scale(1)} to{transform:translate(-40px,-60px) scale(1.15)} }
@keyframes sbDrift3 { from{transform:translate(0,0)} to{transform:translate(30px,-30px)} }

.sb-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(80,209,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80,209,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
  mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
  animation: sbGridShift 20s linear infinite;
  z-index: 0; pointer-events: none;
}
@keyframes sbGridShift { from{background-position:0 0} to{background-position:60px 60px} }

.service-banner-overlay {
  position: absolute; inset: 0;
  background: rgba(6,8,16,0.82);
  z-index: 1;
}

/* ── MAIN CONTAINER ── */
.service-banner-container {
  position: relative;
  z-index: 2;
  width: 88%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 40px;
  flex: 1;
}

/* ── LEFT CONTENT ── */
.service-banner-content {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0 40px;
}

.sb-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(80,209,255,0.08);
  border: 1px solid rgba(80,209,255,0.22);
  color: #50d1ff;
  /* font-size: 11px; font-weight: 600; */
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 26px;
  /* animation: sbFadeUp removed — scroll reveal use ho raha hai */
  width: fit-content;
}
.sb-badge-dot {
  width: 6px; height: 6px;
  background: #50d1ff; border-radius: 50%;
  animation: sbPulse 2s ease-in-out infinite;
}
@keyframes sbPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.7)} }

.service-banner-title {
  font-size: clamp(36px, 4.5vw, 66px);
  font-weight: normal;
  color: #ffffff;
  line-height: 1.06;
  margin-bottom: 6px;
  /* animation: sbFadeUp removed */
}
.service-banner-title .sb-accent {
  color: #50d1ff;
  position: relative; display: inline-block;
}
.service-banner-title .sb-accent::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, #50d1ff, transparent);
  border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  animation: sbLineGrow 1s 0.9s ease forwards;
}
@keyframes sbLineGrow { to{transform:scaleX(1)} }

.service-banner-para {
  font-size: clamp(28px, 3.2vw, 50px);
  font-weight: normal;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 22px;
  /* animation: sbFadeUp removed */
}

.service-banner-text {
  font-size: 17px; font-weight: 300;
  color: #8a93b2; line-height: 1.72;
  max-width: 480px; margin-bottom: 28px;
  /* animation: sbFadeUp removed */
}

.banner-points {
  margin-bottom: 36px;
  display: flex; flex-direction: column; gap: 10px;
  /* animation: sbFadeUp removed */
}
.point {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 500; color: #c0cce8;
}
.point-check {
  width: 22px; height: 22px;
  background: rgba(80,209,255,0.1);
  border: 1px solid rgba(80,209,255,0.28);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #50d1ff; font-size: 11px;
}

.banner-buttons {
  display: flex; gap: 16px; align-items: center;
  /* animation: sbFadeUp removed */
}
.service-banner-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #50d1ff; color: #030812;
  padding: 15px 32px; border-radius: 100px;
  font-weight: 700; font-size: 15px;
  text-decoration: none; transition: all 0.3s ease;
  position: relative; overflow: hidden;
}
.service-banner-btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.22), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.service-banner-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(80,209,255,0.38); }
.service-banner-btn:hover::before { opacity: 1; }

.banner-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: #ffffff; font-size: 15px; font-weight: 500;
  text-decoration: none; padding: 15px 22px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  transition: all 0.3s ease; backdrop-filter: blur(8px);
}
.banner-link:hover {
  border-color: rgba(80,209,255,0.4);
  color: #50d1ff; background: rgba(80,209,255,0.06);
  transform: translateY(-2px);
}
.banner-link-arrow { display: inline-block; transition: transform 0.3s; }
.banner-link:hover .banner-link-arrow { transform: translateX(4px); }

/* ── RIGHT IMAGE BOX ── */
.service-banner-image-box {
  width: 50%;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.sb-glow-ring {
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(80,209,255,0.09) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: sbGlowPulse 4s ease-in-out infinite;
  z-index: 0;
  transition: transform 0.15s ease-out;
}
.sb-ring-border {
  position: absolute;
  width: 450px; height: 450px;
  border-radius: 50%;
  border: 1px solid rgba(80,209,255,0.08);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: sbGlowPulse 4s 1s ease-in-out infinite;
  z-index: 0;
  transition: transform 0.2s ease-out;
}
@keyframes sbGlowPulse { 0%,100%{opacity:0.8} 50%{opacity:1} }

.main-img {
  width: auto;
  max-width: 100%;
  height: calc(100vh - 140px);
  max-height: 680px;
  object-fit: contain;
  object-position: bottom center;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.5));
  display: block;
}

/* ── FLOATING CARDS ── */
.sb-float-card {
  position: absolute;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 14px;
  padding: 14px 18px;
  z-index: 6;
  transition: transform 0.12s ease-out;
  box-shadow: 0 16px 50px rgba(0,0,0,0.2);
}
.sb-card-1 { top: 80px; left: -10px; min-width: 190px; }
.sb-card-2 { bottom: 0px; right: -10px; min-width: 170px; }

.sb-card-label { font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: #6b7494; margin-bottom: 5px; font-weight: 600; }
.sb-card-value { font-size: 22px; font-weight: 800; color: #1e274a; display: flex; align-items: center; gap: 6px; }
.sb-card-up { color: #7aa936; font-size: 11px; font-weight: 700; background: rgba(122,169,54,0.1); padding: 2px 7px; border-radius: 4px; }
.sb-card-bars { display: flex; gap: 3px; margin-top: 8px; }
.sb-bar { height: 4px; border-radius: 2px; background: rgba(48,60,104,0.1); flex: 1; }
.sb-bar.on { background: #50d1ff; }

.sb-avatars { display: flex; align-items: center; margin-top: 8px; }
.sb-avatar { width: 24px; height: 24px; border-radius: 50%; border: 2px solid #fff; margin-left: -6px; font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; color: #030812; }
.sb-avatar:first-child { margin-left: 0; }
.sb-avatar-more { margin-left: 8px; font-size: 11px; color: #6b7494; font-weight: 500; }

/* ── STATS ROW ── */
.sb-stats-row {
  position: relative; z-index: 2;
  display: flex;
  width: 88%; max-width: 1300px;
  margin: 0 auto;
  border-top: 1px solid rgba(80,209,255,0.1);
  padding: 24px 0;
  /* animation: sbFadeUp removed */
}
.sb-stat { flex: 1; padding: 0 28px; border-right: 1px solid rgba(80,209,255,0.08); }
.sb-stat:first-child { padding-left: 0; }
.sb-stat:last-child { border-right: none; }
.sb-stat-num { font-size: 32px; font-weight: 700; color: #ffffff; line-height: 1; margin-bottom: 4px; }
.sb-stat-num span { color: #50d1ff; }
.sb-stat-label { font-size: 13px; color: #8a93b2; }

/* ============================================
   SCROLL REVEAL — NAYA ADD KIYA
   (sbFadeUp animation hataya, yeh use hoga)
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Left content elements ek ke baad ek aayenge */
.sb-badge.reveal-left        { transition-delay: 0.05s; }
.service-banner-title.reveal-left { transition-delay: 0.15s; }
.service-banner-para.reveal-left  { transition-delay: 0.22s; }
.service-banner-text.reveal-left  { transition-delay: 0.29s; }
.banner-points.reveal-left        { transition-delay: 0.36s; }
.banner-buttons.reveal-left       { transition-delay: 0.43s; }

/* Right image aur stats */
.service-banner-image-box.reveal  { transition-delay: 0.2s; }
.sb-stats-row.reveal              { transition-delay: 0.5s; }

/* ============================================ */

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
  .service-banner-container { flex-direction: column; align-items: center; gap: 0; padding: 60px 0 20px; }
  .service-banner-content { width: 100%; padding: 0 0 30px; }
  .service-banner-image-box { width: 100%; height: 300px; order: -1; align-items: flex-end; }
  .sb-badge { margin: 0 auto 26px; }
  .service-banner-text { margin: 0 auto 28px; }
  .banner-buttons { justify-content: center; flex-wrap: wrap; }
  .main-img { height: 280px; }
  .sb-glow-ring { width: 260px; height: 260px; }
  .sb-ring-border { width: 290px; height: 290px; }
  .sb-card-1 { left: 0; top: 20px; }
  .sb-card-2 { right: 0; bottom: 20px; }
  .sb-stats-row { flex-wrap: wrap; }
  .sb-stat { flex: 1 1 50%; border-bottom: 1px solid rgba(80,209,255,0.08); padding: 14px 16px; }
  .sb-stat:nth-child(odd) { border-right: 1px solid rgba(80,209,255,0.08); }
  .sb-stat:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 576px) {
  .service-banner-title { font-size: 30px; }
  .service-banner-para { font-size: 22px; }
  .sb-stat-num { font-size: 24px; }
  .sb-float-card { display: none; }
  .main-img { height: 220px; }
}
/* expertise  */
/* ============================= */
/* EXPERTISE SECTION */
/* ============================= */
.expertise-section {
  padding: 150px 0 0; 
  background: var(--light);
  position: relative;
}

.expertise-container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: start;
  gap: 40px;
}

/* LEFT SIDE */
.expertise-left {
  display: flex;
  flex-direction: column;
}

.expertise-title {
  font-size: var(--fs-h1);
  font-weight: 900;
  line-height: 1.1;
  color: var(--secondary);
  margin-bottom: 30px;
}

.expertise-text {
  font-size: var(--fs-base);
  color: var(--dark);
  line-height: 1.6;
  max-width: 90%;
}

/* RIGHT SIDE */
.expertise-right {
  width: 100%;
  position: relative; /* Needed for ::after border */
}

.expertise-girl {
  width: 100%;
  display: block;
  z-index: 2;
  border-radius: 12px;
}

/* Full width border at bottom of image */
.expertise-right::after {
  content: "";
  position: absolute;
  bottom: 0; /* Bottom se touch */
  left: 0;
  width: 100%;
  height: 62px; /* Border thickness */
  background: var(--primary);
  z-index: 1;
  border-radius: 6px 6px 0 0;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */
@media (max-width: 992px) {
  .expertise-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .expertise-left {
    align-items: center;
  }

  .expertise-text {
    max-width: 100%;
    margin: 0 auto;
  }

  .expertise-girl {
    margin-top: 40px;
    width: 90%;
  }

  .expertise-right::after {
    height: 12px; /* Mobile border height */
  }
}

@media (max-width: 600px) {
  .expertise-title {
    font-size: 36px;
  }

  .expertise-girl {
    width: 100%;
  }
}

/* ===================== WHY CHOOSE SECTION ===================== */
.why-choose-section {
  padding: 140px 5% 100px;
  /* background: var(--gray-100); */
  background-image: url("images/why-choose.png");
}

.why-choose-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why-choose-left h2 {
  color: var(--secondary);
  margin-bottom: 24px;
}

.why-choose-left p {
  font-size: var(--fs-base);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 90%;
}

.why-choose-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.why-choose-card {
  background: var(--light);
  padding: 40px 36px;
  border-radius: 28px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(80, 209, 255, 0.12);
  transition: all 0.4s ease;
}

.why-choose-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(80, 209, 255, 0.15);
  border-color: var(--primary);
}

.why-choose-card h3 {
  font-size: var(--fs-h4);
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 16px;
}

.why-choose-card p {
  font-size: var(--fs-base);
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 992px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  .why-choose-left p {
    max-width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .why-choose-section {
    padding: 100px 5% 80px;
  }
  h2 {
    font-size: 42px;
  }
  .why-choose-card {
    padding: 32px 28px;
  }
  .why-choose-card h3 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  h2 {
    font-size: 36px;
  }
  .why-choose-card {
    padding: 28px 24px;
    border-radius: 20px;
  }
  .why-choose-card h3 {
    font-size: 22px;
  }
}

/* ============================================================= */
    /* TOP-NOTCH SECTION - EXACTLY LIKE YOUR IMAGE                 */
    /* ============================================================= */
    .top-notch-section {
      background: var(--dark);               /* Black background */
      color: var(--light);
      padding: 120px 0;
      position: relative;
      overflow: hidden;
    }

    .top-notch-wrapper {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 80px;
      flex-wrap: wrap;
    }

    .top-notch-content {
      flex: 1;
      min-width: 320px;
    }

    .top-notch-title {
      font-size: var(--fs-h2);
      font-weight: 900;
      margin-bottom: 60px;
      color: var(--light);
    }

    .top-notch-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .top-notch-list li {
      font-size: 24px;
      font-weight: 600;
      padding: 18px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
      transition: all 0.3s ease;
    }

    .top-notch-list li:last-child {
      border-bottom: none;
    }

    .top-notch-list li:hover {
      color: var(--primary);
      padding-left: 10px;
    }

    .top-notch-image {
      flex: 1;
      min-width: 320px;
      text-align: center;
    }

    .top-notch-image img {
      max-width: 100%;
      height: auto;
      border-radius: 12px;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .top-notch-wrapper {
        flex-direction: column;
        text-align: center;
      }
      .top-notch-title { font-size: 44px; }
      .top-notch-list li { font-size: 22px; }
    }

    @media (max-width: 576px) {
      .top-notch-title { font-size: 38px; margin-bottom: 40px; }
      .top-notch-list li { font-size: 20px; }
      .top-notch-section { padding: 80px 0; }
    }

    /* impact  */
    /* ====================== IMPACT SECTION ====================== */
 /* IMPACT SECTION */
.impact-section {
  background: linear-gradient(135deg, #1a0000 0%, #000000 70%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  color: var(--light);
}

/* Wrapper */
.impact-wrapper {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: auto;
}

/* Curved connections */
.impact-connection {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}
.impact-connection svg {
  width: 100%;
  height: 100%;
  stroke: #fff;
  stroke-width: 2;
  stroke-dasharray: 8 8;
  fill: none;
  opacity: 0.6;
}
.impact-connection svg path {
  animation: dash 5s linear infinite;
}
@keyframes dash {
  to { stroke-dashoffset: -16; }
}

/* Boxes */
.impact-box {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 32px;
  padding: 15px 40px;
  text-align: left;
  position: relative;
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 40px rgb(80 209 254 / 31%);
  transition: transform 0.3s;
}
.impact-box:hover {
  transform: translateY(-10px);
}

/* Step Positions (NEW UPDATED) */
.impact-box:nth-child(1) { margin-left: 0; }         /* LEFT BOTTOM */
.impact-box:nth-child(2) { margin-left: 32%; }       /* CENTER MIDDLE */
.impact-box:nth-child(3) { margin-left: 62%; }       /* RIGHT TOP */

/* Icons */
.impact-icon {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  background: #000;
  border-radius: 50%;
  padding: 15px;
  border: 4px solid var(--light);
}

/* Labels & Text */
.impact-label {
  font-size: 20px;
  font-weight: 600;
  opacity: 0.7;
  margin-bottom: 8px;
}
.impact-title {
  font-size: 48px;
  font-weight: normal;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.impact-desc {
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.9;
  flex-grow: 1;
}

/* Big Red Arrow Image */
.impact-arrow {
  position: absolute;
  bottom: -120px;
  right: -50px;
  /* width: 650px */
  height: auto;
  z-index: 0;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 1100px) {
  .impact-wrapper {
    flex-direction: column-reverse;
    gap: 80px;
    align-items: center;
  }
  .impact-box:nth-child(1),
  .impact-box:nth-child(2),
  .impact-box:nth-child(3) {
    margin-left: 0;
  }
  .impact-arrow {
    width: 350px;
    bottom: -60px;
    right: -30px;
  }
  .impact-connection {
    display: none;
  }
}/* strategy section css  */
.strategy-section {
    text-align: center;
    padding: 80px 0;
}

.strategy-title {
    color: var(--secondary);
    letter-spacing: 2px;
    font-size: var(--fs-h5);
    margin-bottom: 10px;
}

.strategy-heading {
    font-size: var(--fs-h2);
    color: var(--text-dark);
    margin-bottom: 60px;
}

/* 1 ROW 3 BOX FIX */
.strategy-row {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.strategy-box {
    width: 32%;
}

/* CIRCLE */
.strategy-circle {
    width: 160px;
    height: 160px;
    margin: 0 auto 25px;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 800;
    color: var(--secondary);
}

.strategy-circle::after {
    content: attr(data-number);
    position: relative;
    z-index: 2;
}

.strategy-circle::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    padding: 10px;
    background: conic-gradient(
        var(--primary) 0deg,
        var(--secondary) 120deg,
        var(--primary) 240deg,
        var(--secondary) 360deg
    );
    mask: 
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    animation: strategySpin 3s linear infinite;
}

@keyframes strategySpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* List styling */
.strategy-list {
    text-align: left;
    max-width: 260px;
    margin: 0 auto;
}

.strategy-list li {
    margin-bottom: 10px;
}


/* =========================================================
   📱 MOBILE RESPONSIVE CSS
   ========================================================= */
@media (max-width: 992px) {
    .strategy-row {
        gap: 20px;
    }

    .strategy-box {
        width: 48%;
    }

    .strategy-circle {
        width: 130px;
        height: 130px;
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .strategy-row {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .strategy-box {
        width: 100%;
        max-width: 400px;
    }

    .strategy-circle {
        width: 120px;
        height: 120px;
        font-size: 32px;
    }

    .strategy-heading {
        font-size: calc(var(--fs-h2) - 10px);
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .strategy-circle {
        width: 100px;
        height: 100px;
        font-size: 28px;
    }

    .strategy-title {
        font-size: calc(var(--fs-h5) - 2px);
    }
}


/* marketing solution  */
/* ============================================================= */
        /* MARKETING SOLUTIONS SECTION - LEFT PILLS + RIGHT CONTENT */
        /* ============================================================= */
        .marketing-section {
            padding: 130px 0;
            background: var(--primary);
        }
        .marketing-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: 100px;
            align-items: center;
        }

        /* LEFT: 5 Orange Pills */
        .marketing-pills {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
        .marketing-pill {
            display: flex;
            align-items: center;
            gap: 18px;
            background: var(--accent);
            color: white;
            padding: 18px 28px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 17px;
            transition: all 0.35s ease;
            box-shadow: 0 10px 30px rgba(251,146,60,0.28);
        }
        .marketing-pill:hover {
            background: var(--accent-hover);
            color: var(--accent);
            transform: translateX(12px);
            box-shadow: 0 15px 40px rgba(251,146,60,0.38);
        }
        .marketing-pill-check {
            width: 32px;
            height: 32px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .marketing-pill-check svg {
            width: 18px;
            height: 18px;
            fill: var(--accent);
        }

        /* RIGHT: Content */
        .marketing-content h2 {
            font-size: 52px;
            font-weight: 900;
            line-height: 1.15;
            color: var(--secondary);
            margin-bottom: 24px;
        }
        .marketing-content h2 span {
            color: var(--accent);
        }
        .marketing-content p {
            font-size: 17px;
            line-height: 1.8;
            color: #555;
            max-width: 540px;
        }
        .marketing-content strong {
            color: var(--secondary);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .marketing-container {
                grid-template-columns: 1fr;
                gap: 70px;
                text-align: center;
            }
            .marketing-pills {
                align-items: center;
            }
            .marketing-content h2 {
                font-size: 44px;
            }
        }
        @media (max-width: 640px) {
            .marketing-section { padding: 90px 0; }
            .marketing-container { padding: 0 20px; }
            .marketing-content h2 { font-size: 36px; }
            .marketing-pill {
                padding: 16px 22px;
                font-size: 16px;
            }
        }

        /* blog file css */
          /* ======================= BLOG WRAPPER ======================= */
        .blog-wrapper {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* ======================= TOP BAR ======================= */
        .blog-topbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 40px 0;
            border-bottom: 1px solid rgba(80, 209, 255, 0.15);
            flex-wrap: wrap;
            gap: 20px;
        }
        .blog-date {
            font-weight: 700;
            color: var(--primary);
            font-size: 16px;
            letter-spacing: 1px;
        }
        .blog-tagline {
            font-size: 22px;
            font-weight: 800;
            color: var(--secondary);
            background: linear-gradient(120deg, var(--secondary), var(--primary));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .blog-home-link {
            background: var(--primary);
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 15px;
            transition: var(--transition);
            box-shadow: 0 8px 25px rgba(80, 209, 255, 0.4);
        }
        .blog-home-link:hover {
            background: var(--secondary);
            transform: translateY(-4px);
            box-shadow: 0 15px 35px rgba(48, 60, 104, 0.4);
        }

        /* ======================= MAIN LAYOUT ======================= */
        .blog-container {
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 80px;
            margin: 90px 0;
            align-items: start;
        }

        /* ======================= LEFT: 2 PREMIUM CARDS ======================= */
        .blog-main-articles {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .blog-article-card {
            background: var(--card-bg);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            transition: var(--transition);
            position: relative;
            backdrop-filter: blur(10px);
        }

        .blog-article-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(135deg, rgba(80,209,255,0.08), transparent 50%);
            opacity: 0;
            transition: var(--transition);
            pointer-events: none;
            border-radius: var(--radius);
        }

        .blog-article-card:hover {
            transform: translateY(-20px) scale(1.02);
            box-shadow: 0 30px 70px rgba(80, 209, 255, 0.3);
            border-color: var(--primary);
        }

        .blog-article-card:hover::before {
            opacity: 1;
        }

        .blog-article-img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: var(--transition);
            position: relative;
            z-index: 1;
        }

        .blog-article-card:hover .blog-article-img {
            transform: scale(1.12);
        }

        .blog-article-content {
            padding: 32px;
            position: relative;
            z-index: 2;
            background: white;
        }

        .blog-article-title {
            font-size: 1.55rem;
            font-weight: 800;
            line-height: 1.35;
            margin-bottom: 14px;
            color: var(--secondary);
            transition: color 0.4s ease;
        }

        .blog-article-card:hover .blog-article-title {
            color: var(--primary);
        }

        .blog-article-date {
            font-size: 0.98rem;
            color: var(--primary);
            font-weight: 700;
            margin-bottom: 16px;
            display: block;
            letter-spacing: 0.5px;
        }

        .blog-article-excerpt {
            font-size: 1.05rem;
            color: #555;
            line-height: 1.75;
            opacity: 0.9;
        }

        /* ======================= RIGHT: ULTRA MODERN TRENDING ======================= */
        .blog-sidebar {
            position: sticky;
            top: 30px;
        }

        .blog-sidebar-title {
            font-size: 2.6rem;
            font-weight: 900;
            color: var(--secondary);
            margin-bottom: 40px;
            position: relative;
            background: linear-gradient(120deg, var(--secondary), var(--primary));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .blog-sidebar-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -12px;
            width: 80px;
            height: 6px;
            background: var(--primary);
            border-radius: 3px;
            box-shadow: 0 10px 20px rgba(80,209,255,0.5);
        }

        .blog-trending-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .blog-trending-item {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 22px;
            background: white;
            border-radius: 20px;
            transition: var(--transition);
            border: 1px solid rgba(80,209,255,0.15);
            position: relative;
            overflow: hidden;
        }

        .blog-trending-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 5px;
            background: var(--primary);
            transform: scaleY(0);
            transition: var(--transition);
        }

        .blog-trending-item:hover {
            transform: translateX(12px);
            box-shadow: 0 20px 40px rgba(80,209,255,0.25);
            border-color: var(--primary);
        }

        .blog-trending-item:hover::before {
            transform: scaleY(1);
        }

        .blog-trending-rank {
            font-size: 3.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary), #3099ff);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            opacity: 0.9;
            min-width: 70px;
            text-align: center;
        }

        .blog-trending-img {
            width: 85px;
            height: 85px;
            border-radius: 18px;
            object-fit: cover;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            transition: var(--transition);
        }

        .blog-trending-item:hover .blog-trending-img {
            transform: scale(1.1) rotate(3deg);
        }

        .blog-trending-title {
            font-size: 1.12rem;
            font-weight: 700;
            line-height: 1.5;
            color: var(--secondary);
        }

        /* ======================= RESPONSIVE ======================= */
        @media (max-width: 1100px) {
            .blog-container {
                grid-template-columns: 1fr;
                gap: 70px;
            }
            .blog-main-articles {
                grid-template-columns: 1fr;
            }
            .blog-sidebar { display: none;}
        }

        @media (max-width: 768px) {
            .blog-wrapper { padding: 0 20px; }
            .blog-topbar { flex-direction: column; text-align: center; }
            .blog-article-img { height: 250px; }
            .blog-article-content { padding: 26px; }
            .blog-sidebar-title { font-size: 2.2rem; text-align: center; }
            .blog-sidebar-title::after { left: 50%; transform: translateX(-50%); }
        }

        @media (max-width: 480px) {
            .blog-article-title { font-size: 1.4rem; }
            .blog-trending-item { padding: 18px; }
            .blog-trending-rank { font-size: 2.8rem; }
        }
/* ===================== CUSTOM SERVICE SECTION ===================== */
.custom-service-section {
  background: #ffffff;
  /* padding-top: 20px; */
  padding-bottom: 50px;
  color: var(--text-dark);
}

/* TITLE AREA */
.custom-service-title-wrapper {
  text-align: left;
  /* max-width: 900px; */
  margin-bottom: 40px;
}

.custom-service-title {
  font-size: var(--fs-h2);
  /* font-weight: 900; */
  color: var(--text-dark);
}

.custom-service-subtitle {
  /* font-size: var(--fs-lg); */
  color: #555;
  margin-top: 10px;
}

/* SERVICE GRID */
.custom-service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

/* CARD */
.custom-service-card {
  border: 1px solid #e5e5e5;
  padding: 35px;
  border-radius: 14px;
  background: #fafafa;
  transition: 0.35s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

/* Attractive Card Hover Animation */
.custom-service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0,0,0,0.10);
  border-color: var(--primary);
  background: #ffffff;
}

/* Hover Shine Animation */
.custom-service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transition: 0.6s;
}

.custom-service-card:hover::after {
  left: 120%;
}

/* ICON */
.custom-service-icon i {
  font-size: 45px;
  color: var(--primary);
  margin-bottom: 15px;
  transition: 0.3s;
}

.custom-service-card:hover .custom-service-icon i {
  transform: scale(1.15);
}

/* TEXT */
.custom-service-heading {
  font-size: var(--fs-h4);
  font-weight: normal;
  color: var(--secondary);
}

.custom-service-text {
  color: #444;
  font-size: var(--fs-base);
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .custom-service-grid {
    grid-template-columns: 1fr;
  }

  .custom-service-title-wrapper {
    text-align: center;
  }
}

/* <!-- ===================== CHOOSE COHERENT LAB ===================== --> */

/* ===================== MAIN SECTION ===================== */
    .coherent-why-section {
      padding: 50px 0;
      background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
      color: white;
      /* font-family: 'Segoe UI', system-ui, sans-serif; */
    }

    /* Heading */
    .coherent-heading {
      margin-bottom: 20px;
    }
    .coherent-heading h2 {
      /* font-size: 3.8rem; */
      font-weight: normal;
      line-height: 1.2;
    }
    .coherent-heading .gradient-text {
      background: linear-gradient(90deg, #50d1ff, #a8f3ff);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .coherent-heading p {
      /* font-size: 1.35rem; */
      color: #94a3b8;
      margin-top: 16px;
      line-height: 1.6;
    }

    /* Tabs Container with Top & Bottom Glow Line */
    .coherent-tabs-container {
      margin-bottom: 90px;
      position: relative;
    }
    .coherent-tabs-wrapper {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
      padding: 30px 0;
      position: relative;
    }
    .coherent-tabs-wrapper::before,
    .coherent-tabs-wrapper::after {
      content: '';
      position: absolute;
      left: 10%;
      right: 10%;
      height: 2px;
      background: linear-gradient(90deg, transparent, #50d1ff, transparent);
      box-shadow: 0 0 20px #50d1ff;
      opacity: 0.5;
    }
    .coherent-tabs-wrapper::before { top: 0; }
    .coherent-tabs-wrapper::after { bottom: 0; }

    /* Tabs */
    .coherent-tab {
      padding: 16px 34px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(80, 209, 255, 0.3);
      border-radius: 50px;
      color: #cbd5e1;
      font-weight: normal;
      /* font-size: 1.05rem; */
      cursor: pointer;
      transition: all 0.4s ease;
      backdrop-filter: blur(10px);
    }
    .coherent-tab:hover {
      background: rgba(80, 209, 255, 0.18);
      border-color: #50d1ff;
      transform: translateY(-4px);
    }
    .coherent-tab.active {
      background: linear-gradient(90deg, #50d1ff, #3099ff);
      color: white;
      border-color: transparent;
      box-shadow: 0 12px 40px rgba(80, 209, 255, 0.5);
      transform: translateY(-8px);
    }

    /* Content + Image Row */
    .coherent-content-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      align-items: center;
    }

    /* Content Slider */
    .coherent-content-slider {
      position: relative;
      min-height: 340px;
    }
    .coherent-slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      opacity: 0;
      transform: translateX(-60px);
      transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .coherent-slide.active {
      opacity: 1;
      transform: translateX(0);
    }
    .coherent-slide h3 {
      /* font-size: 2.4rem; */
      margin-bottom: 20px;
      color: #50d1ff;
      font-weight: normal;
    }
    .coherent-slide p {
      /* font-size: 1.2rem; */
      line-height: 1.85;
      color: #e2e8f0;
      margin-bottom: 32px;
    }
    .coherent-stat {
      display: inline-block;
      padding: 14px 30px;
      background: rgba(80, 209, 255, 0.15);
      border: 1px solid rgba(80, 209, 255, 0.4);
      border-radius: 50px;
      color: #50d1ff;
      font-weight: normal;
      /* font-size: 1.05rem; */
    }

    /* Image Slider */
    .coherent-image-slider {
      position: relative;
      height: 480px;
      border-radius: 32px;
      overflow: hidden;
      /* box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7); */
    }
    .coherent-image-slider img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transform: translateX(60px);
      transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
      border-radius: 32px;
    }
    .coherent-image-slider img.active {
      opacity: 1;
      transform: translateX(0);
    }

    /* Responsive */
    @media (max-width: 992px) {
      .coherent-content-row {
        grid-template-columns: 1fr;
        gap: 80px;
      }
      .coherent-image-slider {
        height: 420px;
      }
      .coherent-heading h2 { font-size: 3rem; }
      .coherent-tabs-wrapper { gap: 14px; padding: 20px 0; }
      .coherent-tab { padding: 14px 24px; font-size: 1rem; }
    }

    @media (max-width: 600px) {
      .container { padding: 0 20px; }
      .coherent-why-section { padding: 100px 0; }
      .coherent-heading { margin-bottom: 60px; }
      .coherent-heading h2 { font-size: 2.6rem; }
    }

   /* .brand-identity-section { */
/* Main Section */
.brand-identity-section {
  background: var(--light);
  padding:80px 0;
  color: var(--text-dark);
  border-radius: 12px;
}

.brand-identity-container {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.brand-image-wrapper {
  flex: 0 0 30%;
}

.brand-image-wrapper img {
  width: 100%;
  border-radius: 16px;
  transition: transform 0.4s ease;
}

.brand-image-wrapper img:hover {
  transform: scale(1.05);
}

.brand-content-wrapper {
  flex: 1 1 70%;
}

.brand-title {
  font-size: var(--fs-h3);
  font-weight: 900;
  margin-bottom: 25px;
}

.brand-description {
  font-size: var(--fs-base);
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* LEFT EMOJI BULLET LIST (NO DOTS) */
.emoji-left-list {
  list-style: none;        /* remove default dots */
  padding-left: 0;
  margin-left: 0;
}

.emoji-left-list li {
  position: relative;
  padding-left: 30px;      /* space for emoji */
  margin-bottom: 12px;
  font-size: var(--fs-base);
  line-height: 1.7;
}

.emoji-left-list li::before {
  content: "✔️";            /* left-side emoji */
  position: absolute;
  left: 0;
  top: 0;
  font-size: 20px;
}

/* Responsive */
@media (max-width: 900px) {
  .brand-identity-container {
    flex-direction: column;
    text-align: center;
  }

  .brand-image-wrapper {
    width: 90%;
    margin-bottom: 30px;
  }

  .emoji-left-list li {
    padding-left: 35px; /* more space on mobile */
    text-align: left;
  }
}

/* ===================== QUIET SECTION ===================== */

.quiet-section {
  background: var(--primary);
  padding: 20px 0;
}

.quiet-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.quiet-left {
  flex: 1;
}

.quiet-title {
  font-size: var(--fs-h4);
  font-weight: 900;
  color: var(--secondary);
  margin-bottom: 15px;
}

.quiet-right {
  flex-shrink: 0;
}

.quiet-btn {
  background: var(--light);
  color: var(--darl);
  padding: 16px 38px;
  font-size: var(--fs-base);
  font-weight: 700;
  border-radius:50px;
  display: inline-block;
  transition: var(--transition);
  box-shadow: 0 6px 16px rgba(80, 209, 255, 0.3);
}

.quiet-btn:hover {
  background: var(--secondary);
  color: var(--light);
  box-shadow: 0 10px 26px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .quiet-container {
    flex-direction: column;
    text-align: center;
  }

  .quiet-right {
    margin-top: 20px;
  }
}


/* work process */
/* ===================== Work Process Section ===================== */
.work-process-section {
  padding: 80px 5%;
  background: var(--gray-100);
  text-align: center;
}

.work-process-title {
  font-size: var(--fs-h2);
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.gradient-text {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 3.1rem;
}

.work-process-subtitle {
  font-size: var(--fs-base);
  color: #555;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.work-process-image-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.work-process-image {
  width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  .work-process-title {
    font-size: var(--fs-h3);
  }

  .work-process-subtitle {
    font-size: var(--fs-sm);
    padding: 0 10px;
  }
}

/* ================= BRAND BENEFITS SECTION ================= */
.brand-benefit-section {  padding: 80px 5%;  background-color: #f5f8ff; }

.brand-benefit-title {
  font-size: var(--fs-h2);  font-weight: normal;  margin-bottom:20px; 
}
/* GRID LAYOUT */
.brand-benefit-grid {  display: flex;  align-items: center;  justify-content: space-between;  gap: 40px;  flex-wrap: wrap;
}

/* LEFT & RIGHT CONTENT */
.brand-benefit-left,
.brand-benefit-right {  flex: 1 1 30%;  display: flex;  flex-direction: column;  gap: 30px;}

/* CENTER IMAGE */
.brand-benefit-center {  flex: 1 1 30%;  display: flex;  justify-content: center;  align-items: center;  margin: 40px 0;}

.brand-benefit-image {  max-width: 100%;  border-radius: 16px;  transition: transform 0.4s ease;}

.brand-benefit-image:hover {
  transform: scale(1.05);
}
/* INDIVIDUAL BENEFIT BOX */
.brand-benefit-item {  background: #ffffff;  border-radius: 12px;  padding: 20px 25px;  box-shadow: 0 8px 20px rgba(0,0,0,0.05);  transition: all 0.3s ease;}

.brand-benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}
.brand-benefit-item-title {  font-size: var(--fs-h4);  font-weight: normal;  color: var(--secondary);  margin-bottom: 10px;}

.brand-benefit-item-text {  font-size: var(--fs-base);  line-height: 1.6;  color: #555;}
/* RESPONSIVE */
@media (max-width: 1200px) {  .brand-benefit-grid {    flex-direction: column;    text-align: center;  }
  .brand-benefit-left,
  .brand-benefit-right,  .brand-benefit-center {    flex: unset;    width: 100%;  }  .brand-benefit-left,  .brand-benefit-right {    margin-bottom: 30px;  }}

  /* brand other suit section */

  /* ========================================================= */
/* OTHER SUITE DESIGNING SECTION */
/* ========================================================= */

.other-suite-section {
  padding: 80px 0;
}

.other-suite-heading {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}

.other-suite-heading h3 {
  color: var(--secondary);
}

.other-suite-heading p {
  margin-top: 15px;
  color: var(--text-muted);
  /* font-size: var(--fs-lg); */
}

/* GRID LAYOUT */
.other-suite-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* gap: 30px; */
}

/* CARD BOX */
.other-suite-card {
  position: relative;
  overflow: hidden;
  /* border-radius: 18px; */
  cursor: pointer;
}

.other-suite-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

/* HOVER AREA */
.other-suite-hover {
  position: absolute;
  left: 0;
  bottom: -100%;
  width: 100%;
  padding: 30px;
  text-align: left;
  background: rgba(48, 60, 104, 0.92); /* Navy shade */
  color: var(--light);
  transition: var(--transition);
}

.other-suite-hover h4 {
  font-size: 22px;
  margin-bottom: 8px;
}

.other-suite-hover p {
  font-size: var(--fs-sm);
}

/* HOVER EFFECT */
.other-suite-card:hover img {
  transform: scale(1.12);
  filter: brightness(0.7);
}

.other-suite-card:hover .other-suite-hover {
  bottom: 0;
}

/* RESPONSIVE */
@media(max-width:1200px){
  .other-suite-grid {
    grid-template-columns: repeat(2,1fr);
  }
}
@media(max-width:600px){
  .other-suite-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================================= */
/* INDUSTRIES SECTION - USING YOUR ROOT VARIABLES ONLY */
/* ============================================================= */

 .industries-section {
    --ink: #14233A;
    --ink-dim: #5C6B80;
    --paper: #FAF8F4;
    --card: #FFFFFF;
    --line: #E6E1D6;
    --gold: #50d1ff;
    --gold-soft: rgba(201, 133, 31, 0.1);

    background: var(--paper);
     padding: 0px 0px 100px 0px;
    font-family: 'Space Grotesk', system-ui, sans-serif;
    color: var(--ink);
  }

  .industries-section .industries-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 48px);
  }

  /* ---------- heading ---------- */
  .industries-section .heading {
    text-align: left;
  }


  .industries-section .heading-line {
    display: flex;
    gap: 10px;
    margin: 10px 0px;
  }

  .industries-section .short-line {
    display: block;
    width: 34px;
    height: 3px;
    border-radius: 2px;
    background: var(--gold);
  }

  .industries-section .long-line {
    display: block;
    width: 88px;
    height: 1px;
    background: var(--line);
  }

  /* ---------- grid ---------- */
  .industries-section .home_list_serve {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin: 0;
    padding: 0;
  }

  /* ---------- card ---------- */
  .industries-section .info-box--standard {
    position: relative;
    overflow: hidden;
    background: var(--card);
    border: 1px solid #c5c5c5;
    border-radius: 16px;
    padding: 20px 20px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  }

  .industries-section .info-box--standard.in-view {
    opacity: 1;
    transform: translateY(0);
  }

  .industries-section .info-box--standard::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
  }

  .industries-section .info-box--standard:hover::before { transform: scaleX(1); }

  .industries-section .info-box--standard:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px -28px rgba(20, 35, 58, 0.22);
    border-color: #c5c5c5;
  }

  .industries-section .info-box--standard:nth-child(4n+1) { transition-delay: 0ms; }
  .industries-section .info-box--standard:nth-child(4n+2) { transition-delay: 80ms; }
  .industries-section .info-box--standard:nth-child(4n+3) { transition-delay: 160ms; }
  .industries-section .info-box--standard:nth-child(4n+4) { transition-delay: 240ms; }

  .industries-section .info-box-image {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: var(--gold-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.3rem;
    transition: background 0.3s ease;
  }

  .industries-section .info-box--standard:hover .info-box-image { background: rgba(201, 133, 31, 0.16); }

  .industries-section .info-box-image img {
    width: 40px;
    height: 40px;
    object-fit: contain;
  }

  @media (prefers-reduced-motion: reduce) {
    .industries-section .info-box--standard {
      transition: none !important;
      opacity: 1 !important;
      transform: none !important;
    }
    .industries-section .info-box--standard:hover {
      transform: none !important;
    }
  }


/* benifit of dynamic website  */
/* ================= Novel Let’s work on your website with great ideas Page  ================= */
.work-ideas {
    --ink: #14233A;
    --ink-dim: #5C6B80;
    --paper: #FAF8F4;
    --gold: #50d1ff;
    --line: #E6E1D6;
  background-color: var(--paper);
    padding: 50px;
    font-family: 'Space Grotesk', system-ui, sans-serif;
  }



  .work-ideas .heading.align-center {
    text-align: center;
   /*  max-width: 680px; */
    margin: 0 auto clamp(48px, 6vw, 64px);
  }

  /* .work-ideas .heading-title {
    font-size: clamp(1.9rem, 3.4vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin: 0;
  } */

  .work-ideas .heading-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 18px 0;
  }

  .work-ideas .short-line { display: block; width: 34px; height: 3px; border-radius: 2px; background: var(--gold); }
  .work-ideas .long-line { display: block; width: 88px; height: 1px; background: var(--line); }


  .work-ideas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 64px);
    align-items: center;
  }

  .work-ideas-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 48px -28px rgba(20, 35, 58, 0.2);
  }

  .work-ideas-image::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: var(--gold);
    z-index: 1;
  }

  .work-ideas-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
/* benifit of dynamic website  */
/* ================= SPLIT FEATURE SECTION ================= */

/* ================= APP DEVELOPMENT SECTION ================= */
.app-dev-section {
  padding: 50px 0;
  background: var(--light);
  text-align: left;
}

.app-dev-head h3 {
  font-size: var(--fs-h3);
  color: var(--secondary);
  margin: 0 auto 20px;
}
.app-dev-head h3 span {
  color: var(--primary);
}
.app-dev-head p {
  margin: 0 auto 15px;
  font-size: var(--fs-base);
  color: #5a5e65;
}

.app-dev-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

.app-dev-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 16px;
  border: 1px solid #e6e9f5;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: var(--transition);
  cursor: pointer;
}
.app-dev-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 12px 28px rgba(0,0,0,0.10);
}

.app-dev-icon {
  width: 100%;
  height: 110px;
  object-fit: contain;
  margin-bottom: 15px;
}

.app-dev-title {
  font-size: var(--fs-h6);
  font-weight: normal;
  color: var(--secondary);
  line-height: 1.4;
  text-align: center;
}

/* ============================================
   SCROLL REVEAL — NAYA ADD KIYA
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Cards ek ke baad ek aayenge */
.app-dev-card.reveal:nth-child(1) { transition-delay: 0.1s; }
.app-dev-card.reveal:nth-child(2) { transition-delay: 0.25s; }
.app-dev-card.reveal:nth-child(3) { transition-delay: 0.4s; }
.app-dev-card.reveal:nth-child(4) { transition-delay: 0.55s; }

/* ============================================ */

@media (max-width: 1200px) { .app-dev-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px)  { .app-dev-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .app-dev-grid { grid-template-columns: 1fr; } }

/* tech-wraper  */
/* MAIN SECTION */
.tech-salesforce-section {
  padding: 30px 0;
  /* background: #f2f6ff;  */
}

/* FULL BOX WRAPPER */
.tech-salesforce-box {
  max-width: 1350px;
  margin: auto;
  background: #fff;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  border-radius: 18px;
  /* box-shadow: 0 20px 40px rgba(0,0,0,0.1); */
  box-shadow: 0 20px 40px rgb(3 45 96 / 28%);
  overflow: hidden;
}

/* LEFT CONTENT */
.tech-salesforce-content {
  padding: 50px 45px;
  background: #fff;
}

.tech-title {
  font-size: 28px;
  font-weight: normal;
  color: #032d60; /* Salesforce deep blue */
  margin-bottom: 20px;
}

.tech-subtext {
  font-size: 16px;
  color: #4a4a4a;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* POINT LIST */
.tech-points {
  list-style: none;
  padding-left: 0;
}

.tech-points li {
  font-size: 18px;
  margin-bottom: 14px;
  padding-left: 40px;
  position: relative;
  color: #333;
  line-height: 1.6;
}

.tech-points li::before {
  content: "✔";
  position: absolute; 
  left: 0;
  top: 0;
  font-size: 20px;
  color: #0c7df1; /* Salesforce Blue */
  font-weight: 900;
}

/* RIGHT IMAGE */
.tech-salesforce-image {
  width: 100%;
  height: 100%;
}

.tech-salesforce-image img {
  width: 100%;
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .tech-salesforce-box {
    grid-template-columns: 1fr;
  }

  .tech-salesforce-image {
    height: 280px;
  }
}

/* shoify service  */
/* SECTION WRAPPER */
.shopify-service-section {
  padding: 0px 0;
}

/* GRID */
.shopify-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

/* EACH BOX */
.shopify-service-card {
  padding: 60px 40px;
  text-align: center;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

/* BACKGROUNDS LIKE IMAGE */
.shopify-bg-green {
  background: var(--secondary);;  
}

.shopify-bg-dark {
  background: #2b2627; /* Dark brown/black */
}

/* TITLE */
.shopify-service-title {
  font-size: var(--fs-h4);
  font-weight: 700;
  margin-bottom: 18px;
}

/* TEXT */
.shopify-service-text {
  font-size: var(--fs-base);
  line-height: 1.6;
  opacity: 0.9;
}

/* LEARN MORE SLIDE UP */
.shopify-service-learn {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  padding: 15px 0;
  font-size: 16px;
  font-weight: 600;
  color: #0f5e07;
  background: var(--light);
  transition: var(--transition);
}

/* HOVER EFFECT */
.shopify-service-card:hover .shopify-service-learn {
  bottom: 0;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .shopify-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .shopify-service-grid {
    grid-template-columns: 1fr;
  }
}



/* FULL SECTION */
.dual-section {
  width: 100%;
}

/* CONTAINER */
.dual-wrapper {
  display: flex;
  width: 100%;
  min-height: 450px;
}

/* LEFT SIDE (UI/UX Development Service without animation) */
.dual-left {
  width: 50%;
  background: var(--secondary);  /* Greenish background for the left side */
  padding: 80px 60px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dual-left .heading-text {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 25px;
}

.dual-left .description {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 25px;
  font-weight: 300;
}

/* Right Side (Text Animation on the Right) */
.dual-right {
  width: 50%;
  background: var(--primary);  /* Bright Blue Background */
  display: flex;
  /* justify-content: center; */
  /* align-items: center; */
  /* text-align: center; */
  padding: 40px;
  position: relative;
}

/* Dropping Texts Animation */
.dropping-texts {
    /* display: inline-block; */
    /* width: 200px; */
    text-align: left;
    /* height: 50px; */
    /* vertical-align: -2px; */
    /* position: absolute; */
    /* right: 10%; */
    font-size: 50px;
        /* font-family: math; */
}

.dropping-texts > div {
  font-size: 0px;
  opacity: 0;
  margin-left: -30px;
  position: absolute;
  font-weight: 300;
}

.dropping-texts > div:nth-child(1) {
  animation: roll 5s linear infinite 0s;
}
.dropping-texts > div:nth-child(2) {
  animation: roll 5s linear infinite 1s;
}
.dropping-texts > div:nth-child(3) {
  animation: roll 5s linear infinite 2s;
}
.dropping-texts > div:nth-child(4) {
  animation: roll2 5s linear infinite 3s;
}

/* 3D Animation for the Heading */
/* @keyframes rotateText {
  0% {
    transform: rotateY(0deg);
  }
  25% {
    transform: rotateY(90deg);
  }
  50% {
    transform: rotateY(180deg);
  }
  75% {
    transform: rotateY(270deg);
  }
  100% {
    transform: rotateY(360deg);
  }
} */

/* Dropping Texts Animations */
@keyframes roll {
  0% {
    font-size: 0px;
    opacity: 0;
    margin-left: -30px;
    margin-top: 0px;
    transform: rotate(-25deg);
  }
  3% {
    opacity: 1;
    transform: rotate(0deg);
  }
  5% {
    font-size: inherit;
    opacity: 1;
    margin-left: 0px;
    margin-top: 0px;
  }
  20% {
    font-size: inherit;
    opacity: 1;
    margin-left: 0px;
    margin-top: 0px;
    transform: rotate(0deg);
  }
  27% {
    font-size: 0px;
    opacity: 0.5;
    margin-left: 20px;
    margin-top: 100px;
  }
  100% {
    font-size: 0px;
    opacity: 0;
    margin-left: -30px;
    margin-top: 0px;
    transform: rotate(15deg);
  }
}

@keyframes roll2 {
  0% {
    font-size: 0px;
    opacity: 0;
    margin-left: -30px;
    margin-top: 0px;
    transform: rotate(-25deg);
  }
  3% {
    opacity: 1;
    transform: rotate(0deg);
  }
  5% {
    font-size: inherit;
    opacity: 1;
    margin-left: 0px;
    margin-top: 0px;
  }
  30% {
    font-size: inherit;
    opacity: 1;
    margin-left: 0px;
    margin-top: 0px;
    transform: rotate(0deg);
  }
  37% {
    font-size: 1500px;
    opacity: 0;
    margin-left: -1000px;
    margin-top: -800px;
  }
  100% {
    font-size: 0px;
    opacity: 0;
    margin-left: -30px;
    margin-top: 0px;
    transform: rotate(15deg);
  }
}

/* Background Color Animation */
@keyframes bg {
  0% {
    background: #ff0075;
  }
  3% {
    background: #0094ff;
  }
  20% {
    background: #0094ff;
  }
  23% {
    background: #b200ff;
  }
  40% {
    background: #b200ff;
  }
  43% {
    background: #8BC34A;
  }
  60% {
    background: #8BC34A;
  }
  63% {
    background: #F44336;
  }
  80% {
    background: #F44336;
  }
  83% {
    background: #F44336;
  }
  100% {
    background: #F44336;
  }
}

@media (max-width: 1024px) {
  .dual-wrapper {
    flex-direction: column-reverse;
  }

  .dual-left, .dual-right {
    width: 100%;
  }

  .dual-left {
    text-align: center;
    padding: 60px 30px;
  }

  .dual-right {
    padding: 30px;
    text-align: center;
  }
}
/* DESIGN TIPS SECTION */
.struggle-section {
  background: #060810;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.struggle-section::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(80,209,255,0.07) 0%, transparent 65%);
  top: -100px; left: -100px;
  pointer-events: none;
}
.struggle-section::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122,169,54,0.06) 0%, transparent 65%);
  bottom: -80px; right: -80px;
  pointer-events: none;
}

.struggle-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(80,209,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80,209,255,0.03) 1px, transparent 1px);
  background-size: 55px 55px;
  pointer-events: none;
}

.struggle-container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── HEADER ── */
.struggle-header {
  text-align: center;
  margin-bottom: 60px;
  /* animation: stFadeUp removed — scroll reveal use ho raha hai */
}
.struggle-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(80,209,255,0.08);
  border: 1px solid rgba(80,209,255,0.22);
  color: #50d1ff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.struggle-tag-dot {
  width: 5px; height: 5px;
  background: #50d1ff;
  border-radius: 50%;
  animation: stPulse 2s ease-in-out infinite;
}
@keyframes stPulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

.struggle-header h2 {
  font-size: clamp(26px, 3.5vw, 46px);
  color: #fff;
  line-height: 1.12;
  margin-bottom: 14px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.struggle-header h2 span { color: #50d1ff; }
.struggle-header p {
  font-size: 16px;
  color: #8a93b2;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── TWO COLUMN GRID ── */
.struggle-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 50px;
}

/* ── EACH COLUMN CARD ── */
.struggle-col {
  border-radius: 20px;
  padding: 36px 36px;
  /* animation: stFadeUp removed — scroll reveal use ho raha hai */
}

.struggle-col.problems {
  background: rgba(80,209,255,0.04);
  border: 1px solid rgba(80,209,255,0.12);
}
.struggle-col.solutions {
  background: rgba(80,209,255,0.04);
  border: 1px solid rgba(80,209,255,0.12);
}

.struggle-col-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.struggle-col-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.problems .struggle-col-icon {
  background: rgba(80,209,255,0.1);
  border: 1px solid rgba(80,209,255,0.25);
}
.solutions .struggle-col-icon {
  background: rgba(80,209,255,0.1);
  border: 1px solid rgba(80,209,255,0.25);
}
.struggle-col-head h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.struggle-col-head p {
  font-size: 12px;
  color: #8a93b2;
  margin-top: 3px;
}

.struggle-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.struggle-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #c0cce8;
  line-height: 1.55;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: all 0.25s ease;
}
.struggle-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.struggle-list li:hover { color: #fff; }

.st-bullet {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 11px;
  margin-top: 1px;
}
.problems .st-bullet {
  background: rgba(80,209,255,0.1);
  border: 1px solid rgba(80,209,255,0.3);
  color: #50d1ff;
}
.solutions .st-bullet {
  background: rgba(80,209,255,0.1);
  border: 1px solid rgba(80,209,255,0.3);
  color: #50d1ff;
}

/* ── CTA ROW ── */
.struggle-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  /* animation: stFadeUp removed — scroll reveal use ho raha hai */
}
.struggle-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #50d1ff;
  color: #030812;
  padding: 15px 34px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.struggle-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(80,209,255,0.35);
}
.struggle-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  padding: 15px 34px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.3s ease;
}
.struggle-btn-secondary:hover {
  border-color: rgba(80,209,255,0.4);
  color: #50d1ff;
  transform: translateY(-2px);
}

/* ============================================
   SCROLL REVEAL — NAYA ADD KIYA
   (stFadeUp animation hataya, yeh use hoga)
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* Dono columns ek ke baad ek aayenge */
.struggle-col.reveal:nth-child(1) { transition-delay: 0.1s; }
.struggle-col.reveal:nth-child(2) { transition-delay: 0.25s; }

/* ============================================ */

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .struggle-cols { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 576px) {
  .struggle-col { padding: 24px 20px; }
  .struggle-header h2 { font-size: 26px; }
  .struggle-cta-row { flex-direction: column; }
  .struggle-btn-primary,
  .struggle-btn-secondary { width: 100%; justify-content: center; }
}
/*  partners section */
.partner-section {
  background: #ffffff;
  padding: 0px 0px 30px;
  position: relative;
  overflow: hidden;
}

.partner-section::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: transparent;
  top: -100px; right: -100px;
  pointer-events: none;
}
.partner-section::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: transparent;
  bottom: -80px; left: -80px;
  pointer-events: none;
}

.partner-grid-bg {
  position: absolute; inset: 0;
  pointer-events: none;
}

.partner-container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── HEADER ── */
.partner-header {
  text-align: center;
  margin-bottom: 64px;
  /* animation: ptFadeUp removed — scroll reveal use ho raha hai */
}

.partner-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(80,209,255,0.08);
  border: 1px solid rgba(80,209,255,0.22);
  color: #50d1ff;
  font-size: 11px;
  font-weight: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.partner-tag-dot {
  width: 5px; height: 5px;
  background: #50d1ff;
  border-radius: 50%;
  animation: ptPulse 2s ease-in-out infinite;
}
@keyframes ptPulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

.partner-header h2 {
  /* font-size: clamp(28px, 3.5vw, 46px); */
  color: #1e274a;
  line-height: 1.12;
  margin-bottom: 14px;
}
.partner-header h2 span { color: #50d1ff; }
.partner-header p {
  /* font-size: 16px; */
  color: #6b7494;
  /* font-weight: 300; */
  max-width: 560px;
  margin: 0 auto;
  /* line-height: 1.7; */
}

/* ── STEPS GRID ── */
.partner-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  margin-bottom: 60px;
}

.partner-steps::before {
  content: '';
  position: absolute;
  top: 52px;
  left: calc(16.66% + 14px);
  right: calc(16.66% + 14px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(80,209,255,0.3), rgba(80,209,255,0.3), transparent);
  z-index: 0;
}

/* ── STEP CARD ── */
.partner-step {
  background: #ffffff;
  border: 1px solid rgba(48,60,104,0.1);
  box-shadow: 0 4px 20px rgba(48,60,104,0.07);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.23,1,0.32,1);
  /* animation: ptFadeUp removed — scroll reveal use ho raha hai */
  position: relative;
  z-index: 1;
}

.partner-step:hover {
  border-color: rgba(80,209,255,0.3);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  background: rgba(80,209,255,0.03);
}

.partner-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #50d1ff, #7aa936);
  opacity: 0;
  transition: opacity 0.35s;
}
.partner-step:hover::before { opacity: 1; }

.partner-step-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}
.partner-step-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.partner-step:hover .partner-step-img img {
  transform: scale(1.05);
}

.partner-step-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6,8,16,0.8) 100%);
}

.partner-step-num {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #50d1ff;
  color: #030812;
  font-size: 14px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}

.partner-step-body {
  padding: 24px 26px 28px;
}

.partner-step-label {
  /* font-size: 11px; */
  font-weight: normal;
  text-transform: uppercase;
  color: #50d1ff;
  margin-bottom: 8px;
  opacity: 0.8;
}

.partner-step-title {
  font-size: 19px;
  font-weight: normal;
  color: #1e274a;
  margin-bottom: 12px;
  /* line-height: 1.25; */
  transition: color 0.3s;
}
/* .partner-step:hover .partner-step-title { color: #50d1ff; } */

.partner-step-desc {
  font-size: 14px;
  color: #6b7494;
  font-weight: 300;
  line-height: 1.7;
}

/* ── CTA ROW ── */
.partner-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  /* animation: ptFadeUp removed — scroll reveal use ho raha hai */
}

.partner-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #50d1ff;
  color: #030812;
  padding: 15px 34px;
  border-radius: 100px;
  font-weight: normal;
  /* font-size: 15px; */
  text-decoration: none;
  transition: all 0.3s ease;
}
.partner-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(80,209,255,0.35);
}

.partner-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #1e274a;
  padding: 15px 34px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid rgba(48,60,104,0.2);
  transition: all 0.3s ease;
}
.partner-btn-secondary:hover {
  border-color: rgba(80,209,255,0.4);
  color: #50d1ff;
  transform: translateY(-2px);
}

/* ============================================
   SCROLL REVEAL — NAYA ADD KIYA
   (ptFadeUp animation hataya, yeh use hoga)
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Cards ek ke baad ek aayenge */
.partner-step.reveal:nth-child(1) { transition-delay: 0.1s; }
.partner-step.reveal:nth-child(2) { transition-delay: 0.25s; }
.partner-step.reveal:nth-child(3) { transition-delay: 0.4s; }

/* ============================================ */

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .partner-steps { grid-template-columns: 1fr; gap: 20px; }
  .partner-steps::before { display: none; }
}
@media (max-width: 576px) {
  .partner-section { padding: 60px 0; }
  .partner-header h2 { font-size: 26px; }
  .partner-cta-row { flex-direction: column; }
  .partner-btn-primary,
  .partner-btn-secondary { width: 100%; justify-content: center; }
}
/*   BEST GROWTH PARTNER  css */

/* ════════════════════════════
   BEST PARTNER SECTION
════════════════════════════ */
.bgp-section {
  background: #ffffff;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.bgp-section::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(80,209,255,0.06) 0%, transparent 65%);
  top: -100px; right: -100px;
  pointer-events: none;
}

.bgp-container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* header */
.bgp-header {
  text-align: center;
  margin-bottom: 64px;
  /* animation: bgpFade removed — scroll reveal use ho raha hai */
}
.bgp-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(80,209,255,0.08);
  border: 1px solid rgba(80,209,255,0.22);
  color: #50d1ff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.bgp-tag-dot {
  width: 5px; height: 5px;
  background: #50d1ff;
  border-radius: 50%;
  animation: bgpPulse 2s ease-in-out infinite;
}
@keyframes bgpPulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

.bgp-header h2 {
  font-size: clamp(28px, 3.5vw, 46px);
  color: #1e274a;
  line-height: 1.12;
  margin-bottom: 14px;
}
.bgp-header h2 span { color: #50d1ff; }
.bgp-header p {
  font-size: 16px;
  color: #6b7494;
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* layout */
.bgp-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}

/* features grid */
.bgp-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.bgp-feature {
  padding: 28px 24px;
  border-radius: 18px;
  border: 1px solid rgba(48,60,104,0.1);
  background: #fff;
  transition: all 0.32s cubic-bezier(0.23,1,0.32,1);
  /* animation: bgpFade removed — scroll reveal use ho raha hai */
  position: relative;
  overflow: hidden;
}
.bgp-feature::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #50d1ff, #7aa936);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.bgp-feature:hover::before { transform: scaleX(1); }
.bgp-feature:hover {
  border-color: rgba(80,209,255,0.25);
  box-shadow: 0 12px 40px rgba(48,60,104,0.1);
  transform: translateY(-4px);
}

.bgp-feat-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(80,209,255,0.08);
  border: 1px solid rgba(80,209,255,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
  transition: all 0.32s;
}
.bgp-feature:hover .bgp-feat-icon {
  background: rgba(80,209,255,0.15);
  border-color: rgba(80,209,255,0.35);
}
.bgp-feat-title {
  font-weight: normal;
  color: #1e274a;
  margin-bottom: 8px;
  line-height: 1.3;
  transition: color 0.3s;
}
.bgp-feature:hover .bgp-feat-title { color: #50d1ff; }
.bgp-feat-desc {
  font-size: 13.5px;
  color: #6b7494;
  line-height: 1.65;
  font-weight: 300;
}

/* right image */
.bgp-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(48,60,104,0.15);
  /* animation: bgpFade removed — scroll reveal use ho raha hai */
}
.bgp-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
.bgp-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.bgp-badge-icon {
  width: 38px; height: 38px;
  background: rgba(80,209,255,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.bgp-badge-num {
  font-size: 20px;
  font-weight: 800;
  color: #1e274a;
  line-height: 1;
}
.bgp-badge-label {
  font-size: 11px;
  color: #6b7494;
  margin-top: 2px;
}

/* ============================================
   SCROLL REVEAL — NAYA ADD KIYA
   (bgpFade animation hataya, yeh use hoga)
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Feature cards ek ke baad ek aayenge */
.bgp-feature.reveal:nth-child(1) { transition-delay: 0.1s; }
.bgp-feature.reveal:nth-child(2) { transition-delay: 0.2s; }
.bgp-feature.reveal:nth-child(3) { transition-delay: 0.3s; }
.bgp-feature.reveal:nth-child(4) { transition-delay: 0.4s; }

/* Right image thoda baad mein aayega */
.bgp-img-wrap.reveal { transition-delay: 0.2s; }

/* ============================================ */

/* RESPONSIVE */
@media (max-width: 1100px) {
  .bgp-layout { grid-template-columns: 1fr 360px; gap: 40px; }
}
@media (max-width: 900px) {
  .bgp-layout { grid-template-columns: 1fr; gap: 48px; }
  .bgp-img-wrap { max-width: 560px; margin: 0 auto; width: 100%; }
  .bgp-features { grid-template-columns: 1fr 1fr; }
  .bgp-header { margin-bottom: 44px; }
}
@media (max-width: 640px) {
  .bgp-section { padding: 60px 0; }
  .bgp-features { grid-template-columns: 1fr; gap: 16px; }
  .bgp-feature { padding: 22px 18px; }
  .bgp-feat-icon { width: 40px; height: 40px; font-size: 18px; }
  .bgp-feat-title { font-size: 14px; }
  .bgp-feat-desc { font-size: 13px; }
  .bgp-header h2 { font-size: 26px; }
  .bgp-header p { font-size: 14px; }
  .bgp-img-wrap { border-radius: 16px; }
  .bgp-badge { padding: 10px 14px; gap: 10px; bottom: 16px; left: 16px; }
  .bgp-badge-num { font-size: 16px; }
  .bgp-badge-label { font-size: 10px; }
}
@media (max-width: 400px) {
  .bgp-section { padding: 48px 0; }
  .bgp-layout { gap: 36px; }
}
 .sfp-section {
  background: #edf5ff;
  padding: 80px 0;
  overflow: hidden;
}
 
.sfp-container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}
 
/* ── MAIN HEADING ── */
.sfp-main-title {
  /* font-size: clamp(26px, 3.5vw, 42px); */
  color: #1a1a1a;
  margin-bottom: 60px;
  line-height: 1.15;
}
.sfp-main-title span { color: #50d1ff; }
 
/* ── STEPS WRAPPER ── */
.sfp-steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}
 
/* vertical center line */
.sfp-steps::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #daebff;
  transform: translateX(-50%);
  z-index: 0;
}
 
/* ── SINGLE STEP ── */
.sfp-step {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  gap: 0;
  align-items: start;
  padding: 50px 0;
  position: relative;
}
 
/* ── LEFT SIDE ── */
.sfp-left {
  padding-right: 50px;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-top: 10px;
}
 
/* FLIP steps */
.sfp-step.flip .sfp-left {
  order: 3;
  text-align: left;
  align-items: flex-start;
  padding-right: 0;
  padding-left: 50px;
}
.sfp-step.flip .sfp-mid   { order: 2; }
.sfp-step.flip .sfp-right {
  order: 1;
  padding-left: 0;
  padding-right: 50px;
}
 
.sfp-step-badge {
  display: inline-block;
  background: #50d1ff;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 16px;
}
 
.sfp-step-title {
  /* font-size: clamp(22px, 2.5vw, 30px); */
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.25;
}
 
/* ── CENTER DOT ── */
.sfp-mid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 10px;
  position: relative;
  z-index: 1;
}
.sfp-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #50d1ff;
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 2px #303c68;
  flex-shrink: 0;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
 
/* dot animate when step is visible */
.sfp-step.is-visible .sfp-dot {
  transform: scale(1.3);
  box-shadow: 0 0 0 4px rgba(80,209,255,0.35);
}
 
/* ── RIGHT SIDE ── */
.sfp-right {
  padding-left: 50px;
}
 
/* ── CARD ── */
.sfp-card {
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.sfp-step:hover .sfp-card {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.13);
}
 
/* ── IMAGE WRAPPER — clip reveal on scroll ── */
.sfp-img-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
}
 
/* image itself */
.sfp-card-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
 
  /* initial state: hidden below a clip + slightly scaled */
  transform: scale(1.08) translateY(30px);
  opacity: 0;
  transition:
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    opacity   0.75s ease;
}
 
/* overlay that slides up to reveal the image */
.sfp-img-cover {
  position: absolute;
  inset: 0;
  /* background: #c8bc96; */
  transform: translateY(0%);
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 2;
  pointer-events: none;
}
 
/* TRIGGERED STATE — when step enters viewport */
.sfp-step.is-visible .sfp-card-img {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.sfp-step.is-visible .sfp-img-cover {
  transform: translateY(-101%);
}
 
/* small delay for flip steps so it feels staggered */
.sfp-step.flip .sfp-card-img {
  transition-delay: 0.1s;
}
.sfp-step.flip .sfp-img-cover {
  transition-delay: 0.05s;
}
 
/* ── CARD BODY ── */
.sfp-card-body {
  padding: 24px 28px;
 
  /* body slides up from below */
  transform: translateY(20px);
  opacity: 0;
  transition:
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.3s,
    opacity   0.6s ease 0.3s;
}
.sfp-step.is-visible .sfp-card-body {
  transform: translateY(0);
  opacity: 1;
}
 
/* LEFT content also animates */
.sfp-left {
  transform: translateX(-30px);
  opacity: 0;
  transition:
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.15s,
    opacity   0.6s ease 0.15s;
}
.sfp-step.flip .sfp-left {
  transform: translateX(30px);
}
.sfp-step.is-visible .sfp-left {
  transform: translateX(0);
  opacity: 1;
}
 
/* ── BULLETS ── */
.sfp-card-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sfp-card-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #3d3d2e;
  line-height: 1.6;
}
.sfp-card-points li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #303c68;
  flex-shrink: 0;
  margin-top: 6px;
}
 
/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .sfp-steps::before { display: none; }
  .sfp-step {
    grid-template-columns: 1fr;
    padding: 30px 0;
  }
  .sfp-left,
  .sfp-step.flip .sfp-left {
    order: 1;
    text-align: left;
    align-items: flex-start;
    padding: 0 0 16px 0;
    transform: translateY(20px);
  }
  .sfp-step.is-visible .sfp-left {
    transform: translateY(0);
  }
  .sfp-mid  { order: 0; display: none; }
  .sfp-right,
  .sfp-step.flip .sfp-right {
    order: 2;
    padding: 0;
  }
}
/* Comparision Section */
.cmp-section {
  background: #ffffff;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.cmp-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: transparent;
  pointer-events: none;
}
.cmp-section::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: transparent;
  pointer-events: none;
}
.cmp-grid-bg {
  position: absolute; inset: 0;
  pointer-events: none;
}

.cmp-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── HEADER ── */
.cmp-header {
  text-align: center;
  margin-bottom: 60px;
  /* animation: cmpUp removed — scroll reveal use ho raha hai */
}
.cmp-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(80,209,255,0.08);
  border: 1px solid rgba(80,209,255,0.22);
  color: #50d1ff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.cmp-tag-dot {
  width: 5px; height: 5px;
  background: #50d1ff;
  border-radius: 50%;
  animation: cmpPulse 2s ease-in-out infinite;
}
@keyframes cmpPulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

.cmp-header h2 {
  font-size: clamp(26px, 3.5vw, 44px);
  color: #1e274a;
  line-height: 1.12;
  margin-bottom: 14px;
}
.cmp-header h2 span { color: #50d1ff; }
.cmp-header p {
  font-size: 16px;
  color: #6b7494;
  font-weight: 300;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── 3 COLUMN GRID ── */
.cmp-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

/* ── COLUMN CARD ── */
.cmp-col {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(48,60,104,0.12);
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(48,60,104,0.07);
  transition: all 0.35s ease;
  /* animation: cmpUp removed — scroll reveal use ho raha hai */
  position: relative;
}
.cmp-col:nth-child(2) {
  border: 2px solid rgba(80,209,255,0.4);
  background: linear-gradient(160deg, #e8f8ff 0%, #f0faff 40%, #edf7f0 100%);
  box-shadow: 0 20px 60px rgba(80,209,255,0.15), 0 4px 20px rgba(80,209,255,0.1) !important;
}

.cmp-col:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* featured badge */
.cmp-featured-badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #50d1ff, #2d2e2c);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 20px;
  border-radius: 0 0 12px 12px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(80,209,255,0.3);
}

/* col header */
.cmp-col-head {
  padding: 32px 28px 24px;
  border-bottom: 1px solid rgba(48,60,104,0.08);
}
.cmp-col-icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}
.cmp-col-name {
  font-size: 18px;
  font-weight: 700;
  color: #1e274a;
  margin-bottom: 6px;
  line-height: 1.2;
}
.cmp-col:nth-child(2) .cmp-col-name { color: #0a4f6e; }
.cmp-col-sub {
  font-size: 12px;
  color: #6b7494;
  font-weight: 300;
}

/* col items */
.cmp-col-body {
  padding: 24px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cmp-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.55;
}
.cmp-item-dot {
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 1px;
}

.cmp-col:nth-child(2) .cmp-item-dot {
  background: rgba(80,209,255,0.12);
  border: 1px solid rgba(80,209,255,0.35);
  color: #0a9fd4;
}
.cmp-col:nth-child(2) .cmp-item-text { color: #2a3f4f; }

.cmp-col:nth-child(1) .cmp-item-dot,
.cmp-col:nth-child(3) .cmp-item-dot {
  background: rgba(255,80,80,0.1);
  border: 1px solid rgba(255,80,80,0.25);
  color: #ff6b6b;
}
.cmp-col:nth-child(1) .cmp-item-text,
.cmp-col:nth-child(3) .cmp-item-text { color: #6b7494; }

/* ── CTA ── */
.cmp-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  /* animation: cmpUp removed — scroll reveal use ho raha hai */
}
.cmp-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: #50d1ff;
  color: #030812;
  padding: 15px 34px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cmp-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(80,209,255,0.35);
}
.cmp-btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: #1e274a;
  padding: 15px 34px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid rgba(48,60,104,0.2);
  transition: all 0.3s ease;
}
.cmp-btn-secondary:hover {
  border-color: rgba(80,209,255,0.5);
  color: #50d1ff;
  transform: translateY(-2px);
}

/* ============================================
   SCROLL REVEAL — NAYA ADD KIYA
   (cmpUp animation hataya, yeh use hoga)
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Columns ek ke baad ek aayenge */
.cmp-col.reveal:nth-child(1) { transition-delay: 0.1s; }
.cmp-col.reveal:nth-child(2) { transition-delay: 0.25s; }
.cmp-col.reveal:nth-child(3) { transition-delay: 0.4s; }

/* ============================================ */

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .cmp-cols { grid-template-columns: 1fr; gap: 16px; }
  .cmp-featured-badge { display: none; }
}
@media (max-width: 576px) {
  .cmp-section { padding: 60px 0; }
  .cmp-cta-row { flex-direction: column; }
  .cmp-btn-primary, .cmp-btn-secondary { width: 100%; justify-content: center; }
}
/* Products category  */
.cat-section {
  background: #ffffff;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.cat-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── HEADER ── */
.cat-header {
  text-align: center;
  margin-bottom: 50px;
  /* animation: catUp removed — scroll reveal use ho raha hai */
}
.cat-tag {
  display: inline-flex;
  align-items: center;  
  gap: 7px;
  background: rgba(80,209,255,0.08);
  border: 1px solid rgba(80,209,255,0.22);
  color: #50d1ff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.cat-tag-dot {
  width: 5px; height: 5px;
  background: #50d1ff;
  border-radius: 50%;
  animation: catPulse 2s ease-in-out infinite;
}
@keyframes catPulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

.cat-header h2 {
  font-size: clamp(26px, 3.5vw, 44px);
  color: #1e274a;
  line-height: 1.12;
  margin-bottom: 14px;
}
.cat-header h2 span { color: #50d1ff; }
.cat-header p {
  font-size: 16px;
  color: #6b7494;
  font-weight: 300;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── MARQUEE WRAPPER ── */
.cat-marquee-outer {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-bottom: 16px;
}

.cat-marquee-outer::before,
.cat-marquee-outer::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.cat-marquee-outer::before {
  left: 0;
  background: linear-gradient(90deg, #fff 0%, transparent 100%);
}
.cat-marquee-outer::after {
  right: 0;
  background: linear-gradient(270deg, #fff 0%, transparent 100%);
}

/* scrolling track */
.cat-marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: catScroll 28s linear infinite;
}
.cat-marquee-track:hover { animation-play-state: paused; }

.cat-marquee-track.reverse {
  animation: catScrollReverse 32s linear infinite;
}
.cat-marquee-track.reverse:hover { animation-play-state: paused; }

@keyframes catScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes catScrollReverse {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* ── SINGLE CATEGORY PILL ── */
.cat-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border-radius: 100px;
  border: 1px solid rgba(48,60,104,0.12);
  background: #fff;
  box-shadow: 0 2px 12px rgba(48,60,104,0.06);
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.28s ease;
  flex-shrink: 0;
}
.cat-pill:hover {
  border-color: rgba(80,209,255,0.4);
  background: rgba(80,209,255,0.04);
  box-shadow: 0 6px 24px rgba(80,209,255,0.15);
  transform: translateY(-3px);
}

.cat-pill-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(48,60,104,0.05);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  font-size: 20px;
  transition: all 0.28s;
}
.cat-pill:hover .cat-pill-icon {
  background: rgba(80,209,255,0.1);
}
.cat-pill-icon img {
  width: 24px; height: 24px;
  object-fit: contain;
}
.cat-pill-name {
  font-size: 14px;
  font-weight: 600;
  color: #1e274a;
  transition: color 0.28s;
}
.cat-pill:hover .cat-pill-name { color: #50d1ff; }

/* ── CTA ── */
.cat-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 44px;
  flex-wrap: wrap;
  /* animation: catUp removed — scroll reveal use ho raha hai */
}
.cat-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: #50d1ff;
  color: #030812;
  padding: 15px 34px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cat-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(80,209,255,0.35);
}
.cat-btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: #1e274a;
  padding: 15px 34px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid rgba(48,60,104,0.2);
  transition: all 0.3s ease;
}
.cat-btn-secondary:hover {
  border-color: rgba(80,209,255,0.4);
  color: #50d1ff;
  transform: translateY(-2px);
}

/* ============================================
   SCROLL REVEAL — NAYA ADD KIYA
   (catUp animation hataya, yeh use hoga)
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Marquee rows aur CTA ke liye delay */
.cat-marquee-outer.reveal:nth-of-type(1) { transition-delay: 0.1s; }
.cat-marquee-outer.reveal:nth-of-type(2) { transition-delay: 0.25s; }
.cat-cta-row.reveal                       { transition-delay: 0.3s; }

/* ============================================ */

@media (max-width: 576px) {
  .cat-section { padding: 60px 0; }
  .cat-cta-row { flex-direction: column; }
  .cat-btn-primary, .cat-btn-secondary { width: 100%; justify-content: center; }
}
/* testimonial Section */
.testi-section {
  background: #060810;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.testi-section::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(80,209,255,0.07) 0%, transparent 65%);
  top: -100px; left: -100px;
  pointer-events: none;
}
.testi-section::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122,169,54,0.06) 0%, transparent 65%);
  bottom: -80px; right: -80px;
  pointer-events: none;
}

.testi-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── HEADER ── */
.testi-header {
  text-align: center;
  margin-bottom: 56px;
}
.testi-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(80,209,255,0.08);
  border: 1px solid rgba(80,209,255,0.22);
  color: #50d1ff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.testi-tag-dot {
  width: 5px; height: 5px;
  background: #50d1ff;
  border-radius: 50%;
  animation: testiPulse 2s ease-in-out infinite;
}
@keyframes testiPulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

.testi-header h2 {
  font-size: clamp(26px, 3.5vw, 44px);
  color: #fff;
  line-height: 1.12;
  margin-bottom: 14px;
}
.testi-header h2 span { color: #50d1ff; }
.testi-header p {
  font-size: 16px;
  color: #8a93b2;
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── MARQUEE WRAPPER ── */
.testi-marquee-outer {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
}
.testi-marquee-outer::before,
.testi-marquee-outer::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 160px;
  z-index: 2;
  pointer-events: none;
}
.testi-marquee-outer::before {
  left: 0;
  background: linear-gradient(90deg, #060810 0%, transparent 100%);
}
.testi-marquee-outer::after {
  right: 0;
  background: linear-gradient(270deg, #060810 0%, transparent 100%);
}

.testi-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 8px 0;
}
.testi-track.left  { animation: testiLeft 40s linear infinite; }
.testi-track.right { animation: testiRight 45s linear infinite; }
.testi-track:hover { animation-play-state: paused; }

@keyframes testiLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes testiRight {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* ── REVIEW CARD ── */
.testi-card {
  flex-shrink: 0;
  width: 320px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(80,209,255,0.1);
  border-radius: 18px;
  padding: 24px 26px;
  transition: all 0.32s ease;
  cursor: pointer;
  position: relative;
}
.testi-card:hover {
  border-color: rgba(80,209,255,0.3);
  background: rgba(80,209,255,0.05);
  transform: translateY(-5px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.3);
}

.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.testi-star { color: #f5a623; font-size: 14px; }

.testi-text {
  font-size: 14px;
  color: #c0cce8;
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: 300;
  position: relative;
}
.testi-text::before {
  content: '"';
  font-size: 48px;
  color: rgba(80,209,255,0.15);
  line-height: 1;
  position: absolute;
  top: -10px; left: -8px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 16px;
}
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: #030812;
  flex-shrink: 0;
}
.testi-author-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.testi-author-role {
  font-size: 12px;
  color: #8a93b2;
  margin-top: 2px;
}
.testi-verified {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: #50d1ff;
  font-weight: 600;
  flex-shrink: 0;
}
.testi-platform {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 18px;
}

/* ── CTA ── */
.testi-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 50px;
  flex-wrap: wrap;
}
.testi-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: #50d1ff; color: #030812;
  padding: 15px 34px; border-radius: 100px;
  font-weight: 700; font-size: 15px;
  text-decoration: none; transition: all 0.3s ease;
}
.testi-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(80,209,255,0.35);
}
.testi-btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff;
  padding: 15px 34px; border-radius: 100px;
  font-weight: 600; font-size: 15px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.3s ease;
}
.testi-btn-secondary:hover {
  border-color: rgba(80,209,255,0.4);
  color: #50d1ff;
  transform: translateY(-2px);
}

/* ============================================
   SCROLL REVEAL — NAYA ADD KIYA
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Row 1 aur Row 2 ke liye delay */
.testi-marquee-outer.reveal:nth-of-type(1) { transition-delay: 0.1s; }
.testi-marquee-outer.reveal:nth-of-type(2) { transition-delay: 0.25s; }

/* ============================================ */

@media (max-width: 576px) {
  .testi-section { padding: 60px 0; }
  .testi-card { width: 260px; }
  .testi-cta-row { flex-direction: column; }
  .testi-btn-primary, .testi-btn-secondary { width: 100%; justify-content: center; }
}
.bento-section {
  background: #f4f7ff;
  padding: 90px 0;
  overflow: hidden;
}

.bento-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── HEADER ── */
.bento-header {
  text-align: center;
  margin-bottom: 50px;
}
.bento-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(80,209,255,0.08);
  border: 1px solid rgba(80,209,255,0.22);
  color: #50d1ff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.bento-tag-dot {
  width: 5px; height: 5px;
  background: #50d1ff;
  border-radius: 50%;
  animation: btPulse 2s ease-in-out infinite;
}
@keyframes btPulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

.bento-header h2 {
  font-size: clamp(26px, 3.5vw, 44px);
  color: #1e274a;
  line-height: 1.12;
  margin-bottom: 14px;
}
.bento-header h2 span { color: #50d1ff; }
.bento-header p {
  font-size: 16px;
  color: #6b7494;
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── BENTO GRID ── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px 180px 180px;
  gap: 16px;
}

/* ── BASE TILE ── */
.bt {
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  display: flex;
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}
.bt > div { width: 100%; }
.bt:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* ── TILE POSITIONS ── */
.bt-quote1 { grid-column: 1 / 3; grid-row: 1; }
.bt-img1   { grid-column: 3; grid-row: 1; }
.bt-years  { grid-column: 4; }
.bt-count  { grid-column: 1; grid-row: 2; }
.bt-badge  { grid-column: 2; grid-row: 2; }
.bt-img2   { grid-column: 3; grid-row: 2 / 4; }
.bt-rank   { grid-column: 1 / 3; grid-row: 3; }
.bt-quote2 { grid-column: 4; grid-row: 2 / 4; height: 100%; display: flex; }

/* ── QUOTE TILE ── */
.bt-quote {
  background: #fff;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
}
.bt-quote-text {
  font-size: 15px;
  color: #1e274a;
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 20px;
  flex: 1;
}
.bt-quote-author-name { font-size: 15px; font-weight: 700; color: #1e274a; margin-bottom: 4px; }
.bt-quote-stars { color: #f5a623; font-size: 14px; letter-spacing: 2px; }
.bt-quote-author-role { font-size: 12px; color: #6b7494; }

/* ── IMAGE TILE ── */
.bt-img { position: relative; overflow: hidden; min-height: 220px; height: 100%; }
.bt-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; min-height: 220px; }
.bt:hover .bt-img img { transform: scale(1.05); }

/* ── YEARS TILE ── */
.bt-years-tile {
  background: #060810;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 200px;
}
.bt-years-num { font-size: 60px; font-weight: 800; color: #50d1ff; line-height: 1; margin-bottom: 8px; }
.bt-years-label { font-size: 14px; color: #8a93b2; line-height: 1.5; font-weight: 300; }

/* ── COUNT TILE ── */
.bt-count-tile {
  background: #fff;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 160px;
}
.bt-count-num { font-size: 52px; font-weight: 800; color: #1e274a; line-height: 1; margin-bottom: 8px; }
.bt-count-label { font-size: 13px; color: #6b7494; line-height: 1.5; }

/* ── BADGE TILE ── */
.bt-badge-tile {
  background: #060810;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  padding: 24px;
}
.bt-badge-tile img { width: 100px; height: auto; object-fit: contain; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4)); }
.bt-badge-icon { font-size: 64px; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3)); }

/* ── RANK TILE ── */
.bt-rank-tile {
  background: linear-gradient(135deg, #50d1ff, #d2d9c8);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 160px;
}
.bt-rank-num { font-size: 56px; font-weight: 800; color: #060810; line-height: 1; margin-bottom: 8px; }
.bt-rank-label { font-size: 13px; color: #0a0f18; line-height: 1.5; font-weight: 500; }

/* ── BIG QUOTE TILE ── */
.bt-bigquote {
  background: #fff;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.bt-bigquote-text { font-size: 20px; color: #1e274a; line-height: 1.6; font-weight: 500; margin-bottom: 24px; flex: 1; }
.bt-bigquote-author-name { font-size: 15px; font-weight: 700; color: #1e274a; margin-bottom: 2px; }
.bt-bigquote-author-role { font-size: 12px; color: #6b7494; margin-bottom: 16px; }
.bt-bigquote-bottom { display: flex; justify-content: space-between; align-items: center; }

.bt-nav { display: flex; align-items: center; gap: 10px; }
.bt-nav-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(48,60,104,0.2);
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 16px;
  color: #1e274a;
  transition: all 0.25s;
}
.bt-nav-btn:hover { background: #50d1ff; color: #030812; border-color: #50d1ff; }

.bt-quote,
.bt-bigquote { justify-content: space-between; height: 100%; }

/* ============================================
   SCROLL REVEAL — NAYA ADD KIYA
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Bento tiles ek ke baad ek aayenge */
.bt-quote1.reveal { transition-delay: 0.05s; }
.bt-img1.reveal   { transition-delay: 0.12s; }
.bt-years.reveal  { transition-delay: 0.19s; }
.bt-count.reveal  { transition-delay: 0.26s; }
.bt-badge.reveal  { transition-delay: 0.33s; }
.bt-img2.reveal   { transition-delay: 0.40s; }
.bt-rank.reveal   { transition-delay: 0.47s; }
.bt-quote2.reveal { transition-delay: 0.54s; }

/* ============================================ */

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .bt-quote1 { grid-column: 1; grid-row: 1; }
  .bt-img1   { grid-column: 2; grid-row: 1; }
  .bt-years  { grid-column: 1; grid-row: 2; }
  .bt-count  { grid-column: 2; grid-row: 2; }
  .bt-badge  { grid-column: 1; grid-row: 3; }
  .bt-img2   { grid-column: 2; grid-row: 3; }
  .bt-rank   { grid-column: 1; grid-row: 4; }
  .bt-quote2 { grid-column: 2; grid-row: 4; }
}

@media (max-width: 640px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bt-quote1, .bt-img1, .bt-years, .bt-count,
  .bt-badge, .bt-img2, .bt-rank, .bt-quote2 {
    grid-column: 1; grid-row: auto;
  }
  .bento-section { padding: 60px 0; }
}
/* tabs section */
.tabs-wrp {
  padding: 50px 0;
  background: #060810;
}
.tabs-wrp .tabs-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.tabs-wrp .tabs-list ul li {
  background: #ffffff;
  padding: 5px 30px;
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 5px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  color: #333;
}
.tabs-wrp .tabs-list ul li .tab-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  flex-shrink: 0;
  font-size: 15px;
  color: #555;
  transition: all 0.3s;
}
.tabs-wrp .tabs-list ul li.current {
  background: #50d1ff;
  color: #fff;
}
.tabs-wrp .tabs-list ul li.current .tab-icon {
  background: rgba(255,255,255,0.25);
  color: #fff;
}

/* RIGHT PANEL */
.tabs-wrp .tabs-details { height: 100%; }
.tabs-wrp .tabs-details .tabs {
  display: none;
  padding: 40px;
  border-radius: 40px;
  position: sticky;
  top: 30px;
}
.tabs-wrp .tabs-details .tabs.current { display: block; }

.tabs-wrp .tabs-details .tabs .mainlargebox .boxtxt h4 {
  color: #fff;
  font-size: 26px;
  margin-bottom: 12px;
}
.tabs-wrp .tabs-details .tabs .mainlargebox .boxtxt p {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 0px;
  line-height: 28px;
  font-weight: 400;
}

.tabs-wrp .tabs-details .tabs .imgwrp img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

/* BUTTON */
.themes-btn {
  display: inline-block;
  background: #50d1ff;
  color: #fff;
  padding: 13px 30px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 20px;
  transition: background 0.3s;
}
.themes-btn:hover {
  background: #30b8e8;
  color: #fff;
  text-decoration: none;
}

/* HEADING */
.txtwrp { margin-bottom: 40px; }
.txtwrp .main-heading {
  font-size: 36px;
  color: #fff;
  margin-bottom: 15px;
}
.txtwrp .main-pera {
  font-size: 17px;
  color: #ffffff;
  line-height: 30px;
  max-width: 800px;
  margin: 0 auto;
}

/* Grid */
/* .container {  */
  /* width: 90%; max-width: 1280px;  */
  /* margin: 0 auto; } */
.row { display: flex; flex-wrap: wrap; margin: 0 -15px; }
.col-md-12 { width: 100%; padding: 0 15px; }
.col-md-4  { width: 33.333%; padding: 0 15px; }
.col-md-8  { width: 66.666%; padding: 0 15px; }
.col-md-6  { width: 50%; padding: 0 15px; }
.text-center { text-align: center; }
.my-auto { display: flex; align-items: center; }
.mt-3 { margin-top: 15px; }

/* ============================================
   SCROLL REVEAL — NAYA ADD KIYA
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Tabs list aur right panel ke liye delay */
.tabs-list.reveal-left  { transition-delay: 0.1s; }
.tabs-details.reveal    { transition-delay: 0.3s; }

/* ============================================ */

/* MOBILE RESPONSIVE */
@media (max-width: 991px) {
  .col-md-4, .col-md-8 { width: 100%; }

  .tabs-wrp .tabs-details { display: none; }

  .tabs-wrp .tabs-list ul li {
    border-radius: 14px;
    margin-bottom: 6px;
  }
  .tabs-wrp .tabs-list ul li.current {
    border-radius: 14px 14px 0 0;
    margin-bottom: 0;
  }

  .mobile-accordion-content {
    background: #fff;
    border-radius: 0 0 14px 14px;
    padding: 24px 20px;
    margin-bottom: 6px;
    animation: accFade 0.3s ease both;
  }
  @keyframes accFade {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .mobile-accordion-content .row { flex-direction: column; }
  .mobile-accordion-content .col-md-6 { width: 100%; padding: 0; }

  .mobile-accordion-content .imgwrp { display: none; }
  .mobile-accordion-content .mainlargebox .boxtxt h4 {
    font-size: 20px;
    color: #000;
    margin-bottom: 10px;
  }
  .mobile-accordion-content .mainlargebox .boxtxt p {
    font-size: 15px;
    color: #333;
    line-height: 26px;
  }
}

@media (max-width: 575px) {
  .txtwrp .main-heading { font-size: 24px; }
  .txtwrp .main-pera { font-size: 15px; }
  .tabs-wrp .tabs-list ul li { font-size: 14px; height: 56px; padding: 10px 16px; }
  .tabs-wrp .tabs-list ul li .tab-icon { width: 30px; height: 30px; font-size: 13px; }
}
/* ========================= PLATFORMS ACCORDION ========================= */
.plat-section {
  padding: 80px 5% 100px;
  background: #edf5ff;
}

.plat-container {
  max-width: 1300px;
  margin: 0 auto;
}

.plat-header {
  text-align: center;
  margin-bottom: 50px;
}

.plat-header h2 {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 14px;
  line-height: 1.2;
}

.plat-header p {
  font-size: 15px;
  color: #555;
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.8;
}
/* ── ACCORDION ROW ── */
.plat-accordion {
  display: flex;
  gap: 12px;
  align-items: stretch;
  height: 460px; /* fixed height */
}

/* ── EACH ITEM ── */
.plat-item {
  flex: 0 0 60px;
  border-radius: 50px;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  height: 460px; /* fixed height */
}

.plat-item.active {
  flex: 1 1 auto;
  border-radius: 24px;
  cursor: default;
}

/* ── PILL ── */
.plat-pill {
  width: 60px;
  height: 460px; /* match fixed height */
  gap: 5px;
  background: #354449;
  border-radius: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 14px;
  transition: background 0.3s ease, opacity 0.3s;
  position: absolute;
  inset: 0;
  opacity: 1;
}

.plat-item.active .plat-pill {
  opacity: 0;
  pointer-events: none;
}

.plat-item:not(.active):hover .plat-pill {
  background: #50d1ff;
}

.plat-pill-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  white-space: nowrap;
  flex: 1;
  display: flex;
  align-items: center;
}

.plat-pill-icon {
  width: 46px;
  height: 46px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  flex-shrink: 0;
  overflow: hidden;
}

.plat-pill-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ── PANEL ── */
.plat-panel {
  display: flex;
  align-items: center;
  gap: 28px;
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  height: 460px; /* match fixed height */
  opacity: 0;
  transition: opacity 0.35s ease 0.2s;
  white-space: normal;
  min-width: 0;
  box-sizing: border-box;
  overflow: hidden;
}

.plat-item.active .plat-panel {
  opacity: 1;
}

/* ── IMAGE BOX ── */
.plat-img-box {
  width: 50%;
  flex-shrink: 0;
  border-radius: 16px;
  background: #f0ece3;
  position: relative;
  overflow: hidden;
  height: 100%; /* fills panel height */
}

.plat-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.plat-img-label {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  color: #1e1e1e;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 100px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

/* ── TEXT ── */
.plat-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertically center text */
}

.plat-text h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 14px;
  line-height: 1.2;
}

.plat-text p {
  font-size: 14.5px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 22px;
}

.plat-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #50d1ff;
  color: #ffffff;
  padding: 12px 26px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
}

.plat-btn:hover {
  background: #6e6e40;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(138,138,82,0.35);
}

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
  .plat-accordion {
    flex-direction: column;
    height: auto;
  }
  .plat-item {
    flex: 0 0 64px !important;
    height: 64px;
    border-radius: 20px;
  }
  .plat-item.active {
    flex: 0 0 auto !important;
    height: auto;
  }
  .plat-pill {
    width: 100%;
    height: 64px;
    flex-direction: row;
    padding: 0 20px;
    border-radius: 20px;
  }
  .plat-pill-text {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 14px;
  }
  .plat-panel {
    flex-direction: column;
    height: auto;
    padding: 24px;
  }
  .plat-img-box {
    width: 100%;
    height: 240px;
  }
  .plat-text {
    justify-content: flex-start;
  }
}

@media (max-width: 576px) {
  .plat-text h3 { font-size: 1.4rem; }
  .plat-text p { font-size: 13.5px; }
}
/* project page */
   /* ── PORTFOLIO PAGE SPECIFIC STYLES ── */
    .portfolio-hero {
      margin-top: 50px;
      padding: 80px 0 0px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .portfolio-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 50% 0%, rgba(99,102,241,0.12) 0%, transparent 70%);
      pointer-events: none;
    }
    .portfolio-hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(99,102,241,0.1);
      border: 1px solid rgba(99,102,241,0.25);
      border-radius: 50px;
      padding: 6px 18px;
      font-size: 13px;
      color: #818cf8;
      margin-bottom: 20px;
      font-weight: 500;
    }
    .portfolio-hero-tag span {
      width: 7px; height: 7px;
      background: #818cf8;
      border-radius: 50%;
      animation: pulse 1.8s infinite;
    }
    @keyframes pulse {
      0%,100%{opacity:1;transform:scale(1)}
      50%{opacity:0.4;transform:scale(1.4)}
    }
    /* .portfolio-hero h1 {
      line-height: 1.1;
      margin-bottom: 18px;
    } */
    .portfolio-hero h1 span { color: var(--primary); }
    .portfolio-hero p {
      font-size: 17px;
      opacity: 0.65;
      max-width: 580px;
      margin: 0 auto 40px;
      line-height: 1.7;
    }

    /* ── FILTER TABS ── */

/* ── FILTER TABS — quiet, minimal text tabs ── */
    .portfolio-filters {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 8px;
      padding: 0 20px;
      margin-bottom: 48px;
    }
    .pf-btn {
      padding: 9px 20px;
      border-radius: 6px;
      border: none;
      background: transparent;
      color: rgba(15,23,42,0.55);
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.01em;
      cursor: pointer;
      transition: color 0.2s, background 0.2s;
    }
    .pf-btn:hover { color: rgba(15,23,42,0.9); background: rgba(15,23,42,0.04); }
    .pf-btn.active { background: rgba(15,23,42,0.06); color: var(--primary); }

    /* ── PORTFOLIO GRID — large, image-forward project tiles ── */
    .portfolio-main-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      padding: 0 20px;
      max-width: 1200px;
      margin: 0 auto 60px;
    }
    @media(max-width:900px){ .portfolio-main-grid{ grid-template-columns: repeat(2,1fr); } }
    @media(max-width:560px){ .portfolio-main-grid{ grid-template-columns: 1fr; } }

    .pf-card {
      border-radius: 10px;
      overflow: hidden;
      background: #f1f2f4;
      transition: box-shadow 0.3s;
    }
    .pf-card:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.18); }
    .pf-card a { display: block; }

    .pf-card-img {
      position: relative;
      overflow: hidden;
      aspect-ratio: 4/3;
    }
    .pf-card-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .pf-card:hover .pf-card-img img { transform: scale(1.07); }

    .pf-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(10,10,18,0.78) 0%, rgba(10,10,18,0.05) 45%, transparent 70%);
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 14px;
      padding: 22px;
      transition: background 0.3s;
    }
    .pf-card:hover .pf-card-overlay {
      background: linear-gradient(to top, rgba(10,10,18,0.85) 0%, rgba(10,10,18,0.15) 50%, transparent 75%);
    }
    .pf-card-title {
      color: #fff;
      font-size: 17px;
      font-weight: 700;
      letter-spacing: -0.01em;
      line-height: 1.3;
    }
    .pf-card-plus {
      width: 34px; height: 34px;
      flex-shrink: 0;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.55);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 18px;
      line-height: 1;
      transition: background 0.25s, border-color 0.25s, transform 0.25s;
    }
    .pf-card:hover .pf-card-plus {
      background: var(--primary);
      border-color: var(--primary);
      transform: rotate(90deg);
    }


    .pf-card-desc {
      font-size: 13px;
      opacity: 0.55;
      line-height: 1.6;
    }
    .pf-card-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 12px;
    }
    .pf-tag {
      background: rgba(129,140,248,0.1);
      border: 1px solid rgba(129,140,248,0.2);
      /* color: #818cf8; */
      font-size: 11px;
      padding: 3px 10px;
      border-radius: 50px;
    }

    /* ── LOGO SECTION ── */
    .portfolio-logo-section {
      padding: 60px 20px 0px;
      background: rgba(255,255,255,0.02);
      border-top: 1px solid rgba(255,255,255,0.06);
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .portfolio-logo-section .section-label {
      text-align: center;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      /* color: #818cf8; */
      margin-bottom: 10px;
    }
    .portfolio-logo-section h2 {
      text-align: center;
      font-size: clamp(24px, 3vw, 38px);
      font-weight: 800;
      margin-bottom: 40px;
    }
    .portfolio-logo-section h2 span { color: var(--primary); }
    .logo-showcase-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 16px;
      max-width: 1100px;
      margin: 0 auto;
    }
    @media(max-width:900px){ .logo-showcase-grid{ grid-template-columns: repeat(4,1fr); } }
    @media(max-width:560px){ .logo-showcase-grid{ grid-template-columns: repeat(3,1fr); } }
    .logo-showcase-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 12px;
      padding: 20px 14px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      transition: all 0.25s;
    }
    .logo-showcase-card:hover {
      background: rgba(129,140,248,0.08);
      border-color: rgba(129,140,248,0.3);
      transform: translateY(-3px);
    }
    .logo-showcase-card img {
      width: 80px; height: 50px;
      object-fit: contain;
      /* filter: brightness(0) invert(1); */
      opacity: 0.7;
      transition: opacity 0.25s;
    }
    .logo-showcase-card:hover img { opacity: 1; }
    .logo-showcase-card span {
      font-size: 11px;
      opacity: 0.5;
      text-align: center;
      font-weight: 500;
    }

    /* ── STATS ── */
    .portfolio-stats {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 0;
      max-width: 900px;
      margin: 60px auto 0px;
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 20px;
      overflow: hidden;
    }
    .ps-item {
      flex: 1;
      min-width: 180px;
      padding: 36px 20px;
      text-align: center;
      border-right: 1px solid rgba(255,255,255,0.08);
      background: rgba(255,255,255,0.02);
    }
    .ps-item:last-child { border-right: none; }
    .ps-num {
      font-size: 42px;
      font-weight: 900;
      line-height: 1;
      margin-bottom: 6px;
    }
    .ps-label {
      font-size: 13px;
      opacity: 0.55;
      font-weight: 500;
    }

    /* hide/show filter */
    .pf-card.hidden { display: none; }
    /* policy pages */
    .policy-hero {
      margin-top: 25px;
      padding: 80px 0 60px;
      text-align: center;
      position: relative; 
      overflow: hidden;
    }
    .policy-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 50% 0%, rgba(99,102,241,0.1) 0%, transparent 70%);
      pointer-events: none;
    }
    .policy-hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(99,102,241,0.1);
      border: 1px solid rgba(99,102,241,0.2);
      border-radius: 50px;
      padding: 6px 18px;
      font-size: 13px;
      color: #50d1ff;
      margin-bottom: 20px;
      font-weight: 500;
    }
    .policy-hero-tag span {
      width: 7px; height: 7px;
      background: #50d1ff;
      border-radius: 50%;
      animation: pulse 1.8s infinite;
    }
    @keyframes pulse {
      0%,100%{opacity:1;transform:scale(1)}
      50%{opacity:0.4;transform:scale(1.4)}
    }
   
    .policy-hero h1 span { color: #50d1ff; }
    .policy-hero p {
      font-size: 16px;
      opacity: 0.55;
      max-width: 520px;
      margin: 0 auto;
    }
    .policy-hero-meta {
      display: flex;
      justify-content: center;
      gap: 30px;
      margin-top: 30px;
      flex-wrap: wrap;
    }
    .policy-hero-meta-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      opacity: 0.5;
    }
    .policy-hero-meta-item i { color: #50d1ff; }

    .portfolio-filters {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 50px;
      padding: 0 20px;
    }
    .pf-btn:hover, .pf-btn.active {
      background: var(--primary);
      border-color: var(--primary);
      color: #fff;
    }

    /* ── PORTFOLIO GRID ── */
    .portfolio-main-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      padding: 0 20px;
      max-width: 1200px;
      margin: 0 auto 0px;
    }
    @media(max-width:900px){ .portfolio-main-grid{ grid-template-columns: repeat(2,1fr); } }
    @media(max-width:560px){ .portfolio-main-grid{ grid-template-columns: 1fr; } }

    .pf-card {
      border-radius: 16px;
      overflow: hidden;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.08);
      transition: transform 0.3s, box-shadow 0.3s;
      cursor: pointer;
    }
    .pf-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(0,0,0,0.35);
    }
    .pf-card-img {
      position: relative;
      overflow: hidden;
      aspect-ratio: 16/12;
      background: #13131a;
    }
    .pf-card-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.4s;
    }
    .pf-card:hover .pf-card-img img { transform: scale(1.06); }
    .pf-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(10,10,20,0.85) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.3s;
      display: flex;
      align-items: flex-end;
      padding: 20px;
    }
    .pf-card:hover .pf-card-overlay { opacity: 1; }
    .pf-overlay-btn {
      background: var(--primary);
      color: #fff;
      padding: 8px 20px;
      border-radius: 50px;
      font-size: 13px;
      font-weight: 600;
      text-decoration: none;
    }
    .pf-card-body {
      padding: 2px 20px 2px;
    }
 
    .pf-card-desc {
      font-size: 13px;
      opacity: 0.55;
      line-height: 1.6;
    }
    .pf-card-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 12px;
    }
    .pf-tag {
      background: rgba(129,140,248,0.1);
      border: 1px solid rgba(129,140,248,0.2);
      /* color: #818cf8; */
      font-size: 11px;
      padding: 3px 10px;
      border-radius: 50px;
    }

    /* ── LOGO SECTION ── */
    .portfolio-logo-section {
      padding: 60px 20px 0px;
      background: rgba(255,255,255,0.02);
      border-top: 1px solid rgba(255,255,255,0.06);
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .portfolio-logo-section .section-label {
      text-align: center;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      /* color: #818cf8; */
      margin-bottom: 10px;
    }
    .portfolio-logo-section h2 {
      text-align: center;
      font-size: clamp(24px, 3vw, 38px);
      font-weight: 800;
      margin-bottom: 40px;
    }
    .portfolio-logo-section h2 span { color: var(--primary); }
    .logo-showcase-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 16px;
      max-width: 1100px;
      margin: 0 auto;
    }
    @media(max-width:900px){ .logo-showcase-grid{ grid-template-columns: repeat(4,1fr); } }
    @media(max-width:560px){ .logo-showcase-grid{ grid-template-columns: repeat(3,1fr); } }
    .logo-showcase-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 12px;
      padding: 20px 14px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      transition: all 0.25s;
    }
    .logo-showcase-card:hover {
      background: rgba(129,140,248,0.08);
      border-color: rgba(129,140,248,0.3);
      transform: translateY(-3px);
    }
    .logo-showcase-card img {
      width: 80px; height: 50px;
      object-fit: contain;
      /* filter: brightness(0) invert(1); */
      opacity: 0.7;
      transition: opacity 0.25s;
    }
    .logo-showcase-card:hover img { opacity: 1; }
    .logo-showcase-card span {
      font-size: 11px;
      opacity: 0.5;
      text-align: center;
      font-weight: 500;
    }

    /* ── STATS ── */
    .portfolio-stats {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 0;
      max-width: 900px;
      margin: 60px auto 0px;
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 20px;
      overflow: hidden;
    }
    .ps-item {
      flex: 1;
      min-width: 180px;
      padding: 36px 20px;
      text-align: center;
      border-right: 1px solid rgba(255,255,255,0.08);
      background: rgba(255,255,255,0.02);
    }
    .ps-item:last-child { border-right: none; }
    .ps-num {
      font-size: 42px;
      font-weight: 900;
      line-height: 1;
      margin-bottom: 6px;
    }
    .ps-label {
      font-size: 13px;
      opacity: 0.55;
      font-weight: 500;
    }

    /* hide/show filter */
    .pf-card.hidden { display: none; }
    /* policy pages */
    .policy-hero {
      margin-top: 25px;
      padding: 80px 0 60px;
      text-align: center;
      position: relative; 
      overflow: hidden;
    }
    .policy-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 50% 0%, rgba(99,102,241,0.1) 0%, transparent 70%);
      pointer-events: none;
    }
    .policy-hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(99,102,241,0.1);
      border: 1px solid rgba(99,102,241,0.2);
      border-radius: 50px;
      padding: 6px 18px;
      font-size: 13px;
      color: #50d1ff;
      margin-bottom: 20px;
      font-weight: 500;
    }
    .policy-hero-tag span {
      width: 7px; height: 7px;
      background: #50d1ff;
      border-radius: 50%;
      animation: pulse 1.8s infinite;
    }
    @keyframes pulse {
      0%,100%{opacity:1;transform:scale(1)}
      50%{opacity:0.4;transform:scale(1.4)}
    }
   
    .policy-hero h1 span { color: #50d1ff; }
    .policy-hero p {
      font-size: 16px;
      opacity: 0.55;
      max-width: 520px;
      margin: 0 auto;
    }
    .policy-hero-meta {
      display: flex;
      justify-content: center;
      gap: 30px;
      margin-top: 30px;
      flex-wrap: wrap;
    }
    .policy-hero-meta-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      opacity: 0.5;
    }
    .policy-hero-meta-item i { color: #50d1ff; }

    .policy-layout {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 24px 80px;
      display: grid;
      grid-template-columns: 260px 1fr;
      gap: 48px;
      align-items: start;
    }
    @media(max-width: 768px) {
      .policy-layout { grid-template-columns: 1fr; }
      .policy-toc { display: none; }
    }

    .policy-toc {
      position: sticky;
      top: 110px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 16px;
      padding: 24px;
    }
    .policy-toc-title {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: #50d1ff;
      margin-bottom: 16px;
    }
    .policy-toc-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    .policy-toc-list a {
      display: block;
      padding: 8px 12px;
      border-radius: 8px;
      font-size: 13px;
      opacity: 0.6;
      text-decoration: none;
      color: inherit;
      transition: all 0.2s;
    }
    .policy-toc-list a:hover {
      background: rgba(129,140,248,0.1);
      opacity: 1;
      color: #50d1ff;
    }

    .policy-content { min-width: 0; }
    .policy-section {
      /* margin-bottom: 48px;
      padding-bottom: 48px; */
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .policy-section:last-child { border-bottom: none; }
    .policy-section-num {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #50d1ff;
      margin-bottom: 8px;
    }
    .policy-section h2 {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 16px;
    }
    .policy-section p {
      font-size: 15px;
      line-height: 1.8;
      opacity: 0.7;
      margin-bottom: 14px;
    }
    .policy-section ul {
      padding-left: 0;
      margin: 0 0 14px;
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .policy-section ul li {
      font-size: 15px;
      line-height: 1.7;
      opacity: 0.7;
      padding-left: 20px;
      position: relative;
    }
    .policy-section ul li::before {
      content: '→';
      position: absolute;
      left: 0;
      color: #50d1ff;
      font-size: 12px;
    }
    .policy-highlight {
      background: rgba(129,140,248,0.07);
      border: 1px solid rgba(129,140,248,0.15);
      border-left: 3px solid #50d1ff;
      border-radius: 8px;
      padding: 16px 20px;
      font-size: 14px;
      line-height: 1.7;
      opacity: 0.85;
      margin: 16px 0;
    }
    .policy-warning {
      background: rgba(239,68,68,0.06);
      border: 1px solid rgba(239,68,68,0.2);
      border-left: 3px solid #ef4444;
      border-radius: 8px;
      padding: 16px 20px;
      font-size: 14px;
      line-height: 1.7;
      opacity: 0.85;
      margin: 16px 0;
    }
    .policy-contact-box {
      background: rgba(129,140,248,0.06);
      border: 1px solid rgba(129,140,248,0.15);
      border-radius: 16px;
      padding: 28px;
      margin-top: 20px;
    }
    .policy-contact-box h4 {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 12px;
    }
    .policy-contact-box p {
      font-size: 14px;
      opacity: 0.65;
      margin-bottom: 6px;
    }
    .policy-contact-box a { color: #50d1ff; text-decoration: none; }
 /* Quick Summary Cards */
    .refund-summary {
      max-width: 1000px;
      margin: 0 auto 60px;
      /* padding: 0 24px;    */
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    @media(max-width: 768px) {
      .refund-summary { grid-template-columns: 1fr; }
    }
    .refund-summary-card {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 16px;
      padding: 24px;
      text-align: center;
      transition: all 0.25s;
    }
    .refund-summary-card:hover {
      border-color: rgba(129,140,248,0.3);
      background: rgba(129,140,248,0.05);
    }
    .refund-summary-icon {
      font-size: 32px;
      margin-bottom: 12px;
    }
    .refund-summary-title {
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 8px;
    }
    .refund-summary-desc {
      font-size: 13px;
      opacity: 0.55;
      line-height: 1.6;
    }
    .refund-summary-card.green { border-color: rgba(34,197,94,0.2); }
    .refund-summary-card.green:hover { border-color: rgba(34,197,94,0.4); background: rgba(34,197,94,0.05); }
    .refund-summary-card.red { border-color: rgba(239,68,68,0.2); }
    .refund-summary-card.red:hover { border-color: rgba(239,68,68,0.4); background: rgba(239,68,68,0.05); }
    .refund-summary-card.yellow { border-color: rgba(234,179,8,0.2); }
    .refund-summary-card.yellow:hover { border-color: rgba(234,179,8,0.4); background: rgba(234,179,8,0.05); }
    /* novel blog section */
    .blog-section { padding: 60px 0; }
.blog-title { text-align: center; font-size: 2rem; margin-bottom: 10px; }
.blog-subtitle { text-align: center; color: #666; margin-bottom: 40px; }
.blog-card { border-radius: 12px; overflow: hidden; background: #fff; border: 1px solid #eee; height: 100%; }
.blog-img-wrapper { height: 200px; overflow: hidden; }
.blog-img { width: 100%; height: 100%; object-fit: cover; }
.blog-content { padding: 1.2rem; }
.blog-meta { display: flex; gap: 12px; font-size: 12px; color: #888; flex-wrap: wrap; margin-bottom: 10px; }
.blog-card-title { font-size: 16px; font-weight: 600; margin-bottom: 14px; }  
.blog-read-more { font-size: 13px; color: #0066cc; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.swiper-pagination .swiper-pagination-bullet:nth-child(n+4) {
    display: none !important;
}
/* pagination in blog page */

.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 40px 20px 60px;
    flex-wrap: wrap;
}

.page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1.5px solid #e2e8f0;
    color: #475569;
    background: #fff;
    cursor: pointer;
}

.page-btn:hover:not(.disabled):not(.active) {
    background: #f1f5f9;
    border-color: #94a3b8;
    color: #1e293b;
}

.page-btn.active {
    background: #1e293b;
    border-color: #1e293b;
    color: #fff;
    cursor: default;
}

.page-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.phone-field-wrap { position: relative; }
.phone-selector {
    display: flex;
    align-items: center;
    border: 1px solid #cccccc;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    height: 44px;
}
.phone-selector:focus-within { border-color: #3b82f6; box-shadow: 0 0 0 2px rgba(59,130,246,0.15); }
.country-trigger {
    display: flex; align-items: center; gap: 5px;
    padding: 0 10px; height: 100%;
    background: #f8fafc;
    border: none; border-right: 1px solid #e2e8f0;
    cursor: pointer; font-size: 13px; color: #374151;
    white-space: nowrap; flex-shrink: 0;
}
.country-trigger:hover { background: #f1f5f9; }
.phone-number-input {
    border: none !important; outline: none !important;
    padding: 0 12px; height: 100%;
    font-size: 14px; color: #374151;
    flex: 1; background: transparent;
    box-shadow: none !important;
}
.country-dropdown {
    display: none; position: absolute;
    top: calc(100% + 4px); left: 0;
    width: 280px; background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px; z-index: 99999;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    overflow: hidden;
}
.country-dropdown.open { display: block; }
.country-search-wrap { padding: 8px; border-bottom: 1px solid #f1f5f9; }
.country-search-wrap input {
    width: 100%; padding: 7px 10px;
    border: 1px solid #e2e8f0; border-radius: 6px;
    font-size: 13px; outline: none; box-sizing: border-box;
}
.country-options { max-height: 200px; overflow-y: auto; }
.country-opt {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 12px; cursor: pointer; font-size: 14px;
}
.country-opt:hover { background: #f8fafc; }
.country-opt .opt-dial { margin-left: auto; font-size: 13px; color: #6b7280; }
