/* ===== Global Enhancements ===== */
body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

/* Hide scroll progress initially */
#scroll-progress {
    width: 0%;
}

/* Text gradient utility */
.text-gradient-navy {
    background: linear-gradient(135deg, #0F2B46, #1BBC9B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Swiper active bullet */
.swiper-pagination-bullet-active {
    background: #0F2B46 !important;
}

/* ===== Hero Section ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('/asset/img/banner-surajbrandartist.webp');
    background-size: cover;
    background-position: center;
    position: relative;
    margin: 0;
    padding: 6rem 0;        /* consistent vertical spacing */
}



.hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;      /* 24px on all sides */
}

.hero-content {
    width: 100%;
    text-align: left;
    max-width: 700px;       /* optimal reading width */
}

.hero-badge {
    background: rgba(45,212,191,0.2);
    color: #5eead4;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(94,234,212,0.3);
}

.hero-headline {
    color: white;
    font-size: clamp(2.2rem, 8vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-top: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    word-break: break-word;
}

.hero-subtitle {
    color: #e5e7eb;
    font-size: 1.1rem;
    margin-top: 1rem;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
    max-width: 500px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-primary {
    background: #14b8a6;
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(20,184,166,0.3);
    white-space: nowrap;
}
.btn-primary:hover {
    background: #0d9488;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(20,184,166,0.4);
}

.btn-secondary {
    border: 2px solid white;
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    white-space: nowrap;
}
.btn-secondary:hover {
    background: white;
    color: #0F2B46;
}

.hero-stat-card {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.15);
    margin-top: 2rem;
    color: white;
    transition: transform 0.3s;
}
.hero-stat-card:hover {
    transform: translateY(-5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 0;
        min-height: 100vh;
        background-position: 30% center;   /* adjust focus if needed */
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-headline {
        font-size: 2.2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .btn-primary,
    .btn-secondary {
        padding: 10px 22px;
        font-size: 0.95rem;
    }
}
/* ===== Services Sliding Strip ===== */
.services-strip {
    background: linear-gradient(135deg, #1e3a8a 0%, #25af9a 60%, #1e40af 100%);
    padding: 28px 0;
    overflow: hidden;
    position: relative;
}
.services-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 25px 25px, rgba(255,255,255,0.05) 2px, transparent 0);
    background-size: 50px 50px;
    z-index: 0;
}
.services-strip-inner {
    display: flex;
    animation: slideServices 25s linear infinite;
    width: fit-content;
    position: relative;
    z-index: 1;
}
.services-strip-inner:hover {
    animation-play-state: paused;
}

.service-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 12px 28px;
    border-radius: 50px;
    margin: 0 10px;
    transition: all 0.3s ease;
    white-space: nowrap;
    color: white;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
}
.service-pill:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.service-dot {
    width: 8px;
    height: 8px;
    background: #60a5fa;
    border-radius: 50%;
    animation: pulseDot 2s infinite;
}
.arrow {
    color: #5eead4;
    font-size: 18px;
    margin-left: 5px;
}

@keyframes slideServices {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

/* ===== Card Styles ===== */

.problems-section {
    padding: 80px 24px;
    background: #f7f8fa;
}

.problems-wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.prob-sec-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #1a56db;
    margin-bottom: 12px;
}

.prob-sec-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: #0a1628;
    margin: 0 0 8px;
    letter-spacing: -.02em;
    line-height: 1.2;
}

.prob-sec-sub {
    font-size: 15px;
    color: #7a8494;
    margin: 0 0 48px;
}

/* ── Grid: cards joined with 2px gap so borders merge ── */
.prob-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.prob-card {
    background: #ffffff;
    border: 1px solid #e2e6ed;
    padding: 32px 28px;
    transition: background .25s ease, transform .25s ease;
    cursor: default;
}

.prob-card:first-child {
    border-radius: 16px 0 0 16px;
}

.prob-card:last-child {
    border-radius: 0 16px 16px 0;
}

.prob-card:hover {
    background: #0a1628;
    transform: translateY(-4px);
    border-color: #0a1628;
    z-index: 1;
    position: relative;
}

.prob-card:hover .prob-num,
.prob-card:hover .prob-title,
.prob-card:hover .prob-desc {
    color: rgba(255, 255, 255, .9);
}

.prob-card:hover .prob-desc {
    color: rgba(255, 255, 255, .5);
}

.prob-card:hover .prob-icon {
    background: rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .7);
}

/* ── Number stamp ── */
.prob-num {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    color: #c0c8d8;
    margin-bottom: 20px;
    transition: color .25s;
}

/* ── Icon + title row ── */
.prob-icon-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.prob-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #e8f0fe;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a56db;
    font-size: 18px;
    flex-shrink: 0;
    transition: background .25s, color .25s;
}

.prob-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #0a1628;
    margin: 0;
    line-height: 1.3;
    transition: color .25s;
}

.prob-desc {
    font-size: 13px;
    color: #7a8494;
    line-height: 1.7;
    margin: 0;
    transition: color .25s;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .prob-grid {
        grid-template-columns: 1fr 1fr;
    }

    .prob-card:first-child {
        border-radius: 16px 0 0 0;
    }

    .prob-card:nth-child(2) {
        border-radius: 0 16px 0 0;
    }

    .prob-card:nth-child(3) {
        border-radius: 0 0 0 16px;
    }

    .prob-card:last-child {
        border-radius: 0 0 16px 0;
    }
}

@media (max-width: 560px) {
    .prob-grid {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .prob-card:first-child  { border-radius: 16px 16px 0 0; }
    .prob-card:nth-child(2) { border-radius: 0; }
    .prob-card:nth-child(3) { border-radius: 0; }
    .prob-card:last-child   { border-radius: 0 0 16px 16px; }
}




.why-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid #f3f4f6;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: all 0.3s;
}
.why-card:hover {
    border-color: rgba(27,188,155,0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
}

.service-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    border: 1px solid #f3f4f6;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s;
    height: 100%;
}
.service-card:hover {
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
}

.case-card {
    background: white;
    border: 1px solid #f3f4f6;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: all 0.3s;
}
.case-card:hover {
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.industry-card {
    background: white;
    padding: 1rem;
    border-radius: 0.75rem;
    border: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s;
}
.industry-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-color: #e5e7eb;
}


/* CSS Theme Variables */
:root {
  --color-navy: #0f172a;       /* Deep navy/slate */
  --color-teal: #0d9488;       /* Teal accent */
  --color-teal-light: rgba(13, 148, 136, 0.1);
  --color-navy-light: rgba(15, 23, 42, 0.05);
  --color-text-dark: #1e293b;
  --color-text-muted: #64748b;
  --color-bg-grey: #f8fafc;
  --color-border: #f1f5f9;
  --font-family-poppins: 'Poppins', sans-serif;
  --transition-speed: 0.3s;
}

/* Section Styles */
.services-section {
  position: relative;
  padding: 6rem 0;
 
 
  overflow: hidden;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

/* Background Decorative Glows */
.decor-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.4;
  z-index: 1;
}
.decor-glow-left {
  top: 0;
  left: 10%;
  background: var(--color-teal-light);
}
.decor-glow-right {
  bottom: 0;
  right: 10%;
  background: var(--color-navy-light);
}

/* Header Styles */
.services-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 5rem auto;
}

.pre-heading {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--color-teal-light);
  color: var(--color-teal);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

/* Pulsing dot inside pre-heading */
.pulse-dot {
  width: 6px;
  height: 6px;
  background-color: var(--color-teal);
  border-radius: 50%;
  position: relative;
}
.pulse-dot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--color-teal);
  animation: pulse-ring 1.5s infinite ease-in-out;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.8; }
  100% { transform: scale(2.5); opacity: 0; }
}

.services-title {
  font-family: var(--font-family-poppins);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.services-subtitle {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Services Grid Layout */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

/* Service Card Styles */
.service-card {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition-speed) cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow var(--transition-speed) ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.card-body {
  margin-bottom: 1.5rem;
}

/* Meta Section inside Card (Icon + Badge) */
.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.icon-container {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background-color: var(--color-navy-light);
  color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: background-color var(--transition-speed) ease, 
              color var(--transition-speed) ease;
}

.service-card:hover .icon-container {
  background-color: var(--color-teal);
  color: #ffffff;
}

.icon-container i {
  transition: transform var(--transition-speed) ease;
}

.service-card:hover .icon-container i {
  transform: scale(1.1);
}

.card-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: var(--color-teal-light);
  color: var(--color-teal);
  border: 1px solid rgba(13, 148, 136, 0.15);
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
}

/* Title & Description */
.card-title {
  font-family: var(--font-family-poppins);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 0.75rem;
  transition: color var(--transition-speed) ease;
}

.service-card:hover .card-title {
  color: var(--color-teal);
}

.card-desc {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* Card Action Footer */
.card-footer {
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-teal);
  transition: color var(--transition-speed) ease;
}

.service-card:hover .card-link {
  color: var(--color-navy);
}

.link-arrow {
  width: 1rem;
  height: 1rem;
  transition: transform var(--transition-speed) ease;
}

.service-card:hover .link-arrow {
  transform: translateX(4px);
}


/* ===== FAQ ===== */
.faq-item {
    transition: all 0.3s;
}
.faq-toggle i {
    transition: transform 0.3s;
}

/* ===== Form Inputs ===== */
.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    outline: none;
    transition: border 0.3s;
}
.form-input::placeholder {
    color: rgba(255,255,255,0.5);
}
.form-input:focus {
    border-color: #1BBC9B;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 768px) {
    .hero-section {
        background-position: center left;
    }
    .hero-headline {
        font-size: 2.2rem;
    }
    .services-strip {
        padding: 20px 0;
    }
    .service-pill {
        padding: 8px 20px;
        font-size: 13px;
    }
}



/* Glassmorphism Cards */
.glass-card {
    background-color: #14b8a6;

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  box-shadow: 0 8px 32px 0 rgba(2, 8, 19, 0.37);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.glass-card:hover {
  border-color: rgba(27, 188, 155, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.15);
}

/* Vertical Timeline Line Gradient */
.timeline-line {
  background: linear-gradient(to bottom, #035798, #1BBC9B, #020813);
}

/* Text Gradient for Heading */
.text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #1BBC9B 100%);
  text-decoration: #ffffff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* services-style.css – Interactive Services Page */

/* Card expansion animation */
.service-card {
    transition: all 0.3s ease;
}

.service-card.expanded {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
                0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Hidden detail content – smooth height reveal */
.detail-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
}

.service-card.expanded .detail-content {
    max-height: 300px;   /* enough to show full detail */
    padding-top: 1rem;
}

/* Active filter button state */
.filter-btn.active {
    background-color: #0F2B46;
    color: white;
    border-color: #0F2B46;
}



/* ==========================================================================
   INTERACTIVE SERVICES PAGE OVERRIDES
   ========================================================================== */

/* Hero Styling & Grids */
.services-hero-area {
    background-color: #0b1120;
}

.ambient-glow-circle {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 9999px;
    filter: blur(120px);
    opacity: 0.12;
    pointer-events: none;
    z-index: 1;
}

.left-glow {
    top: -100px;
    left: 10%;
    background-color: #14b8a6;
}

.right-glow {
    bottom: -150px;
    right: 15%;
    background-color: #3b82f6;
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to right, rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 30px 30px;
    mask-image: radial-gradient(ellipse at center, black 50%, transparent 100%);
    z-index: 2;
}

/* Service Layout Styling */
.srv-interactive-card {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, box-shadow, border-color;
}

.srv-interactive-card:hover {
    transform: translateY(-4px);
    border-color: rgba(20, 184, 166, 0.3) !important;
    box-shadow: 0 15px 30px -10px rgba(15, 23, 42, 0.08);
}

.srv-interactive-card.expanded {
    border-color: rgba(20, 184, 166, 0.4) !important;
    box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.1);
}

/* Detailed Expansions Panel animations */
.card-expansion-drawer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Card Visual Transformations */
.srv-interactive-card.expanded .card-icon-container {
    background-color: #14b8a6;
    color: #ffffff;
}

/* FAQ Layout Overrides */
.faq-container {
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.faq-container.active {
    border-color: rgba(20, 184, 166, 0.25) !important;
    background-color: #ffffff;
}

.faq-content-drawer {
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Responsive Overrides */
@media (prefers-reduced-motion: reduce) {
    .srv-interactive-card,
    .card-expansion-drawer,
    .faq-content-drawer,
    .indicator-arrow {
        transition: none !important;
    }
}


/* ============================================================
   SERVICES PAGE – DARK PREMIUM THEME
   ============================================================ */

/* ---------- Variables ---------- */
:root {
  --navy: #0a1224;
  --navy-card: #111d34;
  --teal: #1BBC9B;
  --teal-light: #2dd4bf;
  --white: #FFFFFF;
  --text: #e2e8f0;
  --muted: #94a3b8;
  --border: rgba(255,255,255,0.08);
  --radius: 1rem;
  --transition: 0.25s ease;
}

/* ---------- Base ---------- */
body {
  background: var(--navy);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

.srv-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.srv-wrap--sm { max-width: 900px; }

/* ---------- Hero ---------- */
.srv-hero {
  position: relative;
  padding: 6rem 0 5rem;
  text-align: center;
  overflow: hidden;
}
.srv-hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 0%, black 30%, transparent 70%);
}
.srv-hero__glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  opacity: 0.2;
}
.srv-hero__glow--l { top: -20%; left: -10%; background: var(--teal); }
.srv-hero__glow--r { bottom: -30%; right: -10%; background: #0f1e3a; }

.srv-hero__inner { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.srv-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(27,188,155,0.1);
  color: var(--teal);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}
.srv-hero__dot {
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(27,188,155,0.4); }
  70% { box-shadow: 0 0 0 8px rgba(27,188,155,0); }
  100% { box-shadow: 0 0 0 0 rgba(27,188,155,0); }
}
.srv-hero__h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.srv-hero__h1-accent {
  background: linear-gradient(135deg, var(--teal), #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.srv-hero__sub {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.srv-hero__ctas {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---------- Buttons ---------- */
.srv-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}
.srv-btn--white {
  background: var(--white);
  color: var(--navy);
}
.srv-btn--white:hover { background: #e2e8f0; }
.srv-btn--outline {
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
}
.srv-btn--outline:hover { border-color: var(--teal); background: rgba(27,188,155,0.1); }
.srv-btn--wa {
  background: var(--teal);
  color: #000;
  font-weight: 700;
}
.srv-btn--wa:hover { background: #15a589; }
.srv-btn--navy {
  background: var(--navy-card);
  color: var(--white);
  border: 1px solid var(--teal);
}
.srv-btn--navy:hover { background: var(--teal); color: #000; }
.srv-btn--ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid rgba(255,255,255,0.15);
}
.srv-btn--ghost:hover { border-color: var(--teal); color: var(--teal); }
.srv-btn--full { width: 100%; justify-content: center; }

/* ---------- Section headings ---------- */
.srv-sec-head {
  text-align: center;
  margin-bottom: 3rem;
}
.srv-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 0.5rem;
}
.srv-sec-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.srv-sec-sub { color: var(--muted); font-size: 1rem; }

/* ---------- Filter tabs ---------- */
.srv-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.srv-filter-btn {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.srv-filter-btn:hover { border-color: var(--teal); color: var(--white); }
.srv-filter-btn.active {
  background: var(--teal);
  color: #000;
  border-color: var(--teal);
}

/* ---------- Grid ---------- */
.srv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.8rem;
}

/* ---------- Card ---------- */
.srv-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 1.8rem;
  position: relative;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.srv-card:hover {
  transform: translateY(-6px);
  border-color: var(--teal);
  box-shadow: 0 20px 35px -10px rgba(27,188,155,0.15);
}
.srv-card--open { border-color: var(--teal); }

.srv-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}
.srv-icon {
  width: 3rem; height: 3rem;
  background: rgba(27,188,155,0.1);
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--teal);
  transition: var(--transition);
}
.srv-card:hover .srv-icon { background: var(--teal); color: #000; }
.srv-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.2rem 0.8rem;
  border-radius: 50px;
  background: rgba(27,188,155,0.1);
  color: var(--teal);
}

.srv-card__num {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: rgba(255,255,255,0.03);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
}

.srv-card__divider {
  width: 40px;
  height: 2px;
  background: var(--teal);
  opacity: 0.4;
  margin-bottom: 1rem;
}

.srv-card__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.srv-card__micro {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.srv-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}
.srv-tag {
  font-size: 0.7rem;
  background: rgba(255,255,255,0.05);
  color: var(--muted);
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
  font-weight: 500;
}

/* Hint */
.srv-card__hint {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: auto;
}
.srv-card__hint-arrow {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}

/* Drawer (expandable) */
.srv-drawer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin 0.3s;
  margin-top: 0;
}
.srv-card--open .srv-drawer { margin-top: 1.5rem; }
.srv-drawer__inner { padding-top: 1rem; border-top: 1px solid var(--border); }
.srv-drawer__detail { color: var(--muted); font-size: 0.9rem; line-height: 1.6; margin-bottom: 1.5rem; }
.srv-drawer__label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 0.5rem;
  margin-top: 1rem;
}
.srv-drawer__includes {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted);
}
.srv-drawer__includes li {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}
.srv-drawer__includes i { color: var(--teal); font-size: 0.7rem; }

.srv-drawer__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  margin: 1.5rem 0;
}
.srv-stat {
  background: rgba(255,255,255,0.02);
  border-radius: 0.8rem;
  padding: 0.8rem;
  text-align: center;
}
.srv-stat__n { font-weight: 700; color: var(--teal); font-size: 1.1rem; }
.srv-stat__l { font-size: 0.65rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 0.2rem; }

.srv-drawer__meta {
  display: flex;
  gap: 1.5rem;
  margin: 1.5rem 0;
}
.srv-meta-item__label { font-size: 0.7rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }
.srv-meta-item__val { font-weight: 600; color: var(--white); display: flex; align-items: center; gap: 0.4rem; margin-top: 0.2rem; font-size: 0.9rem; }

.srv-drawer__timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1rem 0 1.5rem;
}
.srv-tstep {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--muted);
}
.srv-tstep__num {
  width: 24px; height: 24px;
  background: rgba(27,188,155,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--teal);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.srv-drawer__cta-row {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

/* ---------- Estimator ---------- */
.srv-est-section {
  padding: 4rem 0;
  background: rgba(0,0,0,0.15);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.srv-est-head { text-align: center; margin-bottom: 2rem; }
.srv-est-card { background: var(--navy-card); border: 1px solid var(--border); border-radius: 1.5rem; padding: 2rem; }
.srv-est-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
@media (max-width: 768px) { .srv-est-grid { grid-template-columns: 1fr; } }

.srv-est-field { margin-bottom: 1.5rem; }
.srv-est-label { display: block; font-weight: 600; color: var(--white); margin-bottom: 0.5rem; }
.srv-select-wrap { position: relative; }
.srv-select {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 0.8rem 2.5rem 0.8rem 1rem;
  border-radius: 0.8rem;
  appearance: none;
  font-size: 0.9rem;
  cursor: pointer;
}
.srv-select-arrow {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
}

.srv-addons { display: flex; flex-direction: column; gap: 0.8rem; }
.srv-addon-row {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  background: rgba(255,255,255,0.02);
  padding: 0.8rem;
  border-radius: 0.8rem;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color var(--transition);
}
.srv-addon-row:hover { border-color: var(--teal); }
.srv-addon-check { margin-top: 0.2rem; accent-color: var(--teal); }
.srv-addon-title { display: block; font-weight: 600; color: var(--white); font-size: 0.9rem; }
.srv-addon-sub { display: block; font-size: 0.7rem; color: var(--muted); margin-top: 0.15rem; }

.srv-est-output {
  background: rgba(27,188,155,0.05);
  border: 1px solid var(--teal);
  border-radius: 1rem;
  padding: 1.5rem;
}
.srv-est-output__label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--teal); font-weight: 700; }
.srv-est-output__rows { margin: 1rem 0; }
.srv-est-output__row { display: flex; justify-content: space-between; margin-bottom: 0.8rem; }
.srv-est-output__key { color: var(--muted); }
.srv-est-output__val { font-weight: 700; color: var(--white); }
.srv-est-output__divider { height: 1px; background: var(--border); margin: 1rem 0; }
.srv-est-output__cost-label { font-size: 0.8rem; color: var(--muted); display: block; }
.srv-est-output__cost { font-size: 2rem; font-weight: 800; color: var(--teal); display: block; margin-top: 0.2rem; }
.srv-est-output__note { font-size: 0.7rem; color: var(--muted); margin-top: 1rem; margin-bottom: 1.5rem; }

/* ---------- FAQ ---------- */
.srv-faq-section { padding: 4rem 0; }
.srv-faq-list { display: flex; flex-direction: column; gap: 1rem; }
.srv-faq-item { background: var(--navy-card); border: 1px solid var(--border); border-radius: 1rem; overflow: hidden; }
.srv-faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  padding: 1.2rem 1.5rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1rem;
  transition: color var(--transition);
}
.srv-faq-q:hover { color: var(--teal); }
.srv-faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--muted);
  transition: transform var(--transition);
}
.srv-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.srv-faq-a p {
  padding: 0 1.5rem 1.2rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ---------- Final CTA Strip ---------- */
.srv-cta-strip {
  background: rgba(0,0,0,0.25);
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}
.srv-cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.srv-cta-strip__h { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.8rem; color: var(--white); margin-bottom: 0.5rem; }
.srv-cta-strip__sub { color: var(--muted); }
.srv-cta-strip__btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- Scroll Reveal ---------- */
.srv-section, .srv-est-section, .srv-faq-section, .srv-cta-strip {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.srv-revealed { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .srv-hero { padding: 5rem 0 3rem; }
  .srv-hero__h1 { font-size: 2.2rem; }
  .srv-drawer__stats { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   PROBLEMS SECTION – MODERN DARK REDESIGN
   ============================================================ */
.problems-section-redesign {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(145deg, #020714 0%, #0a1224 100%);
  overflow: hidden;
}

/* Subtle background grid */
.problems-section-redesign::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(27, 188, 155, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.problems-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

/* ---------- Centered Header ---------- */
.problems-header {
  text-align: center;
  margin-bottom: 4rem;
}

.problems-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #1BBC9B;
  margin-bottom: 0.75rem;
  background: rgba(27, 188, 155, 0.08);
  padding: 0.35rem 1.2rem;
  border-radius: 50px;
  border: 1px solid rgba(27, 188, 155, 0.2);
}

.problems-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 40px;               /* exactly 40px as requested */
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.problems-sub {
  font-size: 1.05rem;
  color: #94a3b8;
  max-width: 550px;
  margin: 0 auto;
}

/* ---------- Card Grid ---------- */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

/* ---------- Individual Card ---------- */
.problem-card {
  position: relative;
  background: rgba(17, 29, 52, 0.6);       /* semi-transparent navy */
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  padding: 2.2rem 1.8rem;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.problem-card:hover {
  transform: translateY(-8px);
  border-color: rgba(27, 188, 155, 0.4);
  box-shadow: 0 25px 40px -15px rgba(27, 188, 155, 0.15);
  background: rgba(17, 29, 52, 0.8);
}

/* Big decorative number in the background */
/* Make sure the background number doesn’t overlap anything */
.problem-card__bg-num {
  position: absolute;
  top: 12px;
  right: 18px;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 4.5rem;
  color: rgba(255, 255, 255, 0.02);
  line-height: 1;
  pointer-events: none;
  z-index: 0;                    /* <-- keep it behind the content */
}
.problem-card:hover .problem-card__bg-num {
  color: rgba(27, 188, 155, 0.08);
}

/* Top glowing bar (visible on hover) */
.problem-card__glow-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #1BBC9B, transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.problem-card:hover .problem-card__glow-bar {
  transform: scaleX(1);
}

.problem-card__icon-box {
  position: relative;            /* create a new stacking context */
  z-index: 1;
  width: 3.5rem;                 /* slightly bigger */
  height: 3.5rem;
  background: rgba(27, 188, 155, 0.15);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;            /* larger icon */
  color: #1BBC9B;
  margin-bottom: 1.2rem;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 20px rgba(27, 188, 155, 0.1);   /* subtle glow */
}


.problem-card:hover .problem-card__icon-box {
  background: #1BBC9B;
  color: #020714;
  box-shadow: 0 0 30px rgba(27, 188, 155, 0.3);
}

/* Title */
.problem-card__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 0.65rem;
  transition: color 0.3s;
}

.problem-card:hover .problem-card__title {
  color: #1BBC9B;
}

/* Description */
.problem-card__desc {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.65;
  margin-bottom: 1.8rem;
}

/* Hidden "learn why" hint that slides up on hover */
.problem-card__hover-hint {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #1BBC9B;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}

.problem-card:hover .problem-card__hover-hint {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive adjustments ---------- */
@media (max-width: 640px) {
  .problems-heading {
    font-size: 2.2rem;     /* still readable on mobile */
  }
  .problem-card {
    padding: 1.8rem 1.4rem;
  }
}



/* ============================================================
   SERVICES – MODERN WHITE SECTION
   ============================================================ */
.svc-section {
  position: relative;
  padding: 6rem 0;
  background-color: #ffffff;          /* pure white background */
  overflow: hidden;
}

/* Subtle background dot pattern (optional) */
.svc-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #e2e8f0 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.4;
  pointer-events: none;
}

.svc-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

/* ---------- Header ---------- */
.svc-header {
  text-align: center;
  margin-bottom: 4rem;
}

.svc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #0F2B46;
  background: rgba(27, 188, 155, 0.1);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  border: 1px solid rgba(27, 188, 155, 0.2);
}

.svc-pulse {
  width: 8px;
  height: 8px;
  background: #1BBC9B;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(27,188,155,0.4); }
  70% { box-shadow: 0 0 0 8px rgba(27,188,155,0); }
  100% { box-shadow: 0 0 0 0 rgba(27,188,155,0); }
}

.svc-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  color: #0F2B46;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.svc-sub {
  font-size: 1.05rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ---------- Grid ---------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

/* ---------- Card ---------- */
.svc-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1.8rem;
  padding: 2.5rem 1.8rem 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02), 0 10px 15px -3px rgba(0,0,0,0.02);
  position: relative;
  overflow: hidden;
}

.svc-card:hover {
  transform: translateY(-8px);
  border-color: #1BBC9B;
  box-shadow: 0 25px 35px -12px rgba(27, 188, 155, 0.2);
}

/* ---------- Icon area (40% of card height) ---------- */
.svc-card__icon-area {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 1.8rem;
  height: 120px;            /* approximately 40% of a typical card height */
  align-items: flex-end;
}

.svc-card__icon-box {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, rgba(27,188,155,0.08) 0%, rgba(15,43,70,0.08) 100%);
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;        /* huge icon */
  color: #0F2B46;
  transition: all 0.3s ease;
  border: 1px solid rgba(15,43,70,0.05);
  position: relative;
  z-index: 1;
}

.svc-card:hover .svc-card__icon-box {
  background: #1BBC9B;
  color: #ffffff;
  box-shadow: 0 15px 25px -8px rgba(27,188,155,0.3);
  transform: scale(1.05);
  border-color: #1BBC9B;
}

/* ---------- Content below icon ---------- */
.svc-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.svc-card__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(27,188,155,0.1);
  color: #1BBC9B;
  padding: 0.25rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 0.8rem;
}

.svc-card__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #0F2B46;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.svc-card:hover .svc-card__title {
  color: #1BBC9B;
}

.svc-card__desc {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* ---------- Footer link ---------- */
.svc-card__footer {
  width: 100%;
  margin-top: auto;
  border-top: 1px solid #f1f5f9;
  padding-top: 1rem;
}

.svc-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1BBC9B;
  text-decoration: none;
  transition: gap 0.3s, color 0.3s;
}

.svc-card__link:hover {
  gap: 0.7rem;
  color: #0F2B46;
}

.svc-card__link-arrow {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s;
}

.svc-card__link:hover .svc-card__link-arrow {
  transform: translateX(3px);
}

/* ---------- Responsive ---------- */
@media (max-width: 640px) {
  .svc-card__icon-area {
    height: 90px;
  }
  .svc-card__icon-box {
    width: 70px;
    height: 70px;
    font-size: 2.2rem;
  }
}


/* ==========================================================================
   INTERACTIVE PROCESS TIMELINE STYLING
   ========================================================================== */

/* Process Page Hero Background System */
.process-hero-area {
    background-color: #0b1120;
}

/* Timeline Custom Steps Styling */
.process-step-container {
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
    will-change: transform, box-shadow, border-color;
}

/* Hover States */
.process-step-container:hover {
    border-color: rgba(20, 184, 166, 0.25) !important;
    box-shadow: 0 12px 25px -10px rgba(15, 23, 42, 0.05);
}

/* Interactive Expansion Highlight */
.process-step-container.expanded {
    border-color: rgba(20, 184, 166, 0.45) !important;
    box-shadow: 0 15px 30px -10px rgba(15, 23, 42, 0.08);
}

/* Marker Bubble Transitions */
.process-step-container .step-bubble {
    border-color: #f1f5f9;
    background-color: #ffffff;
    color: #475569;
    box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.05);
}

.process-step-container.expanded .step-bubble {
    background-color: #14b8a6 !important;
    border-color: rgba(20, 184, 166, 0.2) !important;
    color: #ffffff !important;
    box-shadow: 0 0 12px 2px rgba(20, 184, 166, 0.25);
}

.process-step-container.expanded .step-title {
    color: #14b8a6 !important;
}

/* Expansion Drawer System */
.process-detail-drawer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Micro Chevron Indicator Actions */
.process-step-container .process-indicator-chevron {
    display: inline-block;
    transition: transform 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .process-step-container {
        padding: 1.25rem !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .process-step-container,
    .process-detail-drawer,
    .process-indicator-chevron {
        transition: none !important;
    }
}


/* ============================================================
   SERVICES – ENHANCED CONTRAST & LARGER ICONS
   ============================================================ */

/* ---------- Hero (dark, as before) ---------- */
.srv-hero {
  position: relative;
  padding: 6rem 0 5rem;
  background: #0a1224;                /* dark navy base */
  text-align: center;
  overflow: hidden;
}
.srv-hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 0%, black 30%, transparent 70%);
}
.srv-hero__glow {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  opacity: 0.2;
}
.srv-hero__glow--l { top: -20%; left: -10%; background: #1BBC9B; }
.srv-hero__glow--r { bottom: -30%; right: -10%; background: #0f1e3a; }

.srv-hero__inner { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.srv-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(27,188,155,0.1); color: #1BBC9B;
  padding: 0.4rem 1.2rem; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.5px; margin-bottom: 1.5rem;
}
.srv-hero__dot {
  width: 8px; height: 8px; background: #1BBC9B; border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(27,188,155,0.4); }
  70% { box-shadow: 0 0 0 8px rgba(27,188,155,0); }
  100% { box-shadow: 0 0 0 0 rgba(27,188,155,0); }
}
.srv-hero__h1 {
  font-family: 'Poppins', sans-serif; font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 4rem); line-height: 1.15;
  color: #ffffff; margin-bottom: 1.5rem;
}
.srv-hero__h1-accent {
  background: linear-gradient(135deg, #1BBC9B, #60a5fa);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.srv-hero__sub {
  color: #94a3b8; font-size: 1.1rem; line-height: 1.6; margin-bottom: 2rem;
}
.srv-hero__ctas { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ---------- Buttons ---------- */
.srv-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.8rem; border-radius: 50px; font-weight: 600; font-size: 0.9rem;
  text-decoration: none; transition: all 0.25s ease; cursor: pointer; border: none;
}
.srv-btn--white { background: #fff; color: #0a1224; }
.srv-btn--white:hover { background: #e2e8f0; }
.srv-btn--outline { border: 2px solid rgba(255,255,255,0.3); color: #fff; }
.srv-btn--outline:hover { border-color: #1BBC9B; background: rgba(27,188,155,0.1); }
.srv-btn--wa { background: #1BBC9B; color: #000; font-weight: 700; }
.srv-btn--wa:hover { background: #15a589; }
.srv-btn--navy { background: #0a1224; color: #fff; border: 1px solid #1BBC9B; }
.srv-btn--navy:hover { background: #1BBC9B; color: #000; }
.srv-btn--ghost { background: transparent; color: #94a3b8; border: 1px solid rgba(255,255,255,0.15); }
.srv-btn--ghost:hover { border-color: #1BBC9B; color: #1BBC9B; }
.srv-btn--full { width: 100%; justify-content: center; }

/* ---------- Section Headings ---------- */
.srv-sec-head { text-align: center; margin-bottom: 3rem; }
.srv-label { display: inline-block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #1BBC9B; margin-bottom: 0.5rem; }
.srv-sec-title { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 2.2rem; color: #0a1224; margin-bottom: 0.75rem; }
.srv-sec-sub { color: #475569; font-size: 1rem; }

/* ---------- Filter Tabs ---------- */
.srv-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin-bottom: 2rem; }
.srv-filter-btn {
  background: rgba(15,23,42,0.03); border: 1px solid rgba(15,23,42,0.1); color: #334155;
  padding: 0.6rem 1.4rem; border-radius: 50px; font-size: 0.85rem; font-weight: 600;
  cursor: pointer; transition: all 0.25s ease; display: flex; align-items: center; gap: 0.5rem;
}
.srv-filter-btn:hover { border-color: #1BBC9B; color: #0a1224; }
.srv-filter-btn.active { background: #0a1224; color: #fff; border-color: #0a1224; }

/* ---------- Horizontal Stack ---------- */
.srv-horizontal-stack { display: flex; flex-direction: column; gap: 1.25rem; }

/* ---------- Card ---------- */
.srv-card {
  display: flex; flex-direction: column;
  background: #fbfcfd;                  /* slightly off‑white for contrast */
  border: 1px solid rgba(15,23,42,0.1); border-radius: 20px;
  overflow: hidden; transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
  outline: none;
}
.srv-card:hover {
  transform: translateY(-4px);
  border-color: rgba(27,188,155,0.3);
  box-shadow: 0 20px 30px -12px rgba(15,23,42,0.1);
}
.srv-card--open { border-color: rgba(27,188,155,0.5); }

/* ---------- Card Row (desktop = grid) ---------- */
.srv-card__row { display: flex; flex-direction: column; padding: 1.5rem; gap: 1rem; }

/* Meta column: number + icon */
.srv-card__meta-col { display: flex; align-items: center; gap: 1rem; }
.srv-card__num {
  font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.5rem;
  color: rgba(15,23,42,0.08); line-height: 1;
}

/* Icon container – BIGGER */
.srv-icon {
  width: 3.5rem;                      /* increased from default */
  height: 3.5rem;
  background: rgba(27,188,155,0.08);
  border-radius: 1rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;                    /* bigger icon */
  color: #1BBC9B;
  transition: all 0.3s;
}
.srv-card:hover .srv-icon { background: #1BBC9B; color: #fff; }

/* Title column */
.srv-card__title-col { display: flex; flex-direction: column; align-items: flex-start; gap: 0.35rem; }
.srv-card__title {
  font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.2rem;
  color: #0f172a; line-height: 1.3; margin: 0;
}

/* Description column */
.srv-card__desc-col { display: flex; flex-direction: column; gap: 0.75rem; }
.srv-card__micro {
  font-size: 0.95rem; color: #0c1014;   /* darker than before for contrast */
  font-weight: 400; line-height: 1.5; margin: 0;
}
.srv-card__tags { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.srv-tag {
  font-size: 10px; font-weight: 600; color: #0f131a;
  background: #f1f5f9; padding: 0.25rem 0.65rem; border-radius: 6px;
}

/* Action column (specs + hint) */
.srv-card__action-col {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid #e2e8f0; padding-top: 1rem; margin-top: 0.5rem;
}
.srv-card__specs { display: flex; flex-direction: column; gap: 0.25rem; }
.srv-spec-item {
  font-size: 11px; font-weight: 700; color: #0c121b;
  display: flex; align-items: center; gap: 0.35rem;
}
.srv-spec-item i { color: #14b8a6; }

.srv-card__hint {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 11px; font-weight: 700; color: #14b8a6;
}
.srv-card__hint-arrow { display: inline-block; transition: transform 0.3s; font-size: 9px; }

/* Drawer */
.srv-drawer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16,1,0.3,1);
  background: #f8fafc; border-top: 1px solid #e2e8f0;
}
.srv-drawer__inner { padding: 1.5rem; }

/* ---------- Desktop grid layout ---------- */
@media (min-width: 1024px) {
  .srv-card__row {
    display: grid;
    grid-template-columns: 100px 240px 1fr 220px;
    align-items: center; gap: 2rem; padding: 1.75rem 2.25rem;
  }
  .srv-card__meta-col { gap: 1.25rem; }
  .srv-card__title-col { padding-right: 1rem; }
  .srv-card__action-col {
    justify-content: flex-end; gap: 2rem;
    border-top: none; padding-top: 0; margin-top: 0;
  }
  .srv-card__specs { align-items: flex-end; text-align: right; }
  .srv-drawer__inner { padding: 2.25rem; }
}

.srv-icon {
  width: 14rem;           /* 3.5rem + 15% = 4.025rem → rounded to 4rem */
  height: 14rem;
  font-size: 6.3rem;     /* 2rem + 15% = 2.3rem */
}

/* On desktop, widen the first column so the icon fits comfortably */
@media (min-width: 1024px) {
  .srv-card__row {
    grid-template-columns: 200px 290px 1fr 220px;  /* was 100px → 120px */
  }
}

/* ==========================================================================
   MODERN SIMPLE ESTIMATOR
   ========================================================================== */
.srv-est-section {
  padding: 4rem 0;
  background: #f8fafc;                /* light grey background for contrast */
}

.srv-est-head {
  text-align: center;
  margin-bottom: 2rem;
}

.srv-est-card {
  background: #ffffff;
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 1.5rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.02);
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.srv-est-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .srv-est-grid {
    flex-direction: row;
  }
  .srv-est-left {
    flex: 1;
  }
  .srv-est-output {
    flex: 0 0 280px;
    border-left: 1px solid #e2e8f0;
    padding-left: 2rem;
  }
}

/* Field spacing */
.srv-est-field {
  margin-bottom: 1.5rem;
}

.srv-est-label {
  display: block;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

/* Select dropdown */
.srv-select-wrap {
  position: relative;
}
.srv-select {
  width: 100%;
  padding: 0.75rem 2.5rem 0.75rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.8rem;
  background: #ffffff;
  color: #0f172a;
  font-size: 0.9rem;
  appearance: none;
  cursor: pointer;
  transition: border-color 0.2s;
}
.srv-select:focus {
  border-color: #1BBC9B;
  outline: none;
}
.srv-select-arrow {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  pointer-events: none;
}

/* Add‑ons (checkboxes) */
.srv-addons {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.srv-addon-row {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.8rem;
  padding: 0.7rem;
  cursor: pointer;
  transition: border-color 0.2s;
}
.srv-addon-row:hover {
  border-color: #1BBC9B;
}
.srv-addon-check {
  margin-top: 0.2rem;
  accent-color: #1BBC9B;
}
.srv-addon-info {
  line-height: 1.4;
}
.srv-addon-title {
  display: block;
  font-weight: 600;
  color: #0f172a;
  font-size: 0.85rem;
}
.srv-addon-sub {
  display: block;
  font-size: 0.75rem;
  color: #64748b;
}

/* Output panel */
.srv-est-output {
  background: #f8fafc;
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}
.srv-est-output__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #1BBC9B;
  margin-bottom: 1rem;
}
.srv-est-output__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
}
.srv-est-output__key {
  color: #475569;
  font-size: 0.9rem;
}
.srv-est-output__val {
  font-weight: 700;
  color: #0f172a;
}
.srv-est-output__divider {
  height: 1px;
  background: #e2e8f0;
  margin: 1rem 0;
}
.srv-est-output__cost-label {
  font-size: 0.8rem;
  color: #64748b;
  display: block;
}
.srv-est-output__cost {
  font-size: 2rem;
  font-weight: 800;
  color: #1BBC9B;
  display: block;
  margin-top: 0.2rem;
}
.srv-est-output__note {
  font-size: 0.7rem;
  color: #94a3b8;
  margin-top: 0.8rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

/* ============================================================
   CONTACT PAGE – SIMPLE, FAQ & CTA INCLUDED
   ============================================================ */

/* Hero (same as before) */
.contact-hero {
  position: relative;
  background: #0F2B46;
  padding: 7rem 1.5rem 5rem;
  text-align: center;
  overflow: hidden;
}
.contact-hero__grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.contact-hero__glow {
  position: absolute; width: 400px; height: 400px;
  border-radius: 50%; filter: blur(90px); pointer-events: none;
  opacity: 0.15;
}
.contact-hero__glow--l { background: #1BBC9B; top: -120px; left: -80px; }
.contact-hero__glow--r { background: #1a3a5c; bottom: -80px; right: -60px; }

.contact-hero__inner { position: relative; z-index: 1; max-width: 550px; margin: 0 auto; }
.contact-hero__eyebrow {
  display: inline-block;
  background: rgba(27,188,155,0.1); color: #1BBC9B;
  padding: 0.35rem 1.2rem; border-radius: 50px;
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 1.5rem;
  border: 1px solid rgba(27,188,155,0.2);
}
.contact-hero__h1 {
  font-family: 'Poppins', sans-serif; font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.5rem); line-height: 1.15;
  color: #ffffff; margin-bottom: 1.5rem;
}
.contact-hero__sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.55); line-height: 1.6;
}

/* Main Layout */
.contact-main {
  padding: 5rem 1.5rem;
  background: #F8FAFC;
}
.contact-container {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem; align-items: start;
}
@media (max-width: 768px) {
  .contact-container { grid-template-columns: 1fr; }
}

/* Info Cards */
.contact-cards { display: flex; flex-direction: column; gap: 1rem; }

.contact-info-card {
  background: #ffffff; border: 1px solid #E2E8F0;
  border-radius: 1rem; padding: 1.25rem;
  display: flex; align-items: flex-start; gap: 1rem;
  text-decoration: none; color: inherit;
  transition: border-color 0.2s, transform 0.2s;
}
.contact-info-card:hover { border-color: #1BBC9B; transform: translateY(-2px); }

.contact-info-card__icon {
  width: 2.5rem; height: 2.5rem; border-radius: 0.75rem;
  background: rgba(27,188,155,0.1); color: #1BBC9B;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.contact-info-card__icon--wa { background: #dcfce7; color: #25d366; }
.contact-info-card__icon--loc { background: #fef3c7; color: #b45309; }

.contact-info-card h4 {
  font-family: 'Poppins', sans-serif; font-weight: 600;
  font-size: 0.95rem; color: #0F2B46; margin-bottom: 0.2rem;
}
.contact-info-card span {
  font-size: 0.85rem; color: #475569; line-height: 1.4; display: block;
}
.contact-info-card small { font-size: 0.75rem; color: #94A3B8; display: block; margin-top: 0.3rem; }

.contact-info-card__arrow { margin-left: auto; color: #94A3B8; font-size: 0.8rem; align-self: center; }

.contact-info-card__actions { display: flex; gap: 0.5rem; margin-top: 0.5rem; }
.contact-mini-btn {
  padding: 0.35rem 1rem; border-radius: 50px;
  font-size: 0.75rem; font-weight: 600;
  border: 1px solid #E2E8F0; background: #ffffff;
  color: #0F2B46; cursor: pointer; transition: all 0.2s;
  text-decoration: none; display: inline-block;
}
.contact-mini-btn:hover { background: #F1F5F9; }
.contact-mini-btn--wa { background: #25d366; color: #fff; border-color: #25d366; }
.contact-mini-btn--wa:hover { background: #1db954; border-color: #1db954; }

/* Form */
.contact-form-wrapper { background: #ffffff; border: 1px solid #E2E8F0; border-radius: 1rem; padding: 2rem; }

.form-success {
  text-align: center; padding: 2rem 1rem;
  color: #16a34a; background: #dcfce7; border-radius: 0.75rem;
}
.form-success i { font-size: 2.5rem; margin-bottom: 1rem; }
.form-success h3 { font-family: 'Poppins', sans-serif; font-weight: 700; margin-bottom: 0.5rem; }
.form-success p { font-size: 0.9rem; color: #166534; }

.form-field { margin-bottom: 1.25rem; }
.form-field label {
  display: block; font-size: 0.8rem; font-weight: 600;
  color: #475569; margin-bottom: 0.4rem;
}
.form-field input,
.form-field textarea {
  width: 100%; padding: 0.7rem 1rem;
  border: 1px solid #E2E8F0; border-radius: 0.75rem;
  font-size: 0.9rem; color: #0F2B46;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none; border-color: #1BBC9B;
  box-shadow: 0 0 0 3px rgba(27,188,155,0.1);
}

.select-wrap { position: relative; }
.select-wrap select {
  width: 100%; padding: 0.7rem 2.5rem 0.7rem 1rem;
  appearance: none; -webkit-appearance: none;
  border: 1px solid #E2E8F0; border-radius: 0.75rem;
  font-size: 0.9rem; color: #0F2B46; background: #fff;
  cursor: pointer;
}
.select-arrow {
  position: absolute; right: 1rem; top: 50%; transform: translateY(-50%);
  color: #94A3B8; font-size: 0.75rem; pointer-events: none;
}

.form-error {
  padding: 0.75rem 1rem; background: #fee2e2; border: 1px solid #fca5a5;
  color: #991b1b; border-radius: 0.5rem; font-size: 0.85rem; margin-bottom: 1rem;
}

.form-submit {
  width: 100%; padding: 0.85rem 0; background: #0F2B46; color: #ffffff;
  border: none; border-radius: 0.75rem; font-weight: 700; font-size: 0.95rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  transition: background 0.2s;
}
.form-submit:hover { background: #1a3a5c; }

/* FAQ Section */
.contact-faq-section {
  padding: 5rem 1.5rem;
  background: #ffffff;
  border-top: 1px solid #E2E8F0;
}
.contact-faq-container {
  max-width: 740px; margin: 0 auto;
}
.contact-faq-head {
  text-align: center; margin-bottom: 2.5rem;
}
.contact-faq-label {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: #1BBC9B; margin-bottom: 0.5rem;
}
.contact-faq-title {
  font-family: 'Poppins', sans-serif; font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem); color: #0F2B46;
}

/* FAQ accordion items */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid #E2E8F0; }

.faq-question {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
  padding: 1.2rem 0; background: none; border: none;
  cursor: pointer; text-align: left;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 1rem;
  color: #0F2B46; transition: color 0.2s;
}
.faq-question:hover { color: #1BBC9B; }

.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid #E2E8F0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; color: #94A3B8;
  transition: transform 0.3s, background 0.2s, border-color 0.2s;
}
.faq-item.open .faq-icon {
  background: #0F2B46; border-color: #0F2B46; color: #fff;
}

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.38s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { padding: 0 0 1.2rem; }
.faq-answer p {
  font-size: 0.9rem; color: #475569; line-height: 1.7;
  padding-top: 1rem; border-top: 1px solid #E2E8F0;
}

/* Bottom CTA strip */
.contact-cta-strip {
  background: #0F2B46; padding: 4rem 1.5rem;
}
.contact-cta-container {
  max-width: 1000px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.contact-cta-container h2 {
  font-family: 'Poppins', sans-serif; font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #ffffff; margin-bottom: 0.5rem;
}
.contact-cta-container p { color: rgba(255,255,255,0.5); font-size: 0.95rem; }

.cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-wa {
  background: #25d366; color: #fff; padding: 0.8rem 1.8rem;
  border-radius: 50px; font-weight: 700; font-size: 0.9rem;
  text-decoration: none; display: flex; align-items: center; gap: 0.5rem;
  transition: background 0.2s;
}
.btn-wa:hover { background: #1db954; }

.btn-outline {
  border: 2px solid rgba(255,255,255,0.3); color: #fff;
  padding: 0.8rem 1.8rem; border-radius: 50px;
  font-weight: 600; font-size: 0.9rem;
  text-decoration: none; transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: #1BBC9B; color: #1BBC9B; }


/* ============================================================
   HEADER ENHANCEMENTS – MODERN, MOBILE OPTIMIZED
   ============================================================ */

/* Desktop navbar – underline hover effect */
@media (min-width: 768px) {
  #navbar nav a {
    position: relative;
  }
  #navbar nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: #1BBC9B;
    transition: width 0.3s ease;
  }
  #navbar nav a:hover::after {
    width: 100%;
  }
}

/* Mobile drawer – smooth slide & grey background (already set via classes) */
#mobile-drawer {
  background-color: #F3F4F6; /* greyBg, consistent with the rest */
}

/* Mobile menu close button hover */
#mobile-close-btn:hover {
  color: #0F2B46;
}

/* Ensure the scroll progress bar stays visible */
#scroll-progress {
  transition: width 0.15s linear;
}

/* Back to top button – smooth visibility transition */
#back-to-top {
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Floating WhatsApp – subtle pulse on hover */
.fixed.bottom-6.right-6 a:hover {
  transform: scale(1.1);
}

/* Logo brand name gradient (optional, can replace plain color) */
@media (min-width: 768px) {
  .font-poppins.font-black.text-2xl.text-navy {
    background: linear-gradient(135deg, #0F2B46);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
}

/* Adjust mobile drawer link spacing and font */
#mobile-drawer nav a {
  font-weight: 500;
}
#mobile-drawer nav a:hover {
  color: #1BBC9B;
}



/* ============================================================
   ABOUT PAGE – MODERN & CLEAN
   ============================================================ */

/* Hero */
.about-hero {
  position: relative;
  padding: 7rem 0 5rem;
  background: #0F2B46;
  text-align: center;
  overflow: hidden;
}
.about-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(27,188,155,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.about-hero__inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}
.about-hero__eyebrow {
  display: inline-block;
  background: rgba(27,188,155,0.15);
  color: #1BBC9B;
  padding: 0.35rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(27,188,155,0.2);
}
.about-hero__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3rem);
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.about-hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* Main layout */
.about-main {
  padding: 5rem 0;
  background: #F8FAFC;
}
.about-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}
.about-photo-col {
  flex: 1 1 280px;
}
.about-content-col {
  flex: 3 1 500px;
}

/* Photo card */
.about-photo-card {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
}
.about-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 4px solid #E2E8F0;
}
.about-quick-facts {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.fact-item {
  display: flex;
  flex-direction: column;
}
.fact-number {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: #1BBC9B;
}
.fact-label {
  font-size: 0.8rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Content */
.about-section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #0F2B46;
  margin-bottom: 1rem;
}
.about-text {
  font-size: 1rem;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.about-skills-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: #0F2B46;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

/* Skills grid */
.about-skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.skill-card {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.skill-card:hover {
  border-color: #1BBC9B;
  transform: translateY(-2px);
}
.skill-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 0.8rem;
  background: rgba(27,188,155,0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #1BBC9B;
}
.skill-card h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #0F2B46;
}
.skill-card p {
  font-size: 0.9rem;
  color: #64748b;
}

/* Timeline */
.about-timeline {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding-left: 1rem;
}
.tl-item {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: #334155;
}
.tl-dot {
  width: 10px;
  height: 10px;
  background: #1BBC9B;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.5rem;
}

/* Quote section */
.about-quote-section {
  padding: 4rem 0;
  background: #ffffff;
  border-top: 1px solid #E2E8F0;
}
.about-quote {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: #0F2B46;
  line-height: 1.4;
  max-width: 700px;
  margin: 0 auto 1rem;
}
.about-cite {
  font-size: 1rem;
  color: #64748b;
  font-style: normal;
}

/* CTA */
.about-cta {
  padding: 4rem 0;
  background: #F8FAFC;
}
.about-cta h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: #0F2B46;
  margin-bottom: 1rem;
}
.about-cta p {
  color: #475569;
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}


/* Timeline line – make sure it's visible over the image */
.timeline-line {
  background: linear-gradient(to bottom, #1BBC9B, transparent);
}

/* Optional: If you want the vertical line to fade out at the bottom */
.timeline-line {
  opacity: 0.9;
}

.glass-card {
    background: rgba(17, 29, 52, 0.3) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-line {
    background: linear-gradient(to bottom, #1BBC9B, transparent);
}


/* ============================================================
   FOOTER – LIGHT GREY BACKGROUND, MODERN & CLEAN
   ============================================================ */

.footer-light {
  background: #f3f4f6;                 /* light grey background */
  color: #1e293b;
  padding: 4rem 0 0;
  border-top: 1px solid #e2e8f0;
  font-family: 'Inter', sans-serif;
}

.footer-light-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.footer-light-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

/* Brand */
.footer-light-logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: #0F2B46;
  display: inline-block;
  margin-bottom: 0.75rem;
}
.footer-light-dot {
  color: #1BBC9B;
}
.footer-light-tagline {
  color: #475569;
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 260px;
}

/* Headings */
.footer-light-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #0F2B46;
  margin-bottom: 1rem;
}

/* Links */
.footer-light-links {
  list-style: none;
  padding: 0;
  
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-light-links a {
  color: #475569;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s, padding-left 0.2s;
}
.footer-light-links a:hover {
  color: #1BBC9B;
  padding-left: 4px;
}

/* Contact */
.footer-light-contact {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-light-contact li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #475569;
  font-size: 0.85rem;
}
.footer-light-contact i {
  color: #1BBC9B;
  width: 1.2rem;
  text-align: center;
}
.footer-light-contact a {
  color: #475569;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-light-contact a:hover {
  color: #1BBC9B;
}

/* Social */
.footer-light-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.25rem;
}
.footer-light-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  font-size: 1rem;
  transition: all 0.2s;
  text-decoration: none;
}
.footer-light-social-icon:hover {
  background: #1BBC9B;
  color: #ffffff;
  border-color: #1BBC9B;
  transform: translateY(-2px);
}

/* Bottom bar */
.footer-light-bottom {
  border-top: 1px solid #e2e8f0;
  padding: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #64748b;
}
.footer-light-credit i {
  animation: heartbeat 1.5s ease infinite;
}
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

/* Responsive */
@media (max-width: 600px) {
  .footer-light-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

/* Navbar logo */
#navbar img {
  max-height: 80%px;      /* adjust as needed */
  width: auto;
  margin-top: 2px;
  border-radius: 6px;
  display: block;
}


/* ============================================================
   FIX MOBILE OVERFLOW – ABOUT PAGE
   ============================================================ */

/* Prevent any element from overflowing */
body, html {
  overflow-x: hidden;
}






/* ============================================================
   FULL‑WIDTH INFINITE SLIDER – NO ROUND CORNERS
   ============================================================ */

.social-slider-full {
  background: #f8fafc;                /* light grey; change if needed */
  padding: 4rem 0;                    /* vertical padding only */
  overflow: hidden;
}

/* Optional header */
.social-slider-full__header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 0 1.5rem;
}
.social-slider-full__header span {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #1BBC9B;
}
.social-slider-full__header h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: #0F2B46;
  margin: 0.5rem 0;
}
.social-slider-full__header p {
  color: #64748b;
  font-size: 1rem;
}

/* Swiper – full width */
.social-swiper-full {
  width: 100%;
  padding: 0;                          /* no side padding */
}

.social-swiper-full .swiper-wrapper {
  transition-timing-function: linear !important;  /* smooth constant movement */
}

/* Individual slide */
.social-swiper-full .swiper-slide {
  width: 300px;                        /* width of each slide */
  height: 300px;                       /* 1:1 ratio */
  flex-shrink: 0;                      /* prevent shrinking */
  overflow: hidden;
  /* NO border-radius */
}

.social-swiper-full .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;                   /* keeps 1:1 crop */
  display: block;
}

/* Remove any default Swiper rounded corners */
.social-swiper-full .swiper-slide,
.social-swiper-full .swiper-slide img {
  border-radius: 0 !important;
}

