:root{
  /* Requested palette: blue, sky blue, Silver, Gray, Shady Silver, Light Gray, Pencil Gray */
  --blue: #0B3D91;
  --sky: #38BDF8;
  --silver: #C0C7D1;
  --gray: #667085;
  --shady-silver: #8B95A7;
  --light-gray: #F3F6FB;
  --pencil-gray: #2B2F38;

  --bg: #ffffff;
  --text: #111827;
  --muted: #6B7280;

  --radius: 18px;
  --shadow: 0 14px 35px rgba(12, 24, 45, 0.12);
  --shadow-soft: 0 10px 24px rgba(12, 24, 45, 0.10);
  --border: 1px solid rgba(148, 163, 184, 0.35);
}

*{ box-sizing: border-box; }
/* =========================
   Extra safety (optional)
   If any page still shows horizontal scroll
   ========================= */
html, body{
  overflow-x: hidden;
}
html { scroll-behavior: smooth; }
body{
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

a{ text-decoration: none; }
img{ max-width: 100%; display: block; }

.section{
  padding: 72px 0;
}
.section-soft{
  background: linear-gradient(180deg, var(--light-gray) 0%, #fff 100%);
}
.section-title{
  font-family: "Sora", "Poppins", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.section-text{
  color: var(--muted);
  line-height: 1.75;
}
.section-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 10px;
}
.section-eyebrow .dot{
  width: 10px;
  height: 10px;
  background: var(--sky);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(56, 189, 248, 0.18);
}

/* Topbar */
.topbar{
  background: linear-gradient(90deg, rgba(11,61,145,0.08), rgba(56,189,248,0.10));
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}
.topbar-item{
  color: var(--pencil-gray);
  font-size: 0.92rem;
}
.topbar-item a{
  color: var(--pencil-gray);
}
.topbar-item a:hover{ color: var(--blue); }

/* Icon pill */
.icon-pill{
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: var(--border);
  color: var(--pencil-gray);
  background: rgba(255,255,255,0.7);
  transition: all .25s ease;
}
.icon-pill:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
  color: var(--blue);
  border-color: rgba(56,189,248,0.6);
}

/* =========================
   Navbar Logo Styling
   ========================= */

.navbar-logo{
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: transform .25s ease;
}

.navbar-logo:hover{
  transform: scale(1.05);
}

/* Mobile responsive */
@media(max-width: 575px){
  .navbar-logo{
    height: 44px;
  }
}


/* Header/Navbar */
.header{
  backdrop-filter: blur(10px);
  background: rgba(11, 61, 145, 0.92);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.navbar{
  padding: 14px 0;
}
.navbar-brand .brand-mark{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--sky), rgba(255,255,255,0.18));
  box-shadow: 0 10px 24px rgba(56,189,248,0.25);
}
.brand-title{
  font-family: "Sora", sans-serif;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}
.brand-subtitle{
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
}
.navbar .nav-link{
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  position: relative;
  padding: 10px 12px;
  border-radius: 12px;
}
.navbar .nav-link:hover,
.navbar .nav-link.active{
  color: #fff;
  background: rgba(56,189,248,0.14);
}

/* Buttons */
.btn-accent{
  background: linear-gradient(135deg, var(--sky), #60A5FA);
  color: #0b1b33;
  border: 0;
  font-weight: 700;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 12px 26px rgba(56,189,248,0.28);
}
.btn-accent:hover{
  filter: brightness(0.98);
  transform: translateY(-1px);
  color: #0b1b33;
}
.btn-ghost{
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  font-weight: 600;
  border-radius: 14px;
  padding: 12px 16px;
}
.btn-ghost:hover{
  background: rgba(255,255,255,0.18);
  color: #fff;
}
.btn-lg-lg{ padding: 12px 18px; }

/* Hero */
.hero{
  position: relative;
}
.hero-img{
  height: clamp(520px, 62vh, 720px);
  object-fit: cover;
}
.carousel-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11,61,145,0.78) 0%, rgba(11,61,145,0.45) 45%, rgba(11,61,145,0.25) 100%);
}
.carousel-caption{
  left: 0; right: 0;
  bottom: 0;
  top: 0;
  display: flex;
  align-items: center;
  padding: 0;
}
.hero-content{
  max-width: 720px;
  padding: 18px 0 40px;
}
.badge-soft{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
}
.hero-title{
  font-family: "Sora", sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: clamp(1.85rem, 3.6vw, 3.2rem);
  color: #fff;
  margin-bottom: 12px;
}
.text-sky{ color: var(--sky); }
.hero-text{
  color: rgba(255,255,255,0.88);
  max-width: 640px;
  line-height: 1.75;
  margin-bottom: 18px;
}

/* hero strip */
.hero-strip-wrap{
  position: relative;
  margin-top: 30px;
  margin-bottom:30px;
  z-index: 10;
}
.hero-strip{
  background: rgba(255,255,255,0.92);
  border: var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.strip-item{
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(56,189,248,0.10), rgba(255,255,255,0.0));
}
.strip-item i{
  font-size: 1.25rem;
  color: var(--blue);
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(56,189,248,0.18);
}
.strip-title{ font-weight: 700; color: var(--pencil-gray); }
.strip-sub{ font-size: 0.9rem; color: var(--muted); }

/* About */
.about-visual{
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
}
.about-glow{
  position: absolute;
  width: min(520px, 90%);
  height: min(520px, 90%);
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(56,189,248,0.40), transparent 55%),
              radial-gradient(circle at 70% 60%, rgba(11,61,145,0.35), transparent 55%);
  filter: blur(6px);
  opacity: 0.95;
}
.about-card{
  position: relative;
  width: 100%;
  max-width: 520px;
  border-radius: 24px;
  border: var(--border);
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.about-card-top{
  padding: 22px 22px 14px;
  background: linear-gradient(135deg, rgba(11,61,145,0.08), rgba(56,189,248,0.10));
}
.about-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: var(--border);
  background: rgba(255,255,255,0.7);
  color: var(--blue);
  font-weight: 700;
  font-size: 0.92rem;
}
.about-card-title{
  font-family: "Sora", sans-serif;
  font-weight: 800;
  margin: 14px 0 8px;
}
.about-card-text{
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0;
}
.about-list{
  padding: 14px 22px 18px;
  display: grid;
  gap: 10px;
}
.about-list-item{
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--pencil-gray);
  font-weight: 600;
}
.about-list-item i{
  color: var(--blue);
  width: 26px;
  height: 26px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(56,189,248,0.18);
}
.about-cta{
  padding: 0 22px 22px;
}

/* =========================
   About Section Image Style
   ========================= */

.about-image-wrap{
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(12,24,45,0.15);
  border: 1px solid rgba(148,163,184,0.4);
  background: linear-gradient(135deg, #f8fafc, #eef6fb);
}

.about-image{
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform .6s ease;
}

.about-image-wrap:hover .about-image{
  transform: scale(1.06);
}

/* Soft glow behind image */
.about-image-glow{
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle, rgba(56,189,248,0.35), transparent 60%);
  z-index: 0;
  filter: blur(10px);
}

/* Ensure image stays above glow */
.about-image-wrap img{
  position: relative;
  z-index: 2;
}

/* Mobile Optimization */
@media(max-width: 991px){
  .about-image{
    height: 300px;
  }
}


/* Info cards */
.info-card{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.92);
  border: var(--border);
  box-shadow: 0 8px 18px rgba(12,24,45,0.06);
}
.info-icon{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(56,189,248,0.18);
  color: var(--blue);
}

/* Services */
/* =========================
   Services Split (new design)
   ========================= */

.services-split{
  position: relative;
}

.service-row{
  margin-top: 18px;
  margin-bottom: 26px;
  padding: 22px;
  border-radius: 26px;
  border: var(--border);
  background: linear-gradient(135deg, rgba(11,61,145,0.06), rgba(56,189,248,0.08), rgba(255,255,255,0.92));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  position: relative;
}

.service-row::after{
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(56,189,248,0.28), transparent 60%);
  filter: blur(2px);
}

.service-media{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: 0 18px 40px rgba(12,24,45,0.12);
  background: #fff;
}

.service-img{
  width: 100%;
  height: 340px;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .45s ease;
}

.service-row:hover .service-img{
  transform: scale(1.06);
}

.service-badge{
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  background: rgba(11,61,145,0.72);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
}

.service-badge i{
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(56,189,248,0.22);
  border: 1px solid rgba(255,255,255,0.18);
}

.service-badge span{
  font-weight: 800;
  letter-spacing: 0.2px;
}

.service-content{
  position: relative;
  z-index: 2;
  padding: 6px 4px;
}

.service-kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
}

.service-kicker .k-dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sky);
  box-shadow: 0 0 0 6px rgba(56,189,248,0.18);
}

.service-heading{
  font-family: "Sora", sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--pencil-gray);
}

.service-desc{
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 14px;
  max-width: 760px;
}

.service-points{
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  gap: 10px;
}

.service-points li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--pencil-gray);
  font-weight: 600;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 10px 12px;
  border-radius: 16px;
}

.service-points i{
  margin-top: 2px;
  color: var(--blue);
  width: 26px;
  height: 26px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(56,189,248,0.18);
}

.service-cta{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Make ghost buttons readable on light background in services */
.services-split .btn-ghost{
  color: var(--blue);
  background: rgba(11,61,145,0.06);
  border: 1px solid rgba(11,61,145,0.18);
}
.services-split .btn-ghost:hover{
  background: rgba(11,61,145,0.10);
}

/* Responsive */
@media (max-width: 991px){
  .service-row{ padding: 18px; }
  .service-img{ height: 260px; }
}
@media (max-width: 575px){
  .service-row{ padding: 14px; border-radius: 20px; }
  .service-img{ height: 220px; }
  .service-badge{ left: 10px; bottom: 10px; padding: 8px 12px; }
  .service-badge i{ width: 32px; height: 32px; }
}

/* =========================
   360° Icon Rotation on Hover
   ========================= */

/* Smooth transition for badge icon */
.service-badge i{
  transition: transform .6s cubic-bezier(.2,.8,.2,1), filter .25s ease;
  transform-origin: center;
  will-change: transform;
}

/* Rotate badge icon when hovering whole row OR image area */
.service-row:hover .service-badge i,
.service-media:hover .service-badge i{
  transform: rotate(360deg);
  filter: brightness(1.08);
}

/* Optional: tiny "pop" effect on hover */
.service-row:hover .service-badge{
  transform: translateY(-1px);
  transition: transform .25s ease;
}

/* OPTIONAL (If you want): rotate list check icons too */
.service-points i{
  transition: transform .55s cubic-bezier(.2,.8,.2,1);
  transform-origin: center;
  will-change: transform;
}

.service-row:hover .service-points i{
  transform: rotate(360deg);
}


/* Why */
.why-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.why-item{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.92);
  border: var(--border);
  box-shadow: 0 8px 18px rgba(12,24,45,0.06);
}
.why-icon{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(56,189,248,0.18);
  color: var(--blue);
}
.why-panel{
  border-radius: 24px;
  border: var(--border);
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.why-panel-header{
  padding: 18px 18px 14px;
  background: linear-gradient(135deg, rgba(11,61,145,0.08), rgba(56,189,248,0.10));
}
.why-panel-body{
  padding: 18px;
}
.mini-steps{
  display: grid;
  gap: 12px;
}
.step{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 18px;
  border: var(--border);
  background: rgba(243,246,251,0.7);
}
.step-num{
  width: 36px;
  height: 36px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #0b1b33;
  background: linear-gradient(135deg, var(--sky), #60A5FA);
}
.step-title{ font-weight: 800; }
.step-sub{ font-size: 0.92rem; color: var(--muted); }

/* Achievements */
.achievements{
  background: linear-gradient(180deg, #ffffff 0%, rgba(243,246,251,0.85) 100%);
}
.stat-card{
  border-radius: 22px;
  border: var(--border);
  background: rgba(255,255,255,0.95);
  box-shadow: var(--shadow-soft);
  padding: 18px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.stat-icon{
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(56,189,248,0.18);
  color: var(--blue);
  font-size: 1.25rem;
}
.stat-num{
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: -0.02em;
}
.stat-label{
  color: var(--muted);
  font-weight: 600;
}
.note-card{
  border-radius: 18px;
  border: var(--border);
  background: rgba(255,255,255,0.92);
  padding: 14px 16px;
  color: var(--pencil-gray);
}

/* Gallery */
.gallery-item{
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: var(--border);
  background: #fff;
  box-shadow: 0 10px 22px rgba(12,24,45,0.08);
  transition: transform .25s ease, box-shadow .25s ease;
}
.gallery-item:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.gallery-thumb{
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery-item:hover .gallery-thumb{
  transform: scale(1.06);
}
.gallery-overlay{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 14px;
  background: linear-gradient(180deg, transparent 40%, rgba(11,61,145,0.70));
}
.gallery-label{
  color: #fff;
  font-weight: 700;
}
.gallery-zoom{
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
}

/* Contact */
.contact-cards{
  display: grid;
  gap: 12px;
}
.contact-card{
  display: flex;
  gap: 12px;
  align-items: center;
  border-radius: 18px;
  border: var(--border);
  background: rgba(255,255,255,0.92);
  padding: 14px;
}
.contact-icon{
  width: 46px;
  height: 46px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(56,189,248,0.18);
  color: var(--blue);
}
.form-panel{
  border-radius: 24px;
  border: var(--border);
  background: rgba(255,255,255,0.95);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.form-panel-head{
  padding: 18px 18px 14px;
  background: linear-gradient(135deg, rgba(11,61,145,0.08), rgba(56,189,248,0.10));
}
.form-label{ font-weight: 600; color: var(--pencil-gray); }
.form-control{
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  padding: 12px 14px;
}
.form-control:focus{
  border-color: rgba(56,189,248,0.9);
  box-shadow: 0 0 0 0.25rem rgba(56,189,248,0.18);
}

/* Map */
.map-wrap{
  padding: 0 0 72px;
  background: linear-gradient(180deg, #fff 0%, rgba(243,246,251,0.85) 100%);
}
.map-card{
  border-radius: 24px;
  overflow: hidden;
  border: var(--border);
  box-shadow: var(--shadow);
}

/* Footer */
.footer{
  background: linear-gradient(180deg, rgba(43,47,56,0.98), rgba(43,47,56,0.94));
  color: rgba(255,255,255,0.88);
  padding: 58px 0 26px;
}
.footer .brand-mark{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #0b1b33;
  background: linear-gradient(135deg, var(--sky), #60A5FA);
}
.footer-title{
  font-weight: 800;
  margin-bottom: 12px;
  color: #fff;
}
.footer-text{ color: rgba(255,255,255,0.72); line-height: 1.7; }
.footer-links,
.footer-contact{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.footer-links a,
.footer-contact a{
  color: rgba(255,255,255,0.78);
}
.footer-links a:hover,
.footer-contact a:hover{
  color: #fff;
}
.footer-contact li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.footer-contact i{
  margin-top: 3px;
  color: rgba(56,189,248,0.9);
}
.footer-mini-gallery{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.footer-mini-gallery a{
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  display: block;
}
.footer-mini-gallery img{
  width: 100%;
  height: 74px;
  object-fit: cover;
  transition: transform .35s ease;
}
.footer-mini-gallery a:hover img{
  transform: scale(1.06);
}
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.10);
}

/* =========================
   Footer Logo Styling
   ========================= */

.footer-logo{
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: transform .25s ease, filter .25s ease;
}

.footer-logo:hover{
  transform: scale(1.05);
  filter: brightness(1.08);
}

/* Mobile optimization */
@media(max-width: 575px){
  .footer-logo{
    height: 50px;
  }
}


/* Floating buttons */
.float-actions{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  display: grid;
  gap: 12px;
}
.float-btn{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.20);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.16);
  transform: translateZ(0);
  transition: transform .2s ease, filter .2s ease;
}
.float-btn i{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.22);
  font-size: 1.1rem;
}
.float-label{
  font-weight: 700;
  letter-spacing: 0.2px;
  font-size: 0.95rem;
}
.float-btn:hover{
  transform: translateY(-2px);
  filter: brightness(1.02);
}
.float-whatsapp{
  background: radial-gradient(circle at 30% 30%, rgba(34,197,94,0.95), rgba(21,128,61,0.92));
  box-shadow: 0 0 0 0 rgba(34,197,94,0.45);
  animation: pulseGreen 1.8s infinite;
}
.float-call{
  background: radial-gradient(circle at 30% 30%, rgba(56,189,248,0.95), rgba(11,61,145,0.92));
  box-shadow: 0 0 0 0 rgba(56,189,248,0.45);
  animation: pulseBlue 1.8s infinite;
}

@keyframes pulseGreen{
  0%{ box-shadow: 0 0 0 0 rgba(34,197,94,0.40); }
  70%{ box-shadow: 0 0 0 18px rgba(34,197,94,0.0); }
  100%{ box-shadow: 0 0 0 0 rgba(34,197,94,0.0); }
}
@keyframes pulseBlue{
  0%{ box-shadow: 0 0 0 0 rgba(56,189,248,0.40); }
  70%{ box-shadow: 0 0 0 18px rgba(56,189,248,0.0); }
  100%{ box-shadow: 0 0 0 0 rgba(56,189,248,0.0); }
}

/* Responsive */
@media (max-width: 991px){
  .hero-strip{
    grid-template-columns: 1fr;
  }
  .why-grid{
    grid-template-columns: 1fr;
  }
}
@media(max-width:767px)
{
	.cu-mb-ds-nn{
		display:none!important
	}
}
@media (max-width: 575px){
  .section{ padding: 56px 0; }
  .gallery-thumb{ height: 200px; }
  .float-label{ display: none; } /* keeps it clean on mobile */
  .float-btn{ padding: 10px; }
}


.text-white{
    color: #fff !important;
}