:root{
  --primary:#0d4f84;
  --primary-2:#1b6ea8;
  --accent:#2fb4e9;
  --accent-strong:#1aa1d8;
  --dark:#12324b;
  --text:#203243;
  --muted:#62778d;
  --bg:#f4f8fb;
  --white:#ffffff;
  --border:#dce8f2;
  --shadow:0 18px 45px rgba(13,79,132,.10);
  --shadow-soft:0 10px 30px rgba(13,79,132,.07);
  --radius:24px;
  --container:min(1200px,92%);
  --header-offset:86px;
}

*{box-sizing:border-box}

html{
  scroll-behavior:smooth;
  scroll-padding-top:calc(var(--header-offset) + 24px);
}

body{
  margin:0;
  padding-top:var(--header-offset);
  font-family:Arial, Tahoma, sans-serif;
  background:
    radial-gradient(circle at top, rgba(47,180,233,.08), transparent 28%),
    linear-gradient(180deg, #f8fbfd 0%, var(--bg) 38%, #eef5fa 100%);
  color:var(--text);
  line-height:1.9;
  overflow-x:hidden;
}

body.modal-open{
  overflow:hidden;
}

img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button{font:inherit}
iframe,video{display:block}
.container{width:var(--container);margin:auto}

.phone,
.phone a,
.ltr{
  direction:ltr;
  unicode-bidi:embed;
  display:inline-block;
}

.section{
  padding:88px 0;
  overflow:hidden;
}

.section-head{
  text-align:center;
  margin-bottom:34px;
}

.section-head h2{
  margin:0 0 12px;
  font-size:clamp(1.8rem,3vw,2.7rem);
  color:var(--dark);
  line-height:1.2;
}

.section-head p{
  max-width:860px;
  margin:0 auto;
  color:var(--muted);
}

.card{
  background:rgba(255,255,255,.94);
  border:1px solid rgba(220,232,242,.95);
  border-radius:var(--radius);
  box-shadow:var(--shadow-soft);
}

.site-header{
  position:fixed;
  inset:0 0 auto;
  z-index:1000;
  background:rgba(255,255,255,.90);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(220,232,242,.95);
  transition:box-shadow .25s ease, background-color .25s ease;
}

.site-header.is-scrolled{
  background:rgba(255,255,255,.96);
  box-shadow:0 12px 28px rgba(18,50,75,.08);
}

.header-wrap{
  min-height:86px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.logo{
  display:flex;
  align-items:center;
  flex-shrink:0;
}

.logo img{
  width:165px;
  height:auto;
  object-fit:contain;
}

.desktop-nav{
  display:flex;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}

.desktop-nav a{
  position:relative;
  color:var(--dark);
  font-weight:700;
  font-size:.96rem;
  padding:8px 0;
  transition:color .2s ease;
}

.desktop-nav a::after{
  content:"";
  position:absolute;
  inset-inline-start:0;
  inset-block-end:0;
  width:100%;
  height:2px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--accent),var(--primary-2));
  transform:scaleX(0);
  transform-origin:center;
  transition:transform .22s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible{
  color:var(--primary);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after{
  transform:scaleX(1);
}

.lang-switch{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:40px;
  padding:8px 0;
  border:none;
  border-radius:0;
  background:transparent;
  color:var(--primary);
  font-weight:800;
  white-space:nowrap;
  box-shadow:none;
  line-height:1.2;
}

.menu-toggle{
  display:none;
  width:46px;
  height:46px;
  border:none;
  border-radius:14px;
  background:linear-gradient(135deg,var(--primary),var(--primary-2));
  color:#fff;
  cursor:pointer;
  box-shadow:var(--shadow-soft);
  align-items:center;
  justify-content:center;
  font-size:24px;
  flex-shrink:0;
}

.mobile-menu{
  display:none;
  max-height:0;
  overflow:hidden;
  opacity:0;
  padding:0;
  transition:max-height .3s ease, opacity .22s ease, padding .22s ease;
}

.mobile-menu-inner{
  display:grid;
  gap:10px;
}

.mobile-menu a{
  background:rgba(255,255,255,.96);
  border:1px solid var(--border);
  border-radius:16px;
  padding:13px 14px;
  font-weight:700;
  color:var(--dark);
}

.mobile-menu a.lang-switch{
  text-align:center;
  background:transparent;
  border:none;
  border-radius:0;
  padding:8px 0;
}

body.mobile-menu-open .mobile-menu{
  max-height:70vh;
  opacity:1;
  padding:0 0 16px;
}

.hero{
  position:relative;
  min-height:calc(100vh - var(--header-offset));
  display:flex;
  align-items:center;
  padding:78px 0 90px;
  background:
    linear-gradient(rgba(13,79,132,.68), rgba(13,79,132,.68)),
    var(--hero-image, url('assets/site/hero.jpg')) center/cover no-repeat;
  color:#fff;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
}

html[dir="rtl"] .hero::before{
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.16), transparent 30%),
    radial-gradient(circle at bottom left, rgba(255,255,255,.10), transparent 25%);
}

html[dir="ltr"] .hero::before{
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.16), transparent 30%),
    radial-gradient(circle at bottom right, rgba(255,255,255,.10), transparent 25%);
}

.hero-content{
  position:relative;
  z-index:1;
  max-width:900px;
  margin:auto;
  text-align:center;
}

.hero h1{
  margin:0 0 10px;
  font-size:clamp(2.2rem,5vw,4.5rem);
  line-height:1.08;
  font-weight:800;
}

.hero-tagline{
  margin:0 0 18px;
  font-size:clamp(1.25rem,2.6vw,1.9rem);
  font-weight:800;
  color:#dff4ff;
}

.hero-subtext{
  max-width:760px;
  margin:0 auto;
  color:#eef9ff;
  font-size:1.05rem;
}

.hero-actions,
.hero-badges{
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap:14px;
}

.hero-badges{margin-top:24px;gap:12px}
.hero-actions{margin-top:20px}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:165px;
  padding:14px 24px;
  border-radius:16px;
  font-weight:800;
  transition:transform .22s ease, box-shadow .22s ease;
}

.btn:hover,
.btn:focus-visible{
  transform:translateY(-2px);
}

.btn-primary{
  background:linear-gradient(135deg,var(--accent),#4ac3f0);
  color:#fff;
  box-shadow:var(--shadow);
}

.btn-secondary{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.35);
  color:#fff;
}

.hero-badge{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  color:#fff;
  border-radius:999px;
  padding:10px 16px;
  font-weight:700;
  font-size:.93rem;
}

.about-card{
  max-width:1040px;
  margin:auto;
  padding:36px;
  text-align:center;
  background:linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,252,255,.96));
}

.about-card p{
  margin:0 0 16px;
  color:var(--muted);
}

.about-card p:last-child{
  margin-bottom:0;
}

.facility-wrap{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:22px;
  align-items:stretch;
}

.facility-content{
  padding:30px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.facility-content h3{
  margin:0 0 14px;
  color:var(--primary);
  font-size:1.45rem;
}

.facility-list{
  list-style:none;
  padding:0;
  margin:0;
  text-align:start;
}

.facility-list li{
  position:relative;
  padding-inline-start:20px;
  margin-bottom:13px;
  color:var(--muted);
}

.facility-list li::before{
  content:"•";
  position:absolute;
  inset-inline-start:0;
  top:0;
  color:var(--accent);
  font-weight:800;
}

.facility-image{
  overflow:hidden;
}

.facility-image img{
  width:100%;
  height:100%;
  min-height:100%;
  max-height:640px;
  object-fit:cover;
  transition:transform .45s ease;
}

.facility-image:hover img{
  transform:scale(1.03);
}

.feature-carousel,
.team-slider-wrap{
  position:relative;
  padding:0 56px;
}

.team-slider,
.carousel-viewport{
  overflow:hidden;
  width:100%;
  direction:ltr;
}

.team-track,
.carousel-track{
  display:flex;
  gap:18px;
  direction:ltr;
  will-change:transform;
  transition:transform .36s ease;
}

.team-track.is-static-centered,
.carousel-track.is-static-centered{
  justify-content:center;
}

.team-slide,
.service-slide,
.video-slide,
.event-slide{
  flex:0 0 calc((100% - 36px) / 3);
}

.event-slide{
  flex-basis:calc((100% - 18px) / 2);
}

.carousel-item{
  min-width:0;
}

.service-slide,
.video-slide,
.event-slide{
  display:flex;
}

.team-slide{
  flex-basis:calc((100% - 54px) / 4);
}

html[dir="rtl"] .team-slide{
  direction:rtl;
}

.team-card,
.service-card,
.video-card,
.event-card{
  position:relative;
  overflow:hidden;
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.team-card{
  border-radius:22px;
  border:1px solid var(--border);
  box-shadow:var(--shadow-soft);
  background:#fff;
}

.team-card img{
  width:100%;
  aspect-ratio:4 / 5;
  object-fit:cover;
  transition:transform .35s ease;
}

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

.service-card{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  align-items:center;
  width:100%;
  min-height:320px;
  height:100%;
  padding:26px;
  text-align:center;
}

.service-card::before{
  content:"";
  position:absolute;
  top:0;
  left:50%;
  width:72px;
  height:4px;
  transform:translateX(-50%);
  border-radius:999px;
  background:linear-gradient(90deg,var(--accent),var(--primary-2));
}

.service-card-face{
  width:100%;
}

.service-card-face h3,
.video-body h3{
  margin:0 0 10px;
  color:var(--primary);
  font-size:1.08rem;
}

.service-card-face p,
.video-body p{
  margin:0;
  color:var(--muted);
}

.service-more{
  margin-top:24px;
  align-self:center;
  border:none;
  background:none;
  color:var(--primary);
  font-weight:800;
  font-size:.76rem;
  letter-spacing:.01em;
  cursor:pointer;
  padding:0;
}

.video-card{
  width:100%;
}

.featured-video-wrap{
  display:flex;
  justify-content:center;
  margin-bottom:24px;
}

.featured-video-wrap[hidden]{
  display:none;
}

.featured-video-wrap .video-slide{
  flex:0 0 min(640px, 100%);
}

.featured-video-wrap .video-card{
  width:min(640px, 100%);
}

.video-trigger{
  width:100%;
  padding:0;
  border:0;
  background:none;
  cursor:pointer;
  text-align:inherit;
  color:inherit;
}

.video-poster{
  position:relative;
  aspect-ratio:16 / 9;
  background:#dbe7f2;
  overflow:hidden;
}

.video-poster-image{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.video-poster::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(18,50,75,.12), rgba(18,50,75,.36));
}

.video-play{
  position:absolute;
  inset:50% auto auto 50%;
  width:72px;
  height:72px;
  transform:translate(-50%,-50%);
  border-radius:50%;
  background:rgba(255,255,255,.96);
  box-shadow:0 12px 28px rgba(18,50,75,.16);
  z-index:1;
}

.video-play::before{
  content:"";
  position:absolute;
  top:50%;
  left:54%;
  transform:translate(-50%,-50%);
  border-style:solid;
  border-width:12px 0 12px 18px;
  border-color:transparent transparent transparent var(--primary);
}

.video-body{
  padding:18px 20px 22px;
  text-align:center;
}

.service-card:hover,
.video-card:hover,
.event-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow);
  border-color:rgba(47,180,233,.35);
}

.team-arrow,
.carousel-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px;
  height:44px;
  border:none;
  border-radius:50%;
  background:#fff;
  color:var(--primary);
  box-shadow:0 10px 24px rgba(0,0,0,.12);
  cursor:pointer;
  font-size:24px;
  font-weight:800;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:2;
}

.team-arrow.prev,
.carousel-arrow.prev{
  inset-inline-start:6px;
}

.team-arrow.next,
.carousel-arrow.next{
  inset-inline-end:6px;
}

html[dir="ltr"] .team-arrow.prev,
html[dir="ltr"] .carousel-arrow.prev{
  inset-inline-start:auto;
  inset-inline-end:6px;
  direction:ltr;
}

html[dir="ltr"] .team-arrow.next,
html[dir="ltr"] .carousel-arrow.next{
  inset-inline-end:auto;
  inset-inline-start:6px;
  direction:ltr;
}

.team-arrow.is-disabled,
.carousel-arrow.is-disabled{
  opacity:.45;
  pointer-events:none;
}

.team-dots{
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top:18px;
  flex-wrap:wrap;
}

.team-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  border:none;
  background:#c7d7e6;
  cursor:pointer;
  padding:0;
}

.team-dot.active{
  background:var(--accent);
  transform:scale(1.15);
}

.events-grid{
  display:grid;
  gap:22px;
  justify-content:center;
  align-items:start;
}

.events-grid-single{
  grid-template-columns:minmax(280px, 480px);
}

.events-grid-two{
  grid-template-columns:repeat(2, minmax(260px, 420px));
}

.events-grid-three{
  grid-template-columns:repeat(2, minmax(250px, 390px));
}

.events-grid-many{
  grid-template-columns:repeat(auto-fit, minmax(260px, 360px));
}

.event-grid-item{
  width:100%;
}

.events-grid-three .event-grid-item-featured{
  grid-column:1 / -1;
  justify-self:center;
  width:min(390px, 100%);
}

.event-card{
  width:100%;
  max-width:none;
  margin-inline:auto;
}

.event-trigger{
  width:100%;
  padding:0;
  border:0;
  background:none;
  cursor:zoom-in;
  display:block;
}

.event-card img{
  width:100%;
  height:auto;
  aspect-ratio:1 / 1.414;
  object-fit:contain;
  display:block;
  background:#fff;
  border-radius:inherit;
}

.modal-image-view{
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.modal.is-image-only .modal-dialog{
  width:auto;
  max-width:min(96vw, 980px);
  max-height:none;
  margin:2vh auto 0;
  padding:0;
  background:transparent;
  border:none;
  box-shadow:none;
  overflow:visible;
}

.modal.is-image-only .modal-content{
  display:flex;
  align-items:center;
  justify-content:center;
}

.modal.is-image-only .modal-close{
  top:12px;
  inset-inline-end:12px;
  background:rgba(255,255,255,.95);
  box-shadow:0 8px 22px rgba(0,0,0,.16);
}

.modal-event-image{
  width:auto;
  max-width:100%;
  max-height:min(90vh, 1080px);
  margin:0 auto;
  border-radius:18px;
  box-shadow:0 18px 45px rgba(0,0,0,.16);
  object-fit:contain;
}

.contact-wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}

.contact-card{
  padding:30px;
}

.contact-card h3{
  margin:0 0 14px;
  color:var(--primary);
  font-size:1.35rem;
}

.contact-item{
  margin-bottom:16px;
}

.contact-item a,
.contact-item span{
  color:var(--muted);
  word-break:break-word;
}

.contact-item a:hover{
  color:var(--primary);
}

.map-box{
  position:relative;
  padding:10px;
  overflow:hidden;
}

.map-box::after{
  content:"";
  position:absolute;
  top:10px;
  left:10px;
  width:125px;
  height:52px;
  background:var(--bg);
  z-index:10;
  border-top-left-radius:18px;
}

.map-box iframe{
  width:100%;
  min-height:360px;
  border:0;
  border-radius:18px;
}

.social-links{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:16px;
}

.facebook-icon{
  width:46px;
  height:46px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#1877f2;
  padding:9px;
}

.facebook-icon img{
  width:100%;
  height:100%;
  object-fit:contain;
}

.whatsapp-float,
.scroll-top{
  position:fixed;
  bottom:18px;
  z-index:999;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  overflow:hidden;
  transition:transform .22s ease, opacity .22s ease, visibility .22s ease;
}

.whatsapp-float{
  inset-inline-start:18px;
  width:60px;
  height:60px;
  box-shadow:0 14px 30px rgba(0,0,0,.16);
  background:#25D366;
  padding:10px;
}

.scroll-top{
  inset-inline-end:18px;
  width:58px;
  height:58px;
  background:#fff;
  border:1px solid rgba(13,79,132,.12);
  box-shadow:0 14px 30px rgba(0,0,0,.12);
  padding:12px;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
}

.scroll-top.is-visible{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

.whatsapp-float img,
.scroll-top img{
  width:100%;
  height:100%;
  object-fit:contain;
}

.site-footer{
  background:#0f2740;
  color:#d7e5f3;
  padding:40px 0 20px;
  margin-top:40px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:24px;
}

.site-footer h3,
.site-footer h4{
  margin:0 0 12px;
  color:#fff;
}

.site-footer p,
.site-footer a{
  color:#d7e5f3;
}

.site-footer a:hover{
  color:#ffffff;
}

.footer-bottom{
  text-align:center;
  margin-top:24px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.12);
  font-size:.92rem;
}

.modal{
  position:fixed;
  inset:0;
  z-index:1200;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .22s ease, visibility .22s ease;
}

.modal.is-open{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

.modal-backdrop{
  position:absolute;
  inset:0;
  background:rgba(9,25,39,.52);
}

.modal-dialog{
  position:relative;
  width:min(920px, calc(100% - 32px));
  max-height:min(84vh, 900px);
  margin:6vh auto 0;
  padding:26px;
  overflow:auto;
}

.modal-close{
  position:absolute;
  top:14px;
  inset-inline-end:14px;
  border:none;
  background:#eef6fb;
  color:var(--primary);
  width:40px;
  height:40px;
  border-radius:50%;
  font-size:24px;
  cursor:pointer;
}

.modal-copy h3,
.modal-media h3{
  margin:0 0 14px;
  color:var(--primary);
}

.modal-copy p{
  margin:0 0 14px;
  color:var(--muted);
}

.modal-action{
  margin-top:8px;
}

.modal .video-frame{
  width:100%;
  aspect-ratio:16 / 9;
  border:0;
  border-radius:18px;
  background:#000;
}

@media (max-width:1100px){
  .team-slide{
    flex-basis:calc((100% - 36px) / 3);
  }
}

@media (max-width:900px){
  .desktop-nav{display:none}
  .menu-toggle{display:flex}
  .mobile-menu{display:block}

  body.mobile-menu-open{overflow:hidden}

  .hero{
    min-height:auto;
    padding:62px 0 70px;
  }

  .facility-wrap,
  .contact-wrap,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .team-slider-wrap,
  .feature-carousel{
    padding:0 46px;
  }

  .team-arrow,
  .carousel-arrow{
    width:40px;
    height:40px;
    font-size:22px;
  }

  .logo img{
    width:118px;
  }
}

@media (max-width:780px){
  .team-slide,
  .service-slide,
  .video-slide,
  .event-slide{
    flex-basis:calc((100% - 18px) / 2);
  }
}

@media (max-width:700px){
  .events-grid,
  .events-grid-single,
  .events-grid-two,
  .events-grid-three,
  .events-grid-many{
    grid-template-columns:minmax(0, 1fr);
  }

  .events-grid-three .event-grid-item-featured{
    grid-column:auto;
    width:100%;
  }
}

@media (max-width:640px){
  .section{
    padding:70px 0;
  }

  .about-card,
  .facility-content,
  .contact-card,
  .service-card{
    padding:22px;
  }

  .hero-actions{
    flex-direction:column;
  }

  .btn{
    width:100%;
    max-width:320px;
  }

  .logo img{
    width:100px;
  }

  .whatsapp-float{
    width:54px;
    height:54px;
    inset-inline-start:12px;
    bottom:12px;
  }

  .scroll-top{
    inset-inline-end:12px;
    bottom:12px;
    width:54px;
    height:54px;
  }

  .modal-dialog{
    width:min(100% - 20px, 920px);
    margin-top:4vh;
    padding:22px 18px;
  }
}

@media (max-width:520px){
  .team-slider-wrap,
  .feature-carousel{
    padding:0 38px;
  }

  .team-slide,
  .service-slide,
  .video-slide,
  .event-slide{
    flex-basis:100%;
  }

  .video-play{
    width:62px;
    height:62px;
  }
}
