*,
*::before,
*::after { box-sizing: border-box; }

:root{
  --bg:#f7f6f2;
  --surface:#ffffff;
  --surface-2:#f2f0e8;
  --text:#142236;
  --muted:#5b6675;
  --primary:#0f274a;
  --primary-2:#173a6b;
  --accent:#c6a55a;
  --accent-dark:#9d7e38;
  --border:rgba(20,34,54,.08);
  --shadow:0 18px 50px rgba(15,39,74,.08);
  --radius:22px;
  --radius-sm:16px;
  --container:1180px;
}
html {
  scroll-behavior:smooth;
  overflow-x:hidden;
  scroll-padding-top: 80px;
}
body{
  width: 100%;
  overflow-x: hidden;
  margin:0;
  font-family:'Inter',sans-serif;
  color:var(--text);
  background:linear-gradient(180deg,#fcfbf8 0%, #f8f6f0 100%);
  line-height:1.6;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
.container{
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 16px;
}
.topbar{
  background:#0a1c36;
  color:#d7e1ef;
  font-size:.92rem;
}
.topbar-inner{
  display:flex; justify-content:space-between; align-items:center; gap:20px;
  min-height:42px;
}
.topbar-contact{ display:flex; gap:18px; flex-wrap:wrap; }

.site-header{
  position:sticky; top:0; z-index:999;
  backdrop-filter:saturate(130%) blur(10px);
  background:rgba(255,255,255,.82);
  border-bottom:1px solid rgba(20,34,54,.06);
}
.site-header.scrolled{ box-shadow:0 8px 24px rgba(15,39,74,.08); }

.nav-wrap{
  display:flex; align-items:center; justify-content:space-between; min-height:78px; gap:20px;
}
.logo{
  display:inline-flex; align-items:center; gap:12px; font-weight:800; font-family:'Poppins',sans-serif;
}
.site-logo {
  height: 100px;
  width: auto;

}
.nav{ display:flex; align-items:center; gap:22px; }
.nav a{ color:var(--muted); font-weight:600; }
.nav a:hover{ color:var(--primary); }
.nav-cta{
  background:var(--primary); color:#fff !important; padding:12px 18px; border-radius:999px;
}
.menu-toggle{
  display:none; border:none; background:var(--primary); color:#fff; width:44px; height:44px; border-radius:12px;
  font-size:1.2rem; cursor:pointer;
}

.section{ padding:92px 0; position:relative; }
.section-sm{ padding:24px 0 36px; }
.alt-bg{ background:linear-gradient(180deg,#f2eee4 0%, #f7f4ec 100%); }
.eyebrow{
  display:inline-block; margin:0 0 10px; color:var(--accent-dark);
  text-transform:uppercase; letter-spacing:.12em; font-size:.8rem; font-weight:800;
}
.eyebrow.light{ color:#ffdb8f; }
.section-head{
  max-width:760px;
  margin-bottom:38px;
  margin-left: 0;
}.section-head h2, .content h2, .form-card h2, .hero-copy h1{
  font-family:'Poppins',sans-serif; line-height:1.1; margin:0 0 16px;
}
.section-head h2, .content h2{ font-size:clamp(2rem, 3vw, 3rem); }
.section-head p, .content p{ color:var(--muted); }

.hero{
  padding:32px 0 70px;
  overflow:hidden;
}
.hero-grid{
  display:grid;
  grid-template-columns: minmax(0,1fr) minmax(0,420px); /* 🔥 FIX */
  align-items:center;
  gap:34px;
    justify-content: start;


}
.hero-copy h1{
  font-size: clamp(2.7rem, 5vw, 5rem);
  max-width: 650px;
  width: 100%;
  overflow-wrap: break-word;
  word-break: normal;
  margin-left: 0;
  margin-right: 0;
}
.hero-copy h1 span{ color:var(--accent-dark); }
.hero-text{ max-width:650px;; color:var(--muted); font-size:1.08rem; }
.hero-actions{ display:flex; flex-wrap:wrap; gap:14px; margin:28px 0 28px; }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  min-height:52px; padding:0 22px; border-radius:999px; font-weight:700; transition:.25s ease;
}
.btn:hover{ transform:translateY(-2px); }
.btn-primary{
  background:linear-gradient(135deg,var(--accent),#dfc586);
  color:#1a2230; box-shadow:0 14px 26px rgba(198,165,90,.24);
}
.btn-secondary{
  background:#fff; color:var(--primary); border:1px solid rgba(15,39,74,.12);
}
.btn-light{
  background:#fff; color:var(--primary);
}
.btn-full{ width:100%; }

.hero-stats{
  display:grid; grid-template-columns:repeat(3,1fr); gap:14px; max-width:720px;
}
.stat-card{
  background:rgba(255,255,255,.8); border:1px solid rgba(20,34,54,.06);
  box-shadow:var(--shadow); border-radius:var(--radius-sm); padding:18px 16px;
}
.stat-card strong{ display:block; font-size:1.15rem; }
.stat-card span{ color:var(--muted); font-size:.95rem; }

.hero-panel{ position:relative; }
.form-card{
  background:rgba(255,255,255,.92); border:1px solid rgba(20,34,54,.08);
  border-radius:28px; padding:28px; box-shadow:var(--shadow); position: relative;
  z-index: 5;
}
.form-card-head p{ color:var(--muted); margin-top:0; }
.badge{
  display:inline-flex; padding:6px 12px; border-radius:999px; background:#f4ead1; color:#876627;
  font-size:.8rem; font-weight:800; margin-bottom:10px;
}
.contact-form{ display:grid; gap:14px; }
.field-grid{ display:grid; grid-template-columns:1fr 1fr; gap:14px; }
input, textarea{
  width:100%; border:1px solid var(--border); background:#fff;
  padding:15px 16px; border-radius:16px; font:inherit; color:var(--text);
  outline:none;
}
input:focus, textarea:focus{ border-color:rgba(198,165,90,.9); box-shadow:0 0 0 4px rgba(198,165,90,.14); }

.hero-bg-shape{
  position:absolute; border-radius:999px; filter:blur(8px); opacity:.55; pointer-events:none;
}
.shape-1{
  width:520px; height:520px; background:radial-gradient(circle, rgba(198,165,90,.28), transparent 62%);
  top:-140px; right:-80px; animation:float 10s ease-in-out infinite;
}
.shape-2{
  width:420px; height:420px; background:radial-gradient(circle, rgba(15,39,74,.16), transparent 62%);
  left:-80px; bottom:-120px; animation:float 12s ease-in-out infinite reverse;
}

.benefit-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:18px;
}
.benefit-card, .industry-card, .service-card, .logo-card{
  background:rgba(255,255,255,.86); border:1px solid rgba(20,34,54,.06);
  box-shadow:var(--shadow); border-radius:var(--radius); transition:.25s ease;
}
.benefit-card:hover, .industry-card:hover, .service-card:hover, .logo-card:hover{
  transform:translateY(-4px);
}
.benefit-card{ padding:24px; }
.icon{
  width:54px; height:54px; border-radius:16px; display:grid; place-items:center;
  background:linear-gradient(135deg,#fbf2db,#efe0b6); font-size:1.4rem; margin-bottom:16px;
}
.benefit-card h3{ margin:0 0 8px; font-family:'Poppins',sans-serif; }
.benefit-card p{ color:var(--muted); margin:0; }

.split{
  display:grid; grid-template-columns:1fr 1fr; gap:36px; align-items:center;
}

.media-card{
  width: 100%;
  height: 420px; /* 👈 desktop proper height */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media-card img{
  width: 100%;
  height: 100%;
  object-fit: cover; /* 👈 BEST */
  display: block;
}
@media(max-width:768px){
  .media-card{
    height: 420px; /* mobile */
  }
}
.placeholder{
  min-height:480px; display:flex; flex-direction:column; justify-content:flex-end;
  padding:34px; color:#fff;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.12), transparent 35%),
    radial-gradient(circle at 80% 25%, rgba(255,255,255,.08), transparent 25%),
    linear-gradient(transparent, rgba(0,0,0,.18));
}
.placeholder-tag{
  align-self:flex-start; padding:6px 12px; border-radius:999px; background:rgba(255,255,255,.14);
  backdrop-filter:blur(6px); margin-bottom:12px; font-size:.85rem; font-weight:700;
}
.placeholder h3{ font-family:'Poppins',sans-serif; font-size:2rem; margin:0 0 8px; }
.placeholder p{ margin:0; color:rgba(255,255,255,.88); }

.bullet-list{
  display:flex; flex-wrap:wrap; gap:12px; margin-top:18px;
}
.bullet-list span{
  padding:10px 14px; background:#fff; border:1px solid rgba(20,34,54,.08);
  border-radius:999px; box-shadow:0 8px 18px rgba(15,39,74,.06); font-weight:600;
}

.industry-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:18px;
}
.industry-card{
  min-height:94px; display:flex; align-items:center; justify-content:center; text-align:center; padding:18px; font-weight:700;
}

.service-card{ padding:24px; }
.service-top{ display:flex; align-items:center; gap:12px; margin-bottom:10px; }
.service-number{
  width:42px; height:42px; display:grid; place-items:center; border-radius:12px;
  background:#f4ead1; color:#8a6827; font-weight:800;
}
.service-card h3{ margin:0; font-family:'Poppins',sans-serif; }
.service-card p{ color:var(--muted); margin:0 0 14px; }
.service-card ul{ margin:0 0 12px 18px; padding:0; color:var(--text); }
.service-card li{ margin-bottom:8px; }
.text-link{ color:var(--primary); font-weight:800; }

.guarantee-band{
  background:linear-gradient(135deg,#0d2343,#193864 65%, #22497f);
  color:#fff;
}
.band-wrap{
  display:flex; align-items:center; justify-content:space-between; gap:22px;
}
.band-wrap h2{ margin:0; max-width:20ch; font-family:'Poppins',sans-serif; font-size:clamp(1.6rem, 3vw, 2.7rem); }

.logo-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:30px;
}
.logo-card{
  min-height:110px; display:grid; place-items:center; color:var(--muted); font-weight:800;
  background:linear-gradient(180deg,rgba(255,255,255,.96), rgba(247,244,236,.95));
}

.contact-list{
  display:grid; gap:14px; margin-top:22px; color:var(--muted);
}
.contact-list strong{ color:var(--text); }

/* ================= FOOTER ================= */
.site-footer{
  background: linear-gradient(135deg, #0f172a 0%, #0f172a 100%);
    color: #ffffff;
  padding: 30px 0 15px;
    border-top:1px solid rgba(255,255,255,0.08);
  box-shadow: 0 -10px 40px rgba(0,0,0,0.5);

}
/* GRID */
.footer-grid{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  align-items:center;
  gap:20px;
}

/* LEFT SIDE */
.footer-col{
  font-size:14px;
}

.footer-logo{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:10px;
  color:#fff;
}

.footer-col p{
  margin:3px 0;
  color:#fff;
    opacity:0.85;

}

.footer-col a{
  color:#fff;
  text-decoration:none;
    font-weight:500;

}

.footer-col a:hover{
  color:#fff;
    text-shadow: 0 0 6px rgba(59,130,246,0.6);

}

/* ===== MENU CENTER ===== */
.footer-menu{
  text-align:center;
}

.footer-menu h4{
  color:#fff;
  margin-bottom:6px;
  font-size:15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.8;
}

/* MENU LINE */
.footer-nav{
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap:18px;
  list-style:none;
  padding:0;
  margin:0;
}

.footer-nav li{
  position:relative;
}

/* Divider */
.footer-nav li::after{
  content:"|";
  margin-left:12px;
  color:#fff;
}

.footer-nav li:last-child::after{
  content:"";
}

/* Links */
.footer-nav a{
  color:#fff;
  text-decoration:none;
  font-size:14px;
  font-weight:500;
  transition:0.25s;
}

.footer-nav a:hover{
  color:#ffffff;
  text-shadow:0 0 8px rgba(59,130,246,0.8);
  transform: translateY(-2px);
}
/* ===== RIGHT SIDE ===== */
.footer-right{
  text-align:right;
}

.copyright{
  font-size:13px;
  color:#94a3b8;
}

/* ===== BOTTOM ===== */
.footer-bottom{
  margin-top:10px;
  padding-top:8px;
  border-top:1px solid rgba(255,255,255,0.06);
  display:flex;
  justify-content:flex-start;
}

.footer-bottom a{
  color:#94a3b8;
  text-decoration:none;
  font-size:13px;
}

.footer-bottom a:hover{
  color:#fff;
}
.footer-nav a{
  position: relative;
  transition: 0.3s;
}

/* underline animation */
.footer-nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-3px;
  width:0%;
  height:2px;
  background:#3b82f6;
  transition:0.3s;
}

.footer-nav a:hover::after{
  width:100%;
}

/* ===== MOBILE ===== */
@media(max-width:768px){
   

  .footer-grid{
    grid-template-columns:1fr;
    text-align:center;
  }

  .footer-right{
    text-align:center;
  }

  .footer-bottom{
    justify-content:center;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Left & Right animations */
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s ease;
}

.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* 🔥 Stagger (premium effect) */
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.17s; }
.delay-4 { transition-delay: 0.18s; }
.delay-5 { transition-delay: 0.19s; }
.delay-6 { transition-delay: 0.20s; }
.delay-7 { transition-delay: 0.21s; }



@keyframes float{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-14px); }
}

@media (max-width: 1080px){
  .split,
  .service-grid,
  .industry-grid,
  .benefit-grid,
  .logo-grid,
  .footer-grid{
    grid-template-columns:1fr 1fr;
  }
.hero-copy{
  min-width: 0;
  justify-self: start;
  text-align: left;
}
  /* 🔥 KEEP HERO SAFE */
 

  .hero-stats{ grid-template-columns:1fr; }
}
@media (max-width: 820px){

  .menu-toggle{
    display:inline-grid;
    place-items:center;
  }

  .nav{
    position:absolute;
    top:78px;
    left:16px;
    right:16px;

    display:flex; /* ❗ always flex */
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
    padding:18px;

    background:rgba(255,255,255,.98);
    border-radius:18px;
    box-shadow:var(--shadow);
    border:1px solid rgba(20,34,54,.06);

    /* animation */
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none; /* ❗ important */
    transition: all 0.3s ease;
  }

  .nav.open{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto; /* ❗ enable click */
  }

  .hero-grid,
  .split,
  .benefit-grid,
  .industry-grid,
  .service-grid,
  .logo-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .band-wrap,
  .topbar-inner,
  .footer-bottom{
    flex-direction:column;
    align-items:flex-start;
  }

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

  .section{
    padding:72px 0;
  }

  .hero{
    padding-top:30px;
  }
}

#partners {
  position: relative;
}
  

/* 🔥 REMOVE TOP GAP (HEADER → PARTNERS) */
#partners{
  padding-top:30px !important;
}

/* 🔥 HEADING NE UPAR LAAV */
#partners .section-head{
  margin-top:0 !important;
  margin-bottom:20px !important;
}

/* 🔥 EXTRA SAFE (jo haju gap hoy) */
#partners h2{
  margin-top:0 !important;
}

.error-msg{
  color:#e74c3c;
  font-size:12px;
  margin-top:4px;
  display:block;
  font-weight:500;
}

input.error, textarea.error{
  border:2px solid #e74c3c !important;
  background:#fff6f6;
}

input.success, textarea.success{
  border:2px solid #2ecc71;
  background:#f6fff8;
}
button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
}


.logo-slider {
  position: relative;
  overflow: hidden;
  padding: 40px 0;
  width: 100%;
}

/* Track */
.logo-track {
  display: flex;
  gap: 60px;
  align-items: center;
  width: max-content;
  animation: scroll 25s linear infinite;
  will-change: transform;
}

/* Logos */
.logo-track img {
  height: 90px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  transform: scale(0.95);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

/* Hover effect */
.logo-track img:hover {
  transform: scale(1.15);
  opacity: 1;
}
/* Smooth infinite scroll */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause on hover */
.logo-slider:hover .logo-track {
  animation-play-state: paused;
}

/* Soft fade sides (premium look) */
.logo-slider::before,
.logo-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* LEFT FADE */
.logo-slider::before {
  left: 0;
  background: linear-gradient(to right, rgba(248,246,240,1), rgba(248,246,240,0));
}

/* RIGHT FADE */
.logo-slider::after {
  right: 0;
  background: linear-gradient(to left, rgba(248,246,240,1), rgba(248,246,240,0));
}
.map-section{
  margin-bottom: 0;
}

/* MAIN BOX */
.map-placeholder{
  background: linear-gradient(135deg, #0b1220, #181f3e);
  color: #cbd5e1;
  padding: 30px;
  text-align: center;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

/* TEXT */
.map-placeholder p{
  color: #94a3b8;
  font-size: 15px;
}

/* BUTTON */
.map-placeholder button{
  margin-top: 12px;
  padding: 10px 18px;
  background: #3b82f6;
  border: none;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
}

.map-placeholder button:hover{
  background: #2563eb;
  box-shadow: 0 0 10px rgba(59,130,246,0.6);
}

/* ACTION LINKS */
.map-actions{
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.map-actions a{
  text-decoration: none;
  color: #94a3b8;
  font-size: 14px;
  transition: 0.3s;
  position: relative;
}

/* 🔥 FIXED HOVER (IMPORTANT) */
.map-actions a:hover{
  color: #ffffff; /* ❗ black hatai didhu */
  text-shadow: 0 0 6px rgba(59,130,246,0.6);
}

/* UNDERLINE ANIMATION (premium touch) */
.map-actions a::after{
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  left: 0;
  bottom: -3px;
  background: #3b82f6;
  transition: 0.3s;
}

.map-actions a:hover::after{
  width: 100%;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #fff;
  font-size: 24px;
  padding: 14px 16px;
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  z-index: 999;
}

.cookie-banner{
  position:fixed;
  bottom:20px;
  left:20px;
  right:20px;
  background:#0b1220;
  color:#fff;
  padding:15px;
  border-radius:12px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  z-index:9999;
}

.cookie-btn{
  padding:8px 12px;
  border:none;
  border-radius:8px;
  cursor:pointer;
}

.cookie-btn.primary{
  background:#3b82f6;
  color:#fff;
}

.cookie-btn.ghost{
  background:#1e293b;
  color:#fff;
}

.cookie-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.6);
  display:flex;
  justify-content:center;
  align-items:center;
  z-index:10000;
}

.cookie-box{
  background:#0b1220;
  padding:20px;
  border-radius:12px;
  color:#fff;
}

.hidden{
  display:none;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: start;
}

.service-details {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s;
}
@media (max-width: 992px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 🔥 Mobile */
@media (max-width: 600px) {
  .service-grid {
    grid-template-columns: 1fr;
  }}
  
.service-card.active .service-details {
  max-height: 1000px;
}
.toggle-btn {
  background: linear-gradient(135deg, #4f6df5, #3f5efb);
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;

  margin-top: auto;
  display: inline-block;

  transition: all 0.3s ease;
}
.hero-text{
  max-width: 580px;
}
.hero-title {
  font-size: clamp(28px, 6vw, 72px);
  line-height: 1.1;
  max-width: 600px;
  text-wrap: balance;
    white-space: normal;
      display: inline;


}

.logo-slider{
  width: 100%;
  overflow: hidden;
}


.hero-title span {
  color: #9c7c3b;
}

@media (max-width: 1000px) {
  .hero-title span {
    white-space: normal;
    font-size: 34px;
  }
}
@media (max-width: 768px) {
  .media-card {
    padding: 0;
    height: auto;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  }

  .media-card img {
    width: 100%; /* adjust kari sakay */
    height: auto;
    display: inline-block;
  }
}

/* ===== TEAM SECTION FINAL CLEAN ===== */

.team-section {
  padding: 100px 20px;
  background: transparent;
  text-align: center;
}

.team-section h2 {
  margin-bottom: 50px;
  font-size: 36px;
}

/* Grid */
.team-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* Card */
.team-card {
  width: 270px;
  padding: 35px 20px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
box-shadow: 0 20px 45px rgba(0,0,0,0.10);
transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover */
.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
  border-color: #6366f1;
}

/* Image */
.team-card img {
  transition: 0.3s;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 4px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);

}

.team-card:hover img {
  transform: scale(1.05);
}

/* Name */
.team-card h3 {
  margin: 15px 0 5px;
  font-size: 20px;
  font-weight: 700;
  color: #111827;
}

/* Role */
.team-card p {
  font-size: 14px;
  color: #6b7280;
}

/* Mobile */
@media (max-width: 768px) {
  .team-card {
    width: 100%;
    max-width: 320px;
  }

  .team-card img {
    width: 140px;
    height: 140px;
  }

  .team-section h2 {
    font-size: 28px;
  }
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6366f1;
  margin-bottom: 10px;
}
.center-heading {
  text-align: center;
  margin: 0 auto;
  width: 100%;
}

.hero-copy h1 {
  opacity: 0;
  transform: translateY(30px);
  animation: heroFade 1s ease forwards;
}

.hero-text {
  opacity: 0;
  transform: translateY(30px);
  animation: heroFade 1s ease forwards;
  animation-delay: 0.3s;
}

.hero-actions {
  opacity: 0;
  transform: translateY(30px);
  animation: heroFade 1s ease forwards;
  animation-delay: 0.6s;
}

@keyframes heroFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.success-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 9999;
}

.success-popup.show {
  opacity: 1;
  pointer-events: auto;
}

.success-box {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  transform: scale(0.8);
  opacity: 0;
  transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.success-popup.show .success-box {
  transform: scale(1);
  opacity: 1;
}

.checkmark {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: #2ecc71;
  color: #fff;
  font-size: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pop 0.4s ease;
}

@keyframes pop {
  0% { transform: scale(0); }
  100% { transform: scale(1); }
}

.map-section iframe{
  width: 100%;
  max-width: 100%;
  display: block;
}
.team-grid{
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  width: 100%;
}

.team-card{
  width: 100%;
  max-width: 270px;
}
@media (max-width: 820px){
  .hero-copy,
  .hero-copy h1,
  .hero-text,
  .hero-actions{
    max-width: 100%;
  }

  .site-logo{
    height: 72px;
  }
}
@media (max-width: 480px){
  .container{
    padding-inline: 12px;
  }

  .hero-copy h1,
  .hero-title{
    font-size: clamp(2rem, 9vw, 2.8rem);
    max-width: 100%;
  }

  .site-logo{
    height: 62px;
  }

  .topbar-contact{
    gap: 10px;
  }
}

h1, h2, h3 {
  overflow-wrap: break-word;
}

p {
  overflow-wrap: break-word;
}
@media (max-width: 768px) {
  .hero-bg-shape {
    display: none !important;
  }
}


.gallery-page {
  padding: 40px 7% 80px;
  background: #fafafa;
  min-height: 100vh;
}

.gallery-hero {
  max-width: 850px;
  margin: 0 auto 50px;
  text-align: center;
}

.gallery-hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 800;
  color: #6c63ff;
  font-size: 0.8rem;
  margin-bottom: 14px;
}

.gallery-hero h1 {
  font-size: clamp(2.4rem, 5vw, 5rem);
  color: #111827;
  margin-top: 0;
  margin-bottom: 18px;
}

.gallery-hero p {
  color: #6b7280;
  font-size: 1.1rem;
  line-height: 1.7;
}

.crew-gallery {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.crew-gallery img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.crew-gallery img:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
}

.nav a.active {
  color: #111827;
  font-weight: 800;
}

.footer-social {
  margin-top: 14px;
}

.footer-social a {
  color: inherit;
  text-decoration: none;
  font-weight: 700;
}

.footer-social a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .crew-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .crew-gallery img {
    height: 260px;
  }
}

@media (max-width: 600px) {
  .gallery-page {
    padding: 35px 5% 60px;
  }

  .crew-gallery {
    grid-template-columns: 1fr;
  }

  .crew-gallery img {
    height: 260px;
    border-radius: 18px;
  }
}