/* ================= 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 */
    }
}




:root{
  --bg1:#070A13;
  --bg2:#0C1020;
  --card: rgba(255,255,255,0.08);
  --card2: rgba(255,255,255,0.10);
  --line: rgba(255,255,255,0.14);
  --text:#EAF0FF;
  --muted: rgba(234,240,255,0.74);
  --brand:#7C5CFF;
  --brand2:#2EE59D;
  --shadow: 0 20px 60px rgba(0,0,0,0.45);
}

*{ box-sizing:border-box; margin:0; padding:0; font-family:'Poppins',sans-serif; }
html{ scroll-behavior:smooth; }
body{
  color:var(--text);
  background: radial-gradient(1200px 700px at 15% 10%, #1a1450 0%, transparent 55%),
              radial-gradient(900px 600px at 85% 25%, #0e4d4a 0%, transparent 55%),
              linear-gradient(180deg, var(--bg1), var(--bg2));
  overflow-x:hidden;
  margin-top: 60px;
}

.page{ width:min(1200px, 92%); margin:0 auto; padding: 56px 0 34px; }

/* Floating orbs */
.bg-orbs{ position:fixed; inset:0; pointer-events:none; z-index:-1; }
.orb{
  position:absolute; border-radius:999px; filter: blur(40px);
  opacity:.55; transform: translate3d(0,0,0);
  animation: drift 10s ease-in-out infinite;
}
.o1{ width:340px; height:340px; left:-80px; top:120px; background: #7c5cff; }
.o2{ width:420px; height:420px; right:-120px; top:260px; background:#2ee59d; animation-duration: 12s; }
.o3{ width:320px; height:320px; left:35%; bottom:-120px; background:#ff4fd8; animation-duration: 14s; }

@keyframes drift{
  0%,100%{ transform: translateY(0) translateX(0) scale(1); }
  50%{ transform: translateY(-18px) translateX(14px) scale(1.03); }
}

/* Reusable */
.section{ padding: 52px 0; }
.section-head{
  display:grid; gap:10px; margin-bottom: 18px;
}
.section-head h2{ font-size: clamp(22px, 3vw, 32px); line-height:1.15; }
.section-head p{ color:var(--muted); line-height:1.7; max-width: 900px; }

.kicker{
  display:inline-flex; gap:10px; align-items:center;
  color: rgba(234,240,255,0.85);
  letter-spacing: .6px;
  font-size: 13px;
  padding: 8px 12px;
  border:1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  width: fit-content;
}

.title{
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.12;
  margin-top: 12px;
}
.grad{
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}

.lead{
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 680px;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  text-decoration:none;
  color: var(--text);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
  background: rgba(255,255,255,0.06);
}
.btn:hover{ transform: translateY(-2px); border-color: rgba(255,255,255,0.25); }
.btn.primary{
  border: none;
  background: linear-gradient(135deg, rgba(124,92,255,0.95), rgba(46,229,157,0.85));
  color:#071018;
  font-weight: 700;
}
.btn.ghost{ background: rgba(255,255,255,0.04); }

.pill{
  display:inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,0.05);
  font-size: 12.5px;
  color: rgba(234,240,255,0.86);
}

/* HERO */
.hero{ padding: 10px 0 52px; }
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 26px;
  align-items: center;
}
.hero-pills{ display:flex; flex-wrap:wrap; gap:10px; margin-top: 16px; }
.hero-actions{ display:flex; gap:12px; margin-top: 18px; flex-wrap:wrap; }

.stats{
  margin-top: 22px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
}
.stat{
  border:1px solid var(--line);
  background: rgba(255,255,255,0.05);
  border-radius: 18px;
  padding: 12px 12px;
}
.stat .num{ font-weight: 800; font-size: 16px; }
.stat .lbl{ color: var(--muted); font-size: 12.5px; margin-top: 4px; }

.hero-media{ position:relative; }
.media-card{
  position:relative;
  border-radius: 22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.04);
  box-shadow: var(--shadow);
}
.media-card img{
  width:100%; height: 420px;
  object-fit: cover;
  display:block;
  transform: scale(1.02);
}
.media-overlay{
  position:absolute; inset:auto 0 0 0;
  padding: 18px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.66));
}
.media-overlay .tag{
  display:inline-flex; width:fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,0.22);
  background: rgba(0,0,0,0.28);
  font-size: 12px;
  margin-bottom: 10px;
}
.media-overlay h3{ font-size: 18px; line-height: 1.25; }
.media-overlay p{ margin-top: 6px; color: rgba(234,240,255,0.78); font-size: 13px; line-height: 1.6; }

.floating-badges{
  position:absolute; inset:auto 0 -14px 0;
  display:flex; gap:10px; flex-wrap:wrap;
  justify-content:center;
}
.badge{
  padding: 8px 12px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(8px);
  font-size: 12px;
  transform: translateY(0);
  animation: floaty 2.8s ease-in-out infinite;
}
.badge:nth-child(2){ animation-delay: .2s; }
.badge:nth-child(3){ animation-delay: .35s; }
.badge:nth-child(4){ animation-delay: .5s; }

@keyframes floaty{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-6px); }
}

/* Shine effect */
.shine::after{
  content:"";
  position:absolute; inset:-40% -60%;
  background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,0.16), transparent 65%);
  transform: rotate(12deg);
  animation: shine 3.2s ease-in-out infinite;
}
@keyframes shine{
  0%{ transform: translateX(-30%) rotate(12deg); opacity:0; }
  35%{ opacity:1; }
  100%{ transform: translateX(30%) rotate(12deg); opacity:0; }
}

/* Cards grids */
.info-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  margin-top: 16px;
}
.info-card, .service-card, .split-card{
  border:1px solid var(--line);
  background: rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 16px 42px rgba(0,0,0,0.22);
}
.info-card h3{ font-size: 16px; }
.info-card p{ margin-top: 8px; color: var(--muted); line-height: 1.7; font-size: 13.5px; }

.cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  margin-top: 18px;
}
.service-card .icon{
  width: 44px; height:44px; border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(255,255,255,0.07);
  border:1px solid rgba(255,255,255,0.16);
  margin-bottom: 12px;
  font-size: 20px;
}
.service-card h3{ font-size: 16.5px; line-height: 1.25; }
.service-card p{ margin-top: 10px; color: var(--muted); line-height: 1.7; font-size: 13.5px; }
.service-card ul{ margin-top: 12px; padding-left: 18px; color: rgba(234,240,255,0.86); }
.service-card li{ margin: 7px 0; font-size: 13.3px; color: rgba(234,240,255,0.82); }

/* Split */
.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.split-top{ margin-bottom: 12px; }
.muted{ color: var(--muted); line-height: 1.7; margin-top: 6px; }
.split-card p{ color: rgba(234,240,255,0.82); line-height: 1.75; font-size: 13.6px; }

.mini-grid{
  margin-top: 14px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.mini{
  border:1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.18);
  border-radius: 16px;
  padding: 10px 12px;
  font-size: 13px;
}

/* Accordion */
.accordion{
  margin-top: 16px;
  border:1px solid var(--line);
  border-radius: 18px;
  overflow:hidden;
  background: rgba(255,255,255,0.05);
}
.acc-item{
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 14px 16px;
  background: transparent;
  border:0;
  color: var(--text);
  cursor:pointer;
  font-size: 14px;
  border-top:1px solid rgba(255,255,255,0.10);
}
.acc-item:first-child{ border-top:0; }
.acc-item .chev{ opacity:.9; transition: transform .2s ease; }
.acc-item.active .chev{ transform: rotate(180deg); }

.acc-panel{
  max-height: 0;
  overflow:hidden;
  transition: max-height .28s ease;
  border-top:1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.12);
}
.acc-panel .law-list{
  padding: 12px 18px 16px;
  margin-left: 18px;
}
.law-list li{
  margin: 8px 0;
  color: rgba(234,240,255,0.82);
  font-size: 13.3px;
  line-height: 1.65;
}

/* Banner */
.banner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  border:1px solid rgba(255,255,255,0.16);
  background: linear-gradient(135deg, rgba(124,92,255,0.12), rgba(46,229,157,0.08));
  border-radius: 24px;
  padding: 18px;
  overflow:hidden;
}
.banner-copy h2{ font-size: 22px; line-height: 1.2; }
.banner-copy p{ margin-top: 10px; color: var(--muted); line-height: 1.75; }
.banner-points{ display:flex; flex-wrap:wrap; gap:10px; margin-top: 14px; }
.banner-points span{
  padding: 8px 10px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  font-size: 12.5px;
}
.banner-media img{
  width:100%;
  height: 240px;
  object-fit: cover;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,0.14);
}

/* Contact */
.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  border:1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 18px;
}
.contact-box{
  margin-top: 12px;
  border:1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.16);
  border-radius: 18px;
  padding: 12px;
}
.contact-line{
  display:flex; gap:10px; align-items:flex-start;
  padding: 8px 6px;
  color: rgba(234,240,255,0.84);
  font-size: 13.4px;
  line-height: 1.55;
}
.form label{ display:grid; gap:8px; font-size: 13px; color: rgba(234,240,255,0.86); }
.form input, .form textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.18);
  color: var(--text);
  outline: none;
}
.form input:focus, .form textarea:focus{ border-color: rgba(124,92,255,0.55); }
.form textarea{ min-height: 120px; resize: vertical; }
.row{ display:grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-actions{ display:flex; gap: 10px; flex-wrap:wrap; margin-top: 12px; }
.note{ margin-top: 10px; font-size: 12.8px; color: rgba(234,240,255,0.78); }

.footer{
  margin-top: 16px;
  padding-top: 16px;
  border-top:1px solid rgba(255,255,255,0.10);
  color: rgba(234,240,255,0.68);
  font-size: 12.5px;
  text-align:center;
}

/* Reveal animation */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.show{
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .media-card img{ height: 360px; }
  .info-grid{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .banner{ grid-template-columns: 1fr; }
  .banner-media img{ height: 220px; }
  .contact{ grid-template-columns: 1fr; }
  .row{ grid-template-columns: 1fr; }
}

@media (max-width: 520px){
  .page{ width: 92%; padding-top: 40px; }
  .media-card img{ height: 320px; }
  .stats{ grid-template-columns: 1fr; }
}

/* ===== Service Card Hover + Popup ===== */
.service-card{
  position: relative;
  transition: transform .35s ease, background .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.service-card:hover{
  background: linear-gradient(135deg, rgba(124,92,255,0.22), rgba(46,229,157,0.14));
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}

/* text color improve */
.service-card:hover p{ color: rgba(234,240,255,0.92); }
.service-card:hover li{ color: rgba(234,240,255,0.92); }

/* icon highlight */
.service-card:hover .icon{
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.28);
  transform: scale(1.06);
  transition: transform .35s ease;
}

/* Popup tooltip */
.service-card::after{
  /* content: "More details"; */
  position: absolute;
  left: 50%;
  bottom: -44px;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.75);
  color: #fff;
  padding: 8px 12px;
  font-size: 12.5px;
  border-radius: 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, bottom .25s ease;
  white-space: nowrap;
}

.service-card:hover::after{
  opacity: 1;
  bottom: -30px;
}
/* top row layout */
.top-row{
  display:flex;
  gap:12px;
  align-items:flex-start;
}

/* icon style (same like service icon) */
.sicon{
  width:44px;
  height:44px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,0.07);
  border:1px solid rgba(255,255,255,0.16);
  font-size:20px;
  position: relative;
  cursor: pointer;
  transition: background .3s ease, transform .3s ease;
}

/* hover color */
.sicon:hover{
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  transform: scale(1.1);
}

/* popup */
.sicon::after{
  content:"Know more";
  position:absolute;
  left:50%;
  bottom:-42px;
  transform:translateX(-50%);
  background: rgba(0,0,0,0.8);
  color:#fff;
  padding:6px 10px;
  font-size:12px;
  border-radius:8px;
  opacity:0;
  pointer-events:none;
  white-space:nowrap;
  transition: opacity .25s ease, bottom .25s ease;
}

.sicon:hover::after{
  opacity:1;
  bottom:-30px;
}
*{margin:0;padding:0;box-sizing:border-box;font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial;}
body{
  min-height:100vh;
  background: radial-gradient(circle at 20% 10%, rgba(79,70,229,.35), transparent 45%),
              radial-gradient(circle at 80% 80%, rgba(236,72,153,.25), transparent 50%),
              linear-gradient(135deg, #070914, #0b1030 55%, #060817);
  color:#eef2ff;
  padding:40px 0;
}

.section{
  width:min(1150px, 92%);
  margin:0 auto;
}

.split{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:22px;
  align-items:stretch;
}

@media (max-width: 860px){
  .split{grid-template-columns:1fr;}
}

/* ===== Cards ===== */
.split-card{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  padding: 26px;
  transition: all .35s ease;
  cursor: pointer;
  position: relative;
  overflow:hidden;
}

.split-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(circle at 20% 10%, rgba(124,92,255,.35), transparent 45%),
              radial-gradient(circle at 80% 80%, rgba(255,60,120,.28), transparent 50%);
  opacity:.35;
  transition:.35s ease;
  pointer-events:none;
}

.split-card:hover{
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.25);
  background: linear-gradient(135deg, rgba(79,70,229,.35), rgba(124,58,237,.25));
}

.split-card:hover::before{opacity:.6;}

.split-top h2{
  font-size: 22px;
  margin-bottom: 8px;
  position:relative;
  z-index:1;
}

.muted{
  color: rgba(238,242,255,0.75);
  line-height:1.5;
  position:relative;
  z-index:1;
}

.desc{
  margin-top: 14px;
  line-height: 1.6;
  color: rgba(238,242,255,0.9);
  position:relative;
  z-index:1;
}

.mini-grid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  position:relative;
  z-index:1;
}

.mini{
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 14px;
  color: rgba(238,242,255,0.92);
  transition: .25s ease;
}

.split-card:hover .mini{
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.18);
}

/* ===== Popup ===== */
.popup-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 18px;
}

.popup-box{
  width: min(520px, 96%);
  background: linear-gradient(135deg, rgba(15,23,42,0.98), rgba(2,6,23,0.98));
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  padding: 22px 22px 18px;
  color: #fff;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
  animation: pop .25s ease;
  position: relative;
}

@keyframes pop{
  from{transform: translateY(10px) scale(.96); opacity:0}
  to{transform: translateY(0) scale(1); opacity:1}
}

.popup-box h3{
  font-size: 20px;
  margin-bottom: 10px;
}

.popup-box p{
  color: rgba(255,255,255,0.88);
  line-height: 1.65;
  margin-bottom: 14px;
}

.popup-pills{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.pill{
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  background: rgba(124,92,255,0.18);
  border: 1px solid rgba(124,92,255,0.25);
  color: rgba(255,255,255,0.95);
}

.close-btn{
  position:absolute;
  top: 12px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color:#fff;
  cursor:pointer;
  font-size: 18px;
  display:grid;
  place-items:center;
  transition:.2s ease;
}
.close-btn:hover{background: rgba(255,255,255,0.12); transform: scale(1.03);}


/* ===== 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 */
}















/* =======================
   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);
}