/* ================= 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{
      --bg:#0b1020;
      --card: rgba(255,255,255,0.06);
      --card2: rgba(255,255,255,0.08);
      --line: rgba(255,255,255,0.12);
      --text:#eaf0ff;
      --muted: rgba(234,240,255,0.72);
      --muted2: rgba(234,240,255,0.55);
      --brand:#7c3aed;
      --brand2:#22c55e;
      --brand3:#06b6d4;
      --shadow: 0 20px 55px rgba(0,0,0,0.45);
      --radius: 22px;
    }

    *{ box-sizing:border-box; margin:0; padding:0; font-family:"Poppins",system-ui,-apple-system,Segoe UI,Roboto,Arial; }
    html{ scroll-behavior:smooth; }
    body{
      color:var(--text);
      background:
        radial-gradient(1200px 600px at 15% 10%, rgba(124,58,237,0.45), transparent 55%),
        radial-gradient(900px 550px at 85% 15%, rgba(34,197,94,0.35), transparent 55%),
        radial-gradient(800px 500px at 50% 95%, rgba(6,182,212,0.25), transparent 60%),
        linear-gradient(180deg, #070a14, #0b1020 35%, #070a14);
      overflow-x:hidden;
    }

    .container{ width:min(1200px, 92%); margin:0 auto; }
    section{ padding: 34px 0; }

    /* ======= COMMON UI ======= */
    .reveal{
      opacity:0;
      transform: translateY(18px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .reveal.show{ opacity:1; transform: translateY(0); }
    @media (prefers-reduced-motion: reduce){
      .reveal{ opacity:1; transform:none; transition:none; }
    }

    .pill{
      display:inline-flex; gap:8px; align-items:center;
      padding:8px 12px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.14);
      background: rgba(255,255,255,0.06);
      color: var(--muted);
      font-size: 13px;
      width: fit-content;
    }
    .pill b{ color: var(--text); font-weight: 600; }

    .section-head{
      display:flex; align-items:flex-end; justify-content:space-between;
      gap: 16px;
      margin-bottom: 16px;
    }
    .section-head h2{
      font-size: clamp(20px, 2.2vw, 30px);
      letter-spacing: -0.3px;
    }
    .section-head p{
      max-width: 680px;
      color: var(--muted);
      line-height: 1.7;
      font-size: 14.6px;
    }

    .grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }
    .card{
      border-radius: var(--radius);
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.12);
      box-shadow: 0 18px 40px rgba(0,0,0,0.25);
      padding: 16px;
      position:relative;
      overflow:hidden;
      transition: transform .25s ease, background .25s ease;
      min-height: 210px;
    }
    .card:hover{ transform: translateY(-4px); background: rgba(255,255,255,0.07); }

    .top{
      display:flex; align-items:flex-start; justify-content:space-between;
      gap:12px;
      margin-bottom: 10px;
    }
    .badge{
      font-size: 12px;
      padding: 7px 10px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.12);
      background: rgba(255,255,255,0.06);
      color: var(--muted);
      white-space:nowrap;
    }
    .card h3{ font-size: 16px; letter-spacing:-0.2px; }
    .card p{ color: var(--muted); font-size: 13.6px; line-height: 1.65; margin-top: 6px; }

    ul{
      margin-top: 10px;
      padding-left: 18px;
      color: var(--muted);
      line-height: 1.8;
      font-size: 13.4px;
    }
    li{ margin: 2px 0; }

    .btn{
      border:0; outline:0; cursor:pointer;
      padding: 11px 14px;
      border-radius: 14px;
      font-weight: 600;
      color: #081018;
      background: linear-gradient(135deg, var(--brand2), #7CFFB2);
      box-shadow: 0 18px 40px rgba(34,197,94,0.25);
      transition: transform .2s ease, filter .2s ease;
      white-space:nowrap;
      display:inline-flex; align-items:center; gap:8px;
      text-decoration:none;
    }
    .btn:hover{ transform: translateY(-1px); filter: brightness(1.04); }
    .btn.secondary{
      color: var(--text);
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.14);
      box-shadow: none;
    }

    /* ======= HERO SECTION ONLY ======= */
    .hero{
      padding: 34px 0 10px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 16px;
      align-items:stretch;
    }
    .hero h1{
      font-size: clamp(28px, 3.4vw, 46px);
      line-height: 1.08;
      margin-top: 12px;
      letter-spacing: -0.6px;
    }
    .hero .lead{
      margin-top: 12px;
      color: var(--muted);
      font-size: 15.5px;
      line-height: 1.7;
    }

    .hero-actions{
      display:flex; flex-wrap:wrap; gap:12px;
      margin-top: 16px;
      align-items:center;
    }

    .hero-card{
      border-radius: var(--radius);
      border: 1px solid rgba(255,255,255,0.12);
      background:
        radial-gradient(700px 280px at 20% 0%, rgba(124,58,237,0.35), transparent 60%),
        radial-gradient(600px 300px at 90% 10%, rgba(34,197,94,0.25), transparent 65%),
        rgba(255,255,255,0.05);
      box-shadow: var(--shadow);
      padding: 16px;
    }
    .hero-card h3{ font-size: 16px; }
    .quick{
      margin-top: 10px;
      display:grid; gap:10px;
    }
    .q{
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,0.10);
      background: rgba(0,0,0,0.16);
      padding: 12px;
      color: var(--muted);
      font-size: 13.2px;
      line-height:1.6;
    }

    /* ======= CALLOUT ======= */
    .callout{
      border-radius: var(--radius);
      border: 1px solid rgba(255,255,255,0.12);
      background: linear-gradient(135deg, rgba(124,58,237,0.22), rgba(34,197,94,0.10));
      padding: 16px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      box-shadow: var(--shadow);
    }
    .callout p{ color: var(--muted); line-height:1.7; }
    .callout b{ color: var(--text); }

    /* ======= CONTACT ======= */
    .cta-box{
      border-radius: calc(var(--radius) + 6px);
      border: 1px solid rgba(255,255,255,0.14);
      background:
        radial-gradient(800px 320px at 10% 0%, rgba(34,197,94,0.28), transparent 60%),
        radial-gradient(700px 320px at 90% 10%, rgba(124,58,237,0.30), transparent 60%),
        rgba(255,255,255,0.05);
      box-shadow: var(--shadow);
      padding: 18px;
      display:grid;
      grid-template-columns: 1fr 0.9fr;
      gap: 14px;
    }
    .form{
      border-radius: var(--radius);
      border: 1px solid rgba(255,255,255,0.12);
      background: rgba(0,0,0,0.16);
      padding: 14px;
    }
    .row{ display:grid; grid-template-columns: 1fr 1fr; gap: 10px; }
    .field{ display:flex; flex-direction:column; gap:6px; margin-top: 10px; }
    label{ font-size: 12.5px; color: var(--muted); }
    input, textarea, select{
      width:100%;
      padding: 11px 12px;
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,0.14);
      background: rgba(255,255,255,0.06);
      color: var(--text);
      outline:none;
      transition: border .2s ease, transform .2s ease;
      font-size: 14px;
    }
    input:focus, textarea:focus, select:focus{
      border-color: rgba(34,197,94,0.55);
      transform: translateY(-1px);
    }
    textarea{ min-height: 90px; resize: vertical; }
    .form-actions{
      margin-top: 12px;
      display:flex; gap:10px; flex-wrap:wrap; align-items:center;
    }
    .note{
      font-size: 12.5px;
      color: var(--muted2);
      line-height:1.5;
      margin-top: 10px;
    }

    /* ======= RESPONSIVE ======= */
    @media (max-width: 980px){
      .hero-grid{ grid-template-columns: 1fr; }
      .grid{ grid-template-columns: 1fr; }
      .cta-box{ grid-template-columns: 1fr; }
      .row{ grid-template-columns: 1fr; }
    }




/* ===== 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);
}



























