/* =============================================
   AKUNEX INTERNATIONAL — PREMIUM STYLESHEET
   ============================================= */

:root {
  --primary: #ffffff;
  --bg-soft: #eaf4ff;
  --accent: #1e3a5f;
  --highlight: #6ca6ff;
  --gradient: linear-gradient(135deg, #1e3a5f 0%, #6ca6ff 100%);
  --gradient-soft: linear-gradient(135deg, #eaf4ff 0%, #ffffff 100%);
  --text: #0f1f35;
  --text-muted: #5a7290;
  --border: rgba(108, 166, 255, 0.18);
  --glass-bg: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(108, 166, 255, 0.22);
  --shadow: 0 8px 40px rgba(30, 58, 95, 0.12);
  --shadow-lg: 0 20px 60px rgba(30, 58, 95, 0.18);
  --radius: 18px;
  --radius-lg: 28px;
  --font: "Inter", sans-serif;
  --font-display: "Playfair Display", serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--primary);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}

/* === SCROLL PROGRESS === */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--gradient);
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
}

/* === CURSOR GLOW === */
#cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(108, 166, 255, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: transform 0.08s;
}

/* === CONTAINER === */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-pad {
  padding: 100px 0;
}

/* === TYPOGRAPHY === */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: rgba(108, 166, 255, 0.12);
  border: 1.5px solid rgba(108, 166, 255, 0.3);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--highlight);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-tag.light {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 620px;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header .section-desc {
  margin: 0 auto;
}
.section-cta {
  text-align: center;
  margin-top: 3rem;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  border: none;
  font-family: var(--font);
}
.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 6px 24px rgba(108, 166, 255, 0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(108, 166, 255, 0.5);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2.5px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-3px);
}
.btn-white {
  background: #fff;
  color: var(--accent);
}
.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2.5px solid rgba(255, 255, 255, 0.7);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}
.btn-sm {
  padding: 14px 26px;
    border-radius: 50px;
    white-space: nowrap;
}

/* === GLASS CARD === */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* === BLOBS === */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: blobFloat 8s ease-in-out infinite;
}
.blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(108, 166, 255, 0.3), transparent);
  top: -150px;
  right: -100px;
}
.blob-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(30, 58, 95, 0.15), transparent);
  bottom: 0;
  left: -100px;
  animation-delay: -4s;
}
.blob-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(108, 166, 255, 0.2), transparent);
  top: 50%;
  left: 40%;
  animation-delay: -2s;
}

/* ===================== HEADER ===================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.4s ease;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:16px 30px;
    max-width: 1400px;
    margin: auto;
    gap: 20px;
      width:100%;
}
.site-header.scrolled .navbar {
   background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(108,166,255,0.15);
}

.site-header.scrolled .nav-link {
  color: #fff;
}

.site-header.scrolled .nav-link:hover {
  color: #1E3A5F;
  background: rgba(108,166,255,0.1);
}

/* Logo text scroll पर dark */
.site-header.scrolled .logo-main {
  color: #1E3A5F;
}

.site-header.scrolled .logo-sub {
  color: #5a7290;
}

/* Hamburger lines scroll पर dark */
.site-header.scrolled .hamburger span {
  background: #1E3A5F;
}


















/* LOGO FIX */
.logo{
    flex-shrink:0;
}


.logo-mark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 4px 16px rgba(108, 166, 255, 0.4);
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-main {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: 0.02em;
}
.logo-sub {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;   /* spacing between menu */
    list-style: none;
    margin: 0 auto;
}
.nav-link {
  position: relative;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 10px 12px;
  border-radius: 50px;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.nav-link:hover {
  background: rgba(108, 166, 255, 0.1);
  color: var(--accent);
}
.nav-link.active {
  color: var(--highlight);
}

/* MEGA MENU */
.has-mega {
  position: relative;
}
.mega-menu {
  position: absolute;
  top: calc(100% + 0.8rem);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  width: 520px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  pointer-events: none;
}
.has-mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}
.mega-menu a {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  text-decoration: none;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  transition: background 0.2s;
}
.mega-menu a:hover {
  background: rgba(108, 166, 255, 0.08);
}
.mega-menu a i {
  font-size: 1.2rem;
  color: var(--highlight);
  margin-top: 0.15rem;
}
.mega-menu a strong {
  color: var(--text);
  font-size: 0.88rem;
  display: block;
}
.mega-menu a span {
  color: var(--text-muted);
  font-size: 0.78rem;
}

.nav-actions{
    display:flex;
    align-items:center;
    margin-left:auto;
    flex-shrink:0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 2.5px;
  background: var(--accent);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5.5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5.5px);
}

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f3ff 50%, #f8fbff 100%);
  padding: 8rem 2.5rem 4rem;
}
.hero-bg-blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-content {
  flex: 0 0 55%;
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  background: rgba(108, 166, 255, 0.12);
  border: 1.5px solid rgba(108, 166, 255, 0.3);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--highlight);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 1.4rem;
  color: var(--text);
}
.hero-subtitle {
  font-size: 1.12rem;
  color: var(--text-muted);
  margin-bottom: 2.2rem;
  line-height: 1.8;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
}
.trust-item i {
  color: var(--highlight);
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
}
.hero-img-wrapper {
  position: relative;
  width: 520px;
  max-width: 100%;
}
.hero-main-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  height: 480px;
}
.hero-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.2rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent);
  animation: cardFloat 4s ease-in-out infinite;
}
.hero-card i {
  font-size: 1.3rem;
  color: var(--highlight);
}
.hero-card-1 {
  top: 1.5rem;
  left: -2rem;
  animation-delay: 0s;
}
.hero-card-2 {
  bottom: 5rem;
  left: -2.5rem;
  animation-delay: -1.5s;
}
.hero-card-3 {
  top: 40%;
  right: -1.5rem;
  animation-delay: -3s;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.scroll-dot {
  width: 6px;
  height: 30px;
  border: 2px solid var(--highlight);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}
.scroll-dot::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: var(--highlight);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}

/* ===================== STATS ===================== */
.stats-section {
  padding: 50px 0;
  background: #fff;
  position: relative;
  z-index: 2;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.stat-card {
  text-align: center;
  padding: 2.2rem 1.5rem;
  transition: transform 0.3s;
}
.stat-card:hover {
  transform: translateY(-6px);
}
.stat-icon {
  font-size: 2rem;
  color: var(--highlight);
  margin-bottom: 0.8rem;
}
.stat-number {
  font-size: 2.8rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: inline;
}
.stat-plus {
  font-size: 1.8rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

/* ===================== ABOUT ===================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  height: 480px;
}
.about-badge-floating {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.8rem;
}
.about-badge-floating strong {
  display: block;
  font-size: 1rem;
  color: var(--accent);
}
.about-badge-floating span {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.about-points {
  list-style: none;
  margin: 1.5rem 0 2rem;
}
.about-points li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}
.about-points li i {
  color: var(--highlight);
  font-size: 1rem;
}
.about-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}
.meta-box {
  padding: 1rem 1.2rem;
  background: var(--bg-soft);
  border-radius: 12px;
  border: 1.5px solid var(--border);
}
.meta-box strong {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}
.meta-box span {
  font-weight: 700;
  color: var(--accent);
  font-size: 0.92rem;
}

/* ===================== SERVICES ===================== */
.services-section {
  background: var(--bg-soft);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.service-card {
  padding: 2.2rem;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.35s;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 6px 20px rgba(108, 166, 255, 0.3);
}
.service-card h3 {
  font-size: 1.12rem;
  font-weight: 800;
  margin-bottom: 0.7rem;
  color: var(--accent);
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.93rem;
  margin-bottom: 1.2rem;
}
.service-link {
  color: var(--highlight);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.25s;
}
.service-link:hover {
  gap: 0.7rem;
}

/* SERVICE DETAIL CARDS (services.html) */
.service-detail-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  padding: 2.5rem;
  margin-bottom: 2rem;
  align-items: start;
  transition: transform 0.3s;
}
.service-detail-card:hover {
  transform: translateY(-4px);
}
.service-detail-card.reverse {
  grid-template-columns: auto auto 1fr;
}
.service-detail-card.reverse .sdc-img {
  order: -1;
}
.service-detail-card.reverse .sdc-icon {
  order: 0;
}
.service-detail-card.reverse .sdc-content {
  order: 1;
}
.sdc-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(108, 166, 255, 0.3);
}
.sdc-content h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.8rem;
}
.sdc-content p {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}
.sdc-img {
  width: 200px;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  flex-shrink: 0;
}
.service-features {
  list-style: none;
}
.service-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}
.service-features li i {
  color: var(--highlight);
}
.import-items-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}
.import-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
  padding: 0.8rem 0.5rem;
  background: var(--bg-soft);
  border-radius: 10px;
  border: 1.5px solid var(--border);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  transition: all 0.25s;
}
.import-item i {
  font-size: 1.3rem;
  color: var(--highlight);
}
.import-item:hover {
  background: var(--gradient);
  color: #fff;
}
.import-item:hover i {
  color: #fff;
}

/* ===================== WHY ===================== */
.why-section {
  background: var(--primary);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.why-card {
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  position: relative;
  transition: all 0.35s;
}
.why-card:hover {
  background: var(--gradient);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.why-card:hover h4,
.why-card:hover p,
.why-card:hover .why-num {
  color: rgba(255, 255, 255, 0.9);
}
.why-card:hover .why-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.why-num {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(108, 166, 255, 0.2);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
  transition: color 0.35s;
}
.why-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(108, 166, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--highlight);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  transition: all 0.35s;
}
.why-card h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.6rem;
  transition: color 0.35s;
}
.why-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.35s;
}

/* ===================== GLOBAL ===================== */
.global-section {
  background: var(--bg-soft);
}
.global-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem;
}
.global-img-area img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  height: 380px;
}
.global-features {
  display: flex;
  gap: 1.5rem;
  margin: 1.5rem 0 2rem;
  flex-wrap: wrap;
}
.gf-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--accent);
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  background: rgba(108, 166, 255, 0.1);
  border-radius: 50px;
}
.gf-item i {
  color: var(--highlight);
}

/* ===================== INDUSTRIES ===================== */
.industries-section {
  background: var(--primary);
}
.industries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.industry-chip {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  background: var(--bg-soft);
  border: 2px solid var(--border);
  border-radius: 50px;
  font-weight: 700;
  color: var(--accent);
  font-size: 0.95rem;
  cursor: default;
  transition: all 0.3s;
}
.industry-chip i {
  color: var(--highlight);
  font-size: 1.1rem;
}
.industry-chip:hover {
  background: var(--gradient);
  color: #fff;
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(108, 166, 255, 0.35);
}
.industry-chip:hover i {
  color: #fff;
}

/* INDUSTRY CARDS (industries.html) */
.industry-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}
.ind-card {
  overflow: hidden;
  transition:
    transform 0.35s,
    box-shadow 0.35s;
}
.ind-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.ind-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.4s;
}
.ind-card:hover img {
  transform: scale(1.05);
}
.ind-card-body {
  padding: 1.5rem;
}
.ind-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}
.ind-card-body h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.ind-card-body p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
}
.ind-card-body ul {
  list-style: none;
}
.ind-card-body ul li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 0.2rem 0;
}
.ind-card-body ul li::before {
  content: "→ ";
  color: var(--highlight);
}

/* ===================== TESTIMONIALS ===================== */
.testimonials-section {
  background: var(--bg-soft);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial-card {
  padding: 2.2rem;
  transition: transform 0.35s;
}
.testimonial-card:hover {
  transform: translateY(-6px);
}
.stars {
  color: #f59e0b;
  margin-bottom: 1rem;
}
.testimonial-card p {
  color: var(--text-muted);
  font-style: italic;
  font-size: 0.97rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.95rem;
}
.testi-author strong {
  display: block;
  color: var(--accent);
  font-weight: 800;
}
.testi-author span {
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* ===================== FAQ ===================== */
.faq-section {
  background: var(--primary);
}
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}
.faq-category {
  margin-bottom: 2.5rem;
}
.faq-cat-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.faq-cat-title i {
  color: var(--highlight);
}
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 0.85rem;
  background: #fff;
  transition: box-shadow 0.25s;
}
.faq-item:hover {
  box-shadow: var(--shadow);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  font-weight: 700;
  color: var(--accent);
  gap: 1rem;
}
.faq-q i {
  color: var(--highlight);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-q.open i {
  transform: rotate(45deg);
}
.faq-a {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.faq-a.open {
  max-height: 400px;
  padding: 0 1.5rem 1.2rem;
}

/* ===================== CTA SECTION ===================== */
.cta-section {
  background: var(--gradient);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-blob {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  top: -200px;
  right: -100px;
}
.cta-inner {
  position: relative;
  z-index: 2;
}
.cta-inner h2 {
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.8rem;
}
.cta-inner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===================== VM CARDS ===================== */
.vm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.vm-card {
  padding: 2.5rem;
  transition: transform 0.35s;
}
.vm-card:hover {
  transform: translateY(-6px);
}
.vm-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 6px 20px rgba(108, 166, 255, 0.3);
}
.vm-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.8rem;
}
.vm-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===================== TIMELINE ===================== */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gradient);
  transform: translateX(-50%);
}
.timeline-item {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
  position: relative;
}
.timeline-item.right {
  flex-direction: row-reverse;
}
.tl-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(108, 166, 255, 0.4);
  z-index: 2;
}
.tl-card {
  width: calc(50% - 3.5rem);
  padding: 1.8rem;
}
.timeline-item.right .tl-card {
  margin-left: auto;
}
.tl-card h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.tl-card h4 i {
  color: var(--highlight);
}
.tl-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===================== VALUES ===================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.value-item {
  text-align: center;
  padding: 2.2rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1.5px solid var(--border);
  transition: all 0.35s;
}
.value-item:hover {
  background: var(--gradient);
  transform: translateY(-6px);
  border-color: transparent;
}
.value-item:hover i,
.value-item:hover h4,
.value-item:hover p {
  color: #fff;
}
.value-item i {
  font-size: 2rem;
  color: var(--highlight);
  margin-bottom: 0.8rem;
  transition: color 0.35s;
}
.value-item h4 {
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.5rem;
  transition: color 0.35s;
}
.value-item p {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color 0.35s;
}

/* ===================== PAGE HERO ===================== */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0d1f35 0%, #1e3a5f 100%);
  padding: 8rem 2.5rem 5rem;
}
.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}
.page-hero-blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.page-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
}
.page-hero-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.2rem;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
.breadcrumb a:hover {
  color: #fff;
}
.breadcrumb i {
  font-size: 0.7rem;
}

/* ===================== CONTACT PAGE ===================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-detail-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.cd-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
}
.cd-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}
.cd-card strong {
  display: block;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.cd-card p,
.cd-card a {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-decoration: none;
}
.cd-card a:hover {
  color: var(--highlight);
}
.social-links {
  display: flex;
  gap: 1rem;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.3s;
}
.social-btn.wa {
  background: #25d366;
  color: #fff;
}
.social-btn.em {
  background: var(--gradient);
  color: #fff;
}
.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.contact-form-card {
  padding: 2.5rem;
}
.contact-form-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1.2rem;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-size: 0.93rem;
  font-family: var(--font);
  color: var(--text);
  background: #fff;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--highlight);
  box-shadow: 0 0 0 4px rgba(108, 166, 255, 0.12);
}
.form-group textarea {
  resize: vertical;
}

/* ===================== FOOTER ===================== */
.site-footer {
  background: linear-gradient(160deg, #0d1f35 0%, #1e3a5f 100%);
  color: rgba(255, 255, 255, 0.8);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.footer-blobs {
  position: absolute;
  inset: 0;
  opacity: 0.3;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  position: relative;
  z-index: 2;
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.footer-certs {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  background: rgba(108, 166, 255, 0.12);
  border: 1px solid rgba(108, 166, 255, 0.25);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  width: fit-content;
}
.footer-col h4 {
  color: #fff;
  font-weight: 800;
  margin-bottom: 1.2rem;
  font-size: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid rgba(108, 166, 255, 0.3);
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 0.6rem;
}
.footer-col ul a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  transition:
    color 0.25s,
    gap 0.25s;
}
.footer-col ul a i {
  font-size: 0.7rem;
  color: var(--highlight);
}
.footer-col ul a:hover {
  color: #fff;
  gap: 0.8rem;
}
.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}
.fci {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.fci i {
  color: var(--highlight);
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.fci p,
.fci a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  text-decoration: none;
  line-height: 1.6;
}
.fci a:hover {
  color: #fff;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(108, 166, 255, 0.15);
  border: 1px solid rgba(108, 166, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s;
}
.social-icon:hover {
  background: var(--highlight);
  color: #fff;
  transform: translateY(-3px);
}
.footer-bottom {
  margin-top: 4rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(108, 166, 255, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.82rem;
}

/* ===================== WHATSAPP FLOAT ===================== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  animation: waPulse 2.5s ease-in-out infinite;
  transition: transform 0.3s;
}
.whatsapp-float:hover {
  transform: scale(1.12);
}

/* ===================== POPUP ===================== */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}
.popup-overlay.open {
  opacity: 1;
  visibility: visible;
}
.popup-card {
  padding: 2.5rem;
  width: 90%;
  max-width: 460px;
  position: relative;
  animation: popupIn 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(108, 166, 255, 0.1);
  border: none;
  cursor: pointer;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
}
.popup-close:hover {
  background: rgba(108, 166, 255, 0.2);
}
.popup-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.popup-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.popup-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.popup-form input,
.popup-form select {
  padding: 0.85rem 1.1rem;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-size: 0.92rem;
  outline: none;
  font-family: var(--font);
  transition: border-color 0.25s;
}
.popup-form input:focus,
.popup-form select:focus {
  border-color: var(--highlight);
}

















/* =============================================
   HERO SLIDER — PREMIUM REDESIGN
   ============================================= */

/* Reset old hero */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  max-height: 1080px;
  overflow: hidden;
  padding: 0 !important;
  display: block !important;
  background: #0d1f35;
}

/* SLIDER */
.hero-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* EACH SLIDE */
.slide {
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity .9s cubic-bezier(.4,0,.2,1), transform 6s ease;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 8% 120px;
}
.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}
.slide.prev-slide {
  opacity: 0;
  transform: scale(1.04);
  z-index: 1;
}

/* OVERLAY — dark gradient from left */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(5, 15, 30, 0.88) 0%,
    rgba(10, 25, 50, 0.70) 40%,
    rgba(10, 30, 60, 0.25) 70%,
    transparent 100%
  );
  z-index: 1;
}

/* SLIDE CONTENT */
.slide-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  color: #fff;
}

/* BADGE */
.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .5rem 1.3rem;
  background: rgba(108, 166, 255, 0.18);
  border: 1.5px solid rgba(108, 166, 255, 0.4);
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 700;
  color: #a8d0ff;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  backdrop-filter: blur(8px);
  animation: slideContentIn .8s .1s both;
}
.slide-badge i { font-size: 1rem; color: #6CA6FF; }

/* TITLE */
.slide-title {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 900;
  line-height: 1.06;
  color: #fff;
  margin-bottom: 1.3rem;
  letter-spacing: -.02em;
  animation: slideContentIn .8s .25s both;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

/* HIGHLIGHT (colored word) */
.slide-highlight {
  display: inline-block;
  background: linear-gradient(135deg, #6CA6FF 0%, #a8d8ff 50%, #6CA6FF 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideContentIn .8s .25s both, shimmerText 3s linear infinite;
}

@keyframes shimmerText {
  to { background-position: 200% center; }
}

/* SUBTITLE */
.slide-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  line-height: 1.85;
  margin-bottom: 2.2rem;
  max-width: 580px;
  animation: slideContentIn .8s .4s both;
}

/* CTA BUTTONS */
.slide-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: slideContentIn .8s .55s both;
}

/* GLASS BUTTON (new variant for slider) */
.btn-glass {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .9rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.1);
  color: #fff;
  backdrop-filter: blur(10px);
  transition: all .3s;
  font-family: var(--font);
}
.btn-glass:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}

/* SLIDE CONTENT ANIMATION */
.slide:not(.active) .slide-content > * {
  opacity: 0;
  transform: translateY(30px);
}
@keyframes slideContentIn {
  from { opacity: 0; transform: translateY(35px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== ARROWS ===== */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
}
.slider-arrow:hover {
  background: rgba(108,166,255,.5);
  border-color: rgba(108,166,255,.7);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 30px rgba(108,166,255,.4);
}
.slider-arrow.prev { left: 2.5rem; }
.slider-arrow.next { right: 2.5rem; }

/* ===== DOTS ===== */
.slider-dots {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .5rem;
  z-index: 10;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  border: none;
  cursor: pointer;
  transition: all .4s;
  padding: 0;
}
.dot.active {
  background: #6CA6FF;
  width: 32px;
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(108,166,255,.7);
}
.dot:hover:not(.active) { background: rgba(255,255,255,.6); }

/* ===== SLIDE COUNTER ===== */
.slide-counter {
  position: absolute;
  bottom: 145px;
  right: 2.5rem;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  font-weight: 700;
  color: rgba(255,255,255,.5);
}
#currentSlide {
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.counter-divider {
  width: 30px;
  height: 1.5px;
  background: rgba(255,255,255,.3);
  transform: rotate(-60deg);
}



/* ===== TRUST STRIP ===== */
.hero-trust-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: rgba(5,15,30,.75);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(108,166,255,.2);
  padding: 1.1rem 0;
}
.trust-strip-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.trust-strip-item {
  display: flex;
  align-items: center;
  gap: .85rem;
  flex-shrink: 0;
}
.trust-strip-item > i {
  font-size: 1.6rem;
  color: #6CA6FF;
  flex-shrink: 0;
}
.trust-strip-item strong {
  display: block;
  color: #fff;
  font-size: .9rem;
  font-weight: 800;
  line-height: 1;
}
.trust-strip-item span {
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  font-weight: 500;
}
.trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(108,166,255,.25);
  flex-shrink: 0;
}

/* ===== RESPONSIVE SLIDER ===== */
@media (max-width: 900px) {
  .slide { padding: 0 6% 150px; justify-content: center; text-align: center; }
  .slide-overlay { background: rgba(5,15,30,.78); }
  .slide-cta { justify-content: center; }
  .slider-dots { left: 50%; transform: translateX(-50%); bottom: 145px; }
  .slide-counter { display: none; }
  .slider-arrow.prev { left: 1rem; }
  .slider-arrow.next { right: 1rem; }
  .trust-strip-inner { gap: 1rem; flex-wrap: wrap; justify-content: center; }
  .trust-divider { display: none; }
  .slide-title { font-size: clamp(2rem, 7vw, 3.2rem); }
}

@media (max-width: 480px) {
  .slide { padding: 0 4% 180px; }
  .slide-title { font-size: 2rem; }
  .slide-sub { font-size: .93rem; }
  .slider-arrow { width: 44px; height: 44px; font-size: .9rem; }
  .trust-strip-item span { display: none; }
  .trust-strip-item strong { font-size: .8rem; }
}





















/* REMOVE SIDE GAP */
body{
    margin:0;
    padding:0;
    overflow-x:hidden;
}

/* HEADER FULL WIDTH */
.site-header{
    width:100%;
    left:0;
    right:0;
    top:0;
}

/* NAVBAR FULL WIDTH */
.navbar{
    width:100%;
    max-width:100% !important;
    padding:16px 15px !important; /* side gap almost remove */
    margin:0;
    border-radius:0;
}

/* CONTAINER FIX */
.container{
    max-width:100% !important;
    padding-left:15px !important;
    padding-right:15px !important;
}


/* DEFAULT (Hero par white text) */
.nav-link{
    color:#ffffff;
    transition:0.3s ease;
}

/* SCROLL KE BAAD NAVBAR WHITE */
.site-header.scrolled .navbar{
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* SCROLL PAR LINKS DARK */
.site-header.scrolled .nav-link{
    color:#1E3A5F !important;
    opacity:1 !important;
}

/* HOVER */
.site-header.scrolled .nav-link:hover{
    color:#4E8DFF !important;
}

/* ACTIVE LINK */
.site-header.scrolled .nav-link.active{
    color:#4E8DFF !important;
}

/* LOGO TEXT */
.site-header.scrolled .logo-main{
    color:#1E3A5F !important;
}

.site-header.scrolled .logo-sub{
    color:#5f7291 !important;
}



























/* =============================================
   BLANK SECTIONS FIX — ADD AT END OF style.css
   ============================================= */

/* === AOS FALLBACK — अगर AOS load न हो तो elements दिखें === */
[data-aos] {
  opacity: 1 !important;
  transform: none !important;
  transition: opacity 0.7s ease, transform 0.7s ease !important;
}
[data-aos].aos-animate {
  opacity: 1 !important;
  transform: none !important;
}

/* === STATS SECTION FIX === */
.stats-section {
  background: #EAF4FF;
  padding: 70px 0;
  position: relative;
  z-index: 2;
}
.stat-card {
  background: #ffffff !important;
  border: 2px solid rgba(108,166,255,0.2) !important;
  border-radius: 20px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(30,58,95,0.1) !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* === ABOUT SECTION FIX === */
.about-section {
  background: #ffffff;
  padding: 100px 0;
  display: block !important;
  visibility: visible !important;
}
.about-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  opacity: 1 !important;
  visibility: visible !important;
}
.about-visual {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  position: relative;
}
.about-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(30,58,95,0.18);
  display: block !important;
}
.about-content {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* === SERVICES SECTION FIX === */
.services-section {
  background: #EAF4FF !important;
  padding: 100px 0 !important;
  display: block !important;
  visibility: visible !important;
}
.services-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.8rem;
  opacity: 1 !important;
  visibility: visible !important;
}
.service-card {
  background: #ffffff !important;
  border: 2px solid rgba(108,166,255,0.15) !important;
  border-radius: 20px !important;
  padding: 2.2rem !important;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  box-shadow: 0 8px 30px rgba(30,58,95,0.08) !important;
}
.service-card h3 {
  color: #1E3A5F !important;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.7rem;
}
.service-card p {
  color: #5a7290 !important;
}

/* === WHY SECTION FIX === */
.why-section {
  background: #ffffff !important;
  padding: 100px 0 !important;
  display: block !important;
}
.why-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 1.8rem;
  opacity: 1 !important;
  visibility: visible !important;
}
.why-card {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  background: #EAF4FF !important;
  border: 2px solid rgba(108,166,255,0.18) !important;
  border-radius: 18px;
  padding: 2.5rem 2rem;
}

/* === GLOBAL REACH FIX === */
.global-section {
  background: #EAF4FF !important;
  padding: 100px 0 !important;
  display: block !important;
}
.global-inner {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 4rem;
  align-items: center;
  padding: 4rem;
  background: #ffffff !important;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(30,58,95,0.12) !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.global-img-area {
  display: block !important;
  opacity: 1 !important;
}
.global-img-area img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 16px;
}

/* === INDUSTRIES SECTION FIX === */
.industries-section {
  background: #ffffff !important;
  padding: 100px 0 !important;
  display: block !important;
}
.industries-grid {
  display: flex !important;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  opacity: 1 !important;
  visibility: visible !important;
}
.industry-chip {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
  background: #EAF4FF !important;
  border: 2px solid rgba(108,166,255,0.25) !important;
}

/* === TESTIMONIALS FIX === */
.testimonials-section {
  background: #EAF4FF !important;
  padding: 100px 0 !important;
  display: block !important;
}
.testimonials-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 2rem;
  opacity: 1 !important;
  visibility: visible !important;
}
.testimonial-card {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  background: #ffffff !important;
  border: 2px solid rgba(108,166,255,0.15) !important;
  border-radius: 20px;
  padding: 2.2rem;
  box-shadow: 0 8px 30px rgba(30,58,95,0.08) !important;
}

/* === FAQ SECTION FIX === */
.faq-section {
  background: #ffffff !important;
  padding: 100px 0 !important;
  display: block !important;
}
.faq-grid {
  opacity: 1 !important;
  visibility: visible !important;
}
.faq-item {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  border: 2px solid rgba(108,166,255,0.18) !important;
  border-radius: 14px;
  margin-bottom: 1rem;
  background: #fff !important;
  box-shadow: 0 4px 16px rgba(30,58,95,0.06) !important;
}

/* === SECTION HEADER FIX === */
.section-header {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  text-align: center;
  margin-bottom: 4rem;
}
.section-tag {
  opacity: 1 !important;
  visibility: visible !important;
}
.section-title {
  opacity: 1 !important;
  visibility: visible !important;
  color: #0f1f35 !important;
}
.section-desc {
  opacity: 1 !important;
  visibility: visible !important;
}

/* === CONTAINER FIX OVERRIDE === */
.container {
  max-width: 1240px !important;
  margin: 0 auto !important;
  padding: 0 2rem !important;
  width: 100%;
}

/* === RESPONSIVE FIX FOR ABOVE === */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .why-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .global-inner { grid-template-columns: 1fr !important; padding: 2.5rem !important; }
  .global-img-area img { height: 280px; }
}
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .about-visual { display: none !important; }
  .services-grid { grid-template-columns: 1fr !important; }
  .why-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .testimonials-grid { grid-template-columns: 1fr !important; }
  .stats-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr !important; }
  .stats-grid { grid-template-columns: repeat(2, 1fr) !important; }
}