/* ═══════════════════════════════════════════════════════════
   EUROPEAN CONCEPT OVERSEAS - MAIN STYLESHEET
   Primary Brand Color: #199DB5
   ═══════════════════════════════════════════════════════════ */

/* ─────── CSS VARIABLES ─────── */
:root{
  --primary:#199DB5;
  --primary-dark:#178ba3;
  --primary-light:#e6f7fa;
  --white:#fff;
  --text:#0f1e28;
  --muted:#64748b;
  --border:#e5e7eb;
}

/* ─────── RESET & BASE ─────── */
*{box-sizing:border-box;margin:0;padding:0}
body{font-family:"Plus Jakarta Sans",sans-serif;background:#fff;color:#0f1e28;line-height:1.6}
a{text-decoration:none}
img{max-width:100%;display:block}

/* ─────── TOPBAR ─────── */
.topbar{
  background:#0B1C39;
  color:#fff;
}
.topbar-container{
  max-width:1400px;
  margin:0 auto;
  padding:0 5%;
}
.topbar-mobile{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:space-between;
  min-height:68px;
  padding:4px 0;
  gap:4px;
  border-bottom:1px solid rgba(255,255,255,.1);
  margin-bottom:4px;
}
.topbar-mobile-left{
  display:flex;
  align-items:center;
  gap:12px;
  padding-left:4px;
}
.topbar-mobile-right{
  display:flex;
  align-items:center;
  gap:8px;
  color:rgba(203,213,225,.9);
  font-size:12px;
  font-weight:500;
  padding-right:4px;
  cursor:pointer;
  transition:color .2s;
}
.topbar-mobile-right:hover{
  color:#fff;
}
.social-link{
  color:rgba(255,255,255,.8);
  transition:color .2s;
}
.social-link:hover{
  color:#199DB5;
}
.social-icon{
  width:14px;
  height:14px;
}
.contact-icon{
  width:14px;
  height:14px;
  color:#199DB5;
  flex-shrink:0;
}

.topbar-desktop{
  display:none;
  align-items:center;
  justify-content:space-between;
  min-height:48px;
}
.topbar-desktop-left{
  display:flex;
  align-items:center;
  gap:24px;
}
.social-link-desktop{
  color:rgba(255,255,255,.8);
  transition:color .2s;
}
.social-link-desktop:hover{
  color:#199DB5;
}
.social-icon-desktop{
  width:16px;
  height:16px;
}
.topbar-desktop-right{
  display:flex;
  align-items:center;
  gap:8px;
}
.topbar-contact-group{
  display:flex;
  align-items:center;
  gap:16px;
  font-size:12px;
  font-weight:500;
  color:rgba(203,213,225,.9);
}
.topbar-email,
.topbar-location{
  display:flex;
  align-items:center;
  gap:8px;
  cursor:pointer;
  transition:color .2s;
}
.topbar-email:hover,
.topbar-location:hover{
  color:#fff;
}
.contact-icon-desktop{
  width:16px;
  height:16px;
  color:#199DB5;
  flex-shrink:0;
}
.topbar-location{
  margin-left:24px;
  max-width:200px;
}
.topbar-location span{
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.topbar-phone-btn{
  background:#199DB5;
  color:#fff;
  padding:6px 12px;
  display:flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  font-weight:700;
  box-shadow:0 4px 12px rgba(25,157,181,.3);
  border-radius:6px;
  margin-left:24px;
  text-decoration:none;
  flex-shrink:0;
  transition:background .2s;
}
.topbar-phone-btn:hover{
  background:#22b8d4;
}
.phone-icon{
  width:14px;
  height:14px;
}
.topbar-phone-btn span{
  white-space:nowrap;
}

@media (min-width: 768px) {
  .topbar-mobile{display:none}
  .topbar-desktop{display:flex}
  .topbar-phone-btn{
    padding:12px 24px;
    font-size:14px;
  }
  .phone-icon{
    width:20px;
    height:20px;
  }
  .topbar-location{
    max-width:none;
  }
}
@media (min-width: 640px) {
  .topbar-location{
    max-width:none;
  }
}

/* ─────── HEADER ─────── */
.header-main{
  position:sticky;
  top:0;
  z-index:50;
  background:var(--primary-light);
  border-bottom:1px solid rgba(25,157,181,0.1);
  box-shadow:0 4px 24px rgba(15,30,40,0.04);
  transition:box-shadow .2s;
}
.header-container{
  max-width:1500px;
  margin:0 auto;
  padding:0 4%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:78px;
  gap:12px;
}

/* Logo */
.header-logo{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  transition:opacity .2s;
}
.header-logo:hover{
  opacity:.9;
}
.logo-image{
  width:56px;
  height:56px;
  flex-shrink:0;
}
.logo-image img{
  width:100%;
  height:100%;
  object-fit:contain;
}
.logo-text{
  display:flex;
  flex-direction:column;
}
.logo-title{
  font-size:18px;
  font-weight:700;
  line-height:1.2;
  color:#0f1e28;
}
.logo-subtitle{
  font-size:12px;
  font-weight:500;
  letter-spacing:.02em;
  color:#64748b;
}

/* Navigation */
.header-nav{
  display:none;
  align-items:center;
  gap:4px;
}
.nav-link{
  padding:8px 10px;
  font-size:13.5px;
  font-weight:500;
  font-family:inherit;
  color:#1e293b;
  text-decoration:none;
  border-radius:8px;
  transition:all .2s ease;
  background:transparent;
  border:none;
  cursor:pointer;
  white-space:nowrap;
}
.nav-link:hover,
.nav-link.active{
  color:#199DB5;
  font-weight:600;
}

/* Dropdown */
.nav-dropdown{
  position:relative;
}
.dropdown-toggle{
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.dropdown-arrow{
  color:#94a3b8;
  transition:color .2s;
  font-size:12px;
}
.dropdown-toggle:hover .dropdown-arrow{
  color:#199DB5;
}
.dropdown-menu{
  position:absolute;
  left:0;
  top:100%;
  padding-top:16px;
  width:260px;
  opacity:0;
  visibility:hidden;
  transform:translateY(8px);
  transition:opacity .2s,transform .2s,visibility .2s;
  pointer-events:none;
  z-index:100;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
  pointer-events:auto;
}
.dropdown-content{
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:16px;
  padding:8px;
  box-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 10px 10px -5px rgba(0,0,0,.04);
}
.dropdown-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 16px;
  font-size:14px;
  font-weight:600;
  color:#1e293b;
  text-decoration:none;
  border-radius:12px;
  transition:background .2s,color .2s;
}
.dropdown-item:hover{
  background:#f8fafc;
  color:#199DB5;
}
.item-arrow{
  color:#cbd5e1;
  font-size:16px;
}

/* Wide Dropdown (Services) */
.dropdown-menu-wide{
  width:600px;
  left:50%;
  transform:translateX(-50%) translateY(8px);
}
.nav-dropdown:hover .dropdown-menu-wide,
.nav-dropdown:focus-within .dropdown-menu-wide{
  transform:translateX(-50%) translateY(0);
}
.dropdown-menu-wide .dropdown-content{
  padding:24px;
}
.dropdown-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}
.dropdown-column{
  display:flex;
  flex-direction:column;
  gap:2px;
}
.dropdown-heading{
  font-size:11px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:#0f1e28;
  margin-bottom:12px;
  padding-bottom:10px;
  border-bottom:2px solid #e2e8f0;
}
.dropdown-item-small{
  padding:10px 12px;
  font-size:13.5px;
  font-weight:500;
  color:#475569;
  text-decoration:none;
  border-radius:8px;
  transition:all .2s;
  position:relative;
  padding-left:28px;
}
.dropdown-item-small::before{
  content:'→';
  position:absolute;
  left:10px;
  color:#cbd5e1;
  font-size:14px;
  transition:all .2s;
  opacity:0;
  transform:translateX(-4px);
}
.dropdown-item-small:hover{
  background:#f1f5f9;
  color:#199DB5;
  padding-left:28px;
  transform:translateX(2px);
}
.dropdown-item-small:hover::before{
  opacity:1;
  transform:translateX(0);
  color:#199DB5;
}

/* Header Actions */
.header-actions{
  display:flex;
  align-items:center;
  gap:12px;
}
.header-cta{
  display:none;
  height:44px;
  align-items:center;
  justify-content:center;
  padding:0 24px;
  background:#199DB5;
  color:#fff;
  font-size:14px;
  font-weight:700;
  letter-spacing:.02em;
  border-radius:12px;
  border:2px solid rgba(255,255,255,.15);
  box-shadow:0 10px 15px -3px rgba(25,157,181,.3);
  text-decoration:none;
  transition:transform .2s,background .2s;
}
.header-cta:hover{
  transform:translateY(-1px);
  background:#22b8d4;
}
.mobile-menu-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:12px;
  color:#0f1e28;
  font-size:20px;
  box-shadow:0 1px 2px rgba(0,0,0,.05);
  cursor:pointer;
  transition:background .2s;
}
.mobile-menu-btn:hover{
  background:#f8fafc;
}

/* Mobile Menu */
.mobile-menu{
  display:none;
  border-top:1px solid #e2e8f0;
  background:#fff;
}
.mobile-menu-container{
  max-width:1400px;
  margin:0 auto;
  padding:20px 5%;
  display:grid;
  gap:12px;
}
.mobile-menu-link{
  padding:12px 16px;
  font-size:14px;
  font-weight:600;
  color:#0f1e28;
  text-decoration:none;
  border-radius:12px;
  transition:background .2s,color .2s;
}
.mobile-menu-link:hover{
  background:#f8fafc;
}
.mobile-menu-link.active{
  background:#f1f5f9;
  color:#199DB5;
}
.mobile-menu-toggle{
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:100%;
  padding:12px 16px;
  font-size:14px;
  font-weight:600;
  color:#0f1e28;
  background:transparent;
  border:none;
  border-radius:12px;
  cursor:pointer;
  transition:background .2s;
}
.mobile-menu-toggle:hover{
  background:#f8fafc;
}
.toggle-icon{
  color:#94a3b8;
  font-size:18px;
}
.mobile-menu-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:100%;
  height:48px;
  margin-top:8px;
  padding:0 32px;
  background:#199DB5;
  color:#fff;
  font-size:14px;
  font-weight:700;
  letter-spacing:.02em;
  border-radius:12px;
  border:2px solid rgba(255,255,255,.15);
  box-shadow:0 10px 15px -3px rgba(25,157,181,.3);
  text-decoration:none;
  transition:transform .2s,background .2s;
}
.mobile-menu-cta:hover{
  transform:translateY(-1px);
  background:#22b8d4;
}

@media (min-width: 1024px) {
  .header-nav{display:flex}
  .header-cta{display:inline-flex}
  .mobile-menu-btn{display:none}
}


/* ═══════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════ */
.hero{
  min-height:auto;display:grid;grid-template-columns:1fr 1fr;
  align-items:center;padding:32px 5% 60px;gap:64px;
  background:linear-gradient(to bottom, #f8fafc 0%, var(--white) 100%);position:relative;overflow:hidden;
}
.hero-bg-shape{
  position:absolute;top:-120px;right:-120px;width:650px;height:650px;border-radius:50%;
  background:radial-gradient(circle,rgba(25,157,181,0.07) 0%,transparent 70%);pointer-events:none;
}
.hero-bg-shape2{
  position:absolute;bottom:-80px;left:-80px;width:450px;height:450px;border-radius:50%;
  background:radial-gradient(circle,rgba(25,157,181,0.07) 0%,transparent 70%);pointer-events:none;
}
.hero-eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  background:var(--primary-light);border:1px solid rgba(25,157,181,0.2);
  color:var(--primary);padding:7px 16px;border-radius:50px;
  font-size:11px;font-weight:700;letter-spacing:2px;text-transform:uppercase;margin-bottom:22px;
}
.hero-eyebrow::before{content:"";width:7px;height:7px;border-radius:50%;background:var(--primary);display:inline-block}
.hero-h1{
  font-family:"Lora",serif;
  font-size:clamp(40px,4.8vw,70px);font-weight:700;line-height:1.1;
  letter-spacing:-1.5px;color:var(--text);margin-bottom:20px;
}
.hero-h1 em{font-style:italic;color:var(--primary)}
.hero-desc{font-size:16px;line-height:1.82;color:var(--muted);max-width:480px;margin-bottom:34px}
.hero-btns{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:44px}
.btn-primary{
  background:linear-gradient(135deg,var(--primary),var(--primary-dark));
  color:#fff;padding:14px 32px;border-radius:50px;
  font-size:14.5px;font-weight:600;text-decoration:none;
  box-shadow:0 6px 20px rgba(25,157,181,0.32);
  transition:transform .2s,box-shadow .2s;display:inline-flex;align-items:center;gap:8px;
}
.btn-primary:hover{transform:translateY(-3px);box-shadow:0 12px 32px rgba(25,157,181,0.4)}
.btn-ghost{
  border:2px solid var(--border);color:var(--text);padding:14px 28px;border-radius:50px;
  font-size:14.5px;font-weight:500;text-decoration:none;
  transition:border-color .2s,color .2s;display:inline-flex;align-items:center;gap:8px;
}
.btn-ghost:hover{border-color:var(--primary);color:var(--primary)}
.hero-stats{
  display:flex;gap:36px;padding-top:28px;border-top:1px solid var(--border);
}
.h-stat-n{
  font-family:"Lora",serif;font-size:32px;font-weight:700;
  color:var(--primary);line-height:1;
}
.h-stat-l{font-size:11px;color:var(--muted);margin-top:5px;letter-spacing:.4px;text-transform:uppercase}

/* hero mosaic */
.hero-right{position:relative;z-index:2;height:520px}
.himg-main{position:absolute;top:0;left:0;width:66%;height:76%;border-radius:20px;overflow:hidden;box-shadow:0 24px 56px rgba(0,0,0,0.13)}
.himg-main img{width:100%;height:100%;object-fit:cover;transition:transform .5s}
.himg-main:hover img{transform:scale(1.04)}
.himg-b{position:absolute;bottom:0;left:0;width:44%;height:44%;border-radius:16px;overflow:hidden;box-shadow:0 14px 36px rgba(0,0,0,0.11);border:4px solid #fff}
.himg-b img{width:100%;height:100%;object-fit:cover}
.himg-r{position:absolute;top:8%;right:0;width:36%;height:52%;border-radius:16px;overflow:hidden;box-shadow:0 14px 36px rgba(0,0,0,0.11);border:4px solid #fff}
.himg-r img{width:100%;height:100%;object-fit:cover}
.hbadge{
  position:absolute;bottom:11%;right:1%;
  background:#fff;border-radius:16px;
  padding:16px 20px;box-shadow:0 8px 32px rgba(0,0,0,0.12);
  display:flex;align-items:center;gap:12px;
}
.hbadge-icon{
  width:44px;height:44px;border-radius:12px;
  background:var(--primary-light);display:flex;align-items:center;justify-content:center;font-size:20px;
}
.hbadge-n{font-family:"Lora",serif;font-size:24px;font-weight:700;color:var(--primary);line-height:1}
.hbadge-t{font-size:11px;color:var(--muted);margin-top:3px}

/* ── Animations ── */
@keyframes fadeUp{from{opacity:0;transform:translateY(28px)}to{opacity:1;transform:translateY(0)}}
.hero-left>*{animation:fadeUp .8s ease both}
.hero-eyebrow{animation-delay:.1s}
.hero-h1{animation-delay:.22s}
.hero-desc{animation-delay:.38s}
.hero-btns{animation-delay:.52s}
.hero-stats{animation-delay:.66s}
.hero-right{animation:fadeUp .9s .25s ease both}


/* ── Hero Slider ── */
.hero-slider { position: relative; }

.hero-slide {
  display: none;
  animation: fadeUp 0.6s ease both;
}
.hero-slide.active { display: block; }

.hero-dots {
  display: flex;
  gap: 8px;
  margin-top: 28px;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(25,157,181,0.25);
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  padding: 0;
}
.hero-dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

/* ── Responsive ── */
@media(max-width:900px){
  .hero{grid-template-columns:1fr;padding:48px 5% 40px;gap:40px;min-height:auto;text-align:center}
  .hero-right{display:none}
  .hero-eyebrow{margin-left:auto;margin-right:auto}
  .hero-desc{margin-left:auto;margin-right:auto}
  .hero-btns{justify-content:center}
  .hero-dots{display:none !important}
}
@media(max-width:540px){
  .hero-stats{gap:20px}
  .h-stat-n{font-size:24px}
  .hero-btns{flex-direction:column}
  .btn-primary,.btn-ghost{justify-content:center}
}


/* ─────── VISITOR COUNTER BAR ─────── */
.visitor-bar{
  background:linear-gradient(90deg,#06141b 0%,#0d2233 100%);
  padding:14px 5%;
  display:flex;align-items:center;justify-content:space-between;
  border-bottom:1px solid rgba(25,157,181,.15);
  flex-wrap:wrap;gap:12px;
}
.vc-left{display:flex;align-items:center;gap:32px}
.vc-item{display:flex;align-items:center;gap:10px}
.vc-dot{width:8px;height:8px;border-radius:50%;background:#22ff88;box-shadow:0 0 8px #22ff88;animation:vcpulse 2s ease-in-out infinite}
@keyframes vcpulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.6;transform:scale(.85)}}
.vc-label{font-size:12px;color:rgba(255,255,255,.45);letter-spacing:.3px}
.vc-num{font-size:15px;font-weight:700;color:#fff;font-variant-numeric:tabular-nums}
.vc-divider{width:1px;height:24px;background:rgba(255,255,255,.1)}
.vc-right{display:flex;align-items:center;gap:24px}
.vc-stat{text-align:right}
.vc-stat-n{font-size:18px;font-weight:800;color:var(--primary)}
.vc-stat-l{font-size:10px;color:rgba(255,255,255,.35);letter-spacing:.8px;text-transform:uppercase}

/* ─────── MARQUEE ─────── */
.marquee{background:var(--primary);padding:12px 0;overflow:hidden}
.mtrack{display:flex;white-space:nowrap;animation:mq 15s linear infinite}
@keyframes mq{from{transform:translateX(0)}to{transform:translateX(-50%)}}
.mi{color:rgba(255,255,255,.9);font-size:11.5px;font-weight:700;letter-spacing:2.5px;text-transform:uppercase;padding:0 28px;display:inline-flex;align-items:center;gap:10px}
.mi::after{content:"◆";font-size:7px;opacity:.45}

@media(max-width:640px){
  .visitor-bar{justify-content:center}
  .vc-left{gap:12px 24px;flex-wrap:wrap;justify-content:center}
  .vc-left .vc-item:first-child{display:none}
  .vc-left .vc-divider:first-of-type{display:none}
  .vc-right{display:none}
}


/* ═══════════════════════════════════════════════════════════
   SERVICES SECTION
   ═══════════════════════════════════════════════════════════ */
.services{
  background:#f4fafc;
  padding:88px 5%;
}
.sec-split{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  margin-bottom:44px;
  flex-wrap:wrap;
  gap:14px;
}
.stag{
  font-size:11px;
  font-weight:700;
  letter-spacing:3px;
  text-transform:uppercase;
  color:var(--primary);
  margin-bottom:10px;
  display:flex;
  align-items:center;
  gap:8px;
}
.stag::before{
  content:"";
  width:22px;
  height:2px;
  background:var(--primary);
  flex-shrink:0;
}
.sh{
  font-size:clamp(28px,2.8vw,44px);
  font-weight:800;
  line-height:1.15;
  color:var(--text);
}
.sh em{
  font-style:italic;
  color:var(--primary);
  font-weight:300;
}
.btn-out{
  border:1.5px solid var(--border);
  color:var(--text);
  padding:13px 26px;
  border-radius:50px;
  font-size:14px;
  font-weight:500;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:8px;
  transition:border-color .2s,color .2s;
}
.btn-out:hover{
  border-color:var(--primary);
  color:var(--primary);
}
.svc-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.svc{
  background:#fff;
  border-radius:14px;
  padding:30px 24px;
  border:1.5px solid var(--border);
  position:relative;
  overflow:hidden;
  transition:transform .3s,box-shadow .3s,border-color .3s;
}
.svc::after{
  content:"";
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  height:3px;
  background:linear-gradient(90deg,var(--primary),#c23367);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .35s;
}
.svc:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 50px rgba(26,157,181,.1);
  border-color:rgba(26,157,181,.25);
}
.svc:hover::after{
  transform:scaleX(1);
}
.svc-ico{
  width:52px !important;
  height:52px !important;
  flex:0 0 52px !important;
  max-width:52px !important;
  border-radius:14px;
  background:var(--primary-light);
  display:flex !important;
  align-items:center;
  justify-content:center;
  font-size:24px;
  margin-bottom:17px;
  transition:background .25s;
}
.svc:hover .svc-ico{
  background:rgba(26,157,181,.2);
}
.svc-t{
  font-size:16px;
  font-weight:700;
  margin-bottom:9px;
}
.svc-d{
  font-size:13.5px;
  line-height:1.72;
  color:var(--muted);
}
.svc-lnk{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin-top:15px;
  font-size:13px;
  font-weight:700;
  color:var(--primary);
  text-decoration:none;
  transition:gap .2s;
}
.svc-lnk:hover{
  gap:10px;
}

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


/* ═══════════════════════════════════════════════════════════
   SCHOLARSHIPS SECTION
   ═══════════════════════════════════════════════════════════ */
.scholarships{
  padding:80px 5%;
  background:#fff;
}
.sch-head{
  text-align:center;
  margin-bottom:50px;
}
.sch-highlight{
  background:linear-gradient(135deg,#199DB5,#22b8d4);
  color:#fff;
  padding:40px;
  border-radius:20px;
  text-align:center;
  margin-bottom:40px;
  box-shadow:0 12px 32px rgba(25,157,181,.2);
}
.sch-hl-big{
  font-size:56px;
  font-weight:800;
  margin-bottom:8px;
}
.sch-hl-text{
  font-size:18px;
  font-weight:600;
  opacity:.95;
}
.sch-grid{
  display:grid;
  gap:20px;
  margin-bottom:40px;
}
.sch-row{
  background:#f8fafc;
  padding:24px;
  border-radius:16px;
  display:flex;
  align-items:center;
  gap:20px;
  transition:all .3s;
}
.sch-row:hover{
  background:#fff;
  box-shadow:0 8px 24px rgba(25,157,181,.12);
  transform:translateX(4px);
}
.sch-flag{
  width:60px;
  height:60px;
  border-radius:12px;
  overflow:hidden;
  flex-shrink:0;
  box-shadow:0 4px 12px rgba(0,0,0,.1);
}
.sch-flag img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.sch-info{
  flex:1;
}
.sch-country{
  font-size:20px;
  font-weight:700;
  color:#0f1e28;
  margin-bottom:4px;
}
.sch-desc{
  font-size:14px;
  color:#64748b;
}
.sch-types{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
}
.sch-type{
  background:#fff;
  padding:28px;
  border-radius:16px;
  border:2px solid #e5e7eb;
  transition:all .3s;
}
.sch-type:hover{
  border-color:#199DB5;
  box-shadow:0 8px 24px rgba(25,157,181,.12);
  transform:translateY(-4px);
}
.sch-type-ico{
  font-size:36px;
  margin-bottom:12px;
}
.sch-type-title{
  font-size:18px;
  font-weight:700;
  color:#0f1e28;
  margin-bottom:8px;
}
.sch-type-desc{
  font-size:14px;
  color:#64748b;
  line-height:1.6;
}

/* ═══════════════════════════════════════════════════════════
   PROCESS SECTION
   ═══════════════════════════════════════════════════════════ */
.process{
  padding:80px 5%;
  background:linear-gradient(135deg,#0a1628,#0f2847);
  color:#fff;
}
.proc-head{
  text-align:center;
  margin-bottom:60px;
}
.proc-head .stag{
  color:#7dd3e8;
}
.proc-head .sh{
  color:#fff;
}
.proc-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:32px;
  max-width:1200px;
  margin:0 auto;
}
.pstep{
  text-align:center;
}
.pcircle{
  width:100px;
  height:100px;
  border-radius:50%;
  background:rgba(25,157,181,.15);
  border:3px solid #199DB5;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 24px;
  transition:all .3s;
}
.pstep:hover .pcircle{
  background:#199DB5;
  transform:scale(1.1);
}
.pnum{
  font-size:32px;
  font-weight:800;
  color:#199DB5;
  transition:color .3s;
}
.pstep:hover .pnum{
  color:#fff;
}
.pt-title{
  font-size:20px;
  font-weight:700;
  margin-bottom:12px;
}
.pt-desc{
  font-size:14px;
  color:rgba(255,255,255,.8);
  line-height:1.6;
}


/* ═══════════════════════════════════════════════════════════
   COUNTRIES SECTION
   ═══════════════════════════════════════════════════════════ */
.countries{
  padding:80px 5%;
  background:#fff;
}
.countries-head{
  text-align:center;
  margin-bottom:50px;
}
.countries-layout{
  display:grid;
  grid-template-columns:200px 1fr 200px;
  gap:40px;
  max-width:1400px;
  margin:0 auto;
  align-items:start;
}
.country-tabs{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.country-tab{
  padding:16px 20px;
  background:#f8fafc;
  border:2px solid transparent;
  border-radius:12px;
  font-size:15px;
  font-weight:600;
  color:#475569;
  cursor:pointer;
  transition:all .3s;
  text-align:left;
}
.country-tab:hover{
  background:#fff;
  border-color:#e2e8f0;
}
.country-tab.active{
  background:#fff;
  border-color:#199DB5;
  color:#199DB5;
  box-shadow:0 4px 12px rgba(25,157,181,.15);
}
.country-display{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:24px;
}
.country-content{
  display:none;
}
.country-content.active{
  display:block;
}
.country-image-wrapper{
  width:450px;
  height:450px;
  border-radius:50%;
  overflow:hidden;
  box-shadow:0 20px 60px rgba(0,0,0,.15);
  margin:0 auto;
}
.country-image-wrapper img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.country-card{
  background:#fff;
  padding:32px;
  border-radius:20px;
  box-shadow:0 8px 32px rgba(0,0,0,.08);
  max-width:500px;
  position:relative;
}
.country-flag-badge{
  position:absolute;
  top:-20px;
  left:32px;
  width:60px;
  height:60px;
  border-radius:50%;
  overflow:hidden;
  border:4px solid #fff;
  box-shadow:0 4px 12px rgba(0,0,0,.15);
}
.country-flag-badge img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.country-name{
  font-size:28px;
  font-weight:800;
  color:#0f1e28;
  margin-bottom:12px;
  margin-top:20px;
}
.country-desc{
  font-size:15px;
  color:#64748b;
  line-height:1.7;
  margin-bottom:24px;
}
.country-features{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-bottom:24px;
}
.country-feature{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:14px;
  color:#475569;
}
.feature-icon{
  color:#199DB5;
  font-size:18px;
}
.country-cta{
  background:#199DB5;
  color:#fff;
  padding:14px 28px;
  border-radius:50px;
  font-size:14px;
  font-weight:700;
  text-align:center;
  display:block;
  transition:all .3s;
  box-shadow:0 4px 16px rgba(25,157,181,.25);
}
.country-cta:hover{
  background:#22b8d4;
  transform:translateY(-2px);
  box-shadow:0 8px 24px rgba(25,157,181,.35);
}

@media (max-width: 1024px) {
  .countries-layout{
    grid-template-columns:1fr;
    gap:30px;
  }
  .country-tabs{
    flex-direction:row;
    overflow-x:auto;
    padding-bottom:10px;
  }
  .country-tab{
    white-space:nowrap;
  }
  .country-image-wrapper{
    width:350px;
    height:350px;
  }
}


/* ═══════════════════════════════════════════════════════════
   MARQUEE SECTION (Country Cards)
   ═══════════════════════════════════════════════════════════ */
.marquee-section{
  padding:60px 0;
  background:linear-gradient(135deg,#199DB5,#22b8d4);
  overflow:hidden;
  position:relative;
}
.marquee-track{
  display:flex;
  gap:20px;
  animation:marqueeScroll 25s linear infinite;
}
@keyframes marqueeScroll{
  0%{transform:translateX(0)}
  100%{transform:translateX(-50%)}
}
.marquee-track:hover{
  animation-play-state:paused;
}
.marquee-card{
  background:rgba(255,255,255,.15);
  backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,.2);
  border-radius:16px;
  padding:20px 24px;
  display:flex;
  align-items:center;
  gap:16px;
  min-width:220px;
  transition:all .3s;
}
.marquee-card:hover{
  background:rgba(255,255,255,.25);
  transform:translateY(-4px);
}
.marquee-flag{
  width:48px;
  height:48px;
  border-radius:50%;
  overflow:hidden;
  flex-shrink:0;
  box-shadow:0 4px 12px rgba(0,0,0,.2);
}
.marquee-flag img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.marquee-country{
  font-size:18px;
  font-weight:700;
  color:#fff;
}

/* ═══════════════════════════════════════════════════════════
   PARTNERS SECTION
   ═══════════════════════════════════════════════════════════ */
.partners{
  padding:80px 5%;
  background:#f8fafc;
}
.partners-head{
  text-align:center;
  margin-bottom:40px;
}
.filter-tabs{
  display:flex;
  justify-content:center;
  gap:12px;
  margin-bottom:50px;
  flex-wrap:wrap;
}
.filter-tab{
  padding:10px 24px;
  background:#fff;
  border:2px solid #e5e7eb;
  border-radius:50px;
  font-size:14px;
  font-weight:600;
  color:#475569;
  cursor:pointer;
  transition:all .3s;
}
.filter-tab:hover{
  border-color:#199DB5;
  color:#199DB5;
}
.filter-tab.active{
  background:#199DB5;
  border-color:#199DB5;
  color:#fff;
}
.partners-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
  gap:24px;
  margin-bottom:50px;
}
.partner-card{
  background:#fff;
  padding:32px;
  border-radius:16px;
  box-shadow:0 2px 12px rgba(0,0,0,.06);
  text-align:center;
  transition:all .3s;
  display:none;
}
.partner-card.show{
  display:block;
}
.partner-card:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 32px rgba(25,157,181,.15);
}
.partner-logo{
  height:80px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:20px;
}
.partner-logo svg{
  max-width:100%;
  height:auto;
  max-height:80px;
}
.partner-name{
  font-size:18px;
  font-weight:700;
  color:#0f1e28;
  margin-bottom:8px;
}
.partner-location{
  font-size:13px;
  color:#64748b;
  margin-bottom:12px;
}
.partner-badge{
  display:inline-block;
  padding:6px 14px;
  background:rgba(25,157,181,.1);
  color:#199DB5;
  font-size:11px;
  font-weight:700;
  border-radius:50px;
  text-transform:uppercase;
  letter-spacing:.05em;
}
.trust-stats{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:24px;
  max-width:1000px;
  margin:0 auto;
}
.trust-stat{
  text-align:center;
  padding:24px;
}
.trust-num{
  font-size:36px;
  font-weight:800;
  color:#199DB5;
  margin-bottom:8px;
}
.trust-label{
  font-size:14px;
  color:#64748b;
  font-weight:600;
}


/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS SECTION
   ═══════════════════════════════════════════════════════════ */
.testimonials{
  padding:80px 5%;
  background:linear-gradient(135deg,#1e293b,#0f172a);
  color:#fff;
}
.test-head{
  text-align:center;
  margin-bottom:50px;
}
.test-head .stag{
  color:#7dd3e8;
}
.test-head .sh{
  color:#fff;
}
.test-slider{
  max-width:1200px;
  margin:0 auto;
  position:relative;
}
.test-slide{
  display:none;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}
.test-slide.active{
  display:grid;
}
.test-media{
  position:relative;
  border-radius:20px;
  overflow:hidden;
  aspect-ratio:4/3;
  box-shadow:0 20px 60px rgba(0,0,0,.4);
}
.test-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.test-play{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:80px;
  height:80px;
  background:rgba(25,157,181,.9);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:all .3s;
}
.test-play:hover{
  background:#199DB5;
  transform:translate(-50%,-50%) scale(1.1);
}
.test-play::after{
  content:'▶';
  color:#fff;
  font-size:24px;
  margin-left:4px;
}
.test-content{
  padding:20px;
}
.test-quote{
  font-size:20px;
  line-height:1.7;
  color:rgba(255,255,255,.95);
  margin-bottom:24px;
  font-style:italic;
}
.test-author{
  font-size:18px;
  font-weight:700;
  color:#fff;
  margin-bottom:4px;
}
.test-uni{
  font-size:14px;
  color:#7dd3e8;
}
.test-dots{
  display:flex;
  justify-content:center;
  gap:12px;
  margin-top:40px;
}
.test-dot{
  width:12px;
  height:12px;
  border-radius:50%;
  background:rgba(255,255,255,.3);
  border:none;
  cursor:pointer;
  transition:all .3s;
}
.test-dot.active{
  background:#199DB5;
  width:36px;
  border-radius:6px;
}

@media (max-width: 768px) {
  .test-slide{
    grid-template-columns:1fr;
    gap:30px;
  }
}

/* ═══════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════ */
.cta{
  padding:100px 5%;
  background:linear-gradient(135deg,#0a1628,#0f2847);
  text-align:center;
  position:relative;
  overflow:hidden;
}
.cta::before{
  content:'';
  position:absolute;
  top:-50%;
  right:-20%;
  width:600px;
  height:600px;
  background:radial-gradient(circle,rgba(25,157,181,.15),transparent 70%);
  border-radius:50%;
  pointer-events:none;
}
.cta-content{
  position:relative;
  z-index:2;
  max-width:800px;
  margin:0 auto;
}
.cta-h{
  font-size:42px;
  font-weight:800;
  color:#fff;
  margin-bottom:20px;
  line-height:1.2;
}
.cta-p{
  font-size:18px;
  color:rgba(255,255,255,.85);
  margin-bottom:40px;
  line-height:1.7;
}
.cta-btn{
  background:#199DB5;
  color:#fff;
  padding:18px 40px;
  font-size:16px;
  font-weight:700;
  border-radius:50px;
  box-shadow:0 12px 32px rgba(25,157,181,.4);
  transition:all .3s;
  display:inline-block;
}
.cta-btn:hover{
  background:#22b8d4;
  transform:translateY(-4px);
  box-shadow:0 16px 40px rgba(25,157,181,.5);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer{
  background:#0a1628;
  color:rgba(255,255,255,.8);
  padding:60px 5% 30px;
}
.footer-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:40px;
  max-width:1400px;
  margin:0 auto 40px;
}
.footer-col h3{
  color:#fff;
  font-size:18px;
  font-weight:700;
  margin-bottom:20px;
}
.footer-col p{
  font-size:14px;
  line-height:1.7;
  margin-bottom:16px;
}
.footer-col ul{
  list-style:none;
}
.footer-col ul li{
  margin-bottom:12px;
}
.footer-col ul li a{
  color:rgba(255,255,255,.7);
  font-size:14px;
  transition:color .2s;
}
.footer-col ul li a:hover{
  color:#199DB5;
}
.footer-social{
  display:flex;
  gap:12px;
  margin-top:16px;
}
.footer-social a{
  width:40px;
  height:40px;
  background:rgba(255,255,255,.1);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  transition:all .3s;
}
.footer-social a:hover{
  background:#199DB5;
  transform:translateY(-2px);
}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.1);
  padding-top:30px;
  text-align:center;
  font-size:14px;
  color:rgba(255,255,255,.6);
}


/* ═══════════════════════════════════════════════════════════
   FOOTER STYLES
   ═══════════════════════════════════════════════════════════ */
footer{
  background:#0a1628;
  color:rgba(255,255,255,.8);
}
.footer-top{
  max-width:1400px;
  margin:0 auto;
  padding:60px 5% 40px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:40px;
}
.fl{
  display:flex;
  flex-direction:column;
  gap:16px;
}
.fl img{
  width:60px;
  height:60px;
  object-fit:contain;
}
.fl-about{
  font-size:14px;
  line-height:1.7;
  color:rgba(255,255,255,.7);
}
.fl-socials{
  display:flex;
  gap:12px;
}
.fl-s{
  width:40px;
  height:40px;
  background:rgba(255,255,255,.1);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  transition:all .3s;
}
.fl-s:hover{
  background:#199DB5;
  transform:translateY(-2px);
}
.fcol h4{
  color:#fff;
  font-size:18px;
  font-weight:700;
  margin-bottom:20px;
}
.fcol ul{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.fcol ul li a{
  color:rgba(255,255,255,.7);
  font-size:14px;
  transition:color .2s;
  display:flex;
  align-items:center;
  gap:8px;
}
.fcol ul li a:hover{
  color:#199DB5;
}
.fcol ul li a svg{
  flex-shrink:0;
}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.1);
  padding:24px 5%;
  max-width:1400px;
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:16px;
}
.fbot-l{
  font-size:14px;
  color:rgba(255,255,255,.6);
}
.fbot-r{
  display:flex;
  gap:24px;
}
.fbot-r a{
  font-size:14px;
  color:rgba(255,255,255,.6);
  transition:color .2s;
}
.fbot-r a:hover{
  color:#199DB5;
}


/* ═══════════════════════════════════════════════════════════
   SCHOLARSHIP SECTION (ADDITIONAL STYLES)
   ═══════════════════════════════════════════════════════════ */
.scholarship{
  padding:80px 5%;
  background:#fff;
}
.schol-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:40px;
  max-width:1400px;
  margin:0 auto;
}
@media (min-width: 1024px) {
  .schol-grid{
    grid-template-columns:1fr 1fr;
  }
}
.ssub{
  font-size:15px;
  line-height:1.7;
  color:#64748b;
  margin-top:16px;
  margin-bottom:32px;
}
.schol-types{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:16px;
  margin-bottom:24px;
}
.schol-type{
  background:#f8fafc;
  padding:20px;
  border-radius:12px;
  border:1px solid #e5e7eb;
  transition:all .3s;
}
.schol-type:hover{
  border-color:#199DB5;
  box-shadow:0 4px 16px rgba(25,157,181,.1);
}
.st-ico{
  font-size:28px;
  margin-bottom:8px;
}
.st-n{
  font-size:15px;
  font-weight:700;
  color:#0f1e28;
  margin-bottom:4px;
}
.st-d{
  font-size:13px;
  color:#64748b;
  line-height:1.5;
}
.btn-green{
  background:#199DB5;
  color:#fff;
  padding:14px 28px;
  font-size:14px;
  font-weight:700;
  border-radius:50px;
  box-shadow:0 8px 24px rgba(25,157,181,.35);
  transition:all .25s;
  display:inline-block;
}
.btn-green:hover{
  background:#22b8d4;
  transform:translateY(-2px);
  box-shadow:0 12px 32px rgba(25,157,181,.45);
}
.schol-cards{
  display:flex;
  flex-direction:column;
  gap:16px;
}
.schol-hi{
  background:linear-gradient(135deg,#199DB5,#22b8d4);
  color:#fff;
  padding:32px;
  border-radius:16px;
  text-align:center;
  box-shadow:0 12px 32px rgba(25,157,181,.2);
}
.schol-hi-n{
  font-size:56px;
  font-weight:800;
  margin-bottom:8px;
}
.schol-hi-s{
  font-size:15px;
  opacity:.95;
  line-height:1.5;
}
.sc-row{
  background:#f8fafc;
  padding:20px;
  border-radius:12px;
  display:flex;
  align-items:center;
  gap:16px;
  transition:all .3s;
}
.sc-row:hover{
  background:#fff;
  box-shadow:0 8px 24px rgba(25,157,181,.12);
  transform:translateX(4px);
}
.sc-flag{
  width:50px;
  height:50px;
  border-radius:8px;
  overflow:hidden;
  flex-shrink:0;
  box-shadow:0 4px 12px rgba(0,0,0,.1);
}
.sc-flag img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.sc-n{
  font-size:16px;
  font-weight:700;
  color:#0f1e28;
  margin-bottom:2px;
}
.sc-a{
  font-size:13px;
  color:#64748b;
}
.sc-amt{
  margin-left:auto;
  font-size:15px;
  font-weight:700;
  color:#199DB5;
  white-space:nowrap;
}

@media(max-width:768px){
  .scholarship{padding:60px 5%}
  .schol-hi{padding:32px 20px}
  .schol-hi-n{font-size:42px}
  .sc-row{padding:16px;gap:12px}
  .sc-flag{width:46px;height:46px}
  .sc-n{font-size:15px}
  .sc-amt{font-size:14px}
}
@media(max-width:480px){
  .schol-hi-n{font-size:36px}
  .sc-row{flex-wrap:wrap;gap:8px 12px}
  .sc-amt{margin-left:58px;margin-top:-6px;display:block;width:100%}
}


/* ═══════════════════════════════════════════════════════════
   FOOTER STYLES
   ═══════════════════════════════════════════════════════════ */
footer{
  background:#0a1628;
  color:rgba(255,255,255,.8);
}
.footer-top{
  max-width:1400px;
  margin:0 auto;
  padding:60px 5% 40px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:40px;
}
.fl{
  display:flex;
  flex-direction:column;
  gap:16px;
}
.fl img{
  width:60px;
  height:60px;
  object-fit:contain;
}
.fl-about{
  font-size:14px;
  line-height:1.7;
  color:rgba(255,255,255,.7);
}
.fl-socials{
  display:flex;
  gap:12px;
}
.fl-s{
  width:40px;
  height:40px;
  background:rgba(255,255,255,.1);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  transition:all .3s;
}
.fl-s:hover{
  background:#199DB5;
  transform:translateY(-2px);
}
.fcol h4{
  color:#fff;
  font-size:18px;
  font-weight:700;
  margin-bottom:20px;
}
.fcol ul{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.fcol ul li a{
  color:rgba(255,255,255,.7);
  font-size:14px;
  transition:color .2s;
  display:flex;
  align-items:center;
  gap:8px;
}
.fcol ul li a:hover{
  color:#199DB5;
}
.fcol ul li a svg{
  flex-shrink:0;
}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.1);
  padding:24px 5%;
  max-width:1400px;
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:16px;
}
.fbot-l{
  font-size:14px;
  color:rgba(255,255,255,.6);
}
.fbot-r{
  display:flex;
  gap:24px;
}
.fbot-r a{
  font-size:14px;
  color:rgba(255,255,255,.6);
  transition:color .2s;
}
.fbot-r a:hover{
  color:#199DB5;
}

/* Scholarships Section Mobile Responsive */
@media (max-width: 1024px) {
  .schol-grid {
    gap: 40px;
  }
  .schol-types {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .schol-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .schol-types {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .schol-type {
    padding: 16px;
  }
  .sc-row {
    flex-wrap: wrap;
    gap: 12px;
  }
  .sc-amt {
    width: 100%;
    text-align: left;
    padding-left: 48px;
  }
}

@media (max-width: 640px) {
  .scholarship {
    padding: 50px 5%;
  }
  .sh {
    font-size: 32px;
    line-height: 1.2;
  }
  .ssub {
    font-size: 15px;
  }
  .schol-hi {
    padding: 20px;
  }
  .schol-hi-n {
    font-size: 48px;
  }
  .schol-hi-s {
    font-size: 13px;
  }
  .sc-row {
    padding: 14px;
  }
  .sc-flag {
    width: 36px;
    height: 36px;
  }
  .sc-n {
    font-size: 15px;
  }
  .sc-a {
    font-size: 12px;
  }
  .sc-amt {
    font-size: 15px;
    padding-left: 44px;
  }
}

@media (max-width: 480px) {
  .sh {
    font-size: 28px;
  }
  .btn-green, .btn-ghost {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .schol-type {
    padding: 14px;
  }
  .st-ico {
    font-size: 28px;
  }
  .st-n {
    font-size: 15px;
  }
  .st-d {
    font-size: 12px;
  }
}
