@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
  --primary-color: #0b4cbb;
  /* Brand Blue */
  --primary-dark: #00368c;
  /* Darker Blue */
  --accent-gold: #d4a325;
  /* Gold Monogram */
  --accent-yellow: #dfb026;
  --text-dark: #0f172a;
  /* Slate 900 */
  --text-muted: #64748b;
  /* Slate 500 */
  --bg-light: #f8fafc;
  /* Slate 50 */
  --bg-white: #ffffff;
  --border-color: #e2e8f0;
  /* Slate 200 */

  --whatsapp-green: #0fa958;
  /* Whatsapp green */
  --brochure-brown: #a16207;
  /* Goldish-brown brochure */
  --phone-blue: #1e3a8a;
  /* Dark blue phone */

  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.08), 0 2px 4px -2px rgb(0 0 0 / 0.08);
  --shadow-lg: 0 10px 15px -3px rgb(11 76 187 / 0.08), 0 4px 6px -4px rgb(11 76 187 / 0.08);
  --shadow-xl: 0 20px 25px -5px rgb(11 76 187 / 0.15), 0 8px 10px -6px rgb(11 76 187 / 0.15);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px; /* Offset for sticky header */
}

body {
  position: relative;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}

/* ==========================================================================
   Header Component Styles
   ========================================================================== */

/* Desktop Header */
.desktop-header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-color);
  padding: 0.8rem 0;
  transition: all 0.3s ease;
}

.desktop-header .logo-container img {
  height: 48px;
  width: auto;
}

.nav-link-custom {
  position: relative;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  padding: 0.5rem 0.8rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-link-custom:hover {
  color: var(--primary-color);
}

.nav-link-custom.active {
  color: var(--primary-color);
}

.nav-link-custom.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0.8rem;
  right: 0.8rem;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

/* Primary Contact Button */
.btn-contact {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--bg-white) !important;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.75rem;
  border-radius: 10px;
  border: none;
  box-shadow: 0 4px 15px rgba(11, 76, 187, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(11, 76, 187, 0.35);
  filter: brightness(1.05);
}

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

/* Responsive Desktop Header Adjustments for Laptops */

/* 15" Laptops / Medium Viewports */
@media (max-width: 1440px) {
  .desktop-header .logo-container img {
    height: 42px;
  }
  .nav-link-custom {
    font-size: 0.85rem;
    padding: 0.5rem 0.65rem;
  }
  .nav-link-custom.active::after {
    left: 0.65rem;
    right: 0.65rem;
  }
  .desktop-header .btn-contact {
    font-size: 0.9rem;
    padding: 0.6rem 1.3rem;
  }
}

/* 13" & 14" Laptops / Small Viewports */
@media (max-width: 1280px) {
  .desktop-header .logo-container img {
    height: 36px;
  }
  .desktop-header nav {
    gap: 0.15rem !important;
  }
  .nav-link-custom {
    font-size: 0.78rem;
    padding: 0.4rem 0.45rem;
  }
  .nav-link-custom.active::after {
    left: 0.45rem;
    right: 0.45rem;
    height: 2px;
    bottom: -2px;
  }
  .desktop-header .btn-contact {
    font-size: 0.82rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
  }
}

/* Mobile Header Bar */
.mobile-header-bar {
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  padding: 0.75rem 1rem;
}

.mobile-header-bar .logo-container img {
  height: 38px;
  width: auto;
}

.mobile-header-bar .btn-contact {
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(11, 76, 187, 0.2);
}

.hamburger-btn {
  background: none;
  border: none;
  color: #334155;
  font-size: 1.5rem;
  padding: 0.25rem 0.5rem;
  cursor: pointer;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.hamburger-btn:hover {
  color: var(--primary-color);
}

/* ==========================================================================
   Mobile Offcanvas Drawer
   ========================================================================== */
.custom-offcanvas {
  width: 100% !important;
  max-width: 350px !important;
  background-color: #f8fafc !important;
  /* Soft backdrop color matches screenshot */
  border-left: none !important;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15) !important;
}

.custom-offcanvas .offcanvas-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  background-color: var(--bg-white);
  padding: 1.25rem 1rem;
}

.custom-offcanvas .offcanvas-header .logo-container img {
  height: 35px;
}

.custom-offcanvas .offcanvas-header .btn-contact {
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(11, 76, 187, 0.2);
}

.btn-close-custom {
  background: none;
  border: none;
  color: var(--text-dark);
  font-size: 1.25rem;
  padding: 0.5rem;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease;
}

.btn-close-custom:hover {
  transform: rotate(90deg);
  color: var(--primary-color);
}

.custom-offcanvas .offcanvas-body {
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  height: calc(100% - 73px);
  overflow-y: auto;
}

/* Offcanvas Sidebar Menu Items */
.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  background-color: var(--bg-white);
  color: #334155;
  /* Slate 700 */
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.mobile-nav-link i {
  font-size: 1.2rem;
  margin-right: 1.25rem;
  color: #3b82f6;
  /* Accent blue for default icons */
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eff6ff;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.mobile-nav-link:hover {
  background-color: #f1f5f9;
  color: var(--primary-color);
  transform: translateX(4px);
}

.mobile-nav-link.active {
  background-color: #eff6ff;
  /* Soft lavender-blue active state */
  color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(11, 76, 187, 0.08);
  border: 1.5px solid rgba(11, 76, 187, 0.15);
}

.mobile-nav-link.active i {
  background-color: var(--primary-color);
  color: var(--bg-white);
}

/* Drawer Secondary Action CTAs */
.drawer-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.btn-mob-whatsapp {
  background-color: var(--whatsapp-green);
  color: white !important;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.85rem;
  border-radius: 10px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 10px rgba(15, 169, 88, 0.2);
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-mob-brochure {
  background-color: var(--brochure-brown);
  color: white !important;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.85rem;
  border-radius: 10px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 10px rgba(161, 98, 7, 0.2);
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-mob-phone {
  background-color: var(--phone-blue);
  color: white !important;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.9rem;
  border-radius: 10px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(30, 58, 186, 0.25);
  transition: all 0.2s ease;
  text-decoration: none;
  width: 100%;
  margin-bottom: 2rem;
}

.btn-mob-whatsapp:hover,
.btn-mob-brochure:hover,
.btn-mob-phone:hover {
  filter: brightness(0.92);
  transform: translateY(-1px);
}

.drawer-socials-section {
  margin-top: auto;
  border-top: 1px solid #e2e8f0;
  padding-top: 1.5rem;
}

.drawer-socials-section h6 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--text-dark);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.drawer-social-icons {
  display: flex;
  gap: 1.25rem;
}

.drawer-social-link {
  color: var(--primary-color);
  font-size: 1.2rem;
  transition: all 0.2s ease;
}

.drawer-social-link:hover {
  color: var(--primary-dark);
  transform: scale(1.15);
}

/* ==========================================================================
   Footer Component Styles
   ========================================================================== */
.main-footer {
  background-color: #f8fafc;
  border-top: 1px solid var(--border-color);
  padding: 5rem 0 2rem 0;
  font-size: 0.9rem;
}

.main-footer .footer-logo {
  height: 44px;
  width: auto;
  margin-bottom: 1.5rem;
}

.main-footer .footer-desc {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.footer-col-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

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

.footer-links-list li {
  margin-bottom: 0.75rem;
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-link:hover {
  color: var(--primary-color);
  transform: translateX(3px);
}

/* Newsletter Subscription Box */
.insights-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}

.insights-card h5 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.insights-card p {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.newsletter-input-group {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.newsletter-input {
  background-color: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 0.8rem 1rem;
  font-size: 0.85rem;
  color: var(--text-dark);
  width: 100%;
  transition: all 0.2s ease;
  outline: none;
}

.newsletter-input:focus {
  background-color: var(--bg-white);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(11, 76, 187, 0.1);
}

.btn-subscribe {
  background-color: var(--primary-color);
  color: var(--bg-white);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.85rem;
  border-radius: 8px;
  border: none;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 10px rgba(11, 76, 187, 0.15);
  transition: all 0.2s ease;
}

.btn-subscribe:hover {
  background-color: var(--primary-dark);
  box-shadow: 0 6px 15px rgba(11, 76, 187, 0.25);
}

/* Map Cards Row */
.map-cards-row {
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.map-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 200px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
  cursor: pointer;
}

.map-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.map-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
  transition: opacity 0.3s ease;
}

.map-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

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

.map-card-label {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  color: #0b4cbb;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.map-card-label:hover {
  background-color: var(--bg-white);
  color: var(--primary-dark);
}

/* Footer Bottom Layout */
.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-bottom-socials {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-socials a {
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-bottom-socials a:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
}

.global-edition {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: #334155;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.global-edition:hover {
  color: var(--primary-color);
}

/* ==========================================================================
   Mobile Footer & Offcanvas Enhancements (Mobile Specific Screen Styles)
   ========================================================================== */
@media (max-width: 991.98px) {
  .main-footer {
    padding: 3rem 0 2rem 0;
  }

  .footer-col-title {
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(11, 76, 187, 0.15);
    /* matching blue dividers in image */
    display: block;
  }

  .footer-links-list {
    margin-bottom: 1.5rem;
  }

  .insights-card {
    padding: 1.5rem;
    margin-top: 1rem;
  }

  .map-card {
    margin-bottom: 1rem;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .footer-bottom-socials {
    order: 1;
    margin-bottom: 0.5rem;
  }

  .footer-bottom-copyright {
    order: 2;
    margin-bottom: 0.5rem;
  }

  .footer-bottom-edition {
    order: 3;
  }
}

/* Active links in header visual animation helper */
.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0.8rem;
  right: 0.8rem;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-link-custom.active::after {
  transform: scaleX(1);
}

/* ==========================================================================
   Fixed Floating Contact Panel (Right side)
   ========================================================================== */
.fixed-floating-contact {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.floating-contact-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white !important;
  text-decoration: none;
  padding: 10px 14px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.2s ease;
  border-radius: 6px 0 0 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  min-width: 120px;
  justify-content: flex-start;
}

.floating-contact-btn.whatsapp {
  background-color: var(--whatsapp-green);
}

.floating-contact-btn.brochure {
  background-color: var(--brochure-brown);
}

.floating-contact-btn.phone {
  background-color: var(--phone-blue);
}

.floating-contact-btn:hover {
  padding-left: 20px;
  transform: translateX(-4px);
  color: white !important;
}

@media (max-width: 991.98px) {
  .fixed-floating-contact {
    display: none;
  }
}

/* ==========================================================================
   Hero Slider Styles
   ========================================================================== */
.hero-slider-container {
  position: relative;
  overflow: hidden;
}

.hero-slide {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 5rem 0;
  overflow: hidden;
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center right;
  z-index: 1;
}

.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.06);
  z-index: 1.5;
  pointer-events: none;
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  transform: rotate(-2.8deg) skewX(2deg);
  transform-origin: left center;
  margin-left: 9%;
  margin-top: -10px;
}

.hero-slide-content h1 {
  font-weight: 800;
  line-height: 1.15;
  font-size: 2.85rem;
  color: #0f172a;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.hero-slide-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #475569;
  max-width: 500px;
  margin-bottom: 2.25rem;
}

.hero-btn-group {
  display: flex;
  align-items: center;
  gap: 24px;
}

.btn-hero-primary {
  background-color: var(--primary-color);
  color: var(--bg-white) !important;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  border: none;
  box-shadow: 0 10px 20px rgba(11, 76, 187, 0.25);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(11, 76, 187, 0.35);
  filter: brightness(1.08);
}

.hero-sales-link {
  color: var(--primary-color);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.hero-sales-link i {
  transition: transform 0.2s ease;
}

.hero-sales-link:hover {
  color: var(--primary-dark);
}

.hero-sales-link:hover i {
  transform: translateX(4px);
}

.carousel-control-prev-custom,
.carousel-control-next-custom {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background-color: var(--bg-white);
  color: var(--primary-color);
  border: none !important;
  width: 46px;
  height: 46px;
  border-radius: 10px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  text-decoration: none;
}

.carousel-control-prev-custom:hover,
.carousel-control-next-custom:hover {
  background-color: var(--primary-color) !important;
  color: var(--bg-white) !important;
  transform: translateY(-50%) scale(1.08) !important;
  box-shadow: 0 8px 25px rgba(11, 76, 187, 0.25) !important;
}

.carousel-control-prev-custom {
  left: 30px;
}

.carousel-control-next-custom {
  right: 30px;
}

@media (max-width: 991.98px) {
  .hero-slide {
    min-height: auto;
    height: auto;
    padding: 5rem 0 4rem 0;
  }

  .hero-slide-bg {
    background-position: center;
  }

  .hero-slide::before {
    background: rgba(255, 255, 255, 0.92) !important;
  }

  .hero-slide-content {
    text-align: center;
    transform: none !important;
    margin-left: 0 !important;
    margin-top: 0 !important;
  }

  .hero-slide-content h1 {
    font-size: 2.1rem;
  }

  .hero-slide-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btn-group {
    justify-content: center;
    flex-direction: row;
    gap: 20px;
  }

  .carousel-control-prev-custom {
    left: 10px;
  }

  .carousel-control-next-custom {
    right: 10px;
  }
}

/* ==========================================================================
   About Section & Authorizations
   ========================================================================== */
.about-img-container {
  position: relative;
  border-radius: 24px;
  overflow: visible;
}

.about-main-img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.about-badge {
  position: absolute;
  bottom: -15px;
  right: -15px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(11, 76, 187, 0.12);
  border-radius: 16px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-xl);
}

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

.about-badge-text {
  display: flex;
  flex-direction: column;
}

.about-badge-text h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 950;
  margin: 0;
  color: #1e3a8a;
  line-height: 1;
}

.about-badge-text span {
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.partners-title-muted {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #94a3b8;
  text-transform: uppercase;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.brand-logo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.brand-logo-txt {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: #64748b;
  transition: color 0.2s ease;
}

.brand-logo-txt:hover {
  color: var(--primary-color);
}

@media (max-width: 991.98px) {
  .about-badge {
    bottom: 15px;
    right: 15px;
  }
}

/* ==========================================================================
   Capability Cards (Design alignment)
   ========================================================================== */
.bg-lavender {
  background-color: #f0f3ff !important;
}

.capability-card {
  background-color: var(--bg-white) !important;
  border-radius: 20px !important;
  border: none !important;
  padding: 2.75rem 2.25rem !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.015) !important;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.capability-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 40px rgba(11, 76, 187, 0.04) !important;
}

.capability-card svg {
  color: var(--primary-color);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.capability-card:hover svg {
  transform: scale(1.05);
}

.capability-card-icon {
  width: auto !important;
  height: auto !important;
  background-color: transparent !important;
  border-radius: 0 !important;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 1.5rem !important;
  flex-shrink: 0;
}

.capability-card h4 {
  color: var(--text-dark);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.2rem !important;
  margin-bottom: 0.75rem;
  margin-top: 0;
}

.capability-card p {
  color: #475569 !important;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem !important;
  line-height: 1.6 !important;
  margin: 0;
}

/* ==========================================================================
   Product Category Cards (Design alignment)
   ========================================================================== */
.product-category-card {
  background-color: var(--bg-white) !important;
  border-radius: 12px !important;
  border: 1px solid #f1f5f9 !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.015) !important;
  overflow: hidden !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.product-category-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 15px 35px rgba(11, 76, 187, 0.06) !important;
  border-color: rgba(11, 76, 187, 0.12) !important;
}

.product-card-img-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 75%;
  /* 4:3 Aspect Ratio */
  overflow: hidden;
  background-color: #f8fafc;
}

.product-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-category-card:hover .product-card-img {
  transform: scale(1.05);
}

.product-card-body {
  padding: 1.25rem 1.25rem 1.5rem 1.25rem !important;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.product-card-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.15rem !important;
  color: var(--text-dark);
  margin: 0;
}

.product-card-link {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--primary-color);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 0.2rem;
  transition: color 0.2s ease;
}

.product-card-link i {
  transition: transform 0.2s ease;
  font-size: 0.85rem;
}

.product-card-link:hover {
  color: var(--primary-dark);
}

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

/* ==========================================================================
   Authorized Technology Brand Partners Marquee Slider
   ========================================================================== */
.bg-light-soft {
  background-color: #f8fafc !important;
}

.partners-marquee-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  /* Add smooth fade masks on left and right edges for a premium blend look */
}

.partners-marquee-container::before,
.partners-marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 3;
  pointer-events: none;
}

.partners-marquee-container::before {
  left: 0;
  background: linear-gradient(90deg, #f8fafc 0%, rgba(248, 250, 252, 0) 100%);
}

.partners-marquee-container::after {
  right: 0;
  background: linear-gradient(270deg, #f8fafc 0%, rgba(248, 250, 252, 0) 100%);
}

.partners-marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.partners-marquee-track:hover {
  animation-play-state: paused;
}

.partners-marquee-group {
  display: flex;
  gap: 24px;
  padding-right: 24px;
  /* Space between the two groups */
  flex-shrink: 0;
}

.partner-brand-card {
  flex: 0 0 280px;
  height: 180px;
  background-color: var(--bg-white) !important;
  border-radius: 16px !important;
  border: 1px solid #eef2f6 !important;
  padding: 1.5rem !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.partner-brand-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 15px 30px rgba(11, 76, 187, 0.05) !important;
  border-color: rgba(11, 76, 187, 0.12) !important;
}

.partner-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.partner-pill {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  background-color: #eff6ff;
  /* Soft blue background */
  color: var(--primary-color);
  /* Brand Blue */
}

.partner-header-icon {
  color: #94a3b8;
  /* Slate-400 */
  font-size: 0.95rem;
}

.partner-logo-wrapper {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0;
}

.partner-brand-logo {
  max-height: 35px;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(15%) contrast(90%);
  transition: all 0.3s ease;
}

.partner-brand-card:hover .partner-brand-logo {
  transform: scale(1.04);
  filter: none;
  /* Full color on hover */
}

.partner-card-footer {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.partner-brand-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem !important;
  color: var(--text-dark);
  margin: 0;
}

.partner-brand-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin: 0;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ==========================================================================
   Section 6: Industries We Serve
   ========================================================================== */
.industry-card {
  border: none !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  height: 380px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.015);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(11, 76, 187, 0.08);
}

.industry-img-wrapper {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.industry-card:hover .industry-img-wrapper {
  transform: scale(1.05);
}

.industry-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 30%, rgba(15, 23, 42, 0.85) 100%);
  z-index: 1;
}

.industry-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  z-index: 2;
  color: #ffffff;
}

.industry-accent-line {
  width: 30px;
  height: 3px;
  background-color: var(--primary-color);
  margin-bottom: 0.75rem;
  border-radius: 2px;
}

.industry-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
  color: #ffffff;
}

.industry-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
  margin: 0;
}

/* ==========================================================================
   Section 7: Specialized Business Divisions
   ========================================================================== */
.division-brand-card {
  background-color: var(--bg-white) !important;
  border-radius: 16px !important;
  border: 1px solid #f1f5f9 !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.015) !important;
  overflow: hidden !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.division-card-img-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 60%;
  background-size: cover;
  background-position: center;
}

.division-icon-badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  width: 36px;
  height: 36px;
  background-color: var(--primary-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(11, 76, 187, 0.3);
}

.division-icon-badge i {
  color: #ffffff;
  font-size: 1rem;
}

.division-card-body {
  padding: 1.5rem !important;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.division-card-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.2rem !important;
  color: var(--text-dark);
  margin: 0;
}

.division-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

.division-card-link {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--primary-color);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  margin-top: 0.5rem;
  transition: all 0.2s ease;
}

.division-card-link i {
  transition: transform 0.2s ease;
}

.division-card-link:hover i {
  transform: translateX(3px);
}

.division-brand-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 40px rgba(11, 76, 187, 0.06) !important;
  border-color: rgba(11, 76, 187, 0.12) !important;
}

/* Active / Hover State */
.division-card-active {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

.division-card-active .division-icon-badge {
  background-color: var(--bg-white);
}

.division-card-active .division-icon-badge i {
  color: var(--primary-color);
}

.division-card-active .division-card-title {
  color: var(--bg-white);
}

.division-card-active .division-card-desc {
  color: rgba(255, 255, 255, 0.8);
}

.division-card-active .division-card-link {
  color: var(--bg-white);
}

/* ==========================================================================
   Section 8: Stats Section
   ========================================================================== */
.stat-item {
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-accent-line {
  width: 30px;
  height: 3px;
  background-color: var(--primary-color);
  margin-bottom: 1rem;
  border-radius: 2px;
}

.stat-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.stat-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
  max-width: 280px;
}

/* ==========================================================================
   Section 9: Frequently Asked Questions
   ========================================================================== */
.faq-item {
  background-color: #ffffff !important;
  border: 1px solid #f1f5f9 !important;
  border-radius: 12px !important;
  margin-bottom: 1rem !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01) !important;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(11, 76, 187, 0.03) !important;
  border-color: rgba(11, 76, 187, 0.1) !important;
}

.faq-btn {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem !important;
  color: var(--text-dark) !important;
  background-color: #ffffff !important;
  padding: 1.25rem 1.5rem !important;
  border: none !important;
  box-shadow: none !important;
}

.faq-btn:not(.collapsed) {
  border-bottom: 1px solid #f8fafc !important;
  color: var(--text-dark) !important;
  background-color: #ffffff !important;
  box-shadow: none !important;
}

.faq-btn::after {
  background-size: 1rem;
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s ease;
}

.faq-btn:not(.collapsed)::after {
  transform: rotate(-180deg);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230b4cbb'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.faq-body {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem !important;
  color: #475569 !important;
  line-height: 1.6 !important;
  padding: 1.25rem 1.5rem !important;
  background-color: #ffffff !important;
}

.faq-cta-banner {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border-radius: 16px;
  padding: 2.5rem 3rem;
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(11, 76, 187, 0.2);
}

.faq-cta-content {
  position: relative;
  z-index: 2;
}

.faq-cta-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  letter-spacing: 0px;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.faq-cta-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.faq-cta-action {
  position: relative;
  z-index: 2;
}

.btn-faq-cta {
  background-color: #ffffff;
  color: var(--primary-color) !important;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.btn-faq-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
  filter: brightness(1.05);
}

.banner-bg-icon {
  position: absolute;
  color: #ffffff;
  opacity: 0.15;
  z-index: 1;
  pointer-events: none;
}

.banner-bg-icon.pos-1 {
  left: 33%;
  bottom: 8px;
  transform: none;
}

.banner-bg-icon.pos-2 {
  left: 52%;
  bottom: -15px;
  transform: rotate(-15deg);
}

.banner-bg-icon.pos-3 {
  right: 22%;
  bottom: -10px;
  transform: rotate(-12deg);
}

@media (max-width: 991.98px) {
  .faq-cta-banner {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding: 2rem;
  }

  .banner-bg-icon {
    display: none;
  }
}

/* ==========================================================================
   Section 10: Client Testimonials
   ========================================================================== */
.testimonial-card {
  background-color: var(--bg-white) !important;
  border-radius: 16px !important;
  border: 1px solid #f1f5f9 !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.015) !important;
  padding: 2.25rem !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.testimonial-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 15px 35px rgba(11, 76, 187, 0.06) !important;
  border-color: rgba(11, 76, 187, 0.12) !important;
}

.testimonial-body {
  margin-bottom: 2rem;
}

.testimonial-quote-icon {
  color: #e2e8f0;
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
  line-height: 1;
}

.testimonial-text {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  border-top: 1px solid #f1f5f9;
  padding-top: 1.5rem;
}

.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
}

.testimonial-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-dark);
  margin: 0;
}

.testimonial-role {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.testimonial-arrow-btn {
  color: var(--primary-color);
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.testimonial-card:hover .testimonial-arrow-btn {
  transform: translateX(4px);
}

/* Featured / Active Testimonial Card (Middle) */
.testimonial-card-featured {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  box-shadow: 0 10px 30px rgba(11, 76, 187, 0.15) !important;
}

.testimonial-card-featured:hover {
  box-shadow: 0 20px 40px rgba(11, 76, 187, 0.25) !important;
}

.testimonial-card-featured .testimonial-quote-icon {
  color: rgba(255, 255, 255, 0.15);
}

.testimonial-card-featured .testimonial-text {
  color: #ffffff;
}

.testimonial-card-featured .testimonial-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card-featured .testimonial-name {
  color: #ffffff;
}

.testimonial-card-featured .testimonial-role {
  color: rgba(255, 255, 255, 0.7);
}

.testimonial-case-study-btn {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s ease;
  margin-top: 0.25rem;
}

.testimonial-case-study-btn i {
  transition: transform 0.2s ease;
}

.testimonial-case-study-btn:hover {
  color: #ffffff;
  opacity: 0.9;
}

.testimonial-case-study-btn:hover i {
  transform: translateX(4px);
}

/* ==========================================================================
   Comprehensive Responsiveness Enhancements (Mobile & Tablet)
   ========================================================================== */

/* Tablet & Mobile Viewports (< 992px) */
@media (max-width: 991.98px) {

  /* Section Padding reduction to avoid double py-5 huge spaces */
  section.py-5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  section.py-5 .container.py-5 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
}

/* Tablet Portrait Viewports (< 768px) */
@media (max-width: 767.98px) {

  /* Section Spacing Further Reduction */
  section.py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  section.py-5 .container.py-5 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
}

/* Small Mobile Viewports (< 576px) */
@media (max-width: 575.98px) {

  /* Section Spacing Minimum */
  section.py-5 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  section.py-5 .container.py-5 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }

  /* Hero button group - stack vertically on phone screens */
  .hero-btn-group {
    flex-direction: column !important;
    width: 100%;
    align-items: stretch !important;
    gap: 12px !important;
  }

  .hero-btn-group a {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Card Paddings overrides */
  .capability-card {
    padding: 1.75rem 1.25rem !important;
  }

  .testimonial-card {
    padding: 1.5rem 1.25rem !important;
  }

  .insights-card {
    padding: 1.25rem !important;
  }

  /* Industry Card Height (Section 6) */
  .industry-card {
    height: 320px !important;
  }

  /* Typography Scale Down */
  .hero-slide-content h1 {
    font-size: 1.85rem !important;
  }

  .faq-cta-title {
    font-size: 24px !important;
    line-height: 30px !important;
  }

  .faq-cta-desc {
    font-size: 14px !important;
    line-height: 20px !important;
  }
}

/* Extremely Small Mobile Viewports (< 360px) */
@media (max-width: 359.98px) {

  /* Drawer header and CTA alignment */
  .custom-offcanvas .offcanvas-header {
    padding: 1rem 0.75rem !important;
  }

  .custom-offcanvas .offcanvas-header .btn-contact {
    padding: 0.4rem 0.8rem !important;
    font-size: 0.75rem !important;
  }

  .btn-close-custom {
    padding: 0.25rem !important;
  }

  /* Mobile Top Header Bar Padding */
  .mobile-header-bar {
    padding: 0.6rem 0.5rem !important;
  }

  .mobile-header-bar .btn-contact {
    padding: 0.4rem 0.8rem !important;
    font-size: 0.75rem !important;
  }
}

/* ==========================================================================
   About Us Page Component Styles
   ========================================================================== */

/* Executive Portrait Showcase Slider */
.exec-showcase-card {
  background-color: var(--bg-white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
  position: relative;
}

.exec-img-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 120%;
  /* Portrait aspect ratio */
  background-color: #f1f5f9;
}

.exec-img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exec-name-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--bg-white);
  padding: 1.25rem;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.exec-name-tag h4 {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0;
  color: var(--text-dark);
}

/* Mission Cards */
.mission-card {
  background-color: var(--bg-white);
  border: 1.5px solid #f1f5f9;
  border-radius: 16px;
  padding: 2.25rem 2rem;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--primary-color);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(11, 76, 187, 0.12);
}

.mission-card:hover::before {
  opacity: 1;
}

.mission-card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eff6ff;
  border-radius: 10px;
  color: var(--primary-color);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.mission-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.mission-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Timeline/Journey Section */
.journey-timeline-wrapper {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 1.5rem 0.5rem;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.journey-timeline-wrapper::-webkit-scrollbar {
  height: 8px;
}

.journey-timeline-wrapper::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 4px;
}

.journey-timeline-wrapper::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.journey-timeline-wrapper::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

.timeline-card {
  flex: 0 0 280px;
  background-color: var(--bg-white);
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(11, 76, 187, 0.1);
}

.timeline-img-wrapper {
  width: 100%;
  height: 160px;
  overflow: hidden;
  background-color: #f1f5f9;
}

.timeline-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.timeline-card:hover .timeline-img-wrapper img {
  transform: scale(1.05);
}

.timeline-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.timeline-year {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.timeline-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.timeline-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* Featured Timeline Card (Blue block card) */
.timeline-card-featured {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border-color: var(--primary-color);
  color: #ffffff;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  flex: 0 0 280px;
}

.timeline-card-featured .timeline-year {
  color: var(--accent-gold);
  font-size: 2.25rem;
}

.timeline-card-featured h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.timeline-card-featured p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin: 0;
}

/* Expertise Section Grid Layout (mockup design matching) */
.expertise-grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(11, 76, 187, 0.18);
  border-radius: 16px;
  overflow: hidden;
  background-color: var(--bg-white);
  box-shadow: 0 4px 20px -2px rgba(11, 76, 187, 0.03);
}

.expertise-grid-cell {
  padding: 3rem 2.25rem;
  background-color: var(--bg-white);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-right: 1px solid rgba(11, 76, 187, 0.18);
  border-bottom: 1px solid rgba(11, 76, 187, 0.18);
  position: relative;
}

/* Icons */
.expertise-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background-color: #eff6ff;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.75rem;
  transition: all 0.3s ease;
}

.expertise-cell-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.85rem;
  line-height: 1.3;
}

.expertise-cell-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Hover State - Transforms cell to active blue brand color */
.expertise-grid-cell:hover {
  background-color: var(--primary-color);
  color: #ffffff;
}

.expertise-grid-cell:hover .expertise-icon-box {
  background-color: #ffffff !important;
  color: var(--primary-color) !important;
}

.expertise-grid-cell:hover .expertise-cell-title {
  color: #ffffff !important;
}

.expertise-grid-cell:hover .expertise-cell-desc {
  color: rgba(255, 255, 255, 0.85) !important;
}

/* Border resets for 4-column layout (Desktop) */
@media (min-width: 992px) {
  .expertise-grid-cell:nth-child(4n) {
    border-right: none;
  }

  .expertise-grid-cell:nth-child(n+5) {
    border-bottom: none;
  }
}

/* Border resets for 2-column layout (Tablet) */
@media (min-width: 576px) and (max-width: 991px) {
  .expertise-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .expertise-grid-cell {
    border-right: 1px solid rgba(11, 76, 187, 0.18);
    border-bottom: 1px solid rgba(11, 76, 187, 0.18);
    padding: 2.5rem 1.75rem;
  }

  .expertise-grid-cell:nth-child(2n) {
    border-right: none;
  }

  .expertise-grid-cell:nth-child(n+7) {
    border-bottom: none;
  }
}

/* Border resets for 1-column layout (Mobile) */
@media (max-width: 575px) {
  .expertise-grid-container {
    grid-template-columns: 1fr;
  }

  .expertise-grid-cell {
    border-right: none;
    border-bottom: 1px solid rgba(11, 76, 187, 0.18);
    padding: 2.25rem 1.5rem;
  }

  .expertise-grid-cell:last-child {
    border-bottom: none;
  }
}

/* Leadership Cards */
.leader-card {
  background-color: var(--bg-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid #f1f5f9;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.leader-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.leader-img-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 110%;
  /* executive portrait height ratio */
  overflow: hidden;
  background-color: #f8fafc;
}

.leader-img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.leader-card:hover .leader-img-wrapper img {
  transform: scale(1.03);
}

.leader-name-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(4px);
  padding: 0.9rem 1.25rem;
  text-align: center;
}

.leader-name-overlay h4 {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.5px;
}

.leader-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.leader-role {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary-color);
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

.leader-bio {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.leader-footer {
  margin-top: auto;
  border-top: 1px solid #f1f5f9;
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.leader-link {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--primary-color);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.leader-link i {
  transition: transform 0.2s ease;
}

.leader-link:hover {
  color: var(--primary-dark);
}

.leader-link:hover i {
  transform: translateX(4px);
}

.leader-social-btn {
  width: 32px;
  height: 32px;
  background-color: #f1f5f9;
  color: var(--text-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  text-decoration: none;
}

.leader-social-btn:hover {
  background-color: var(--primary-color);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Adjust timeline width under mobile viewports */
@media (max-width: 575.98px) {
  .timeline-card {
    flex: 0 0 250px;
  }

  .timeline-img-wrapper {
    height: 140px;
  }
}

/* About Us Hero Banner */
.about-hero-banner {
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
  background-color: #f8fafc;
}

.about-hero-img-wrapper {
  width: 100%;
  max-height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-img-wrapper img {
  width: 100%;
  height: auto;
  min-height: 200px;
  object-fit: cover;
  object-position: center;
}

/* Mission Section Custom Grid Dividers */
.mission-grid-wrapper {
  position: relative;
  border-top: 1px solid rgba(11, 76, 187, 0.18);
  border-bottom: 1px solid rgba(11, 76, 187, 0.18);
  padding: 4rem 0;
  margin-top: 2rem;
}

.mission-grid-row {
  position: relative;
}

@media (min-width: 768px) {

  /* Vertical center divider line */
  .mission-grid-row::before {
    content: '';
    position: absolute;
    top: -4rem;
    bottom: -4rem;
    left: 50%;
    width: 1px;
    background-color: rgba(11, 76, 187, 0.18);
    transform: translateX(-50%);
    z-index: 1;
  }

  /* Horizontal center divider line */
  .mission-grid-row::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -15px;
    right: -15px;
    height: 1px;
    background-color: rgba(11, 76, 187, 0.18);
    transform: translateY(-50%);
    z-index: 1;
  }
}

.mission-card-accent-line {
  width: 60%;
  height: 1px;
  background-color: rgba(11, 76, 187, 0.15);
  margin-top: 1.5rem;
}

/* Journey Timeline Slider Dots */
.timeline-indicator-dot {
  width: 24px;
  height: 4px;
  background-color: #cbd5e1;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.timeline-indicator-dot.active {
  width: 48px;
  background-color: var(--primary-color);
}

/* Journey timeline control buttons */
#journeyPrev,
#journeyNext {
  position: absolute;
  top: 35%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50% !important;
  z-index: 10;
  background-color: var(--bg-white);
  color: var(--primary-color);
  border: 1px solid #cbd5e1 !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

#journeyPrev:hover,
#journeyNext:hover {
  background-color: var(--primary-color) !important;
  color: var(--bg-white) !important;
  border-color: var(--primary-color) !important;
  transform: translateY(-50%) scale(1.08) !important;
  box-shadow: 0 6px 15px rgba(11, 76, 187, 0.2) !important;
}

#journeyPrev {
  left: -22px;
}

#journeyNext {
  right: -22px;
}

@media (max-width: 991.98px) {
  #journeyPrev {
    left: 10px;
  }

  #journeyNext {
    right: 10px;
  }
}

/* Infrastructure Stats Section 6 Layout */
.infra-stat-box {
  border-left: 3px solid var(--primary-color);
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.infra-stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.infra-stat-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1.2px;
  line-height: 1.2;
}

/* Infrastructure Section Image Container styling */
.infra-img-wrapper {
  border-radius: 16px;
  height: 380px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* Responsive Overrides for About Us Page */
@media (max-width: 768px) {
  .infra-img-wrapper {
    height: 280px;
  }
}

@media (max-width: 575.98px) {
  .about-hero-img-wrapper {
    height: 220px;
  }

  .about-hero-img-wrapper img {
    height: 100%;
    object-fit: cover;
  }
}

/* ==========================================================================
   Products Page Styles (mockup matching)
   ========================================================================== */

/* Products Hero */
.products-hero-slide-wrapper {
  position: relative;
  width: 100%;
  height: 480px;
  /* Constrain slide height on desktop to keep it landscape */
  overflow: hidden;
}

.products-hero-banner-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.products-hero-banner-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  /* Anchor to bottom so laptops/towers stay visible */
}

.products-hero-text-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  padding-top: 4.5rem !important;
  /* Position the text at the top center */
  pointer-events: none;
  /* Let clicks pass through */
}

/* Products Hero Carousel Custom Navigation Controls */
.products-carousel-control-prev,
.products-carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background-color: var(--bg-white);
  color: var(--primary-color);
  border: 1px solid #e2e8f0 !important;
  width: 44px;
  height: 44px;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  text-decoration: none;
  cursor: pointer;
}

.products-carousel-control-prev:hover,
.products-carousel-control-next:hover {
  background-color: var(--primary-color) !important;
  color: var(--bg-white) !important;
  border-color: var(--primary-color) !important;
  transform: translateY(-50%) scale(1.08) !important;
  box-shadow: 0 8px 25px rgba(11, 76, 187, 0.2) !important;
}

.products-carousel-control-prev {
  left: 24px;
}

.products-carousel-control-next {
  right: 24px;
}

/* Responsive banner height constraints & text sizing */
@media (max-width: 1199.98px) {
  .products-hero-slide-wrapper {
    height: 400px;
  }

  .products-hero-text-overlay {
    padding-top: 3.5rem !important;
  }
}

@media (max-width: 991.98px) {
  .products-hero-slide-wrapper {
    height: 340px;
  }

  .products-hero-text-overlay {
    padding-top: 2.5rem !important;
  }

  .products-carousel-control-prev,
  .products-carousel-control-next {
    display: none !important;
    /* Hide controls on tablets to save space and rely on touch */
  }
}

@media (max-width: 767.98px) {
  .products-hero-slide-wrapper {
    height: 300px;
  }

  .products-hero-text-overlay {
    padding-top: 2rem !important;
  }

  .products-hero-text-overlay h1 {
    font-size: 2.25rem !important;
    margin-bottom: 0.4rem !important;
  }

  .products-hero-text-overlay p {
    font-size: 0.95rem !important;
  }
}

@media (max-width: 575.98px) {
  .products-hero-slide-wrapper {
    height: 260px;
  }

  .products-hero-text-overlay {
    padding-top: 1.5rem !important;
  }
}

/* Centered Decorative Divider */
.products-hero-divider {
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
  margin: 0.75rem auto;
  position: relative;
  border-radius: 1px;
}

.products-hero-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background-color: var(--primary-color);
  border: 1.5px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 4px rgba(11, 76, 187, 0.3);
}

/* Products Features Grid */
.products-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(11, 76, 187, 0.18);
  border-radius: 16px;
  overflow: hidden;
  background-color: var(--bg-white);
  box-shadow: 0 4px 20px -2px rgba(11, 76, 187, 0.03);
}

.products-features-cell {
  padding: 3rem 2.25rem;
  background-color: var(--bg-white);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-right: 1px solid rgba(11, 76, 187, 0.18);
  position: relative;
}

.products-features-cell:last-child {
  border-right: none;
}

.products-features-cell:hover:not(.highlighted-cell) {
  background-color: #f8faff;
}

/* Icons */
.products-feature-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background-color: #eff6ff;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.75rem;
  transition: all 0.3s ease;
}

.products-feature-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.85rem;
  line-height: 1.3;
}

.products-feature-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Highlighted Cell State */
.products-features-cell.highlighted-cell {
  background-color: var(--primary-color);
  color: #ffffff;
}

.products-features-cell.highlighted-cell .products-feature-icon-box {
  background-color: #ffffff !important;
  color: var(--primary-color) !important;
}

.products-features-cell.highlighted-cell .products-feature-title {
  color: #ffffff !important;
}

.products-features-cell.highlighted-cell .products-feature-desc {
  color: rgba(255, 255, 255, 0.85) !important;
}

/* Responsive Grid Border Resets */
@media (max-width: 991.98px) {
  .products-features-grid {
    grid-template-columns: 1fr;
  }

  .products-features-cell {
    border-right: none;
    border-bottom: 1px solid rgba(11, 76, 187, 0.18);
    padding: 2.25rem 1.5rem;
  }

  .products-features-cell:last-child {
    border-bottom: none;
  }
}

/* Brand Partners Slider Section */
.products-partners-carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.products-partners-wrapper {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-top: 1rem;
  padding-bottom: 2rem;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  /* Hide scrollbar by default */
  scrollbar-width: none;
  /* Firefox */
}

.products-partners-wrapper::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

/* Dynamic alignment with container edges */
@media (min-width: 1400px) {
  .products-partners-wrapper {
    padding-left: calc((100vw - 1320px) / 2 + 12px);
    padding-right: calc((100vw - 1320px) / 2 + 12px);
  }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
  .products-partners-wrapper {
    padding-left: calc((100vw - 1140px) / 2 + 12px);
    padding-right: calc((100vw - 1140px) / 2 + 12px);
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .products-partners-wrapper {
    padding-left: calc((100vw - 960px) / 2 + 12px);
    padding-right: calc((100vw - 960px) / 2 + 12px);
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .products-partners-wrapper {
    padding-left: calc((100vw - 720px) / 2 + 12px);
    padding-right: calc((100vw - 720px) / 2 + 12px);
  }
}

@media (max-width: 767.98px) {
  .products-partners-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.partner-profile-card {
  flex: 0 0 310px;
  width: 310px;
  height: 195px;
  background-color: var(--bg-white) !important;
  border: 1px solid #eef2f6 !important;
  border-radius: 16px !important;
  padding: 1.5rem !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.015) !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.partner-profile-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 15px 30px rgba(11, 76, 187, 0.06) !important;
  border-color: rgba(11, 76, 187, 0.12) !important;
}

.partner-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.partner-badge {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  background-color: #eff6ff !important;
  color: #475569 !important;
  /* Steel-slate color matching mockup */
}

.partner-card-icon {
  color: #334155 !important;
  /* Dark charcoal icon matching mockup */
  font-size: 0.95rem;
}

.partner-card-logo-area {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  padding: 0.5rem 0;
}

.partner-card-logo {
  max-width: 75%;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.partner-profile-card:hover .partner-card-logo {
  transform: scale(1.04);
}

.partner-card-footer {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.partner-card-footer h5 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.partner-card-footer span {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Partners Slider Custom Arrows - Floating on viewport edges */
#partnersPrev,
#partnersNext {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50% !important;
  z-index: 10;
  background-color: var(--bg-white);
  color: var(--primary-color);
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

#partnersPrev:hover,
#partnersNext:hover {
  background-color: var(--primary-color) !important;
  color: var(--bg-white) !important;
  border-color: var(--primary-color) !important;
  transform: translateY(-50%) scale(1.08) !important;
  box-shadow: 0 6px 15px rgba(11, 76, 187, 0.2) !important;
}

#partnersPrev {
  left: 24px;
}

#partnersNext {
  right: 24px;
}

@media (max-width: 991.98px) {

  #partnersPrev,
  #partnersNext {
    display: none !important;
    /* Hide arrows on tablets/mobile to encourage touch swipe */
  }
}

/* ==========================================================================
   Section 3: Our Products Grid (12 Items)
   ========================================================================== */
.product-category-card {
  background-color: var(--bg-white);
  border: 1px solid #eef2f6;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.015);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-category-img-wrapper {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background-color: #f8fafc;
}

.product-category-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-category-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-category-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  transition: color 0.4s ease;
}

.product-category-link {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  transition: color 0.4s ease;
}

.product-category-link i {
  transition: transform 0.3s ease;
}

/* Hover Effect - Blue Card State */
.product-category-card:hover {
  transform: translateY(-8px);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 20px 40px rgba(11, 76, 187, 0.15);
}

.product-category-card:hover .product-category-body {
  background-color: var(--primary-color);
}

.product-category-card:hover .product-category-title {
  color: var(--bg-white);
}

.product-category-card:hover .product-category-link {
  color: var(--bg-white);
}

.product-category-card:hover .product-category-link i {
  transform: translateX(5px);
}

.product-category-card:hover .product-category-img-wrapper img {
  transform: scale(1.05);
}

/* ==========================================================================
   Products Page Responsive Overrides (Mobile & Tablet)
   ========================================================================== */
@media (max-width: 991.98px) {

  /* Tablet views (col-md-4 - 3 columns) */
  .product-category-img-wrapper {
    height: 160px;
  }

  .product-category-body {
    padding: 1.25rem;
  }

  .product-category-title {
    font-size: 1.15rem;
  }
}

@media (max-width: 767.98px) {

  /* Mobile / Small tablet views */
  #products-hero h1 {
    font-size: 2.25rem !important;
    margin-bottom: 0.5rem !important;
  }

  #products-hero p {
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
  }

  #products-partners h2,
  #our-products h2 {
    font-size: 1.85rem !important;
    margin-bottom: 1.25rem !important;
  }

  .products-partners-carousel-container {
    margin-top: 0.5rem;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {

  /* Large Mobile / Small Tablet (col-sm-6 - 2 columns) */
  .product-category-img-wrapper {
    height: 170px;
  }

  .product-category-body {
    padding: 1.25rem;
  }
}

@media (max-width: 575.98px) {

  /* Phone Portrait (col-12 - 1 column) */
  .product-category-img-wrapper {
    height: 210px;
    /* Taller image for full-width mobile card layout */
  }

  .product-category-body {
    padding: 1.25rem;
  }
}

/* ==========================================================================
   Product Detail Page Styles
   ========================================================================== */

/* ── Hero Banner ── */
#product-detail-hero {
  line-height: 0;
  /* removes any gap below the image */
}

.pd-hero-wrapper {
  position: relative;
  width: 100%;
  /* Fix height for landscape-cinematic look */
  height: 480px;
  overflow: hidden;
  background: #0a0a14;
}

.pd-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Bottom gradient overlay so the page transition looks smooth */
.pd-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to top, rgba(10, 10, 20, 0.55) 0%, transparent 100%);
  pointer-events: none;
}

/* Responsive hero heights */
@media (max-width: 1199.98px) {
  .pd-hero-wrapper {
    height: 400px;
  }
}

@media (max-width: 991.98px) {
  .pd-hero-wrapper {
    height: 340px;
  }
}

@media (max-width: 767.98px) {
  .pd-hero-wrapper {
    height: 280px;
  }
}

@media (max-width: 575.98px) {
  .pd-hero-wrapper {
    height: 220px;
  }
}

/* ── Breadcrumb Strip ── */
#product-detail-breadcrumb {
  background: #fff;
}

.pd-breadcrumb {
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
}

.pd-breadcrumb a {
  color: var(--primary-color);
  text-decoration: none;
  transition: opacity 0.2s;
}

.pd-breadcrumb a:hover {
  opacity: 0.75;
  text-decoration: underline;
}

.pd-breadcrumb .breadcrumb-item.active {
  color: #64748b;
  font-weight: 500;
}

.pd-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  color: #94a3b8;
}

/* Filter bar */
.pd-filter-label {
  font-size: 0.85rem;
  color: #64748b;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}

.pd-filter-select {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 0.35rem 0.9rem;
  font-size: 0.85rem;
  color: var(--text-dark);
  font-family: 'Inter', sans-serif;
  background: #f8fafc;
  outline: none;
  cursor: pointer;
  transition: border-color 0.25s;
}

.pd-filter-select:focus {
  border-color: var(--primary-color);
  background: #fff;
}

/* ── Section Heading ── */
.pd-section-eyebrow {
  font-size: 0.78rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--primary-color);
}

.pd-section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

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

.pd-section-desc {
  color: #64748b;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  max-width: 620px;
  line-height: 1.65;
}

/* ── Product Cards ── */
.pd-product-card {
  border-radius: 16px;
  border: 1px solid #f1f5f9;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pd-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(11, 76, 187, 0.12);
  border-color: rgba(11, 76, 187, 0.18);
}

/* Image wrapper */
.pd-product-img-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f8fafc;
}

.pd-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Badges */
.pd-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.7rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0.28rem 0.65rem;
  border-radius: 20px;
  z-index: 2;
}

.pd-badge-new {
  background: #eff6ff;
  color: var(--primary-color);
  border: 1px solid rgba(11, 76, 187, 0.2);
}

.pd-badge-popular {
  background: linear-gradient(135deg, #0b4cbb, #1e6eff);
  color: #fff;
  border: none;
}

/* Card body */
.pd-product-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pd-product-brand {
  font-size: 0.72rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.pd-product-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.pd-product-spec {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.55;
  flex: 1;
  margin-bottom: 1.25rem;
}

/* Footer with enquire button */
.pd-product-footer {
  margin-top: auto;
}

.pd-enquire-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  border-top: 1px solid #f1f5f9;
  padding-top: 1rem;
  width: 100%;
  letter-spacing: 0.2px;
  transition: gap 0.25s cubic-bezier(0.16, 1, 0.3, 1), color 0.25s;
}

.pd-enquire-btn i {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.pd-enquire-btn:hover {
  gap: 0.7rem;
  color: #0d3a9e;
}

.pd-enquire-btn:hover i {
  transform: translateX(4px);
}

/* ── Load More Button ── */
.pd-load-more-btn {
  background: transparent;
  border: 1.5px solid #e2e8f0;
  border-radius: 50px;
  padding: 0.75rem 2.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: 0.2px;
}

.pd-load-more-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11, 76, 187, 0.2);
}

/* ── CTA Banner Section ── */
.pd-cta-section {
  background: linear-gradient(135deg, #0b4cbb 0%, #0d3a9e 55%, #0a2d7a 100%);
  position: relative;
  overflow: hidden;
}

.pd-cta-inner {
  position: relative;
  z-index: 2;
}

.pd-cta-watermark {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 240px;
  opacity: 0.06;
  z-index: 1;
  pointer-events: none;
}

.pd-cta-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

.pd-cta-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 0.75rem;
}

.pd-cta-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 0;
}

.pd-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: var(--primary-color);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.pd-cta-btn i {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.pd-cta-btn:hover {
  background: #eff6ff;
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}

.pd-cta-btn:hover i {
  transform: translateX(5px);
}

/* ── Responsive overrides for product detail ── */
@media (max-width: 991.98px) {
  .pd-section-title {
    font-size: 2rem;
  }

  .pd-cta-title {
    font-size: 1.85rem;
  }
}

@media (max-width: 767.98px) {
  .pd-section-title {
    font-size: 1.75rem;
  }

  .pd-cta-title {
    font-size: 1.6rem;
  }

  .pd-cta-watermark {
    display: none;
  }

  .pd-product-img-wrapper {
    height: 180px;
  }
}

@media (max-width: 575.98px) {
  .pd-section-title {
    font-size: 1.5rem;
  }

  .pd-product-img-wrapper {
    height: 200px;
  }

  .pd-product-body {
    padding: 1.25rem;
  }

  .pd-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   Product Detail — Section 2: Category Showcase
   ========================================================================== */

.pd-showcase-section {
  background: #f0f4f9;
  padding: 5rem 0;
}

/* Badge pill */
.pd-showcase-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--text-dark);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 50px;
  padding: 0.35rem 1rem 0.35rem 0.75rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.pd-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary-color);
  flex-shrink: 0;
}

/* Headline */
.pd-showcase-headline {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
  letter-spacing: -0.8px;
  margin-bottom: 1.25rem;
}

.pd-showcase-headline span {
  color: var(--primary-color);
}

/* Description */
.pd-showcase-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.75;
  max-width: 480px;
}

/* CTA Buttons */
.pd-showcase-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-color);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.8rem 1.75rem;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 6px 22px rgba(11, 76, 187, 0.28);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.pd-showcase-btn-primary i {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.pd-showcase-btn-primary:hover {
  background: #0d3a9e;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(11, 76, 187, 0.32);
}

.pd-showcase-btn-primary:hover i {
  transform: translateX(4px);
}

.pd-showcase-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text-dark);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.8rem 1.75rem;
  border-radius: 8px;
  border: 1.5px solid #cbd5e1;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.pd-showcase-btn-ghost:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: #eff6ff;
}

/* Product Image Card */
.pd-showcase-img-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
  line-height: 0;
}

.pd-showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive showcase */
@media (max-width: 991.98px) {
  .pd-showcase-section {
    padding: 4rem 0;
  }

  .pd-showcase-headline {
    font-size: 2.4rem;
  }

  .pd-showcase-img-card {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 767.98px) {
  .pd-showcase-headline {
    font-size: 2rem;
  }

  .pd-showcase-desc {
    max-width: 100%;
  }

  .pd-showcase-img-card {
    border-radius: 14px;
  }
}

@media (max-width: 575.98px) {
  .pd-showcase-section {
    padding: 3rem 0;
  }

  .pd-showcase-headline {
    font-size: 1.8rem;
  }

  .pd-showcase-btn-primary,
  .pd-showcase-btn-ghost {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   Product Detail — Section 3: Feature Cards
   ========================================================================== */

.pd-features-section {
  background: #ffffff;
  padding: 0;
  border-top: 1px solid #f1f5f9;
}

/* 3-column equal-height grid with dividers between cells */
.pd-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

/* Dividers between cards using box-shadow trick (no extra elements) */
.pd-features-grid .pd-feature-card:not(:last-child) {
  border-right: 1px solid rgba(226, 232, 240, 0.8);
}

/* Base card */
.pd-feature-card {
  padding: 3rem 2.5rem;
  transition: background 0.3s;
}

/* Icon container */
.pd-feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #eff6ff;
  flex-shrink: 0;
}

/* Active (highlighted blue) card */
.pd-feature-card-active {
  background: #0b4cbb;
  border-right-color: transparent !important;
}

.pd-feature-card-active .pd-feature-icon {
  background: rgba(255, 255, 255, 0.15);
}

.pd-feature-card-active .pd-feature-title {
  color: #ffffff;
}

.pd-feature-card-active .pd-feature-desc {
  color: rgba(255, 255, 255, 0.8);
}

/* Titles & Descriptions */
.pd-feature-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.65rem;
  letter-spacing: -0.2px;
}

.pd-feature-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Responsive feature grid */
@media (max-width: 991.98px) {
  .pd-features-grid {
    grid-template-columns: 1fr;
  }

  .pd-features-grid .pd-feature-card:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  }

  .pd-feature-card-active {
    border-bottom-color: transparent !important;
  }

  .pd-feature-card {
    padding: 2.25rem 1.75rem;
  }
}

@media (max-width: 767.98px) {
  .pd-feature-card {
    padding: 2rem 1.5rem;
  }
}

/* ==========================================================================
   Product Detail — Section 5: Related Products
   ========================================================================== */

.pd-related-section {
  background: #f8f9fc;
  border-top: 1px solid #eef1f6;
  border-bottom: 1px solid #eef1f6;
}

/* Section title */
.pd-related-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.pd-related-title span {
  color: var(--primary-color);
}

/* Subtitle */
.pd-related-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.6;
  max-width: 520px;
}

/* Explore Full Catalog link */
.pd-related-explore-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  white-space: nowrap;
  transition: gap 0.25s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s;
  flex-shrink: 0;
  align-self: flex-start;
}

.pd-related-explore-link i {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 0.8rem;
}

.pd-related-explore-link:hover {
  gap: 0.7rem;
  opacity: 0.85;
}

.pd-related-explore-link:hover i {
  transform: translateX(4px);
}

/* ── Card Shell ── */
.pd-related-card {
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pd-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(11, 76, 187, 0.1);
  border-color: rgba(11, 76, 187, 0.18);
}

/* ── Image Block ── */
.pd-related-img-block {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #ebf1fb;
  /* light blue-gray for laptop card */
  flex-shrink: 0;
  position: relative;
}

/* Light gray variant (for desktop/tower images) — use contain to show full product */
.pd-related-img-block--light {
  background: #f0f2f5;
}

/* Laptop card: object-fit cover fills the frame dramatically */
.pd-related-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Desktop/tower card: contain so the product is fully visible with breathing room */
.pd-related-img-block--light .pd-related-img {
  object-fit: contain;
  padding: 1.5rem;
}

.pd-related-card:hover .pd-related-img {
  transform: scale(1.04);
}

/* ── Card Body ── */
.pd-related-body {
  padding: 1.75rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.pd-related-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  letter-spacing: -0.2px;
}

.pd-related-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.83rem;
  color: #64748b;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

/* ── View Products Button ── */
.pd-related-card-btn {
  display: inline-block;
  background: var(--primary-color);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.65rem 1.4rem;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 0.5rem;
  align-self: flex-start;
  box-shadow: 0 4px 14px rgba(11, 76, 187, 0.22);
  transition: background 0.25s, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.25s;
  letter-spacing: 0.2px;
}

.pd-related-card-btn:hover {
  background: #0d3a9e;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(11, 76, 187, 0.28);
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
  .pd-related-title {
    font-size: 1.75rem;
  }

  .pd-related-img-block {
    height: 240px;
  }
}

@media (max-width: 767.98px) {
  .pd-related-title {
    font-size: 1.6rem;
  }

  .pd-related-img-block {
    height: 210px;
  }

  .pd-related-body {
    padding: 1.25rem 1.25rem 1.5rem;
  }

  .pd-related-explore-link {
    align-self: flex-start;
  }
}

@media (max-width: 575.98px) {
  .pd-related-img-block {
    height: 230px;
  }

  .pd-related-card-btn {
    width: 100%;
    text-align: center;
  }
}

/* ── Brand Partners Heading Responsiveness ── */
@media (max-width: 767.98px) {
  #partners h2 {
    font-size: 1.85rem !important;
  }
}

@media (max-width: 575.98px) {
  #partners h2 {
    font-size: 1.5rem !important;
  }
}

/* ==========================================================================
   Divisions Page Skewed Hero Styles
   ========================================================================== */
.divisions-hero-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #0c0d14;
  border-bottom: 5px solid var(--primary-color);
}

.divisions-hero-skewed {
  display: flex;
  width: 110%;
  margin-left: -5%;
  height: 520px;
  overflow: hidden;
}

.skewed-panel {
  flex: 1;
  height: 100%;
  position: relative;
  overflow: hidden;
  transform: skewX(-12deg);
  border-right: 5px solid #fff;
  transition: flex 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.skewed-panel:last-child {
  border-right: none;
}

.skewed-panel img {
  width: 165%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: skewX(12deg) scale(1.1);
  position: absolute;
  left: -32.5%;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.skewed-panel::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 120%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  transition: background 0.4s ease;
  pointer-events: none;
}

.skewed-panel:hover {
  flex: 1.6;
}

.skewed-panel:hover img {
  transform: skewX(12deg) scale(1.18);
}

.skewed-panel:hover::after {
  background: rgba(0, 0, 0, 0);
}

.skewed-panel.active {
  flex: 2.5;
}

.skewed-panel.active::after {
  background: rgba(0, 0, 0, 0);
}

.skewed-panel.active img {
  transform: skewX(12deg) scale(1.15);
}

.divisions-page-title {
  color: var(--text-dark);
  font-size: 2.3rem;
  letter-spacing: -0.5px;
  font-family: 'Outfit', sans-serif;
  transition: font-size 0.3s ease;
}

/* Skewed Hero Responsive Adjustments */
@media (max-width: 991.98px) {
  .divisions-hero-skewed {
    height: 380px;
  }

  .skewed-panel {
    transform: skewX(-10deg);
    border-right: 4px solid #fff;
  }

  .skewed-panel img {
    transform: skewX(10deg) scale(1.1);
    left: -28%;
  }

  .skewed-panel:hover img {
    transform: skewX(10deg) scale(1.18);
  }

  .skewed-panel.active {
    flex: 2.2;
  }

  .skewed-panel.active img {
    transform: skewX(10deg) scale(1.15);
  }

  .divisions-page-title {
    font-size: 1.95rem;
  }
}

@media (max-width: 767.98px) {
  .divisions-hero-skewed {
    flex-direction: column;
    width: 100%;
    margin-left: 0;
    height: auto;
  }

  .skewed-panel {
    transform: none;
    height: 110px;
    /* Reduced from 140px to prevent the hero from taking up too much vertical space on mobile */
    border-right: none;
    border-bottom: 3px solid #fff;
  }

  .skewed-panel.active {
    height: 180px;
    /* Highlight active panel in vertical mobile view */
  }

  .skewed-panel.active img {
    transform: scale(1.12);
  }

  .skewed-panel:last-child {
    border-bottom: none;
  }

  .skewed-panel img {
    transform: scale(1.05);
    width: 100%;
    left: 0;
  }

  .skewed-panel:hover img {
    transform: scale(1.12);
  }

  .skewed-panel::after {
    width: 100%;
  }

  .divisions-page-title {
    font-size: 1.65rem;
  }
}

/* ==========================================================================
   Division Detail Section 2 (Operational Excellence) Styles
   ========================================================================== */
.divisions-detail-highlight-box {
  background-color: #f0f6ff;
  border-top: 1px solid #cbdcf7;
  border-bottom: 1px solid #cbdcf7;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
}

.highlight-box-icon {
  width: 42px;
  height: 42px;
  background-color: #dbeafe;
  color: var(--primary-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.highlight-box-content {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.highlight-box-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 1.2px;
  color: var(--text-dark);
  text-transform: uppercase;
  margin: 0;
}

.highlight-box-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: #475569;
  margin: 0;
}

.divisions-detail-showcase-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 90%;
  /* Aspect ratio constraint */
  overflow: visible;
}

.showcase-bg-box {
  position: absolute;
  top: 40px;
  right: 20px;
  width: 28%;
  height: 30%;
  background-color: #5b6b77;
  /* Slate gray background */
  border-radius: 16px;
  overflow: hidden;
  z-index: 1;
}

.division-detail-sec-title {
  font-size: 2.3rem;
  transition: font-size 0.3s ease;
}

.showcase-img-card {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 85%;
  height: 85%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.showcase-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-label-card {
  position: absolute;
  bottom: 6%;
  left: 6%;
  background-color: #ffffff;
  padding: 15px 25px;
  border-left: 4px solid var(--primary-color);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  z-index: 3;
  border-radius: 8px;
}

.label-card-concept {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.label-card-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-dark);
  margin: 0;
}

@media (min-width: 992px) {
  .divisions-detail-showcase-wrapper {
    height: 100%;
    padding-bottom: 0;
    min-height: 520px;
  }
}

/* Responsiveness overrides for Section 2 details */
@media (max-width: 991.98px) {
  .divisions-detail-showcase-wrapper {
    max-width: 500px;
    margin: 3rem auto 0;
    padding-bottom: 85%;
  }

  .division-detail-sec-title {
    font-size: 1.95rem !important;
  }
}

@media (max-width: 767.98px) {
  .divisions-detail-highlight-box {
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
  }

  .divisions-detail-showcase-wrapper {
    padding-bottom: 80%;
  }

  .showcase-label-card {
    left: 10px;
    bottom: 2%;
    padding: 12px 18px;
  }

  .label-card-title {
    font-size: 1rem;
  }

  .division-detail-sec-title {
    font-size: 1.75rem !important;
  }
}

@media (max-width: 575.98px) {
  .division-detail-sec-title {
    font-size: 1.5rem !important;
  }
}

/* ==========================================================================
   Division Detail Section 3 (Related Companies) Styles
   ========================================================================== */
.company-brand-card {
  background-color: var(--bg-white) !important;
  border-radius: 16px !important;
  border: 1px solid #f1f5f9 !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.015) !important;
  overflow: hidden !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: flex;
  flex-direction: column;
}

.company-brand-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 24px 50px rgba(11, 76, 187, 0.08) !important;
  border-color: rgba(11, 76, 187, 0.15) !important;
}

.company-card-img-wrapper {
  height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
  width: 100%;
}

.company-card-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
}

.company-card-header-overlay {
  position: absolute;
  bottom: 20px;
  left: 24px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.company-badge-pill {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  background-color: var(--primary-color);
  color: #ffffff;
  text-transform: uppercase;
  align-self: flex-start;
}

.company-card-img-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: #ffffff;
  margin: 0;
}

.company-card-body {
  padding: 2rem !important;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
  position: relative;
}

.company-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

.company-card-link {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--primary-color);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}

.company-card-link i {
  transition: transform 0.25s ease;
}

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

.company-icon-badge {
  width: 38px;
  height: 38px;
  background-color: #f0f6ff;
  color: var(--primary-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 1rem;
}

/* Highlighted / Active Card Style */
.company-card-active {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

.company-card-active .company-card-desc {
  color: rgba(255, 255, 255, 0.82);
}

.company-card-active .company-card-link {
  color: #ffffff;
}

.company-card-active .company-icon-badge {
  background-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.company-card-active .company-badge-pill {
  background-color: #ffffff;
  color: var(--primary-color);
}

/* Related Companies Mobile Adaptations */
@media (max-width: 767.98px) {
  .company-card-img-wrapper {
    height: 220px;
  }

  .company-card-body {
    padding: 1.5rem !important;
  }

  .company-card-img-title {
    font-size: 1.2rem;
  }
}

/* ==========================================================================
   Companies Page Section 2 (Distinguished Enterprises) Styles
   ========================================================================== */
.enterprise-image-card {
  width: 100%;
  overflow: hidden;
  border-radius: 0; /* Sharp corners to match mockup */
  box-shadow: none;
  border: none;
}

.enterprise-image-card img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(100%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.enterprise-image-card:hover img {
  transform: scale(1.04);
  filter: grayscale(0%);
}

.enterprise-card-title {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 2.35rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.9rem;
  letter-spacing: -0.3px;
}

.enterprise-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2.2rem;
}

/* Title Underline */
.title-underline {
  width: 260px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 1.5px;
  transition: width 0.3s ease;
}

/* View Details Outline Button */
.btn-view-details-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: var(--primary-color) !important;
  border: 1.5px solid var(--primary-color);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 0.72rem 1.8rem;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(11, 76, 187, 0.03);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-view-details-outline:hover {
  background-color: #eff6ff;
  border-color: var(--primary-dark);
  color: var(--primary-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11, 76, 187, 0.1);
}

/* View Details Solid Button */
.btn-view-details-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: #ffffff !important;
  border: 1.5px solid var(--primary-color);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 0.72rem 1.8rem;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(11, 76, 187, 0.2);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-view-details-solid:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(11, 76, 187, 0.3);
}

@media (max-width: 991.98px) {
  .enterprise-card-title {
    font-size: 1.85rem;
    margin-bottom: 0.8rem;
  }
  .enterprise-card-desc {
    font-size: 0.88rem;
    margin-bottom: 1.75rem;
  }
  .btn-view-details-outline,
  .btn-view-details-solid {
    padding: 0.65rem 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .enterprise-card-title {
    font-size: 1.55rem;
    margin-bottom: 0.7rem;
  }
  .enterprise-card-desc {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
  }
  .btn-view-details-outline,
  .btn-view-details-solid {
    padding: 0.6rem 1.35rem;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
  }
  .title-underline {
    width: 160px;
  }
}

/* ==========================================================================
   Company Detail Page Image Layouts (Section 2)
   ========================================================================== */
.company-detail-main-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.company-detail-main-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.company-detail-main-img:hover img {
  transform: scale(1.02);
}

.company-detail-sub-img {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

.company-detail-sub-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.company-detail-sub-img:hover img {
  transform: scale(1.03);
}

@media (max-width: 767.98px) {
  .company-detail-sub-img {
    height: 140px;
  }
}

/* ==========================================================================
   Company Detail Page Section 3: Related Division Card
   ========================================================================== */
.division-showcase-card {
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.division-showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(11, 76, 187, 0.06);
}

.division-showcase-img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  overflow: hidden;
  position: relative;
}

.division-showcase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.division-showcase-card:hover .division-showcase-img img {
  transform: scale(1.02);
}

.division-showcase-body {
  padding: 3rem 2.5rem;
}

.division-showcase-badge-icon {
  width: 44px;
  height: 44px;
  background-color: #eff6ff;
  color: var(--primary-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.division-showcase-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--text-dark);
}

.division-showcase-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.division-stat-val {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--primary-color);
  margin-bottom: 2px;
}

.division-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: var(--text-muted);
}

@media (max-width: 991.98px) {
  .division-showcase-body {
    padding: 2.25rem 2rem;
  }
  .division-showcase-img {
    min-height: 300px;
  }
  .company-detail-title {
    font-size: 2rem !important;
  }
}

@media (max-width: 767.98px) {
  .division-showcase-img {
    min-height: 250px;
  }
}

@media (max-width: 575.98px) {
  .company-detail-title {
    font-size: 1.65rem !important;
    line-height: 1.3;
  }
  .company-detail-paragraphs p {
    font-size: 0.88rem !important;
    line-height: 1.7 !important;
    margin-bottom: 0.75rem !important;
  }
  .division-showcase-body {
    padding: 2rem 1.25rem;
  }
  .division-showcase-title {
    font-size: 1.4rem;
  }
  .division-showcase-desc {
    font-size: 0.85rem;
    line-height: 1.65;
    margin-bottom: 1.5rem !important;
  }
  .division-stat-val {
    font-size: 1.2rem;
  }
  .division-stat-label {
    font-size: 0.72rem;
  }
}

/* ==========================================================================
   Career Page Hero & Card Styling
   ========================================================================== */
.career-hero-banner {
  width: 100%;
  height: 380px;
  overflow: hidden;
  position: relative;
  background-color: #f8fafc;
}

.career-hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.career-section-desc {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}

.career-card {
  background-color: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  padding: 2.5rem 2.25rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.015);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.career-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(11, 76, 187, 0.05);
  border-color: rgba(11, 76, 187, 0.12);
}

.career-card-icon-badge {
  width: 46px;
  height: 46px;
  background-color: #eff6ff;
  color: var(--primary-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.career-card-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--text-dark);
  margin: 0;
}

.career-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* Highlighted / Active Card Style (Innovation First) */
.career-card-active {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  box-shadow: 0 16px 40px rgba(11, 76, 187, 0.2) !important;
}

.career-card-active:hover {
  box-shadow: 0 24px 50px rgba(11, 76, 187, 0.3) !important;
}

.career-card-active .career-card-icon-badge {
  background-color: #ffffff !important;
  color: var(--primary-color) !important;
}

.career-card-active .career-card-title {
  color: #ffffff !important;
}

.career-card-active .career-card-desc {
  color: rgba(255, 255, 255, 0.85) !important;
}

/* Career Page Responsive Adaptations */
@media (max-width: 991.98px) {
  .career-hero-banner {
    height: 300px;
  }
}

@media (max-width: 767.98px) {
  .career-hero-banner {
    height: 220px;
  }
  .career-card {
    padding: 2.25rem 2rem;
    gap: 1rem;
  }
  .career-section-desc {
    font-size: 0.95rem;
  }
}

@media (max-width: 575.98px) {
  .career-hero-banner {
    height: 160px;
  }
  .career-card {
    padding: 1.75rem 1.5rem;
  }
  .career-card-title {
    font-size: 1.2rem;
  }
  .career-card-desc {
    font-size: 0.85rem;
  }
}

/* ==========================================================================
   Career Page Section 3: Engineered for Success Styling
   ========================================================================== */
.career-benefit-icon {
  font-size: 2.5rem;
  color: #eff6ff;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.career-benefit-icon:hover {
  transform: scale(1.15);
}

/* ==========================================================================
   Career Page Section 4: Current Opportunities Styling
   ========================================================================== */
.btn-filter {
  background-color: #eff6ff;
  color: var(--primary-color) !important;
  border: none !important;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.62rem 1.35rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.btn-filter.dropdown-toggle::after {
  display: none !important; /* Hide default Bootstrap caret */
}

.btn-filter:hover, .btn-filter:focus {
  background-color: #dbeafe;
  color: var(--primary-dark) !important;
  box-shadow: 0 4px 12px rgba(11, 76, 187, 0.05);
}

.dropdown-menu {
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  padding: 0.5rem 0;
}

.dropdown-item {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--text-dark);
  padding: 0.5rem 1.25rem;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background-color: #eff6ff;
  color: var(--primary-color);
}

.dropdown-item.active, .dropdown-item:active {
  background-color: var(--primary-color) !important;
  color: #ffffff !important;
}

.job-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 2.25rem 2.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.job-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(11, 76, 187, 0.05);
  border-color: rgba(11, 76, 187, 0.15);
}

.job-title {
  color: var(--text-dark);
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.job-card:hover .job-title {
  color: var(--primary-color);
}

.badge-urgent {
  background-color: #e0f2fe !important;
  color: #0369a1 !important;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 0.32rem 0.65rem;
  border-radius: 6px;
  display: inline-block;
}

.btn-apply {
  background-color: #2f5282;
  color: #ffffff !important;
  border: 1.5px solid #2f5282;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(47, 82, 130, 0.15);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  width: auto;
  min-width: 130px;
}

.btn-apply:hover {
  background-color: #1d3557;
  border-color: #1d3557;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(29, 53, 87, 0.25);
}

@media (max-width: 767.98px) {
  .job-card {
    padding: 1.75rem 1.5rem;
  }
  .job-title {
    font-size: 1.15rem;
  }
  .btn-apply {
    margin-top: 0.5rem;
    width: 100%;
  }
}

/* ==========================================================================
   Career Page Section 5: CV / Portfolio Upload Styling
   ========================================================================== */
.career-upload-box {
  border: 1.5px dashed rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 3.5rem 2rem;
  background-color: rgba(255, 255, 255, 0.03);
  max-width: 540px;
  margin: 0 auto;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.career-upload-box:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.career-upload-box.drag-over {
  border-color: var(--primary-color);
  background-color: rgba(11, 76, 187, 0.12);
  transform: scale(1.02);
}

.career-upload-box.upload-success {
  border-color: rgba(46, 204, 113, 0.4);
  background-color: rgba(46, 204, 113, 0.05);
}

.btn-outline-danger {
  color: #ef4444 !important;
  border-color: #ef4444 !important;
  background-color: transparent !important;
  transition: all 0.25s ease;
}

.btn-outline-danger:hover {
  color: #ffffff !important;
  background-color: #ef4444 !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
}

/* Career Page Responsiveness Tuning */
@media (max-width: 991.98px) {
  #career-mindset-section h2,
  #career-engineered-section h2,
  #career-opportunities-section h2,
  #career-upload-section h2 {
    font-size: 2rem !important;
  }
  .career-section-desc {
    font-size: 0.95rem;
    max-width: 580px;
  }
}

@media (max-width: 767.98px) {
  #career-mindset-section h2,
  #career-engineered-section h2,
  #career-opportunities-section h2,
  #career-upload-section h2 {
    font-size: 1.75rem !important;
  }
  .career-section-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 480px;
  }
}

@media (max-width: 575.98px) {
  #career-mindset-section h2,
  #career-engineered-section h2,
  #career-opportunities-section h2,
  #career-upload-section h2 {
    font-size: 1.55rem !important;
  }
  .career-upload-box {
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
  }
}

/* ==========================================================================
   Blogs Page Custom Styles
   ========================================================================== */
.blogs-hero-banner {
  width: 100%;
  height: 380px;
  overflow: hidden;
  position: relative;
  background-color: #f8fafc;
}

.blogs-hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Category Filters Wrapper */
.blog-filters-wrapper {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE 10+ */
  padding: 0.2rem 0.1rem 0.5rem 0.1rem;
  flex-wrap: nowrap !important;
  width: 100%;
}

.blog-filters-wrapper::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}

/* Category Filters (Pills) */
.btn-blog-filter {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: #475569; /* Slate 600 */
  background: #f1f5f9; /* Slate 100 */
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: 8px; /* Slightly rounded corners */
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-blog-filter:hover {
  background-color: #e2e8f0; /* Slate 200 */
  color: var(--text-dark);
}

.btn-blog-filter.active {
  color: #ffffff;
  background-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(11, 76, 187, 0.15);
}

/* Sort By Button */
.btn-sort-by {
  white-space: nowrap;
}

.btn-sort-by:hover {
  color: var(--primary-color) !important;
}

/* Regular Grid Blog Card */
.blog-grid-card {
  background-color: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: none;
}

.blog-card-img-wrapper {
  position: relative;
  height: 220px;
  width: 100%;
  overflow: hidden;
  border-radius: 12px; /* Rounded corners as per design */
  background-color: #f1f5f9;
}

.blog-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-grid-card:hover .blog-card-img-wrapper img {
  transform: scale(1.05);
}

.hover-primary {
  transition: color 0.2s ease;
}

.hover-primary:hover {
  color: var(--primary-color) !important;
}

.blog-read-more-link {
  transition: all 0.2s ease;
}

.blog-read-more-link:hover {
  color: var(--primary-dark) !important;
}

.blog-read-more-link i {
  transition: transform 0.2s ease;
}

.blog-read-more-link:hover i {
  transform: translateX(4px);
}

/* Pagination / Load More Button */
.btn-load-more {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-color);
  background-color: transparent;
  border: 2px solid var(--primary-color);
  padding: 0.8rem 2.2rem;
  border-radius: 10px;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
}

.btn-load-more:hover {
  color: #ffffff;
  background-color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(11, 76, 187, 0.25);
  transform: translateY(-1px);
}

/* Sidebar Styling widgets */
.sidebar-filter-item:hover .sidebar-filter-name {
  color: var(--primary-color) !important;
}

.sidebar-filter-item:hover .badge {
  background-color: var(--primary-color) !important;
  color: #ffffff !important;
  box-shadow: 0 2px 8px rgba(11, 76, 187, 0.2);
}

.btn-social-circle {
  transition: all 0.25s ease !important;
}

.btn-social-circle:hover {
  background-color: var(--primary-color) !important;
  color: #ffffff !important;
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 4px 10px rgba(11, 76, 187, 0.15);
}

/* Hover shadow effects for subscription card button */
.hover-shadow {
  transition: all 0.25s ease;
}

.hover-shadow:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 15px rgba(255, 255, 255, 0.25) !important;
}

/* Responsive adjustments for Blogs Section 2 */
@media (max-width: 991.98px) {
  .blogs-hero-banner {
    height: 300px;
  }
}

@media (max-width: 767.98px) {
  .blogs-hero-banner {
    height: 220px;
  }
  .blog-card-img-wrapper {
    height: 200px;
  }
}

@media (max-width: 575.98px) {
  .blogs-hero-banner {
    height: 160px;
  }
  .blog-card-img-wrapper {
    height: 180px;
  }
}

/* ==========================================================================
   Refined Sidebar Widgets Styling
   ========================================================================== */
.sidebar-card-category {
  background-color: #f3f7fd !important; /* soft premium blue-grey tint */
  border-radius: 16px !important;
  border: none !important;
}

.sidebar-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
}

.sidebar-divider {
  border-top: 1px solid rgba(11, 76, 187, 0.08) !important;
  opacity: 1 !important;
  margin: 1rem 0 1.5rem 0 !important;
}

.sidebar-filter-item {
  transition: all 0.2s ease;
}

.sidebar-filter-name {
  color: #475569 !important; /* Slate 600 */
  font-size: 0.92rem !important;
  font-weight: 600 !important;
  transition: color 0.2s ease;
}

.sidebar-filter-item .badge {
  background-color: #eff6ff !important; /* Light blue-white badge background */
  color: var(--primary-color) !important; /* Primary brand blue */
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  padding: 0 !important;
}

.sidebar-filter-item:hover .sidebar-filter-name {
  color: var(--primary-color) !important;
}

.sidebar-filter-item:hover .badge {
  background-color: var(--primary-color) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 10px rgba(11, 76, 187, 0.2);
}

/* Subscription Card Widget */
.sidebar-card-subscribe {
  background-color: var(--primary-dark) !important; /* Darker Royal Blue */
  border-radius: 16px !important;
  border: none !important;
  padding: 2.25rem 2rem !important;
}

.sidebar-card-subscribe h5 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff !important;
}

.sidebar-card-subscribe p {
  color: rgba(255, 255, 255, 0.75) !important;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem !important;
  line-height: 1.6;
}

.sidebar-subscribe-input {
  background-color: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem !important;
  padding: 0.85rem 1.2rem !important;
  border-radius: 8px !important;
  transition: all 0.25s ease;
}

.sidebar-subscribe-input::placeholder {
  color: rgba(255, 255, 255, 0.55) !important;
}

.sidebar-subscribe-input:focus {
  background-color: rgba(255, 255, 255, 0.2) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08) !important;
  outline: none;
}

.sidebar-subscribe-btn {
  background-color: #ffffff !important;
  color: var(--primary-color) !important;
  font-family: 'Outfit', sans-serif;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  padding: 0.85rem !important;
  border-radius: 8px !important;
  border: none !important;
  transition: all 0.25s ease;
}

.sidebar-subscribe-btn:hover {
  background-color: #f8fafc !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12) !important;
}

/* Trending insights */
.trending-title a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.trending-title a:hover {
  color: var(--primary-color) !important;
}

.trending-thumb-wrapper img {
  transition: transform 0.4s ease;
}

.trending-insights-widget .d-flex:hover .trending-thumb-wrapper img {
  transform: scale(1.06);
}

/* ==========================================================================
   Blog Detail Page Section 2, Sidebar & Related Grid Styles
   ========================================================================== */
.blog-detail-category-pill {
  background-color: #eff6ff; /* light blue bg tint */
  color: var(--primary-color);
  padding: 0.35rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: 0.8px;
  font-family: 'Outfit', sans-serif;
}

.blog-detail-main-title {
  font-size: 2.75rem;
  line-height: 1.25;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

.author-initials-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
}

.blog-detail-cover-wrapper {
  background-color: #f1f5f9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  width: 100%;
  height: 440px;
}

.blog-detail-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-detail-body-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #334155; /* Slate 700 */
}

.blog-detail-body-text p {
  margin-bottom: 1.5rem;
}

.blog-detail-body-text p.lead-text {
  font-size: 1.15rem;
  line-height: 1.75;
  color: #1e293b; /* Slate 800 */
  font-weight: 500;
  margin-bottom: 2rem;
}

.blog-detail-body-text h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 2.5rem;
  margin-bottom: 1.1rem;
  letter-spacing: -0.3px;
}

/* Light blue boxed quote styling */
.blog-detail-quote-box {
  background-color: #f3f8ff; /* Soft tinted light blue */
  border-left: 4px solid var(--primary-color);
  padding: 1.8rem 2rem;
  border-radius: 0 12px 12px 0;
  margin: 2.2rem 0;
}

.blog-detail-quote-box p {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--primary-dark);
  line-height: 1.65;
}

/* Benefit Cards in body copy */
.benefit-card {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  transition: all 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(11, 76, 187, 0.15);
}

.benefit-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  color: var(--text-dark);
}

.benefit-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  line-height: 1.6;
  color: #64748b; /* Slate 500 */
}

/* Circular share buttons */
.btn-share-social-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #f1f5f9;
  color: #475569;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  text-decoration: none;
  font-size: 0.92rem;
}

.btn-share-social-circle:hover {
  background-color: var(--primary-color);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(11, 76, 187, 0.2);
}

/* Tag Cloud in sidebar */
.btn-tag-pill {
  background-color: #f1f5f9;
  color: #475569;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.btn-tag-pill:hover {
  background-color: #eff6ff;
  color: var(--primary-color);
  border-color: rgba(11, 76, 187, 0.12);
}

/* Advisory Widget */
.sidebar-advisory-card {
  transition: all 0.25s ease;
}

.sidebar-advisory-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.advisory-link {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  transition: color 0.2s ease;
}

.advisory-link i {
  transition: transform 0.2s ease;
}

.advisory-link:hover {
  color: var(--primary-dark) !important;
}

.advisory-link:hover i {
  transform: translateX(4px);
}

/* Bottom Related Insights Grid */
.briefing-card {
  transition: all 0.3s ease;
}

.briefing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg) !important;
}

.briefing-img-wrapper img {
  transition: transform 0.6s ease;
}

.briefing-card:hover .briefing-img-wrapper img {
  transform: scale(1.05);
}

.briefing-eyebrow {
  background-color: var(--primary-color);
  padding: 0.35rem 0.8rem;
  border-radius: 4px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.briefing-read-link {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.8px;
  transition: color 0.2s ease;
}

.briefing-read-link i {
  transition: transform 0.2s ease;
}

.briefing-card:hover .briefing-read-link {
  color: var(--primary-color) !important;
}

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

/* Responsive Overrides */
@media (max-width: 991.98px) {
  .blog-detail-main-title {
    font-size: 2.2rem;
  }
  .blog-detail-cover-wrapper {
    height: 340px;
  }
}

@media (max-width: 767.98px) {
  .blog-detail-main-title {
    font-size: 1.85rem;
  }
  .blog-detail-cover-wrapper {
    height: 260px;
  }
  .blog-detail-quote-box {
    padding: 1.25rem 1.5rem;
    margin: 1.8rem 0;
  }
  .blog-detail-quote-box p {
    font-size: 1rem;
  }
}

@media (max-width: 575.98px) {
  .blog-detail-main-title {
    font-size: 1.55rem;
  }
  .blog-detail-cover-wrapper {
    height: 190px;
  }
}

/* ==========================================================================
   Events Page Styles
   ========================================================================== */
.btn-event-filter {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: #475569; /* Slate 600 */
  background: #f1f5f9; /* Slate 100 */
  border: none;
  padding: 0.5rem 1.3rem;
  border-radius: 20px; /* Pill layout */
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-event-filter:hover {
  background-color: #e2e8f0;
  color: var(--text-dark);
}

.btn-event-filter.active {
  color: #ffffff;
  background-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(11, 76, 187, 0.15);
}

.event-filters-wrapper {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.2rem;
}

/* Asymmetrical grid card styles */
.event-card-horizontal,
.event-card-vertical,
.event-blue-card,
.event-bordered-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card-horizontal:hover,
.event-card-vertical:hover,
.event-blue-card:hover,
.event-bordered-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg) !important;
}

.event-badge {
  padding: 0.35rem 0.8rem;
  border-radius: 4px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.8px;
}

.bg-green-soft {
  background-color: #dcfce7; /* Green 100 */
}

.text-green {
  color: #15803d; /* Green 700 */
}

.bg-grey-soft {
  background-color: #f1f5f9; /* Slate 100 */
}

.text-grey {
  color: #475569; /* Slate 600 */
}

.bg-primary-soft {
  background-color: #eff6ff; /* Blue 50 */
}

.bg-white-opacity {
  background-color: rgba(255, 255, 255, 0.15);
}

/* Event Blue Card (Liquid Cooling) */
.event-blue-card {
  background-color: var(--primary-dark) !important;
}

/* Overlapping Avatars */
.avatar-round {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--primary-dark);
  object-fit: cover;
}

.avatar-count-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--primary-dark);
  background-color: #ffffff;
  color: var(--primary-color);
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
}

/* Event Buttons */
.btn-event-learn-more {
  background-color: #eff6ff !important;
  color: var(--primary-color) !important;
  font-family: 'Outfit', sans-serif;
  border-radius: 8px;
  transition: all 0.25s ease;
}

.btn-event-learn-more:hover {
  background-color: var(--primary-color) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(11, 76, 187, 0.2);
}

.btn-event-request-invitation {
  background-color: var(--primary-color) !important;
  color: #ffffff !important;
  font-family: 'Outfit', sans-serif;
  border-radius: 8px;
  transition: all 0.25s ease;
}

.btn-event-request-invitation:hover {
  background-color: var(--primary-dark) !important;
  box-shadow: 0 4px 12px rgba(11, 76, 187, 0.2);
}

.event-read-link {
  font-family: 'Outfit', sans-serif;
  transition: color 0.2s ease;
}

.event-read-link i {
  transition: transform 0.2s ease;
}

.event-read-link:hover {
  color: var(--primary-dark) !important;
}

.event-read-link:hover i {
  transform: translateX(4px);
}

.event-bordered-card {
  border: 1px solid #e2e8f0 !important;
}

/* Horizontal card flex fixes */
@media (min-width: 768px) {
  .event-img-col {
    min-height: 100%;
  }
}
@media (max-width: 767.98px) {
  .event-img-col {
    height: 200px;
  }
}

/* ==========================================================================
   Past Engagements Section Styles
   ========================================================================== */
.past-event-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.past-event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg) !important;
}

.past-event-img-wrapper {
  overflow: hidden;
}

.past-event-img-wrapper img {
  transition: transform 0.6s ease;
}

.past-event-card:hover .past-event-img-wrapper img {
  transform: scale(1.05);
}

.bg-past-event {
  background-color: var(--primary-dark) !important; /* Solid dark blue/royal blue for past event badge */
  color: #ffffff !important;
}

.btn-view-gallery {
  background-color: #eff6ff !important; /* Light blue background */
  color: var(--primary-color) !important; /* Primary color text */
  font-family: 'Outfit', sans-serif;
  border-radius: 8px;
  transition: all 0.25s ease;
}

.btn-view-gallery:hover {
  background-color: var(--primary-color) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(11, 76, 187, 0.2);
}

/* Event Card Title Sizing */
.event-card-title-lg {
  font-size: 1.6rem;
  transition: font-size 0.25s ease;
}

.event-card-title-sm {
  font-size: 1.25rem;
  transition: font-size 0.25s ease;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.event-filters-wrapper::-webkit-scrollbar {
  display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
.event-filters-wrapper {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

/* Responsive Overrides for Events Page */
@media (max-width: 991.98px) {
  .event-card-title-lg {
    font-size: 1.45rem;
  }
}

@media (max-width: 767.98px) {
  #events-section .display-5,
  #past-events-section .display-5 {
    font-size: 2.2rem !important;
  }
  .event-card-title-lg {
    font-size: 1.35rem;
  }
  .event-card-title-sm {
    font-size: 1.15rem;
  }
  .event-card-horizontal .card-body,
  .event-card-vertical .card-body,
  .event-blue-card,
  .event-bordered-card {
    padding: 2rem !important;
  }
}

@media (max-width: 575.98px) {
  #events-section .display-5,
  #past-events-section .display-5 {
    font-size: 1.85rem !important;
  }
  .event-card-title-lg {
    font-size: 1.25rem;
  }
  .event-card-title-sm {
    font-size: 1.1rem;
  }
  .event-card-horizontal .card-body,
  .event-card-vertical .card-body,
  .event-blue-card,
  .event-bordered-card,
  .past-event-card .card-body {
    padding: 1.5rem !important;
  }
  .btn-event-filter {
    font-size: 0.8rem;
    padding: 0.45rem 1.1rem;
  }
}

/* ==========================================================================
   Event Detail Page Styling
   ========================================================================== */
.event-info-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.event-info-box .d-flex {
  padding: 0.5rem 0;
}

.event-info-box .info-icon-wrapper {
  color: var(--primary-color);
  font-size: 1.15rem;
  transition: all 0.25s ease;
}

.event-info-box .d-flex:hover .info-icon-wrapper {
  background-color: var(--primary-color) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
}

.event-sidebar-card {
  border-radius: 12px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
}

.rsvp-input {
  border: 1px solid #cbd5e1 !important;
  padding: 0.75rem 1rem !important;
  border-radius: 6px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.85rem !important;
  transition: all 0.2s ease !important;
}

.rsvp-input:focus {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 3px rgba(11, 76, 187, 0.12) !important;
  outline: none;
}

.btn-event-rsvp {
  background-color: var(--primary-color) !important;
  color: #ffffff !important;
  font-family: 'Outfit', sans-serif;
  border-radius: 8px;
  transition: all 0.25s ease;
}

.btn-event-rsvp:hover {
  background-color: var(--primary-dark) !important;
  box-shadow: 0 6px 20px rgba(11, 76, 187, 0.18) !important;
  transform: translateY(-1px);
}

.event-detail-gallery .gallery-img-wrapper:hover img {
  transform: scale(1.06);
}

.event-detail-gallery .gallery-img-wrapper:hover .gallery-overlay {
  opacity: 1 !important;
}

/* Event Title Link in Grid (Upcoming/Past) */
.event-title-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.event-title-link:hover {
  color: var(--primary-color) !important;
  text-decoration: underline;
}

/* Responsive tweaks for Event Detail */
@media (max-width: 991.98px) {
  .event-info-box {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 575.98px) {
  .event-info-box {
    padding: 1.25rem !important;
  }
}

/* ==========================================================================
   Section 2 Intel Grid Styles
   ========================================================================== */
.intel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.intel-grid-item {
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.intel-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.intel-grid-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.intel-grid-item:hover img {
  transform: scale(1.05);
}

.intel-grid-item.bg-lavender {
  background-color: #eff2fe !important;
}

.intel-grid-item.bg-green-solid {
  background-color: #0a6c42 !important; /* solid premium dark green matching mockup */
}

.intel-stat-number {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.intel-stat-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-align: center;
}

/* Responsive Overrides for Intel Grid */
@media (max-width: 767.98px) {
  .intel-grid {
    gap: 1rem;
  }
  .intel-stat-number {
    font-size: 2.2rem;
  }
  .intel-stat-label {
    font-size: 0.65rem;
    letter-spacing: 0.5px;
  }
}

@media (max-width: 480px) {
  .intel-grid-item {
    padding: 0.8rem;
  }
  .intel-stat-number {
    font-size: 1.8rem;
  }
}

/* ==========================================================================
   Section 3 Event Gallery Slider Styles
   ========================================================================== */
.gallery-slider-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 0.5rem 0.2rem;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.gallery-slider-track::-webkit-scrollbar {
  display: none;
}
.gallery-slider-track {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.gallery-slide-card {
  flex: 0 0 calc(25% - 18px);
  scroll-snap-align: start;
  transition: transform 0.3s ease;
}

.gallery-slide-media {
  width: 100%;
  height: 200px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.gallery-slide-card:hover .gallery-slide-media {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.gallery-slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-slide-card:hover .gallery-slide-media img {
  transform: scale(1.04);
}

.video-overlay {
  transition: background-color 0.3s ease;
}

.gallery-slide-card:hover .video-overlay {
  background-color: rgba(0, 0, 0, 0.55) !important;
}

.play-button-icon {
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.gallery-slide-card:hover .play-button-icon {
  transform: scale(1.1);
  background-color: var(--primary-color) !important;
  color: #ffffff !important;
}

/* Slide Indicator Dots */
.gallery-indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #cbd5e1;
  transition: all 0.25s ease;
  cursor: pointer;
}

.gallery-indicator-dot.active {
  width: 20px;
  border-radius: 4px;
  background-color: var(--primary-color);
}

/* Arrow controls styling */
.btn-gallery-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2e8f0 !important;
  color: #475569 !important;
  background-color: #ffffff !important;
  transition: all 0.25s ease;
}

.btn-gallery-arrow:hover {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 10px rgba(11, 76, 187, 0.15);
}

/* ==========================================================================
   Section 4: Discover More Engagements Styles
   ========================================================================== */
.discover-card-blue {
  background-color: var(--primary-dark) !important; /* solid blue background */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.discover-card-white {
  background-color: #ffffff !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.discover-card-blue:hover,
.discover-card-white:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg) !important;
}

.discover-badge-white {
  background-color: #ffffff;
  color: var(--primary-color);
  padding: 0.35rem 0.8rem;
  border-radius: 4px;
  letter-spacing: 0.8px;
}

.discover-badge-blue {
  background-color: #eff6ff;
  color: var(--primary-color);
  padding: 0.35rem 0.8rem;
  border-radius: 4px;
  letter-spacing: 0.8px;
}

.discover-link {
  font-family: 'Outfit', sans-serif;
  transition: color 0.25s ease;
}

.discover-link .link-arrow {
  transition: transform 0.25s ease;
}

.discover-link:hover .link-arrow {
  transform: translateX(4px);
}

/* Responsive Overrides for Gallery & Discover More */
@media (max-width: 1199.98px) {
  .gallery-slide-card {
    flex: 0 0 calc(33.333% - 16px);
  }
}

@media (max-width: 991.98px) {
  .gallery-slide-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 575.98px) {
  .gallery-slide-card {
    flex: 0 0 100%;
  }
  .gallery-slide-media {
    height: 180px;
  }
  .discover-card-blue,
  .discover-card-white {
    padding: 2rem !important;
  }
  .discover-card-blue h3,
  .discover-card-white h3 {
    font-size: 1.4rem !important;
  }
}

@media (min-width: 992px) {
  .border-top-lg-0 {
    border-top: 0 !important;
  }
}

.hover-primary {
  transition: color 0.2s ease;
}
.hover-primary:hover {
  color: var(--primary-color) !important;
}

/* ==========================================================================
   Section 2: Service Request / Underline Input Styling
   ========================================================================== */
.underline-input {
  border: 0 !important;
  border-bottom: 1px solid #cbd5e1 !important;
  border-radius: 0 !important;
  background-color: transparent !important;
  padding: 0.5rem 0 !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  color: var(--text-dark) !important;
  transition: border-color 0.25s ease !important;
}

.underline-input::placeholder {
  color: #94a3b8 !important;
  font-weight: 500 !important;
}

.underline-input:focus {
  border-bottom-color: var(--primary-color) !important;
  box-shadow: none !important;
  outline: none !important;
}

select.underline-input {
  background-position: right center !important;
}

textarea.underline-input {
  min-height: 80px;
  resize: vertical;
}

.btn-send-inquiry {
  background-color: transparent !important;
  border: 1.5px solid var(--primary-color) !important;
  color: var(--primary-color) !important;
  transition: all 0.3s ease !important;
  border-radius: 8px !important;
}

.btn-send-inquiry:hover {
  background-color: var(--primary-color) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(11, 76, 187, 0.15) !important;
  transform: translateY(-1px);
}

/* ==========================================================================
   Section 2: Contact Page Responsiveness & Typography
   ========================================================================== */
.inquiry-section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.25rem;
  color: var(--text-dark);
  line-height: 1.15;
}

.service-request-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.55rem;
  color: var(--text-dark);
}

.contact-showcase-img-wrapper {
  max-width: 480px;
  height: 180px;
  width: 100%;
}

/* Custom Font Size Utility Fallbacks if not present */
.fs-7 {
  font-size: 0.875rem !important;
}
.fs-8 {
  font-size: 0.8rem !important;
}
.fs-9 {
  font-size: 0.725rem !important;
}

@media (max-width: 991.98px) {
  .inquiry-section-title {
    font-size: 1.85rem;
  }
}

@media (max-width: 575.98px) {
  .inquiry-section-title {
    font-size: 1.55rem;
  }
  .service-request-title {
    font-size: 1.35rem;
  }
  .contact-showcase-img-wrapper {
    height: 140px;
  }
}

/* ==========================================================================
   Section 3: Founder Biography & Leadership Styles
   ========================================================================== */
.founder-portrait-card {
  border: 1px solid #e2e8f0 !important;
  transition: box-shadow 0.3s ease;
}

.founder-portrait-wrapper {
  position: relative;
  width: 100%;
  height: 380px;
  background-color: #f8fafc;
}

.founder-portrait-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.founder-quote-box {
  background-color: #eff6ff; /* light blue tint */
  border-left: 4px solid var(--primary-color) !important;
  position: relative;
}

.founder-pillar-card {
  border: 1px solid #e2e8f0 !important;
  background-color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.founder-pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md) !important;
  border-color: rgba(11, 76, 187, 0.15) !important;
}

.founder-quick-details a.hover-primary {
  transition: color 0.2s ease;
}

.founder-quick-details a.hover-primary:hover {
  color: var(--primary-color) !important;
}

@media (max-width: 991.98px) {
  .founder-portrait-wrapper {
    height: 440px;
  }
}

@media (max-width: 767.98px) {
  .founder-portrait-wrapper {
    height: 340px;
  }
}

@media (max-width: 575.98px) {
  .founder-portrait-wrapper {
    height: 280px;
  }
  .founder-quote-box {
    padding: 1.25rem !important;
  }
}

/* ==========================================================================
   Section 4: Leadership Cards Styling (Shared)
   ========================================================================== */
.leader-card {
  border: 1px solid #e2e8f0 !important;
  border-radius: 12px !important;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leader-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg) !important;
}

.leader-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 320px;
  background-color: #f8fafc;
}

.leader-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.leader-card:hover .leader-img-wrapper img {
  transform: scale(1.05);
}

.leader-name-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
  padding: 1.5rem;
  z-index: 2;
}

.leader-name-overlay h4 {
  color: #ffffff !important;
  margin: 0;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
}

.leader-body {
  padding: 1.5rem;
  background-color: #ffffff;
}

.leader-role {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  color: var(--primary-color);
}

.leader-bio {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.leader-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f1f5f9;
  padding-top: 1rem;
  margin-top: 1rem;
}

.leader-link {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

.leader-link:hover {
  color: var(--primary-dark);
}

.leader-social-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #cbd5e1;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  text-decoration: none;
}

.leader-social-btn:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #ffffff;
}

@media (max-width: 991.98px) {
  .leader-img-wrapper {
    height: 280px;
  }
}

@media (max-width: 767.98px) {
  .leader-img-wrapper {
    height: 260px;
  }
}

/* ==========================================================================
   Section 5: Redesigned Feedbacks & Testimonials Styling
   ========================================================================== */
.feedback-meta-card {
  border: 1px solid #cbd5e1 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02) !important;
}

.briefing-center-banner {
  width: 100%;
  height: 380px;
  overflow: hidden;
  position: relative;
  background-color: #f8fafc;
}

.briefing-center-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feedback-review-card {
  border: 1px solid #e2e8f0 !important;
  border-radius: 16px !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  background-color: #ffffff;
}

.feedback-review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg) !important;
  border-color: rgba(11, 76, 187, 0.15) !important;
}

.feedback-review-card-blue {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%) !important;
  color: #ffffff !important;
}

.feedback-review-card-blue:hover {
  box-shadow: 0 12px 30px rgba(11, 76, 187, 0.2) !important;
}

.feedback-stat-card {
  border: 1px solid #e2e8f0 !important;
  border-radius: 12px !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  background-color: #ffffff;
}

.feedback-stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md) !important;
  border-color: rgba(11, 76, 187, 0.12) !important;
}

.feedback-rating-btn {
  border: 1.5px solid #cbd5e1 !important;
  color: #64748b !important;
  background-color: transparent !important;
  border-radius: 8px !important;
  transition: all 0.2s ease !important;
}

.feedback-rating-btn:hover {
  border-color: var(--primary-color) !important;
  color: var(--primary-color) !important;
  background-color: rgba(11, 76, 187, 0.05) !important;
}

.feedback-rating-btn.active {
  border-color: var(--primary-color) !important;
  background-color: var(--primary-color) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 10px rgba(11, 76, 187, 0.2) !important;
}

.feedback-alert-block {
  border: 1px solid #e2e8f0 !important;
  transition: transform 0.25s ease;
}

.feedback-alert-block:hover {
  transform: translateX(4px);
  border-color: var(--primary-color) !important;
}

.italic-message {
  font-size: 0.85rem !important;
  color: #475569 !important; /* slate 600 */
}

.feedback-review-card-blue .italic-message {
  color: rgba(255, 255, 255, 0.85) !important;
}

.feedback-review-card-blue .border-white-20 {
  border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
}

@media (max-width: 991.98px) {
  .briefing-center-banner {
    height: 300px;
  }
}

@media (max-width: 767.98px) {
  .briefing-center-banner {
    height: 240px;
  }
}

@media (max-width: 575.98px) {
  .briefing-center-banner {
    height: 180px;
  }
  .feedback-review-card,
  .feedback-review-card-blue {
    padding: 1.5rem !important;
  }
}

/* ==========================================================================
   Section 6: Legal & FAQs Styling
   ========================================================================== */
/* Briefing Center / FAQ Top Banner */
.briefing-center-banner {
  width: 100%;
  height: 380px;
  overflow: hidden;
  position: relative;
  background-color: #f1f5f9;
}
@media (max-width: 991.98px) {
  .briefing-center-banner { height: 300px; }
}
@media (max-width: 767.98px) {
  .briefing-center-banner { height: 220px; }
}
@media (max-width: 575.98px) {
  .briefing-center-banner { height: 160px; }
}

.legal-side-nav ul.nav {
  display: flex;
  flex-direction: column;
}
.legal-side-nav .nav-link {
  transition: all 0.2s ease;
  border-left: 2px solid transparent;
  margin-left: -17px; /* alignment to compensate border-start ps-3 */
  padding-left: 15px !important;
}
.legal-side-nav .nav-link:hover {
  color: var(--primary-color) !important;
  border-left-color: rgba(11, 76, 187, 0.4);
}
.legal-side-nav .nav-link.active {
  color: var(--primary-color) !important;
  font-weight: 600;
  border-left-color: var(--primary-color);
}

/* Accordion Custom Styling */
.faq-accordion .accordion-item {
  border: 1px solid #e2e8f0 !important;
  border-radius: 12px !important;
  overflow: hidden;
  margin-bottom: 1rem;
  background-color: #ffffff;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-accordion .accordion-item:hover {
  border-color: rgba(11, 76, 187, 0.2) !important;
  box-shadow: 0 4px 12px rgba(11, 76, 187, 0.03) !important;
}

.faq-accordion .accordion-header {
  margin: 0;
}

.faq-accordion .accordion-button {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--text-dark);
  background-color: #ffffff;
  padding: 1.25rem 1.5rem;
  font-size: 0.95rem;
  box-shadow: none !important;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background-color: #eff6ff; /* Very soft brand blue tint */
}

.faq-accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
  border-color: var(--primary-color) !important;
  border-left: 4px solid var(--primary-color) !important;
  box-shadow: 0 4px 12px rgba(11, 76, 187, 0.05) !important;
}

.faq-accordion .accordion-button::after {
  background-size: 1.1rem;
  transition: transform 0.25s ease;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(-180deg);
}

.faq-accordion .accordion-body {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--text-muted);
  padding: 1.25rem 1.5rem;
  background-color: #ffffff;
  transition: background-color 0.3s ease;
}

.faq-accordion .accordion-item:has(.accordion-button:not(.collapsed)) .accordion-body {
  background-color: #eff6ff !important;
}

.faq-category-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 8px;
}
.faq-category-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

/* FAQ Section Banner Responsive sizing */
.faq-section-banner {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
  background-color: #f8fafc;
}
@media (max-width: 991.98px) {
  .faq-section-banner {
    height: 220px;
  }
}
@media (max-width: 767.98px) {
  .faq-section-banner {
    height: 180px;
  }
}
@media (max-width: 575.98px) {
  .faq-section-banner {
    height: 140px;
  }
}

/* Accordion and Section Responsiveness for FAQs */
@media (max-width: 767.98px) {
  .faq-accordion .accordion-button {
    font-size: 0.9rem;
    padding: 1.1rem 1.25rem;
  }
  .faq-accordion .accordion-body {
    font-size: 0.8rem;
    padding: 1.1rem 1.25rem;
    line-height: 1.65;
  }
}

@media (max-width: 575.98px) {
  .faq-accordion .accordion-button {
    font-size: 0.85rem;
    padding: 1rem 1.15rem;
  }
  .faq-accordion .accordion-body {
    font-size: 0.775rem;
    padding: 1rem 1.15rem;
    line-height: 1.6;
  }
  .faq-section-block {
    margin-bottom: 2.5rem !important;
  }
}