:root{
  --bg1:#c9f6e9;         /* mint */
  --bg2:#a9d2ff;         /* sky */
  --ink:#0b2230;
  --muted:#4f6b7a;
  --white:#ffffff;
  --glass: rgba(255,255,255,.62);
  --glass2: rgba(255,255,255,.25);
  --stroke: rgba(255,255,255,.35);
  --shadow: 0 18px 40px rgba(11,34,48,.12);
  --shadow2: 0 10px 28px rgba(11,34,48,.10);
  --radius: 18px;
  --radius2: 24px;

  --primary:#1f8cff;
  --primary2:#29d6c8;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  /* background: linear-gradient(120deg, var(--bg1), var(--bg2)); */
}

/* ===== FIX: Mobile extra right space (horizontal overflow) ===== */
html, body{
  width: 100%;
  overflow-x: hidden;
}
img, svg, video, canvas{
  max-width: 100%;
  height: auto;
}
.container, .container-fluid{
  overflow-x: clip; /* prevents tiny overflow on mobile */
}
.hero, .carousel, .carousel-inner, .carousel-item{
  overflow-x: hidden;
}
.topbar, .topbar *{
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* ===== Helpers ===== */
.section{
  padding: 80px 0;
  position: relative;
}
.section-alt{
  background: linear-gradient(120deg, rgba(255,255,255,.35), rgba(255,255,255,.12));
  border-top: 1px solid rgba(255,255,255,.35);
  border-bottom: 1px solid rgba(255,255,255,.35);
}

.section-title.text-center p{
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.kicker{
  display:inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(120deg, rgb(241 15 15), rgb(0 59 121));
  
  border: 1px solid rgba(255,255,255,.5);
  font-weight: 600;
  letter-spacing: .3px;
  color: #fff;
  margin-bottom: 10px;
}
.section-title h2{
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  margin: 0 0 10px;
}
.section-title p{ color: var(--muted); max-width: 720px; }
.muted{ color: var(--muted); font-size: .95rem; }

/* ===== Topbar ===== */
.topbar{
  background: linear-gradient(120deg, rgba(255,255,255,.60), rgba(255,255,255,.25));
  border-bottom: 1px solid rgba(255,255,255,.35);
}
.topbar .topbar-link{
  color: rgba(11,34,48,.85);
  text-decoration: none;
  transition: .2s;
}
.topbar .topbar-link:hover{ color: var(--primary); }

/* ===== Topbar (Responsive Fix) ===== */
.topbar{
  background: #012876;
  border-bottom: 1px solid rgba(255,255,255,.35);
}

.topbar .topbar-link{
  color: rgba(11,34,48,.85);
  text-decoration: none;
  transition: .2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap; /* keeps icon + text together */
}
.topbar .topbar-link:hover{ color: var(--primary); }

.topbar-actions{
  display: flex;
  justify-content: right;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;            /* ✅ wraps nicely on mobile */
}

/* Mobile */
@media (max-width: 576px){
  .topbar{
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }

  .topbar .row{
    gap: 8px !important;
  }

  .topbar-actions{
    gap: 10px;
  }

  /* Make each link like a small pill button */
  .topbar .topbar-link{
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.55);
    border: 1px solid rgba(255,255,255,.55);
    font-size: .85rem;
  }

  /* allow email text to wrap without breaking layout */
  .topbar .topbar-link{
    white-space: normal;
    overflow-wrap: anywhere;
  }
}

/* Very small devices */
@media (max-width: 360px){
  .topbar .topbar-link{
    font-size: .72rem;
    padding: 6px 9px;
  }
}


/* ===== Header / Navbar ===== */
.header-blur{
  backdrop-filter: blur(10px);
  background: #fff;
  border-bottom: 1px solid rgba(255,255,255,.35);
}
.navbar{
  /* padding: 14px 0; */
}
.navbar-brand .brand-title{
  font-family:"Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: .2px;
  display:block;
  line-height: 1.05;
}
.navbar-brand .brand-subtitle{
  display:block;
  font-size:.82rem;
  color: rgba(11,34,48,.72);
}
.brand-mark{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: linear-gradient(135deg, rgba(31,140,255,.18), rgba(41,214,200,.22));
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: var(--shadow2);
}
.brand-mark i{
  font-size: 1.2rem;
  color: rgba(11,34,48,.85);
}
.brand-mark.sm{ width: 40px; height: 40px; border-radius: 14px; }

.navbar .nav-link{
  font-weight: 600;
  color: rgba(11,34,48,.80);
  padding: 10px 12px;
  border-radius: 999px;
  transition: .2s;
}
.navbar .nav-link:hover,
.navbar .nav-link.active{
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.55);
}

.brand-logo {
  height: 82px;        /* adjust if needed */
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-title {
  font-weight: 600;
  font-size: 1rem;
}

.brand-subtitle {
  font-size: 0.75rem;
  opacity: 0.8;
}

@media (max-width: 576px) {
  .brand-logo {
    height: 71px; 
  }

  .brand-title {
    font-size: 0.9rem;
  }

  .brand-subtitle {
    font-size: 0.65rem;
    display: none; /* hide subtitle on small screens */
  }
}


/* Buttons */
.btn{
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  box-shadow: none !important;
}
.btn-primary{
  background: linear-gradient(135deg, #033365, #d50c28);
  border: 0;
}
.btn-soft{
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(255,255,255,.6);
  color: rgba(11,34,48,.88);
}
.btn-soft:hover{ color: rgba(11,34,48,.95); background: rgba(255,255,255,.78); }
.btn-glow{
  position: relative;
}
.btn-glow::after{
  content:"";
  position:absolute; inset:-6px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 20%, rgba(41,214,200,.65), rgba(31,140,255,.25), transparent 60%);
  filter: blur(10px);
  opacity:.8;
  z-index:-1;
  pointer-events: none;
  max-width: 100%;
  max-height: 100%;
}

/* ===== Hero ===== */
.hero{ position: relative; }
.hero-slide{
  min-height: 78vh;
  display:flex;
  position: relative;
  overflow:hidden;
}
.hero-slide::before{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.35), rgba(255,255,255,0) 55%);
}
.hero-slide-1{
  background:
    /* linear-gradient(120deg, rgba(201,246,233,.85), rgba(169,210,255,.75)), */
    url("../img/banner1.webp");
  background-size: cover;
  background-position: center;
}
.hero-slide-2{
  background:
    /* linear-gradient(120deg, rgba(201,246,233,.85), rgba(169,210,255,.75)), */
    url("../img/banner2.webp");
  background-size: cover;
  background-position: center;
}
.hero-slide-3{
  background:
    /* linear-gradient(120deg, rgba(201,246,233,.85), rgba(169,210,255,.75)), */
    url("../img/banner4.webp");
  background-size: cover;
  background-position: center;
}

.hero-card{
  max-width: 720px;
  padding: 28px;
  border-radius: var(--radius2);
  background: linear-gradient(120deg, rgba(255,255,255,.65), rgba(255,255,255,.28));
  border: 1px solid rgba(255,255,255,.50);
  box-shadow: var(--shadow);
  position: relative;
}
.badge-pill{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(11,34,48,.08);
  border: 1px solid rgba(255,255,255,.35);
  font-weight: 700;
  color: rgba(11,34,48,.88);
}

.hero-strip{
  margin-top: -28px;
  padding-bottom: 20px;
}
.strip-item{
  height: 100%;
  display:flex;
  align-items:center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: linear-gradient(120deg, rgb(241 15 15), rgb(0 59 121));
  border: 1px solid rgba(255,255,255,.45);
  box-shadow: var(--shadow2);
}
.strip-item i{
  font-size: 1.4rem;
  color: rgba(11,34,48,.85);
}
.strip-title{
  font-family:"Montserrat", sans-serif;
  font-weight: 800;
}
.strip-sub{ color: var(--muted); font-size: .95rem; }

/* ===== Glass panels & cards ===== */
.glass-panel{
  border-radius: var(--radius2);
  background: linear-gradient(120deg, rgba(255,255,255,.65), rgba(255,255,255,.22));
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: var(--shadow2);
}
.icon-card{
  display:flex;
  gap: 12px;
  align-items:center;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.55);
}
.icon-card i{
  width: 44px; height: 44px;
  display:grid; place-items:center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(31,140,255,.18), rgba(41,214,200,.22));
  border: 1px solid rgba(255,255,255,.65);
}

/* About visuals */
/* ===== About image (right side) ===== */
.about-image-wrap{
  border-radius: var(--radius2);
  background: linear-gradient(120deg, rgb(241 15 15 / 75%), rgb(0 59 121 / 55%));
  border: 1px solid rgba(255,255,255,.45);
  box-shadow: var(--shadow);
  padding: 16px;
  position: relative;
  overflow: hidden;
}

/* soft gradient aura */
.about-image-wrap::after{
  content:"";
  position:absolute;
  inset:-80px;
  background:
    radial-gradient(circle at 70% 20%, rgba(41,214,200,.25), transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(31,140,255,.22), transparent 55%);
  filter: blur(10px);
  pointer-events:none;
}

/* badge stays on top */
.about-image-wrap .about-badge{
  position: relative;
  z-index: 2;
  display:inline-flex;
  align-items:center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.6);
  font-weight: 800;
  margin-bottom: 14px;
}

/* actual image */
.about-img{
  position: relative;
  z-index: 2;
  width: 100%;
  /* height: 420px; */
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: var(--shadow2);
  transition: transform .35s ease, filter .35s ease;
}

/* hover effect */
.about-image-wrap:hover .about-img{
  transform: scale(1.03);
  filter: saturate(1.05) contrast(1.02);
}

/* caption at bottom */
.about-img-caption{
  /* position: absolute; */
  text-align:center;
  left: 24px;
  right: 24px;
  bottom: 3px;
  z-index: 3;
  padding: 12px 14px;
  border-radius: 16px;
  color: rgba(255,255,255,.95);
  font-weight: 700;
  margin-top:20px;
  background: #c02225;
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
}

/* responsive image height */
@media (max-width: 991px){
  .about-img{ /*height: 360px; */}
}
@media (max-width: 575px){
  .about-img{ /*height: 280px; */}
  .about-img-caption{
    left: 16px;
    right: 16px;
    bottom: 16px;
    font-size: .92rem;
  }
}


/* Services */
/* ===== Services (with image + icon rotation) ===== */
.service-card{
  height: 100%;
  border-radius: var(--radius2);
  background: linear-gradient(120deg, rgba(255,255,255,.62), rgba(255,255,255,.20));
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: var(--shadow2);
  transition: transform .22s ease, box-shadow .22s ease;
  position: relative;
  overflow:hidden;
}

.service-card::after{
  content:"";
  position:absolute;
  width: 180px; height:180px;
  right: -90px; top:-90px;
  background: radial-gradient(circle, rgba(41,214,200,.25), rgba(31,140,255,.10), transparent 60%);
  filter: blur(4px);
  pointer-events: none;
  max-width: 100%;
  max-height: 100%;
}

.service-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(11,34,48,.14);
}

/* image wrapper */
.service-media{
  position: relative;
  border-radius: calc(var(--radius2) - 2px);
  overflow: hidden;
}

/* service image */
.service-img{
  width: 100%;
  /* height: 190px; */
  object-fit: cover;
  display:block;
  transform: scale(1.01);
  transition: transform .35s ease, filter .35s ease;
}

/* dark gradient overlay on image for premium look */
.service-media::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(11,34,48,.05), rgba(11,34,48,.35));
  pointer-events:none;
}

/* icon positioned top-left over image */
.service-icon{
  position: absolute;
  top: 14px;
  left: 14px;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display:grid;
  place-items:center;

  background: linear-gradient(135deg, rgba(31,140,255,.85), rgba(41,214,200,.85));
  border: 1px solid rgba(255,255,255,.65);
  box-shadow: 0 12px 24px rgba(0,0,0,.18);

  z-index: 2;
  transition: transform .55s ease;
}

.service-icon i{
  font-size: 1.35rem;
  color: #fff;
}

/* 360° rotation on hover */
.service-card:hover .service-icon{
  transform: rotate(360deg);
}

/* image zoom on hover */
.service-card:hover .service-img{
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.03);
}

/* body spacing */
.service-body{
  padding: 18px 22px 22px;
}

.service-card h5{
  font-family:"Montserrat", sans-serif;
  font-weight: 800;
  margin-bottom: 8px;
}

.service-card p{
  color: var(--muted);
  margin-bottom: 0;
}

/* responsive */
@media (max-width: 575px){
  .service-img{ height: 170px; }
  .service-body{ padding: 16px 18px 18px; }
  .service-icon{
    width: 46px;
    height: 46px;
    border-radius: 16px;
  }
  .service-icon i{ font-size: 1.2rem; }
}


/* Why */
.why-cards{ display:grid; gap: 12px; }
.why-card{
  display:flex;
  align-items:flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: var(--shadow2);
}
.why-card i{
  width: 44px; height: 44px;
  display:grid; place-items:center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(31,140,255,.18), rgba(41,214,200,.24));
  border: 1px solid rgba(255,255,255,.65);
}

/* Stats */
.stat-card{
  text-align:center;
  padding: 22px 14px;
  border-radius: var(--radius2);
  background: linear-gradient(120deg, rgb(241 15 15), rgb(0 59 121));
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: var(--shadow2);
}
.stat-icon{
  width: 56px; height: 56px;
  margin: 0 auto 12px;
  border-radius: 20px;
  display:grid;
  place-items:center;
  background: linear-gradient(135deg, rgba(31,140,255,.20), rgba(41,214,200,.28));
  border: 1px solid rgba(255,255,255,.65);
}
.stat-icon i{ font-size: 1.4rem; color:#fff;}
.stat-number{
  font-family:"Montserrat", sans-serif;
  font-weight: 900;
  font-size: 2rem;
  line-height: 1.1;
  color:#fff;
}
.stat-label{ color: #fff; font-weight: 600; }

/* Gallery */
.gallery-item{
  border-radius: 18px;
  overflow:hidden;
  position: relative;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: var(--shadow2);
}
.gallery-item img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  display:block;
  transition: .25s;
}
.gallery-item:hover img{ transform: scale(1.06); }
.gallery-overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 35%, rgba(11,34,48,.55));
  opacity: 0;
  transition: .25s;
}
.gallery-item:hover .gallery-overlay{ opacity: 1; }
.gallery-label{
  position:absolute;
  left: 12px; bottom: 21px;
  color: #fff;
  font-weight: 800;
  font-family:"Montserrat", sans-serif;
  letter-spacing: .2px;
  font-size: .95rem;
}

/* Contact */
.contact-cards{ display:grid; gap: 12px; }
.contact-card{
  display:flex;
  gap: 12px;
  align-items:center;
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(120deg, rgb(241 15 15), rgb(0 59 121));
  border: 1px solid rgba(255,255,255,.55);
  text-decoration:none;
  color: rgba(11,34,48,.92);
  box-shadow: var(--shadow2);
  transition: .2s;
}
.contact-card:hover{ transform: translateY(-2px); color: rgba(11,34,48,.96); }
.contact-card.no-hover:hover{ transform:none; }
.contact-card i{
  width: 46px; height: 46px;
  display:grid; place-items:center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(31,140,255,.18), rgba(41,214,200,.26));
  border: 1px solid rgba(255,255,255,.65);
}
.form-control, .form-select{
  border-radius: 14px;
  border: 1px solid rgba(11,34,48,.10);
  background: rgba(255,255,255,.72);
}
.form-control:focus, .form-select:focus{
  border-color: rgba(31,140,255,.45);
  box-shadow: 0 0 0 .25rem rgba(31,140,255,.12);
}
.form-msg{
  font-weight: 600;
  color: rgba(11,34,48,.85);
}

/* Map */
.map-wrap{ padding: 40px 0 80px; }
.map-card{
  border-radius: var(--radius2);
  background: linear-gradient(120deg, rgba(255,255,255,.62), rgba(255,255,255,.18));
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.map-title{
  padding: 16px 18px;
  font-family:"Montserrat", sans-serif;
  font-weight: 900;
  border-bottom: 1px solid rgba(255,255,255,.55);
}
.map-frame iframe{ width:100%; height:100%; border:0; }

/* Footer */
.footer{
  padding: 60px 0 20px;
  background: linear-gradient(120deg, rgb(241 15 15), rgb(0 59 121));
  color: rgba(255,255,255,.88);
}
.footer-head{
  font-family:"Montserrat", sans-serif;
  font-weight: 900;
  margin-bottom: 14px;
  background: #002b59;
    padding: 4px;
    border-top-right-radius: 20px;
}
.footer-brand{
  display:flex;
  gap: 12px;
  align-items:center;
}
.footer-title{
  font-family:"Montserrat", sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
}
.footer-sub{ opacity:.85; font-size:.92rem; }
.footer-text{ opacity:.85; }
.footer-links, .footer-contact{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap: 10px;
}
.footer a{
  color: rgba(255,255,255,.88);
  text-decoration:none;
  opacity:.9;
}
.footer a:hover{ opacity: 1; text-decoration: underline; }
.footer-contact i{ margin-right: 8px; opacity:.9; }
.footer-social{
  display:flex;
  gap: 10px;
  margin-top: 12px;
}
.footer-social a{
  width: 40px; height: 40px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  text-decoration:none;
}
.footer-bottom{
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.18);
  display:flex;
  /* justify-content: space-between; */
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 12px;
  flex-wrap: wrap;
  opacity: .9;
}

.footer-logo {
  height: 40px;
  width: auto;
}

.footer-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.footer-title {
  font-weight: 600;
  font-size: 0.95rem;
}

.footer-sub {
  font-size: 0.75rem;
  opacity: 0.8;
}


/* Floating buttons (desktop/tablet default) */
.floating-actions{
  position: fixed;
  right: calc(16px + env(safe-area-inset-right));
  bottom: calc(16px + env(safe-area-inset-bottom));
  display:flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.float-btn{
  width: 56px;
  height: 56px;
  border-radius: 20px;
  display:grid;
  place-items:center;
  color: #fff;
  text-decoration:none;
  position: relative;
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: var(--shadow);
  overflow:hidden;
  -webkit-tap-highlight-color: transparent;
}
.float-btn i{ font-size: 1.35rem; }

.float-btn.call{
  background: linear-gradient(135deg, #1f8cff, #29d6c8);
}
.float-btn.wa{
  background: linear-gradient(135deg, #25D366, #1fbf87);
}

/* Glow */
.float-btn::after{
  content:"";
  position:absolute;
  inset:-10px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.55), transparent 55%);
  filter: blur(10px);
  opacity: .9;
  animation: pulseGlow 2.2s infinite ease-in-out;
  pointer-events: none;
  max-width: 100%;
  max-height: 100%;
}

/* ✅ Mobile / small screens: compact */
@media (max-width: 576px){
  .floating-actions{
    right: calc(10px + env(safe-area-inset-right));
    bottom: calc(10px + env(safe-area-inset-bottom));
    flex-direction: row;
    gap: 10px;
  }
  .float-btn{
    width: 46px;
    height: 46px;
    border-radius: 16px;
    box-shadow: 0 12px 24px rgba(11,34,48,.12);
  }
  .float-btn i{ font-size: 1.15rem; }
  .float-btn::after{
    inset: -8px;
    filter: blur(8px);
    opacity: .75;
  }

  /* brand text clamp to avoid pushing width */
  .brand-text{ max-width: 210px; }
  .navbar-brand .brand-title{ font-size: 1.05rem; }
  .navbar-brand .brand-subtitle{ font-size: .72rem; }
}

/* ✅ Extra-small devices */
@media (max-width: 360px){
  .floating-actions{
    right: calc(8px + env(safe-area-inset-right));
    bottom: calc(8px + env(safe-area-inset-bottom));
    gap: 8px;
  }
  .float-btn{
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }
  .float-btn i{ font-size: 1.05rem; }
}

/* Carousel controls tweaks */
.carousel-control-prev-icon, .carousel-control-next-icon{
  filter: drop-shadow(0 8px 12px rgba(0,0,0,.25));
}
#cal-icon {
    position: fixed;
    right: -1px;
    bottom: 228px;
    width: 70px;
    height: 70px;
    cursor: pointer;
    z-index: 99990;
}
#cal-icon img {
    width: 50px !important;
}
.whatsup {
    position: fixed;
    right: 15px;
    width: 50px;
    bottom: 160px;
    z-index: 99;
}
	#why{
		background:linear-gradient(120deg, rgb(241 15 15), rgb(0 59 121))
	}
	.cu-glry{
		margin-bottom:30px;
	}
	.cu-glry img{
		border-top:4px solid blue;
		border-right:4px solid blue;
		border-bottom:4px solid red;
		border-left:4px solid red;
	}
	.cu-bder-btm li{
		border-bottom:1px dashed #fff
	}
	.cu-fn-eml-12{
		font-size:14px;
	}
	#enu-st{
		background: linear-gradient(135deg, #033365, #d50c28);
		display:block;
		width:100%;
		padding:7px;
		color:#fff;
	}
/* Responsive */
@media (max-width: 991px){
  .hero-card{ padding: 22px; }
  .hero-slide{ min-height: 72vh; }
  .sticky-top{
	  position:relative;
  }
}
@media(max-width:768px)
{
	.mb-ds-nn{
		display:none!important
	}
}
@media(max-width:767px)
{
	.cu-fnt-s-btn{
		font-size:12px!important;
	}
	
}
@media (max-width: 575px){
  .section{ padding: 64px 0; }
  .hero-slide{ min-height: 70vh; }
  .about-grid{ grid-template-columns: 1fr; }
  .gallery-item img{ height: 200px; }
}
@media(max-width:420px)
{
	.cu-bn-tt-ds{
		display:none!important
	}
}
