/* Maple Tree BD - Modern Static Site */

:root{
  --bg: #ffffff;
  --surface: rgba(255,255,255,1);
  --surface-2: #f7f7f8;
  --text: rgba(17,24,39,1);
  --muted: rgba(55,65,81,1);
  --muted-2: rgba(107,114,128,1);
  --brand: #0195D8;
  --brand-2: #0195D8;
  --brand-light: rgba(230,246,253,0.9);
  --danger: #0195D8;
  --border: rgba(17,24,39,.12);
  --shadow: 0 18px 40px rgba(17,24,39,.10);
  --shadow-soft: 0 12px 28px rgba(17,24,39,.08);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 12px;
  --container: 1280px;
  --header-h: 74px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

*{box-sizing:border-box}
html {
  scroll-behavior: smooth;
}
html,body{height:100%}
body{
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background:
    radial-gradient(900px 520px at 12% 0%, rgba(1,149,216,.12), transparent 62%),
    radial-gradient(900px 520px at 88% 12%, rgba(1,149,216,.10), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #fafafa 55%, #ffffff 100%);
  overflow-x:hidden;
}
main{
  padding-top: var(--header-h);
}

[data-aos].aos-animate {
  will-change: auto;
}


img{max-width:100%; display:block}
a{color:inherit; text-decoration:none}
button,input,select,textarea{font:inherit}

.container{
  width:min(var(--container), calc(100% - 48px));
  max-width: var(--container);
  margin-inline:auto;
}

.section{
  padding:84px 0;
}
.section.tight{padding:56px 0}

.eyebrow{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:8px 12px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  border-radius:999px;
  color:var(--muted);
  font-size:13px;
  letter-spacing:.02em;
}

.h1{
  font-size: clamp(34px, 4.2vw, 54px);
  line-height:1.05;
  margin:18px 0 14px;
  letter-spacing:-.02em;
}
.h2{
  font-size: clamp(26px, 3vw, 36px);
  line-height:1.14;
  margin:0 0 10px;
  letter-spacing:-.02em;
}
.h3{
  font-size:20px;
  line-height:1.25;
  margin:0 0 8px;
}
.lead{color:var(--muted); font-size:16px; line-height:1.6; max-width:64ch}
.small{color:var(--muted-2); font-size:14px; line-height:1.6}

.grid{display:grid; gap:18px}
.grid.cols-2{grid-template-columns:repeat(2, minmax(0,1fr))}
.grid.cols-3{grid-template-columns:repeat(3, minmax(0,1fr))}
.grid.cols-4{grid-template-columns:repeat(4, minmax(0,1fr))}
.grid.cols-6{grid-template-columns:repeat(6, minmax(0,1fr))}

@media (max-width: 980px){
  .grid.cols-4{grid-template-columns:repeat(2, minmax(0,1fr))}
  .grid.cols-6{grid-template-columns:repeat(3, minmax(0,1fr))}
}
@media (max-width: 720px){
  .section{padding:64px 0}
  .grid.cols-3,.grid.cols-2{grid-template-columns:1fr}
  .grid.cols-4{grid-template-columns:1fr}
  .grid.cols-6{grid-template-columns:2fr 2fr}
}

.card{
  border:1px solid var(--border);
  background:linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(247,247,248,1) 100%);
  border-radius:var(--radius-md);
  box-shadow:var(--shadow-soft);
  padding:18px;
}
.card.hover{
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.card.hover:hover{
  transform: translateY(-3px);
  border-color: rgba(17,24,39,.18);
  background:linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(245,245,246,1) 100%);
}

.icon{
  width:40px; height:40px;
  border-radius:12px;
  display:grid; place-items:center;
  background: #fff;
  border:1px solid var(--border);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:12px;
  border:1px solid var(--border);
  background:#fff;
  color:var(--text);
  cursor:pointer;
  transition: transform .12s ease, background .18s ease, border-color .18s ease;
  user-select:none;
}
.btn:hover{transform: translateY(-1px); border-color: rgba(17,24,39,.18); background: var(--surface-2)}
.btn:active{transform: translateY(0px)}
.btn.primary{
  border-color: rgba(1,149,216,.35);
  background: linear-gradient(90deg, rgba(1,149,216,1), rgba(1,149,216,1));
  color:#ffffff;
}
.btn.primary:hover{border-color: rgba(1,149,216,.55)}
.btn.ghost{background:transparent}
.btn.sm{padding:10px 12px; border-radius:11px; font-size:14px}

.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border:1px solid var(--border);
  background: #fff;
  border-radius:999px;
  font-size:13px;
  color:var(--muted);
}
.announcement-bar {
  background: #A6E1FA;
  padding: 12px 0;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 40px;
}

.announcement-scroll {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-right-to-left 20s linear infinite;
}

.announcement-text {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a2e;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

@keyframes scroll-right-to-left {
  0% {
    transform: translateX(100vw);
  }
  100% {
    transform: translateX(-100%);
  }
}

@media (max-width: 768px){
  .announcement-bar{
    height: 36px;
    padding: 10px 0;
  }
  .announcement-text{
    font-size: 13px;
  }
}

.top-bar{
  background: #ffffff;
  border-bottom: 1px solid rgba(17,24,39,.08);
  padding: 12px 0;
}
.top-bar-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.top-brand{
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.top-logo{
  width: 300px;
  height: 100px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.top-brand-text{
  line-height: 1.2;
}
.top-brand-text strong{
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
.top-brand-text span{
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}
.top-contact{
  display: flex;
  align-items: center;
  gap: 24px;
}
.top-contact-item{
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  transition: color 0.2s ease;
}
.top-contact-item i{
  font-size: 18px;
  color: var(--brand);
}
.top-contact-item:hover{
  color: var(--brand);
}
.top-contact-item span{
  font-weight: 500;
}

@media (max-width: 980px){
  .top-bar{
    padding: 10px 0;
  }
  .top-logo{
    width: 200px;
    height: 70px;
  }
  .top-brand-text strong{
    font-size: 16px;
  }
  .top-brand-text span{
    font-size: 12px;
  }
  .top-contact{
    gap: 16px;
  }
  .top-contact-item span{
    display: none;
  }
  .top-contact-item i{
    font-size: 22px;
  }
}

@media (max-width: 580px){
  .top-contact{
    gap: 12px;
  }
}

.header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:50;
  height:var(--header-h);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  background: linear-gradient(135deg, rgba(1,149,216,.70), rgba(1,149,216,.54));
  border-bottom: 1px solid rgba(255,255,255,.28);
  box-shadow: 0 10px 24px rgba(5,20,40,.20), 0 2px 8px rgba(1,149,216,.22);
  overflow: visible;
}

.header .inner{
  height:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 220px;
}
.brand .logo{
  width:48px; height:48px;
  border-radius:0%;
  object-fit:contain;
  display:block;
  flex-shrink:0;
  background: rgba(1,149,216,.10);
  border: 1px solid rgba(1,149,216,.22);
}
.brand .text{line-height:1.1}
.brand .text strong{display:block; font-size:14px; letter-spacing:.02em; color:#ffffff}
.brand .text span{display:block; font-size:12px; color:rgba(255,255,255,.82)}

.brand.logo-only{
  min-width: auto;
}
.brand.logo-only .logo{
  width: 280px;
  height: auto;
  border: 0;
  background: transparent;
  border-radius: 0;
}

@media (max-width: 980px){
  .brand.logo-only .logo{
    width: 160px;
    height: 160px;
  }
}

.nav{
  display:flex;
  align-items:center;
  gap:4px;
}

.nav a, .nav button{
  font-size:16px;
}

.navlink{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid transparent;
  color:#ffffff;
  background:transparent;
  position:relative;
  font-weight:600;
  line-height:1;
}
.navlink:hover{
  color:#ffffff;
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.22);
}
.navlink.active{
  color:#ffffff;
  background: rgba(255,255,255,.20);
  border-color: rgba(255,255,255,.28);
}
.navlink + .navlink::before{
  content:none;
}

.dropdown{position:relative}
.dropdown > button{display:inline-flex; align-items:center; gap:8px}
.dropdown > button svg{opacity:.8}

.menu{
  position:absolute;
  top: calc(100% + 10px);
  left:0;
  min-width: 260px;
  padding:10px;
  border-radius:16px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.98);
  box-shadow: var(--shadow);
  display:none;
}
.menu a{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:10px 10px;
  border-radius:12px;
  color: var(--muted);
  border:1px solid transparent;
}
.menu a:hover{
  color:var(--text);
  background: rgba(17,24,39,.04);
  border-color: rgba(17,24,39,.10);
}
.menu a strong{font-size:14px; color:var(--text)}
.menu a span{font-size:12px; color:var(--muted-2)}
.dropdown.open .menu{display:block}

.header-actions{display:flex; align-items:center; gap:10px}

.header-actions .btn.primary{
  border-color: rgba(1,149,216,.35);
  background: var(--brand);
  color:#ffffff;
}
.header-actions .btn.primary:hover{
  background: #028ac7;
  border-color: rgba(1,149,216,.55);
}

/* Nav social buttons (WhatsApp & Facebook) */
.nav-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  transition: all 0.25s ease;
}
.nav-social-btn i {
  font-size: 20px;
}
.nav-social-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav-social-text small {
  font-size: 10px;
  font-weight: 500;
  opacity: 0.9;
}
.nav-social-text strong {
  font-size: 14px;
  font-weight: 800;
}

.header-actions .whatsapp-btn {
  border-color: rgba(37,211,102,.45);
  background: linear-gradient(135deg, #25D366, #1DAE54);
  box-shadow: 0 4px 14px rgba(29,174,84,.25);
}
.header-actions .whatsapp-btn:hover {
  background: linear-gradient(135deg, #2ee071, #1a9f4c);
  box-shadow: 0 8px 20px rgba(29,174,84,.35);
  transform: translateY(-1px);
}

.header-actions .facebook-btn {
  border-color: #2781ee;
  background: linear-gradient(135deg, #1574EC, #1065cd);
  box-shadow: 0 4px 14px rgba(13,59,122,.25);
}
.header-actions .facebook-btn:hover {
  background: linear-gradient(135deg, #146dda, rgb(17, 79, 160));
  box-shadow: 0 8px 20px rgba(13,59,122,.35);
  transform: translateY(-1px);
}

.burger{
  display:none;
  width:44px; height:44px;
  border-radius:12px;
  color:#ffffff;
  border-color: rgba(255,255,255,.34);
  background: rgba(255,255,255,.10);
}

@media (max-width: 980px){
  .brand{min-width:auto}
  .nav{display:none}
  .nav-social-btn .nav-social-text{display:none}
  .nav-social-btn{padding:8px; border-radius:10px;}
  .nav-social-btn i{font-size:18px}
  .burger{display:inline-flex}
}

.mobile-drawer{
  position:fixed;
  inset: 0;
  display:none;
  z-index:60;
}
.mobile-drawer.open{display:block}
.mobile-drawer .backdrop{
  position:absolute; inset:0;
  background: rgba(0,0,0,.55);
}
.mobile-drawer .panel{
  position:absolute;
  top: 12px;
  right: 12px;
  width: min(420px, calc(100% - 24px));
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.98);
  box-shadow: var(--shadow);
  padding: 12px;
}
.mobile-drawer .panel header{
  display:flex; align-items:center; justify-content:space-between;
  padding: 6px 6px 10px;
}
.mobile-nav a, .mobile-nav button{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding: 12px 12px;
  border-radius: 14px;
  border:1px solid transparent;
  color: var(--muted);
  background: transparent;
  cursor:pointer;
}
.mobile-nav a:hover, .mobile-nav button:hover{
  background: rgba(2,149,218,.08);
  border-color: rgba(2,149,218,.14);
  color: #0295DA;
}
.mobile-sub{
  padding: 0 6px 8px 10px;
  display:none;
}
.mobile-sub a{justify-content:flex-start}
.mobile-item.open + .mobile-sub{display:block}

.hero{
  position:relative;
  padding: 0;
  min-height: 620px;
  overflow: hidden;
}

.hero-slides{
  position: relative;
  width: 100%;
  min-height: 620px;
}

.hero-slide{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 620px;
  padding: 54px 0 70px;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  pointer-events: none;
  z-index: 1;
}

.hero-slide.active{
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.hero-slide[data-slide="canada"]::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.78) 48%, rgba(255,255,255,.26) 100%),
    url("../1.jpg");
  background-position: center, 70% center;
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
  background-color: #fff;
  filter: saturate(1.05);
  z-index:0;
}

.hero-slide[data-slide="canada"]::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(700px 420px at 12% 18%, rgba(1,149,216,.18), transparent 62%),
    radial-gradient(600px 420px at 70% 20%, rgba(1,149,216,.12), transparent 64%);
  z-index:0;
  pointer-events:none;
}

.hero-slide[data-slide="usa"]::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.78) 48%, rgba(255,255,255,.26) 100%),
    url("../2.png");
  background-position: center, center;
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
  background-color: #f0f4f8;
  filter: saturate(1.05);
  z-index: 0;
}

.hero-slide[data-slide="usa"]::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(700px 420px at 12% 18%, rgba(255,99,132,.15), transparent 62%),
    radial-gradient(600px 420px at 70% 20%, rgba(54,162,235,.12), transparent 64%);
  z-index:0;
  pointer-events:none;
}
.hero-slide[data-slide="europe"]::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.78) 48%, rgba(255,255,255,.26) 100%),
    url("../3.png");
  background-position: center, center;
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
  background-color: #d1c5f7;
  filter: saturate(1.05);
  z-index: 0;
}

.hero-slide[data-slide="europe"]::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(700px 420px at 12% 18%, rgba(229, 99, 255, 0.15), transparent 62%),
    radial-gradient(600px 420px at 70% 20%, rgba(54, 223, 235, 0.12), transparent 64%);
  z-index:0;
  pointer-events:none;
}

.hero-slide[data-slide="australia"]::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.78) 48%, rgba(255,255,255,.26) 100%),
    url("../4.png");
  background-position: center, center;
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
  background-color: #d1c5f7;
  filter: saturate(1.05);
  z-index: 0;
}

.hero-slide[data-slide="australia"]::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(700px 420px at 12% 18%, rgba(229, 99, 255, 0.15), transparent 62%),
    radial-gradient(600px 420px at 70% 20%, rgba(54, 223, 235, 0.12), transparent 64%);
  z-index:0;
  pointer-events:none;
}

.hero-inner{position:relative; z-index:1}
.hero-grid{
  display:grid;
  grid-template-columns: 1.08fr .92fr;
  align-items:center;
  gap: 28px;
}
.hero-copy{max-width: 720px}
.hero-title{
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.05;
  margin: 10px 0 12px;
  letter-spacing: -0.02em;
  font-weight: 500;
}
.accent{color: var(--brand);
font-weight: 800;
}

.thick{color: var(--text);
font-weight: 800;
}


.red-line{
position: relative;
}
.red-line::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:100%;
  height:14px;

  background:url("../hero-elem-2.png") no-repeat;
  background-size:contain;
}
.hero-ctas{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}

.hero-ctas-center { display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
  justify-content:center;
}

.stats.glass{
  margin-top: 22px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(17,24,39,.10);
  box-shadow: 0 18px 40px rgba(17,24,39,.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.stats.glass .stat{
  background: rgba(255,255,255,.50);
  border: 1px solid rgba(17,24,39,.08);
}

.hero-media{
  min-height: 520px;
}
.hero-student-wrap{
  position:absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50vw;
  max-width: 820px;
  pointer-events:none;
  z-index: 1;
  overflow: visible;
}
.hero-student{
  position:absolute;
  right: -8vw;
  bottom: 0;
  height: 100%;
  width: auto;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 26px 46px rgba(17,24,39,.18));
  transform: translate3d(120px, 0, 0);
  opacity: 0;
  will-change: transform, opacity;
  animation: heroEnter 4.8s cubic-bezier(.16,1,.3,1) .15s both;
}
@keyframes heroEnter{
  0%{opacity:0; transform: translate3d(120px, 0, 0)}
  100%{opacity:1; transform: translate3d(0, 0, 0)}
}
.hero-badge{
  position:absolute;
  top: 16px;
  right: 16px;
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(17,24,39,.10);
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero-badge .flag{font-size: 18px}
.hero-badge strong{display:block; font-size: 14px; line-height: 1.05}
.hero-badge .small{display:block; color: var(--muted-2)}

.hero-leaves{
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
  overflow:hidden;
}
.hero-leaves .leaf{
  position:absolute;
  width: 18px;
  height: 18px;
  border-radius: 6px 14px 6px 14px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.65), rgba(1,149,216,.38) 55%, rgba(1,149,216,0) 75%);
  opacity: .55;
  filter: blur(.2px);
  animation: leafFall 10s linear infinite;
}
.hero-leaves .l1{left: 8%; top:-20px; animation-duration: 12s; transform: rotate(18deg)}
.hero-leaves .l2{left: 22%; top:-40px; animation-duration: 14s; opacity:.45; transform: rotate(45deg)}
.hero-leaves .l3{left: 60%; top:-30px; animation-duration: 11s; opacity:.35; transform: rotate(22deg)}
.hero-leaves .l4{left: 74%; top:-50px; animation-duration: 16s; opacity:.40; transform: rotate(55deg)}
.hero-leaves .l5{left: 90%; top:-28px; animation-duration: 13s; opacity:.30; transform: rotate(30deg)}
@keyframes leafFall{
  0%{transform: translate3d(0,0,0) rotate(0deg)}
  100%{transform: translate3d(-40px, 780px,0) rotate(220deg)}
}

@media (prefers-reduced-motion: reduce){
  .hero-leaves .leaf{animation:none}
  .hero-student{animation:none; opacity: 1; transform: translate3d(0,0,0)}
}

@media (max-width: 980px){
  .hero-grid{grid-template-columns: 1fr; gap: 18px}
  .hero-media{display:none}
  .hero-student-wrap{position:relative; width: 100%; height: 440px; margin-top: 6px; z-index: 1}
  .hero-student{right: -70px; bottom: -60px; height: auto; width: min(860px, 120vw)}
}

@media (max-width: 720px){
  .hero{padding: 44px 0 60px}
  .stats.glass{padding: 12px}
  .hero-badge{top: 12px; right: 12px}
  .hero-student-wrap{height: 380px}
  .hero-student{right: -74px; bottom: -56px; width: min(780px, 140vw)}
}
.hero .panel{
  border:1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(247,247,248,1));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero .panel .top{
  padding:18px;
  border-bottom:1px solid rgba(17,24,39,.08);
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.hero .panel .body{padding:18px}

.hero-art{
  height: 380px;
  background:
    radial-gradient(600px 320px at 18% 25%, rgba(1,149,216,.16), transparent 62%),
    radial-gradient(560px 320px at 70% 20%, rgba(1,149,216,.12), transparent 62%),
    radial-gradient(560px 340px at 55% 70%, rgba(17,24,39,.06), transparent 62%),
    linear-gradient(135deg, rgba(255,255,255,1), rgba(247,247,248,1));
  border-radius: var(--radius-lg);
  border:1px solid var(--border);
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
}


.stats{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
  margin-top: 18px;
}
.stats .stat{
  padding:14px;
  border-radius: 16px;
  border:1px solid var(--border);
  background: #fff;
}
.stats .stat strong{display:block; font-size:18px}
.stats .stat span{display:block; font-size:12px; color:var(--muted-2)}
@media (max-width: 980px){
  .stats{grid-template-columns: repeat(2, minmax(0,1fr))}
}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items:start;
}
@media (max-width: 720px){
  .split{grid-template-columns:1fr}
}

.kicker{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.core-services{
  position:relative;
  overflow:hidden;
}
.core-services::before{
  content:"";
  position:absolute;
  inset:0;
  background: #f9f9f9;
  z-index: 0;
}
.core-services > .container{position:relative; z-index:1}

.core-services .kicker{margin-bottom: 22px}
.core-services .h2{margin:0}
.core-services .lead{max-width: 62ch}

.btn.cs-pill{
  border-radius: 999px;
  padding: 11px 16px;
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(17,24,39,.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 16px 34px rgba(17,24,39,.08);
  transition: transform .12s ease, background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}
.btn.cs-pill:hover{
  background: var(--brand);
  border-color: rgba(1,149,216,.40);
  color: #fff;
  box-shadow: 0 18px 42px rgba(1,149,216,.22);
}
.btn.cs-pill:active{transform: translateY(0px)}
.btn.cs-pill:focus-visible{
  outline: 3px solid rgba(1,149,216,.22);
  outline-offset: 2px;
}

.core-services .grid{gap: 18px}
.core-services .card{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.55);
  background: rgba(255,255,255,.34);
  box-shadow: 0 22px 54px rgba(17,24,39,.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position:relative;
  overflow:hidden;
}
.core-services .card::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(255,255,255,.40), rgba(255,255,255,.10));
  pointer-events:none;
}
.core-services .card > *{position:relative; z-index:1}

.core-services .icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(17,24,39,.08);
  box-shadow: 0 14px 30px rgba(17,24,39,.10);
}

.core-services .h3{margin: 10px 0 6px}

.cs-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}
.cs-card{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  border: 3px dashed var(--brand);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  position: relative;
}
.cs-card:hover{
  transform: translateY(-8px);
  border-color: var(--brand);
  border-style: solid;
  box-shadow: 0 12px 40px rgba(1,149,216,0.15);
}
.cs-icon-wrap{
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}
.cs-icon--red   { background: rgba(1,149,216,0.15);  color: var(--brand); }
.cs-icon--blue  { background: rgba(37,99,235,0.15);  color: #2563eb; }
.cs-icon--green { background: rgba(22,163,74,0.15);  color: #16a34a; }
.cs-icon--orange{ background: rgba(234,88,12,0.15);  color: #ea580c; }
.cs-icon--purple{ background: rgba(124,58,237,0.15); color: #7c3aed; }
.cs-icon--teal  { background: rgba(13,148,136,0.15); color: #0d9488; }
.cs-card-body{
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cs-card-body h3{
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--brand);
  margin: 0 0 1rem;
  line-height: 1.3;
}
.cs-card-body p{
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 1.5rem;
}
.cs-learn-more{
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  margin-top: auto;
  transition: color 0.2s ease;
}
.cs-card:hover .cs-learn-more{
  color: var(--brand);
}

@media (max-width: 900px){ .cs-grid{grid-template-columns: 1fr 1fr} }
@media (max-width: 580px){ .cs-grid{grid-template-columns: 1fr} }

.cs-bottom{
  display:flex;
  justify-content:flex-end;
  margin-top: 16px;
}

.why-section{
  position:relative;
  overflow:hidden;
}
.why-section::before{
  content:"";
  position:absolute;
  inset:-140px -60px;
  background:
    radial-gradient(800px 520px at 18% 25%, rgba(255,168,216,.40), transparent 62%),
    radial-gradient(900px 560px at 80% 22%, rgba(167,139,255,.38), transparent 64%),
    radial-gradient(900px 620px at 50% 110%, rgba(137,196,255,.28), transparent 62%),
    radial-gradient(2px 2px at 18% 28%, rgba(255,255,255,.55), transparent 60%),
    radial-gradient(2px 2px at 62% 34%, rgba(255,255,255,.45), transparent 60%),
    radial-gradient(2px 2px at 78% 62%, rgba(255,255,255,.42), transparent 60%),
    radial-gradient(2px 2px at 32% 70%, rgba(255,255,255,.38), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,1), rgba(252,248,255,1));
  z-index:0;
}
.why-section > .container{position:relative; z-index:1}

.why-section .split{
  gap: 22px;
}

.why-section .split > .card{
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.55);
  background: rgba(255,255,255,.32);
  box-shadow: 0 28px 70px rgba(17,24,39,.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow:hidden;
}

.why-section .split > .card::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(255,255,255,.44), rgba(255,255,255,.10));
  pointer-events:none;
}
.why-section .split > .card > *{position:relative; z-index:1}

.why-section .why-mini{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.55);
  background: rgba(255,255,255,.34);
  box-shadow: 0 18px 46px rgba(17,24,39,.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.why-section .why-mini .icon{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(17,24,39,.08);
  box-shadow: 0 14px 30px rgba(17,24,39,.10);
}

.dest-item{
  display:flex;
  align-items:center;
  gap: 12px;
}
.dest-item .flag{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(17,24,39,.08);
  box-shadow: 0 14px 30px rgba(17,24,39,.10);
}
.dest-item .flag img{
  display:block;
  width: 28px;
  height: 20px;
  object-fit: cover;
  border-radius: 4px;
}

.why-section .btn.cs-pill{
  background: rgba(255,255,255,.72);
}
.why-section .btn.cs-pill:hover{
  background: var(--brand);
  border-color: rgba(1,149,216,.40);
  color: #fff;
  box-shadow: 0 18px 42px rgba(1,149,216,.22);
}

@media (max-width: 720px){
  .why-section::before{inset:-160px -20px}
}

/* â”€â”€ Empower Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.empower-section{
  background: #fff;
  padding: 4rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.empower-section::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600' viewBox='0 0 600 600'%3E%3Ccircle cx='300' cy='300' r='280' fill='none' stroke='%23d10f2f' stroke-width='1.5' opacity='0.06'/%3E%3Ccircle cx='300' cy='300' r='220' fill='none' stroke='%23d10f2f' stroke-width='1' opacity='0.05'/%3E%3Ccircle cx='300' cy='300' r='160' fill='none' stroke='%23d10f2f' stroke-width='0.8' opacity='0.04'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 400 400'%3E%3Ccircle cx='200' cy='200' r='180' fill='none' stroke='%23d10f2f' stroke-width='1' opacity='0.05'/%3E%3C/svg%3E");
  background-position: right -100px top -100px, left -80px bottom -80px;
  background-repeat: no-repeat;
  background-size: 600px 600px, 400px 400px;
  pointer-events: none;
  z-index: 0;
}
.empower-section > .container{
  position: relative;
  z-index: 1;
}
.empower-header{
  text-align: center;
  max-width: 820px;
  margin: 0 auto 3.5rem;
}
.empower-title{
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--brand);
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
}
.empower-sub{
  font-size: 1.15rem;
  color: #1a1a1a;
  margin-bottom: 0.7rem;
}
.empower-desc{
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
}
.empower-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}
.empower-card{
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid #f0f0f0;
}
.empower-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(1,149,216,0.12);
}
.empower-card--featured{
  border: 2px solid var(--brand);
  box-shadow: 0 8px 32px rgba(1,149,216,0.10);
}
.empower-img-wrap{
  position: relative;
  width: 100%;
  height: 210px;
  overflow: hidden;
}
.empower-img-wrap img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.empower-card:hover .empower-img-wrap img{
  transform: scale(1.05);
}
.empower-img-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.35) 100%);
}
.empower-card-body{
  padding: 1.6rem 1.8rem 0.5rem;
  flex: 1;
}
.empower-card-body h3{
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.empower-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: rgba(1,149,216,0.08);
  border-radius: 50%;
  color: var(--brand);
  font-size: 0.95rem;
  flex-shrink: 0;
}
.empower-card-body ul{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.empower-card-body li{
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}
.empower-card-body li i{
  color: var(--brand);
  font-size: 0.75rem;
  margin-top: 0.3rem;
  flex-shrink: 0;
}
.empower-card-footer{
  padding: 1.4rem 1.8rem 1.8rem;
}
.empower-btn{
  display: block;
  text-align: center;
  background: var(--brand);
  color: #fff;
  border: 2px solid var(--brand);
  border-radius: 50px;
  padding: 0.65rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.empower-btn:hover{
  background: transparent;
  color: var(--brand);
  transform: translateY(-2px);
}
.empower-card--featured .empower-btn{
  background: var(--brand);
  color: #fff;
}

@media (max-width: 900px){
  .empower-grid{grid-template-columns: 1fr 1fr}
}
@media (max-width: 600px){
  .empower-grid{grid-template-columns: 1fr}
  .empower-header{margin-bottom: 2rem}
}

/* â”€â”€ About New Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.about-new{
  background: #f2f4f8;
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.about-new::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('https://images.unsplash.com/photo-1541339907198-e08756dedf3f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D&auto=format&fit=crop&w=2070&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  z-index: 0;
}
.about-new > .container{
  position: relative;
  z-index: 1;
}
.about-card{
  max-width: 1140px;
  width: 100%;
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 20px 40px -12px rgba(0, 30, 30, 0.12), 0 8px 24px -6px rgba(20, 40, 40, 0.05);
  padding: 3.5rem 3rem;
  transition: all 0.2s ease;
  margin: 0 auto;
}
.about-card h2{
  font-family: var(--font-family);
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--brand);
  margin-bottom: 1.25rem;
  border-bottom: 2px solid rgba(1,149,216,0.2);
  padding-bottom: 0.75rem;
  display: inline-block;
}
.maple-leaf{
  color: var(--brand);
  margin-right: 8px;
  font-size: 2rem;
  font-weight: 300;
}
.intro-text{
  font-family: var(--font-family);
  font-size: 1.14rem;
  line-height: 1.6;
  color: var(--text);
  margin: 1.5rem 0 1.8rem 0;
  font-weight: 350;
  background: #E6F6FD;
  padding: 1.6rem 2rem;
  border-radius: 22px;
  border-left: 5px solid var(--brand);
  box-shadow: inset 0 1px 4px rgba(0,0,0,0.02);
}
.service-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem 2rem;
  margin: 2.2rem 0 2.4rem 0;
  background: #ffffff;
  padding: 0.2rem 0;
}
.service-item{
  font-family: var(--font-family);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.03rem;
  font-weight: 400;
  color: var(--text);
  border-bottom: 1px dashed rgba(1,149,216,0.35);
  padding-bottom: 0.7rem;
}
.service-item i{
  color: var(--brand);
  font-size: 1.2rem;
  width: 1.6rem;
  text-align: center;
}
.desc-block{
  font-family: var(--font-family);
  margin: 1.8rem 0 1.2rem 0;
  color: var(--text);
  line-height: 1.65;
}
.desc-block p{
  font-family: var(--font-family);
  margin-bottom: 1.3rem;
  font-weight: 350;
  font-size: 1.04rem;
}
.icon-bullet{
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--brand);
  border-radius: 1px;
  margin-right: 0.75rem;
  vertical-align: middle;
}
.two-col-layout{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin: 2rem 0 1.8rem;
}
.col-card{
  font-family: var(--font-family);
  background: #EDF9FF;
  padding: 1.8rem 2rem;
  border-radius: 22px;
  box-shadow: 0 5px 12px rgba(1,149,216,0.03);
  border: 1px solid rgba(1,149,216,0.20);
}
.col-card h3{
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--brand);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.col-card h3 i{
  color: var(--brand);
  font-size: 1.5rem;
}
.col-card ul{
  list-style: none;
}
.col-card li{
  font-family: var(--font-family);
  margin-bottom: 0.75rem;
  font-weight: 350;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}
.col-card li i{
  color: var(--brand);
  font-size: 0.9rem;
  margin-top: 0.2rem;
  width: 1.2rem;
}
.contact-row{
  font-family: var(--font-family);
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem 4rem;
  background: #ffffff;
  border-top: 1px solid rgba(1,149,216,0.35);
  padding-top: 2rem;
  margin-top: 2rem;
  align-items: center;
  font-size: 1rem;
}
.contact-item{
  font-family: var(--font-family);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--brand);
  font-weight: 450;
}
.contact-item i{
  font-size: 1.3rem;
  color: var(--brand);
  width: 1.8rem;
}
.contact-item a{
  font-family: var(--font-family);
  text-decoration: none;
  color: var(--brand);
  border-bottom: 1px dotted rgba(1,149,216,0.35);
  transition: border 0.15s;
}
.contact-item a:hover{
  border-bottom: 1px solid var(--brand);
  color: var(--brand);
}
.small-note{
  font-family: var(--font-family);
  font-size: 0.95rem;
  color: var(--muted);
  margin-left: 2.2rem;
}
hr{
  border: none;
  border-top: 1.5px solid rgba(1,149,216,0.20);
  margin: 1rem 0 0.2rem;
}

@media (max-width: 700px){
  .about-card{padding: 2rem 1.5rem}
  .service-grid{grid-template-columns: 1fr}
  .two-col-layout{grid-template-columns: 1fr}
  .contact-row{flex-direction: column; align-items: flex-start; gap: 1rem}
  .about-new::before{background-attachment: scroll}
}

@media (max-width: 980px){
  .core-services .grid.cols-3{grid-template-columns: repeat(2, minmax(0,1fr))}
}
@media (max-width: 720px){
  .core-services .grid.cols-3{grid-template-columns: 1fr}
  .core-services .kicker{flex-direction:column; align-items:flex-start}
  .cs-bottom{justify-content:flex-start}
}

/* â”€â”€ CTA Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cta-section{
  position: relative;
  background: linear-gradient(135deg, #0295DA 0%, #0284c7 100%);
  padding: 80px 0;
  overflow: hidden;
}

.cta-bg-overlay{
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600' viewBox='0 0 600 600'%3E%3Ccircle cx='300' cy='300' r='280' fill='none' stroke='%23fff' stroke-width='1' opacity='0.07'/%3E%3Ccircle cx='300' cy='300' r='200' fill='none' stroke='%23fff' stroke-width='0.8' opacity='0.05'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 400 400'%3E%3Ccircle cx='200' cy='200' r='180' fill='none' stroke='%23fff' stroke-width='1' opacity='0.06'/%3E%3C/svg%3E");
  background-position: right -120px center, left -60px bottom -60px;
  background-repeat: no-repeat;
  background-size: 600px 600px, 400px 400px;
  pointer-events: none;
}

.cta-inner{
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.cta-text{
  flex: 1;
  max-width: 650px;
}

.cta-tag{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
}

.cta-tag i {
  font-size: 14px;
}

.cta-title{
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.2;
}

.cta-lead{
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin-bottom: 25px;
}

.cta-features{
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
}

.cta-features span{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

.cta-features i{
  color: #fff;
  font-size: 16px;
  opacity: 0.9;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}

.cta-btn-primary,
.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cta-btn-primary {
  background: white;
  color: #0295DA;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  background: #f8f9fa;
}

.cta-btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

@media (max-width: 968px) {
  .cta-section {
    padding: 60px 0;
  }
  
  .cta-inner {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  
  .cta-text {
    max-width: 100%;
  }
  
  .cta-title {
    font-size: 32px;
  }
  
  .cta-actions {
    align-items: center;
    width: 100%;
  }
  
  .cta-btn-primary,
  .cta-btn-secondary {
    width: 100%;
    max-width: 350px;
    justify-content: center;
  }
  
  .cta-features {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .cta-title {
    font-size: 28px;
  }
  
  .cta-lead {
    font-size: 16px;
  }
  
  .cta-btn-primary,
  .cta-btn-secondary {
    padding: 12px 25px;
    font-size: 15px;
  }
}

/* ... */

.news-kicker-tag{
  display: inline-block;
  background: rgba(1,149,216,0.08);
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

/* ... */

.testi-kicker-tag{
  display: inline-block;
  background: rgba(1,149,216,0.08);
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

/* ... */

.testi-card{
  background: #fff;
  border-radius: 24px;
  padding: 2.8rem 3rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08), 0 2px 12px rgba(1,149,216,0.05);
  border: 1px solid rgba(1,149,216,0.08);
  position: relative;
}

.testi-quote-icon{
  font-size: 1.4rem;
  color: var(--brand);
  background: var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testi-avatar{
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(1,149,216,0.15);
  flex-shrink: 0;
}

.testi-badge{
  background: rgba(1,149,216,0.08);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  flex-shrink: 0;
}

/* ... */

.field input:focus, .field textarea:focus, .field select:focus{border-color: rgba(1,149,216,.45)}

.table td, .table th{
  padding: 12px;
  text-align:left;
  border-bottom: 1px solid rgba(17,24,39,.08);
  color: var(--muted);
  font-size: 14px;
}
.table th{color: var(--text); background: var(--surface-2)}
.table tr:last-child td{border-bottom:0}

.notice{
  border:1px solid rgba(1,149,216,.22);
  background: rgba(1,149,216,.06);
  border-radius: 16px;
  padding: 14px;
  color: var(--muted);
}

.breadcrumbs{color: var(--muted-2); font-size: 13px}
.breadcrumbs a{color: var(--muted)}
.breadcrumbs a:hover{color: var(--text)}

.page-hero{
  padding: 44px 0 10px;
}

.pills{display:flex; flex-wrap:wrap; gap:10px}
.pill{padding:10px 12px; border-radius:999px; border:1px solid rgba(17,24,39,.14); background: #fff; color: var(--muted); cursor:pointer}
.pill.active{border-color: rgba(1,149,216,.45); background: rgba(1,149,216,.06); color: var(--text)}

.searchbar{
  display:flex; gap:10px; align-items:center;
  border:1px solid rgba(17,24,39,.14);
  background: #fff;
  border-radius: 14px;
  padding: 10px 12px;
}
.searchbar input{border:0; background:transparent; color:var(--text); outline:none; width:100%}

.pagination{display:flex; gap:10px; align-items:center; justify-content:center; margin-top: 18px}

.skip-link{
  position:absolute;
  left:-999px;
  top: 10px;
  background:#fff;
  color:#000;
  padding:10px 12px;
  border-radius: 10px;
  z-index:100;
}
.skip-link:focus{left:10px}

/* Section */
.register-with-canada {
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.register-with-canada .parallax-bg {
  position: absolute;
  top: -40%;
  left: 0;
  width: 100%;
  height: 180%;
  background-image: url("../canada-us.webp");
  background-size: cover;
  background-position: center;
  will-change: transform;
  z-index: 0;
}

.register-with-canada::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(210, 225, 245, 0.88);
  z-index: 1;
}

.register-with-canada .container {
  position: relative;
  z-index: 2;
}

.canada-card {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 2px dashed rgba(160, 180, 210, 0.45);
  border-radius: 24px;
  padding: 60px 64px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: box-shadow 0.4s ease, transform 0.4s ease, border-color 0.4s ease;
}

.canada-card:hover {
  box-shadow: 0 0 20px rgba(2, 149, 218, 0.4), 0 0 50px rgba(2, 149, 218, 0.25), 0 0 100px rgba(2, 149, 218, 0.15), 0 0 150px rgba(2, 149, 218, 0.08);
  border-color: rgba(2, 149, 218, 0.4);
  transform: translateY(-4px);
}

.canada-card-badge {
  flex-shrink: 0;
}

.canada-card-badge img {
  width: 210px;
  height: 210px;
  object-fit: contain;
}

.canada-card-content {
  flex: 1;
}

.canada-card-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: #0f0f0f;
  line-height: 1.25;
  margin: 0 0 10px;
}

.canada-card-title .accent {
  color: #0295DA;
}

.canada-card-subtitle {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 16px;
}

.canada-card-text {
  font-size: 0.95rem;
  line-height: 1.85;
  color: #555;
  margin: 0;
}

@media (max-width: 768px) {
  .register-with-canada {
    padding: 50px 16px;
  }

  .canada-card {
    flex-direction: column;
    text-align: center;
    padding: 36px 28px;
    gap: 24px;
  }

  .canada-card-badge img {
    width: 140px;
    height: 140px;
  }

  .canada-card-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .canada-card-title {
    font-size: 1.25rem;
  }

  .canada-card-badge img {
    width: 120px;
    height: 120px;
  }

  .canada-card {
    padding: 28px 20px;
  }
}

/* NEW Registration Section */
.registration-section {
  padding: 90px 20px;
  position: relative;
  overflow: hidden;
}

.registration-section .parallax-bg {
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 200%;
  background-image: url("../canada-us.webp");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.registration-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(210, 225, 245, 0.605);
  z-index: 1;
}

.registration-section .container {
  position: relative;
  z-index: 2;
}

.reg-heading {
  text-align: center;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: #0f1b2d;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.reg-subheading {
  text-align: center;
  font-size: 1rem;
  color: #6b7a8d;
  margin: 0 0 48px;
}

.reg-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(200, 215, 235, 0.5);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.reg-cards:hover {
  box-shadow: 0 0 20px rgba(2, 149, 218, 0.3), 0 0 50px rgba(2, 149, 218, 0.15), 0 0 100px rgba(2, 149, 218, 0.08);
  transform: translateY(-3px);
}

.reg-card {
  padding: 36px 40px;
}

.reg-card:first-child {
  border-right: 1.5px solid rgba(200, 215, 235, 0.5);
}

.reg-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.reg-flag {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.reg-flag-emoji {
  font-size: 36px;
  line-height: 1;
}

.reg-flag-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.reg-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f1b2d;
  margin: 0;
}

.reg-card-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.reg-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.reg-label {
  font-size: 0.875rem;
  color: #7a8a9e;
  white-space: nowrap;
  min-width: 130px;
}

.reg-value {
  font-size: 0.925rem;
  font-weight: 600;
  color: #0f1b2d;
}

@media (max-width: 768px) {
  .registration-section {
    padding: 60px 16px;
  }

  .reg-cards {
    grid-template-columns: 1fr;
  }

  .reg-card:first-child {
    border-right: none;
    border-bottom: 1.5px solid rgba(200, 215, 235, 0.5);
  }

  .reg-card {
    padding: 28px 28px;
  }

  .reg-label {
    min-width: 110px;
  }
}

@media (max-width: 480px) {
  .reg-heading {
    font-size: 1.4rem;
  }

  .reg-row {
    flex-direction: column;
    gap: 2px;
  }

  .reg-card {
    padding: 24px 20px;
  }
}

.sec-heading {
  font-size: clamp(32px, 4.2vw, 50px);
  line-height: 1.2;
  margin: 10px auto 16px;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: #0f0f0f;
  text-align: center;
  max-width: 1000px;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .sec-heading {
    font-size: clamp(20px, 3.8vw, 32px);
  }
}

@media (max-width: 480px) {
  .sec-heading {
    font-size: clamp(16px, 3.2vw, 24px);
  }
}

.section-subtitle-2 {
  font-size: clamp(15px, 1.2vw, 22px);
  line-height: 1.85;
  color: #242424;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.big-btn{
  padding:15px 32px;
  font-size:20px;
  font-weight:600;

  border-radius:10px;
  background:linear-gradient(135deg,#4aa3df,#2c8fd6);
  color:white;

  border:none;
  cursor:pointer;

  transition: all 0.3s ease;
}

.big-btn:hover{
  transform: translateY(-3px);
  box-shadow:
  0 8px 25px rgba(0,0,0,0.25),
  0 0 20px rgba(74,163,223,0.6);
}

/* Stat Cards Section */
.stat-cards-wrapper {
  max-width: 1300px;
  margin: 50px auto;
  padding: 0 30px;
  background-color: #f8f9fa;
}

.stat-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

@media (max-width: 1024px) {
  .stat-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .stat-cards-grid {
    grid-template-columns: 1fr;
  }
}

.stat-card {
  border-radius: 30px;
  padding: 35px 25px;
  box-shadow: 0 20px 30px -10px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 40px -12px rgba(0,0,0,0.35);
}

.stat-card-purple {
  background: linear-gradient(145deg, #667eea 0%, #764ba2 100%);
}

.stat-card-pink {
  background: linear-gradient(145deg, #f093fb 0%, #f5576c 100%);
}

.stat-card-blue {
  background: linear-gradient(145deg, #4facfe 0%, #00f2fe 100%);
}

.stat-card-green {
  background: linear-gradient(145deg, #43e97b 0%, #38f9d7 100%);
}

.stat-card-shine {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(180deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}

.stat-card-label {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.8px;
  margin-bottom: 20px;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

.stat-card-number {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.stat-card-number-main {
  font-size: 52px;
  font-weight: 800;
  color: white;
  line-height: 1;
  letter-spacing: -1px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.stat-card-number-suffix {
  font-size: 32px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.stat-card-footer {
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 20px;
  position: relative;
  z-index: 2;
}

.stat-card-badge {
  color: white;
  background: rgba(255,255,255,0.2);
  padding: 5px 12px;
  border-radius: 40px;
  font-size: 13px;
}

/* Analytics Section */
.stats-section {
  padding: 64px 20px 48px;
  background:
    radial-gradient(680px 340px at 10% 15%, rgba(59, 130, 246, 0.12), transparent 70%),
    radial-gradient(640px 360px at 90% 90%, rgba(217, 70, 239, 0.12), transparent 72%),
    linear-gradient(180deg, #edf2f9 0%, #e8eef7 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1240px;
  margin: 0 auto;
}

.stats-section .stat-card {
  border-radius: 22px;
  padding: 24px 24px 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.2) 100%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px) saturate(125%);
  -webkit-backdrop-filter: blur(14px) saturate(125%);
  min-height: 214px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.stats-section .stat-card::before {
  content: "";
  position: absolute;
  top: -38%;
  left: -24%;
  width: 78%;
  height: 78%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0) 72%);
  pointer-events: none;
  z-index: 0;
}

.stats-section .stat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.22);
  pointer-events: none;
  z-index: 0;
}

.stats-section .stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 44px rgba(15, 23, 42, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.stats-section .stat-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
  border: 1px solid transparent;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  position: relative;
  z-index: 1;
}

.stats-section .stat-title {
  margin: 0 0 10px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: #20253f;
  position: relative;
  z-index: 1;
}

.stats-section .stat-box-number {
  margin: 0;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: #1f2744;
}

.stats-section .stat-title span:last-child {
  font-size: 15px;
  font-weight: 600;
  color: #2e3553;
}

.stats-section .stat-description {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  color: #64708b;
  position: relative;
  z-index: 1;
}

.stats-section .stat-description strong {
  color: #4e8ff7;
  font-weight: 700;
}

.stats-section .stat-progress {
  margin-top: auto;
  height: 8px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.25);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.stats-section .stat-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  width: 82%;
  background: var(--card-accent, #60a5fa);
  transform-origin: left center;
  transform: scaleX(0);
  animation: stats-progress-fill 1s ease-out forwards;
}

@keyframes stats-progress-fill {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

.stats-section .tone-blue {
  --card-accent: linear-gradient(90deg, #1d94d2 0%, #3da4dc 100%);
}

.stats-section .tone-green {
  --card-accent: linear-gradient(90deg, #267ab0 0%, #4098cf 100%);
}

.stats-section .tone-cyan {
  --card-accent: linear-gradient(90deg, #24507f 0%, #366597 100%);
}

.stats-section .tone-magenta {
  --card-accent: linear-gradient(90deg, #1d2959 0%, #344070 100%);
}

.stats-section .tone-blue .stat-icon {
  color: #59a8ea;
  background: rgba(89, 168, 234, 0.18);
  border-color: rgba(89, 168, 234, 0.22);
}

.stats-section .tone-green .stat-icon {
  color: #58cfa3;
  background: rgba(88, 207, 163, 0.2);
  border-color: rgba(88, 207, 163, 0.24);
}

.stats-section .tone-cyan .stat-icon {
  color: #5a9df8;
  background: rgba(90, 157, 248, 0.18);
  border-color: rgba(90, 157, 248, 0.22);
}

.stats-section .tone-magenta .stat-icon {
  color: #b474ec;
  background: rgba(180, 116, 236, 0.2);
  border-color: rgba(180, 116, 236, 0.24);
}

.stats-section .tone-blue .stat-progress span {
  width: 76%;
}

.stats-section .tone-green .stat-progress span {
  width: 84%;
}

.stats-section .tone-cyan .stat-progress span {
  width: 72%;
}

.stats-section .tone-magenta .stat-progress span {
  width: 90%;
}

.stats-section .stats-grid .stat-card:nth-child(1) .stat-progress span {
  animation-delay: 0.1s;
}

.stats-section .stats-grid .stat-card:nth-child(2) .stat-progress span {
  animation-delay: 0.28s;
}

.stats-section .stats-grid .stat-card:nth-child(3) .stat-progress span {
  animation-delay: 0.46s;
}

.stats-section .stats-grid .stat-card:nth-child(4) .stat-progress span {
  animation-delay: 0.64s;
}

.stats-note {
  margin: 28px auto 0;
  text-align: center;
  color: #727a91;
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 1200px) {
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .stats-section {
    padding: 52px 14px 40px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .stats-section .stat-card {
    min-height: 198px;
    padding: 20px 18px 16px;
  }

  .stats-section .stat-box-number {
    font-size: 38px;
  }

  .stats-section .stat-title span:last-child {
    font-size: 14px;
  }
}

/* ================================================================
   SA ASSOCIATES - PREMIUM STATS SECTION
   ================================================================ */
.sa-stats-section {
  background: linear-gradient(180deg, #E8F4FB 0%, #F5FAFD 50%, #FFFFFF 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 24px;
}

.sa-stats-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(1, 149, 216, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.sa-stats-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(1, 149, 216, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.sa-stats-card {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.sa-stats-content {
  position: relative;
  z-index: 2;
}

/* Header */
.sa-stats-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.sa-stats-eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--brand);
}

.sa-stats-eyebrow-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--brand);
  text-transform: uppercase;
}

.sa-stats-flag {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}

.sa-stats-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: #0f0f0f;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.sa-stats-title .accent {
  font-style: italic;
  color: var(--brand);
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 700;
}

.sa-stats-subtitle {
  font-size: 17px;
  color: #5f667c;
  max-width: 620px;
  line-height: 1.6;
  margin-bottom: 48px;
}

/* Stats Grid */
.sa-stats-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 0;
  border-top: 1px solid #C7DEEE;
}

.sa-stat-item {
  padding: 32px 28px 24px;
  border-right: 1px solid #C7DEEE;
  position: relative;
}

.sa-stat-item:first-child {
  padding-left: 0;
  padding-right: 28px;
}

.sa-stat-item:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: 28px;
  background: linear-gradient(135deg, rgba(1, 149, 216, 0.08), transparent);
  border-radius: 0 12px 12px 0;
}

.sa-stat-item.highlight::before {
  content: '';
  position: absolute;
  top: 36px;
  right: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(1, 149, 216, 0.2);
}

.sa-stat-number {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 600;
  color: #0A2540;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-feature-settings: 'tnum';
}

.sa-stat-item:first-child .sa-stat-number {
  font-size: clamp(40px, 5vw, 60px);
}

.sa-stat-item:not(:first-child):not(.highlight) .sa-stat-number {
  font-size: clamp(28px, 3.5vw, 40px);
}

.sa-stat-item.highlight .sa-stat-number {
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--brand);
}

.sa-stat-number .suffix {
  font-size: 0.45em;
  color: var(--brand);
  font-weight: 500;
  font-family: var(--font);
}

.sa-stat-item:not(:first-child):not(.highlight) .sa-stat-number .suffix {
  color: #7DAACE;
  font-size: 0.5em;
}

.sa-stat-item.highlight .sa-stat-number .suffix {
  color: var(--brand);
  font-size: 0.55em;
}

.sa-stat-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  color: #1E5A8C;
}

.sa-stat-item:first-child .sa-stat-label,
.sa-stat-item.highlight .sa-stat-label {
  color: var(--brand);
}

.sa-stat-sublabel {
  font-size: 13px;
  color: #5B7A95;
  line-height: 1.5;
}

/* Footer */
.sa-stats-footer {
  text-align: center;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid #C7DEEE;
}

.sa-stats-footer p {
  font-size: 13px;
  color: #7DAACE;
  font-style: italic;
  margin: 0;
}

/* Responsive - Tablet */
@media (max-width: 900px) {
  .sa-stats-section {
    padding: 60px 24px;
  }

  .sa-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .sa-stat-item {
    padding: 28px 20px;
    border-right: none;
  }

  .sa-stat-item:first-child,
  .sa-stat-item:nth-child(2) {
    border-bottom: 1px solid #C7DEEE;
  }

  .sa-stat-item:nth-child(odd) {
    border-right: 1px solid #C7DEEE;
    padding-left: 0;
  }

  .sa-stat-item:nth-child(even) {
    padding-right: 0;
  }

  .sa-stat-item:last-child {
    border-radius: 0;
  }

  .sa-stat-item:first-child .sa-stat-number {
    font-size: 44px;
  }
}

/* Responsive - Mobile */
@media (max-width: 560px) {
  .sa-stats-section {
    padding: 50px 16px;
  }

  .sa-stats-section::before,
  .sa-stats-section::after {
    width: 200px;
    height: 200px;
  }

  .sa-stats-subtitle {
    margin-bottom: 32px;
    font-size: 14px;
  }

  .sa-stats-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .sa-stat-item {
    padding: 24px 0;
    border-right: none !important;
    border-bottom: 1px solid #C7DEEE;
  }

  .sa-stat-item:first-child {
    padding: 24px 0;
  }

  .sa-stat-item:last-child {
    border-bottom: none;
    padding: 24px 0;
    background: none;
    border-radius: 0;
  }

  .sa-stat-item.highlight::before {
    top: 28px;
  }

  .sa-stat-item:first-child .sa-stat-number {
    font-size: 48px;
  }

  .sa-stat-item:not(:first-child) .sa-stat-number {
    font-size: 36px;
  }
}

/* ================================================================
   SA CHART - WHERE OUR STUDENTS GO
   ================================================================ */
.sa-chart-card {
  background: transparent;
  border-radius: 0;
  padding: 0;
  border: none;
}

.sa-chart-header {
  text-align: center;
  margin-bottom: 28px;
}

.sa-chart-title {
  font-size: 24px;
  font-weight: 800;
  color: #0f0f0f;
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}

.sa-chart-subtitle {
  font-size: 14px;
  color: var(--brand);
  margin: 0;
  font-weight: 500;
}

.sa-countries-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}

.sa-country-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sa-country-flag {
  width: 36px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

.sa-flag-schengen {
  width: 36px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 3px;
  background: #003399;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.sa-flag-schengen-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  width: 100%;
  height: 100%;
  gap: 1px;
  padding: 2px;
}

.sa-flag-schengen-inner > div {
  border-radius: 1px;
}

.sa-country-content {
  flex: 1;
  min-width: 0;
}

.sa-country-info {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
  gap: 8px;
}

.sa-country-name {
  font-size: 14px;
  color: #0A2540;
  font-weight: 600;
}

.sa-country-detail {
  font-size: 11px;
  color: #7DAACE;
  margin-left: 6px;
  font-weight: 400;
}

.sa-country-count {
  font-size: 13px;
  color: var(--brand);
  font-weight: 600;
  white-space: nowrap;
}

.sa-progress-track {
  height: 10px;
  background: #E8F4FB;
  border-radius: 6px;
  overflow: hidden;
}

.sa-progress-fill {
  height: 100%;
  background: linear-gradient(to right, var(--brand) 0%, #5BB3E5 100%);
  border-radius: 6px;
  width: 0;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.sa-chart-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid #D6E9F5;
}

.sa-chart-stat-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 16px 12px;
  border: 1px solid #E5EFF7;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sa-chart-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(1, 149, 216, 0.12);
}

.sa-chart-stat-number {
  font-size: 28px;
  font-weight: 600;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 6px;
  font-family: 'Georgia', 'Times New Roman', serif;
}

.sa-chart-stat-number .small {
  font-size: 14px;
}

.sa-chart-stat-label {
  font-size: 11px;
  color: #5f667c;
  font-weight: 500;
}

.sa-chart-tagline {
  text-align: center;
  margin-top: 18px;
}

.sa-chart-tagline p {
  font-size: 12px;
  color: #7DAACE;
  margin: 0;
}

/* Responsive - Chart Section */
@media (max-width: 480px) {
  .sa-chart-card {
    padding: 24px 18px;
  }

  .sa-chart-title {
    font-size: 20px;
  }

  .sa-country-row {
    gap: 10px;
  }

  .sa-country-flag,
  .sa-flag-schengen {
    width: 28px;
    height: 20px;
  }

  .sa-country-name {
    font-size: 13px;
  }

  .sa-country-detail {
    display: none;
  }

  .sa-country-count {
    font-size: 12px;
  }

  .sa-chart-stat-number {
    font-size: 22px;
  }

  .sa-chart-stat-label {
    font-size: 10px;
  }
}

.destinations-section {
  padding: 100px 20px;

  background:
    linear-gradient(
      rgba(189, 216, 248, 0.25),
      rgba(147, 181, 233, 0.301)
    ),
    url("../destination-bg.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  position: relative;
  overflow: hidden;
}

/* Subtle dotted world map pattern */
.destinations-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, #0295da 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.08;
  pointer-events: none;
}

.destinations-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.destinations-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0295DA;
  margin-bottom: 12px;
}

.destinations-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: #0f0f0f;
  margin: 0;
  line-height: 1.2;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

@media (max-width: 1200px) {
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .destinations-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.destination-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  overflow: visible;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.7);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  position: relative;
}

.destination-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.destination-image-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.destination-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.destination-card:hover .destination-image {
  transform: scale(1.05);
}

/* Small flag on top-left corner of image */
.destination-flag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
}

.flag-icon {
  width: 36px;
  height: 28px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

/* Rounded flag badge overlapping image and content */
.destination-badge {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: -36px;
  z-index: 10;
}

.destination-badge-icon {
  background: white;
  border-radius: 12px;
  width: 64px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border: 3px solid rgba(255, 255, 255, 0.95);
  overflow: hidden;
}

.flag-badge {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Clean white bottom panel */
.destination-content {
  padding: 14px 20px 24px;
  text-align: center;
}

.destination-name {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 6px;
}

.destination-description {
  font-size: 15px;
  color: #777;
  margin: 0 0 18px;
  line-height: 1.4;
}

/* Outlined pill button */
.destination-btn {
  background: rgba(255, 255, 255, 0.8);
  color: #555;
  border: 1px solid #d0d5dd;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.destination-btn:hover {
  background: #0295DA;
  color: white;
  border-color: #0295DA;
  box-shadow: 0 4px 16px rgba(2, 149, 218, 0.3);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .destinations-section {
    padding: 60px 16px;
  }
  
  .destinations-header {
    margin-bottom: 40px;
  }
  
  .destinations-title {
    font-size: clamp(28px, 5vw, 36px);
  }
  
  .destination-card {
    border-radius: 20px;
  }
  
  .destination-image-wrapper {
    height: 180px;
  }
  
  .flag-icon {
    width: 30px;
    height: 22px;
  }
  
  .destination-badge-icon {
    width: 56px;
    height: 42px;
  }
  
  .flag-badge {
    width: 100%;
    height: 100%;
  }
  
  .destination-content {
    padding: 12px 16px 20px;
  }
  
  .destination-name {
    font-size: 20px;
  }
  
  .destination-description {
    font-size: 14px;
  }
  
  .destination-btn {
    padding: 10px 20px;
    font-size: 13px;
  }
}

/* Core Services - Top Circle Cards */
.core-services .services-header {
  text-align: center;
  margin-bottom: 56px;
   
}

.core-services .services-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
}

.core-services .services-title {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  color: #121729;
  margin: 0 0 14px;
  line-height: 1.2;
}

.core-services .services-subtitle {
  font-size: 17px;
  color: #5f667c;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}

.core-services .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1220px;
  margin: 100px auto 0;
}

.core-services .service-box {
  position: relative;
  border-radius: 6px;
  padding: 112px 30px 32px;
  min-height: 420px;
  text-align: center;
  color: #fff;
  overflow: visible;
  box-shadow: 0 12px 30px rgba(28, 22, 54, 0.16);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.core-services .service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(28, 22, 54, 0.22);
}

.core-services .service-box.tone-violet {
  background: linear-gradient(180deg, #0195D8 0%, #037cb5 100%);
}

.core-services .service-box.tone-orange {
  background: linear-gradient(180deg, #33AEE3 0%, #2b8eb9 100%);
}

.core-services .service-box.tone-coral {
  background: linear-gradient(180deg, #53bcea 0%, rgb(38, 107, 137) 100%);
}

.core-services .service-photo-wrap {
  position: absolute;
  left: 50%;
  top: -86px;
  transform: translateX(-50%);
  width: 172px;
  height: 172px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.95);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(17, 24, 39, 0.2);
  z-index: 2;
  background: #fff;
}

.core-services .service-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.core-services .service-box:not(:last-child)::after {
  content: "";
  position: absolute;
  top: -52px;
  right: -58px;
  width: 136px;
  height: 48px;
  border-top: 3px dashed #0190D1;
  border-radius: 50% 50% 0 0;
  pointer-events: none;
}

.core-services .service-title {
  font-size: clamp(18px, 1.8vw, 34px);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 16px;
  color: #fff;
}

.core-services .service-description {
  font-size: 16px;
  line-height: 1.55;
  margin: 0 auto;
  max-width: 340px;
  color: rgba(255, 255, 255, 0.92);
}

.core-services .service-arrow {
  margin: 26px auto 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #0190D1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.core-services .service-arrow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.2);
}

.core-services .services-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}

.core-services .services-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(142, 153, 180, 0.45);
}

.core-services .services-dots span.active {
  width: 30px;
  background: linear-gradient(90deg, #f3844a 0%, #f2704b 100%);
}

@media (max-width: 1100px) {
  .core-services .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .core-services .service-box:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 700px) {
  .core-services .services-grid {
    grid-template-columns: 1fr;
  }

  .core-services .service-box {
    padding: 108px 22px 28px;
    min-height: 360px;
  }

  .core-services .service-photo-wrap {
    width: 154px;
    height: 154px;
    top: -78px;
  }

  .core-services .service-title {
    font-size: clamp(20px, 7vw, 28px);
  }

  .core-services .service-description {
    font-size: 15px;
    max-width: 100%;
  }
}

/* Why Choose Us Section 
.why-choose-section {
  background: linear-gradient(145deg, #f8fcff 0%, #e9f4fe 100%);
}
  */

 .why-choose-section {
  position: relative;
  overflow: hidden;

  background-image: url("../788.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  padding: 100px 20px; /* à¦à¦Ÿà¦¾ à¦¨à¦¾ à¦¥à¦¾à¦•à¦²à§‡ section height à¦›à§‹à¦Ÿ à¦¹à¦¬à§‡ */
}

/* overlay */
.why-choose-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: linear-gradient(
    145deg,
    rgba(248,252,255,0.85),
    rgba(233,244,254,0.85)
  );

  z-index: 1;
}

/* IMPORTANT: direct child à¦¨à§Ÿ, à¦¸à¦¬ content à¦§à¦°à¦¤à§‡ */
.why-choose-section * {
  position: relative;
  z-index: 2;
}

.saavisa-showcase {
  max-width: 1300px;
  width: 100%;
  background: white;
  border-radius: 3rem;
  box-shadow: 0 30px 60px -20px rgba(2, 149, 218, 0.25);
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

.showcase-items-side {
  flex: 1.1;
  min-width: 380px;
  padding: 3rem 2.5rem;
  background: white;
  position: relative;
  z-index: 5;
}

.showcase-graph-side {
  flex: 0.9;
  min-width: 320px;
  background: linear-gradient(165deg, #f2faff 0%, #ffffff 100%);
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 3px dashed rgba(2,149,218,0.19);
  position: relative;
  overflow: hidden;
}

.showcase-graph-side::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(2,149,218,0.06) 0%, transparent 70%);
  top: -50px;
  right: -50px;
  border-radius: 50%;
  animation: showcaseFloat 15s infinite alternate;
}

@keyframes showcaseFloat {
  0% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  100% { transform: translate(-30px, 30px) scale(1.2); opacity: 0.8; }
}

.showcase-header {
  margin-bottom: 2.5rem;
  text-align: center;
}

.showcase-heading {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  text-transform: capitalize;
}

.showcase-heading span {
  color: #0295DA;
  border-bottom: 4px solid #0295DA;
  padding-bottom: 5px;
  display: inline-block;
}

.showcase-subtext {
  color: var(--muted);
  margin-top: 0.5rem;
  font-size: 1.1rem;
  max-width: 550px;
  margin-inline: auto;
}

.showcase-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.showcase-item-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.5rem;
  background: #f5fbfe;
  border-radius: 40px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  box-shadow: 0 5px 15px -8px rgba(2,149,218,0.2);
  cursor: default;
}

.showcase-item-row:hover {
  transform: translateX(8px);
  border-color: rgba(2,149,218,0.25);
  background: white;
  box-shadow: 0 15px 25px -12px rgba(2,149,218,0.35);
}

.showcase-item-icon {
  width: 65px;
  height: 65px;
  background: #e2f0fd;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #0295DA;
  transition: 0.3s;
  flex-shrink: 0;
}

.showcase-item-row:hover .showcase-item-icon {
  background: #0295DA;
  color: white;
  transform: rotate(3deg) scale(1.05);
}

.showcase-item-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.showcase-item-desc {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.4;
}

.showcase-graph-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.8rem;
  position: relative;
  z-index: 10;
  text-transform: capitalize;
}

.showcase-graph-title small {
  font-size: 1rem;
  font-weight: 400;
  color: #0295DA;
  display: block;
  margin-top: 0.2rem;
}

.showcase-chart-container {
  position: relative;
  z-index: 15;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(4px);
  border-radius: 30px;
  padding: 1.5rem 1rem 1rem 1rem;
  box-shadow: 0 20px 30px -12px rgba(2,149,218,0.19);
  border: 2px solid white;
  animation: showcaseSlideUp 0.8s ease-out;
}

@keyframes showcaseSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.showcase-chart-container canvas {
  max-height: 280px;
  max-width: 100%;
}

.showcase-stats-mini {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  gap: 1rem;
  z-index: 15;
  position: relative;
}

.showcase-stat-item {
  background: white;
  padding: 1rem 0.8rem;
  border-radius: 25px;
  flex: 1;
  text-align: center;
  box-shadow: 0 8px 18px -10px #0295DA;
  border: 1px solid rgba(2,149,218,0.13);
}

.showcase-stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: #0295DA;
  line-height: 1;
}

.showcase-stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}

.showcase-action-footer {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.showcase-consult-link {
  background: #0295DA;
  color: white;
  padding: 0.9rem 2.2rem;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 15px 25px -12px #0295DA;
  transition: 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  border: 2px solid white;
  text-decoration: none;
}

.showcase-consult-link:hover {
  background: #0177b3;
  transform: scale(1.02);
  color: white;
}

.showcase-trend-bar {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 5px;
  opacity: 0.8;
  justify-content: center;
}

.showcase-trend-bar span {
  font-size: 0.9rem;
  color: #0295DA;
}

.showcase-trend-track {
  height: 4px;
  width: 80px;
  background: rgba(2,149,218,0.19);
  border-radius: 4px;
  overflow: hidden;
}

.showcase-trend-fill {
  height: 100%;
  width: 80%;
  background: #0295DA;
  border-radius: 4px;
  animation: showcaseLoadWidth 2.5s infinite alternate;
}

@keyframes showcaseLoadWidth {
  0% { width: 40%; }
  100% { width: 90%; }
}

@media (max-width: 900px) {
  .saavisa-showcase {
    flex-direction: column;
    border-radius: 2rem;
  }
  .showcase-items-side {
    min-width: auto;
  }
  .showcase-graph-side {
    border-left: none;
    border-top: 3px dashed rgba(2,149,218,0.19);
    min-width: auto;
  }
}

@media (max-width: 500px) {
  .showcase-items-side {
    padding: 2rem 1.5rem;
  }
  .showcase-item-row {
    flex-wrap: wrap;
  }
  .showcase-heading {
    font-size: 2.2rem;
  }
  .showcase-item-title {
    font-size: 1.2rem;
  }
  .showcase-consult-link {
    font-size: 1rem;
    padding: 0.8rem 1.8rem;
  }
  .saavisa-showcase {
    border-radius: 1.5rem;
  }
}

/* Message from CEO Section */
.ceo-message-section {
  background-image: url("../ceo-bg-2.png");
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
  padding: 120px 20px;
}

/* container */
.ceo-message-section .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end; /* Keep this */
}

/* content box */
/* content box */
.ceo-message-section .content {
  max-width: 800px;
  width: 100%;
  
  /* Use percentage-based positioning */
  position: relative;
  left: 20%; /* Adjust this to move it right or left */
  
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 12px;
}

/* heading */
.ceo-message-section h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
}

/* paragraph */
.ceo-message-section p {
  font-size: 20px;
  line-height: 1.7;
  color: #444;
}

.important-message {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 2px solid #0295DA;
  padding: 25px 30px 25px 80px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(7, 205, 255, 0.15);
  margin: 20px 0;
  position: relative;
}

.important-message::before {
  content: "âš ï¸";
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.important-message p {
  color: #2d3748;
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

/* Stats Container */
.ceo-message-section .stats-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
}

/* Individual Stat Box */
.ceo-message-section .stat-box {
  flex: 1;
  background: #d1e4ec63;
  backdrop-filter: blur(5px);
  padding: 25px 15px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ceo-message-section .stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Stat Number */
.ceo-message-section .stat-number {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 5px;
  background: linear-gradient(135deg, #0295da 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Stat Label */
.ceo-message-section .stat-label {
  font-size: 16px;
  font-weight: 600;
  color: #2d3748;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* CEO Image Wrapper - positioned absolutely on the left */
.ceo-image-wrapper {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 450px;
  z-index: 5;
}

/* Rest of the styling (without the animation keyframes) */

/* Message from CEO Section end */

.ceo-message-wrapper {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.ceo-image {
  flex: 0 0 400px;
  position: relative;
}

.ceo-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 25px 50px -15px rgba(2,149,218,0.25);
}

.ceo-signature {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 1.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 35px -10px rgba(2,149,218,0.2);
  border: 2px solid rgba(2,149,218,0.1);
  min-width: 200px;
}

.ceo-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.ceo-title {
  font-size: 0.9rem;
  color: #0295DA;
  font-weight: 500;
}

.ceo-content {
  flex: 1;
  position: relative;
  padding-left: 3rem;
}

.ceo-quote-icon {
  position: absolute;
  top: -20px;
  left: 0;
  font-size: 3rem;
  color: rgba(2,149,218,0.15);
}

.ceo-quote {
  margin-bottom: 2.5rem;
}

.ceo-quote p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.ceo-quote p:first-child::first-letter {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0295DA;
  float: left;
  line-height: 1;
  margin-right: 0.2rem;
  margin-top: -0.1rem;
}

.ceo-achievements {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.achievement-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: rgba(2,149,218,0.05);
  border-radius: 20px;
  flex: 1;
  border: 1px solid rgba(2,149,218,0.1);
  transition: all 0.3s ease;
}

.achievement-item:hover {
  transform: translateY(-5px);
  background: rgba(2,149,218,0.08);
  box-shadow: 0 15px 30px -10px rgba(2,149,218,0.2);
}

.achievement-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0295DA;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.achievement-label {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}

@media (max-width: 968px) {
  .ceo-message-wrapper {
    flex-direction: column;
    gap: 3rem;
  }
  
  .ceo-image {
    flex: 0 0 auto;
    max-width: 350px;
    margin: 0 auto;
  }
  
  .ceo-image img {
    height: 400px;
  }
  
  .ceo-content {
    padding-left: 0;
    text-align: center;
  }
  
  .ceo-quote-icon {
    position: relative;
    top: auto;
    left: auto;
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .ceo-achievements {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .ceo-image {
    max-width: 100%;
  }
  
  .ceo-image img {
    height: 350px;
  }
  
  .ceo-signature {
    padding: 1rem 1.5rem;
    min-width: 180px;
  }
  
  .ceo-name {
    font-size: 1.1rem;
  }
  
  .ceo-quote p {
    font-size: 1rem;
  }
  
  .ceo-achievements {
    flex-direction: column;
    gap: 1rem;
  }
  
  .achievement-item {
    padding: 1rem;
  }
  
  .achievement-number {
    font-size: 2rem;
  }
}

/* Testimonial Section */
.testimonial-section {
  background: linear-gradient(135deg, #00194c 0%, #002866 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.testimonial-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../dots-pattern.png') repeat;
  opacity: 0.05;
  pointer-events: none;
}

.testimonial-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonial-subtitle {
  color: #0295DA;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 15px;
}

.testimonial-title {
  color: white;
  font-size: 42px;
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
}

.testimonial-title .accent {
  color: #0295DA;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 50px;
  position: relative;
  overflow: hidden;
}

.testimonial-card.slide-in-left {
  animation: slideInLeft 0.8s ease-out;
}

.testimonial-card.slide-in-right {
  animation: slideInRight 0.8s ease-out;
}

.testimonial-card.slide-out-left {
  animation: slideOutLeft 0.8s ease-out;
}

.testimonial-card.slide-out-right {
  animation: slideOutRight 0.8s ease-out;
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutLeft {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(-100%);
    opacity: 0;
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

.testimonial-content {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.testimonial-image {
  flex: 0 0 40%;
  position: relative;
  text-align: center;
}

.testimonial-portrait {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 15px;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-shape {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.shape-1 {
  left: 0;
  bottom: 20px;
  width: 120px;
  height: 120px;
  background: rgba(2, 149, 218, 0.2);
}

.shape-2 {
  right: 0;
  top: 30px;
  width: 90px;
  height: 90px;
  background: rgba(2, 149, 218, 0.15);
}

.testimonial-details {
  flex: 1;
  color: white;
}

.testimonial-rating {
  display: flex;
  gap: 8px;
  margin-bottom: 25px;
}

.testimonial-rating i {
  color: #FFD700;
  font-size: 24px;
}

.testimonial-quote-icon {
  margin-bottom: 25px;
}

.testimonial-quote-icon i {
  color: rgba(255, 255, 255, 0.3);
  font-size: 40px;
}

.testimonial-text {
  font-size: 20px;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
  margin-top: 30px;
}

.author-name {
  color: white;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.author-course,
.author-university {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 5px 0;
  font-size: 16px;
}

.testimonial-nav {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 40px;
}

.testimonial-btn {
  width: 50px;
  height: 50px;
  border: 2px solid rgba(2, 149, 218, 0.3);
  background: transparent;
  border-radius: 50%;
  color: #0295DA;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-btn:hover {
  background: #0295DA;
  color: white;
  border-color: #0295DA;
  transform: translateY(-2px);
}

@media (max-width: 968px) {
  .testimonial-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .testimonial-image {
    flex: 0 0 auto;
    max-width: 350px;
    margin: 0 auto;
  }
  
  .testimonial-card {
    padding: 40px 30px;
  }
  
  .testimonial-title {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .testimonial-section {
    padding: 60px 0;
  }
  
  .testimonial-card {
    padding: 30px 20px;
  }
  
  .testimonial-title {
    font-size: 28px;
  }
  
  .testimonial-text {
    font-size: 18px;
  }
  
  .testimonial-nav {
    justify-content: center;
  }
}

/* Meet Our Team Section */
.team-section {
  background: linear-gradient(135deg, #f8fcff 0%, #ffffff 100%);
  padding: 100px 0;
  position: relative;
}

.team-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../dots-pattern.png') repeat;
  opacity: 0.03;
  pointer-events: none;
}

.team-header {
  text-align: center;
  margin-bottom: 80px;
}

.team-subtitle {
  color: #0295DA;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 15px;
}

.team-title {
  color: var(--text);
  font-size: 42px;
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
}

.team-title .accent {
  color: #0295DA;
}

.team-carousel-wrapper {
  position: relative;
  padding: 0 60px;
}

.team-carousel-container {
  overflow: hidden;
  border-radius: 20px;
}

.team-carousel {
  display: flex;
  gap: 25px;
  transition: transform 0.5s ease;
}

.team-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0295DA, #00b4d8);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(2, 149, 218, 0.3);
}

.team-nav-btn:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 15px 40px rgba(2, 149, 218, 0.4);
  background: linear-gradient(135deg, #0284c7, #0096c7);
}

.team-prev-btn {
  left: 0;
}

.team-next-btn {
  right: 0;
}

.team-member {
  flex: 0 0 auto;
  width: 260px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(2, 149, 218, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(2, 149, 218, 0.15);
}

.member-image {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.member-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-member:hover .member-photo {
  transform: scale(1.1);
}

.member-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(2, 149, 218, 0.9), rgba(0, 180, 216, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-member:hover .member-overlay {
  opacity: 1;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-link:hover {
  background: white;
  color: #0295DA;
  transform: translateY(-3px);
}

.member-info {
  padding: 30px;
  text-align: center;
}

.member-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px 0;
}

.member-position {
  font-size: 16px;
  font-weight: 600;
  color: #0295DA;
  margin: 0 0 15px 0;
}

.member-description {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .team-section {
    padding: 60px 0;
  }
  
  .team-title {
    font-size: 32px;
  }
  
  .team-carousel-wrapper {
    padding: 0 50px;
  }
  
  .team-member {
    width: 280px;
  }
  
  .member-image {
    height: 250px;
  }
  
  .member-info {
    padding: 25px 20px;
  }
  
  .member-name {
    font-size: 20px;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .team-nav-btn {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .team-carousel-wrapper {
    padding: 0 40px;
  }
  
  .team-member {
    width: 260px;
  }
  
  .member-info {
    padding: 20px 15px;
  }
  
  .member-name {
    font-size: 18px;
  }
  
  .member-position {
    font-size: 14px;
  }
  
  .member-description {
    font-size: 14px;
  }
  
  .team-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}

/* Latest News & Insights Section */
.news-section {
  background: #f8f9fa;
  padding: 100px 0;
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 30px;
}

.news-kicker-tag {
  color: #dc3545;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 12px;
}

.news-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 12px 0;
  line-height: 1.2;
}

.news-lead {
  font-size: 18px;
  color: var(--muted);
  margin: 0;
  max-width: 600px;
}

.news-visit-btn {
  background: #dc3545;
  color: white;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.news-visit-btn:hover {
  background: #c82333;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(220, 53, 69, 0.3);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.news-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.news-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.news-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-card:hover .news-img-wrap img {
  transform: scale(1.1);
}

.news-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #dc3545;
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.news-body {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 12px 0;
  line-height: 1.4;
}

.news-body p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 20px 0;
  flex: 1;
}

.news-read-more {
  color: #dc3545;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.news-read-more:hover {
  gap: 10px;
  color: #c82333;
}

.news-read-more i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.news-read-more:hover i {
  transform: translateX(3px);
}

/* Responsive */
@media (max-width: 968px) {
  .news-section {
    padding: 60px 0;
  }
  
  .news-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 40px;
  }
  
  .news-title {
    font-size: 32px;
  }
  
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 640px) {
  .news-title {
    font-size: 28px;
  }
  
  .news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .news-img-wrap {
    height: 200px;
  }
  
  .news-body {
    padding: 20px;
  }
  
  .news-body h3 {
    font-size: 18px;
  }
}

/* â”€â”€ Proud Member Of â€“ Logo Carousel â”€â”€ */
.members-section {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 60px 0 50px;
  overflow: hidden;
}

.members-heading {
  text-align: center;
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 40px;
  letter-spacing: -0.5px;
}

.members-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.members-track {
  display: flex;
  align-items: center;
  gap: 50px;
  width: max-content;
  animation: membersScroll 60s linear infinite;
}

.members-track img {
  height: 60px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  flex-shrink: 0;
  filter: grayscale(40%) opacity(0.75);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.members-track img:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.1);
}

@keyframes membersScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.members-carousel:hover .members-track {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .members-section {
    padding: 40px 0 35px;
  }
  .members-heading {
    margin-bottom: 28px;
  }
  .members-track {
    gap: 35px;
  }
  .members-track img {
    height: 45px;
    max-width: 110px;
  }
}

/* Footer Section */
.footer {
  background: #1a2332;
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 30px;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-cols {
  display: grid;
  grid-template-columns: 1.2fr 2fr 0.8fr 0.8fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col-logo {
  max-width: 100%;
}

.footer-logo {
  width: 300px;
  height: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 15px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 15px 0;
}

.footer-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 5px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background: #0295DA;
  color: #fff;
}

.footer .small {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.footer .badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer .badge:hover {
  background: #0295DA;
  color: white;
}

.footer .h3 {
  color: white;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #0295DA;
}

.footer .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

.footer .bottom div {
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 968px) {
  .footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .footer-logo {
    width: 260px;
  }
}

@media (max-width: 640px) {
  .footer {
    padding: 40px 0 20px;
  }
  
  .footer-cols {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
  }
  
  .footer-logo {
    width: 220px;
  }
  
  .footer .bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* 4 Steps Section */
.steps-section.comm-section {
  padding: 50px 0;
  position: relative;
  background: #f5f7fa;
}

.sec-title {
  font-size: 42px;
  font-weight: 400;
  text-transform: capitalize;
  color: #231f20;
}

.text-center {
  text-align: center !important;
}

.highlighter {
  font-weight: 600;
  position: relative;
}

.highlighter::after {
  content: "";
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 10"><path d="M0,5 Q20,0 40,5 T80,5" stroke="%230295DA" fill="none" stroke-width="2"/></svg>') no-repeat;
  background-size: 90% 100%;
  display: block;
  width: 100%;
  height: 15.5px;
  position: absolute;
  bottom: -10px;
  left: 10px;
}

.comm-para p {
  font-size: 18px;
  color: #4d5566;
  line-height: 1.6;
}

.steps-section .button {
  font-family: 'Poppins', sans-serif;
  background: #0295DA;
  border: none;
  outline: none;
  border: 1px solid transparent;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: fit-content;
  line-height: 46px;
  padding: 0 24px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  text-decoration: none;
}

.steps-section .button.line {
  background: transparent;
  border: 1px solid #0295DA;
  color: #0295DA;
}

.steps-section .button.line:hover {
  background: #0295DA;
  color: #fff;
}

/* Steps Layout */
.steps-main-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 100px;
  position: relative;
  margin-top: 60px;
}

.steps-card-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.steps-card {
  padding: 24px 40px 40px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 28px;
  position: sticky;
  border-radius: 24px;
  border: 2px solid transparent;
  background: linear-gradient(#e8edf4, #e8edf4) padding-box,
              linear-gradient(252deg, #c6d3e3, #e8edf4, #dde5ee) border-box;
  transition: all 0.3s ease;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.04);
}

.steps-card:nth-child(1) { top: 80px; z-index: 1; }
.steps-card:nth-child(2) { top: 150px; z-index: 2; }
.steps-card:nth-child(3) { top: 220px; z-index: 3; }
.steps-card:nth-child(4) { top: 290px; z-index: 4; }

.steps-card:hover {
  transform: translateY(-5px);
  border-color: #0295DA;
}

.steps-card h4.comm-card-hdn {
  font-size: 28px;
  font-weight: 600;
  text-transform: capitalize;
  margin: 0;
  margin-block: 0;
  margin-bottom: 33px;
  padding: 0;
  color: #231f20;
  line-height: 1;
}

.numbers {
  font-size: 46px;
  font-weight: 300;
  line-height: 0.9;
  color: #0295DA;
}

.card-content-wrap {
  flex: 1;
}

.card-btn {
  margin-top: 73px;
}

.steps-img-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 605px;
  width: 100%;
}

.steps-img {
  width: 100%;
  height: 340px;
  position: sticky;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.steps-img-1 { top: 80px; z-index: 1; }
.steps-img-2 { top: 150px; z-index: 2; }
.steps-img-3 { top: 220px; z-index: 3; }
.steps-img-4 { top: 290px; z-index: 4; }

.steps-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.steps-img:hover img {
  transform: scale(1.05);
}

/* Responsive */
@media all and (max-width: 1440px) {
  .steps-card .comm-card-hdn {
    font-size: 26px;
  }
  .numbers {
    font-size: 42px;
  }
  .card-btn {
    margin-top: 40px;
  }
}

@media all and (max-width: 1280px) {
  .steps-card .comm-card-hdn {
    font-size: 22px;
  }
  .steps-main-wrapper {
    margin-top: 40px;
  }
  .steps-card {
    padding: 30px;
  }
}

@media all and (max-width: 1024px) {
  .steps-main-wrapper {
    gap: 20px;
  }
  .steps-img {
    height: 280px;
  }
}

@media all and (max-width: 834px) {
  .steps-main-wrapper {
    flex-direction: column-reverse;
    margin-top: 20px;
  }
  .steps-card {
    position: relative;
    top: 0 !important;
  }
  .steps-img-wrap {
    max-width: 100%;
  }
  .steps-img {
    position: relative;
    top: 0 !important;
    height: 220px;
  }
  .sec-title {
    font-size: 32px;
  }
}

@media all and (max-width: 480px) {
  .steps-img {
    height: 180px;
  }
  .steps-card {
    padding: 30px 20px;
    gap: 20px;
  }
  .steps-card .card-btn {
    margin-top: 20px;
  }
  .steps-card .comm-card-hdn {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .numbers {
    font-size: 36px;
  }
  .sec-title {
    font-size: 26px;
  }
  .highlighter::after {
    height: 10.5px;
    bottom: -6px;
  }
}

@media all and (max-width: 393px) {
  .steps-img {
    max-height: 280px;
  }
  .steps-card-wrap {
    gap: 16px;
  }
}
/* Success Story Tab Section */
.success-story-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  background: #ffffff;
  overflow: hidden;
}
 /* Main card container */
        .visa-card {
            max-width: 1280px;
            width: 100%;
            /* background: #ffffff;
            border-radius: 2rem; */
           /*  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.02); */
            transition: all 0.2s ease;
            overflow: hidden;
        }

         /* subtle header decoration */
        .card-header {
            background: #ffffff;
            padding: 1.5rem 2rem 0 2rem;
            border-bottom: 1px solid rgba(203, 213, 225, 0.4);
        }

        .card-header h1 {
            font-size: 1.7rem;
            font-weight: 600;
            background: linear-gradient(135deg, #1e293b, #2c3e66);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            letter-spacing: -0.3px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .card-header h1 i {
            background: none;
            color: #3b82f6;
            font-size: 1.8rem;
            background-clip: unset;
            -webkit-background-clip: unset;
        }

         .card-header p {
            color: #475569;
            margin-top: 0.5rem;
            font-size: 0.95rem;
            font-weight: 400;
        }

         /* Tabs navigation */
        .tabs-nav {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.25rem;
            padding: 0 2rem;
            background: #ffffff;
            border-bottom: 1px solid #e9edf2;
        }

        .tab-btn {
            background: transparent;
            border: none;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            padding: 1rem 1.6rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            color: #5b6e8c;
            transition: all 0.2s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            border-bottom: 3px solid transparent;
            margin-bottom: -1px;
            background-color: transparent;
            border-radius: 0;
            letter-spacing: -0.2px;
        }

        .tab-btn i {
            font-size: 1.1rem;
            transition: transform 0.2s ease;
        }

        .tab-btn:hover {
            color: #1e40af;
            background: #f8fafc;
            border-bottom-color: #b9d0f0;
        }

        .tab-btn.active {
            color: #2563eb;
            border-bottom-color: #2563eb;
            background: #ffffff;
        }

        .tab-btn.active i {
            transform: translateY(-1px);
            color: #2563eb;
        }

        /* Tab Button Work Permit */

        .tab-btn.work {
            background: transparent;
            border: none;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            padding: 1rem 1.6rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            color: #5b6e8c;
            transition: all 0.2s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            border-bottom: 3px solid transparent;
            margin-bottom: -1px;
            background-color: transparent;
            border-radius: 0;
            letter-spacing: -0.2px;
        }

        .tab-btn.work i {
            font-size: 1.1rem;
            transition: transform 0.2s ease;
        }

        .tab-btn.work:hover {
            color: #34d399;
            background: #f8fafc;
            border-bottom-color: #34d399;
        }

        .tab-btn.work.active {
            color: #059669;
            border-bottom-color: #059669;
            background: #ffffff;
        }

        .tab-btn.work.active i {
            transform: translateY(-1px);
            color: #059669;
        }

        /* Tab Button Travel */

        .tab-btn.travel {
            background: transparent;
            border: none;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            padding: 1rem 1.6rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            color: #5b6e8c;
            transition: all 0.2s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            border-bottom: 3px solid transparent;
            margin-bottom: -1px;
            background-color: transparent;
            border-radius: 0;
            letter-spacing: -0.2px;
        }

        .tab-btn.travel i {
            font-size: 1.1rem;
            transition: transform 0.2s ease;
        }

        .tab-btn.travel:hover {
            color: #a78bfa;
            background: #f8fafc;
            border-bottom-color: #a78bfa;
        }

        .tab-btn.travel.active {
            color: #7c3aed;
            border-bottom-color: #7c3aed;
            background: #ffffff;
        }

        .tab-btn.travel.active i {
            transform: translateY(-1px);
            color: #7c3aed;
        }


        /* Content panel */
        .tabs-content {
            padding: 2rem 2rem 2.2rem 2rem;
            background: #ffffff;
        }

        .tab-pane {
            display: none;
            animation: fadeSlideUp 0.3s ease forwards;
        }

        .tab-pane.active {
            display: block;
        }

        /* â”€â”€ Success Card Grid â”€â”€ */
        .success-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
        }

        /* Horizontal card: photo left, info right */
        .success-card {
            position: relative;
            display: flex;
            flex-direction: row;
            align-items: stretch;
            border-radius: 20px;
            overflow: hidden;
            background:
              linear-gradient(135deg, rgba(224,242,254,.55) 0%, rgba(241,245,249,.60) 40%, #ffffff 100%);
            border: 1px solid rgba(148,197,233,.28);
            box-shadow: 0 6px 28px rgba(1,149,216,.10), 0 1.5px 6px rgba(0,0,0,.04);
            transition: transform .28s ease, box-shadow .28s ease;
            min-height: 180px;
        }

        .success-card::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
              radial-gradient(ellipse 55% 80% at 0% 80%, rgba(1,149,216,.08), transparent 70%),
              linear-gradient(160deg, rgba(255,255,255,0) 50%, rgba(255,255,255,.55) 100%);
            pointer-events: none;
            z-index: 1;
        }

        .success-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 14px 38px rgba(1,149,216,.16), 0 2px 8px rgba(0,0,0,.06);
        }

        /* Left: student image */
        .success-card-img {
            position: relative;
            z-index: 2;
            flex: 0 0 42%;
            max-width: 42%;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            overflow: hidden;
            padding-top: 10px;
        }

        .success-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
            display: block;
        }

        /* Diagonal ribbon badge */
        .success-badge {
            position: absolute;
            top: 14px;
            right: -38px;
            z-index: 10;
            width: 130px;
            padding: 4px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 9px;
            font-weight: 700;
            letter-spacing: .07em;
            color: #ffffff;
            transform: rotate(45deg);
            box-shadow: 0 3px 10px rgba(0,0,0,.15);
            white-space: nowrap;
        }

        .success-badge::before,
        .success-badge::after {
            content: "";
            position: absolute;
            bottom: -5px;
            border: 5px solid transparent;
        }

        .success-badge::before {
            left: 0;
        }

        .success-badge::after {
            right: 0;
        }

        .success-badge.admitted::before,
        .success-badge.admitted::after {
            border-top-color: #1d4ed8;
        }

        .success-badge.approved::before,
        .success-badge.approved::after {
            border-top-color: #047857;
        }

        .success-badge.granted::before,
        .success-badge.granted::after {
            border-top-color: #6d28d9;
        }

        .success-badge.admitted {
            background: linear-gradient(135deg, #38bdf8, #2563eb);
        }

        .success-badge.approved {
            background: linear-gradient(135deg, #34d399, #059669);
        }

        .success-badge.granted {
            background: linear-gradient(135deg, #a78bfa, #7c3aed);
        }

        /* â”€â”€ Diagonal Ribbon Badge â”€â”€ */
        .success-card.has-ribbon {
            overflow: hidden;
        }

        .ribbon {
            position: absolute;
            top: 18px;
            right: -34px;
            z-index: 10;
            width: 150px;
            padding: 6px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: .08em;
            color: #ffffff;
            transform: rotate(45deg);
            box-shadow: 0 4px 12px rgba(0,0,0,.18);
        }

        .ribbon::before,
        .ribbon::after {
            content: "";
            position: absolute;
            bottom: -5px;
            border: 5px solid transparent;
        }

        .ribbon::before {
            left: 0;
        }

        .ribbon::after {
            right: 0;
        }

        .ribbon.admitted {
            background: linear-gradient(135deg, #38bdf8, #2563eb);
        }

        .ribbon.admitted::before,
        .ribbon.admitted::after {
            border-top-color: #1d4ed8;
        }

        .ribbon.approved {
            background: linear-gradient(135deg, #34d399, #059669);
        }

        .ribbon.approved::before,
        .ribbon.approved::after {
            border-top-color: #047857;
        }

        .ribbon.granted {
            background: linear-gradient(135deg, #a78bfa, #7c3aed);
        }

        .ribbon.granted::before,
        .ribbon.granted::after {
            border-top-color: #6d28d9;
        }

        /* Right: info panel */
        .success-card-info {
            z-index: 2;
            flex: 1;
            padding: 28px 22px 22px 22px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 10px;
        }

        .success-card-name {
            margin: 0;
            font-size: 20px;
            font-weight: 800;
            color: #0f172a;
            line-height: 1.2;
        }

        .success-card-old-uni {
            margin: 0;
            font-size: 11.5px;
            color: #94a3b8;
            font-weight: 500;
            font-style: italic;
            line-height: 1.3;
        }

        .success-card-uni {
            margin: 0;
            font-size: 14px;
            color: #334155;
            display: flex;
            align-items: center;
            gap: 8px;
            line-height: 1.35;
        }

        .success-card-uni i {
            color: #0195D8;
            font-size: 16px;
            flex-shrink: 0;
        }

        .success-card-score {
            margin-top: 6px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #dbeafe, #bfdbfe);
            padding: 8px 20px;
            border-radius: 999px;
            font-size: 14px;
            font-weight: 600;
            color: #1e40af;
            width: fit-content;
        }

        .success-card-score strong {
            font-size: 18px;
            font-weight: 800;
            color: #1e3a8a;
        }

        .success-card-score i {
            color: #0195D8;
            font-size: 15px;
        }

        /* â”€â”€ Responsive â”€â”€ */
        @media (max-width: 1100px) {
            .success-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 18px;
            }
        }

        @media (max-width: 680px) {
            .success-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .success-card {
                min-height: 160px;
            }

            .success-card-name {
                font-size: 18px;
            }

            .success-card-uni {
                font-size: 13px;
            }

            .success-card-score {
                font-size: 13px;
                padding: 7px 16px;
            }
        }

        @keyframes fadeSlideUp {
            0% {
                opacity: 0;
                transform: translateY(8px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
         /* Content styling */
        .visa-heading {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 1.2rem;
            border-left: 4px solid #3b82f6;
            padding-left: 1rem;
        }

        .visa-heading i {
            font-size: 1.8rem;
            color: #3b82f6;
            background: #eef4ff;
            padding: 8px;
            border-radius: 16px;
        }

        .visa-heading h2 {
            font-size: 1.6rem;
            font-weight: 600;
            color: #0f172a;
            letter-spacing: -0.3px;
        }

        .desc-text {
            color: #334155;
            line-height: 1.5;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
            background: #f8fafc;
            padding: 1rem 1.2rem;
            border-radius: 20px;
            border: 1px solid #ecf3fa;
        }

        .feature-grid {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin: 1.8rem 0 1.5rem;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            background: #ffffff;
            padding: 0.6rem 0.8rem;
            border-radius: 18px;
            transition: background 0.2s;
        }

        .feature-item i {
            font-size: 1.2rem;
            color: #2563eb;
            background: #eef2ff;
            width: 32px;
            height: 32px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            margin-top: 2px;
        }

        .feature-text strong {
            font-weight: 700;
            color: #0f172a;
            display: block;
            margin-bottom: 4px;
        }

        .feature-text span {
            color: #475569;
            font-size: 0.9rem;
            line-height: 1.4;
        }

        .info-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #f1f5f9;
            padding: 0.7rem 1.2rem;
            border-radius: 40px;
            font-size: 0.85rem;
            font-weight: 500;
            color: #1e293b;
            margin-top: 0.5rem;
            border: 1px solid #e2e8f0;
        }

        .info-badge i {
            color: #3b82f6;
            font-size: 0.9rem;
        }

        .action-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #ffffff;
            border: 1px solid #cbd5e1;
            padding: 0.6rem 1.3rem;
            border-radius: 40px;
            font-weight: 500;
            font-size: 0.85rem;
            color: #1e293b;
            cursor: default;
            transition: all 0.2s;
            margin-top: 1rem;
            font-family: 'Inter', sans-serif;
        }

        .action-btn i {
            font-size: 0.85rem;
            color: #3b82f6;
        }

        .action-btn:hover {
            background: #f8fafc;
            border-color: #94a3b8;
            transform: scale(0.98);
        }

        hr {
            margin: 1rem 0;
            border: none;
            height: 1px;
            background: linear-gradient(to right, #e2e8f0, transparent);
        }

        /* responsive touches */
        @media (max-width: 680px) {
            .visa-card {
                border-radius: 1.5rem;
            }
            .tabs-nav {
                padding: 0 1rem;
            }
            .tab-btn {
                padding: 0.8rem 1rem;
                font-size: 0.85rem;
                gap: 6px;
            }
            .tab-btn i {
                font-size: 0.9rem;
            }
            .tabs-content {
                padding: 1.5rem;
            }
            .visa-heading h2 {
                font-size: 1.35rem;
            }
            .card-header {
                padding: 1.2rem 1.5rem 0 1.5rem;
            }
            .feature-item {
                gap: 10px;
            }
        }

        @media (max-width: 480px) {
            .tab-btn {
                flex: 1 0 auto;
                justify-content: center;
            }
            .visa-heading i {
                font-size: 1.4rem;
            }
        }

        /* â”€â”€ CEO Welcome Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ceo-welcome-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #e8f4f8 0%, #f0f4f8 50%, #ffffff 100%);
}

.ceo-welcome-section::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(2,149,218,0.15), transparent 130%);
  border-radius: 50%;
  z-index: 0;
}

.ceo-welcome-section::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(2,149,218,0.10), transparent 100%);
  border-radius: 50%;
  z-index: 0;
}

.ceo-welcome-card {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: stretch;
  gap: 0;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
}

.ceo-welcome-img {
  flex: 0 0 42%;
  max-width: 42%;
  position: relative;
  overflow: hidden;
  /* min-height: 420px; */
}

.ceo-welcome-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.ceo-welcome-content {
  flex: 1;
  padding: 32px 50px 32px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ceo-welcome-heading {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin: 0 0 24px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.ceo-welcome-sub {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 12px;
}

.ceo-welcome-text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  margin: 0 0 28px;
}

.ceo-welcome-author {
  border-top: 2px solid rgba(2,149,218,0.2);
  padding-top: 16px;
}

.ceo-welcome-author strong {
  display: block;
  font-family: 'Dancing Script', cursive;
  font-size: 25px;
  font-weight: 700;
  color: var(--text);
}

.ceo-welcome-author span {
  display: block;
  font-size: 16px;
  color: var(--muted-2);
  margin-top: 2px;
}

@media (max-width: 768px) {
  .ceo-welcome-card {
    flex-direction: column;
    border-radius: 20px;
  }

  .ceo-welcome-img {
    flex: 0 0 auto;
    max-width: 100%;
    min-height: 300px;
  }

  .ceo-welcome-content {
    padding: 30px 24px;
  }
}

/* â”€â”€ Team V2 Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.team-v2-section {
  background: radial-gradient(ellipse at center, #0a7bbf 0%, #065a8c 45%, #03385c 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.team-v2-section::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255,255,255,0.06), transparent 70%);
  pointer-events: none;
}

.team-v2-header {
  text-align: center;
  margin-bottom: 50px;
}

.team-v2-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}

.team-v2-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

.team-v2-title .accent {
  color: #5dc8f7;
}

.team-v2-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.team-v2-card {
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.5s ease, box-shadow 0.3s ease, border-color 0.3s ease, opacity 0.5s ease;
  display: none;
  opacity: 0;
  transform: translateX(40px);
}

.team-v2-card.visible {
  display: block;
  animation: teamSlideIn 0.5s ease forwards;
}

@keyframes teamSlideIn {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.team-v2-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  border-color: rgba(255,255,255,0.25);
}

.team-v2-img {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
}

.team-v2-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
}

.team-v2-card:hover .team-v2-img img {
  transform: scale(1.05);
}

.team-v2-info {
  padding: 20px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.team-v2-info h3 {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4px;
}

.team-v2-info span {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

/* Dot Navigation */
.team-v2-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.team-v2-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: 2px solid rgba(255,255,255,0.15);
  cursor: pointer;
  transition: all 0.3s ease;
}

.team-v2-dot:hover {
  background: rgba(255,255,255,0.45);
}

.team-v2-dot.active {
  background: #5dc8f7;
  border-color: #5dc8f7;
  width: 32px;
  border-radius: 999px;
}

/* Responsive */
@media (max-width: 980px) {
  .team-v2-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 520px) {
  .team-v2-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .team-v2-img {
    height: 250px;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CONTACT PAGE STYLES
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Contact Hero */
.contact-hero {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('/assets/contact/team4.webp') center top / cover no-repeat;
  /* cover à¦¯à§‹à¦— à¦•à¦°à§à¦¨ â€” à¦à¦Ÿà¦¾ à¦¨à¦¾ à¦¥à¦¾à¦•à¦²à§‡ parallax à¦•à¦¾à¦œ à¦•à¦°à§‡ à¦¨à¦¾ */
  padding: 100px 20px 60px;
  will-change: background-position; /* performance boost */
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(2, 150, 218, 0.695), rgba(0, 60, 100, 0.788));
  z-index: 1; /* à¦à¦Ÿà¦¾ à¦¯à§‹à¦— à¦•à¦°à§à¦¨ */
}

.contact-hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.contact-hero-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
}

.contact-hero-title .accent {
  color: #5dc8f7;
}

.contact-hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin: 0;
}

/* Office Cards Section */
.contact-offices {
  padding: 60px 20px;
  background: linear-gradient(180deg, #e8f4fc 0%, #f8fafc 100%);
  margin-top: -40px;
  position: relative;
  z-index: 3;
}

.offices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.office-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 32px 20px 28px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.office-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.office-flag {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 22px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

.office-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #fff;
  font-size: 26px;
}

.office-icon.blue {
  background: linear-gradient(135deg, #0295DA, #0175b3);
}

.office-icon.red {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.office-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
  margin: 18px 0;
}

.office-title {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.3;
}

.office-subtitle {
  font-size: 14px;
  color: #64748b;
  margin: 2px 0 14px;
  font-weight: 500;
}

.office-company {
  font-size: 13px;
  font-weight: 700;
  color: #334155;
  margin: 6px 0 10px;
  letter-spacing: 0.02em;
}

.office-address {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
  margin: 0 0 18px;
}

.office-phones {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.office-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #0295DA;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.office-phone:hover {
  color: #0175b3;
}

.office-phone i {
  font-size: 12px;
}

/* Map Tabs Section */
.contact-map-section {
  padding: 50px 20px 60px;
  background: #fff;
}

.map-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 30px;
}

.map-tab-btn {
  background: transparent;
  border: none;
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
  padding: 10px 28px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.25s ease;
}

.map-tab-btn:hover {
  color: #0295DA;
}

.map-tab-btn.active {
  color: #0295DA;
  border-bottom-color: #0295DA;
}

.map-pane {
  display: none;
}

.map-pane.active {
  display: block;
}

.map-container {
  background: linear-gradient(135deg, #e0f2fe, #f1f5f9);
  border-radius: 20px;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* Contact Form Section */
.contact-form-section {
  padding: 60px 20px;
  background: #f8fafc;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}

.contact-form-image {
  border-radius: 20px;
  overflow: hidden;
  min-height: 400px;
}

.contact-form-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-form-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 8px;
}

.form-field select {
  width: 100%;
  padding: 14px 16px;
  font-size: 14px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
  color: #64748b;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.form-field select:focus {
  outline: none;
  border-color: #0295DA;
}

.contact-submit-btn {
  background: #1a1a1a;
  color: #fff;
  border: none;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.25s ease;
  margin-top: 10px;
}

.contact-submit-btn:hover {
  background: #333;
}

/* Contact Page Responsive */
@media (max-width: 1100px) {
  .offices-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    min-height: 220px;
    padding: 80px 20px 50px;
  }

  .contact-offices {
    padding: 40px 16px;
  }

  .offices-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .office-card {
    padding: 24px 14px 22px;
  }

  .office-icon {
    width: 52px;
    height: 52px;
    font-size: 22px;
    border-radius: 12px;
    margin-bottom: 14px;
  }

  .office-flag {
    top: 12px;
    right: 12px;
    width: 26px;
    height: 18px;
  }

  .office-title {
    font-size: 15px;
  }

  .office-subtitle {
    font-size: 12px;
  }

  .office-divider {
    margin: 14px 0;
  }

  .office-address {
    font-size: 12px;
    margin-bottom: 14px;
  }

  .office-phone {
    font-size: 12px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-form-image {
    min-height: 280px;
  }

  .map-tabs-nav {
    gap: 4px;
  }

  .map-tab-btn {
    padding: 8px 18px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .offices-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .office-card {
    padding: 28px 20px 24px;
  }

  .office-icon {
    width: 58px;
    height: 58px;
    font-size: 24px;
    margin-bottom: 16px;
  }

  .office-flag {
    top: 14px;
    right: 14px;
    width: 30px;
    height: 20px;
  }

  .office-title {
    font-size: 17px;
  }

  .office-address {
    font-size: 13px;
  }

  .office-phone {
    font-size: 14px;
  }
}

/* ===== Google Reviews Section ===== */
.google-reviews-section {
  padding: 100px 0 80px;
  background: radial-gradient(ellipse at center, #1a3a5c 0%, #0d2137 50%, #0a1628 100%);
  color: #fff;
}

.reviews-header {
  text-align: center;
  margin-bottom: 40px;
}

.reviews-header .destinations-label {
  color: #0295DA;
}

.reviews-title {
  color: #fff !important;
}

.reviews-subtext {
  color: rgba(255, 255, 255, 0.55);
  font-size: 16px;
  margin-top: 8px;
}

/* Google Rating Bar */
.google-rating-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 60px;
  padding: 16px 32px;
  margin-bottom: 36px;
}

.google-rating-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.google-rating-score {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
}

.google-rating-stars {
  display: flex;
  gap: 2px;
  font-size: 18px;
  color: #FFD700;
}

.google-rating-count {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.google-logo-text {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.google-review-btn {
  background: #EA4335;
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.google-review-btn:hover {
  background: #d33426;
  transform: translateY(-1px);
}

/* Reviews Carousel */
.reviews-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviews-carousel {
  overflow: hidden;
  flex: 1;
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
}

.reviews-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  gap: 0;
}

.review-card {
  flex: 0 0 25%;
  padding: 0 10px;
  box-sizing: border-box;
  position: relative;
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10px;
  right: 10px;
  bottom: 0;
  background: #fff;
  border-radius: 16px;
  z-index: 0;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.review-card:hover::before {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.review-card > * {
  position: relative;
  z-index: 1;
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px 24px 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e8eaed;
}

.review-author-info {
  display: flex;
  flex-direction: column;
}

.review-author-name {
  font-weight: 700;
  font-size: 14px;
  color: #1a1a2e;
}

.review-verified {
  color: #4285F4;
  font-size: 12px;
  margin-left: 4px;
}

.review-date {
  font-size: 12px;
  color: #80868b;
}

.review-google-icon {
  color: #4285F4;
  margin-right: 4px;
  font-size: 11px;
}

.review-stars {
  display: flex;
  gap: 2px;
  font-size: 16px;
  color: #FFD700;
  margin-bottom: 12px;
  padding: 0 24px;
}

.review-text {
  font-size: 14px;
  line-height: 1.6;
  color: #3c4043;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  padding: 0 24px;
}

.review-card:not(:has(.review-card-image)) .review-text {
  -webkit-line-clamp: 16;
  line-clamp: 16;
}

.review-card-image {
  padding: 12px 24px 0;
  border-radius: 10px;
  overflow: hidden;
}

.review-card-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.review-readmore {
  color: #4285F4;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
  display: inline-block;
  transition: color 0.2s;
  padding: 0 24px 24px;
}

.review-readmore:hover {
  color: #1a73e8;
  text-decoration: underline;
}


/* Navigation Buttons */
.reviews-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.reviews-nav-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}

/* Review Modal */
.review-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}

.review-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.review-modal {
  background: #fff;
  border-radius: 16px;
  max-width: 560px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 32px;
  position: relative;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.review-modal-overlay.active .review-modal {
  transform: scale(1) translateY(0);
}

.review-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f3f4;
  border: none;
  color: #5f6368;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.review-modal-close:hover {
  background: #e8eaed;
  color: #202124;
}

.review-modal-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.review-modal-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.review-modal-name {
  font-weight: 700;
  font-size: 16px;
  color: #202124;
  display: block;
}

.review-modal-date {
  font-size: 13px;
  color: #80868b;
}

.review-modal-stars {
  display: flex;
  gap: 3px;
  font-size: 20px;
  color: #FFD700;
  margin-bottom: 16px;
}

.review-modal-image {
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
}

.review-modal-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.review-modal-text {
  font-size: 15px;
  line-height: 1.75;
  color: #3c4043;
  margin: 0;
}

/* Responsive */
@media (max-width: 1200px) {
  .review-card { flex: 0 0 33.333%; }
}

@media (max-width: 900px) {
  .review-card { flex: 0 0 50%; }

  .google-rating-bar {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    border-radius: 20px;
    padding: 20px;
  }

  .google-rating-left {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .google-reviews-section {
    padding: 60px 0 40px;
  }

  .review-card { flex: 0 0 100%; }

  .reviews-nav-btn {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .review-modal {
    padding: 24px;
    max-height: 90vh;
  }

  .google-rating-score {
    font-size: 24px;
  }
}

/* ===== FAQ Section (Country Tabs) ===== */
.sa-faq-section {
  background: linear-gradient(135deg, #f8fcff 0%, #ffffff 100%);
  padding: 100px 0;
}

.sa-faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.sa-faq-subtitle {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

/* Country Tabs */
.sa-faq-tabs-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 44px;
}

.sa-faq-tabs {
  display: inline-flex;
  gap: 10px;
  background: #f0f4f8;
  border-radius: 60px;
  padding: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.sa-faq-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
  color: var(--muted);
  letter-spacing: 0.3px;
}

.sa-faq-tab.active {
  background: linear-gradient(135deg, #0295DA, #00b4d8);
  color: #fff;
  box-shadow: 0 4px 12px rgba(2, 149, 218, 0.3);
}

.sa-faq-tab:hover:not(.active) {
  color: #0295DA;
  background: rgba(2, 149, 218, 0.08);
}

.sa-faq-tab-flag {
  width: 22px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
}

/* Content Panels */
.sa-faq-content {
  display: none;
}

.sa-faq-content.active {
  display: block;
}

/* Two-column grid */
.sa-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.sa-faq-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* FAQ Items */
.sa-faq-item {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(2, 149, 218, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.sa-faq-item:hover {
  box-shadow: 0 6px 20px rgba(2, 149, 218, 0.1);
  border-color: rgba(2, 149, 218, 0.2);
}

.sa-faq-item.open {
  border-color: rgba(2, 149, 218, 0.3);
  box-shadow: 0 8px 28px rgba(2, 149, 218, 0.12);
}

/* Question Button */
.sa-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
  transition: color 0.3s ease;
}

.sa-faq-question b {
  font-weight: 700;
}

.sa-faq-question:hover {
  color: #0295DA;
}

.sa-faq-item.open .sa-faq-question {
  color: #0295DA;
}

/* Chevron Icon */
.sa-faq-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: #0295DA;
  transition: transform 0.3s ease;
}

.sa-faq-item.open .sa-faq-icon {
  transform: rotate(180deg);
}

/* Answer Panel */
.sa-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
}

.sa-faq-item.open .sa-faq-answer {
  max-height: 800px;
  padding: 0 24px 20px;
}

.sa-faq-answer-content p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 10px;
}

.sa-faq-answer-content p:last-child {
  margin-bottom: 0;
}

.sa-faq-answer-content ul,
.sa-faq-answer-content ol {
  padding-left: 20px;
  margin-bottom: 10px;
}

.sa-faq-answer-content li {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 4px;
}

.sa-faq-answer-content li strong {
  color: var(--text);
}

/* FAQ CTA */
.sa-faq-cta {
  text-align: center;
  margin-top: 50px;
  padding: 40px;
  background: linear-gradient(135deg, #0295DA, #00b4d8);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(2, 149, 218, 0.2);
}

.sa-faq-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 600;
}

.sa-faq-cta .big-btn {
  display: inline-block;
  padding: 14px 36px;
  background: #fff;
  color: #0295DA;
  font-weight: 700;
  font-size: 16px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.sa-faq-cta .big-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 900px) {
  .sa-faq-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sa-faq-section {
    padding: 70px 0;
  }

  .sa-faq-tabs {
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 16px;
  }
}

@media (max-width: 600px) {
  .sa-faq-section {
    padding: 50px 0;
  }

  .sa-faq-question {
    font-size: 14px;
    padding: 16px 18px;
  }

  .sa-faq-answer {
    padding: 0 18px;
  }

  .sa-faq-item.open .sa-faq-answer {
    padding: 0 18px 16px;
  }

  .sa-faq-tab {
    padding: 8px 16px;
    font-size: 13px;
  }

  .sa-faq-cta {
    padding: 30px 20px;
  }

  .sa-faq-cta p {
    font-size: 16px;
  }
}

/* ===== Consultation Modal ===== */
.saa-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.6);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.saa-modal-overlay.saa-modal-active {
  opacity: 1;
}

.saa-modal-card {
  background: #ffffff;
  border-radius: 16px;
  max-width: 520px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  transform: translateY(30px);
  transition: transform 0.3s ease;
}

.saa-modal-active .saa-modal-card {
  transform: translateY(0);
}

.saa-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: #f5f5f5;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 20px;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.2s ease;
  z-index: 1;
}

.saa-modal-close:hover {
  background: #e0e0e0;
}

.saa-modal-header {
  margin-bottom: 24px;
}

.saa-modal-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.saa-modal-subtitle {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

.saa-modal-form {
  display: flex;
  flex-direction: column;
}

.saa-modal-group {
  margin-bottom: 18px;
}

.saa-modal-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.saa-modal-req {
  color: #e53e3e;
}

.saa-modal-input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  color: #1a1a1a;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}

.saa-modal-input:focus {
  border-color: #0ea5e9;
  outline: none;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.saa-modal-input::placeholder {
  color: #999;
}

select.saa-modal-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.saa-modal-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.saa-modal-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.4);
}

.saa-modal-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.saa-modal-note {
  font-size: 12px;
  color: #888;
  text-align: center;
  margin-top: 12px;
  margin-bottom: 0;
}

/* Success State */
.saa-modal-success {
  text-align: center;
  padding: 20px 0;
}

.saa-modal-check {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.saa-modal-success .saa-modal-title {
  text-align: center;
}

.saa-modal-success .saa-modal-subtitle {
  text-align: center;
  margin-bottom: 24px;
}

/* Date of Birth Row */
.saa-modal-dob-row {
  display: flex;
  gap: 8px;
}

.saa-modal-dob-day {
  flex: 0 0 25%;
  min-width: 0;
}

.saa-modal-dob-month {
  flex: 0 0 calc(40% - 4px);
  min-width: 0;
}

.saa-modal-dob-year {
  flex: 1;
  min-width: 0;
}

/* Radio Group */
.saa-modal-radio-group {
  display: flex;
  gap: 24px;
  padding-top: 4px;
}

.saa-modal-radio-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
  cursor: pointer;
}

.saa-modal-radio {
  width: 18px;
  height: 18px;
  accent-color: #0ea5e9;
  cursor: pointer;
  margin: 0;
}

/* Conditional Sections */
.saa-modal-conditional {
  overflow: hidden;
  transition: max-height 0.25s ease, opacity 0.2s ease, margin 0.25s ease;
}

.saa-modal-conditional.saa-modal-cond-visible {
  animation: saaSlideDown 0.25s ease forwards;
}

@keyframes saaSlideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* MOI Confirmation Block */
.saa-modal-moi-confirm {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #ecfdf5;
  border: 1px solid #d1fae5;
  border-radius: 8px;
  font-size: 14px;
  color: #065f46;
  font-weight: 500;
  margin-bottom: 18px;
}

/* Responsive */
@media (max-width: 600px) {
  .saa-modal-card {
    padding: 24px 20px;
  }

  .saa-modal-title {
    font-size: 20px;
  }

  .saa-modal-input {
    padding: 11px 12px;
  }

  select.saa-modal-input {
    padding-right: 32px;
    background-position: right 12px center;
  }
}

@media (max-width: 480px) {
  .saa-modal-dob-row {
    gap: 6px;
  }
}