/* =====================
   GLOBAL RESET & BASE
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}
/* LEADERSHIP CARD */
.leader-card {
  max-width: 420px;
  margin: 50px auto;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  text-align: center;
}

.leader-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.leader-content {
  padding: 28px;
}

.leader-content h3 {
  font-size: 24px;
  margin-bottom: 6px;
}

.leader-role {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #f5b301;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.leader-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
}

body {
  color: #222;
  background: #f7f7f7;
  line-height: 1.6;
}

/* =====================
   HEADER
===================== */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 50px;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
}

.logo {
  height: 95px;
  filter: brightness(1.35) contrast(1.2);
}

.nav a {
  margin-left: 22px;
  text-decoration: none;
  color: #111;
  font-weight: 500;
}

.nav a:hover,
.nav a.active {
  color: #f5b301;
}

/* =====================
   HERO SECTION
===================== */
.hero-bg {
  height: 90vh;
  background:
    linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.65)),
    url("image1.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0 70px;
}

.hero-content {
  max-width: 650px;
  color: #fff;
}

.hero-content h1 {
  font-size: 50px;
  line-height: 1.2;
}

.hero-content span {
  color: #f5b301;
}

.hero-subtitle {
  margin: 18px 0 28px;
  font-size: 18px;
  color: #ddd;
}

/* =====================
   BUTTONS
===================== */
.btn-primary {
  background: #f5b301;
  color: #111;
  padding: 12px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

.btn-primary:hover {
  background: #e6a800;
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 32px;
  border-radius: 30px;
  text-decoration: none;
  margin-left: 15px;
}

/* =====================
   STATS
===================== */
.stats {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  text-align: center;
  padding: 55px 40px;
  background: #fff;
}

.stats h3 {
  font-size: 36px;
  color: #f5b301;
}

/* =====================
   COMMON SECTIONS
===================== */
.section {
  padding: 85px 60px;
  text-align: center;
}

.gray {
  background: #f9f9f9;
}

.section h2 {
  font-size: 36px;
}

.section-subtitle {
  color: #666;
  margin: 16px auto 45px;
  max-width: 700px;
}

/* =====================
   ABOUT
===================== */
.about-box {
  max-width: 900px;
  margin: auto;
  line-height: 1.9;
}

.highlight {
  color: #f5b301;
  font-weight: 600;
  margin-top: 18px;
}

/* =====================
   SERVICES
===================== */
.services {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 25px;
  max-width: 1000px;
  margin: auto;
}

.service {
  background: #fff;
  padding: 30px 25px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,.07);
  font-weight: 500;
}

/* =====================
   OUR WORK (SLIDER)
===================== */
/* =====================
   OUR WORK (FIXED SLIDER)
===================== */
.work-slider {
  overflow: hidden;
  width: 100%;
  margin-top: 45px;
}

.work-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll 28s linear infinite;
}

.work-track img {
  width: 260px;
  height: 160px;
  flex-shrink: 0;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0,0,0,.15);
}

/* Smooth infinite scroll */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* =====================
   MOBILE FIX FOR SLIDER
===================== */
@media (max-width: 768px) {
  .work-track {
    animation: scroll 22s linear infinite;
  }

  .work-track img {
    width: 220px;
    height: 140px;
  }
}

@media (max-width: 480px) {
  .work-track img {
    width: 200px;
    height: 130px;
  }
}
/* =====================
   HERO BUTTON OVERLAP FIX (MOBILE)
===================== */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 25px;
}

/* Force buttons to stack on mobile */
@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-primary,
  .btn-outline {
    margin-left: 0 !important;
    width: auto;
    max-width: 260px;
  }
}

/* Extra safety for very small screens */
@media (max-width: 480px) {
  .btn-primary,
  .btn-outline {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
}

/* =====================
   CLIENTS
===================== */
.clients-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.client-logo {
  width: 150px;
  height: 90px;
  background: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 14px rgba(0,0,0,.06);
}

.client-logo img {
  max-height: 65px;
  filter: grayscale(100%);
  transition: .3s;
}

.client-logo:hover img {
  filter: grayscale(0);
}

/* =====================
   TEAM SECTION (REFERENCE STYLE)
===================== */
.team-section {
  background: #fafafa;
}

.team-wrapper {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.team-member {
  background: #fff;
  width: 420px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,.1);
  transition: transform .3s;
}

.team-member:hover {
  transform: translateY(-8px);
}

.team-strip {
  height: 6px;
  background: linear-gradient(90deg, #f5b301, #ff8c00);
}

.team-member img {
  width: 100%;
  height: 420px;
  object-fit: contain;
  background: #f5f5f5;
}


.team-info {
  padding: 30px;
  text-align: center;
}

.team-info h3 {
  font-size: 26px;
  margin-bottom: 6px;
}

.team-info .designation {
  display: block;
  font-size: 14px;
  color: #f5b301;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.team-info p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
}

/* =====================
   CONTACT
===================== */
.contact-section {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 90px 40px;
}

.contact-boxes div {
  margin: 14px 0;
  color: #ccc;
}

.contact-section iframe {
  width: 100%;
  height: 350px;
  border: 0;
  border-radius: 14px;
  margin-top: 35px;
}

/* =====================
   CTA
===================== */
.cta {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 75px 40px;
}

/* =====================
   FOOTER
===================== */
footer {
  background: #000;
  color: #aaa;
  text-align: center;
  padding: 15px;
}

/* =====================
   FLOATING ICONS
===================== */
.float {
  position: fixed;
  bottom: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.whatsapp {
  right: 20px;
  background: #25d366;
}

.linkedin {
  right: 80px;
  background: #0077b5;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 900px) {
  .hero-bg {
    padding: 0 30px;
    height: auto;
    min-height: 85vh;
  }

  .stats {
    grid-template-columns: repeat(2,1fr);
  }

  .services {
    grid-template-columns: 1fr;
  }

  .team-member {
    width: 100%;
    max-width: 360px;
  }

  .team-member img {
    height: 360px;
  }
}
.nav a.active {
  color: #f5b301;
  border-bottom: 2px solid #f5b301;
  padding-bottom: 3px;
}
/* =====================
   MOBILE HAMBURGER MENU
===================== */

/* Hamburger icon */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #111;
  margin: 4px 0;
  border-radius: 2px;
}

/* Mobile styles */
@media (max-width: 768px) {

  .header {
    flex-direction: row;
    justify-content: space-between;
    padding: 14px 20px;
  }

  .hamburger {
    display: flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,.12);
    padding: 15px 0;
  }

  .nav a {
    padding: 12px 0;
    margin: 0;
    font-size: 16px;
  }

  .nav.open {
    display: flex;
  }
}

/* Desktop stays unchanged */
@media (min-width: 769px) {
  .nav {
    display: flex !important;
  }
}
/* =====================
   CSS-ONLY HAMBURGER MENU
===================== */

/* Hide checkbox */
#menu-toggle {
  display: none;
}

/* Hamburger icon */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #111;
  margin: 4px 0;
  border-radius: 2px;
}

/* Mobile menu */
@media (max-width: 768px) {

  .header {
    padding: 14px 20px;
  }

  .hamburger {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 95px;
    left: 0;
    width: 100%;
    background: #fff;
    display: none;
    flex-direction: column;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,.12);
  }

  .nav a {
    padding: 14px 0;
    margin: 0;
    font-size: 16px;
  }

  /* When checkbox is checked → show menu */
  #menu-toggle:checked ~ .nav {
    display: flex;
  }
}

/* Desktop unchanged */
@media (min-width: 769px) {
  .hamburger {
    display: none;
  }

  .nav {
    display: flex !important;
    position: static;
  }
}
