/* ================= 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 */
    }
}

/* ===== Recruitment Cycle Section ===== */

.recruitment-cycle{
  width: 100%;
  padding: 70px 0;
  background: #0b1020; /* change if needed */
  text-align: center;
}

.recruitment-heading{
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
  position: relative;
}

/* underline accent */
.recruitment-heading::after{
  content: "";
  width: 90px;
  height: 4px;
  background: #7c5cff;
  display: block;
  margin: 12px auto 0;
  border-radius: 4px;
}

.recruitment-image-wrap{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.recruitment-image-wrap img{
  width: min(900px, 92%);
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.12);
}

/* responsive */
@media(max-width: 768px){
  .recruitment-heading{
    font-size: 28px;
  }
}


    :root{
      --bg:#f5f7fb;
      --card:#ffffff;
      --ink:#1f2a44;
      --muted:#6b7890;
      --primary:#1f2b6b;
      --primary2:#0b0f3b;
      --line:#e8edf5;
      --shadow: 0 14px 30px rgba(18, 33, 78, 0.10);
      --shadow2: 0 10px 22px rgba(15, 28, 72, 0.12);
      --radius: 16px;
    }

    *{ box-sizing:border-box; margin:0; padding:0; font-family:"Poppins",system-ui,-apple-system,Segoe UI,Roboto,Arial; }
    body{ background:var(--bg); color:var(--ink); }

    /* ======= TOP NAV ======= */
    .topbar{
      position: sticky;
      top: 0;
      z-index: 999;
      background: linear-gradient(90deg, var(--primary2), var(--primary));
      padding: 14px 0;
      box-shadow: 0 10px 20px rgba(0,0,0,.12);
    }
    .navwrap{
      width: min(1200px, 92%);
      margin: 0 auto;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:10px;
      color:#fff;
      font-weight:600;
      letter-spacing:.2px;
    }
    .brand .logo{
      width:34px; height:34px;
      border-radius:50%;
      display:grid; place-items:center;
      background: rgba(255,255,255,.14);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.20);
    }
    .brand svg{ width:20px; height:20px; fill:#fff; opacity:.95; }

    .navlinks{
      display:flex;
      align-items:center;
      gap:18px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .navlinks a{
      color: rgba(255,255,255,.88);
      text-decoration:none;
      font-size:13px;
      font-weight:500;
      padding: 8px 10px;
      border-radius: 10px;
      transition:.25s ease;
    }
    .navlinks a:hover{
      background: rgba(255,255,255,.10);
      color:#fff;
    }
    .navbtn{
      background: #2f8cff;
      color:#fff !important;
      padding: 9px 14px !important;
      border-radius: 10px;
      box-shadow: 0 12px 18px rgba(47,140,255,.25);
    }

    /* ======= PAGE WRAP ======= */
    .wrap{
      width: min(1200px, 92%);
      margin: 22px auto 60px;
    }

    /* ======= HERO ======= */
    .hero{
      display:grid;
      grid-template-columns: 1.25fr .95fr;
      gap: 22px;
      align-items: start;
      margin-top: 10px;
    }

    .hero-left{
      background: transparent;
      padding: 8px 4px;
    }
    .hero-title{
      font-size: 40px;
      line-height: 1.15;
      font-weight: 700;
      letter-spacing: -.4px;
      color: #1b2450;
      margin-bottom: 10px;
    }
    .hero-sub{
      font-size: 13px;
      color: #4e5a74;
      font-weight: 600;
      margin-bottom: 16px;
    }
    .hero-p{
      color: var(--muted);
      line-height: 1.7;
      font-size: 14px;
      margin-bottom: 14px;
      max-width: 680px;
    }

    .hero-right{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      align-items: start;
    }
    .mini-card{
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      overflow:hidden;
    }
    .mini-img{
      height: 110px;
      width:100%;
      object-fit: cover;
      display:block;
    }
    .mini-body{ padding: 12px 12px 14px; }
    .mini-head{
      display:flex;
      align-items:center;
      gap:10px;
      margin-bottom: 8px;
    }
    .mini-icon{
      width:30px; height:30px;
      border-radius: 10px;
      background: #f1f4ff;
      display:grid; place-items:center;
      box-shadow: inset 0 0 0 1px rgba(31,43,107,.08);
    }
    .mini-icon svg{ width:16px; height:16px; fill:#1f2b6b; }
    .mini-title{
      font-weight: 700;
      font-size: 13px;
      color:#1e2758;
    }
    .mini-text{
      color: var(--muted);
      font-size: 12px;
      line-height: 1.55;
    }

    .big-img-card{
      grid-column: 2 / 3;
      grid-row: 1 / 3;
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow:hidden;
      box-shadow: var(--shadow);
      min-height: 220px;
    }
    .big-img-card img{
      width:100%;
      height:100%;
      object-fit: cover;
      display:block;
    }

    /* ======= SECTIONS GRID (like screenshot 2 columns) ======= */
    .section-grid{
      margin-top: 18px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }
    .panel{
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow2);
      padding: 20px;
    }
    .panel h3{
      font-size: 18px;
      font-weight: 700;
      color:#1c2654;
      margin-bottom: 10px;
    }
    .panel p{
      color: var(--muted);
      font-size: 13px;
      line-height: 1.75;
      margin-bottom: 12px;
    }

    /* right top panel contains cards row */
    .service-head{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:12px;
      margin-bottom: 14px;
    }
    .service-note{
      color:#2f8cff;
      font-size: 14px;
      font-weight: 600;
      white-space: nowrap;
    }

    .cards-row{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }
    .service-card{
      background: #ffffff;
      border: 1px solid var(--line);
      border-radius: 16px;
      box-shadow: var(--shadow);
      overflow:hidden;
    }
    .service-card img{
      width:100%;
      height: 120px;
      object-fit: cover;
      display:block;
    }
    .service-body{
      padding: 12px 12px 14px;
    }
    .service-title{
      display:flex;
      align-items:center;
      gap:10px;
      margin-bottom: 8px;
    }
    .badge-icon{
      width:30px; height:30px;
      border-radius: 10px;
      background:#f1f4ff;
      display:grid; place-items:center;
      box-shadow: inset 0 0 0 1px rgba(31,43,107,.08);
    }
    .badge-icon svg{ width:16px; height:16px; fill:#1f2b6b; }
    .service-body h4{
      font-size: 13px;
      font-weight: 800;
      color:#1c2654;
    }
    .service-body p{
      margin-top: 6px;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.6;
    }

    /* ======= Bottom row panels (like screenshot) ======= */
    .cta-btn{
      display:inline-block;
      margin-top: 8px;
      background: #232b63;
      color:#fff;
      font-size: 12px;
      font-weight: 700;
      text-decoration:none;
      padding: 10px 14px;
      border-radius: 10px;
      letter-spacing:.2px;
      box-shadow: 0 12px 18px rgba(35,43,99,.25);
      transition:.25s ease;
    }
    .cta-btn:hover{ transform: translateY(-1px); }

    .link-ish{
      color:#2f8cff;
      font-size: 12px;
      margin-top: 10px;
      display:block;
      text-decoration:none;
      font-weight: 600;
    }

    /* ======= Responsive ======= */
    @media (max-width: 980px){
      .hero{ grid-template-columns: 1fr; }
      .hero-right{ grid-template-columns: 1fr; }
      .big-img-card{ grid-column:auto; grid-row:auto; min-height: 220px; }
      .section-grid{ grid-template-columns: 1fr; }
      .cards-row{ grid-template-columns: 1fr; }
      .hero-title{ font-size: 32px; }
      .navlinks{ gap:10px; }
    }

/* ===== Scroll Reveal Base ===== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .75s ease, transform .75s ease;
  will-change: transform, opacity;
}
.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* HERO LEFT: blur + fade */
.hero-left.reveal {
  filter: blur(6px);
}
.hero-left.reveal.show {
  filter: blur(0);
}

/* MINI CARD: pop */
.mini-card.reveal {
  transform: translateY(16px) scale(.96);
}
.mini-card.reveal.show {
  transform: translateY(0) scale(1);
}

/* BIG IMAGE: zoom + fade */
.big-img-card img {
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.2s ease, transform 1.2s ease;
}
.big-img-card.show img {
  opacity: 1;
  transform: scale(1);
}

/* BIG IMAGE floating */
.big-img-card.float img {
  animation: floatImg 6s ease-in-out infinite;
}
@keyframes floatImg {
  0%   { transform: translateY(0) scale(1); }
  50%  { transform: translateY(-8px) scale(1); }
  100% { transform: translateY(0) scale(1); }
}

/* PANELS: left/right slide */
.panel.left.reveal { transform: translateX(-22px) translateY(10px); }
.panel.right.reveal { transform: translateX(22px) translateY(10px); }
.panel.left.reveal.show,
.panel.right.reveal.show {
  transform: translateX(0) translateY(0);
}

/* SERVICE CARDS stagger look */
.service-card.reveal { transform: translateY(18px); }
.service-card.reveal.show { transform: translateY(0); }

/* Hover lift */
.service-card:hover, .mini-card:hover, .panel:hover {
  transform: translateY(-4px) !important;
  transition: transform .25s ease;
}

/* ===== 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);
}