 :root {
  --bg: #0b1020; /* page background */
  --card: #0f152c; /* card background */
  --muted: #a6b0cf; /* muted text */
  --text: #e8ecff; /* primary text */
  --brand: #6e8bff; /* brand accent */
  --brand-2: #00e0b8; /* secondary accent */
  --ring: rgba(110, 139, 255, 0.35);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --maxw: 1100px;
}
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.5;
}
a {
  color: inherit;
  text-decoration: none;
}

.cta a:hover{
  opacity: 1;
}


.logo_img{
  /* max-width: 100%; */
  display: block;
  /* padding: 30px; */
  width: 160px;

}

 .Singapore_section_img{
  max-width: 100%;
  display: block;
  padding: 30px;
}

.CaseStudies_section_img{
    max-width: 100%;
  display: block;
  /* padding: 30px; */
      padding: 30px;
    border-radius: 40px;
}
/* .btn {
  display: inline-block;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.2px;
  min-width: 180px; 
  text-align: center; 
  white-space: nowrap; 
}
.btn.primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #0a0f1f;
  box-shadow: 0 12px 24px rgba(110, 139, 255, 0.35);
} */



.btn {
  display: inline-block;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.2px;
  min-width: 180px;
  text-align: center;
  white-space: nowrap;
  transition: all 0.3s ease; /* 👈 Smooth transition */
}

.btn.primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #0a0f1f;
  box-shadow: 0 12px 24px rgba(110, 139, 255, 0.35);
}

/* Hover effect */
.btn.primary:hover {
  transform: translateY(-3px); /* 👈 Button thoda upar lift hoga */
  box-shadow: 0 16px 32px rgba(110, 139, 255, 0.5);
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
}

/* .btn.ghost {
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
} */


.btn.ghost {
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  color: #fff;
  transition: all 0.3s ease; /* 👈 smooth transition */
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.08); /* 👈 light greyish overlay */
  border-color: rgba(255, 255, 255, 0.25); /* 👈 border thoda enhance */
}
.badge {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(110, 139, 255, 0.15);
  border: 1px solid var(--ring);
  color: #cfe1ff;
  font-weight: 600;
}
@media (max-width: 1115px) {
  .container {
    max-width: var(--maxw);
    margin-inline: auto;
    /* padding: clamp(16px, 4vw, 28px); */
  }
}

/* Header */
header.site {
  position: sticky;
  top: 0;
  z-index: 30;
  background: linear-gradient(
    180deg,
    rgba(11, 16, 32, 0.9),
    rgba(11, 16, 32, 0.6)
  );
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
header .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 9px;
  padding-bottom: 9px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
}
.logo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-2);
  box-shadow: 0 0 0 6px rgba(0, 224, 184, 0.15);
}
nav a {
  opacity: 0.85;
  margin-left: 1rem;
}
nav a:hover {
  opacity: 1;
}
.menu-toggle {
  display: none;
  font-size: 22px;
  background: none;
  color: #fff;
  border: none;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
}
.hero::after {
  content: "";
  position: absolute;
  height: 70%;
  background: radial-gradient(
      50% 60% at 50% 0%,
      rgba(110, 139, 255, 0.25),
      transparent 60%
    ),
    radial-gradient(
      50% 60% at 70% 20%,
      rgba(0, 224, 184, 0.18),
      transparent 60%
    );
  z-index: -1;
  filter: blur(30px);
}
.hero-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1.2fr 0.9fr;
  align-items: center;
}
.hero h1 {
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.05;
  padding: 15px 0px 0px 0px;      
}
.sub {
  font-size: clamp(16px, 2.2vw, 18px);
  color: var(--muted);
  max-width: 58ch;
}
.cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
  /* justify-content: center; */
  align-items: center;
}
.hero-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 16px;
}
.hero-media {
  aspect-ratio: 16/10;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, #1a2142, #0e1430);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.hero-media .placeholder {
  display: grid;
  place-items: center;
  height: 100%;
  color: #a7b4f6;
  background-color:#FFF;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.stat {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
  box-shadow: var(--shadow);
}
.stat h3 {
  margin: 0;
  font-size: clamp(22px, 3vw, 28px);
}
.stat p {
  margin: 0.2rem 0 0;
  color: var(--muted);
}

/* Section */
section {
  padding-block: clamp(32px, 8vw, 64px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
section h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  margin: 0 0 10px;
}
section .lead {
  color: var(--muted);
  max-width: 70ch;
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 22px;
}
.card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.card2 {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.card h3 {
  margin: 0.4rem 0;
}
.pill {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.85rem;
  color: #c9d6ff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
}

/* Case studies */
.cs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 18px;
}
.cs {
  display: grid;
  gap: 12px;
}
.media {
  /* padding: 30px;
  aspect-ratio: 16/9; */
  border-radius: 14px;
  background: #0a0f1f;
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  color: #9fb4ff;
}
.kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.kpis2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.kpi {
  background: rgba(110, 139, 255, 0.1);
  border: 1px solid var(--ring);
  border-radius: 12px;
  padding: 10px;
  text-align: center;
  font-size: 14px;
}
@media (max-width: 597px) {
  .kpis {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .menu-toggle {
    display: block;
  }
  .cta{
    justify-content: center;
  }
}

/* Feature list */
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.li svg {
  flex: 0 0 22px;
  margin-top: 2px;
}
.muted {
  color: var(--muted);
}

/* CTA */
.cta-block {
  background: linear-gradient(
    180deg,
    rgba(110, 139, 255, 0.15),
    rgba(0, 224, 184, 0.12)
  );
  border: 1px solid var(--ring);
  border-radius: calc(var(--radius) + 6px);
  padding: 24px;
  display: grid;
  /* gap: 10px; */
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

/* Footer */
footer {
  padding: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cs-grid {
    grid-template-columns: 1fr;
  }
  .features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .cta {
    flex-direction: column; /* Stack buttons vertically on mobile */
    align-items: center;
  }
  
  .btn {
    width: 100%; /* Full width on mobile */
    max-width: 240px; /* But not too wide */
    min-width: unset;
  }
}

@media (max-width: 597px) {
  nav {
    display: none;
  }
  .stats {
    grid-template-columns: 1fr;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .muted {
    font-size: 12px;
  }
  .cs {
    gap: 12px;
    display: contents;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 0.8rem 1rem; /* Slightly smaller padding on very small screens */
    font-size: 14px; /* Smaller font if needed */
  }
}

/* <---- container ----> */

/* Standard container */
.container {
  width: 100%;
  max-width: 1200px; /* You can adjust (e.g., 1140px, 1280px) */
  margin: 0 auto; /* Centers content */
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
}

/* Responsive breakpoints */
@media (max-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 720px;
  }
  
}

@media (max-width: 576px) {
  .container {
    max-width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* whatsapp -->>>>>> */

/* .tu-whatsapp-btn > div {
  background: rgb(37, 211, 102);
  box-sizing: border-box;
  display: inline-flex;
  padding: 10px 14px;
  justify-content: center;
  align-items: center;
  color: #fff;
  cursor: pointer;
  border-radius: 40px;
  position: fixed;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 4px;
  right: 28px;
  bottom: 56px;
  z-index: 99999;
} */


 .tu-whatsapp-btn > div {
  background: rgb(37, 211, 102);
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  border-radius: 40px;
  position: fixed;   /* ✅ hamesha corner me fixed rahega */
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 4px;
  right: 28px;
  bottom: 56px;
  z-index: 99999;

  /* width: 48px; */
  height: 48px;
  padding: 0px 12px;
  overflow: hidden;
  transition: width 0.3s ease, padding 0.3s ease;
}

/* Icon ka size fix */
.tu-whatsapp-btn > div svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Text default hidden */
.tu-whatsapp-btn-text {
  margin-left: 10px;
  white-space: nowrap;
  transition: opacity 0.2s ease;
  font-size: 14px;
}

@media (max-width: 1250px){

  .tu-whatsapp-btn-text {
    display: none;  /* text hide */
  }

}

@media (min-width: 768px) and (max-width: 991px) {
  .site nav .btn {
    padding: 10px 24px;
    font-size: 16px;
    min-width: auto;
  }
}

/* ✅ Mobile view */
@media (max-width: 576px) {
  .tu-whatsapp-btn > div {
    bottom: 20px;   /* thoda upar adjust kar lo */
    right: 16px;
    width: 56px;    /* thoda bada circle */
    height: 56px;
    padding: 0;
  }

  .tu-whatsapp-btn-text {
    display: none;  /* text hide */
  }

  #contact .cta-phone-number {
    text-align: center;
  }
}



@media (max-width: 767px) {
  .tu-whatsapp-btn > div {
    box-shadow: rgba(24, 177, 51, 0.5) 0px 2px 16px;
    bottom: 28px;
  }
}

.tu-whatsapp-btn-text {
  margin-left: 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

/* footer css  */

.footer {
  background: #0c0f1a; /* Dark theme */
  color: #bbb;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-col {
  margin: 20px;
}

.footer-col h3 {
  font-size: 16px;
  margin-bottom: 20px;
  color: #00e0ff; /* Accent color */
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #00e0ff;
}

.footer-logo {
 width: 250px;
 margin-bottom: 15px;
}

.footer-partner {
  width: 150px;
  margin-top: 10px;
  /* background-color: #e8ecff; */
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s;
}

.social-links img:hover {
  transform: scale(1.1);
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 14px;
  color: #bbb;
  align-items: center;

}

.footer-bottom a {
  color: #bbb;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #00e0ff;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

    .footer-col:has(h3:contains("CONNECT")) {
    order: -1;
  }

  /* Alternative approach using nth-child if the above doesn't work */
  .footer-col:nth-child(4) {
    order: -1;
  }


.footer-col.info {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}

  .footer-col {
    margin: 15px 0;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

.icon {
  width: 40px;
  height: 40px;
  margin: 8px;
  border-radius: 6px;
  transition: background 0.3s, box-shadow 0.3s;
}

.footer-col.info {
  display: flex;
  flex-direction: column;
}

/* <----- nav toggle -----> */

/* Mobile nav hidden initially as side drawer */
@media (max-width: 767px) {
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 1);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    /* z-index: 900; */
  }
  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  nav {
    position: fixed;
    top: 0;
    left: 0px;
    transform: translateX(-100%);
    width: 100%;
    height: 100vh;
    background-color: var(--bg);
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 45px;
    transition: all 0.3s ease;
    font-size: 20px;
    z-index: 1000;
    justify-content: center;
    align-items: center;

  }


  .btn {
display: inline-block;
padding: 0.9rem 2.2rem;
border-radius: 999px;
font-weight: 700;
letter-spacing: 0.2px;
 }

  nav.active {
    transform: translateX(0%);
  }

  .menu-toggle {
    display: block;
    z-index: 1100;
  }
}

/* swipper --->> */

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.highlight {
color: var(--brand-2);
text-decoration: none;
border-bottom: 1px solid var(--brand-2);
/* padding-bottom: 1px; */
}

.highlight:hover {
border-bottom-width: 2px;
transition: border-bottom-width 0.2s ease;
}