/* ==========================================================================
   INDRAFLEX — PREMIUM HEADER & FOOTER
   Palette derived from assets/img/logo.png
   -------------------------------------------------------------------------
   --ifp-navy      #041B4A  deep navy   (dominant logo colour)
   --ifp-navy-dark #020D29  ink navy    (footer / darkest surface)
   --ifp-navy-soft #0B2F6B  soft navy   (secondary surfaces, gradients)
   --ifp-blue      #1373E6  vibrant blue(logo gradient highlight)
   --ifp-magenta   #D6146F  magenta     (logo accent mark — used sparingly)
   ========================================================================== */

:root {
  --ifp-navy: #041b4a;
  --ifp-navy-dark: #020d29;
  --ifp-navy-soft: #0b2f6b;
  --ifp-blue: #1373e6;
  --ifp-blue-light: #eaf2fd;
  --ifp-magenta: #d6146f;
  --ifp-white: #ffffff;
  --ifp-gray: #5b6b85;
  --ifp-gray-light: #f5f7fa;
  --ifp-border: #e7ecf3;
  --ifp-font: "Poppins", sans-serif;
  --ifp-radius: 14px;
  --ifp-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   0. SIGNATURE — PRESS COLOUR-SEPARATION STRIP
   A hairline strip in the brand's three inks, echoing the registration
   bars printers use to check colour alignment on a press sheet.
   ========================================================================== */
.ifp-press-strip {
  height: 4px;
  width: 100%;
  background: linear-gradient(
    90deg,
    var(--ifp-navy) 0%,
    var(--ifp-navy) 33.3%,
    var(--ifp-blue) 33.3%,
    var(--ifp-blue) 66.6%,
    var(--ifp-magenta) 66.6%,
    var(--ifp-magenta) 100%
  );
}

/* ==========================================================================
   1. TOP BAR
   ========================================================================== */
.ifp-topbar {
  background: var(--ifp-navy-dark);
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--ifp-font);
  font-size: 13px;
  letter-spacing: 0.2px;
}

.ifp-topbar-info li a,
.ifp-topbar-info li span {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 0.25s var(--ifp-ease);
}

.ifp-topbar-info li a:hover {
  color: var(--ifp-blue);
}

.ifp-topbar-info i {
  color: var(--ifp-blue);
  font-size: 13px;
}

.ifp-topbar-social a {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  text-decoration: none;
  transition: all 0.25s var(--ifp-ease);
}

.ifp-topbar-social a:hover {
  background: var(--ifp-blue);
  color: var(--ifp-white);
  transform: translateY(-2px);
}

.ifp-btn-topquote {
  background: transparent;
  color: var(--ifp-white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50px;
  font-family: var(--ifp-font);
  font-weight: 500;
  font-size: 12px;
  padding: 5px 16px;
  letter-spacing: 0.3px;
  transition: all 0.25s var(--ifp-ease);
}

.ifp-btn-topquote:hover {
  background: var(--ifp-blue);
  border-color: var(--ifp-blue);
  color: var(--ifp-white);
}

/* ==========================================================================
   2. MAIN HEADER / NAVBAR
   ========================================================================== */
.ifp-mainnav {
  background: var(--ifp-white);
  font-family: var(--ifp-font);
  padding: 14px 0;
  box-shadow: 0 6px 30px rgba(4, 27, 74, 0.07);
  z-index: 1030;
}

.ifp-logo {
  height: 58px;
  width: auto;
  object-fit: contain;
}

.ifp-mainnav .navbar-nav {
  gap: 4px;
}

.ifp-mainnav .nav-link {
  position: relative;
  color: var(--ifp-navy);
  font-weight: 500;
  font-size: 14.5px;
  padding: 10px 16px !important;
  transition: color 0.25s var(--ifp-ease);
}

.ifp-mainnav .nav-link::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 2px;
  background: linear-gradient(90deg, var(--ifp-blue), var(--ifp-magenta));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ifp-ease);
  border-radius: 2px;
}

.ifp-mainnav .nav-link:hover {
  color: var(--ifp-blue);
}

.ifp-mainnav .nav-link:hover::after {
  transform: scaleX(1);
}

.ifp-mainnav .nav-item.active .nav-link {
  color: var(--ifp-blue);
  font-weight: 600;
}

.ifp-mainnav .nav-item.active .nav-link::after {
  transform: scaleX(1);
}

/* Mobile toggler — Bootstrap Icon instead of default icon */
.ifp-toggler {
  border: 1px solid var(--ifp-border);
  border-radius: 8px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ifp-navy);
  font-size: 22px;
  background: var(--ifp-gray-light);
  transition: all 0.25s var(--ifp-ease);
}

.ifp-toggler:focus {
  box-shadow: 0 0 0 3px var(--ifp-blue-light);
  outline: none;
}

/* Premium CTA button with printer's registration-mark corners */
.ifp-btn-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ifp-navy);
  color: var(--ifp-white) !important;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 12px 26px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(4, 27, 74, 0.18);
  transition: all 0.3s var(--ifp-ease);
}

.ifp-btn-cta:hover {
  background: var(--ifp-blue);
  color: var(--ifp-white) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(19, 115, 230, 0.3);
}

.ifp-cta-mark {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ifp-magenta);
  display: inline-block;
  transition: transform 0.3s var(--ifp-ease);
}

.ifp-btn-cta:hover .ifp-cta-mark {
  transform: scale(1.4);
}

/* ==========================================================================
   3. FOOTER
   ========================================================================== */
.ifp-footer {
  background: var(--ifp-navy-dark);
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--ifp-font);
}

.ifp-footer-logo-card {
  display: inline-block;
  background: var(--ifp-white);
  padding: 14px 22px;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.ifp-footer-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.ifp-footer-desc {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
}

.ifp-footer-heading {
  position: relative;
  color: var(--ifp-white);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding-bottom: 12px;
  margin-bottom: 18px !important;
}

/* Tri-colour accent bar — mirrors the press colour-separation strip */
.ifp-footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--ifp-blue), var(--ifp-magenta));
}

.ifp-footer-links,
.ifp-footer-services {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ifp-footer-links li,
.ifp-footer-services li {
  margin-bottom: 12px;
}

.ifp-link-item {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s var(--ifp-ease);
}

.ifp-link-item i {
  font-size: 10px;
  color: var(--ifp-blue);
  transition: transform 0.25s var(--ifp-ease);
}

.ifp-link-item:hover {
  color: var(--ifp-white);
  padding-left: 4px;
}

.ifp-link-item:hover i {
  transform: translateX(3px);
}

.ifp-footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ifp-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.ifp-footer-contact .icon-badge {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(19, 115, 230, 0.12);
  color: var(--ifp-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.ifp-footer-contact a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.25s var(--ifp-ease);
}

.ifp-footer-contact a:hover {
  color: var(--ifp-blue);
}

/* Social icons */
.ifp-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ifp-white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s var(--ifp-ease);
}

.ifp-social-btn:hover {
  background: var(--ifp-blue);
  border-color: var(--ifp-blue);
  color: var(--ifp-white);
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(19, 115, 230, 0.35);
}

/* Newsletter */
.ifp-newsletter-panel {
  background: linear-gradient(120deg, var(--ifp-navy-soft), var(--ifp-navy));
  border-radius: var(--ifp-radius);
  padding: 40px;
}

.ifp-newsletter-panel h5 {
  color: var(--ifp-white);
  font-weight: 700;
  font-size: 20px;
}

.ifp-newsletter-panel p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-bottom: 0;
}

.ifp-newsletter-form {
  background: var(--ifp-white);
  border-radius: 50px;
  padding: 6px;
  display: flex;
  align-items: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.ifp-newsletter-form input {
  border: none;
  background: transparent;
  padding: 10px 20px;
  font-size: 14px;
  font-family: var(--ifp-font);
  color: var(--ifp-navy);
  flex: 1;
  min-width: 0;
}

.ifp-newsletter-form input:focus {
  outline: none;
  box-shadow: none;
}

.ifp-btn-subscribe {
  background: var(--ifp-navy);
  color: var(--ifp-white);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 13.5px;
  padding: 12px 24px;
  white-space: nowrap;
  transition: all 0.25s var(--ifp-ease);
}

.ifp-btn-subscribe:hover {
  background: var(--ifp-blue);
  transform: translateY(-1px);
}

/* Divider */
.ifp-footer-hr {
  border-color: rgba(255, 255, 255, 0.08);
  margin: 0;
}

/* Bottom bar */
.ifp-footer-bottom {
  background: var(--ifp-navy-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.ifp-footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.25s var(--ifp-ease);
}

.ifp-footer-bottom a:hover {
  color: var(--ifp-blue);
}

.ifp-footer-bottom .dot-sep {
  color: rgba(255, 255, 255, 0.25);
}

/* ==========================================================================
   4. RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 991.98px) {
  .ifp-mainnav .navbar-collapse {
    background: var(--ifp-white);
    margin-top: 14px;
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(4, 27, 74, 0.12);
  }

  .ifp-mainnav .nav-link {
    padding: 12px 4px !important;
    border-bottom: 1px solid var(--ifp-gray-light);
  }

  .ifp-mainnav .nav-link::after {
    display: none;
  }

  .ifp-btn-cta {
    width: 100%;
    justify-content: center;
    margin-top: 14px;
  }

  .ifp-footer-heading::after {
    left: 0;
  }

  .ifp-newsletter-panel {
    text-align: center;
    padding: 32px 24px;
  }

  .ifp-newsletter-panel .col-lg-6:first-child {
    margin-bottom: 24px;
  }
}

@media (max-width: 767.98px) {
  .ifp-topbar-info {
    gap: 14px !important;
  }

  .ifp-footer .col-lg-4,
  .ifp-footer .col-lg-2,
  .ifp-footer .col-lg-3 {
    text-align: center;
  }

  .ifp-footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .ifp-footer-contact li {
    justify-content: center;
    text-align: left;
  }

  .ifp-footer-links,
  .ifp-footer-services {
    display: inline-block;
    text-align: left;
  }
}

@media (max-width: 575.98px) {
  .ifp-newsletter-form {
    flex-wrap: wrap;
    border-radius: 20px;
    padding: 10px;
  }

  .ifp-newsletter-form input {
    flex: 1 1 100%;
    padding: 8px 12px;
  }

  .ifp-btn-subscribe {
    width: 100%;
    margin-top: 8px;
  }
}

/* Accessibility: visible focus states */
.ifp-mainnav a:focus-visible,
.ifp-footer a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--ifp-blue);
  outline-offset: 2px;
}

/* ==========================================================================
   5. DYNAMIC COLOR ALIASES & GLOBAL HELPER STYLES
   ========================================================================== */
:root {
  --navy: var(--ifp-navy);
  --blue: var(--ifp-blue);
  --blue-light: var(--ifp-blue-light);
  --pink: var(--ifp-magenta);
  --text-dark: #1b2033;
  --text-muted: var(--ifp-gray);
  --teal: #0ea5a3;
  --teal-light: #e5faf9;
  --gold: #c9a24b;
}

section {
  padding: 80px 0;
}

@media(max-width:767px) {
  section {
    padding: 50px 0;
  }
}

/* ==========================================================================
   6. HERO CAROUSEL STYLES
   ========================================================================== */
.ifp-hero {
  position: relative;
  background: #eaf2fd; 
  padding: 60px 24px;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
  border-radius: 16px;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.ifp-hero-diagonal {
  position: absolute;
  inset: 0;
  z-index: 0;
  clip-path: polygon(45% 0%, 100% 0%, 100% 100%, 60% 100%);
  background: linear-gradient(155deg, #1373e6 0%, #0b2f6b 65%, #041b4a 100%);
}

.ifp-hero .container-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}

.ifp-hero-row {
  display: flex;
  flex-direction: row; 
  flex-wrap: nowrap;
  align-items: center;
  gap: 40px;
}

.ifp-hero-content-col {
  flex: 1 1 55%;
  width: 55%;
}

.ifp-hero-visual-col {
  flex: 1 1 45%;
  width: 45%;
  display: flex;
  justify-content: center;
}

.ifp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #1373e6;
  font-size: 11.5px;
  font-weight: 600;
  padding: 7px 15px;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(4,27,74,.08);
  margin-bottom: 20px;
}

.ifp-hero-badge img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.ifp-hero-title {
  font-weight: 800;
  color: #16233d;
  font-size: 2.2rem;
  line-height: 1.25;
  margin-bottom: 18px;
}

.ifp-hero-title-accent {
  display: block;
  color: #1373e6;
  font-size: 1.2em;
  margin-top: 2px;
}

.ifp-hero-desc {
  font-size: 14px;
  line-height: 1.75;
  color: #5b6b85;
  margin-bottom: 24px;
  max-width: 450px;
}

.ifp-hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ifp-hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1373e6;
  color: #fff!important;
  font-weight: 600;
  font-size: 13px;
  padding: 13px 26px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(19,115,230,.32);
}

.ifp-hero-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #16233d!important;
  font-weight: 600;
  font-size: 13px;
  padding: 13px 24px;
  border-radius: 8px;
  border: 1.5px solid rgba(4,27,74,.16);
  text-decoration: none;
}

.ifp-hero-btn-outline img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.ifp-hero-visual-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.ifp-hero-img-box {
  width: 100%;
  height: 340px; 
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 20px 26px 46px rgba(2,13,41,.3);
  position: relative;
}

.ifp-hero-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* .carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 0.8s;
  display: block !important;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.carousel-fade .carousel-item.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
} */

/* .carousel-item .ifp-hero-content-col {
  transform: translateX(-20px);
  transition: transform 0.8s ease;
}

.carousel-item .ifp-hero-visual-wrap {
  transform: translateX(20px);
  transition: transform 0.8s ease;
} */


.carousel-item .ifp-hero-content-col,
.carousel-item .ifp-hero-visual-wrap{
    opacity:0;
    transition:all .35s ease;
}

.carousel-item .ifp-hero-content-col{
    transform:translateX(-40px);
}

.carousel-item .ifp-hero-visual-wrap{
    transform:translateX(40px);
}

.carousel-item.active .ifp-hero-content-col,
.carousel-item.active .ifp-hero-visual-wrap{
    opacity:1;
    transform:translateX(0);
}

.carousel-item.active .ifp-hero-content-col,
.carousel-item.active .ifp-hero-visual-wrap {
  transform: translateX(0);
}

.ifp-hero-carousel-container .carousel-indicators {
  bottom: -40px;
}

.ifp-hero-carousel-container .carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #1373e6;
  border: none;
  margin: 0 5px;
  opacity: 0.4;
}

.ifp-hero-carousel-container .carousel-indicators .active {
  background-color: #1373e6;
  width: 24px;
  border-radius: 50px;
  opacity: 1;
}

@media (max-width: 768px) {
  .ifp-hero {
    padding: 30px 12px 50px;
    min-height: auto;
  }
  .ifp-hero-diagonal {
    clip-path: polygon(40% 0%, 100% 0%, 100% 100%, 55% 100%);
  }
  .ifp-hero-row {
    gap: 15px; 
  }
  .ifp-hero-content-col {
    flex: 1 1 50%;
    width: 50%;
    text-align: left;
  }
  .ifp-hero-visual-col {
    flex: 1 1 50%;
    width: 50%;
  }
  .ifp-hero-badge {
    font-size: 9px;
    padding: 4px 10px;
    margin-bottom: 10px;
  }
  .ifp-hero-title {
    font-size: 1.1rem; 
    margin-bottom: 8px;
  }
  .ifp-hero-title-accent {
    font-size: 1.1em;
  }
  .ifp-hero-desc {
    font-size: 11px;
    margin-bottom: 12px;
    line-height: 1.5;
  }
  .ifp-hero-cta-row {
    gap: 8px;
  }
  .ifp-hero-btn-primary, .ifp-hero-btn-outline {
    font-size: 10px;
    padding: 8px 14px;
  }
  .ifp-hero-img-box {
    height: 240px; 
    box-shadow: 10px 15px 25px rgba(2,13,41,.25);
  }
}

/* ==========================================================================
   7. PAGE BANNER & TITLE STYLES
   ========================================================================== */
.page-banner {
  background: linear-gradient(120deg, var(--blue-light) 0%, var(--blue-light) 45%, var(--navy) 45%, var(--navy) 100%);
  padding: 70px 0;
  position: relative;
}

.page-banner h1 {
  font-weight: 800;
  font-size: 2.6rem;
}

.page-banner .breadcrumb-item a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 500;
}

.page-banner .breadcrumb-item.active {
  color: var(--text-muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-light);
  color: var(--blue);
  font-weight: 600;
  font-size: .8rem;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.eyebrow.alt {
  background: var(--teal-light);
  color: var(--teal);
}

.eyebrow .dot {
  width: 7px;
  height: 7px;
  background: var(--pink);
  border-radius: 50%;
}

.section-title {
  font-weight: 800;
  font-size: 2.2rem;
  line-height: 1.25;
}

.section-title span {
  color: var(--blue);
}

.section-title span.teal {
  color: var(--teal);
}

.section-sub {
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}

@media(max-width:767px) {
  .page-banner h1 {
    font-size: 1.8rem;
  }
}

/* ==========================================================================
   8. ABOUT & STATS COMPONENTS
   ========================================================================== */
   
.about-media {
  position: relative;
}

.about-media .frame-main {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(10,20,68,.18);
}

.about-media .frame-main img {
  width: 100%;
  display: block;
}

.exp-badge {
  position: absolute;
  bottom: -25px;
  right: -15px;
  background: var(--navy);
  color: #fff;
  border-radius: 16px;
  padding: 22px 26px;
  box-shadow: 0 15px 30px rgba(10,20,68,.3);
  text-align: center;
}

.exp-badge h2 {
  font-weight: 800;
  font-size: 2.4rem;
  color: #fff;
  margin: 0;
}

.exp-badge p {
  margin: 0;
  font-size: .8rem;
  color: #cfd6ee;
}

.feature-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.feature-check i {
  background: var(--blue-light);
  color: var(--blue);
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px;
  box-shadow: 0 10px 30px rgba(10,20,68,.07);
  height: 100%;
  transition: .3s;
  border-bottom: 3px solid transparent;
}

.value-card:hover {
  transform: translateY(-8px);
  border-bottom: 3px solid var(--pink);
}

.value-card .icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.stats-section {
  background: var(--navy);
  border-radius: 20px;
  padding: 50px 20px;
  color: #fff;
}

.stat-item h2 {
  font-weight: 800;
  font-size: 2.6rem;
  color: #fff;
}

.stat-item p {
  color: #b9c1e0;
  margin: 0;
  font-size: .9rem;
}

.stat-item i {
  color: var(--pink);
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.why-item {
  background: #fff;
  border-radius: 14px;
  padding: 26px;
  height: 100%;
  box-shadow: 0 8px 22px rgba(10,20,68,.06);
  position: relative;
}

.why-item .num {
  position: absolute;
  top: 14px;
  right: 20px;
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue-light);
}

@media(max-width:767px) {
  .exp-badge {
    position: static;
    margin-top: 20px;
    display: inline-block;
  }
}

/* ==========================================================================
   9. SERVICES COMPONENTS
   ========================================================================== */
.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 34px 28px;
  box-shadow: 0 10px 28px rgba(10,20,68,.06);
  height: 100%;
  transition: .3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: .35s;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(10,20,68,.12);
}

.service-card .icon-wrap {
  width: 62px;
  height: 62px;
  border-radius: 14px;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 22px;
}

.service-card.it-card .icon-wrap {
  background: var(--teal);
}

.service-card h5 {
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text-muted);
  font-size: .9rem;
  margin-bottom: 16px;
}

.service-card .learn-link {
  color: var(--blue);
  font-weight: 600;
  font-size: .85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card.it-card .learn-link {
  color: var(--teal);
}

.service-card .learn-link i {
  transition: .25s;
}

.service-card:hover .learn-link i {
  transform: translateX(4px);
}

.service-card .num-tag {
  position: absolute;
  top: 20px;
  right: 22px;
  font-weight: 800;
  font-size: 1.6rem;
  color: #eef1f8;
  display: none;
}

.band-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}

.band-title .line {
  flex: 1;
  height: 1px;
  background: #e2e6f0;
}

/* ==========================================================================
   10. TEAM COMPONENTS
   ========================================================================== */
.team-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(10,20,68,.08);
  background: #fff;
}

.team-card .img-wrap {
  position: relative;
  overflow: hidden;
}

.team-card .img-wrap img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

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

.social-rail {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(10,20,68,.75);
  transform: translateX(-100%);
  transition: transform .35s ease;
}

.team-card:hover .social-rail {
  transform: translateX(0);
}

.social-rail a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: .95rem;
  transition: .25s;
}

.social-rail a:hover {
  background: var(--pink);
  color: #fff;
}

.team-card .body {
  padding: 20px;
  text-align: center;
}

.team-card .body h6 {
  font-weight: 700;
  margin-bottom: 2px;
}

.team-card .body small {
  color: var(--text-muted);
}

/* ==========================================================================
   11. TESTIMONIAL COMPONENTS
   ========================================================================== */
.testimonial-section {
  background-color: #f8fafc;
}

.text-premium-blue {
  color: var(--blue) !important;
}

.bg-premium-light {
  background-color: var(--blue-light) !important;
}

.testimonial-slider-container {
  overflow: hidden;
  position: relative;
}

.idp-testimonial-slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.idp-testimonial-slider::-webkit-scrollbar {
  display: none;
}

.idp-testimonial-slider {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.premium-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.premium-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(11, 76, 163, 0.1);
}

.avatar {
  width: 45px;
  height: 45px;
  font-size: 14px;
}

.card-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #5c677d;
}

.stars {
  font-size: 0.8rem;
  color: #ffc107;
  letter-spacing: 2px;
}

.slider-btn {
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  border: 1px solid rgba(11, 76, 163, 0.2);
  color: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  z-index: 10;
}

.slider-btn:hover {
  background-color: var(--blue);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(11, 76, 163, 0.3);
}

.slider-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ==========================================================================
   12. CONTACT COMPONENTS
   ========================================================================== */
.info-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 26px;
  box-shadow: 0 10px 30px rgba(10,20,68,.07);
  height: 100%;
  text-align: center;
  transition: .3s;
  border-bottom: 3px solid transparent;
}

.info-card:hover {
  transform: translateY(-8px);
  border-bottom: 3px solid var(--pink);
}

.info-card .icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 18px;
}

.info-card h6 {
  font-weight: 700;
}

.info-card p {
  color: var(--text-muted);
  margin-bottom: 0;
  font-size: .9rem;
}

.contact-wrap {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(10,20,68,.08);
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

.contact-form {
  padding: 45px;
}

.form-control {
  border-radius: 10px;
  padding: 12px 16px;
  border: 1px solid #e2e6f0;
  font-size: .9rem;
}

.form-control:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 .2rem rgba(20,80,216,.12);
}

.btn-submit {
  background: var(--navy);
  color: #fff;
  border-radius: 50px;
  padding: 13px 32px;
  font-weight: 600;
  border: none;
}

.btn-submit:hover {
  background: var(--blue);
  color: #fff;
}

@media(max-width:767px) {
  .contact-form {
    padding: 28px;
  }
}

/* ==========================================================================
   13. GALLERY COMPONENTS
   ========================================================================== */
.filter-btn {
  border: 1px solid #e2e6f0;
  background: #fff;
  color: var(--text-dark);
  border-radius: 50px;
  padding: 9px 22px;
  font-weight: 600;
  font-size: .85rem;
  margin: 0 5px 10px;
  transition: .25s;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(10,20,68,.07);
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: .5s;
}

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

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,20,68,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: .3s;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.gallery-item .overlay i {
  color: #fff;
  font-size: 1.6rem;
  background: rgba(255,255,255,.15);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.4);
}

.gallery-item .cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 16px;
  color: #fff;
  font-weight: 600;
  font-size: .85rem;
  background: linear-gradient(0deg, rgba(10,20,68,.85), transparent);
  opacity: 0;
  transform: translateY(8px);
  transition: .3s;
}

.gallery-item:hover .cap {
  opacity: 1;
  transform: translateY(0);
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4,8,30,.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 900px;
  width: 100%;
  text-align: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 78vh;
  border-radius: 10px;
  box-shadow: 0 25px 60px rgba(0,0,0,.5);
}

.lightbox-caption {
  color: #dbe4ff;
  margin-top: 16px;
  font-weight: 500;
}

.lightbox-counter {
  color: #8b96c4;
  font-size: .85rem;
  margin-top: 4px;
}

.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .25s;
  font-size: 1.2rem;
}

.lb-close:hover, .lb-prev:hover, .lb-next:hover {
  background: var(--pink);
  border-color: var(--pink);
}

.lb-close {
  top: -60px;
  right: 0;
}

.lb-prev {
  left: -70px;
  top: 50%;
  transform: translateY(-50%);
}

.lb-next {
  right: -70px;
  top: 50%;
  transform: translateY(-50%);
}

@media(max-width:900px) {
  .lb-prev {
    left: 8px;
  }
  .lb-next {
    right: 8px;
  }
  .lb-close {
    top: 8px;
    right: 8px;
  }
}

@media(max-width:767px) {
  .gallery-item img {
    height: 200px;
  }
}

/* ==========================================================================
   14. LEADERSHIP COMPONENTS
   ========================================================================== */
.font-serif {
  font-family: 'Playfair Display', serif;
}

.featured-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(10,20,68,.1);
  height: 100%;
  transition: .35s;
  position: relative;
}

.featured-card:hover {
  transform: translateY(-10px);
}

.featured-card .img-wrap {
  position: relative;
  overflow: hidden;
}

.featured-card .img-wrap img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  transition: .5s;
}

.featured-card:hover .img-wrap img {
  transform: scale(1.05);
}

.featured-card .ribbon {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--navy);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 6px 14px;
  border-radius: 50px;
  text-transform: uppercase;
}

.featured-card .body {
  padding: 24px 24px 26px;
}

.featured-card .body h4 {
  font-weight: 800;
  margin-bottom: 2px;
}

.featured-card .body .role {
  color: var(--blue);
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: 12px;
  display: block;
}

.featured-card .body p {
  color: var(--text-muted);
  font-size: .88rem;
  margin-bottom: 16px;
}

.featured-card .socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  margin-right: 6px;
  transition: .25s;
}

.featured-card .socials a:hover {
  background: var(--navy);
  color: #fff;
}

.featured-card .quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  color: var(--gold);
  line-height: 0;
  position: absolute;
  top: 14px;
  right: 20px;
  opacity: .85;
}

.leader-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(10,20,68,.07);
  text-align: center;
  transition: .3s;
  height: 100%;
}

.leader-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 34px rgba(10,20,68,.14);
}

.leader-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.leader-card .body {
  padding: 20px;
}

.leader-card .body h6 {
  font-weight: 700;
  margin-bottom: 2px;
}

.leader-card .body small {
  color: var(--blue);
  font-weight: 600;
}

.leader-card .socials {
  margin-top: 12px;
}

.leader-card .socials a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  margin: 0 3px;
  font-size: .85rem;
  transition: .25s;
}

.leader-card .socials a:hover {
  background: var(--pink);
  color: #fff;
}

.band-title h3 {
  font-weight: 800;
  white-space: nowrap;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.band-title h3 i {
  color: var(--gold);
}