:root{
  --blue-900:#062A52;
  --blue-800:#083A73;
  --blue-700:#0A4C94;
  --blue-600:#0B65C6;
  --sky-500:#31B7FF;
  --sky-300:#7ED6FF;
  --ice-100:#F2FAFF;
  --white:#ffffff;
  --text:#0f172a;
  --muted:#64748b;
  --shadow: 0 18px 45px rgba(8, 58, 115, .18);
  --shadow-soft: 0 12px 28px rgba(8, 58, 115, .12);
  --radius: 18px;
}

*{scroll-behavior:smooth;}
body{
  font-family: "Plus Jakarta Sans", "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: #fff;
}

a{ text-decoration: none; }
.small-muted{ color: rgb(0 0 0 / 75%); }
.text-white-75{ color: rgba(255,255,255,.75)!important; }

.section-pad{ padding: 84px 0; }
.section-soft{ background: linear-gradient(180deg, var(--ice-100), #ffffff); }
.section-kicker{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(49,183,255,.16);
  color: var(--blue-700);
  font-weight: 700;
  letter-spacing: .2px;
  margin-bottom: 10px;
}
.section-kicker-light{
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.95);
}
.section-title{
  font-weight: 800;
  letter-spacing: -.4px;
  font-size: clamp(1.6rem, 2.4vw, 2.3rem);
  margin-bottom: 10px;
}
.section-text{
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Topbar */
.topbar{
  background: linear-gradient(90deg, var(--blue-900), var(--blue-700));
  color: rgba(255,255,255,.9);
  font-size: .92rem;
}
.topbar-item{ display:inline-flex; align-items:center; gap:10px; }
.topbar-link{
  color: rgba(255,255,255,.92);
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding: 2px 0;
}
.topbar-link:hover{ color: var(--sky-300); }

/* Navbar */

.navbar-logo{
  height: 75px;
  width: auto;
  object-fit: contain;
}

.navbar-glass{
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(49,183,255,.20);
}
.navbar-brand .brand-mark{
  width: 44px; height: 44px;
  display:grid; place-items:center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-700), var(--sky-500));
  color: #fff;
  box-shadow: 0 12px 24px rgba(11,101,198,.25);
}
.brand-text{ line-height: 1.05; }
.brand-title{ display:block; font-weight: 900; color: var(--blue-900); }
.brand-sub{ display:block; font-weight: 700; color: var(--blue-600); font-size: .88rem; }

.nav-link{
  font-weight: 700;
  color: rgba(6, 42, 82, .82);
  padding: .65rem .85rem !important;
  border-radius: 12px;
}
.nav-link:hover{ background: rgba(49,183,255,.14); color: var(--blue-900); }
.nav-link.active{ background: rgba(49,183,255,.20); color: var(--blue-900); }

/* Buttons */
.btn-primary{
  background: linear-gradient(135deg, var(--blue-700), var(--sky-500));
  border: none;
}
.btn-primary:hover{ filter: brightness(1.03); }
.btn-soft{
  background: rgba(49,183,255,.14);
  border: 1px solid rgba(49,183,255,.25);
  color: var(--blue-800);
  font-weight: 800;
}
.btn-soft:hover{ background: rgba(49,183,255,.20); color: var(--blue-900); }
.btn-glow{
  box-shadow: 0 0 0 rgba(49,183,255,0);
  animation: glowPulse 2.2s infinite;
}
@keyframes glowPulse{
  0%{ box-shadow: 0 0 0 0 rgba(49,183,255,.0), 0 18px 40px rgba(11,101,198,.18); }
  50%{ box-shadow: 0 0 0 10px rgba(49,183,255,.08), 0 18px 40px rgba(11,101,198,.22); }
  100%{ box-shadow: 0 0 0 0 rgba(49,183,255,.0), 0 18px 40px rgba(11,101,198,.18); }
}

/* Hero */
.hero-section{ position: relative; }
.hero-slide{
  min-height: 84vh;
  display:flex;
  align-items:center;
  position: relative;
  overflow:hidden;
  color: #fff;
}
.hero-bg-1, .hero-bg-2, .hero-bg-3{
  background-size: cover;
  background-position: center;
}
.hero-bg-1{
  background-image:
    linear-gradient(90deg, rgba(6,42,82,.65), rgba(10,76,148,.45)),
    url("../img/banner-1.jpg");
  background-size: cover;
  background-position: center;
}

.hero-bg-2{
  background-image:
    linear-gradient(90deg, rgba(6,42,82,.60), rgba(49,183,255,.25)),
    url("../img/banner-2.jpg");
  background-size: cover;
  background-position: center;
}

.hero-bg-3{
  background-image:
    linear-gradient(90deg, rgba(6,42,82,.65), rgba(10,76,148,.40)),
    url("../img/banner-3.jpg");
  background-size: cover;
  background-position: center;
}

.badge-pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  font-weight: 800;
  color: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
}
.hero-title{
  font-weight: 900;
  letter-spacing: -0.8px;
  font-size: clamp(2rem, 4.0vw, 3.3rem);
  line-height: 1.08;
  margin-bottom: 12px;
}
.hero-text{
  font-size: 1.12rem;
  line-height: 1.75;
  color: rgba(255,255,255,.86);
  max-width: 720px;
}
.text-gradient{
  background: linear-gradient(135deg, var(--sky-300), #fff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-highlights{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.highlight-card{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  padding: 12px 14px;
  display:flex;
  gap: 12px;
  align-items:center;
  backdrop-filter: blur(10px);
}
.highlight-card i{ font-size: 20px; opacity: .95; }
.h-title{ font-weight: 900; }
.h-sub{ font-size: .92rem; color: rgba(255,255,255,.78); }

.hero-card{
  border-radius: 22px;
  overflow:hidden;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 60px rgba(0,0,0,.20);
}
.hero-card-top{
  padding: 18px 18px 14px;
  background: rgba(255,255,255,.10);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.mini-title{ font-weight: 900; }
.mini-sub{ color: rgba(255,255,255,.78); font-weight: 600; font-size: .95rem; }
.hero-card-body{ padding: 18px; }
.info-row{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  margin-bottom: 10px;
}
.info-row i{ font-size: 18px; margin-top: 2px; }
.info-strong{ font-weight: 900; }
.info-soft{ color: rgba(255,255,255,.78); font-size: .92rem; }
.note{
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.08);
  border: 1px dashed rgba(255,255,255,.22);
  padding: 10px 12px;
  border-radius: 16px;
}

/* About */
.about-points .point{
  display:flex;
  gap: 10px;
  align-items:center;
  padding: 10px 0;
  font-weight: 700;
  color: rgba(6,42,82,.92);
}
.about-points i{
  width: 26px; height: 26px;
  border-radius: 10px;
  display:grid; place-items:center;
  background: rgba(49,183,255,.18);
  color: var(--blue-700);
}
.about-card{
  border-radius: var(--radius);
  overflow:hidden;
  background: #fff;
  border: 1px solid rgba(49,183,255,.18);
  box-shadow: var(--shadow-soft);
}
.about-card-header{
  padding: 22px;
  background:
    radial-gradient(900px 300px at 20% 0%, rgba(49,183,255,.22), transparent 60%),
    linear-gradient(180deg, rgba(49,183,255,.10), transparent);
}
.chip{
  display:inline-flex; gap:10px; align-items:center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(11,101,198,.10);
  border: 1px solid rgba(11,101,198,.12);
  color: var(--blue-800);
  font-weight: 900;
  margin-bottom: 10px;
}
.about-card-title{ font-weight: 900; margin-bottom: 6px; }
.about-card-sub{ color: var(--muted); margin: 0; }
.about-card-body{ padding: 18px 22px 22px; }
.mini-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.mini-box{
  border-radius: 18px;
  background: rgba(49,183,255,.10);
  border: 1px solid rgba(49,183,255,.18);
  padding: 14px;
  display:flex;
  gap: 10px;
  align-items:center;
}
.mini-box i{
  width: 40px; height: 40px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, var(--blue-700), var(--sky-500));
  color: #fff;
}
.mini-label{ font-weight: 900; color: var(--blue-900); }

.about-image-wrapper{
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.about-img{
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.about-img:hover{
  transform: scale(1.05);
}


/* Services */
.service-card{
  height: 100%;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(49,183,255,.18);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}

.service-card::before{
  content: "";
  position: absolute;
  inset: -60px -60px auto auto;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle at center, rgba(49,183,255,.25), transparent 65%);
  transform: rotate(25deg);
  z-index: 0;
}

.service-card:hover{
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.service-image{
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.service-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
  display: block;
}

.service-card:hover .service-image img{
  transform: scale(1.08);
}

.service-content{
  position: relative;
  z-index: 1;
  padding: 22px;
}

.service-icon{
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(49,183,255,.18);
  color: var(--blue-800);
  font-size: 22px;
  margin-bottom: 14px;
  transition: transform .7s ease, background .3s ease, color .3s ease;
}

.service-card:hover .service-icon{
  transform: rotate(360deg);
  background: linear-gradient(135deg, var(--blue-700), var(--sky-500));
  color: #fff;
}

.service-title{
  font-weight: 900;
  margin-bottom: 8px;
  color: var(--blue-900);
}

.service-text{
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 991.98px){
  .service-image{
    height: 210px;
  }
}

@media (max-width: 767.98px){
  .service-image{
    height: 200px;
  }

  .service-content{
    padding: 18px;
  }

  .service-icon{
    width: 52px;
    height: 52px;
    font-size: 20px;
  }
}

/* Why */
.why-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.why-item{
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #f7f9fc;
  border: 1px solid #cfe7ff;
  border-radius: 22px;
  padding: 18px 20px;
  min-height: 98px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0, 102, 204, 0.06);
}

.why-item:hover{
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 102, 204, 0.12);
  border-color: #8ecbff;
}

.why-icon{
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0b63c9, #2fb7ff);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 8px 18px rgba(11, 99, 201, 0.22);
}

.why-item > div:last-child{
  flex: 1;
}

.why-title{
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.2;
  color: #0b2f63;
  margin-bottom: 6px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.why-text{
  font-size: 1.2rem;
  line-height: 1.55;
  color: #5a6b85;
  margin: 0;
  font-family: "Poppins", sans-serif;
}

/* Tablet */
@media (max-width: 991.98px){
  .why-grid{
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .why-item{
    padding: 16px 18px;
    border-radius: 20px;
  }

  .why-title{
    font-size: 1.1rem;
  }

  .why-text{
    font-size: 0.98rem;
  }
}

/* Mobile */
@media (max-width: 767.98px){
  .why-grid{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .why-item{
    padding: 15px 16px;
    min-height: auto;
    border-radius: 18px;
  }

  .why-icon{
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 15px;
  }

  .why-title{
    font-size: 1.02rem;
    margin-bottom: 4px;
  }

  .why-text{
    font-size: 0.94rem;
    line-height: 1.5;
  }
}
.why-grid{
  align-items: stretch;
}

.why-item{
  height: 100%;
}
.why-card{
  border-radius: 22px;
  overflow:hidden;
  background: #fff;
  border: 1px solid rgba(49,183,255,.18);
  box-shadow: var(--shadow);
}
.why-card-top{
  padding: 22px;
  background:
    radial-gradient(900px 300px at 0% 0%, rgba(49,183,255,.25), transparent 55%),
    linear-gradient(135deg, rgba(11,101,198,.10), rgba(49,183,255,.10));
}
.why-card-body{ padding: 18px 22px 22px; }
.divider-or{
  position:relative;
  text-align:center;
}
.divider-or::before{
  content:"";
  position:absolute;
  top:50%; left:0; right:0;
  height:1px;
  background: rgba(100,116,139,.25);
}
.divider-or span{
  position:relative;
  display:inline-block;
  background: #fff;
  padding: 0 12px;
  color: var(--muted);
  font-weight: 800;
}

/* Achievements */
.section-gradient{
  background:
    radial-gradient(900px 360px at 20% 0%, rgba(126,214,255,.35), transparent 55%),
    radial-gradient(900px 360px at 80% 10%, rgba(49,183,255,.25), transparent 55%),
    linear-gradient(135deg, var(--blue-900), var(--blue-700));
}
.counter-card{
  border-radius: 22px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 45px rgba(0,0,0,.16);
  color:#fff;
  height:100%;
}
.counter-icon{
  width: 48px; height: 48px;
  border-radius: 18px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
  margin-bottom: 12px;
}
.counter-num{
  font-weight: 950;
  font-size: clamp(1.7rem, 2.8vw, 2.25rem);
  letter-spacing: -.6px;
}
.counter-label{ color: rgba(255,255,255,.78); font-weight: 700; }

.gallery-card{
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(49,183,255,.18);
  box-shadow: var(--shadow-soft);
}

.gallery-card img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .35s ease;
}

.gallery-card:hover img{
  transform: scale(1.08);
}



.partner-section{
  background:
    radial-gradient(circle at top left, rgba(49,183,255,.10), transparent 30%),
    radial-gradient(circle at top right, rgba(11,76,148,.08), transparent 28%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.partner-top{
  max-width: 980px;
  margin: 0 auto;
}

.partner-kicker{
  display: inline-block;
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(11, 76, 148, 0.08);
  border: 1px solid rgba(11, 76, 148, 0.12);
  color: #0b4c94;
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.partner-main-title{
  max-width: 1050px;
  margin: 0 auto 14px;
  font-size: clamp(1.7rem, 2.5vw, 2.9rem);
  font-weight: 900;
  line-height: 1.3;
  color: #182433;
  letter-spacing: .2px;
}

.partner-main-title span{
  color: #0b39c6;
}

.partner-main-text{
  max-width: 820px;
  margin: 0 auto;
  font-size: 1.04rem;
  line-height: 1.8;
  color: #66768e;
}

.partner-box{
  background: #ffffff;
  border: 1px solid rgba(45, 111, 210, 0.12);
  border-radius: 28px;
  padding: 36px 28px;
  box-shadow: 0 14px 40px rgba(11, 57, 198, 0.07);
  position: relative;
  overflow: hidden;
}

.partner-box::before{
  content: "";
  position: absolute;
  top: -80px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(49,183,255,.12), transparent 65%);
  pointer-events: none;
}

.partner-box-head{
  text-align: center;
  margin-bottom: 28px;
}

.partner-subtitle{
  font-size: clamp(1.45rem, 2vw, 2.2rem);
  font-weight: 900;
  color: #0b39c6;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.partner-subtext{
  margin: 0 auto;
  max-width: 760px;
  color: #6b7a90;
  font-size: 1rem;
  line-height: 1.7;
}

.partner-card{
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(45, 111, 210, 0.22);
  border-radius: 20px;
  height: 138px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 20px;
  transition: all .35s ease;
  box-shadow: 0 10px 26px rgba(11, 57, 198, 0.05);
}

.partner-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 18px 38px rgba(11, 57, 198, 0.12);
  border-color: rgba(11, 76, 148, 0.28);
}

.partner-card img{
  max-width: 86%;
  max-height: 84px;
  object-fit: contain;
  transition: transform .35s ease;
  filter: saturate(1.02) contrast(1.02);
}

.partner-card:hover img{
  transform: scale(1.06);
}

@media (max-width: 991.98px){
  .partner-box{
    padding: 30px 22px;
    border-radius: 24px;
  }

  .partner-card{
    height: 124px;
    padding: 18px;
  }

  .partner-card img{
    max-height: 72px;
  }
}

@media (max-width: 767.98px){
  .partner-main-title{
    font-size: 1.35rem;
    line-height: 1.5;
  }

  .partner-main-text{
    font-size: .96rem;
    line-height: 1.7;
  }

  .partner-box{
    padding: 24px 16px;
    border-radius: 22px;
  }

  .partner-subtitle{
    font-size: 1.55rem;
  }

  .partner-subtext{
    font-size: .94rem;
  }

  .partner-card{
    height: 100px;
    border-radius: 16px;
    padding: 14px;
  }

  .partner-card img{
    max-height: 56px;
    max-width: 84%;
  }
}

.quic-act{
  font-size: larger;
  font-weight: 900;
}

/* Contact */
.contact-card{
  background:#fff;
  border: 1px solid rgba(49,183,255,.18);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  padding: 18px;
}
.contact-row{
  display:flex;
  gap: 12px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(49,183,255,.08);
  border: 1px solid rgba(49,183,255,.14);
  margin-bottom: 12px;
}
.contact-ico{
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1d71c9, #39b7ff);
  color: #ffffff;
  font-size: 17px;
  box-shadow: 0 8px 18px rgba(29, 113, 201, 0.18);
}

.contact-ico i{
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-strong{ font-weight: 900; color: var(--blue-900); }
.contact-link{ font-weight: 800; color: var(--blue-700); }
.contact-link:hover{ color: var(--blue-900); }
.contact-text{ color: var(--muted); }

.form-card{
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid rgba(49,183,255,.18);
  box-shadow: var(--shadow);
  background:#fff;
}
.form-card-top{
  padding: 22px;
  background:
    radial-gradient(900px 300px at 20% 0%, rgba(49,183,255,.20), transparent 60%),
    linear-gradient(180deg, rgba(49,183,255,.10), transparent);
}
.form-card-body{ padding: 18px 22px 22px; }
.form-label{ font-weight: 800; color: var(--blue-900); }
.form-control, .form-select{
  border-radius: 16px;
  border: 1px solid rgba(49,183,255,.22);
}
.form-control:focus, .form-select:focus{
  border-color: rgba(49,183,255,.55);
  box-shadow: 0 0 0 .25rem rgba(49,183,255,.18);
}

/* Map */
.map-section{ padding: 0 0 84px; background: linear-gradient(180deg, #fff, var(--ice-100)); }
.map-card{
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid rgba(49,183,255,.18);
  box-shadow: var(--shadow);
  background:#fff;
}
.map-top{
  padding: 22px;
  background:
    radial-gradient(900px 300px at 10% 0%, rgba(49,183,255,.20), transparent 60%),
    linear-gradient(180deg, rgba(49,183,255,.10), transparent);
}
.map-embed iframe{
  width: 100%;
  height: 380px;
  border:0;
  display:block;
}

/* Footer */
.footer{
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  color: rgba(255,255,255,.86);
  padding: 70px 0 18px;
}
.footer-title{ font-weight: 950; color:#fff; }
.footer-sub{ font-weight: 700; color: rgba(255,255,255,.78); }
.footer-text{ color: rgba(255,255,255,.78); line-height: 1.7; }
.footer-heading{ color:#fff; font-weight: 900; margin-bottom: 12px; }
.footer-links{ list-style:none; padding:0; margin:0; display:grid; gap: 8px; }
.footer-links a{ color: rgba(255,255,255,.82); font-weight: 700; }
.footer-links a:hover{ color: var(--sky-300); }
.footer-contact .fc-item{
  display:flex; gap: 10px; align-items:flex-start;
  margin-bottom: 10px;
}
.footer-contact i{ margin-top: 3px; }
.footer-contact a{ color: rgba(255,255,255,.86); font-weight: 800; }
.footer-contact a:hover{ color: var(--sky-300); }
.footer-social{ display:flex; gap: 10px; }
.social-btn{
  width: 44px; height: 44px;
  border-radius: 16px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  color:#fff;
  transition: transform .2s ease;
}
.social-btn:hover{ transform: translateY(-2px); color: var(--sky-300); }
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.16);
  padding-top: 14px;
  color: rgba(255,255,255,.75);
  font-weight: 600;
}

/* Lightbox Modal */
.lightbox-modal{
  background: rgba(6,42,82,.92);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
}
.lightbox-modal .modal-title{ color:#fff; font-weight: 900; }

/* Reveal Animations */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.show{
  opacity: 1;
  transform: translateY(0);
}

/* Floating Buttons */
.floating-actions{
  position: fixed;
  right: 16px;
  bottom: 16px;
  display:flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}
.floating-actions1{
  position: fixed;
  left: 16px;
  bottom: 16px;
  display:flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}
.float-btn{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  color:#fff;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
  backdrop-filter: blur(8px);
  transform: translateZ(0);
}
.float-btn i{ font-size: 20px; }
.float-text{ font-size: .95rem; letter-spacing: .2px; }

.float-whatsapp{
  background: linear-gradient(135deg, #0ea86a, #2bdc8c);
  animation: floatGlowW 2.1s infinite;
}
@keyframes floatGlowW{
  0%{ box-shadow: 0 0 0 0 rgba(43,220,140,.0), 0 18px 45px rgba(14,168,106,.26); }
  50%{ box-shadow: 0 0 0 10px rgba(43,220,140,.12), 0 18px 45px rgba(14,168,106,.30); }
  100%{ box-shadow: 0 0 0 0 rgba(43,220,140,.0), 0 18px 45px rgba(14,168,106,.26); }
}
.float-call{
  background: linear-gradient(135deg, var(--blue-700), var(--sky-500));
  animation: floatGlowB 2.1s infinite;
}
@keyframes floatGlowB{
  0%{ box-shadow: 0 0 0 0 rgba(49,183,255,.0), 0 18px 45px rgba(11,101,198,.26); }
  50%{ box-shadow: 0 0 0 10px rgba(49,183,255,.12), 0 18px 45px rgba(11,101,198,.30); }
  100%{ box-shadow: 0 0 0 0 rgba(49,183,255,.0), 0 18px 45px rgba(11,101,198,.26); }
}

/* Responsive */
@media (max-width: 991.98px){
  .hero-slide{ min-height: 78vh; padding: 30px 0; }
  .hero-highlights{ grid-template-columns: 1fr; }
  .why-grid{ grid-template-columns: 1fr; }
  .map-embed iframe{ height: 320px; }
  .section-pad{ padding: 70px 0; }
  .sticky-top{
	  position:relative;
  }
}
@media(max-width:767px)
{
	.cu-mb-ds-nn{
		display:none!important
	}
}
@media (max-width: 575.98px){
  .topbar{ font-size: .88rem; }
  .float-text{ display:none; }
  .float-btn{ width: 54px; height: 54px; justify-content:center; padding: 0; border-radius: 18px; }
  .gallery-card img{ height: 190px; }
}