:root {
  --navy: #0c2e4a;
  --navy-2: #0a3b63;
  --slate: #1c2430;
  --gray: #eef2f6;
  --gray-2: #cfd6df;
  --white: #ffffff;
  --accent: #4aa3ff;
  --shadow: 0 18px 45px rgba(12, 46, 74, .18);
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--slate);
  background: #fff;
  overflow-x: hidden;
}

/* Utilities */
.fw-extrabold {
  font-weight: 800
}

.section {
  padding: 80px 0
}

.section-alt {
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%)
}

.kicker {
  display: inline-block;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .75rem;
  color: rgba(12, 46, 74, .72);
  background: rgba(12, 46, 74, .08);
  padding: .45rem .75rem;
  border-radius: 999px;
}

.section-title h2 {
  color: var(--navy)
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .8s ease, transform .8s ease
}

.reveal.in {
  opacity: 1;
  transform: none
}

/* Topbar */
.topbar {
  background: linear-gradient(90deg, var(--navy), var(--navy-2));
  color: rgba(255, 255, 255, .9);
}

.topbar-link {
  color: rgba(255, 255, 255, .92);
  text-decoration: none;
  font-weight: 700;
}

.topbar-link:hover {
  color: #fff;
  text-decoration: underline
}

.topbar-text {
  color: rgba(255, 255, 255, .85);
  font-weight: 600
}

.topbar i {
  margin-right: .4rem
}

/* Icon buttons */
.icon-btn {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}

.icon-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .18);
  color: #fff
}

/* Navbar */
.nav-glass {
  background: rgba(12, 46, 74, .92);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
}

.navbar .nav-link {
  color: rgba(255, 255, 255, .88);
  font-weight: 700;
  border-radius: 14px;
  padding: .6rem .85rem;
}

.navbar .nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, .10)
}

.navbar .nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, .16)
}

.brand-logo {
  width: 100%;
  height: 80px;
  object-fit: contain;
  border-radius: 10px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .14);
  display: grid;
  place-items: center;
  position: relative;
}

.brand-dot {
  width: 18px;
  height: 18px;
  border-radius: 8px;
  background: linear-gradient(135deg, #5bbcff, #2f7cff);
  box-shadow: 0 10px 25px rgba(74, 163, 255, .35);
}

.brand-name {
  font-weight: 900;
  letter-spacing: .02em
}

.brand-tag {
  color: rgba(255, 255, 255, .75);
  font-weight: 700
}

/* Buttons */
.btn-elm {
  background: linear-gradient(135deg, #2f7cff, #5bbcff);
  color: #fff;
  border: 0;
  border-radius: 16px;
  padding: .8rem 1.1rem;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(47, 124, 255, .25);
}

.btn-elm:hover {
  color: #fff;
  filter: saturate(1.05);
  transform: translateY(-1px)
}

.btn-elm:active {
  transform: translateY(0)
}

.btn-elm-outline {
  border: 2px solid rgba(47, 124, 255, .35);
  color: var(--navy);
  background: #fff;
  border-radius: 16px;
  padding: .75rem 1.05rem;
  font-weight: 800;
}

.btn-elm-outline:hover {
  background: rgba(47, 124, 255, .06);
  color: var(--navy)
}

.btn-elm-sm {
  padding: .65rem 1rem;
  border-radius: 14px
}

/* Hero */
.hero { position: relative; overflow: hidden; }

.hero-img{
  height: 78vh;
  min-height: 560px;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.05);
}

.hero #elmCarousel .carousel-item{ position: relative; }
.hero #elmCarousel .carousel-item > img{ position: relative; z-index: 1; }

.hero #elmCarousel .carousel-item::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:2;
  pointer-events:none;
  background: linear-gradient(90deg,
    rgba(12,46,74,.58) 0%,
    rgba(12,46,74,.38) 35%,
    rgba(12,46,74,.18) 65%,
    rgba(12,46,74,.05) 85%,
    rgba(12,46,74,0) 100%
  );
}

/* caption */
.hero-cap{
  position:absolute;
  inset:0;
  z-index:3;
  display:flex;
  align-items:center;          /* vertical center */
  justify-content:center;      /* horizontal center */
  padding: 2rem 1rem;          /* safe padding for mobile */
  text-align:left;
}

/* card */
.hero-card{
  width: 100%;
  max-width: 880px;
  height: auto;                /* ✅ remove fixed height */
  margin-left: 155px;
  background: rgba(12, 46, 74, 0.26);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  border-radius: 26px;
  padding: 42px 46px;
  z-index: 4;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 30px 75px rgba(0,0,0,.45);
  color:#fff;
}

/* text sizes */
.hero-card h1,
.hero-card h2{
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: .6rem;
}

.hero-card p.lead{
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.6;
  margin-bottom: 1.1rem;
}

/* button alignment */
.hero-card .d-flex{ justify-content:flex-start; }

/* slide 4 right-text fix */
.text-right{
  text-align: right;
  margin-right: 15rem;  /* ✅ remove 52px margin */
}

/* ✅ MOBILE FIX */
@media (max-width: 991px){
  .hero-img{
    height: 70vh;
    min-height: 460px;
  }

  .hero-cap{
    padding: 1.25rem 1rem;
  }

  .hero-card{
    max-width: 92%;
    padding: 28px 20px;
    border-radius: 22px;
    box-shadow: 0 22px 55px rgba(0,0,0,.38);
  }

  /* Keep text left but cleaner spacing */
  .hero-card h1,
  .hero-card h2{
    font-size: clamp(1.55rem, 5.5vw, 2.2rem);
  }

  .hero-card p.lead{
    font-size: 1rem;
  }

  /* Buttons wrap nicely */
  .hero-card .d-flex{
    gap: .6rem !important;
    justify-content: flex-start;
  }

  /* Avoid overflow */
  .carousel-control-prev,
  .carousel-control-next{
    width: 12%;
  }

  .hero-card{
  width: 100%;
  max-width: 880px;
  height: auto;                /* ✅ remove fixed height */
  margin-left: 0px;
  background: rgba(12, 46, 74, 0.26);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  border-radius: 26px;
  padding: 42px 46px;
  z-index: 4;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 30px 75px rgba(0,0,0,.45);
  color:#fff;
}

.text-right{
  text-align: right;
  margin-right: 0rem;  /* ✅ remove 52px margin */
}
  
}



/* ✅ EXTRA SMALL MOBILES */
@media (max-width: 480px){
  .hero-img{
    height: 68vh;
    min-height: 420px;
  }

  .hero-card{
    max-width: 94%;
    padding: 22px 16px;
  }

  .hero-card h1,
  .hero-card h2{
    font-size: 1.45rem;
  }

  .hero-card p.lead{
    font-size: .95rem;
  }

.hero-card{
  width: 100%;
  max-width: 880px;
  height: auto;                /* ✅ remove fixed height */
  margin-left: 0px;
  background: rgba(12, 46, 74, 0.26);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  border-radius: 26px;
  padding: 42px 46px;
  z-index: 4;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 30px 75px rgba(0,0,0,.45);
  color:#fff;
}

.text-right{
  text-align: right;
  margin-right: 0rem;  /* ✅ remove 52px margin */
}

}


.mini-card {
  background: #fff;
  border-radius: 22px;
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: 0 18px 40px rgba(12, 46, 74, .12);
  border: 1px solid rgba(12, 46, 74, .08);
}

.mini-card i {
  color: var(--navy)
}

/* Cards */
.feature-card,
.service-card,
.counter-card,
.contact-card,
.form-card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(12, 46, 74, .08);
  box-shadow: 0 18px 40px rgba(12, 46, 74, .10);
}

.feature-card {
  padding: 18px
}

.feature-card i {
  font-size: 1.4rem;
  color: var(--navy)
}

.service-card {
  padding: 22px;
  height: 100%
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(12, 46, 74, .08);
  color: var(--navy);
  margin-bottom: 14px;
  font-size: 1.4rem;
}



/* ===== Services Section Cards (Image + Rotating Icon) ===== */




.service-card {
  position: relative;
  padding: 22px;
  height: 100%;
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(12, 46, 74, .08);
  box-shadow: 0 18px 40px rgba(12, 46, 74, .10);
  transition: transform .35s ease, box-shadow .35s ease;
  overflow: hidden;
  text-align: center;
}

/* Lift + shadow on hover */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(12, 46, 74, .18);
}

/* Image wrapper */
.service-img {
  width: 100%;
  height: 300px;
  border-radius: 18px;
  overflow: hidden;
}

/* Image */
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

/* Image zoom on hover */
.service-card:hover .service-img img {
  transform: scale(1.08);
}

/* Icon container */
.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin: -32px auto 0;
  /* pulls icon over image (clean overlap) */
  position: relative;
  z-index: 2;

  background: linear-gradient(135deg, #2f7cff, #5bbcff);
  color: #fff;
  font-size: 1.65rem;

  box-shadow: 0 16px 36px rgba(47, 124, 255, .35);
  transition: transform .65s ease;
  border: 3px solid #fff;
  /* makes overlap look premium */
}

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

/* Nice spacing for text */
.service-card h5 {
  margin-top: 16px;
}

/* Responsive adjustments */
@media (max-width: 575.98px) {
  .service-img {
    height: 275px;
  }

  .service-icon {
    width: 58px;
    height: 58px;
    margin-top: -28px;
    font-size: 1.45rem;
  }
}


   .process-step{
      background:#fff;
      border-radius:20px;
      padding:22px;
      border:1px solid rgba(12,46,74,.08);
      height:100%;
      text-align:center;
    }
    .step-num{
      font-weight:900;
      font-size:2rem;
      color:#2f7cff;
    }

    .cta{
      background:linear-gradient(135deg,#0c2e4a,#163f63);
      color:#fff;
      padding:70px 0;
    }


/* About visuals */
.about-visual {
  position: relative;
  min-height: 420px
}

.about-panel {
  position: relative;
  background: linear-gradient(180deg, rgba(12, 46, 74, .06), rgba(12, 46, 74, .03));
  border: 1px solid rgba(12, 46, 74, .12);
  border-radius: 26px;
  padding: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.about-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 20px;
  padding: 14px 16px;
  border: 1px solid rgba(12, 46, 74, .10);
  width: max-content;
}

.about-badge i {
  font-size: 1.4rem;
  color: var(--navy)
}

.about-stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0;
}

.stat {
  flex: 1;
  min-width: 120px;
  background: #fff;
  border: 1px solid rgba(12, 46, 74, .10);
  border-radius: 20px;
  padding: 14px;
}

.stat-num {
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--navy);
}

.stat-label {
  color: rgba(28, 36, 48, .7);
  font-weight: 700;
  font-size: .9rem;
}

.about-lines .line-item {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  font-weight: 700;
  color: rgba(28, 36, 48, .85);
}

.about-lines i {
  color: var(--navy)
}


/* Replace cards with image but keep same panel design */
.about-media {
  width: 100%;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(12, 46, 74, .10);
  background: #fff;
}

.about-media-img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  /* keeps panel height nice */
  object-fit: cover;
  /* fills area perfectly */
  display: block;
  transition: transform .45s ease;
}

/* Optional: nice hover zoom effect */
.about-panel:hover .about-media-img {
  transform: scale(1.05);
}

/* Keep same height behavior on mobile */
@media (max-width: 991px) {
  .about-visual {
    min-height: auto;
  }

  .about-media-img {
    min-height: 280px;
  }
}



/* Why */
.why-list {
  display: grid;
  gap: 14px
}

.why-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  background: #fff;
  border-radius: 22px;
  border: 1px solid rgba(12, 46, 74, .08);
  box-shadow: 0 18px 40px rgba(12, 46, 74, .08);
}

.why-icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(47, 124, 255, .10);
  color: var(--navy);
  font-weight: 900;
}

.why-visual {
  position: relative;
  min-height: 380px
}

.glass-card {
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(12, 46, 74, .12);
  border-radius: 26px;
  padding: 22px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.tag {
  font-weight: 900;
  color: var(--navy);
  background: rgba(12, 46, 74, .08);
  padding: .35rem .7rem;
  border-radius: 999px;
  border: 1px solid rgba(12, 46, 74, .10);
}

.loc {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
}

.loc i {
  font-size: 1.25rem;
  color: var(--navy)
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: .5rem .75rem;
  border-radius: 999px;
  background: rgba(12, 46, 74, .06);
  border: 1px solid rgba(12, 46, 74, .10);
  font-weight: 800;
  color: rgba(12, 46, 74, .9);
}



    /* Why Choose */
    .why-card{
      background:#fff;
      border-radius:22px;
      padding:18px;
      border:1px solid rgba(12,46,74,.08);
      box-shadow:0 16px 34px rgba(12,46,74,.10);
      height:100%;
      transition:transform .35s ease, box-shadow .35s ease;
    }
    .why-card:hover{
      transform:translateY(-8px);
      box-shadow:0 26px 55px rgba(12,46,74,.16);
    }
    .why-ico{
      width:58px; height:58px;
      border-radius:18px;
      display:grid; place-items:center;
      background:linear-gradient(135deg,#2f7cff,#5bbcff);
      color:#fff;
      font-size:1.5rem;
      box-shadow:0 14px 30px rgba(47,124,255,.32);
      margin-bottom:12px;
    }


/* Counters */
.counter-card {
  padding: 22px;
  text-align: center;
  height: 100%;
}

.counter-card i {
  font-size: 1.8rem;
  color: var(--navy)
}

.counter {
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
  margin-top: 6px;
}

.counter-label {
  color: rgba(28, 36, 48, .7);
  font-weight: 800
}

/* Trusted Brands Carousel */
.brand-card{
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(12,46,74,.10);
  box-shadow: 0 16px 34px rgba(12,46,74,.10);
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  transition: transform .35s ease, box-shadow .35s ease;
}

.brand-card img{
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .85;
  transition: filter .35s ease, opacity .35s ease, transform .35s ease;
}

/* Hover effect */
.brand-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(12,46,74,.18);
}
.brand-card:hover img{
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}



/* Contact */
.contact-card {
  padding: 22px;
  height: 100%
}

.form-card {
  padding: 22px;
  height: 100%
}

.contact-line {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
}

.contact-ico {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(12, 46, 74, .08);
  color: var(--navy);
  font-size: 1.2rem;
}

.contact-link {
  font-weight: 800;
  text-decoration: none;
  color: var(--navy)
}

.contact-link:hover {
  text-decoration: underline
}

.note {
  background: rgba(47, 124, 255, .08);
  border: 1px solid rgba(47, 124, 255, .20);
  border-radius: 18px;
  padding: 12px 14px;
  font-weight: 700;
  color: rgba(12, 46, 74, .9);
}

.form-control {
  border-radius: 18px;
  border: 1px solid rgba(12, 46, 74, .14);
  font-weight: 700;
}

.form-control:focus {
  border-color: rgba(47, 124, 255, .6);
  box-shadow: 0 0 0 .25rem rgba(47, 124, 255, .12);
}

.form-toast {
  display: none;
  padding: 12px 14px;
  border-radius: 18px;
  font-weight: 800;
}

.mail-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 10px 22px;
  margin-top: 12px;

  background: #f2f4f7; /* light gray */
  color: #0c2e4a;

  font-size: 01rem;
  font-weight: 600;
  text-decoration: none;

  border-radius: 999px; /* fully curved */
  border: 1px solid rgba(12, 46, 74, 0.12);

  box-shadow:
    0 8px 20px rgba(12, 46, 74, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);

  transition: all 0.25s ease;
}

.mail-cta-btn i {
  color: #0c2e4a;
}

.mail-cta-btn:hover {
  background: #ffffff;
  box-shadow:
    0 12px 28px rgba(12, 46, 74, 0.18);
  transform: translateY(-2px);
  text-decoration: none;
  color: #0c2e4a;
}


/* Map */
.map-wrap {
  height: 420px;
  width: 100%;
  background: #fff;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(.25) contrast(1.02);
}
    /* Map */
    .map-card{
      border-radius:26px;
      overflow:hidden;
      border:1px solid rgba(12,46,74,.10);
      box-shadow:0 20px 50px rgba(12,46,74,.12);
    }
    .map-card iframe{width:100%; height:420px; border:0}


/* Footer */
.footer {
  background: linear-gradient(180deg, #0c2e4a 0%, #071d2f 100%);
  color: #fff;
}

/* Footer logo */
.footer-logo{
  max-width: 220px;
  height: auto;
  display: block;
}

/* Center logo on mobile */
@media (max-width: 767px){
  .footer-logo{
    margin: 0 auto;
  }
}


.footer .text-muted {
  color: rgba(255, 255, 255, .7) !important
}

.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, .85);
  text-decoration: none;
  font-weight: 800;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #fff;
  text-decoration: underline
}

.footer-contact i {
  margin-right: 10px
}

.footer-hr {
  border-color: rgba(255, 255, 255, .15)
}


.footer-connect li {
  color: #eaf2ff;
  font-size: 0.95rem;
}

.footer-connect i {
  color: #7fb7ff;
}

.icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
}

.icon-btn:hover {
  background: #0d6efd;
  color: #fff;
  transform: translateY(-2px);
}


/* Floating actions */
.float-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 10px;
  z-index: 999;
}

.fab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 18px;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .20);
  transform: translateZ(0);
  position: relative;
  overflow: hidden;
}

.fab i {
  font-size: 1.25rem
}

.fab::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(255, 255, 255, .25) 0%, rgba(255, 255, 255, 0) 60%);
  transform: translateX(-30%);
  animation: glow 2.2s infinite ease-in-out;
}

@keyframes glow {
  0% {
    transform: translateX(-40%)
  }

  50% {
    transform: translateX(40%)
  }

  100% {
    transform: translateX(-40%)
  }
}

.fab-whatsapp {
  background: linear-gradient(135deg, #22c55e, #16a34a)
}

.fab-call {
  background: linear-gradient(135deg, #2f7cff, #5bbcff)
}

.fab-text {
  position: relative;
  z-index: 1
}

.fab i {
  position: relative;
  z-index: 1
}

/* Back to top */
.back-to-top {
  position: fixed;
  left: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  border-radius: 18px;
  border: 1px solid rgba(12, 46, 74, .18);
  background: #fff;
  color: var(--navy);
  box-shadow: 0 18px 40px rgba(12, 46, 74, .12);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-2px)
}

/* Decorative blobs */
.blob {
  position: absolute;
  border-radius: 36px;
  filter: blur(0);
  opacity: .85;
  z-index: -1;
}

.blob-1 {
  width: 220px;
  height: 220px;
  right: -18px;
  top: -20px;
  background: linear-gradient(135deg, rgba(47, 124, 255, .22), rgba(12, 46, 74, .10));
}

.blob-2 {
  width: 180px;
  height: 180px;
  left: -24px;
  bottom: -30px;
  background: linear-gradient(135deg, rgba(12, 46, 74, .18), rgba(47, 124, 255, .10));
}

.blob-3 {
  width: 240px;
  height: 240px;
  right: -30px;
  bottom: -40px;
  background: linear-gradient(135deg, rgba(47, 124, 255, .22), rgba(12, 46, 74, .12));
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .section {
    padding: 64px 0
  }

  .hero-img {
    height: 72vh;
    min-height: 520px
  }

  .hero-cap {
    padding-bottom: 6.5rem
  }

  .hero-card {
    border-radius: 22px;
    padding: 22px
  }
}

@media (max-width: 575.98px) {
  .hero-img {
    height: 70vh;
    min-height: 500px
  }

  .hero-card .display-6 {
    font-size: 1.6rem
  }

  .mini-card {
    border-radius: 20px
  }

  .fab {
    border-radius: 16px
  }
}




.mrq {
    background: #0c2e4a;;
    color: #fff;
    font-weight: 800;
    padding: 5px;
}


/* Banner */
    .page-banner{
      position:relative;
      min-height: 46vh;
      background:#0c2e4a;
      overflow:hidden;
      display:flex;
      align-items:center;
      color:#fff;
    }
    .page-banner img{
      position:absolute; inset:0;
      width:100%; height:100%;
      object-fit:cover;
      filter:contrast(1.05) saturate(1.05);
      opacity:.9;
    }
    .page-banner::after{
      content:"";
      position:absolute; inset:0;
      background:linear-gradient(90deg, rgba(12,46,74,.90) 0%, rgba(12,46,74,.65) 45%, rgba(12,46,74,.25) 70%, rgba(12,46,74,0) 100%);
    }
    .page-banner .container{position:relative; z-index:2}
    .crumbs a{color:#dbe9ff; text-decoration:none}
    .crumbs a:hover{text-decoration:underline}
	.cu-clr-pr{
		color:#fff;
	}