:root {
  --accent: #18a84f;
  --accent-2: #54c45e;
  --brand-blue: #1677c8;
  --brand-blue-deep: #2750b9;
  --gold: #9bdca8;
  --dark: #101b25;
  --dark-2: #132334;
  --ink: #1f2937;
  --muted: #6b7280;
  --line: #e4eee8;
  --soft: #f5faf7;
  --pale: #eaf8ef;
  --white: #fff;
  --shadow: 0 18px 50px rgba(16, 63, 39, 0.09);
  --shadow-lg: 0 28px 70px rgba(16, 45, 65, 0.13);
  --radius: 16px;
  --font-head: "Saira", sans-serif;
  --font-body: "Inter", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  overflow-x: hidden;
  max-width: 100%;
}
body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  background: #fff;
  overflow-x: hidden;
  max-width: 100%;
}
body.nav-open {
  overflow: hidden;
}
img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
  max-width: 100%;
}
.section {
  padding: 100px 0;
}
.skip-link {
  position: fixed;
  z-index: 2000;
  left: 16px;
  top: -60px;
  padding: 10px 16px;
  background: #111;
  color: #fff;
  border-radius: 8px;
}
.skip-link:focus {
  top: 16px;
}

.ksfe-simple {
  padding: 90px 0;
  background: #fff;
}

.ksfe-box {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.ksfe-left h2 {
  margin: 15px 0;
  font-size: 42px;
}

.ksfe-left p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
}

.ksfe-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  border-left: 5px solid #9bdca8;
  background: #f8fffb;
  border-radius: 10px;
  transition: 0.3s;
}

.service svg {
  width: 28px;
  height: 28px;
  color: #9bdca8;
}

.service span {
  font-weight: 600;
}

.service:hover {
  background: #9bdca8;
  color: #fff;
  transform: translateX(8px);
}

.service:hover svg {
  color: #fff;
}

@media (max-width: 768px) {
  .ksfe-box {
    grid-template-columns: 1fr;
  }

  .ksfe-left h2 {
    font-size: 32px;
  }

  .about-visual {
    margin-top: 24px;
  }

  .service-row:hover,
  .highlight-list li:hover,
  .service:hover {
    transform: none;
  }
}

/* ---- top utility bar ---- */
.topbar {
  background: var(--dark);
  color: #d9d9d9;
  font-size: 12px;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  min-height: 40px;
}
.topbar-contacts {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.topbar a,
.topbar-note {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0;
}
.topbar a:hover {
  color: var(--gold);
}
.topbar svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---- header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 88px;
  display: flex;
  align-items: center;
  background: #fff;
  border-bottom: 1px solid var(--line);
  transition: 0.3s ease;
}
.site-header.scrolled {
  height: 76px;
  box-shadow: 0 7px 28px rgba(24, 24, 24, 0.07);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  width: 265px;
  flex: 0 0 auto;
}
.brand img {
  width: 155px;
  height: 70px;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
nav > a:not(.button) {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  position: relative;
  color: #2b2b2b;
  white-space: nowrap;
}
nav > a:not(.button)::after {
  content: "";
  position: absolute;
  height: 2px;
  background: var(--accent);
  left: 0;
  right: 100%;
  bottom: -7px;
  transition: 0.25s;
}
nav > a:hover::after,
nav > a.active::after {
  right: 0;
}
nav > a.active {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  border: 0;
  background: none;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--dark);
  margin: 5px;
  transition: 0.25s;
}

/* ---- buttons ---- */
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 26px;
  color: #fff;
  background: linear-gradient(120deg, var(--accent), var(--brand-blue));
  border: 0;
  border-radius: 6px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 12px 27px rgba(24, 168, 79, 0.25);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 17px 32px rgba(22, 119, 200, 0.3);
}
.button svg,
.text-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.button-sm {
  min-height: 42px;
  padding: 8px 18px;
  font-size: 13px;
}
/* .button-sm .active{min-height:42px;padding:8px 18px;font-size:13px; background-color: #fff0f0;color:#b22222;} */
.button-outline {
  background: #fff;
  color: var(--dark);
  border: 2px solid var(--dark);
  box-shadow: none;
}
.button-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 13px 30px rgba(24, 24, 24, 0.08);
}
.button-dark {
  background: var(--dark);
  box-shadow: 0 12px 27px rgba(24, 24, 24, 0.22);
}
.button-dark:hover {
  box-shadow: 0 17px 32px rgba(24, 24, 24, 0.3);
}
.button-white {
  background: #fff;
  color: var(--accent);
  box-shadow: none;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.text-link.light {
  color: var(--gold);
}
.Get-Pravasi {
  /* padding-left: 190px; */
  padding-top:25px
}
.norka-pravasi {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.norka-pravasi img {
  width: 100%;
  height: auto;
  max-height: 120px;
  object-fit: contain;
}
.logo-card{
    width: 150px;
    height: 110px;
    object-fit: contain;

    background: #fff;
    padding: 12px;

    border-radius: 16px;

    box-shadow: 0 10px 25px rgba(0,0,0,.25);

    transition: .3s ease;
}

.logo-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,.35);
}
.logo-card:last-child{
    object-position: center;
     padding: 8px 12px;
}
.tagline {
  font-weight: 700;
  font-size: 1.1rem;
  color: #1f2937;
}

/* ---- apply band ---- */
.apply-band {
  background: linear-gradient(120deg, var(--accent), var(--brand-blue));
  color: #fff;
}
.apply-band-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  min-height: 56px;
  flex-wrap: wrap;
  padding: 8px 0;
}
.apply-band p {
  margin: 0;
  display: flex;
  gap: 14px;
  align-items: baseline;
  flex-wrap: wrap;
}
.apply-band strong {
  font-family: var(--font-head);
  font-size: 15px;
  letter-spacing: 1px;
}
.apply-band span {
  font-size: 11px;
  letter-spacing: 2px;
  opacity: 0.85;
}
.band-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 6px;
  padding: 7px 14px;
  transition: 0.25s;
}
.band-link:hover {
  background: rgba(255, 255, 255, 0.14);
}
.band-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.apply-band{
    display: none;
}

/* Show only on mobile */
@media (max-width: 767px){
    .apply-band{
        display: block;
    }
}

/* ---- hero ---- */
.hero {
  position: relative;
  min-height: 670px;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(
      115deg,
      rgba(10, 25, 35, 0.98) 0%,
      rgba(13, 37, 48, 0.95) 52%,
      rgba(22, 119, 200, 0.72) 135%
    ),
    radial-gradient(circle at 88% 18%, #18a84f 0%, #101b25 62%);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.16;
  background-image: radial-gradient(#fff 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(100deg, transparent 40%, #000);
}
.hero-inner {
  padding: 10px 0 110px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.82fr);
  gap: 56px;
  align-items: center;
}
.hero-copy {
  max-width: 670px;
  position: relative;
  z-index: 2;
}
.hero-copy-slide {
  display: none;
}
.hero-copy-slide.active {
  display: block;
  animation: hero-copy-in 0.65s ease both;
}
.hero-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: #91e6ad;
  font: 700 13px/1 var(--font-head);
  letter-spacing: 3px;
  /* text-transform:uppercase */
}
h1,
h2,
h3 {
  font-family: var(--font-head);
  line-height: 1.14;
  margin-top: 0;
}
h1 {
  font-size: clamp(38px, 4.6vw, 60px);
  font-weight: 800;
  letter-spacing: -1px;
  margin: 0 0 22px;
  text-transform: none;
}
.hero-sub {
  font:
    500 17px/1.9 "Noto Sans Malayalam",
    var(--font-body),
    sans-serif;
  color: #e3e3e3;
  max-width: 640px;
  margin: 0 0 34px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  display: flex;
  gap: 26px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  overflow: hidden;
  padding: 14px 30px;
  background: rgba(255, 255, 255, 0.06);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.5);
}
.hero-strip img {
  height: 55px;
  width: auto;
  max-width: min(160px, 28vw);
  object-fit: contain;
  flex: 0 1 auto;
}
.hero-slider {
  position: relative;
  width: 100%;
  max-width: 510px;
  justify-self: end;
}
.hero-slides {
  position: relative;
  aspect-ratio: 1/1.08;
  z-index: 2;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateX(45px) scale(0.94);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease,
    visibility 0.65s;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.hero-image {
  width: 88%;
  aspect-ratio: 1;
  align-self: center;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
  background: #fff;
  animation: hero-float 5s ease-in-out infinite;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.025);
}
.shape-one {
  border-radius: 50% 42% 47% 44%;
}
.shape-two {
  border-radius: 42% 58% 43% 57% / 52% 43% 57% 48%;
}
.shape-three {
  border-radius: 56% 44% 50% 50% / 44% 55% 45% 56%;
}
.hero-slide-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  margin: auto;
  width: min(94%, 465px);
  padding: 13px 15px 13px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 15px;
  background: rgba(8, 25, 36, 0.84);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}
.hero-slide-label > div {
  min-width: 0;
}
.hero-slide-label strong {
  display: block;
  color: #fff;
  font: 700 15px/1.2 var(--font-head);
  letter-spacing: 1.4px;
}
.hero-slide-label span {
  display: block;
  margin-top: 5px;
  color: #dff6e7;
  font:
    500 13px/1.55 "Noto Sans Malayalam",
    var(--font-body),
    sans-serif;
}
.hero-slide-label > img {
  width: 100px;
  height: 45px;
  flex: 0 0 auto;
  padding: 6px 8px;
  border-radius: 8px;
  background: #fff;
}

@media (max-width:600px) {
  .hero-slide-label > img {
    width: 86px;
    padding: 5px 6px;
  }
}

.hero-slider-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 4px;
}
.hero-slider-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  transition: 0.3s;
}
.hero-slider-dots button.active {
  width: 30px;
  background: var(--accent-2);
}
.hero-orbit {
  position: absolute;
  inset: 7% 0 auto 7%;
  z-index: 3;
  width: 88%;
  aspect-ratio: 1;
  border: 2px solid rgba(84, 196, 94, 0.45);
  border-radius: 50%;
  pointer-events: none;
  animation: hero-orbit 16s linear infinite;
}
.orbit-icon {
  position: absolute;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--brand-blue));
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}
.orbit-icon-one {
  left: -22px;
  top: 12%;
}
.orbit-icon-two {
  right: -18px;
  bottom: 10%;
}
.orbit-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes hero-float {
  0%,
  100% {
    transform: translateY(-8px);
  }
  50% {
    transform: translateY(10px);
  }
}
@keyframes hero-orbit {
  to {
    transform: rotate(360deg);
  }
}

/* ---- section basics ---- */
.section-tag {
  display: inline-block;
  color: var(--accent);
  font-family: var(--font-head);
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 12px;
}
.section-tag.light {
  color: var(--gold);
}

.reveal-left img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  margin: 30px auto 0;
  /* border-radius: 20px; */
  object-fit: cover;
  /* box-shadow: 0 15px 40px rgba(0,0,0,0.15); */
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.reveal-left img:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

h2 {
  /* font-size:clamp(30px,3.4vw,44px); */
  font-size: 35px;
  font-weight: 800;
  letter-spacing: -0.8px;
  margin: 0 0 18px;
  color: var(--dark);
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 52px;
}
.section-head p {
  color: var(--muted);
  margin: 0;
}

.about-lead {
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 20px 0 35px;
  color: #5d6678;
}

@media (max-width: 992px) {
  .about-img {
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .about-image {
    padding: 10px;
  }

  .about-img {
    max-width: 100%;
  }
}

.brand-list {
  display: grid;
  gap: 20px;
  margin-bottom: 35px;
}

.brand-item {
  padding-left: 20px;
  border-left: 4px solid var(--primary, #18a84f);
}

.brand-item h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #18a84f;
}

.brand-item span {
  display: block;
  margin: 6px 0 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #111827;
}

.brand-item p {
  margin: 0;
  color: #667085;
  line-height: 1.7;
}

.tagline {
  margin-top: 30px;
  font-size: 1.1rem;
  color: #111827;
}

/* ---- who we are ---- */
.who-we-are {
  background: #fff;
}
.who-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 64px;
}
.who-lead {
  font-size: 19px;
  font-weight: 600;
  line-height: 1.75;
  color: var(--dark);
  margin: 0 0 18px;
}
.who-grid p {
  color: var(--muted);
}
.quick-icons {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.quick-icons a {
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
  padding: 28px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: 0.3s;
}
.quick-icons a:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: var(--shadow);
}
.quick-icons i {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--pale);
  color: var(--accent);
  transition: 0.3s;
}
.quick-icons a:hover i {
  background: var(--accent);
  color: #fff;
}
.quick-icons svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---- about us ---- */
.about-us {
  background: var(--soft);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 75px;
  align-items: center;
}
.about-copy > p {
  color: var(--muted);
  margin: 0 0 24px;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}
.check-list li {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  gap: 9px;
  align-items: center;
}
.check-list svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  padding: 3px;
  background: var(--pale);
  border-radius: 50%;
  fill: none;
  stroke: var(--accent);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.about-visual {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.about-visual svg {
  overflow: hidden;
  max-width: 100%;
}
.svg-shadow {
  filter: drop-shadow(0 15px 18px rgba(24, 24, 24, 0.1));
}
/* .about-img img{ width:100%; height:80vh; object-fit:cover} */

.about-image {
  position: relative;
  display: block;
  width: 100%;
  max-width: 560px;
  margin: 80px auto;
  overflow: hidden;
}

.about-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: contain;
  position: relative;
  z-index: 2;
}

.thread {
  position: absolute;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1;
  pointer-events: none;
}

.top-thread {
  top: -50px;
}

.bottom-thread {
  bottom: -50px;
}

/* ---- what we do ---- */
.what-we-do {
  background: #fff;
}
.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
}
.service-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s;
}
.service-row:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateX(6px);
}
.service-row i {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 10px;
  background: var(--pale);
  color: var(--accent);
  font-style: normal;
  transition: 0.3s;
}
.service-row:hover i {
  background: var(--accent);
  color: #fff;
}
.service-row i svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.row-arrow {
  width: 19px;
  height: 19px;
  margin-left: auto;
  fill: none;
  stroke: #c9c9c9;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: 0.3s;
}
.service-row:hover .row-arrow {
  stroke: var(--accent);
  transform: translateX(4px);
}
.services-more {
  text-align: center;
  margin-top: 40px;
}

/* ---- pravasi ---- */
.pravasi {
  color: #fff;
  background: linear-gradient(
    120deg,
    var(--dark) 0%,
    var(--dark-2) 60%,
    #123d52 130%
  );
}
.pravasi-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}
.pravasi h2 {
  color: #fff;
}
.pravasi-copy > p {
  color: #bdbdbd;
  margin: 0 0 18px;
  font-size: 15px;
}
.pravasi-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}
.pravasi-cards article {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 22px 18px;
  transition: 0.3s;
}
.pravasi-cards article:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  background: rgba(24, 168, 79, 0.1);
}
.pravasi-cards svg {
  width: 34px;
  height: 34px;
  padding: 6px;
  margin-bottom: 14px;
  color: var(--gold);
  background: rgba(248, 182, 74, 0.12);
  border-radius: 9px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pravasi-cards h3 {
  font-size: 15px;
  margin: 0 0 4px;
  color: #fff;
}
.pravasi-cards p {
  font-size: 12px;
  line-height: 1.5;
  color: #a5a5a5;
  margin: 0;
}

/* ---- highlights ---- */
.highlights {
  background: var(--soft);
}
.highlight-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 820px;
  display: grid;
  gap: 14px;
}
.highlight-list li {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: 10px;
  padding: 18px 24px;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
}
.highlight-list li:hover {
  box-shadow: var(--shadow);
  transform: translateX(6px);
}
.highlight-list svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  margin-top: 2px;
  padding: 4px;
  background: var(--pale);
  border-radius: 50%;
  fill: none;
  stroke: var(--accent);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---- stats ---- */
.stats {
  padding: 70px 0;
  background: linear-gradient(120deg, var(--accent), var(--brand-blue));
  color: #fff;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stats-grid div {
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}
.stats-grid div:last-child {
  border: 0;
}
.stats strong {
  font: 800 44px/1 var(--font-head);
}
.stats p {
  margin: 10px 0 0;
  font-size: 13px;
  opacity: 0.9;
}

/* ---- partners ---- */
.partners {
  background: #fff;
}
.partners-row {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.partners-row span {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #9a9a9a;
  padding: 22px 40px;
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: 0.3s;
}
.partners-row span:hover {
  color: var(--dark);
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

/* ---- cta ---- */
.cta-section {
  padding: 0 0 100px;
  background: #fff;
}
.cta-inner {
  min-height: 280px;
  border-radius: 24px;
  padding: 60px 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  color: #fff;
  background: linear-gradient(125deg, var(--dark), #123d52);
  position: relative;
  overflow: hidden;
}
.cta-inner::before,
.cta-inner::after {
  content: "";
  position: absolute;
  border: 44px solid rgba(24, 168, 79, 0.15);
  width: 220px;
  height: 220px;
  border-radius: 50%;
}
.cta-inner::before {
  right: -70px;
  top: -100px;
}
.cta-inner::after {
  left: 40%;
  bottom: -190px;
}
.cta-inner span {
  font-family: var(--font-head);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  color: var(--gold);
}
.cta-inner h2 {
  font-size: clamp(28px, 3vw, 40px);
  margin: 12px 0 0;
  color: #fff;
}
.cta-inner > div {
  position: relative;
  z-index: 1;
}
.cta-inner > div:last-child {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.button-white svg,
.button-dark svg {
  width: 21px;
  height: 21px;
}
.cta-inner .button-dark {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ---- contact ---- */
.contact {
  background: var(--soft);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
}
.contact-item {
  display: flex;
  gap: 16px;
  margin-top: 26px;
}
.contact-item i {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 10px;
  color: var(--accent);
  background: var(--pale);
}
.contact-item svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-item h3 {
  font-size: 14px;
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contact-item p,
.contact-item address {
  font-style: normal;
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}
.contact-item a:hover {
  color: var(--accent);
}
.contact-form-wrap {
  background: #fff;
  border-radius: 18px;
  padding: 42px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.contact-form-wrap > h3 {
  font-size: 24px;
  margin: 0 0 4px;
}
.contact-form-wrap > p {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 27px;
}
.contact form {
  display: grid;
  gap: 17px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.contact label {
  display: grid;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.contact input,
.contact select,
.contact textarea {
  width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 13px 14px;
  background: #fbfbfb;
  color: var(--ink);
  font-size: 14px;
  outline: none;
  transition: 0.2s;
}
.contact input:focus,
.contact select:focus,
.contact textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(24, 168, 79, 0.1);
  background: #fff;
}
.contact textarea {
  resize: vertical;
}
.contact form .button {
  justify-self: start;
  margin-top: 4px;
}
.honeypot {
  position: absolute !important;
  left: -9999px !important;
}
.form-status {
  display: none;
  margin: 0;
  padding: 10px 14px;
  border-radius: 9px;
  font-size: 12px;
}
.form-status.show {
  display: block;
}
.form-status.success {
  color: #128d45;
  background: #eafaf0;
}
.form-status.error {
  color: #cb2129;
  background: #fff0f0;
}

/* ---- footer ---- */
footer {
  background: var(--dark);
  color: #c9c9c9;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 0.85fr 1fr 1.4fr;
  gap: 45px;
  padding: 75px 0 40px;
  align-items: start;
}
.footer-brand img {
  width: 145px;
  height: 10vh;
  background: #ffff;
  border-radius: 10px;
  padding: 10px;
}
.footer-brand p {
  max-width: 360px;
  font-size: 13px;
  color: #a5a5a5;
  margin: 18px 0 0;
}
.footer-top h3 {
  font-family: var(--font-head);
  font-size: 15px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 18px;
}
.footer-top > div:not(.footer-brand) a {
  display: block;
  color: #a5a5a5;
  font-size: 13px;
  margin: 9px 0;
  transition: 0.2s;
}
.footer-top a:hover {
  color: var(--gold);
}
.footer-top p {
  font-size: 13px;
  color: #a5a5a5;
  margin: 9px 0;
  line-height: 1.7;
}
.footer-top p a {
  display: inline !important;
}
.footer-top .text-link {
  display: inline-flex;
  margin-top: 12px;
}
.footer-address {
  min-width: 0;
}
.footer-map {
  margin-top: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  overflow: hidden;
  background: #0d1620;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}
.footer-map iframe {
  display: block;
  width: 100%;
  height: 250px;
  gap: 20px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  color: #8a8a8a;
  font-size: 12px;
  flex-wrap: wrap;
}
.footer-bottom p {
  margin: 0;
}

/* ---- floaters ---- */
.whatsapp-float {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 25px;
  height: 54px;
  padding: 0 19px 0 15px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  background: #1db954;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(29, 185, 84, 0.32);
  font-size: 12px;
  font-weight: 700;
  transition: 0.25s;
}
.whatsapp-float:hover {
  transform: translateY(-4px);
}
.whatsapp-float svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.back-top {
  position: fixed;
  z-index: 890;
  right: 31px;
  bottom: 91px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--accent);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.25s;
  box-shadow: 0 8px 20px rgba(24, 168, 79, 0.28);
}
.back-top.visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.back-top svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

/* ---- reveal animations ---- */
.js [class*="reveal-"] {
  opacity: 0;
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.js [class*="reveal-"].visible {
  opacity: 1;
  transform: none;
}
.js .reveal-up {
  transform: translateY(35px);
}
.js .reveal-left {
  transform: translateX(-35px);
}
.js .reveal-right {
  transform: translateX(35px);
}
.quick-icons .reveal-up:nth-child(2),
.service-list .reveal-up:nth-child(2),
.highlight-list .reveal-up:nth-child(2) {
  transition-delay: 0.07s;
}
.quick-icons .reveal-up:nth-child(3),
.service-list .reveal-up:nth-child(3),
.highlight-list .reveal-up:nth-child(3) {
  transition-delay: 0.14s;
}
.quick-icons .reveal-up:nth-child(4),
.service-list .reveal-up:nth-child(4),
.highlight-list .reveal-up:nth-child(4) {
  transition-delay: 0.21s;
}

/* ---- responsive ---- */
@media (max-width: 1080px) {
  .brand {
    width: 225px;
  }
  nav {
    gap: 16px;
  }
  nav > a:not(.button) {
    font-size: 12px;
  }
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
    gap: 30px;
  }
  .hero-slider {
    max-width: 440px;
  }
  .quick-icons {
    grid-template-columns: repeat(3, 1fr);
  }
  .who-grid,
  .about-grid,
  .pravasi-grid {
    gap: 45px;
  }
}
@media (max-width: 860px) {
  .section {
    padding: 78px 0;
  }
  .topbar-inner {
    justify-content: center;
  }
  .topbar-note {
    display: none;
  }
  .site-header {
    height: 76px;
  }
  .brand {
    width: 210px;
  }
  .nav-toggle {
    display: block;
    z-index: 1200;
  }
  nav {
    position: fixed;
    inset: 0 0 0 25%;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 25px;
    padding: 50px;
    background: #fff;
    transform: translateX(100%);
    transition: 0.35s;
    box-shadow: -15px 0 50px rgba(24, 24, 24, 0.15);
  }
  nav.open {
    transform: none;
  }
  nav > a:not(.button) {
    font-size: 16px;
  }
  .nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .apply-band-inner {
    justify-content: center;
    text-align: center;
  }
  .hero {
    min-height: auto;
  }
  .hero-inner {
    padding: 72px 0 105px;
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-copy {
    max-width: 680px;
  }
  .hero-slider {
    max-width: 480px;
    justify-self: center;
  }
  .who-grid,
  .about-grid,
  .pravasi-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  /* .about-visual{max-width:560px;margin:auto} */
  .about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .about-visual img,
  .about-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: contain;
    display: block;
  }

  .about-image {
    margin: 40px auto;
    max-width: 100%;
  }

  .thread {
    display: none;
  }

  .service-list {
    grid-template-columns: 1fr;
  }
  .pravasi-cards {
    grid-template-columns: 1fr 1fr;
  }
  .cta-inner {
    padding: 50px;
    flex-direction: column;
    text-align: center;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }
  /* .footer-brand{grid-column:1/-1} */
  /* .footer-brand img {width:"19px"; height:"20px"; background-color:"#000" } */
  .footer-map iframe {
    height: 160px;
  }
}
@media (max-width: 600px) {
  body {
    font-size: 16px;
  }
  .container {
    width: min(100% - 30px, 1180px);
  }
  .section {
    padding: 64px 0;
  }
  .topbar-contacts {
    gap: 14px;
    font-size: 11px;
  }
  .brand {
    width: 195px;
  }
  .site-header,
  .site-header.scrolled {
    height: 68px;
  }
  nav {
    inset: 0 0 0 12%;
    padding: 35px;
  }
  .apply-band strong {
    font-size: 13px;
  }
  h1 {
    font-size: 34px;
    letter-spacing: -0.5px;
  }
  .hero-sub {
    font-size: 15px;
  }
  .hero-inner {
    padding: 58px 0 94px;
    gap: 35px;
  }
  .hero-copy {
    text-align: center;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-slider {
    width: min(100%, 390px);
  }
  .hero-slides {
    aspect-ratio: 1/1.16;
  }
  .hero-image {
    width: 92%;
  }
  .hero-slide-label {
    bottom: 0;
    width: 96%;
    padding: 12px 15px;
    text-align: left;
  }
  .hero-slide-label strong {
    font-size: 13px;
  }
  .hero-slide-label span {
    font-size: 11px;
    line-height: 1.5;
  }
  .hero-slide-label > img {
    width: 86px;
    padding: 5px 6px;
  }
  .hero-orbit {
    inset: 8% 0 auto 6%;
  }
  .orbit-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }
  .orbit-icon svg {
    width: 24px;
    height: 24px;
  }

  .hero-strip {
    position: relative;
    font-size: 10px;
    letter-spacing: 3px;
    gap: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 12px;
    flex-wrap: wrap;
    margin-top: 0;
    white-space: normal;
    max-width: 100%;
    background: rgb(234, 228, 228);
  }

  .hero-strip img {
    height: 40px;
    width: auto;
    max-width: 110px;
    object-fit: contain;
  }

  .hero-strip span {
    font-size: 18px;
    color: #d0d0d0;
    font-weight: 300;
  }

  .js .reveal-left,
  .js .reveal-right {
    transform: translateY(28px);
  }

  .quick-icons {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .quick-icons a {
    padding: 20px 10px;
    font-size: 12px;
  }
  .who-lead {
    font-size: 16px;
  }
  .check-list {
    grid-template-columns: 1fr;
  }
  .service-row {
    padding: 16px 18px;
    font-size: 14px;
  }
  .pravasi-cards {
    grid-template-columns: 1fr;
  }
  .stats {
    padding: 48px 0;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 0;
  }
  .stats-grid div:nth-child(2) {
    border-right: 0;
  }
  .stats strong {
    font-size: 34px;
  }
  .partners-row span {
    padding: 16px 24px;
    font-size: 15px;
  }
  .cta-section {
    padding-bottom: 64px;
  }
  .cta-inner {
    min-height: 0;
    padding: 42px 22px;
    border-radius: 18px;
  }
  .cta-inner > div:last-child {
    flex-direction: column;
    width: 100%;
  }
  .contact-form-wrap {
    padding: 26px 18px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact form .button {
    width: 100%;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 55px 0 30px;
  }
  .footer-brand img {
    width: 230px;
  }
  .footer-map iframe {
    height: 150px;
  }
  .footer-bottom {
    display: block;
    text-align: center;
  }
  .whatsapp-float {
    width: 53px;
    padding: 0;
    justify-content: center;
    right: 15px;
    bottom: 16px;
  }
  .whatsapp-float span {
    display: none;
  }
  .back-top {
    right: 21px;
    bottom: 81px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js [class*="reveal-"] {
    opacity: 1;
    transform: none;
  }
}
