/* =========================================================
   XMGlobal Solutions — style.css
   Theme: Light + Accent Blue/Teal — Professional Cybersecurity
   Fonts: Syne (headings) + DM Sans (body) + Orbitron (labels)
   ========================================================= */

/* ─── CSS VARIABLES ─── */
@import url('https://fonts.googleapis.com/css2?family=Saira:ital,wght@0,100..900;1,100..900&display=swap');
:root {
  --white: #ffffff;
  --off-white: #f8faff;
  --light-gray: #f0f4f9;
  --border: #e2e8f0;
  --text-dark: #3b82f6;
  --text-mid: #475569;
  --text-muted: #94a3b8;
  --accent: #3b82f6;
  --accent-dark: #2563eb;
  --accent-light: rgba(59, 130, 246, 0.08);
  --teal: #10b981;
  --teal-light: rgba(16, 185, 129, 0.1);
  --green: #22c55e;
  --green-light: rgba(34, 197, 94, 0.1);
  --navy: #0f172a;
  --navy-mid: #1e293b;
  --shadow-sm: 0 2px 12px rgba(59, 130, 246, 0.05);
  --shadow-md: 0 8px 32px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 60px rgba(15, 23, 42, 0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }
::selection { background: rgba(10,109,255,0.15); color: var(--text-dark); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--light-gray); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ─── TYPOGRAPHY ─── */
h1,h2,h3,h4,h5 {
  font-family: "Saira", sans-serif;
  font-weight: 700;
  line-height: 1.18;
  color: var(--text-dark);
}
.font-orb { font-family: 'Orbitron', sans-serif; }

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Orbitron', sans-serif;
  font-size: 10.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  /* Electric blue text for high visibility */
  color: #00D1FF;
  /* Light blue gradient background with low opacity */
  background: linear-gradient(135deg, rgba(0, 209, 255, 0.15) 0%, rgba(0, 209, 255, 0.05) 100%);
  /* Border with a soft blue glow */
  border: 1px solid rgba(0, 209, 255, 0.3);
  padding: 6px 16px;
  border-radius: 40px;
  margin-bottom: 18px;
  /* Subtle blue outer glow */
  box-shadow: 0 0 15px rgba(0, 209, 255, 0.1);
}

.section-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  /* Matching electric blue dot */
  background: #00D1FF;
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
  /* Glow effect on the dot */
  box-shadow: 0 0 8px #00D1FF;
}

@keyframes blink { 
  0%, 100% { opacity: 1; } 
  50% { opacity: 0.3; } 
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.section-title span { color: var(--accent); }
.section-subtitle {
  color: var(--text-mid);
  font-size: 16px;
  max-width: 560px;
}
.underline-accent {
  width: 52px; 
  height: 3px;
  /* Solid vibrant green */
  background: #39FF14;
  border-radius: 2px;
  margin: 14px 0 22px;
  /* Optional: adds a subtle glow to match a futuristic theme */
  box-shadow: 0 0 8px rgba(57, 255, 20, 0.4);
}
.underline-accent.center { margin-left: auto; margin-right: auto; }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  padding: 0;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
      width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Orbitron', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
}
.nav-brand .brand-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--accent), var(--teal));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 15px;
}
.nav-brand span { color: var(--accent); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin:0px;
}
.nav-links a {
  color: var(--text-mid);
  font-size: 14px;
  margin: 0 5px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-xs);
  transition: all 0.2s;
}
.nav-links a:hover { color: var(--accent); background: var(--accent-light); }
.btn-nav {
  /* Vibrant Green Theme */
  background: #39FF14;
  /* Dark text for better contrast on neon green */
  color: #04080F !important;
  padding: 10px 22px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  
  /* Smooth transition for multiple properties */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 4px 14px rgba(57, 255, 20, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-nav:hover {
  /* Modern Hover: Darker green background with scale shift */
  background: #32E012 !important;
  color: #000 !important;
  transform: translateY(-2px) scale(1.03);
  
  /* Intense neon glow animation */
  box-shadow: 0 8px 25px rgba(57, 255, 20, 0.4) !important;
}

.btn-nav:active {
  transform: translateY(0) scale(0.98);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  background: white;
  border-top: 1px solid var(--border);
  padding: 16px 24px;
}
.mobile-menu a {
  display: block;
  color: var(--text-mid);
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu a:last-child { border-bottom: none; }

/* ─── HERO ─── */
#hero {
  padding: 120px 0 80px;
  background: linear-gradient(160deg, #f0f5ff 0%, #ffffff 50%, #f5fffe 100%);
  position: relative;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 70% 30%, rgba(10,109,255,0.06) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(0,180,166,0.06) 0%, transparent 40%);
  pointer-events: none;
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(10,109,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,109,255,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 70% 70% at 70% 40%, black 0%, transparent 100%);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  height: 1px; width: 24px;
  background: var(--accent);
}
.hero-title {
  font-family: "Saira", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero-title .accent-text {
  background: linear-gradient(135deg, var(--accent), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  color: var(--text-mid);
  font-size: 16.5px;
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, var(--accent), #0550d0);
  color: white;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 32px;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 24px rgba(10,109,255,0.35);
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(10,109,255,0.45);
  color: white;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: white;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--text-mid);
  background: white;
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 6px 14px;
  box-shadow: var(--shadow-sm);
}
.hero-badge-item i { color: var(--green); font-size: 12px; }

/* Hero Visual */
.hero-visual-area {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 440px;
}
.hero-shield-wrap {
  position: relative;
  width: 300px; height: 300px;
}
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid;
  top: 50%; left: 50%;
  animation: orbit linear infinite;
}
.or1 { width:290px;height:290px; margin:-145px 0 0 -145px; border-color:rgba(10,109,255,0.15); animation-duration:22s; }
.or2 { width:220px;height:220px; margin:-110px 0 0 -110px; border-color:rgba(0,180,166,0.18); border-style:dashed; animation-duration:16s; animation-direction:reverse; }
.or3 { width:150px;height:150px; margin:-75px 0 0 -75px; border-color:rgba(10,109,255,0.2); animation-duration:10s; }
@keyframes orbit { from{transform:rotate(0deg);}to{transform:rotate(360deg);} }
.orbit-dot {
  position:absolute;
  width:9px;height:9px;
  border-radius:50%;
  top:-4.5px;left:50%;margin-left:-4.5px;
}
.od-accent { background:var(--accent); box-shadow:0 0 10px rgba(10,109,255,0.6); }
.od-teal { background:var(--teal); box-shadow:0 0 10px rgba(0,180,166,0.6); }
.hero-shield-core {
  position:absolute;
  top:50%;left:50%;
  transform:translate(-50%,-50%);
  width:110px;height:110px;
  background:linear-gradient(135deg,rgba(10,109,255,0.12),rgba(0,180,166,0.12));
  border:2px solid rgba(10,109,255,0.3);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:44px;
  color:var(--accent);
  box-shadow:0 0 50px rgba(10,109,255,0.15);
  animation:pulse-shield 3s ease-in-out infinite;
}
@keyframes pulse-shield {
  0%,100%{box-shadow:0 0 50px rgba(10,109,255,0.15);}
  50%{box-shadow:0 0 80px rgba(10,109,255,0.28);}
}
.float-card {
  position:absolute;
  background:white;
  border:1px solid var(--border);
  border-radius:12px;
  padding:12px 16px;
  box-shadow:var(--shadow-md);
  display:flex;align-items:center;gap:10px;
  font-size:12.5px;
  animation:float-y ease-in-out infinite;
}
.fc1{top:20px;right:-10px;animation-duration:4s;}
.fc2{bottom:50px;left:-20px;animation-duration:5s;animation-delay:1s;}
.fc3{top:50%;right:-30px;margin-top:-25px;animation-duration:3.5s;animation-delay:0.5s;}
@keyframes float-y{0%,100%{transform:translateY(0);}50%{transform:translateY(-9px);}}
.fc-dot{width:8px;height:8px;border-radius:50%;flex-shrink:0;}
.fc-dot-g{background:var(--green);box-shadow:0 0 6px var(--green);}
.fc-dot-a{background:var(--accent);box-shadow:0 0 6px var(--accent);}
.fc-dot-t{background:var(--teal);box-shadow:0 0 6px var(--teal);}
.fc-label{font-size:10px;color:var(--text-muted);line-height:1;}
.fc-val{font-family:'Orbitron',sans-serif;font-size:13px;font-weight:700;color:var(--text-dark);line-height:1.3;}

/* ─── STATS BAR ─── */
.software-stats {
    position: relative;
    padding: 90px 0;

    background:
        radial-gradient(circle at top left,
            rgba(76, 255, 181, 0.12),
            transparent 35%),

        radial-gradient(circle at bottom right,
            rgba(105, 220, 255, 0.12),
            transparent 35%),

        linear-gradient(
            135deg,
            #04131b 0%,
            #071d28 45%,
            #031018 100%
        );

    overflow: hidden;
}

/* Background Glow */
.software-stats::before {
    content: "";
    position: absolute;

    width: 520px;
    height: 520px;

    background: radial-gradient(
        circle,
        rgba(105,220,255,0.08),
        transparent 70%
    );

    top: -180px;
    left: -180px;

    pointer-events: none;
}

/* Wrapper */
.stats-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* Card */
.stat-card {
    position: relative;

    padding: 42px 25px;

    border-radius: 24px;

    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(105,220,255,0.18);

    text-align: center;

    backdrop-filter: blur(12px);

    transition: all 0.4s ease;

    overflow: hidden;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.35),
        inset 0 0 18px rgba(255,255,255,0.03);
}

.stat-card:hover {
    transform: translateY(-10px);

    border-color: rgba(76,255,181,0.4);

    box-shadow:
        0 18px 45px rgba(0,0,0,0.45),
        0 0 30px rgba(76,255,181,0.18);
}

/* Card Glow */
.stat-card::before {
    content: "";
    position: absolute;

    width: 180px;
    height: 180px;

    background: radial-gradient(
        circle,
        rgba(76,255,181,0.18),
        transparent 70%
    );

    top: -80px;
    right: -80px;

    pointer-events: none;
}

/* Icon */
.stat-icon {
    width: 84px;
    height: 84px;

    margin: 0 auto 24px;

    border-radius: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(
        135deg,
        #69dcff,
        #4cffb5
    );

    box-shadow:
        0 0 18px rgba(105,220,255,0.5),
        0 0 35px rgba(76,255,181,0.28);
}

.stat-icon i {
    color: #ffffff;
    font-size: 34px;
}

/* Number */
.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;

    margin-bottom: 16px;

    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #dff8ff 20%,
        #8de8ff 50%,
        #4cffb5 100%
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    filter:
        drop-shadow(0 0 8px rgba(105,220,255,0.4))
        drop-shadow(0 0 18px rgba(76,255,181,0.2));
}

/* Label */
.stat-title {
    color: rgba(255,255,255,0.82);

    font-size: 15px;
    line-height: 1.7;
    letter-spacing: 0.4px;

    max-width: 190px;
    margin: auto;
}

/* Responsive */
@media (max-width: 991px) {
    .stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {

    .software-stats {
        padding: 70px 0;
    }

    .stats-wrapper {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 35px 22px;
    }

    .stat-number {
        font-size: 2.4rem;
    }
}
/* ─── ABOUT / EXPERTS ─── */
#about {
  padding: 100px 0;
  background: white;
}
.about-img-box {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, #eef4ff, #e6fff9);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}
.about-img-box .about-pattern {
  position:absolute;inset:0;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='50'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(10,109,255,0.07)'/%3E%3C/svg%3E");
  background-size:25px 25px;
}
.about-img-box .shield-bg {
  font-size:130px;
  color:rgba(10,109,255,0.08);
  position:relative;
}
.about-float-badge {
  position:absolute;
  background:white;
  border:1px solid var(--border);
  border-radius:12px;
  padding:14px 18px;
  box-shadow:var(--shadow-md);
  display:flex;align-items:center;gap:12px;
}
.afb1{bottom:24px;left:20px;}
.afb2{top:24px;right:20px;}
.afb-num {
  font-family:'Orbitron',sans-serif;
  font-size:20px;
  font-weight:700;
  color:var(--accent);
  line-height:1;
}
.afb-num.teal{color:var(--teal);}
.afb-lbl{font-size:11px;color:var(--text-muted);margin-top:2px;}
.about-list{list-style:none;padding:0;}
.about-list li {
  display:flex;align-items:flex-start;gap:12px;
  padding:11px 0;
  border-bottom:1px solid var(--border);
  font-size:15px;
  color:var(--text-mid);
}
.about-list li:last-child{border-bottom:none;}
.about-list li .li-check{color:var(--green);margin-top:3px;flex-shrink:0;}
.mvv-row {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:28px;
}
.mvv-box {
  background:var(--off-white);
  border:1px solid var(--border);
  border-radius:12px;
  padding:18px;
}
.mvv-box .mvv-tag {
  font-family:'Orbitron',sans-serif;
  font-size:9.5px;
  letter-spacing:2px;
  color:var(--accent);
  text-transform:uppercase;
  margin-bottom:7px;
}
.mvv-box p{font-size:13px;color:var(--text-mid);margin:0;}

/* ─── SERVICE CATEGORIES BAR ─── */
.category-nav {
  background:var(--off-white);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  padding:0;
  overflow-x:auto;
  white-space:nowrap;
}
.category-nav-inner {
      display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.cat-tab {
  display:inline-flex;
  align-items:center;
  gap:9px;
  padding:18px 24px;
  font-weight:600;
  font-size:14px;
  color:var(--text-mid);
  cursor:pointer;
  border-bottom:2.5px solid transparent;
  transition:all 0.2s;
  white-space:nowrap;
  background:none;
  border-top:none;border-left:none;border-right:none;
}
.cat-tab:hover{color:var(--accent);}
.cat-tab.active{color:var(--accent);border-bottom-color:var(--accent);background:white;}
.cat-tab i{font-size:15px;}

/* ─── SERVICES ─── */
#services {
  padding: 90px 0;
  background: var(--off-white);
}
.service-group { margin-bottom: 70px; }
.service-group:last-child{margin-bottom:0;}
.svc-group-header {
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:28px;
  padding-bottom:20px;
  border-bottom:1px solid var(--border);
}
.svc-group-num {
  font-family:'Orbitron',sans-serif;
  font-size:11px;
  font-weight:700;
  letter-spacing:2px;
  color:white;
  background:var(--accent);
  padding:4px 10px;
  border-radius:6px;
}
.svc-group-num.teal{background:var(--teal);}
.svc-group-num.navy{background:var(--navy);}
.svc-group-num.indigo{background:#4f46e5;}
.svc-group-title{font-size:1.5rem;font-weight:800;margin:0;}
.svc-group-desc{color:var(--text-mid);font-size:14.5px;margin:0;margin-left:auto;}

.svc-card {
  background:white;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:26px;
  height:100%;
  transition:all 0.3s ease;
  position:relative;
  overflow:hidden;
}
.svc-card::before {
  content:'';
  position:absolute;
  top:0;left:0;right:0;
  height:3px;
  background:linear-gradient(90deg,var(--accent),var(--teal));
  transform:scaleX(0);
  transform-origin:left;
  transition:transform 0.3s ease;
}
.svc-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-lg);}
.svc-card:hover::before{transform:scaleX(1);}
.svc-card-icon{
  width:50px;height:50px;
  border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  font-size:20px;
  margin-bottom:16px;
}
.icon-blue{background:rgba(10,109,255,0.1);color:var(--accent);}
.icon-teal{background:var(--teal-light);color:var(--teal);}
.icon-navy{background:rgba(7,34,74,0.08);color:var(--navy);}
.icon-indigo{background:rgba(79,70,229,0.1);color:#4f46e5;}
.svc-card-title{font-size:16.5px;font-weight:700;margin-bottom:8px;}
.svc-card-desc{color:var(--text-mid);font-size:13.5px;line-height:1.6;margin-bottom:14px;}
.feat-list{list-style:none;padding:0;}
.feat-list li{
  display:flex;align-items:center;gap:8px;
  font-size:13px;color:var(--text-mid);
  padding:3px 0;
}
.feat-list li::before{
  content:'';width:5px;height:5px;
  border-radius:50%;background:var(--accent);flex-shrink:0;
}
.feat-list li.ok{color:var(--green);}
.feat-list li.ok::before{background:var(--green);}

/* ─── WHY CHOOSE ─── */
#why {
  padding: 100px 0;
  background: white;
}
.why-card {
  background:var(--off-white);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:32px 28px;
  text-align:center;
  transition:all 0.3s ease;
  height:100%;
}
.why-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-lg);background:white;}
.why-icon-wrap {
  width:68px;height:68px;
  border-radius:50%;
  background:linear-gradient(135deg,rgba(10,109,255,0.1),rgba(0,180,166,0.1));
  border:1.5px solid rgba(10,109,255,0.2);
  display:flex;align-items:center;justify-content:center;
  font-size:26px;color:var(--accent);
  margin:0 auto 20px;
  transition:all 0.3s;
}
.why-card:hover .why-icon-wrap{
  background:linear-gradient(135deg,var(--accent),var(--teal));
  color:white;border-color:transparent;
  box-shadow:0 8px 24px rgba(10,109,255,0.3);
}
.why-title{font-size:17px;font-weight:700;margin-bottom:8px;}
.why-desc{color:var(--text-mid);font-size:13.5px;}

/* ─── PROCESS ─── */
#process {
  padding:100px 0;
  background:linear-gradient(160deg,#f0f5ff 0%,#f5fffe 100%);
}
.process-row {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:0;
  position:relative;
}
.process-row::before {
  content:'';
  position:absolute;
  top:40px;left:calc(16.67% + 16px);right:calc(16.67% + 16px);
  height:2px;
  background:linear-gradient(90deg,var(--accent),var(--teal));
  z-index:0;
}
.process-step{
  text-align:center;
  padding:0 20px;
  position:relative;z-index:1;
}
.step-circle{
  width:80px;height:80px;
  border-radius:50%;
  background:white;
  border:2px solid var(--accent);
  display:flex;align-items:center;justify-content:center;
  font-family:'Orbitron',sans-serif;
  font-size:22px;font-weight:700;
  color:var(--accent);
  margin:0 auto 20px;
  box-shadow:0 8px 24px rgba(10,109,255,0.15);
  transition:all 0.3s;
}
.process-step:hover .step-circle{
  background:var(--accent);color:white;
  box-shadow:0 12px 32px rgba(10,109,255,0.3);
}
.step-title{font-size:17px;font-weight:700;margin-bottom:8px;}
.step-desc{color:var(--text-mid);font-size:13.5px;}

/* ─── TESTIMONIALS ─── */
#testimonials {
  padding:100px 0;
  background:var(--navy);
}
#testimonials .section-title{color:white;}
#testimonials .section-subtitle{color:rgba(255,255,255,0.6);}
#testimonials .underline-accent.center{background:linear-gradient(90deg,var(--teal),rgba(255,255,255,0.3));}
.testi-card {
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:var(--radius);
  padding:30px;
  height:100%;
  transition:all 0.3s;
}
.testi-card:hover{background:rgba(255,255,255,0.1);transform:translateY(-4px);}
.testi-quote{font-size:44px;line-height:1;color:var(--teal);opacity:0.4;font-family:Georgia,serif;margin-bottom:10px;}
.testi-stars{color:#fbbf24;font-size:13px;margin-bottom:12px;letter-spacing:1px;}
.testi-text{color:rgba(255,255,255,0.75);font-size:14.5px;line-height:1.7;font-style:italic;margin-bottom:22px;}
.testi-author{display:flex;align-items:center;gap:13px;}
.testi-av{
  width:44px;height:44px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-weight:700;font-size:15px;color:white;flex-shrink:0;
}
.av1{background:linear-gradient(135deg,var(--accent),var(--teal));}
.av2{background:linear-gradient(135deg,var(--teal),#059669);}
.av3{background:linear-gradient(135deg,#7c3aed,var(--accent));}
.testi-name{color:white;font-weight:700;font-size:14px;}
.testi-role{color:rgba(255,255,255,0.45);font-size:12px;}

/* ─── EXPLORE WORK ─── */
#work {
  padding:100px 0;
  background:white;
}
/*.work-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  grid-template-rows:auto auto;
  gap:16px;
  margin-top:40px;
}
.work-card {
  border-radius:var(--radius);
  overflow:hidden;
  background:linear-gradient(135deg,#eef4ff,#e6fff9);
  border:1px solid var(--border);
  display:flex;align-items:center;justify-content:center;
  min-height:180px;
  font-size:50px;color:rgba(10,109,255,0.15);
  transition:all 0.3s;
  position:relative;
}
.work-card:hover{transform:scale(1.02);box-shadow:var(--shadow-md);}
.work-card.tall{grid-row:span 2;}
.work-card-label{
  position:absolute;bottom:16px;left:16px;
  background:rgba(255,255,255,0.9);
  border-radius:8px;
  padding:6px 12px;
  font-size:12px;font-weight:600;color:var(--text-dark);
}
*/
 /* Work Grid Layout */
  .work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
  }

  /* Individual Work Card */
  .work-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
  }

  .work-card.tall {
    height: 100%;
  }

  /* Image Container Styling */
  .work-card-img-container {
    width: 100%;
    height: 200px; /* Standard height for square/small cards */
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
  }

  .work-card.tall .work-card-img-container {
    height: 100%; /* Spans full height for the tall card */
    min-height: 400px;
  }

  .work-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Hover Effects */
  .work-card:hover {
    border-color: rgba(57, 255, 20, 0.5);
    transform: translateY(-5px);
  }

  .work-card:hover .work-card-img {
    transform: scale(1.1);
  }

  /* Label Styling */
  .work-card-label {
    padding: 20px;
    font-size: 18px;
    font-weight: 700;
    color: #F0F4FF;
    background: linear-gradient(to top, rgba(4, 8, 15, 0.9), transparent);
    position: absolute;
    bottom: 0;
    width: 100%;
  }
/* ─── FAQ ─── */
#faq {
  padding:100px 0;
  background:var(--off-white);
}
.faq-item {
  background:white;
  border:1px solid var(--border);
  border-radius:var(--radius-sm);
  margin-bottom:10px;
  overflow:hidden;
  transition:border-color 0.3s,box-shadow 0.3s;
}
.faq-item.open{border-color:rgba(10,109,255,0.3);box-shadow:var(--shadow-sm);}
.faq-q {
  display:flex;justify-content:space-between;align-items:center;
  padding:20px 24px;
  cursor:pointer;
  font-weight:600;font-size:15.5px;
  user-select:none;
  transition:color 0.2s;
}
.faq-q:hover{color:var(--accent);}
.faq-q .faq-arr{
  width:30px;height:30px;border-radius:50%;
  border:1.5px solid var(--border);
  display:flex;align-items:center;justify-content:center;
  font-size:12px;color:var(--accent);
  transition:all 0.3s;flex-shrink:0;
}
.faq-item.open .faq-arr{background:var(--accent);color:white;border-color:var(--accent);transform:rotate(180deg);}
.faq-a {
  max-height:0;overflow:hidden;
  padding:0 24px;
  color:var(--text-mid);font-size:14.5px;line-height:1.7;
  transition:all 0.35s ease;
}
.faq-a.show{max-height:180px;padding-bottom:20px;}

/* ─── REFUND POLICY ─── */
#refund {
  padding:100px 0;
  background:white;
}
.refund-hero-tag{
  display:inline-block;
  background:linear-gradient(135deg,var(--accent),var(--teal));
  color:white;
  font-family:'Orbitron',sans-serif;
  font-size:11px;
  letter-spacing:3px;
  text-transform:uppercase;
  padding:8px 20px;
  border-radius:6px;
  margin-bottom:20px;
}
.refund-card {
  background:var(--off-white);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:28px;
  margin-bottom:16px;
}
.refund-card-title{font-size:16px;font-weight:700;margin-bottom:10px;display:flex;align-items:center;gap:10px;}
.refund-card-title i{color:var(--accent);font-size:16px;}
.refund-card p{color:var(--text-mid);font-size:14px;line-height:1.65;margin:0;}

/* ─── CTA BANNER ─── */
#cta {
  padding: 80px 0;
  /* Shifted from dark navy to a fresh, professional light blue gradient */
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(56, 189, 248, 0.1);
  border-bottom: 1px solid rgba(56, 189, 248, 0.1);
}

#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Softened the glow to a subtle azure tint for a clean look */
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(56, 189, 248, 0.12), transparent);
}
#cta .cta-title{
  font-size:clamp(2rem,3.5vw,2.8rem);
  font-weight:800;color:#333;margin-bottom:14px;
}
#cta .cta-sub{color:#333;font-size:16px;margin-bottom:36px;}
.cta-perks{
  display:flex;flex-wrap:wrap;justify-content:center;gap:20px;
  margin-top:32px;
}
.cta-perk{
  display:flex;align-items:center;gap:8px;
  font-size:13px;color:rgba(255,255,255,0.65);
}
.cta-perk i{color:var(--green);}

/* ─── FOOTER ─── */
footer {
  /* Soft deep gradient instead of flat dark color */
  background: radial-gradient(circle at top right, #0f172a, #020617);
  padding: 80px 0 32px;
  position: relative;
  overflow: hidden;
}

/* Added a subtle top border glow */
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.3), transparent);
}

.footer-brand {
  font-family: 'Inter', 'Orbitron', sans-serif; /* Modern tech mix */
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

/* Primary Light Blue Accent */
.footer-brand span {
  color: #38bdf8;
  text-shadow: 0 0 15px rgba(56, 189, 248, 0.4);
}

.footer-desc {
  color: #94a3b8; /* Slate-400 for better readability */
  font-size: 14px;
  max-width: 300px;
  line-height: 1.8;
}

.footer-heading {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #38bdf8; /* Light Blue */
  margin-bottom: 24px;
  position: relative;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #cbd5e1;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 0;
}

/* Modern Hover: Slide and Color Change */
.footer-links a:hover {
  color: #ffffff;
  padding-left: 8px;
}

.footer-links a::before {
  content: '→';
  opacity: 0;
  margin-right: -10px;
  transition: all 0.3s;
  color: #38bdf8;
}

.footer-links a:hover::before {
  opacity: 1;
  margin-right: 8px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #cbd5e1;
  font-size: 14px;
  margin-bottom: 15px;
}

.footer-contact-item i {
  color: #38bdf8; /* Light Blue Icons */
  background: rgba(56, 189, 248, 0.1);
  padding: 8px;
  border-radius: 6px;
  font-size: 14px;
}

/* Status Pill: Using the Green Accent */
.status-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(16, 185, 129, 0.08); /* Soft Green */
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 12px;
  padding: 10px 18px;
  margin-top: 24px;
  width: fit-content;
  backdrop-filter: blur(4px);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #10b981; /* Emerald Green */
  box-shadow: 0 0 12px #10b981;
  position: relative;
}

/* Modern Pulse Animation */
@keyframes blink {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.4; }
  100% { transform: scale(1); opacity: 1; }
}

.status-dot::after {
  content: '';
  position: absolute;
  width: 100%; height: 100%;
  background: inherit;
  border-radius: 50%;
  animation: blink 2s infinite;
}

.status-text {
  font-size: 13px;
  color: #10b981;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: rgba(56, 189, 248, 0.1);
  border-color: #38bdf8;
  color: #38bdf8;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copy {
  color: #64748b;
  font-size: 13px;
}

.footer-legal a {
  color: #64748b;
  font-size: 13px;
  margin-left: 20px;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: #38bdf8;
}


/* =========================
   MODERN CTA SECTION
========================= */

.modern-cta-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    /* Changed from dark navy to a clean, light sky-blue gradient */
    background: 
        radial-gradient(circle at top left, 
            rgba(56, 189, 248, 0.15), 
            transparent 40%),
        radial-gradient(circle at bottom right, 
            rgba(16, 185, 129, 0.1), 
            transparent 40%),
        linear-gradient(
            135deg, 
            #f0f9ff 0%,   /* Very light blue */
            #ffffff 45%,  /* Pure white */
            #f7fee7 100%  /* Very light green tint */
        );
}

/* Background Glow - Adjusted for Light Theme */
.modern-cta-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(56, 189, 248, 0.12),
        transparent 70%
    );
    top: -200px;
    left: -200px;
    pointer-events: none;
}

/* Badge - Refined for Light Mode */
.cta-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.25);
    color: #0369a1; /* Deep blue for readability on light bg */
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(56, 189, 248, 0.08);
}

/* Title - Changed from white to deep slate */
.cta-title {
    margin-top: 28px;
    font-size: 3.3rem;
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a; /* Deep slate/dark blue */
}

.cta-title span {
    background: linear-gradient(
        90deg, 
        #0ea5e9, /* Solid Light Blue */
        #10b981  /* Solid Green */
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 8px rgba(56, 189, 248, 0.15));
}

/* Subtitle - Optimized contrast */
.cta-sub {
    max-width: 760px;
    margin: 24px auto 42px;
    color: #475569; /* Slate grey */
    font-size: 1.08rem;
    line-height: 1.9;
}

/* Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 55px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.35s ease;
}

/* Primary - Blue to Green Gradient */
.primary-btn {
    background: linear-gradient(
        135deg, 
        #38bdf8, 
        #10b981
    );
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(56, 189, 248, 0.3);
}

.primary-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 35px rgba(16, 185, 129, 0.4);
}

/* Secondary - Light Translucent */
.secondary-btn {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #0f172a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.secondary-btn:hover {
    transform: translateY(-5px);
    border-color: #38bdf8;
    color: #38bdf8;
    box-shadow: 0 12px 30px rgba(56, 189, 248, 0.15);
}

/* Contact Row */
.contact-info-row {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 10px;
}

/* Contact Card - Light Mode Glassmorphism */
.contact-info-card {
    min-width: 300px;
    max-width: 360px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 22px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    backdrop-filter: blur(12px);
    text-decoration: none;
    transition: all 0.35s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.contact-info-card:hover {
    transform: translateY(-8px);
    border-color: #10b981;
    box-shadow: 0 18px 40px rgba(16, 185, 129, 0.12);
}

/* Icon - Vibrant Gradient */
.contact-icon {
    width: 62px;
    height: 62px;
    min-width: 62px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg, 
        #38bdf8, 
        #10b981
    );
    box-shadow: 0 8px 20px rgba(56, 189, 248, 0.25);
}

.contact-icon i {
    color: #ffffff;
    font-size: 24px;
}

/* Contact Text */
.contact-text {
    text-align: left;
    color: #0f172a; /* Dark text */
    font-size: 15px;
    font-weight: 700;
    line-height: 1.7;
}

.contact-text span {
    display: block;
    margin-bottom: 2px;
    color: #64748b; /* Slate grey */
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Perks - Refined for Light Theme */
.cta-perks {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 55px;
}

.cta-perk {
    color: #334155; /* Slate dark */
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-perk i {
    color: #10b981; /* Green checkmark */
    font-size: 16px;
}

/* Responsive */
@media (max-width: 991px) {
    .cta-title { font-size: 2.5rem; }
    .contact-info-row { gap: 18px; }
}

@media (max-width: 768px) {
    .modern-cta-section { padding: 80px 0; }
    .cta-title { font-size: 2rem; }
    .cta-sub { font-size: 15px; }
    .contact-info-card { width: 100%; min-width: 100%; }
    .cta-perks { gap: 18px; }
}

/* ─── RESPONSIVE ─── */
@media(max-width:992px){
  .nav-links,.btn-nav{display:none;}
  .hamburger{display:flex;}
  .mvv-row{grid-template-columns:1fr;}
  .process-row{grid-template-columns:1fr;gap:28px;}
  .process-row::before{display:none;}
  .work-grid{grid-template-columns:1fr 1fr;}
  .work-card.tall{grid-row:auto;}
  .hero-visual-area{min-height:280px;margin-top:40px;}
  .hero-shield-wrap{width:240px;height:240px;}
  .or1{width:230px;height:230px;margin:-115px 0 0 -115px;}
  .or2{width:170px;height:170px;margin:-85px 0 0 -85px;}
  .or3{width:115px;height:115px;margin:-57.5px 0 0 -57.5px;}
  .float-card{display:none;}
  .svc-group-header{flex-wrap:wrap;gap:10px;}
  .svc-group-desc{margin-left:0;}
}
@media(max-width:768px){
  #hero{padding:100px 0 60px;}
  .section-title{font-size:1.8rem;}
  .stats-bar .stat-div{display:none;}
  .work-grid{grid-template-columns:1fr;}
  .mobile-menu.open{display:block;}
}

/* =========================
   PRIVACY HERO
========================= */

.policy-hero{
  position:relative;
  padding:120px 20px 90px;
  text-align:center;

  background:
    radial-gradient(circle at top left,
    rgba(59,130,246,0.08),
    transparent 30%),

    radial-gradient(circle at bottom right,
    rgba(16,185,129,0.08),
    transparent 30%),

    linear-gradient(
      135deg,
      var(--white) 0%,
      #f4f8ff 100%
    );

  overflow:hidden;
}

.policy-hero::before{
  content:"";
  position:absolute;

  width:500px;
  height:500px;

  background:radial-gradient(
    circle,
    rgba(59,130,246,0.08),
    transparent 70%
  );

  top:-220px;
  left:-220px;
}

/* Badge */
.policy-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;

  padding:12px 22px;

  border-radius:50px;

  background:var(--accent-light);

  border:1px solid rgba(59,130,246,0.12);

  color:var(--accent);

  font-size:13px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;

  box-shadow:var(--shadow-sm);
}

/* Title */
.policy-title{
  margin-top:28px;

  font-size:4rem;
  font-weight:900;
  line-height:1.15;

  color:var(--navy);
}

.policy-title span{
  background:linear-gradient(
    90deg,
    var(--accent),
    var(--teal)
  );

  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* Subtitle */
.policy-subtitle{
  max-width:820px;
  margin:26px auto 0;

  color:var(--text-mid);

  font-size:1.08rem;
  line-height:1.9;
}

/* =========================
   CONTAINER
========================= */

.policy-container{
  width:100%;
  max-width:1150px;

  margin:auto;

  padding:0 20px 100px;
}

/* =========================
   POLICY CARD
========================= */

.policy-card{
  position:relative;

  margin-top:-40px;

  background:var(--white);

  border:1px solid var(--border);

  border-radius:32px;

  padding:50px;

  overflow:hidden;

  box-shadow:var(--shadow-lg);
}

.policy-card::before{
  content:"";
  position:absolute;

  width:280px;
  height:280px;

  background:radial-gradient(
    circle,
    rgba(16,185,129,0.08),
    transparent 70%
  );

  top:-100px;
  right:-100px;
}

/* =========================
   SECTION
========================= */

.policy-section{
  position:relative;
  z-index:2;

  margin-bottom:42px;
}

.policy-section:last-child{
  margin-bottom:0;
}

.policy-heading{
  display:flex;
  align-items:center;
  gap:16px;

  margin-bottom:18px;
}

/* Icon */
.policy-icon{
  width:58px;
  height:58px;

  border-radius:18px;

  display:flex;
  align-items:center;
  justify-content:center;

  background:linear-gradient(
    135deg,
    var(--accent),
    var(--teal)
  );

  box-shadow:
  0 10px 25px rgba(59,130,246,0.18);
}

.policy-icon i{
  color:var(--white);
  font-size:22px;
}

/* Heading */
.policy-heading h2{
  font-size:1.7rem;
  font-weight:800;

  color:var(--navy);
}

/* Text */
.policy-text{
  color:var(--text-mid);

  font-size:15.5px;
  line-height:1.9;
}

.policy-text strong{
  color:var(--accent);
}

/* =========================
   LIST
========================= */

.policy-list{
  margin-top:18px;

  display:flex;
  flex-direction:column;
  gap:14px;
}

.policy-list li{
  list-style:none;

  display:flex;
  align-items:flex-start;
  gap:14px;

  color:var(--text-mid);

  font-size:15px;
}

.policy-list li i{
  color:var(--green);

  margin-top:5px;
}

/* =========================
   CONTACT BOX
========================= */

.contact-box{
  margin-top:25px;

  padding:24px;

  border-radius:24px;

  background:var(--off-white);

  border:1px solid var(--border);

  display:flex;
  flex-wrap:wrap;
  gap:20px;
}

/* Item */
.contact-item{
  flex:1;
  min-width:250px;

  display:flex;
  align-items:center;
  gap:14px;
}

/* Icon */
.contact-item i{
  width:50px;
  height:50px;

  border-radius:14px;

  display:flex;
  align-items:center;
  justify-content:center;

  background:linear-gradient(
    135deg,
    var(--accent),
    var(--teal)
  );

  color:var(--white);

  font-size:18px;
}

/* Text */
.contact-item div{
  color:var(--text-mid);

  font-size:14px;
  line-height:1.7;
}

.contact-item span{
  display:block;

  color:var(--text-muted);

  font-size:12px;

  text-transform:uppercase;
  letter-spacing:1px;

  margin-bottom:2px;
}

/* =========================
   FOOTER
========================= */

.policy-footer{
  margin-top:60px;

  text-align:center;

  color:var(--text-muted);

  font-size:14px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

  .policy-hero{
    padding:90px 20px 70px;
  }

  .policy-title{
    font-size:2.5rem;
  }

  .policy-card{
    padding:30px 22px;
  }

  .policy-heading{
    align-items:flex-start;
  }

  .policy-heading h2{
    font-size:1.35rem;
  }

  .policy-subtitle{
    font-size:15px;
  }

}



    .terms-hero{
      position:relative;
      padding:120px 20px 90px;
      text-align:center;

      background:
        radial-gradient(circle at top left,
        rgba(59,130,246,0.08),
        transparent 30%),

        radial-gradient(circle at bottom right,
        rgba(16,185,129,0.08),
        transparent 30%),

        linear-gradient(
          135deg,
          var(--white) 0%,
          #f4f8ff 100%
        );

      overflow:hidden;
    }

    .terms-hero::before{
      content:"";
      position:absolute;

      width:500px;
      height:500px;

      background:radial-gradient(
        circle,
        rgba(59,130,246,0.08),
        transparent 70%
      );

      top:-220px;
      left:-220px;
    }

    /* Badge */
    .terms-badge{
      display:inline-flex;
      align-items:center;
      gap:10px;

      padding:12px 22px;

      border-radius:50px;

      background:var(--accent-light);

      border:1px solid rgba(59,130,246,0.12);

      color:var(--accent);

      font-size:13px;
      font-weight:700;
      letter-spacing:1px;
      text-transform:uppercase;

      box-shadow:var(--shadow-sm);
    }

    /* Title */
    .terms-title{
      margin-top:28px;

      font-size:4rem;
      font-weight:900;
      line-height:1.15;

      color:var(--navy);
    }

    .terms-title span{
      background:linear-gradient(
        90deg,
        var(--accent),
        var(--teal)
      );

      -webkit-background-clip:text;
      -webkit-text-fill-color:transparent;
    }

    /* Subtitle */
    .terms-subtitle{
      max-width:820px;
      margin:26px auto 0;

      color:var(--text-mid);

      font-size:1.08rem;
      line-height:1.9;
    }

    /* =========================
       CONTAINER
    ========================= */

    .terms-container{
      width:100%;
      max-width:1150px;

      margin:auto;

      padding:0 20px 100px;
    }

    /* =========================
       CARD
    ========================= */

    .terms-card{
      position:relative;

      margin-top:-40px;

      background:var(--white);

      border:1px solid var(--border);

      border-radius:32px;

      padding:50px;

      overflow:hidden;

      box-shadow:var(--shadow-lg);
    }

    .terms-card::before{
      content:"";
      position:absolute;

      width:280px;
      height:280px;

      background:radial-gradient(
        circle,
        rgba(16,185,129,0.08),
        transparent 70%
      );

      top:-100px;
      right:-100px;
    }

    /* =========================
       SECTION
    ========================= */

    .terms-section{
      position:relative;
      z-index:2;

      margin-bottom:42px;
    }

    .terms-section:last-child{
      margin-bottom:0;
    }

    .terms-heading{
      display:flex;
      align-items:center;
      gap:16px;

      margin-bottom:18px;
    }

    .terms-icon{
      width:58px;
      height:58px;

      border-radius:18px;

      display:flex;
      align-items:center;
      justify-content:center;

      background:linear-gradient(
        135deg,
        var(--accent),
        var(--teal)
      );

      box-shadow:
      0 10px 25px rgba(59,130,246,0.18);
    }

    .terms-icon i{
      color:var(--white);
      font-size:22px;
    }

    .terms-heading h2{
      font-size:1.7rem;
      font-weight:800;

      color:var(--navy);
    }

    .terms-text{
      color:var(--text-mid);

      font-size:15.5px;
      line-height:1.9;
    }

    .terms-text strong{
      color:var(--accent);
    }

    /* =========================
       LIST
    ========================= */

    .terms-list{
      margin-top:18px;

      display:flex;
      flex-direction:column;
      gap:14px;
    }

    .terms-list li{
      list-style:none;

      display:flex;
      align-items:flex-start;
      gap:14px;

      color:var(--text-mid);

      font-size:15px;
    }

    .terms-list li i{
      color:var(--green);

      margin-top:5px;
    }

    /* =========================
       CONTACT BOX
    ========================= */

    .contact-box{
      margin-top:25px;

      padding:24px;

      border-radius:24px;

      background:var(--off-white);

      border:1px solid var(--border);

      display:flex;
      flex-wrap:wrap;
      gap:20px;
    }

    .contact-item{
      flex:1;
      min-width:250px;

      display:flex;
      align-items:center;
      gap:14px;
    }

    .contact-item i{
      width:50px;
      height:50px;

      border-radius:14px;

      display:flex;
      align-items:center;
      justify-content:center;

      background:linear-gradient(
        135deg,
        var(--accent),
        var(--teal)
      );

      color:var(--white);

      font-size:18px;
    }

    .contact-item div{
      color:var(--text-mid);

      font-size:14px;
      line-height:1.7;
    }

    .contact-item span{
      display:block;

      color:var(--text-muted);

      font-size:12px;

      text-transform:uppercase;
      letter-spacing:1px;

      margin-bottom:2px;
    }

    /* =========================
       FOOTER
    ========================= */

    .terms-footer{
      margin-top:60px;

      text-align:center;

      color:var(--text-muted);

      font-size:14px;
    }

    /* =========================
       RESPONSIVE
    ========================= */

    @media(max-width:768px){

      .terms-hero{
        padding:90px 20px 70px;
      }

      .terms-title{
        font-size:2.5rem;
      }

      .terms-card{
        padding:30px 22px;
      }

      .terms-heading{
        align-items:flex-start;
      }

      .terms-heading h2{
        font-size:1.35rem;
      }

      .terms-subtitle{
        font-size:15px;
      }

    }



    .refund-hero{
      position:relative;
      padding:120px 20px 90px;
      text-align:center;

      background:
        radial-gradient(circle at top left,
        rgba(59,130,246,0.08),
        transparent 30%),

        radial-gradient(circle at bottom right,
        rgba(16,185,129,0.08),
        transparent 30%),

        linear-gradient(
          135deg,
          var(--white) 0%,
          #f4f8ff 100%
        );

      overflow:hidden;
    }

    .refund-hero::before{
      content:"";
      position:absolute;

      width:500px;
      height:500px;

      background:radial-gradient(
        circle,
        rgba(59,130,246,0.08),
        transparent 70%
      );

      top:-220px;
      left:-220px;
    }

    /* Badge */
    .refund-badge{
      display:inline-flex;
      align-items:center;
      gap:10px;

      padding:12px 22px;

      border-radius:50px;

      background:var(--accent-light);

      border:1px solid rgba(59,130,246,0.12);

      color:var(--accent);

      font-size:13px;
      font-weight:700;
      letter-spacing:1px;
      text-transform:uppercase;

      box-shadow:var(--shadow-sm);
    }

    /* Title */
    .refund-title{
      margin-top:28px;

      font-size:4rem;
      font-weight:900;
      line-height:1.15;

      color:var(--navy);
    }

    .refund-title span{
      background:linear-gradient(
        90deg,
        var(--accent),
        var(--teal)
      );

      -webkit-background-clip:text;
      -webkit-text-fill-color:transparent;
    }

    /* Subtitle */
    .refund-subtitle{
      max-width:820px;
      margin:26px auto 0;

      color:var(--text-mid);

      font-size:1.08rem;
      line-height:1.9;
    }

    /* =========================
       CONTAINER
    ========================= */

    .refund-container{
      width:100%;
      max-width:1150px;

      margin:auto;

      padding:0 20px 100px;
    }

    /* =========================
       CARD
    ========================= */

    .refund-card{
      position:relative;

      margin-top:-40px;

      background:var(--white);

      border:1px solid var(--border);

      border-radius:32px;

      padding:50px;

      overflow:hidden;

      box-shadow:var(--shadow-lg);
    }

    .refund-card::before{
      content:"";
      position:absolute;

      width:280px;
      height:280px;

      background:radial-gradient(
        circle,
        rgba(16,185,129,0.08),
        transparent 70%
      );

      top:-100px;
      right:-100px;
    }

    /* =========================
       SECTION
    ========================= */

    .refund-section{
      position:relative;
      z-index:2;

      margin-bottom:42px;
    }

    .refund-section:last-child{
      margin-bottom:0;
    }

    .refund-heading{
      display:flex;
      align-items:center;
      gap:16px;

      margin-bottom:18px;
    }

    .refund-icon{
      width:58px;
      height:58px;

      border-radius:18px;

      display:flex;
      align-items:center;
      justify-content:center;

      background:linear-gradient(
        135deg,
        var(--accent),
        var(--teal)
      );

      box-shadow:
      0 10px 25px rgba(59,130,246,0.18);
    }

    .refund-icon i{
      color:var(--white);
      font-size:22px;
    }

    .refund-heading h2{
      font-size:1.7rem;
      font-weight:800;

      color:var(--navy);
    }

    .refund-text{
      color:var(--text-mid);

      font-size:15.5px;
      line-height:1.9;
    }

    .refund-text strong{
      color:var(--accent);
    }

    /* =========================
       LIST
    ========================= */

    .refund-list{
      margin-top:18px;

      display:flex;
      flex-direction:column;
      gap:14px;
    }

    .refund-list li{
      list-style:none;

      display:flex;
      align-items:flex-start;
      gap:14px;

      color:var(--text-mid);

      font-size:15px;
    }

    .refund-list li i{
      color:var(--green);

      margin-top:5px;
    }

    /* =========================
       HIGHLIGHT BOX
    ========================= */

    .highlight-box{
      margin-top:20px;

      padding:22px;

      border-radius:20px;

      background:var(--accent-light);

      border:1px solid rgba(59,130,246,0.12);

      color:var(--navy);

      font-size:15px;
      font-weight:500;
      line-height:1.8;
    }

    /* =========================
       CONTACT BOX
    ========================= */

    .contact-box{
      margin-top:25px;

      padding:24px;

      border-radius:24px;

      background:var(--off-white);

      border:1px solid var(--border);

      display:flex;
      flex-wrap:wrap;
      gap:20px;
    }

    .contact-item{
      flex:1;
      min-width:250px;

      display:flex;
      align-items:center;
      gap:14px;
    }

    .contact-item i{
      width:50px;
      height:50px;

      border-radius:14px;

      display:flex;
      align-items:center;
      justify-content:center;

      background:linear-gradient(
        135deg,
        var(--accent),
        var(--teal)
      );

      color:var(--white);

      font-size:18px;
    }

    .contact-item div{
      color:var(--text-mid);

      font-size:14px;
      line-height:1.7;
    }

    .contact-item span{
      display:block;

      color:var(--text-muted);

      font-size:12px;

      text-transform:uppercase;
      letter-spacing:1px;

      margin-bottom:2px;
    }

    /* =========================
       FOOTER
    ========================= */

    .refund-footer{
      margin-top:60px;

      text-align:center;

      color:var(--text-muted);

      font-size:14px;
    }

    /* =========================
       RESPONSIVE
    ========================= */

    @media(max-width:768px){

      .refund-hero{
        padding:90px 20px 70px;
      }

      .refund-title{
        font-size:2.5rem;
      }

      .refund-card{
        padding:30px 22px;
      }

      .refund-heading{
        align-items:flex-start;
      }

      .refund-heading h2{
        font-size:1.35rem;
      }

      .refund-subtitle{
        font-size:15px;
      }

    }