/* ================= 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 */
    }
}

/* ================= IT SOLUTIONS STYLES ================= */
.it-solutions{
  padding: 90px 10%;
  background: radial-gradient(1200px 600px at 10% 10%, rgba(16, 185, 129, .12), transparent 60%),
              radial-gradient(900px 500px at 90% 30%, rgba(59, 130, 246, .12), transparent 55%),
              linear-gradient(135deg, #0f172a, #0b2a5f, #0e3a8a);
  color: #eaf0ff;
  overflow: hidden;
}

.it-wrap{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 50px;
  align-items: center;
}

.it-badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}
.it-badge .dot{
  width: 9px; height: 9px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(34,197,94,.15);
}
.it-badge p{ font-size: 13px; opacity: .9; letter-spacing: .2px; }

.it-title{
  margin-top: 18px;
  font-size: 44px;
  letter-spacing: .3px;
  line-height: 1.1;
}
.it-subtitle{
  margin-top: 8px;
  font-size: 18px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
}

.it-text{
  margin-top: 16px;
  color: rgba(234,240,255,.82);
  line-height: 1.9;
  font-size: 15.5px;
}

.it-chips{
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip{
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  font-size: 13px;
  color: rgba(255,255,255,.9);
  transition: transform .25s ease, background .25s ease, border .25s ease;
}
.chip:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.20);
}

.it-actions{
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.it-btn{
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.it-btn.primary{
  background: linear-gradient(135deg, #22c55e, #3b82f6);
  color: #071018;
  box-shadow: 0 18px 40px rgba(59,130,246,.18);
}
.it-btn.primary:hover{ transform: translateY(-2px); box-shadow: 0 22px 55px rgba(59,130,246,.28); }

.it-btn.ghost{
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,.92);
}
.it-btn.ghost:hover{ transform: translateY(-2px); background: rgba(255,255,255,0.10); }

.it-stats{
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.stat{
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
}
.stat h3{
  font-size: 26px;
  line-height: 1;
}
.stat p{
  margin-top: 6px;
  font-size: 12.5px;
  color: rgba(234,240,255,.75);
}

/* RIGHT IMAGE AREA */
.it-media{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 25px 70px rgba(0,0,0,.35);
  min-height: 420px;
}
.it-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.03);
  filter: saturate(1.05) contrast(1.03);
}

/* overlay gradient */
.it-media::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(120deg, rgba(7,11,20,.10), rgba(7,11,20,.55));
  pointer-events:none;
}

/* Floating cards */
.float-card{
  position: absolute;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(10, 18, 35, 0.58);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 45px rgba(0,0,0,.28);
  max-width: 220px;
}
.fc-icon{
  width: 36px; height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.10);
}
.float-card h4{ font-size: 14px; margin: 0; }
.float-card p{ font-size: 12px; margin: 2px 0 0; opacity: .82; }

.fc-1{ top: 16px; left: 16px; }
.fc-2{ bottom: 16px; left: 18px; }
.fc-3{ top: 50%; right: 16px; transform: translateY(-50%); }

/* Reveal animation */
.it-reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s ease, transform .8s ease;
}
.it-reveal.show{
  opacity: 1;
  transform: translateY(0);
}

/* Floating motion */
@keyframes floaty {
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-8px); }
}
.fc-1, .fc-2, .fc-3{ animation: floaty 3.8s ease-in-out infinite; }
.fc-2{ animation-delay: .6s; }
.fc-3{ animation-delay: 1.1s; }

/* Responsive */
@media (max-width: 980px){
  .it-wrap{ grid-template-columns: 1fr; }
  .it-title{ font-size: 36px; }
  .it-media{ min-height: 360px; }
  .it-stats{ grid-template-columns: 1fr; }
  .fc-3{ top: auto; bottom: 16px; right: 16px; transform: none; }
}

@media (max-width: 520px){
  .it-solutions{ padding: 70px 6%; }
  .it-title{ font-size: 32px; }
  .float-card{ max-width: 200px; }
}

/* ================= CUSTOM WEBSITE (cw) - First kudutha mari premium look ================= */
.cw-section{
  padding: 90px 10%;
  background:
    radial-gradient(circle at 10% 10%, rgba(59,130,246,0.22), transparent 60%),
    radial-gradient(circle at 90% 30%, rgba(34,197,94,0.22), transparent 60%),
    linear-gradient(180deg, #050b1c, #07152e);
  color: #eaf0ff;
  overflow: hidden;
}

.cw-wrap{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .95fr 1.05fr; /* left image, right content */
  gap: 50px;
  align-items: center;
}

/* LEFT IMAGE */
.cw-media{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 25px 70px rgba(0,0,0,.35);
  min-height: 440px;
}

.cw-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.03);
  filter: saturate(1.05) contrast(1.03);
}

/* image overlay */
.cw-media::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(120deg, rgba(7,11,20,.10), rgba(7,11,20,.60));
  pointer-events:none;
}

/* ISO badge on image */
.cw-badge{
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(10, 18, 35, 0.60);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 45px rgba(0,0,0,.25);
}

/* RIGHT CONTENT */
.cw-content{
  padding: 6px 0;
}

.cw-kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: .25px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  margin-bottom: 16px;
  opacity: .95;
}

.cw-title{
  font-size: 40px;
  line-height: 1.15;
  margin: 0 0 14px;
  letter-spacing: .2px;
}

.cw-text{
  margin-top: 14px;
  color: rgba(234,240,255,.82);
  line-height: 1.9;
  font-size: 15.5px;
}

/* pills */
.cw-pills{
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cw-pills span{
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  font-size: 13px;
  color: rgba(255,255,255,.90);
  transition: transform .25s ease, background .25s ease, border .25s ease;
}

.cw-pills span:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.20);
}

/* actions */
.cw-actions{
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cw-btn{
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 14px;
  color: #071018;
  background: linear-gradient(135deg, #22c55e, #3b82f6);
  box-shadow: 0 18px 40px rgba(59,130,246,.18);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.cw-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 55px rgba(59,130,246,.28);
  filter: brightness(1.02);
}

.cw-link{
  color: rgba(234,240,255,.92);
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  padding: 10px 6px;
  position: relative;
}

.cw-link::after{
  content:"";
  position:absolute;
  left: 6px;
  bottom: 6px;
  width: 0;
  height: 2px;
  background: rgba(234,240,255,.85);
  transition: width .25s ease;
}

.cw-link:hover::after{
  width: calc(100% - 12px);
}

/* Responsive */
@media (max-width: 980px){
  .cw-wrap{
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .cw-title{
    font-size: 34px;
  }
  .cw-media{
    min-height: 360px;
  }
}

@media (max-width: 520px){
  .cw-section{ padding: 70px 6%; }
  .cw-title{ font-size: 30px; }
}

/* ================= Attendance AI App (aa) - Premium Look ================= */
.aa-section{
  padding: 90px 10%;
  background:
    radial-gradient(circle at 10% 10%, rgba(59,130,246,0.22), transparent 60%),
    radial-gradient(circle at 90% 30%, rgba(34,197,94,0.22), transparent 60%),
    linear-gradient(180deg, #050b1c, #07152e);
  color: #eaf0ff;
  overflow: hidden;
}

.aa-wrap{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;  /* LEFT content | RIGHT image */
  gap: 50px;
  align-items: center;
}

/* LEFT CONTENT */
.aa-kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: .25px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  margin-bottom: 16px;
  opacity: .95;
}

.aa-title{
  font-size: 40px;
  line-height: 1.15;
  margin: 0 0 8px;
  letter-spacing: .2px;
}
.aa-subtitle{
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 700;
  color: rgba(234,240,255,.80);
}

.aa-text{
  margin-top: 14px;
  color: rgba(234,240,255,.82);
  line-height: 1.9;
  font-size: 15.5px;
}

/* pills */
.aa-pills{
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.aa-pills span{
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  font-size: 13px;
  color: rgba(255,255,255,.90);
  transition: transform .25s ease, background .25s ease, border .25s ease;
}
.aa-pills span:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.20);
}

/* actions */
.aa-actions{
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.aa-btn{
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 14px;
  color: #071018;
  background: linear-gradient(135deg, #22c55e, #3b82f6);
  box-shadow: 0 18px 40px rgba(59,130,246,.18);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.aa-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 55px rgba(59,130,246,.28);
  filter: brightness(1.02);
}
.aa-link{
  color: rgba(234,240,255,.92);
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  padding: 10px 6px;
  position: relative;
}
.aa-link::after{
  content:"";
  position:absolute;
  left: 6px;
  bottom: 6px;
  width: 0;
  height: 2px;
  background: rgba(234,240,255,.85);
  transition: width .25s ease;
}
.aa-link:hover::after{ width: calc(100% - 12px); }

/* stats */
.aa-stats{
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.aa-stat{
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
}
.aa-stat h4{
  font-size: 24px;
  line-height: 1;
  margin: 0;
}
.aa-stat p{
  margin-top: 6px;
  font-size: 12.5px;
  color: rgba(234,240,255,.75);
}

/* RIGHT IMAGE */
.aa-media{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 25px 70px rgba(0,0,0,.35);
  min-height: 460px;
}
.aa-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.03);
  filter: saturate(1.05) contrast(1.03);
}
.aa-media::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(120deg, rgba(7,11,20,.10), rgba(7,11,20,.60));
  pointer-events:none;
}
.aa-badge{
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(10, 18, 35, 0.60);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 45px rgba(0,0,0,.25);
}

/* floating cards */
.aa-float{
  position: absolute;
  z-index: 2;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(10, 18, 35, 0.58);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 45px rgba(0,0,0,.28);
  max-width: 220px;
}
.aa-float .ic{
  width: 36px; height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.10);
}
.aa-float h5{ font-size: 14px; margin: 0; }
.aa-float p{ font-size: 12px; margin: 2px 0 0; opacity: .82; }

.f1{ top: 16px; right: 16px; }
.f2{ bottom: 16px; left: 16px; }
.f3{ top: 50%; left: 16px; transform: translateY(-50%); }

@keyframes aaFloat {
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-8px); }
}
.f1, .f2, .f3{ animation: aaFloat 3.8s ease-in-out infinite; }
.f2{ animation-delay: .6s; }
.f3{ animation-delay: 1.1s; }

/* reveal */
.aa-reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s ease, transform .8s ease;
}
.aa-reveal.show{
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 980px){
  .aa-wrap{ grid-template-columns: 1fr; gap: 32px; }
  .aa-title{ font-size: 34px; }
  .aa-media{ min-height: 360px; }
  .aa-stats{ grid-template-columns: 1fr; }
  .f3{ top:auto; bottom: 16px; left:auto; right: 16px; transform: none; }
}
@media (max-width: 520px){
  .aa-section{ padding: 70px 6%; }
  .aa-title{ font-size: 30px; }
  .aa-float{ max-width: 200px; }
}

/* ================= Coimbatore Choose (cb) - Premium Look ================= */
.cb-section{
  padding: 90px 10%;
  background:
    radial-gradient(circle at 10% 10%, rgba(59,130,246,0.22), transparent 60%),
    radial-gradient(circle at 90% 30%, rgba(34,197,94,0.22), transparent 60%),
    linear-gradient(180deg, #050b1c, #07152e);
  color: #eaf0ff;
  overflow: hidden;
}

.cb-wrap{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr; /* LEFT content | RIGHT image */
  gap: 50px;
  align-items: center;
}

/* LEFT CONTENT */
.cb-kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: .25px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  margin-bottom: 16px;
  opacity: .95;
}

.cb-title{
  font-size: 40px;
  line-height: 1.15;
  margin: 0 0 8px;
  letter-spacing: .2px;
}

.cb-subtitle{
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 700;
  color: rgba(234,240,255,.80);
}

.cb-text{
  margin-top: 14px;
  color: rgba(234,240,255,.82);
  line-height: 1.9;
  font-size: 15.5px;
}

/* pills */
.cb-pills{
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cb-pills span{
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  font-size: 13px;
  color: rgba(255,255,255,.90);
  transition: transform .25s ease, background .25s ease, border .25s ease;
}
.cb-pills span:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.20);
}

/* actions */
.cb-actions{
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.cb-btn{
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 14px;
  color: #071018;
  background: linear-gradient(135deg, #22c55e, #3b82f6);
  box-shadow: 0 18px 40px rgba(59,130,246,.18);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.cb-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 55px rgba(59,130,246,.28);
  filter: brightness(1.02);
}
.cb-link{
  color: rgba(234,240,255,.92);
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  padding: 10px 6px;
  position: relative;
}
.cb-link::after{
  content:"";
  position:absolute;
  left: 6px;
  bottom: 6px;
  width: 0;
  height: 2px;
  background: rgba(234,240,255,.85);
  transition: width .25s ease;
}
.cb-link:hover::after{ width: calc(100% - 12px); }

/* points (mini cards) */
.cb-points{
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.cb-points .point{
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
}
.cb-points .point h4{
  margin: 0;
  font-size: 15px;
}
.cb-points .point p{
  margin: 6px 0 0;
  font-size: 12.5px;
  color: rgba(234,240,255,.75);
  line-height: 1.6;
}

/* RIGHT IMAGE */
.cb-media{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 25px 70px rgba(0,0,0,.35);
  min-height: 460px;
}
.cb-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.03);
  filter: saturate(1.05) contrast(1.03);
}
.cb-media::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(120deg, rgba(7,11,20,.10), rgba(7,11,20,.60));
  pointer-events:none;
}

.cb-badge{
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(10, 18, 35, 0.60);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 45px rgba(0,0,0,.25);
}

/* floating cards */
.cb-float{
  position: absolute;
  z-index: 2;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(10, 18, 35, 0.58);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 45px rgba(0,0,0,.28);
  max-width: 220px;
}
.cb-float .ic{
  width: 36px; height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.10);
}
.cb-float h5{ font-size: 14px; margin: 0; }
.cb-float p{ font-size: 12px; margin: 2px 0 0; opacity: .82; }

.c1{ top: 16px; right: 16px; }
.c2{ bottom: 16px; left: 16px; }
.c3{ top: 50%; left: 16px; transform: translateY(-50%); }

@keyframes cbFloat {
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-8px); }
}
.c1, .c2, .c3{ animation: cbFloat 3.8s ease-in-out infinite; }
.c2{ animation-delay: .6s; }
.c3{ animation-delay: 1.1s; }

/* reveal */
.cb-reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s ease, transform .8s ease;
}
.cb-reveal.show{
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 980px){
  .cb-wrap{ grid-template-columns: 1fr; gap: 32px; }
  .cb-title{ font-size: 34px; }
  .cb-media{ min-height: 360px; }
  .cb-points{ grid-template-columns: 1fr; }
  .c3{ top:auto; bottom: 16px; left:auto; right: 16px; transform: none; }
}
@media (max-width: 520px){
  .cb-section{ padding: 70px 6%; }
  .cb-title{ font-size: 30px; }
  .cb-float{ max-width: 200px; }
}


/* ===== 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);
}