:root{
      --blue:#0b63a7;
      --navy:#083b66;
      --gray:#6b7280;
      --muted:#f3f6fb;
      --bg:#ffffff;
      --glass: rgba(255,255,255,0.65);
      --radius:14px;
      --max-width:1100px;
      font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
      color-scheme: light;
    }

    *{box-sizing:border-box}
    html,body{height:100%;margin:0;background:linear-gradient(180deg,var(--muted),#fff);color:#0b1720}
    a{color:inherit;text-decoration:none}

    .container{max-width:var(--max-width);margin:0 auto;padding:28px}

    /* NAV */
    header{backdrop-filter:blur(6px);position:sticky;top:16px;z-index:40}
    .nav-wrap{display:flex;align-items:center;justify-content:space-between;gap:16px}
    .brand{display:flex;align-items:center;gap:12px}
    .logo{width:48px;height:48px;border-radius:10px;background:linear-gradient(135deg,var(--blue),var(--navy));display:grid;place-items:center;color:#fff;font-weight:800;box-shadow:0 6px 20px rgba(9,38,76,0.12)}
    .brand h1{font-size:18px;margin:0}
    nav ul{display:flex;gap:16px;align-items:center;margin:0;padding:0;list-style:none}
    nav a{padding:8px 12px;border-radius:8px;font-weight:600;color:var(--navy)}
    nav a:hover{background:rgba(11,99,167,0.08)}

    .cta{background:var(--blue);color:#fff;padding:10px 14px;border-radius:10px;font-weight:700}
    .menu-btn{display:none}

    /* HERO */
    .hero{display:grid;grid-template-columns:1fr 460px;gap:30px;align-items:center;padding:56px 0}
    .hero-card{background:linear-gradient(180deg,#fff, #fcfeff);border-radius:18px;padding:36px;box-shadow:0 10px 30px rgba(9,38,76,0.06)}
    .eyebrow{display:inline-block;background:rgba(11,99,167,0.09);color:var(--navy);padding:6px 10px;border-radius:999px;font-weight:700;font-size:13px}
    .hero h2{font-size:34px;margin:18px 0 8px;line-height:1.05}
    .hero p.lead{color:var(--gray);margin:0 0 20px}
    .features{display:flex;gap:12px;flex-wrap:wrap}
    .feature{display:flex;gap:12px;align-items:center;background:var(--muted);padding:10px 12px;border-radius:12px}

    .hero-visual{display:grid;place-items:center}
    .emblem{width:360px;height:360px;border-radius:22px;background:linear-gradient(180deg,var(--muted),#fff);display:grid;place-items:center;box-shadow:0 16px 50px rgba(9,38,76,0.08)}

    /* SERVICES */
    .services{padding:40px 0}
    .services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
    .card{background:#fff;border-radius:12px;padding:20px;box-shadow:0 8px 30px rgba(9,38,76,0.04);transform:translateY(0);transition:transform .36s,box-shadow .36s}
    .card:hover{transform:translateY(-8px);box-shadow:0 18px 50px rgba(9,38,76,0.08)}
    .card h3{margin:12px 0 6px}
    .card p{color:var(--gray);margin:0}

    /* CALLOUT */
    .callout{display:flex;align-items:center;gap:18px;padding:28px;border-radius:14px;background:linear-gradient(90deg,rgba(11,99,167,0.06),rgba(8,59,102,0.02));box-shadow:inset 0 1px 0 rgba(255,255,255,0.6)}

    /* CONTACT */
    .contact{padding:40px 0}
    form{display:grid;grid-template-columns:1fr 1fr;gap:12px}
    input,textarea,select{padding:12px;border-radius:8px;border:1px solid #e6eef6;font-size:14px}
    textarea{grid-column:1/-1;min-height:120px}
    .btn{background:var(--blue);color:#fff;padding:12px 16px;border-radius:10px;border:0;font-weight:700}

    footer{padding:26px 0;color:var(--gray);font-size:14px}

    /* Tiny responsive */
    @media (max-width:1000px){
      .hero{grid-template-columns:1fr;}
      .hero-visual{order:-1}
      .services-grid{grid-template-columns:repeat(2,1fr)}
    }
    @media (max-width:640px){
      nav ul{display:none}
      .menu-btn{display:inline-block}
      header{padding:8px 18px}
      .container{padding:18px}
      .services-grid{grid-template-columns:1fr}
      form{grid-template-columns:1fr}
      .hero h2{font-size:26px}
      .emblem{width:240px;height:240px}
    }


/***************New Mobile********************/

/* --- FINAL MOBILE MENU (Full Width, Edge-Aligned) --- */
/* --- FINAL RESPONSIVE NAV MENU --- */
/* --- FIXED & SCROLLABLE MOBILE MENU --- */
/* --- FINAL FIXED MOBILE MENU --- */
/* --- FINAL FIXED MOBILE MENU --- */
/* --- PERFECT FIXED MOBILE MENU (no overlap, full width, fixed scroll) --- */
/* ===== BASE HEADER ===== */
header.container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  z-index: 5000;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  display: block;
}

/* ===== NAV LINKS ===== */
nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: var(--navy, #112e51);
  font-weight: 600;
  transition: color 0.2s ease;
}

nav a:hover {
  color: #0b63a7;
}

/* ===== MOBILE MENU ===== */
.menu-btn {
  display: none;
}

/* --- Mobile Only --- */
@media (max-width: 640px) {
  body {
    margin: 0;
    padding-top: 70px; /* avoid content under header */
  }

  .menu-btn {
    display: inline-block;
    font-size: 26px;
    background: none;
    border: none;
    color: var(--navy, #112e51);
    cursor: pointer;
    z-index: 6001; /* above everything */
    position: relative;
  }

  nav ul {
    position: fixed;
    top: 70px; /* just below header */
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border-radius: 0 0 12px 12px;
    z-index: 6000;
    overflow-y: auto;
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      max-height 0.4s ease,
      opacity 0.3s ease,
      transform 0.4s ease;
  }

  nav ul.show {
    max-height: 90vh;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  nav a {
    width: 100%;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }

  nav a:last-child {
    border-bottom: none;
  }

  /* Dim background overlay */
  .menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 4000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .menu-overlay.show {
    opacity: 1;
    pointer-events: auto;
  }
}



    /* subtle animations */
    .fade-in{opacity:0;transform:translateY(10px);transition:opacity .6s ease,transform .6s cubic-bezier(.2,.9,.3,1)}
    .in-view{opacity:1;transform:none}

    /* emblem SVG styling */
    .emblem svg{width:62%;height:auto}

    /* accessibility focus */
    a:focus,button:focus,input:focus,textarea:focus{outline:4px solid rgba(11,99,167,0.12);outline-offset:3px}


    /* Projects / Gallery Section */
.projects {
  margin: 60px 0;
  text-align: center;
}

.projects h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.projects .gallery2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transform: scale(1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: brightness(0.9);
  transition: transform 0.6s ease, filter 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

.gallery-item figcaption {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: left;
  letter-spacing: 0.3px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-item:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive tweak */
@media (max-width: 600px) {
  .projects h2 { font-size: 1.4rem; }
  .gallery-item figcaption { font-size: 0.85rem; }
}


/* --- Gallery Section --- */
.gallery {
  text-align: center;
  padding: 40px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.photo-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.8s ease;
}

.photo-card.in-view {
  transform: translateY(0);
  opacity: 1;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease, filter 0.8s ease;
}

.photo-card:hover img {
  transform: scale(1.08);
  filter: brightness(1.1);
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
}

.in-view {
  opacity: 1;
  transform: translateY(0);
}


/*  */

.photo-gallery {
  padding: 60px 0;
  background: #f9fbfd;
}

.photo-gallery h2 {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
  color: #0b3d6b;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  justify-items: center;
  align-items: center;
  padding: 0 20px;
}

.gallery-grid img {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.gallery-grid img.in-view {
  opacity: 1;
  transform: translateY(0);
}
