/* ===== CSS VARIABLES ===== */
    :root {
      --primary: #014cbf;
      --primary-light: #1565c0;
      --primary-dark: #0a3576;
      --secondary: #fd6220;
      --secondary-light: #fd6220;
      --bg: #ffffff;
      --bg-muted: #f4f6fb;
      --text: #1a2332;
      --text-muted: #5f6d7e;
      --border: #e2e8f0;
      --card: #ffffff;
      --radius: 1rem;
      --shadow: 0 4px 24px rgba(13,71,161,0.08);
      --shadow-lg: 0 12px 40px rgba(13,71,161,0.12);
    }

    /* ===== RESET ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Poppins', sans-serif;
      color: var(--text);
      background: var(--bg);
      line-height: 1.6;
      overflow-x: hidden;
    }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    img { max-width: 100%; display: block; }
    button { cursor: pointer; border: none; background: none; font-family: inherit; }
    input, textarea, select { font-family: inherit; }

    /* ===== UTILITY ===== */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
    .text-gradient {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .gradient-primary { background: linear-gradient(135deg, var(--primary), var(--primary-light)); }
    .gradient-secondary { background: linear-gradient(135deg, var(--secondary), var(--secondary-light)); }
    .gradient-hero { background: linear-gradient(135deg, #071e3d, var(--primary), var(--primary-light)); }
    .btn {
      display: inline-flex; align-items: center; gap: 0.5rem;
      padding: 0.875rem 2rem; border-radius: 50px;
      font-weight: 600; font-size: 1rem;
      transition: all 0.3s ease;
    }
    .btn-primary { background: linear-gradient(135deg, var(--secondary), var(--secondary-light)); color: #fff; }
    .btn-primary:hover { transform: scale(1.05); box-shadow: 0 0 25px rgba(255,111,0,0.4); }
    .btn-outline {
      border: 2px solid rgba(255,255,255,0.3); color: #fff; background: transparent;
    }
    .btn-outline:hover { background: rgba(255,255,255,0.1); transform: scale(1.05); }
    .section-title { font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 700; margin-bottom: 0rem; }
    .section-subtitle { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; margin: 0 auto 1rem; }
    .section-bar { width: 5rem; height: 4px; background: var(--secondary); border-radius: 2px; margin: 0 auto; margin-bottom:20px }

    /* ===== SCROLL REVEAL ===== */
    .reveal {
      opacity: 0; transform: translateY(30px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ===== TOPBAR ===== */
    .topbar {
      background: var(--primary); color: #fff; font-size: 0.85rem; padding: 0.5rem 0;
    }
    .topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
    .topbar-left { display: flex; gap: 1.25rem; align-items: center; flex-wrap: wrap; }
    .topbar-left a { display: flex; align-items: center; gap: 0.4rem; color: #fff; transition: color 0.2s; }
    .topbar-left a:hover { color: var(--secondary); }
    .topbar-right { display: flex; gap: 0.75rem; }
    .topbar-right a {
      color: #fff; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;
      border-radius: 50%; transition: all 0.2s;
    }
    .topbar-right a:hover { color: var(--secondary); transform: scale(1.15); }

    /* ===== NAVBAR ===== */
    .navbar {
      position: sticky; top: 0; z-index: 100;
      background: rgba(255,255,255,0.7); backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(255,255,255,0.2);
      padding: 1rem 0; transition: all 0.3s ease;
    }
    .navbar.scrolled {
      padding: 0.5rem 0;
      background: rgba(255,255,255,0.9);
      box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    }
    .navbar .container { display: flex; justify-content: space-between; align-items: center; }
    .navbar-brand { font-size: 1.5rem; font-weight: 800; }
    .navbar-brand img {
      width: 200px;
    }
    .navbar-brand .q1 { color: var(--primary); }
    .navbar-brand .q2 { color: var(--secondary); }
    .nav-links { display: flex; gap: 2rem; }
    .nav-links a {
      color: var(--text-muted); font-weight: 500; position: relative; transition: color 0.2s;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -4px; left: 0; width: 100%; height: 2px;
      background: var(--secondary); transform: scaleX(0); transform-origin: right; transition: transform 0.3s;
    }
    .nav-links a:hover { color: var(--primary); }
    .nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
    .nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 0.5rem; }
    .nav-toggle span { width: 24px; height: 2px; background: var(--text); transition: all 0.3s; display: block; }
    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

    /* ===== HERO ===== */
  
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;   /* horizontal center */
  text-align: center;        /* text center */
  overflow: hidden;
  color: #fff;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 12% auto;
}
@media (min-width:100px) and (max-width:767px) {
  .hero-content {
    margin: 45% auto;
  }
}

/* SLIDE */
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7,30,61,0.85),
    rgba(13,71,161,0.75)
  );
}

/* ACTIVE SLIDE */
.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

@keyframes fadeSlide {
  from { opacity: 0; }
  to { opacity: 1; }
}



.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero h1 span {
  color: var(--secondary);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 28px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-primary {
  background: var(--secondary);
  color: #fff;
}

.btn-primary:hover {
  background: #ff8f00;
}

.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: var(--primary);
}

/* DOTS */
.hero-dots {
  position: absolute;
  bottom: 40px;
  display: flex;
  gap: 12px;
  z-index: 3;
}

.hero-dot {
  width: 12px;
  height: 12px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.hero-dot.active {
  background: var(--secondary);
  width: 30px;
  border-radius: 10px;
}


    /* ===== ABOUT ===== */
    .about { padding: 5rem 0; background: var(--bg-muted); }
    .about-desc {  margin: 0 auto 3rem; text-align: center; }
    .about-desc p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 1rem; }
    .vm-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-bottom: 4rem; max-width: 800px; margin-left: auto; margin-right: auto; }
    .vm-card {
      padding: 2rem; border-radius: var(--radius); background: var(--card);
      box-shadow: var(--shadow); border: 1px solid var(--border);
      transition: all 0.3s;
    }
    .vm-card:hover { box-shadow: var(--shadow-lg); }
    .vm-icon {
      width: 56px; height: 56px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.25rem; font-size: 1.5rem; color: #fff;
    }
    .vm-card h3 { font-size: 1.4rem; margin-bottom: 0.75rem; }
    .vm-card p { color: var(--text-muted); }
    .features-title { font-size: 1.75rem; font-weight: 700; text-align: center; margin-bottom: 3rem; }
    .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; margin-bottom: 4rem; }
    .feature-card {
      text-align: center; padding: 2rem; border-radius: var(--radius);
      background: var(--card); box-shadow: var(--shadow); border: 1px solid var(--border);
      transition: all 0.3s;
    }
    .feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
    .feature-icon {
      width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
      margin: 0 auto 1.25rem; font-size: 1.75rem; color: #fff;
    }
    .feature-icon img {
        width: 40px;
    }
    .feature-card h4 { font-size: 1.2rem; margin-bottom: 0.75rem; }
    .feature-card p { color: var(--text-muted); font-size: 0.95rem; }
    .counters { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 2rem; text-align: center; }
    .counter-num { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--primary); }
    .counter-label { color: var(--text-muted); font-weight: 500; margin-top: 0.25rem; }

    /* ===== SERVICES ===== */
    .services { padding: 5rem 0; }
    .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
    .service-card {
      position: relative; padding: 2rem; border-radius: var(--radius);
      background: rgba(255,255,255,0.7); backdrop-filter: blur(16px);
      border: 1px solid rgba(255,255,255,0.2); box-shadow: var(--shadow);
      transition: all 0.4s; overflow: hidden; cursor: pointer;
    }
    .service-card::before {
      content: ''; position: absolute; inset: 0; border-radius: var(--radius);
      background: linear-gradient(135deg, var(--primary), var(--primary-light));
      opacity: 0; transition: opacity 0.3s;
    }
    .service-card:hover { transform: translateY(-12px); box-shadow: var(--shadow-lg); }
    .service-card:hover::before { opacity: 1; }
    .service-card > * { position: relative; z-index: 1; }
    .service-icon {
      width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.5rem; font-size: 1.75rem; color: #fff;
      transition: transform 0.3s;
    }
    .service-card:hover .service-icon { transform: scale(1.1); }
    .service-icon img {
      width: 40px;
    }
    .service-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.75rem; transition: color 0.3s; }
    .service-card p { color: var(--text-muted); transition: color 0.3s; line-height: 1.7; }
    .service-card:hover h3 { color: #fff; }
    .service-card:hover p { color: rgba(255,255,255,0.8); }

    /* ===== PORTFOLIO ===== */
    .portfolio { padding: 5rem 0; background: var(--bg-muted); }
    .portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
    .portfolio-card {
      position: relative; border-radius: var(--radius); overflow: hidden;
      aspect-ratio: 4/3; cursor: pointer; box-shadow: var(--shadow);
      transition: box-shadow 0.3s;
    }
    .portfolio-card:hover { box-shadow: var(--shadow-lg); }
    .portfolio-bg {
      position: absolute; inset: 0; transition: transform 0.5s;
    }
    .portfolio-card:hover .portfolio-bg { transform: scale(1.1); }
    .portfolio-overlay {
      position: absolute; inset: 0; background: rgba(0,0,0,0);
      display: flex; align-items: center; justify-content: center; text-align: center;
      transition: background 0.3s;
    }
    .portfolio-card:hover .portfolio-overlay { background: rgba(0,0,0,0.6); }
    .portfolio-info {
      opacity: 0; transform: translateY(16px);
      transition: all 0.3s;
    }
    .portfolio-card:hover .portfolio-info { opacity: 1; transform: translateY(0); }
    .portfolio-info span { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--secondary); }
    .portfolio-info h3 { font-size: 1.2rem; font-weight: 700; color: #fff; margin-top: 0.5rem; }

    /* ===== CONTACT ===== */
    .contact { padding: 5rem 0; }
    .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; max-width: 1000px; margin: 0 auto; }
    .contact-info h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 2rem; }
    .contact-item {
      display: flex; gap: 1rem; align-items: flex-start; padding: 1rem; border-radius: 12px;
      transition: background 0.2s; margin-bottom: 0.5rem;
    }
    .contact-item:hover { background: var(--bg-muted); }
    .contact-item-icon {
      width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; color: #fff; font-size: 1.1rem;
      transition: transform 0.2s;
    }
    .contact-item:hover .contact-item-icon { transform: scale(1.1); }
    .contact-item-label { font-size: 0.85rem; color: var(--text-muted); }
    .contact-item-value { font-weight: 600; }
    .contact-form {
      padding: 2rem; border-radius: var(--radius); background: var(--card);
      box-shadow: var(--shadow-lg); border: 1px solid var(--border);
    }
    .contact-form h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1.5rem; }
    .form-group { margin-bottom: 1.25rem; }
    .form-group input, .form-group textarea, .form-group select {
      width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--border); border-radius: 8px;
      font-size: 0.95rem; background: var(--bg); color: var(--text);
      transition: border-color 0.2s, box-shadow 0.2s; outline: none;
    }
    .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
      border-color: var(--primary); box-shadow: 0 0 0 3px rgba(13,71,161,0.1);
    }
    .form-group textarea { min-height: 100px; resize: vertical; }
    .btn-submit {
      width: 100%; padding: 0.875rem; border-radius: 12px; font-weight: 600; font-size: 1rem;
      color: #fff; border: none; cursor: pointer;
      transition: all 0.3s;
    }
    .btn-submit:hover { transform: scale(1.02); box-shadow: 0 0 25px rgba(255,111,0,0.4); }

    /* ===== FOOTER ===== */
    .footer { background: linear-gradient(135deg, #071e3d, var(--primary)); color: #fff; }
    .footer-main { padding: 4rem 0; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; }
    .footer-brand { font-size: 1.5rem; font-weight: 800; margin-bottom: 1rem; }
    .footer-brand img {
      width: 200px;
    }
    .footer-brand .q2 { color: var(--secondary); }
    .footer p { color: rgba(255,255,255,1); line-height: 1.7; }
    .footer h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 1.5rem; }
    .footer ul li { margin-bottom: 0.75rem; }
    .footer ul a { color: rgba(255,255,255,1); transition: color 0.2s; }
    .footer ul a:hover { color: var(--secondary); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1); padding: 1.25rem 0;
      text-align: center; color: rgba(255,255,255,0.45); font-size: 0.9rem;
    }

    /* ===== SCROLL TO TOP ===== */
    .scroll-top {
      position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 100;
      width: 48px; height: 48px; border-radius: 50%;
      color: #fff; font-size: 1.25rem; border: none;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 16px rgba(255,111,0,0.3);
      opacity: 0; transform: translateY(16px); pointer-events: none;
      transition: all 0.3s;
    }
    .scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
    .scroll-top:hover { transform: scale(1.1); box-shadow: 0 0 25px rgba(255,111,0,0.4); }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
      .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: rgba(255,255,255,0.97); backdrop-filter: blur(20px); padding: 1rem 0; gap: 0; border-top: 1px solid var(--border); }
      .nav-links.open { display: flex; }
      .nav-links a { padding: 0.875rem 1.5rem; }
      .nav-links a::after { display: none; }
      .nav-toggle { display: flex; }
      .contact-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
      .topbar-left { font-size: 0.75rem; gap: 0.75rem; }
      .vm-grid { grid-template-columns: 1fr; }
    }

    /* ===== SVG ICON INLINE HELPER ===== */
    .icon-svg { width: 1em; height: 1em; fill: currentColor; vertical-align: -0.125em; }