/* ================= HEADER + NAV (CLEAN) ================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins', sans-serif;
}

html{ scroll-behavior:smooth; }
section{ scroll-margin-top:140px; }

/* Body gap for fixed header+nav */
body{
  padding-top:140px; /* header (70~80) + nav (50~60) */
}

/* ---------------- HEADER (Fixed) ---------------- */
header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  background:#ffffff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 50px;
  border-bottom:1px solid #eee;
  box-shadow:0 4px 10px rgba(0,0,0,0.1);
  z-index:9999;
  transition: transform 0.3s ease; /* for hide/show */
}

/* LEFT LOGO */
.header-left .logo img{
  height:60px;
  width:auto;
  object-fit:contain;
}
.header-left .logo a{
  display:inline-block;
  cursor:pointer;
}

/* RIGHT */
.header-right{
  display:flex;
  align-items:center;
  gap:25px;
}

/* CONTACT */
.contact-links{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14px;
}
.header-link{
  text-decoration:none;
  color:#333;
  transition:0.3s ease;
  white-space:nowrap;
}
.header-link:hover{ color:#0077b5; }
.divider{ color:#aaa; }

/* SOCIAL */
.social{
  display:flex;
  align-items:center;
  gap:10px;
}
.social a{
  width:34px;
  height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  color:#fff;
  font-size:14px;
  transition:transform 0.3s ease, box-shadow 0.3s ease;
}
.social a:hover{
  transform:translateY(-3px);
  box-shadow:0 5px 12px rgba(0,0,0,0.2);
}
.social .linkedin{ background:#0077b5; }
.social .instagram{ background:#e4405f; }
.social .facebook{ background:#1877f2; }
.social .twitter{ background:#000000; }

/* ---------------- NAV (Fixed under header) ---------------- */
.main-nav{
  position:fixed;
  top:80px;             /* header height */
  left:0;
  width:100%;
  background:rgb(102, 9, 102);
  z-index:9998;
  padding:0;
  transition: transform 0.3s ease; /* for hide/show */
}

.menu{
  list-style:none;
  display:flex;
  justify-content:center;
  margin:0;
  padding:0 30px;
}

.menu-item{
  position:relative;
  padding:16px 22px;
}

.menu-item a{
  color:#ffffff;
  text-decoration:none;
  font-size:16px;
  font-weight:500;
  transition:0.3s ease;
}

.menu-item:hover > a{
  color:#ffd700;
}

/* arrow */
.arrow{
  color:#ffffff;
  font-size:10px;
  margin-left:6px;
  vertical-align:middle;
}

/* dropdown */
.submenu{
  display:none;
  position:absolute;
  top:100%;
  left:0;
  background:#ffffff;
  min-width:240px;
  box-shadow:0 8px 16px rgba(0,0,0,0.2);
  z-index:10000;
  padding:10px 0;
  border-radius:8px;
}

.menu-item:hover .submenu{
  display:block;
}

.submenu li{ list-style:none; }

.submenu li a{
  color:#333;
  padding:10px 20px;
  display:block;
  font-size:14px;
}

.submenu li a:hover{
  background:#f1f1f1;
  color:#5c0a5c;
}

/* ---------------- Scroll Hide/Show ---------------- */
body.hide-topbar header{
  transform: translateY(-100%);
}
body.hide-topbar .main-nav{
  transform: translateY(-100%);
}

/* ---------------- Responsive ---------------- */
@media (max-width: 992px){
  header{
    padding:12px 18px;
  }

  .header-right{
    display:none; /* mobile clean */
  }

  .main-nav{
    top:72px;
  }

  body{
    padding-top:130px;
  }

  .menu{
    flex-direction:column;
    padding:10px 0;
  }

  .submenu{
    position:relative;
    box-shadow:none;
    min-width:100%;
  }

  .menu-item:hover .submenu{
    display:none; /* hover off in mobile (JS toggle use) */
  }

  .menu-item.open .submenu{
    display:block;
  }
}


/* ===== Disable custom cursor on mobile/touch ===== */
@media (max-width: 992px){
  .cursor, .cursor-dot{
    display:none !important;
  }
}

/* Touch devices (phone/tablet) */
@media (hover: none){
  .cursor, .cursor-dot{
    display:none !important;
  }
}


/* --- Desktop Styles (Keep your current ones, but ensure this) --- */
.menu-toggle {
    display: none; /* Hide hamburger on desktop */
    font-size: 24px;
    cursor: pointer;
    padding: 15px;
}

/* --- Mobile & Tablet Styles --- */
@media (max-width: 1024px) {
    .menu-toggle {
        display: block; /* Show hamburger */
        background: whitesmoke;
        text-align: right;
    }

    .menu {
        display: none; /* Hide menu by default */
        flex-direction: column;
        width: 100%;
        background-color: rgb(102, 9, 102);
        color: white;
    }

    .menu.active {
        display: block; /* Show menu when clicked */
    }

    .menu-item {
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    /* Submenu styling for mobile */
    .submenu {
        display: none; 
        position: static; /* Make it flow naturally below the parent */
        width: 100%;
        box-shadow: none;
    }

    .menu-item.open .submenu {
        display: block; /* Show submenu when parent is clicked */
    }

    .arrow {
        float: right;
        transition: transform 0.3s;
    }

    .menu-item.open .arrow {
        transform: rotate(90deg); /* Rotate arrow when open */
    }
}






















/* =======================
   CUSTOM CURSOR
======================= */
.cursor {
  position: fixed;
  width: 30px;
  height: 30px;
  border: 2px solid rgb(102, 9, 102);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: 0.1s ease-out;
}

.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: rgb(102, 9, 102);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

a:hover ~ .cursor,
button:hover ~ .cursor {
  transform: translate(-50%, -50%) scale(1.3);
}

/*====== body======*/

:root{
      --bg:#f5f7fb;
      --card:#ffffff;
      --ink:#10213b;
      --muted:#6b7890;

      --primary:#0b2a6f;
      --primary2:#0b103a;

      --aqua:#33d3c9;
      --line:#e8eef7;

      --shadow: 0 18px 45px rgba(16,33,59,.18);
      --shadow2: 0 12px 30px rgba(16,33,59,.12);
      --radius: 18px;
    }

    *{ box-sizing:border-box; margin:0; padding:0; font-family:"Poppins",sans-serif; }
    body{ background:var(--bg); color:var(--ink); overflow-x:hidden; }
    a{ color:inherit; text-decoration:none; }
    img{ max-width:100%; display:block; }

    /* ====== Utilities ====== */
    .container{ width:min(1150px, 92%); margin:0 auto; }
    .section{ padding: 70px 0; }
    .kicker{
      display:inline-flex; align-items:center; gap:10px;
      color:#dffaf7; font-weight:600; letter-spacing:.3px;
      opacity:.95; font-size:14px;
    }
    .dot{
      width:10px; height:10px; border-radius:99px;
      background: linear-gradient(135deg, var(--aqua), #6ee7ff);
      box-shadow:0 0 0 6px rgba(51,211,201,.16);
    }

    /* ====== Hero (Top gradient area) ====== */
    .hero{
      position:relative;
      padding: 64px 0 56px;
      color:#fff;
      overflow:hidden;
      background:
        radial-gradient(900px 450px at 20% 25%, rgba(51,211,201,.35), transparent 55%),
        radial-gradient(800px 420px at 85% 35%, rgba(110,231,255,.28), transparent 55%),
        linear-gradient(105deg, #0b2a6f 0%, #0b103a 45%, #0b2a6f 100%);
    }
    .hero::before{
      content:"";
      position:absolute; inset:-2px;
      background:
        linear-gradient(120deg, rgba(255,255,255,.08), transparent 30%),
        linear-gradient(0deg, rgba(255,255,255,.05), transparent 55%);
      pointer-events:none;
    }
    .hero-wrap{
      position:relative;
      display:grid;
      gap:26px;
      justify-items:center;
      text-align:center;
    }
    .hero-title{
      font-size: clamp(26px, 3.2vw, 40px);
      font-weight:700;
      letter-spacing:.2px;
      line-height:1.15;
      margin-top:10px;
    }
    .hero-sub{
      margin-top:8px;
      color: rgba(255,255,255,.82);
      font-weight:500;
    }

    /* ====== Feature cards (3 cards in hero) ====== */
    .hero-cards{
      margin-top: 18px;
      width:100%;
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      align-items:stretch;
    }
    @media(max-width: 980px){
      .hero-cards{ grid-template-columns: 1fr; max-width:520px; }
    }

    .glass-card{
      position:relative;
      padding: 18px 18px 16px;
      border-radius: 16px;
      background: rgba(255,255,255,.10);
      border: 1px solid rgba(255,255,255,.18);
      box-shadow: 0 18px 50px rgba(0,0,0,.18);
      overflow:hidden;
      transform: translateY(10px);
    }
    .glass-card::before{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(260px 180px at 20% 20%, rgba(51,211,201,.35), transparent 55%),
        radial-gradient(240px 160px at 80% 30%, rgba(110,231,255,.22), transparent 55%);
      pointer-events:none;
      opacity:.9;
    }
    .glass-inner{
      position:relative;
      background: rgba(255,255,255,.92);
      color: var(--ink);
      border-radius: 14px;
      padding: 18px 16px;
      box-shadow: var(--shadow2);
    }
    .g-icon{
      width:52px; height:52px;
      border-radius: 14px;
      display:grid; place-items:center;
      margin: 0 auto 10px;
      background: linear-gradient(135deg, rgba(51,211,201,.18), rgba(110,231,255,.18));
      border: 1px solid rgba(16,33,59,.08);
    }
    .g-icon svg{ width:30px; height:30px; }
    .glass-inner h3{
      font-size:16px;
      font-weight:700;
      margin-bottom: 10px;
    }
    .bullets{
      list-style:none;
      display:grid; gap:6px;
      text-align:left;
      color: var(--muted);
      font-size:13px;
      line-height:1.45;
    }
    .bullets li{
      display:flex; gap:8px; align-items:flex-start;
    }
    .tick{
      width:18px; height:18px; flex:0 0 18px;
      border-radius:8px;
      background: linear-gradient(135deg, var(--aqua), #6ee7ff);
      margin-top:2px;
    }

    /* ====== CTA button ====== */
    .hero-cta{
      margin-top: 4px;
      display:flex;
      flex-direction:column;
      align-items:center;
      gap:10px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding: 14px 22px;
      border-radius: 999px;
      background: linear-gradient(135deg, #0c2f7a, #0a1a52);
      border: 1px solid rgba(255,255,255,.18);
      box-shadow: 0 18px 40px rgba(0,0,0,.25);
      color:#fff;
      font-weight:700;
      cursor:pointer;
      transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
      user-select:none;
    }
    .btn:hover{
      transform: translateY(-2px);
      box-shadow: 0 24px 55px rgba(0,0,0,.32);
      filter: brightness(1.06);
    }
    .btn:active{ transform: translateY(0px) scale(.98); }
    .meta-time{
      font-size:12px;
      color: rgba(255,255,255,.72);
    }

    /* ====== Trusted section ====== */
    .trusted{
      background: linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
    }
    .sec-title{
      font-size: clamp(22px, 2.4vw, 32px);
      font-weight: 800;
      letter-spacing:.2px;
    }
    .sec-desc{
      margin-top: 10px;
      color: var(--muted);
      line-height: 1.7;
      max-width: 900px;
    }

    .pill-grid{
      margin-top: 26px;
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }
    @media(max-width: 980px){ .pill-grid{ grid-template-columns: repeat(2, 1fr); } }
    @media(max-width: 520px){ .pill-grid{ grid-template-columns: 1fr; } }

    .pill{
      display:flex;
      gap:12px;
      align-items:flex-start;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 14px;
      padding: 14px 14px;
      box-shadow: 0 12px 30px rgba(16,33,59,.06);
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .pill:hover{
      transform: translateY(-4px);
      box-shadow: 0 18px 45px rgba(16,33,59,.10);
    }
    .pill-ic{
      width:40px; height:40px;
      border-radius: 12px;
      background: linear-gradient(135deg, rgba(51,211,201,.18), rgba(110,231,255,.18));
      display:grid; place-items:center;
      border: 1px solid rgba(16,33,59,.08);
      flex:0 0 40px;
    }
    .pill h4{ font-size:14px; font-weight:800; margin-bottom:4px; }
    .pill p{ font-size:12.5px; color:var(--muted); line-height:1.55; }

    /* ====== What we cover cards ====== */
    .cover-grid{
      margin-top: 26px;
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    @media(max-width: 980px){ .cover-grid{ grid-template-columns: 1fr; } }

    .cover-card{
      background:#fff;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 18px 18px;
      box-shadow: 0 16px 45px rgba(16,33,59,.08);
      transition: transform .2s ease, box-shadow .2s ease;
      position:relative;
      overflow:hidden;
    }
    .cover-card::after{
      content:"";
      position:absolute;
      width:180px; height:180px;
      right:-90px; top:-90px;
      background: radial-gradient(circle, rgba(51,211,201,.22), transparent 60%);
      pointer-events:none;
    }
    .cover-card:hover{
      transform: translateY(-6px);
      box-shadow: 0 22px 60px rgba(16,33,59,.12);
    }
    .cover-head{
      display:flex; align-items:center; gap:10px;
      margin-bottom: 10px;
    }
    .mini-ic{
      width:38px; height:38px; border-radius: 12px;
      background: linear-gradient(135deg, #e8fbf9, #e7f7ff);
      border: 1px solid rgba(16,33,59,.08);
      display:grid; place-items:center;
      flex:0 0 38px;
    }
    .cover-card h3{
      font-size:15px;
      font-weight:900;
    }
    .cover-card ul{
      margin-top: 8px;
      padding-left: 18px;
      color: var(--muted);
      line-height: 1.75;
      font-size: 13px;
    }

    /* ====== Process Flow timeline ====== */
    .flow{
      margin-top: 26px;
      display:grid;
      gap: 12px;
    }
    .step{
      display:grid;
      grid-template-columns: 64px 1fr;
      gap: 14px;
      align-items:flex-start;
      background:#fff;
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: 14px 14px;
      box-shadow: 0 14px 40px rgba(16,33,59,.06);
    }
    .step-badge{
      width:54px; height:54px;
      border-radius: 16px;
      display:grid; place-items:center;
      font-weight:900;
      color:#0b2a6f;
      background: linear-gradient(135deg, rgba(51,211,201,.22), rgba(110,231,255,.22));
      border: 1px solid rgba(16,33,59,.10);
    }
    .step h4{ font-size:15px; font-weight:900; }
    .step p{ margin-top:6px; color:var(--muted); line-height:1.7; font-size:13px; }

    /* ====== Why Choose ====== */
    .why-grid{
      margin-top: 22px;
      display:grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }
    @media(max-width: 900px){ .why-grid{ grid-template-columns: 1fr; } }
    .why{
      background:#fff;
      border:1px solid var(--line);
      border-radius: 16px;
      padding: 16px 16px;
      box-shadow: 0 14px 40px rgba(16,33,59,.06);
    }
    .why h4{ font-size:14.5px; font-weight:900; }
    .why p{ margin-top:8px; color:var(--muted); line-height:1.7; font-size:13px; }

    /* ====== Footer CTA ====== */
    .final-cta{
      background: linear-gradient(135deg, #0b2a6f, #0b103a);
      color:#fff;
      border-top: 1px solid rgba(255,255,255,.12);
    }
    .final-box{
      display:flex; align-items:center; justify-content:space-between;
      gap:16px;
      padding: 26px 0;
    }
    @media(max-width: 820px){ .final-box{ flex-direction:column; text-align:center; } }
    .final-box p{ color: rgba(255,255,255,.82); line-height:1.6; }

    /* ====== Scroll reveal animation ====== */
    .reveal{
      opacity:0;
      transform: translateY(18px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .reveal.show{
      opacity:1;
      transform: translateY(0);
    }


/* ===== Footer Styles ===== */
footer {
  background-color: rgb(102, 9, 102);
  color: #fff;
  padding: 40px 12%;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-about, .footer-links, .footer-contact {
  flex: 1 1 250px;
}

.footer-about h3,
.footer-links h4,
.footer-contact h4 {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
}

.footer-about p,
.footer-contact p {
  font-size: 14px;
  line-height: 1.5;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color: #a9c8ff;
}

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  padding: 20px 0;
}

/* Icon Style */
.footer-social a {
  position: relative;
  font-size: 20px;
  color: whitesmoke;
  text-decoration: none;
  transition: 0.3s ease;
}

/* Underline animation */
.footer-social a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #4f46e5, #22d3ee);
  transition: 0.4s ease;
}

.footer-social a:hover::after {
  width: 100%;
}

/* Hover effects */
.footer-social a:hover {
  transform: translateY(-4px);
}

/* Brand colors on hover */
.footer-social a:nth-child(1):hover { color: #0A66C2; }
.footer-social a:nth-child(2):hover { color: #E1306C; }
.footer-social a:nth-child(3):hover { color: #1877F2; }
.footer-social a:nth-child(4):hover { color: #000000; }
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #dddee1;
  padding-top: 15px;
  font-size: 14px;
  color: whitesmoke;
}

/* Responsive */
@media(max-width:768px) {
  .footer-container {
    flex-direction: column;
    gap: 20px;
  }
}

.footer-location{
  display:inline-block;
  margin-top:10px;
  color:#4da3ff;
  text-decoration:none;
  font-weight:500;
}

.footer-location:hover{
  text-decoration:underline;
}

.map-preview{
  width:100%;
  max-width:260px;
  border-radius:12px;
  margin-bottom:10px;
  border:1px solid rgba(255,255,255,0.2);
}


.footer-bottom-note{
  margin-top: 18px;
  padding: 14px 16px;
  text-align: center;
  font-size: 14.5px;
  line-height: 1.6;
  font-weight: 600;
  color: #ffffff;
  background: rgba(255,255,255,0.08);
  border-top: 1px solid rgba(255,255,255,0.15);
}

.footer-bottom-note strong{
  font-weight: 800;
  color: #ffd166;  /* highlight color */
}