:root {
  --primary: #1F2E88;
  --primary-dark: #0284c7;
  --secondary: #0284c7;
  --background: #F0F5F7;
  --foreground: #0c2d4a;
  --card: #ffffff;
  --muted: #222;
  --border: #e2e8f0;
  --radius: 0.5rem;
  --light-bg: #f0f5f7;
  --card-shadow: rgba(0,0,0,0.02) 0px 1px 3px 0px, rgba(27,31,35,0.15) 0px 0px 0px 1px;
  --card-hover-shadow: rgba(17,17,26,0.05) 0px 1px 0px, rgba(17,17,26,0.1) 0px 0px 8px;
  --f-base:  "Poppins", sans-serif;
  --f-second: "Inter", sans-serif;
  --f-third: "Audiowide", sans-serif;
}


  @font-face {
    font-family: 'Inter';
    src: url('/assets/fonts/Inter_28pt-Regular.woff2') format('woff2'),
         url('/assets/fonts/Inter_28pt-Regular.woff') format('woff'),
         url('/assets/fonts/Inter_28pt-Regular.ttf') format('truetype');
         font-weight: normal;
         font-style: normal;
         font-display: swap;
  }
  
  @font-face {
    font-family: 'Poppins';
    src: url('/assets/fonts/Poppins-Regular.woff2') format('woff2'),
         url('/assets/fonts/Poppins-Regular.woff') format('woff'),
         url('/assets/fonts/Poppins-Regular.ttf') format('truetype');
         font-weight: normal;
         font-style: normal;
         font-display: swap;
  }

  @font-face {
    font-family: 'Audiowide';
    src: url('/assets/fonts/Audiowide-Regular.woff2') format('woff2'),
         url('/assets/fonts/Audiowide-Regular.woff') format('woff'),
         url('/assets/fonts/Audiowide-Regular.ttf') format('truetype');
         font-weight: normal;
         font-style: normal;
         font-display: swap;
  }





*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  /* font-family: 'DM Sans', sans-serif; */
  font-family: var(--f-second);
  background: var(--background);
  color: var(--foreground);
  overflow-x: hidden;
}

.s-p-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── HERO ── */
.s-p-hero {
  background: var(--primary);
  position: relative;
  overflow: hidden;
  padding: 140px 0 72px;
}
.s-p-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 100% at 85% 50%, rgba(2,132,199,0.32) 0%, transparent 65%),
    radial-gradient(ellipse 40% 70% at 0% 100%, rgba(2,132,199,0.18) 0%, transparent 60%);
}
.s-p-hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.07);
  pointer-events: none;
}
.s-p-hero-ring-1 { width: 500px; height: 500px; top: -220px; right: -60px; }
.s-p-hero-ring-2 { width: 300px; height: 300px; bottom: -130px; right: 220px; }
.s-p-hero-ring-3 { width: 180px; height: 180px; top: 30px; left: -60px; }

.s-p-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
.s-p-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  padding: 0.3rem 1rem;
  font-size: 0.73rem;
  color: #bfdbfe;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.s-p-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #38bdf8;
  animation: s-p-pulse 1.8s infinite;
}
@keyframes s-p-pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(1.5)} }

.s-p-hero h2 {
  /* font-family: 'Playfair Display', serif; */
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 1rem;
}
.s-p-hero h2 em { color: #7dd3fc; font-style: normal; }
.s-p-hero-desc {
  color: #bfdbfe;
  font-size: 1rem;
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 2rem;
}
.s-p-hero-pills { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.s-p-hero-pill {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  color: #e0f2fe;
}
.s-p-hero-pill svg { color: #7dd3fc; flex-shrink: 0; }

.s-p-hero-visual {
  flex-shrink: 0;
}
.s-p-hero-img-single {
  border-radius: 1.25rem;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.15);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.s-p-hero-img-single img {
  width: 340px;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* ── SHARED SECTION ── */
.s-p-section { padding: 72px 0; }
.s-p-section-alt { background: var(--card); }

.s-p-section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #dbeafe;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.28rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 0.85rem;
}
.s-p-section-title {
  /* font-family: 'Playfair Display', serif; */
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--foreground);
  line-height: 1.22;
  margin-bottom: 0.75rem;
}

.s-p-section-title span{
  color: var(--primary);
}


.s-p-section-sub {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 680px;
}
.s-p-section-header { margin-bottom: 3rem; }
.s-p-section-header.center { text-align: center; }
.s-p-section-header.center .s-p-section-sub { margin: 0 auto; }

.s-p-section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ── SERVICES GRID ── */
.s-p-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.s-p-service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.1rem;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: box-shadow 0.25s, border-color 0.25s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}
.s-p-service-card:hover { box-shadow: var(--card-hover-shadow); border-color: #bfdbfe; }
.s-p-service-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--light-bg);
}
.s-p-service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
  will-change: transform;
  transform: translateZ(0);
}
.s-p-service-card:hover .s-p-service-card-img img { transform: scale(1.05) translateZ(0); }
.s-p-service-card-body { padding: 1.1rem 1.2rem 1.3rem; }
.s-p-service-icon-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.6rem;
}
.s-p-service-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: #eff6ff;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  transition: background 0.2s;
}
.s-p-service-card:hover .s-p-service-icon { background: var(--primary); color: #fff; }
.s-p-service-card-title {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--foreground);
  line-height: 1.3;
  transition: color 0.2s;
}
.s-p-service-card:hover .s-p-service-card-title { color: var(--primary); }
.s-p-service-card-desc { font-size: 0.8rem; color: #64748b; line-height: 1.6; }

/* ── FACILITIES ── */
.s-p-facilities-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.s-p-facilities-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 180px;
  gap: 1rem;
  position: relative;
}
.s-p-mosaic-img { border-radius: 1rem; overflow: hidden; box-shadow: var(--card-shadow); }
.s-p-mosaic-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.s-p-mosaic-img:first-child { grid-row: span 2; border-radius: 1.25rem; }
.s-p-mosaic-badge {
  position: absolute;
  bottom: 1rem; left: 1rem;
  background: var(--primary);
  color: #fff;
  border-radius: 0.75rem;
  padding: 0.75rem 1.1rem;
  display: flex; align-items: center; gap: 0.6rem;
  box-shadow: 0 8px 24px rgba(31,46,136,0.3);
  font-size: 0.85rem;
  font-weight: 600;
}
.s-p-mosaic-badge svg { flex-shrink: 0; }

.s-p-facilities-list { display: flex; flex-direction: column; gap: 1.1rem; margin-top: 2rem; }
.s-p-facility-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  box-shadow: var(--card-shadow);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.s-p-facility-item:hover { box-shadow: var(--card-hover-shadow); border-color: #bfdbfe; }
.s-p-facility-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: #eff6ff;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.s-p-facility-item h4 { font-size: 0.92rem; font-weight: 600; color: var(--foreground); margin-bottom: 0.2rem; }
.s-p-facility-item p { font-size: 0.8rem; color: #64748b; line-height: 1.55; }

/* ── TECHNOLOGY ── */
.s-p-tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.s-p-tech-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: box-shadow 0.25s, transform 0.25s;
}
.s-p-tech-card:hover { box-shadow: var(--card-hover-shadow); transform: translateY(-3px); }
.s-p-tech-card-img { width: 100%; aspect-ratio: 4/3; overflow: hidden; }
.s-p-tech-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.s-p-tech-card:hover .s-p-tech-card-img img { transform: scale(1.06); }
.s-p-tech-card-body { padding: 1rem 1.1rem 1.2rem; }
.s-p-tech-card-body h4 { font-size: 0.88rem; font-weight: 600; color: var(--foreground); margin-bottom: 0.25rem; }
.s-p-tech-card-body p { font-size: 0.76rem; color: #64748b; line-height: 1.55; }

/* ── CTA ── */
.s-p-cta {
  background: linear-gradient(135deg, var(--primary) 0%, #1a4fa0 50%, var(--secondary) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.s-p-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.s-p-cta h2 {
  /* font-family: 'Playfair Display', serif; */
  font-family: var(--f-second);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
}
.s-p-cta p {
  color: #bfdbfe;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
  line-height: 1.7;
  position: relative;
}
.s-p-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }
.s-p-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.85rem 2rem;
  border-radius: 0.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  border: none;
  /* font-family: 'DM Sans', sans-serif; */
  font-family: var(--f-second)
}
.s-p-btn-white { background: #fff; color: var(--primary); }
.s-p-btn-white:hover { background: #f0f9ff; box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.s-p-btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.5); }
.s-p-btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.8); }

/* ── SCROLL REVEAL ── */
.s-p-reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.s-p-reveal.visible { opacity: 1; transform: none; }
.s-p-reveal-d1 { transition-delay: 0.08s; }
.s-p-reveal-d2 { transition-delay: 0.16s; }
.s-p-reveal-d3 { transition-delay: 0.24s; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .s-p-services-grid { grid-template-columns: repeat(3, 1fr); }
  .s-p-tech-grid { grid-template-columns: repeat(2, 1fr); }
  .s-p-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .s-p-hero-inner { grid-template-columns: 1fr; }
  .s-p-hero-visual { display: none; }
  .s-p-facilities-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .s-p-services-grid { grid-template-columns: 1fr; }
  .s-p-tech-grid { grid-template-columns: 1fr; }
}
@media (max-width: 580px) {
  .s-p-services-grid { grid-template-columns: 1fr; }
  .s-p-tech-grid { grid-template-columns: 1fr; }
  .s-p-container { padding: 0 1.1rem; }
  .s-p-section { padding: 52px 0; }
}