@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Inter:wght@400;500;600&family=Hind+Siliguri:wght@500;600;700&display=swap');

:root{
  --navy:#0A2A5E;
  --navy-deep:#071D42;
  --sky:#1E88E5;
  --sky-light:#5FB2F5;
  --gold:#F2A81D;
  --gold-light:#FFD98A;
  --bg:#F7F9FC;
  --card:#FFFFFF;
  --ink:#0B1F3A;
  --muted:#5C6B84;
  --line:#E3E9F2;
}
*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  font-family:'Inter',sans-serif;
  background:var(--bg);
  color:var(--ink);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
h1,h2,h3,.display{font-family:'Poppins',sans-serif;}
.bn{font-family:'Hind Siliguri',sans-serif;}
a{text-decoration:none;color:inherit;}
img{max-width:100%;display:block;}
.wrap{max-width:1200px;margin:0 auto;padding:0 32px;}
ul{list-style:none;}
button{font-family:inherit;}
input,textarea,select{font-family:inherit;}

/* ---------- NAV ---------- */
.nav-shell{
  position:sticky; top:0; z-index:200;
  padding:18px 20px 0;
  background:linear-gradient(180deg,var(--bg) 60%, transparent);
}
nav{
  max-width:1200px; margin:0 auto;
  background:#fff;
  border-radius:100px;
  display:flex; align-items:center; justify-content:space-between;
  padding:8px 12px 8px 20px;
  box-shadow:0 8px 30px rgba(10,42,94,0.08);
  position:relative;
}
.logo{display:flex; align-items:center; gap:8px;}
.logo img{height:48px; width:auto;}
.nav-links{display:flex; align-items:center; gap:34px; font-weight:500; font-size:15px; color:var(--muted);}
.nav-links a{transition:color .2s; padding:8px 0;}
.nav-links a:hover, .nav-links .active{color:var(--navy);}
.nav-links .active{color:var(--navy); font-weight:600;}
.dd{position:relative;}
.dd-trigger{display:flex; align-items:center; gap:5px; cursor:pointer; user-select:none;}
.dd-trigger svg{width:12px;height:12px; transition:transform .2s;}
.dd.open .dd-trigger svg{transform:rotate(180deg);}
.dd-menu{
  position:absolute; top:calc(100% + 18px); left:0; transform:translateY(8px);
  background:#fff; border-radius:16px; box-shadow:0 20px 45px -12px rgba(10,42,94,0.25);
  padding:12px; width:230px; opacity:0; visibility:hidden; transition:all .2s;
  border:1px solid var(--line);
}
.dd.open .dd-menu{opacity:1; visibility:visible; transform:translateY(0);}
.dd-menu a{
  display:flex; align-items:center; gap:10px; padding:10px 12px; border-radius:10px; font-size:14px; color:var(--ink); font-weight:500;
}
.dd-menu a:hover{background:var(--bg); color:var(--sky);}
.dd-menu .fdot{width:18px;height:18px;border-radius:50%; flex-shrink:0;}
.dd-menu .seeall{border-top:1px solid var(--line); margin-top:6px; padding-top:10px; color:var(--sky); font-weight:600; padding-left:40px;}
.apply-btn{
  display:flex; align-items:center; gap:10px;
  background:var(--navy); color:#fff; font-weight:600; font-size:14.5px;
  padding:6px 6px 6px 20px; border-radius:100px; border:none; cursor:pointer;
  transition:background .2s;
}
.apply-btn:hover{background:var(--navy-deep);}
.apply-btn .circ{
  width:34px;height:34px;border-radius:50%;
  background:var(--gold);
  display:flex;align-items:center;justify-content:center;
}
.apply-btn .circ svg{width:15px;height:15px;stroke:var(--navy-deep);}
.mobile-toggle{display:none; background:none; border:none; cursor:pointer; padding:8px;}
.mobile-toggle svg{width:24px;height:24px; stroke:var(--navy);}

/* ---------- Apply button shake animation ---------- */
@keyframes shake{
  0%,100%{transform:translateX(0) rotate(0);}
  10%{transform:translateX(-4px) rotate(-1deg);}
  20%{transform:translateX(4px) rotate(1deg);}
  30%{transform:translateX(-5px) rotate(-1deg);}
  40%{transform:translateX(5px) rotate(1deg);}
  50%{transform:translateX(-4px) rotate(-1deg);}
  60%{transform:translateX(4px) rotate(0);}
  70%{transform:translateX(-3px);}
  80%{transform:translateX(3px);}
  90%{transform:translateX(-1px);}
}
.apply-btn.shaking{animation:shake 0.55s ease;}

/* ---------- Form field validation error ---------- */
.form-field input.field-error,
.form-field select.field-error,
.form-field textarea.field-error{
  border-color:#e53935 !important;
  background:#fff5f5 !important;
  animation:shake 0.4s ease;
}
.field-error-msg{
  color:#e53935; font-size:12.5px; font-weight:600;
  margin-top:4px; display:block;
}

/* ---------- PAGE HERO (interior pages) ---------- */
.page-hero{
  padding:64px 32px 56px; max-width:1200px; margin:0 auto; text-align:center; position:relative;
}
.page-hero .eyebrow-label{justify-content:center;}
.page-hero h1{font-size:44px; font-weight:800; color:var(--navy); margin-top:14px; letter-spacing:-0.5px;}
.page-hero p{max-width:560px; margin:16px auto 0; color:var(--muted); font-size:16.5px; line-height:1.6;}
.breadcrumb{display:flex; align-items:center; justify-content:center; gap:8px; font-size:13px; color:var(--muted); margin-bottom:6px;}
.breadcrumb .cur{color:var(--sky); font-weight:600;}

/* ---------- Buttons ---------- */
.btn-primary{
  background:var(--navy); color:#fff; font-weight:600; padding:15px 28px;
  border-radius:100px; font-size:15px; display:inline-flex; align-items:center; gap:10px;
  box-shadow:0 12px 24px -8px rgba(10,42,94,0.45);
  border:none; cursor:pointer;
}
.btn-primary svg{width:16px;height:16px;}
.btn-ghost{
  background:transparent; color:var(--navy); font-weight:600; padding:15px 24px;
  border-radius:100px; font-size:15px; border:1.5px solid var(--line); cursor:pointer;
}

/* ---------- SECTION HEADER ---------- */
.sec{padding:96px 32px;}
.sec.tight{padding:56px 32px;}
.sec .wrap{max-width:1200px;}
.sec-head{max-width:600px; margin-bottom:56px;}
.sec-head.center{max-width:640px; margin-left:auto; margin-right:auto; text-align:center;}
.sec-head.center .eyebrow-label{justify-content:center;}
.eyebrow-label{
  font-size:13px; font-weight:700; color:var(--sky); text-transform:uppercase; letter-spacing:1px;
  display:flex; align-items:center; gap:8px;
}
.eyebrow-label:before{content:''; width:22px; height:2px; background:var(--gold); display:inline-block;}
.sec-head h2{font-size:36px; font-weight:800; color:var(--navy); margin-top:14px; letter-spacing:-0.5px;}
.sec-head p{margin-top:14px; color:var(--muted); font-size:16px; line-height:1.6;}

/* ---------- corner / lock frame motif ---------- */
.corner{position:absolute; width:34px; height:34px; border-color:var(--gold); border-style:solid; border-width:0;}
.corner.tl{top:0; left:0; border-top-width:5px; border-left-width:5px; border-radius:8px 0 0 0;}
.corner.tr{top:0; right:0; border-top-width:5px; border-right-width:5px; border-radius:0 8px 0 0;}
.corner.bl{bottom:0; left:0; border-bottom-width:5px; border-left-width:5px; border-radius:0 0 0 8px;}
.corner.br{bottom:0; right:0; border-bottom-width:5px; border-right-width:5px; border-radius:0 0 8px 0;}

/* ---------- COUNTRY CARDS ---------- */
.countries-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:24px;}
.countries-grid.wide{grid-template-columns:repeat(3,1fr);}
.country-card{position:relative; border-radius:18px; overflow:hidden; height:300px; cursor:pointer;}
.country-card img{width:100%;height:100%;object-fit:cover; transition:transform .5s;}
.country-card:hover img{transform:scale(1.08);}
.country-card:after{
  content:''; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(7,29,66,0) 40%, rgba(7,29,66,0.88) 100%);
}
.country-card .cc-corner{position:absolute; width:22px;height:22px; border-color:var(--gold); border-style:solid; border-width:0; z-index:2; opacity:0; transition:opacity .3s;}
.country-card:hover .cc-corner{opacity:1;}
.cc-corner.tl{top:12px;left:12px;border-top-width:3px;border-left-width:3px;}
.cc-corner.br{bottom:12px;right:12px;border-bottom-width:3px;border-right-width:3px;}
.country-card .cc-info{position:absolute; bottom:18px; left:18px; right:18px; z-index:2; color:#fff;}
.cc-info b{font-family:'Poppins',sans-serif; font-size:18px; display:block;}
.cc-info span{font-size:12.5px; opacity:0.85;}
.cc-badge{
  position:absolute; top:14px; right:14px; z-index:2;
  background:var(--gold); color:var(--navy-deep); font-size:11px; font-weight:700;
  padding:5px 10px; border-radius:100px; text-transform:uppercase; letter-spacing:0.3px;
}

/* ---------- Filter pills (countries page) ---------- */
.filter-row{display:flex; gap:12px; flex-wrap:wrap; margin-bottom:40px;}
.filter-pill{
  padding:10px 20px; border-radius:100px; border:1.5px solid var(--line); background:#fff;
  font-size:14px; font-weight:600; color:var(--muted); cursor:pointer; transition:all .2s;
}
.filter-pill.active, .filter-pill:hover{background:var(--navy); color:#fff; border-color:var(--navy);}

/* ---------- Services (dark) ---------- */
.services-sec{background:var(--navy-deep); position:relative; overflow:hidden;}
.services-sec .eyebrow-label{color:var(--gold-light);}
.services-sec .eyebrow-label:before{background:var(--sky-light);}
.services-sec .sec-head h2{color:#fff;}
.services-sec .sec-head p{color:#B7C4DE;}
.services-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:22px;}
.services-grid.two-col{grid-template-columns:repeat(2,1fr); gap:24px;}
.service-card{
  background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.1);
  border-radius:18px; padding:32px 26px; transition:all .25s;
}
.service-card:hover{background:rgba(255,255,255,0.08); border-color:var(--sky-light); transform:translateY(-4px);}
.service-icon{
  width:52px;height:52px;border-radius:14px; background:linear-gradient(140deg,var(--sky),var(--sky-light));
  display:flex;align-items:center;justify-content:center; margin-bottom:22px;
}
.service-icon svg{width:24px;height:24px; stroke:#fff;}
.service-card h3{font-size:17px; color:#fff; font-weight:600; margin-bottom:10px;}
.service-card p{font-size:14px; color:#9FB0CE; line-height:1.6;}
.service-card .price-tag{margin-top:16px; display:inline-block; font-size:12.5px; color:var(--gold-light); font-weight:600; background:rgba(242,168,29,0.12); padding:5px 12px; border-radius:100px;}

/* ---------- Light service cards (service page detail) ---------- */
.service-card-light{
  background:#fff; border:1px solid var(--line); border-radius:18px; padding:34px 28px;
  transition:all .25s;
}
.service-card-light:hover{transform:translateY(-4px); box-shadow:0 20px 40px -20px rgba(10,42,94,0.25); border-color:var(--sky-light);}
.service-card-light .service-icon{background:linear-gradient(140deg,var(--navy),var(--sky));}
.service-card-light h3{font-size:18px; color:var(--navy); font-weight:600; margin-bottom:10px;}
.service-card-light p{font-size:14.5px; color:var(--muted); line-height:1.65;}
.service-card-light .incl{margin-top:18px; padding-top:18px; border-top:1px solid var(--line);}
.service-card-light .incl li{display:flex; align-items:center; gap:8px; font-size:13.5px; color:var(--muted); margin-bottom:8px;}
.service-card-light .incl li svg{width:15px;height:15px; stroke:var(--sky); flex-shrink:0;}

/* ---------- PROCESS ---------- */
.process-row{display:grid; grid-template-columns:repeat(4,1fr); gap:0; position:relative;}
.process-row:before{
  content:''; position:absolute; top:26px; left:60px; right:60px; height:2px;
  background:repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px);
  z-index:0;
}
.process-step{position:relative; z-index:1; text-align:left; padding-right:20px;}
.process-num{
  width:52px;height:52px; border-radius:50%; background:#fff; border:2px solid var(--sky);
  color:var(--navy); font-family:'Poppins',sans-serif; font-weight:700; font-size:17px;
  display:flex; align-items:center; justify-content:center; margin-bottom:22px;
}
.process-step:nth-child(2) .process-num{border-color:var(--gold);}
.process-step:nth-child(3) .process-num{border-color:var(--sky);}
.process-step:nth-child(4) .process-num{background:var(--navy); color:#fff; border-color:var(--navy);}
.process-step h3{font-size:17px; color:var(--navy); font-weight:600; margin-bottom:8px;}
.process-step p{font-size:14px; color:var(--muted); line-height:1.6;}

/* ---------- Stats row ---------- */
.stats-band{background:var(--navy); border-radius:24px; padding:44px 40px; display:grid; grid-template-columns:repeat(4,1fr); gap:20px;}
.stats-band .stat{text-align:center;}
.stats-band .stat b{display:block; font-family:'Poppins',sans-serif; font-size:34px; color:#fff;}
.stats-band .stat span{font-size:13.5px; color:#B7C4DE;}

/* ---------- Team / About ---------- */
.team-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:24px;}
.team-card{background:#fff; border-radius:18px; overflow:hidden; border:1px solid var(--line);}
.team-card .photo{height:220px; overflow:hidden;}
.team-card .photo img{width:100%;height:100%;object-fit:cover;}
.team-card .info{padding:18px 20px;}
.team-card .info b{display:block; color:var(--navy); font-family:'Poppins',sans-serif; font-size:15.5px;}
.team-card .info span{font-size:13px; color:var(--sky); font-weight:600;}

.value-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:24px;}
.value-card{padding:8px;}
.value-num{font-family:'Poppins',sans-serif; font-size:32px; font-weight:800; color:var(--gold); margin-bottom:14px;}
.value-card h3{font-size:17px; color:var(--navy); font-weight:600; margin-bottom:10px;}
.value-card p{font-size:14.5px; color:var(--muted); line-height:1.6;}

.about-split{display:grid; grid-template-columns:0.9fr 1.1fr; gap:56px; align-items:center;}
.about-split .visual{position:relative; height:420px;}
.about-split .frame{position:absolute; inset:24px; border-radius:20px; overflow:hidden;}
.about-split .frame img{width:100%;height:100%;object-fit:cover;}
.about-split h2{font-size:34px; color:var(--navy); font-weight:800; letter-spacing:-0.5px;}
.about-split p{margin-top:16px; color:var(--muted); font-size:15.5px; line-height:1.7;}

/* ---------- FORMS ---------- */
.form-shell{
  max-width:760px; margin:0 auto; background:#fff; border-radius:24px; padding:48px;
  border:1px solid var(--line); box-shadow:0 30px 60px -30px rgba(10,42,94,0.15); position:relative;
}
.form-row{display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-bottom:18px;}
.form-field{display:flex; flex-direction:column; gap:8px;}
.form-field.full{grid-column:1 / -1;}
.form-field label{font-size:13.5px; font-weight:600; color:var(--navy);}
.form-field input, .form-field select, .form-field textarea{
  border:1.5px solid var(--line); border-radius:12px; padding:13px 16px; font-size:14.5px; color:var(--ink);
  background:var(--bg); transition:border-color .2s; outline:none;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus{border-color:var(--sky); background:#fff;}
.form-field textarea{resize:vertical; min-height:100px;}
.form-submit{width:100%; justify-content:center; margin-top:8px;}
.form-steps{display:flex; align-items:center; justify-content:center; gap:10px; margin-bottom:36px;}
.form-steps .fs-dot{width:34px;height:34px;border-radius:50%; background:var(--bg); border:1.5px solid var(--line); display:flex;align-items:center;justify-content:center; font-size:13px; font-weight:700; color:var(--muted);}
.form-steps .fs-dot.active{background:var(--sky); border-color:var(--sky); color:#fff;}
.form-steps .fs-line{width:36px; height:2px; background:var(--line);}
.checkbox-row{display:flex; align-items:flex-start; gap:10px; font-size:13px; color:var(--muted); margin-top:6px;}
.checkbox-row input{margin-top:3px;}

.side-info{display:flex; flex-direction:column; gap:22px;}
.info-item{display:flex; gap:16px; align-items:flex-start;}
.info-item .ic{
  width:46px;height:46px;border-radius:12px; background:linear-gradient(140deg,var(--sky),var(--sky-light));
  display:flex;align-items:center;justify-content:center; flex-shrink:0;
}
.info-item .ic svg{width:20px;height:20px; stroke:#fff;}
.info-item b{display:block; color:var(--navy); font-size:15px; margin-bottom:3px;}
.info-item span{font-size:13.5px; color:var(--muted); line-height:1.5;}

/* ---------- Map block ---------- */
.map-block{border-radius:20px; overflow:hidden; height:100%; min-height:340px; position:relative; background:linear-gradient(160deg,var(--navy),var(--sky));}
.map-block iframe{width:100%;height:100%; border:0; filter:grayscale(0.2);}

/* ---------- TESTIMONIAL ---------- */
.testi-sec{background:var(--bg);}
.testi-card{
  background:#fff; border-radius:24px; padding:48px; position:relative;
  display:grid; grid-template-columns:auto 1fr; gap:40px; align-items:center;
  box-shadow:0 20px 50px -20px rgba(10,42,94,0.12);
}
.testi-avatar{width:96px;height:96px;border-radius:20px; overflow:hidden; position:relative; flex-shrink:0;}
.testi-avatar img{width:100%;height:100%;object-fit:cover;}
.quote-mark{font-family:'Poppins',sans-serif; font-size:60px; color:var(--sky-light); line-height:0.5; margin-bottom:10px; display:block;}
.testi-text{font-size:19px; color:var(--navy); line-height:1.6; font-weight:500;}
.testi-name{margin-top:20px; font-size:14px; color:var(--muted);}
.testi-name b{color:var(--navy);}

/* ---------- FAQ ---------- */
.faq-item{border-bottom:1px solid var(--line); padding:22px 0;}
.faq-q{display:flex; align-items:center; justify-content:between; justify-content:space-between; cursor:pointer; gap:20px;}
.faq-q h3{font-size:16px; font-weight:600; color:var(--navy);}
.faq-q .plus{width:26px;height:26px;border-radius:50%; border:1.5px solid var(--line); flex-shrink:0; display:flex;align-items:center;justify-content:center; position:relative; transition:all .2s;}
.faq-q .plus:before,.faq-q .plus:after{content:''; position:absolute; background:var(--navy); transition:all .2s;}
.faq-q .plus:before{width:10px;height:1.5px;}
.faq-q .plus:after{width:1.5px;height:10px;}
.faq-item.open .plus{background:var(--sky); border-color:var(--sky);}
.faq-item.open .plus:before,.faq-item.open .plus:after{background:#fff;}
.faq-item.open .plus:after{transform:rotate(90deg); opacity:0;}
.faq-a{max-height:0; overflow:hidden; transition:max-height .3s ease;}
.faq-item.open .faq-a{max-height:200px;}
.faq-a p{padding-top:14px; font-size:14.5px; color:var(--muted); line-height:1.65; max-width:640px;}

/* ---------- CTA ---------- */
.cta-sec{padding:20px 32px 100px;}
.cta-box{
  max-width:1200px; margin:0 auto; position:relative;
  background:linear-gradient(120deg,var(--navy) 0%, var(--sky) 130%);
  border-radius:28px; padding:70px 60px; text-align:center; overflow:hidden;
}
.cta-box .corner{border-color:rgba(255,255,255,0.5);}
.cta-box:before{
  content:''; position:absolute; width:340px; height:340px; border-radius:50%;
  background:radial-gradient(circle, rgba(242,168,29,0.35), transparent 70%);
  top:-140px; right:-100px;
}
.cta-box h2{font-size:34px; color:#fff; font-weight:800; position:relative; z-index:1;}
.cta-box p{color:#D8E5F7; margin-top:14px; font-size:16px; position:relative; z-index:1;}
.cta-box .btn-primary{background:var(--gold); color:var(--navy-deep); margin-top:30px; position:relative; z-index:1; box-shadow:0 12px 24px -6px rgba(0,0,0,0.3);}

/* ---------- FOOTER ---------- */
footer{background:var(--navy-deep); padding:60px 32px 30px; color:#B7C4DE;}
.foot-grid{max-width:1200px; margin:0 auto; display:grid; grid-template-columns:1.3fr 1fr 1fr 1fr; gap:40px; padding-bottom:40px; border-bottom:1px solid rgba(255,255,255,0.08);}
.foot-logo{display:flex;align-items:center;gap:8px; margin-bottom:14px;}
.foot-logo img{height:30px; filter:brightness(0) invert(1);}
.foot-grid p{font-size:14px; line-height:1.6; max-width:280px;}
.foot-col h4{color:#fff; font-size:14px; margin-bottom:16px; font-weight:600;}
.foot-col a{display:block; font-size:14px; margin-bottom:11px; color:#9FB0CE;}
.foot-col a:hover{color:var(--gold-light);}
.foot-bottom{max-width:1200px; margin:0 auto; display:flex; justify-content:space-between; padding-top:24px; font-size:13px; color:#7C8CAD; flex-wrap:wrap; gap:10px;}

/* ---------- Utility ---------- */
.mt-64{margin-top:64px;}




/* ---------- HERO SECTION (home page) ---------- */
.hero{
  position:relative;
  padding:70px 32px 70px;
  max-width:1200px; margin:0 auto;
  display:grid; grid-template-columns:1.05fr 0.95fr; gap:40px; align-items:center;
}
.hero-eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  background:#fff; border:1px solid var(--line); border-radius:100px;
  padding:7px 16px; font-size:13px; font-weight:600; color:var(--sky);
  margin-bottom:24px;
}
.hero-eyebrow .dot{width:7px;height:7px;border-radius:50%;background:var(--gold);}
.hero h1{font-size:52px; line-height:1.08; font-weight:800; color:var(--navy); letter-spacing:-0.5px;}
.hero h1 .accent{color:var(--sky); white-space:nowrap;}
.hero h1 .bn-word{font-family:'Hind Siliguri',sans-serif; color:var(--gold); font-weight:700;}
.hero p.sub{margin-top:22px; font-size:17px; color:var(--muted); max-width:460px; line-height:1.65;}
.hero-ctas{display:flex; gap:14px; margin-top:34px;}
.hero-stats{display:flex; gap:34px; margin-top:48px;}
.stat b{font-size:26px; font-family:'Poppins',sans-serif; color:var(--navy); display:block;}
.stat span{font-size:13px; color:var(--muted);}
.hero-visual{position:relative; height:460px;}
.lock-frame{position:absolute; inset:0;}
.hero-card{position:absolute; inset:26px; border-radius:20px; overflow:hidden; background:linear-gradient(160deg,var(--sky) 0%, var(--navy) 100%);}
.hero-card img{width:100%;height:100%;object-fit:cover; opacity:0.55; mix-blend-mode:luminosity;}
.hero-card .tag{position:absolute; top:20px; left:20px; background:rgba(255,255,255,0.15); backdrop-filter:blur(6px); color:#fff; font-size:13px; font-weight:600; padding:8px 14px; border-radius:100px; display:flex; align-items:center; gap:8px;}
.hero-card .tag .flag{width:18px;height:18px;border-radius:50%; background:#fff;}
.hero-card .float-pill{position:absolute; bottom:22px; left:22px; right:22px; background:rgba(255,255,255,0.95); border-radius:16px; padding:16px 18px; display:flex; align-items:center; justify-content:space-between;}
.hero-card .float-pill b{display:block; color:var(--navy); font-size:15px; font-family:'Poppins',sans-serif;}
.hero-card .float-pill span{color:var(--muted); font-size:12.5px;}
.hero-card .float-pill .chev{width:36px;height:36px;border-radius:50%;background:var(--gold); display:flex;align-items:center;justify-content:center;}
.flight-path{position:absolute; top:-38px; left:-30px; width:130px; z-index:2;}
.strip{padding:34px 32px; border-top:1px solid var(--line); border-bottom:1px solid var(--line);}
.strip-inner{max-width:1200px;margin:0 auto; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:20px;}
.strip-inner span{font-size:13px; color:var(--muted); font-weight:600; letter-spacing:0.4px; text-transform:uppercase;}
.flags-row{display:flex; gap:28px; align-items:center; font-weight:700; color:var(--navy); font-size:15px; flex-wrap:wrap;}
.flags-row div{display:flex; align-items:center; gap:8px; opacity:0.75;}
.flags-row .fdot{width:22px;height:22px;border-radius:50%;}

/* ---------- FOOTER (alias for blade template class foot-cols) ---------- */
.foot-cols{max-width:1200px; margin:0 auto; display:grid; grid-template-columns:1.3fr 1fr 1fr 1fr; gap:40px; padding-bottom:40px; border-bottom:1px solid rgba(255,255,255,0.08);}
.foot-cols .foot-col.brand p{font-size:14px; line-height:1.6; max-width:280px; margin-top:12px; color:#B7C4DE;}
.foot-cols .logo{margin-bottom:14px; display:flex; align-items:center; gap:8px;}
.foot-cols .logo img{height:30px; filter:brightness(0) invert(1);}

/* ---------- CONTACT PAGE ---------- */
.contact-grid{display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:start;}
.contact-panel{background:#fff; border-radius:20px; padding:32px; border:1px solid var(--line);}
.contact-panel h3{font-size:20px; color:var(--navy); font-weight:700; margin-bottom:22px; font-family:'Poppins',sans-serif;}
.contact-form-panel{background:#fff; border-radius:20px; padding:32px; border:1px solid var(--line);}
.contact-form-panel h3{font-size:20px; color:var(--navy); font-weight:700; margin-bottom:22px; font-family:'Poppins',sans-serif;}
.office-hours{margin-top:22px; padding-top:20px; border-top:1px solid var(--line);}
.office-hours .row{display:flex; justify-content:space-between; align-items:center; padding:10px 0; border-bottom:1px solid var(--line); font-size:14px;}
.office-hours .row:last-child{border-bottom:none;}
.office-hours .row span{color:var(--muted);}
.office-hours .row b{color:var(--navy); font-weight:600;}

/* ---------- APPLY PAGE ---------- */
.form-submit-row{display:flex; justify-content:space-between; align-items:center; margin-top:24px; gap:16px;}
.form-success{display:none; text-align:center; padding:48px 24px;}
.form-success .tick{width:72px; height:72px; border-radius:50%; background:linear-gradient(140deg,var(--sky),var(--sky-light)); display:flex; align-items:center; justify-content:center; margin:0 auto 24px;}
.form-success .tick svg{width:32px; height:32px; stroke:#fff;}
.form-success h3{font-size:24px; color:var(--navy); font-weight:700; margin-bottom:12px;}
.form-success p{color:var(--muted); font-size:15px; line-height:1.6; max-width:440px; margin:0 auto;}

/* ---------- SERVICE INCL LIST ---------- */
.service-card-light .incl ul{list-style:none; padding:0; margin:0;}
.service-card-light .incl ul li{display:flex; align-items:flex-start; gap:8px; font-size:13.5px; color:var(--muted); margin-bottom:8px; line-height:1.5;}
.service-card-light .incl ul li::before{content:'✓'; color:var(--sky); font-weight:700; flex-shrink:0; margin-top:1px;}

/* ---------- TESTI-SEC HEADING ---------- */
.testi-sec .sec-head{margin-bottom:40px;}

/* ---------- CUSTOM PAGE GRIDS ---------- */
.services-grid-3{display:grid; grid-template-columns:repeat(3,1fr); gap:24px;}
.mission-vision-grid{display:grid; grid-template-columns:1fr 1fr; gap:32px;}

/* ---------- PRELOADER ---------- */
#preloader{
    position:fixed; top:0; left:0; width:100%; height:100%;
    background-color:rgba(247, 249, 252, 0.85); /* Matches var(--bg) with opacity */
    backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px);
    display:flex; justify-content:center; align-items:center;
    z-index:999999; transition:opacity 0.5s ease;
}
.loader-content{text-align:center;}
.loader-logo{width:150px; height:auto; animation:pulse 2s infinite ease-in-out;}
#preloader.fade-out{opacity:0; pointer-events:none;}
@keyframes pulse{
    0%,100%{transform:scale(1);}
    50%{transform:scale(1.05);}
}

/* ============================================================
   RESPONSIVE SYSTEM — Comprehensive breakpoints
   ============================================================ */

/* ---------- 1400px+ (XL screens) ---------- */
@media(min-width:1400px){
  .wrap{max-width:1320px;}
  .hero h1{font-size:58px;}
  .sec-head h2{font-size:40px;}
  .cta-box h2{font-size:38px;}
}

/* ---------- 1200px (Large tablet / small laptop) ---------- */
@media(max-width:1200px){
  .wrap{padding:0 24px;}
  .hero{padding:60px 24px;}
  .hero h1{font-size:46px;}
  .sec{padding:80px 24px;}
  .sec.tight{padding:48px 24px;}
  .countries-grid{grid-template-columns:repeat(3,1fr);}
  .services-grid, .services-grid-3{grid-template-columns:repeat(3,1fr);}
  .foot-cols, .foot-grid{gap:24px;}
  .stats-band{padding:36px 28px;}
}

/* ---------- 980px (Tablet landscape / Mobile nav) ---------- */
@media(max-width:980px){
  /* --- NAV --- */
  .nav-shell{padding:12px 16px 0;}
  nav{border-radius:20px;}
  .nav-links{
    position:fixed; top:70px; left:12px; right:12px;
    background:#fff; flex-direction:column; align-items:stretch;
    padding:12px 16px 20px; gap:2px;
    box-shadow:0 20px 50px rgba(10,42,94,0.18);
    border-radius:20px; border:1px solid var(--line);
    display:none; overflow-y:auto; max-height:calc(100vh - 90px);
    z-index:190;
  }
  .nav-links.mobile-open{display:flex;}
  .nav-links > a, .nav-links > .dd > .dd-trigger{padding:13px 14px; border-radius:12px; font-size:15px; display:block;}
  .nav-links > a:hover, .nav-links > .dd > .dd-trigger:hover{background:var(--bg);}
  /* --- DROPDOWN IN MOBILE NAV --- */
  .dd-menu{
    position:static !important; transform:none !important;
    width:100%; max-width:100%;
    box-shadow:none; border:none; opacity:1 !important; visibility:visible !important;
    display:none; margin-top:2px; border-radius:12px;
    background:var(--bg); padding:4px 0 4px 8px;
  }
  .nav-links .dd-menu a{
    padding:10px 12px; font-size:14.5px; font-weight:500;
    border-radius:8px; display:flex; align-items:center; gap:10px;
  }
  .nav-links .dd-menu .seeall{border-top:1px solid var(--line); margin-top:4px; padding-top:10px;}
  .dd.open .dd-menu{display:block;}
  .mobile-toggle{display:block; z-index:201; position:relative;}

  /* --- HERO --- */
  .hero{grid-template-columns:1fr; padding:40px 24px 48px; gap:32px;}
  .hero h1{font-size:38px; line-height:1.12;}
  .hero p.sub{font-size:15px; max-width:100%;}
  .hero-ctas{flex-wrap:wrap; gap:12px;}
  .hero-stats{gap:20px; flex-wrap:wrap;}
  .hero-visual{height:320px; margin-top:8px;}
  .flight-path{width:90px; top:-24px; left:-18px;}

  /* --- PAGE HERO --- */
  .page-hero{padding:44px 24px 40px;}
  .page-hero h1{font-size:32px;}
  .page-hero p{font-size:15px;}

  /* --- SECTIONS --- */
  .sec{padding:64px 24px;}
  .sec.tight{padding:40px 24px;}
  .sec-head h2{font-size:30px;}
  .wrap{padding:0 20px;}

  /* --- GRIDS --- */
  .countries-grid, .countries-grid.wide{grid-template-columns:repeat(2,1fr); gap:16px;}
  .services-grid, .services-grid.two-col, .services-grid-3{grid-template-columns:repeat(2,1fr); gap:18px;}
  .mission-vision-grid{grid-template-columns:1fr 1fr; gap:24px;}
  .process-row{grid-template-columns:repeat(2,1fr); gap:32px; row-gap:36px;}
  .process-row:before{display:none;}
  .stats-band{grid-template-columns:repeat(2,1fr); gap:18px; padding:32px 24px;}
  .team-grid{grid-template-columns:repeat(2,1fr); gap:18px;}
  .value-grid{grid-template-columns:1fr; gap:20px;}
  .about-split{grid-template-columns:1fr; gap:32px;}
  .about-split .visual{height:280px;}
  .contact-grid{grid-template-columns:1fr;}

  /* --- FOOTER --- */
  .foot-cols, .foot-grid{grid-template-columns:1fr 1fr; gap:32px;}

  /* --- TESTIMONIAL --- */
  .testi-card{grid-template-columns:1fr; text-align:center; padding:32px 24px; gap:24px;}
  .testi-avatar{margin:0 auto;}
  .testi-text{font-size:17px;}

  /* --- FORMS --- */
  .form-shell{padding:28px 22px;}
  .form-row{grid-template-columns:1fr;}

  /* --- CTA --- */
  .cta-sec{padding:16px 24px 72px;}
  .cta-box{padding:50px 32px;}
  .cta-box h2{font-size:28px;}

  /* --- STRIP --- */
  .strip{padding:24px 20px;}
  .strip-inner{flex-direction:column; align-items:flex-start; gap:14px;}
  .flags-row{gap:16px;}
}

/* ---------- 768px (Tablet portrait) ---------- */
@media(max-width:768px){
  /* --- NAV --- */
  .nav-shell{padding:12px 14px 0;}
  nav{padding:7px 7px 7px 16px;}

  /* --- HERO --- */
  .hero h1{font-size:34px;}
  .hero-stats{gap:16px;}
  .hero-stats .stat b{font-size:22px;}
  .hero-ctas .btn-ghost{display:none;}

  /* --- PAGE HERO --- */
  .page-hero h1{font-size:28px;}
  .page-hero p{font-size:14.5px;}

  /* --- SECTIONS --- */
  .sec{padding:52px 18px;}
  .sec.tight{padding:34px 18px;}
  .sec-head h2{font-size:27px;}
  .sec-head p{font-size:15px;}
  .eyebrow-label{font-size:12px;}
  .wrap{padding:0 16px;}

  /* --- GRIDS --- */
  .countries-grid, .countries-grid.wide{grid-template-columns:repeat(2,1fr); gap:14px;}
  .country-card{height:220px;}
  .services-grid, .services-grid.two-col, .services-grid-3{grid-template-columns:1fr; gap:14px;}
  .services-grid.two-col{grid-template-columns:repeat(2,1fr);}
  .mission-vision-grid{grid-template-columns:1fr; gap:20px;}
  .process-row{grid-template-columns:1fr; gap:24px;}
  .stats-band{grid-template-columns:repeat(2,1fr); border-radius:18px; padding:28px 18px;}
  .stats-band .stat b{font-size:28px;}
  .team-grid{grid-template-columns:repeat(2,1fr); gap:14px;}
  .value-grid{grid-template-columns:1fr;}
  .value-card{padding:4px;}

  /* --- ABOUT --- */
  .about-split .visual{height:240px;}

  /* --- FOOTER --- */
  .foot-cols, .foot-grid{grid-template-columns:1fr 1fr; gap:24px;}
  footer{padding:44px 16px 24px;}

  /* --- TESTIMONIAL --- */
  .testi-card{padding:28px 20px;}
  .testi-text{font-size:16px;}
  .quote-mark{font-size:46px;}

  /* --- FORMS --- */
  .form-shell{padding:22px 16px; border-radius:18px;}
  .contact-panel, .contact-form-panel{padding:24px 18px;}

  /* --- CTA --- */
  .cta-box{padding:40px 24px; border-radius:20px;}
  .cta-box h2{font-size:24px;}
  .cta-box p{font-size:14.5px;}
  .cta-box .btn-primary{margin-top:22px;}

  /* --- BUTTONS --- */
  .btn-primary{padding:13px 22px; font-size:14px;}
  .btn-ghost{padding:13px 20px; font-size:14px;}

  /* --- APPLY --- */
  .form-submit-row{flex-direction:column; align-items:stretch;}
  .form-submit-row .btn-ghost, .form-submit-row .btn-primary{width:100%; justify-content:center; text-align:center;}
}

/* ---------- 480px (Small mobile) ---------- */
@media(max-width:480px){
  /* --- NAV --- */
  .logo h2{font-size:20px;}
  .logo img{height:36px;}
  .apply-btn{padding:7px 7px 7px 14px; font-size:13px;}
  .apply-btn .circ{width:30px; height:30px;}

  /* --- HERO --- */
  .hero{padding:28px 16px 40px;}
  .hero h1{font-size:28px; line-height:1.15;}
  .hero p.sub{font-size:14px; margin-top:14px;}
  .hero-ctas{flex-direction:column;}
  .hero-ctas .btn-primary,.hero-ctas .btn-ghost{width:100%; justify-content:center; text-align:center;}
  .hero-ctas .btn-ghost{display:flex;}
  .hero-stats{margin-top:28px; gap:12px;}
  .hero-stats .stat b{font-size:20px;}
  .hero-visual{height:260px;}
  .hero-card .float-pill{padding:12px 14px;}
  .hero-card .float-pill b{font-size:13px;}
  .hero-card .float-pill span{font-size:11px;}

  /* --- PAGE HERO --- */
  .page-hero{padding:32px 16px 28px;}
  .page-hero h1{font-size:24px;}
  .page-hero p{font-size:14px; margin-top:10px;}

  /* --- SECTIONS --- */
  .sec{padding:44px 16px;}
  .sec.tight{padding:28px 16px;}
  .sec-head{margin-bottom:32px;}
  .sec-head h2{font-size:24px;}
  .sec-head p{font-size:14px;}
  .wrap{padding:0 14px;}

  /* --- GRIDS --- */
  .countries-grid, .countries-grid.wide{grid-template-columns:1fr 1fr; gap:12px;}
  .country-card{height:180px;}
  .cc-info b{font-size:14px;}
  .cc-info span{font-size:11px;}
  .cc-badge{font-size:9px; padding:4px 8px;}
  .services-grid, .services-grid.two-col, .services-grid-3{grid-template-columns:1fr;}
  .mission-vision-grid{grid-template-columns:1fr; gap:16px;}
  .process-row{grid-template-columns:1fr; gap:20px;}
  .stats-band{grid-template-columns:1fr 1fr; gap:16px; padding:22px 14px; border-radius:16px;}
  .stats-band .stat b{font-size:26px;}
  .stats-band .stat span{font-size:12px;}
  .team-grid{grid-template-columns:1fr 1fr; gap:12px;}
  .team-card .photo{height:170px;}
  .value-grid{grid-template-columns:1fr;}

  /* --- ABOUT --- */
  .about-split .visual{height:200px;}
  .about-split h2{font-size:24px;}
  .about-split p{font-size:14.5px;}

  /* --- TESTIMONIAL --- */
  .testi-card{padding:22px 16px; gap:18px;}
  .testi-avatar{width:72px; height:72px; border-radius:14px;}
  .testi-text{font-size:15px;}
  .quote-mark{font-size:38px;}

  /* --- FOOTER --- */
  .foot-cols, .foot-grid{grid-template-columns:1fr; gap:28px;}
  footer{padding:36px 14px 20px;}
  .foot-col h4{margin-bottom:10px;}
  .foot-col a{margin-bottom:8px;}
  .foot-bottom{flex-direction:column; gap:6px; font-size:12px; padding-top:18px; margin-top:28px;}

  /* --- FORMS --- */
  .form-shell{padding:18px 14px; border-radius:16px;}
  .form-row{grid-template-columns:1fr; gap:14px;}
  .form-field input, .form-field select, .form-field textarea{padding:11px 14px; font-size:14px;}
  .checkbox-row{font-size:12.5px;}
  .contact-panel, .contact-form-panel{padding:20px 16px;}
  .contact-panel h3, .contact-form-panel h3{font-size:18px;}
  .info-item .ic{width:40px; height:40px; border-radius:10px;}
  .info-item .ic svg{width:17px; height:17px;}

  /* --- CTA --- */
  .cta-sec{padding:12px 16px 56px;}
  .cta-box{padding:32px 20px; border-radius:16px;}
  .cta-box h2{font-size:21px;}
  .cta-box p{font-size:14px; margin-top:10px;}
  .corner{width:24px; height:24px;}

  /* --- BUTTONS --- */
  .btn-primary{padding:12px 20px; font-size:13.5px;}
  .btn-ghost{padding:12px 18px; font-size:13.5px;}

  /* --- PROCESS --- */
  .process-num{width:44px; height:44px; font-size:15px;}
  .process-step h3{font-size:15px;}
  .process-step p{font-size:13.5px;}

  /* --- SERVICE --- */
  .service-card{padding:24px 20px;}
  .service-card-light{padding:24px 20px;}
  .service-icon{width:44px; height:44px; border-radius:12px;}
  .service-icon svg{width:20px; height:20px;}

  /* --- APPLY FORM --- */
  .form-steps{gap:6px; margin-bottom:24px;}
  .form-steps .fs-dot{width:28px; height:28px; font-size:12px;}
  .form-steps .fs-line{width:24px;}
  .form-success{padding:32px 16px;}
  .form-success .tick{width:56px; height:56px;}
  .form-success h3{font-size:20px;}

  /* --- STRIP --- */
  .strip{padding:18px 14px;}
  .flags-row{gap:10px; font-size:13px;}
}


/* ---------- GLOBAL ANIMATION CLASSES ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

