:root {
  --primary: #0EA5E9;
  --secondary: #F8FAFC;
  --accent: #0F172A;
  --hero-overlay: rgba(15,23,42,0.85);

  /* FONT SYSTEM */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background: var(--secondary);
  color: var(--accent);
}



/* ================= HEADER ================= */
.header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 6px 25px rgba(0,0,0,0.15);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1300px;
  margin: auto;
  padding: 16px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===== LOGO ===== */
.logo {
  display: flex;
  align-items: center;
  height: 48px;
  overflow: visible;
}

.logo-icon {
  height: 50px;
  width: auto;
  object-fit: contain;
  transform: scale(1.5);
  transform-origin: center center;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-icon:hover {
  transform: scale(1.55);
  filter: drop-shadow(0 4px 8px rgba(14,165,233,0.4));
}

/* ================= NAVIGATION ================= */
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  position: relative;
  z-index: 1001;
}

/* Top-level links */
.nav a {
  text-decoration: none;
  color: var(--accent);
  font-size: 16px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.nav a:hover {
  color: var(--primary);
  background: rgba(14,165,233,0.1);
}

/* Nav item wrapper */
.nav-item {
  position: relative;
}

.nav-item > a {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: color 0.3s ease;
}

/* Arrow indicator */
.nav-item > a::after {
  content: "▾";
  font-size: 12px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.nav-item:hover > a::after {
  transform: rotate(180deg);
  color: var(--primary);
}

/* Dropdown container */
.nav-item .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 200px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  display: none;
  flex-direction: column;
  padding: 10px 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

/* Show dropdown on hover */
.nav-item:hover .dropdown {
  display: flex;
}

/* Dropdown links */
.nav-item .dropdown a {
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--accent);
  border-radius: 6px;
  transition: all 0.3s ease, transform 0.2s ease;
}

.nav-item .dropdown a:hover {
  background: #ffffff;
  color: var(--primary);
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(14,165,233,0.2);
}

/* ===== CALL TO ACTION BUTTON ===== */
.nav-btn {
  background: var(--primary);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 18px rgba(14,165,233,0.35);
  transition: all 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.nav-btn:hover {
  background: #0284c7;
  box-shadow: 0 8px 22px rgba(14,165,233,0.5);
  transform: translateY(-3px);
}


/* ===== HAMBURGER ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 3000;

  width: 44px;
  height: 44px;

  background: #0EA5E9;        /* BLACK BG */
  border-radius: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: #fff;        /* WHITE ICON */
  margin: 3px 0;
  border-radius: 2px;
  transition: all 0.4s ease;
}


/* ===== HAMBURGER TO CROSS ===== */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* ===== MOBILE NAV OVERLAY ===== */
@media (max-width: 900px) {
  .menu-toggle { display: flex; }

  .nav {
    flex-direction: column;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-height: 90vh;
    background: rgba(255,255,255,0.97);
    padding: 20px;
    display: none;
    overflow-y: auto;
    gap: 16px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.25);
  }

  .nav.active { display: flex; }

  .nav a {
    font-size: 18px;
    padding: 12px;
    width: 100%;
    text-align: center;
  }

  .nav-btn { width: 80%; text-align: center; }

  .nav-item .dropdown {
    position: relative;
    top: 0;
    left: 0;
    display: none;
    padding-left: 20px;
    box-shadow: none;
  }

  .nav-item.active .dropdown { display: flex; }

  .nav-item > a::after {
    content: "▸";
    transform: rotate(0deg);
    margin-left: 6px;
  }

  .nav-item.active > a::after {
    transform: rotate(90deg);
  }
}

/* ================= HERO ================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: url("hero.png") no-repeat center center;
  background-size: cover;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15,23,42,0.96) 0%,
    rgba(15,23,42,0.88) 45%,
    rgba(15,23,42,0.35) 100%
  );
}

.hero-content {
  position: relative;
  max-width: 600px;
  margin-left: 80px;
  color: #ffffff;
  text-align: left;
  z-index: 2;
}

.hero-content h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 22px;
}

.hero-content p {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 34px;
}

.hero-buttons { display: flex; gap: 16px; }

.btn {
  padding: 13px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn.primary {
  background: var(--primary);
  color: #ffffff;
}

.btn.primary:hover { background: #0284c7; }

.btn.outline {
  border: 1px solid #ffffff;
  color: #ffffff;
}

.btn.outline:hover {
  background: #ffffff;
  color: var(--accent);
}

.badge {
  display: inline-block;
  background: rgba(14,165,233,0.15);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 22px;
  letter-spacing: 0.5px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .hero {
    background: url("hero1.png") no-repeat center center;
    background-size: cover;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  }

  .hero-content {
    margin: 0;
    max-width: 90%;
    text-align: center;
    padding: 0 20px;
  }

  .hero-content h1 { font-size: 36px; }
  .hero-content p { font-size: 15px; }
  .hero-buttons { justify-content: center; }
  .logo-icon { transform: scale(1.3); }
}

.trusted-section {
  padding: 100px 0;
}

.trusted-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ===== IMAGE COLLAGE ===== */
.trusted-images {
  position: relative;
  height: 350px;
}

.trusted-images img {
  position: absolute;
  width: 210px;
  height: 210px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 25px 45px rgba(0,0,0,0.15);
}

.img-1 { top: 0; left: 0; }
.img-2 { top: 0; right: 0; }
.img-3 { bottom: 0; left: 0; }
.img-4 { bottom: 0; right: 0; }

/* EXPERIENCE BADGE */
.experience-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  background: #0EA5E9;
  color: #fff;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  box-shadow: 0 25px 40px rgba(14,165,233,0.45);
  z-index: 2;
}

.experience-badge h3 {
  font-size: 36px;
  font-weight: 700;
}

.experience-badge p {
  font-size: 14px;
  line-height: 1.3;
}

/* ===== CONTENT ===== */
.trusted-content .small-title {
  color: #0EA5E9;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .5px;
}

.trusted-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0F172A;
  margin: 15px 0;
  line-height: 1.3;
}

.trusted-content p {
  max-width: 520px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 35px;
}

/* ===== FEATURES ===== */
.trusted-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.feature {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.icon-box {
  width: 46px;
  height: 46px;
  background: #f1f5f9;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-box svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #0EA5E9;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature p {
  font-size: 14px;
  line-height: 1.4;
  color: #475569;
}

.feature strong {
  display: block;
  color: #0F172A;
  font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .trusted-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .trusted-images {
    height: 420px;
  }

  .trusted-images img {
    width: 180px;
    height: 180px;
  }

  .trusted-features {
    grid-template-columns: 1fr;
  }

  .trusted-content h2 {
    font-size: 28px;
  }
}


.scroll-indicator {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 26px;        /* width kam */
  height: 44px;       /* height kam */
  border: 2px solid #0EA5E9;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  z-index: 999;
}

.scroll-indicator::before {
  content: "";
  width: 4px;         /* dot slim */
  height: 8px;        /* dot chhota */
  background: #0EA5E9;
  border-radius: 2px;
  animation: scrollMove 1.4s infinite;
}

@keyframes scrollMove {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(12px); /* movement kam */
    opacity: 0.6;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}


/* SECTION */
.services-section {
  position: relative;
  background: url("services\ bg.png") center/cover no-repeat;
  padding: 110px 20px;
}

.services-overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
}

.services-container {
  position: relative;
  max-width: 1200px;
  margin: auto;
  z-index: 2;
}

/* HEADER */
.services-header {
  text-align: center;
  margin-bottom: 70px;
}

.small-title {
  display: inline-block;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.services-header h2 {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* CARD */
.service-card {
  background: #ffffff;
  padding: 34px 30px 54px;
  border-radius: 14px;
  position: relative;
  transition: all 0.35s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 45px rgba(15,23,42,0.25);
}

/* NUMBER */
.service-no {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
}

.service-icon {
  width: 58px;
  height: 58px;
  background: rgba(14,165,233,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* TEXT */
.service-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: #475569;
  line-height: 1.7;
}

/* ARROW LINK */
.service-link {
  position: absolute;
  bottom: 22px;
  left: 30px;
  font-size: 18px;
  color: var(--primary);
  text-decoration: none;
  transition: transform 0.3s ease;
}

.service-card:hover .service-link {
  transform: translateX(6px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-header h2 {
    font-size: 26px;
  }
}



/* SECTION */
.leadership-section {
  background: var(--secondary);
  padding: 80px 20px;
}

.leadership-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.leadership-header {
  margin-bottom: 60px;
}

.small-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 10px;
}

.leadership-header h2 {
  font-size: 34px;
  color: var(--accent);
  line-height: 1.3;
}

/* GRID */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* CARD */
.leader-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(2,6,23,0.08);
  transition: all 0.35s ease;
}

.leader-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(2,6,23,0.15);
}

/* IMAGE */
.leader-img {
  height: 300px;
  background: linear-gradient(135deg, #020617, #0EA5E9);
}

.leader-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* INFO */
.leader-info {
  position: relative;
  padding: 10px 18px 30px;
  text-align: center;
  background: #fff;
}

.leader-info::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  width: 100%;
  height: 14px;
  background: #fff;
  border-radius: 100% 100% 0 0;
}

/* TEXT */
.leader-info h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}

.leader-info span {
  font-size: 13px;
  color: #64748b;
}

/* VIEW PROFILE BUTTON */
.leader-link {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #0EA5E9, #0284c7);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  box-shadow: 0 10px 22px rgba(14,165,233,0.45);
  transition: all 0.35s ease;
}

.leader-link:hover {
  transform: translateX(-50%) translateY(-4px);
  box-shadow: 0 14px 32px rgba(14,165,233,0.6);
}

.leader-link i {
  transition: transform 0.35s ease;
}

.leader-link:hover i {
  transform: rotate(-10deg) scale(1.12);
}

/* LINKEDIN */
.linkedin-icon {
  margin-left: 6px;
  font-size: 14px;
  color: #0284c7;
  transition: transform 0.3s ease;
}

.linkedin-icon:hover {
  transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .leadership-header h2 {
    font-size: 26px;
  }

  .leader-img {
    height: 380px;
  }
}


/* SECTION */
.help-section {
  padding: 80px 20px;
  background: var(--secondary);
}

/* MAIN CURVED CONTAINER */
.help-wrapper {
  max-width: 1200px;
  margin: auto;

  background:
    linear-gradient(
      var(--hero-overlay),
      var(--hero-overlay)
    ),
    url("services\ bg.png"); /* 🔁 replace image */

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  border-radius: 300px 40px 300px 40px;
  padding: 60px 80px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  position: relative;
  overflow: hidden;
}

/* CONTENT */
.help-content {
  max-width: 520px;
  color: #fff;
  z-index: 2;
}

.help-content .small-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  display: inline-block;
  margin-bottom: 12px;
}

.help-content h2 {
  font-size: 32px;
  margin-bottom: 14px;
  line-height: 1.3;
}

.help-content p {
  font-size: 14px;
  line-height: 1.8;
  color: #dbeafe;
  margin-bottom: 22px;
}

/* BUTTON */
.help-btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--primary);
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}

.help-btn:hover {
  background: #0284c7;
  transform: translateY(-2px);
}

/* IMAGE FRAME */
.help-image {
  width: 320px;
  height: 320px;
  background: #fff;
  border-radius: 50% 0 50% 50%;
  overflow: hidden;
  flex-shrink: 0;
  z-index: 2;
}

.help-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .help-wrapper {
    flex-direction: column;
    text-align: center;
    padding: 50px 30px;
    border-radius: 60px;
  }

  .help-image {
    margin-top: 30px;
    width: 280px;
    height: 280px;
  }

  .help-content {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .help-content h2 {
    font-size: 26px;
  }

  .help-image {
    width: 240px;
    height: 240px;
  }
}
