/* --- Root Variables & Theme Colors --- */
:root {
  --primary-blue: #004BB7;
  --primary-blue-rgb: 0, 75, 183;
  --primary-red: #D9252A;
  --primary-red-rgb: 217, 37, 42;
  --dark-text: #0F172A;
  --muted-text: #64748B;
  --topbar-bg: #0B132B;
  --glass-bg: rgba(255, 255, 255, 0.88);
  --border-color: rgba(226, 232, 240, 0.8);
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark-text);
  background-color: #FAFCFF;
}

/* --- Sleek Dark Top Bar --- */
.top-bar {
  background-color: var(--topbar-bg);
  color: #94A3B8;
  font-size: 0.825rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  letter-spacing: 0.3px;
}

.top-bar i {
  color: #38BDF8; /* Soft cyan accent for icons */
}

.top-link {
  color: #CBD5E1;
  font-weight: 500;
  transition: all 0.25s var(--transition-smooth);
  padding: 2px 6px;
  border-radius: 4px;
}

.top-link:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.1);
}

/* --- Glassmorphic Main Header --- */
.main-header {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s var(--transition-smooth);
}

.main-header.shadow {
  box-shadow: 0 10px 30px -10px rgba(0, 75, 183, 0.12) !important;
  background: rgba(255, 255, 255, 0.95);
}

/* --- Logo Styling --- */
.header-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s var(--transition-smooth);
}

.navbar-brand:hover .header-logo {
  transform: translateY(-1px) scale(1.02);
}

/* --- Search Bar Modernization --- */
.max-w-350 {
  max-width: 380px;
}

.header-search-wrapper .search-input {
  background-color: #F1F5F9;
  border: 1px solid transparent;
  font-size: 0.875rem;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  color: var(--dark-text);
  transition: all 0.3s var(--transition-smooth);
}

.header-search-wrapper .search-input::placeholder {
  color: var(--muted-text);
  font-size: 0.85rem;
}

.header-search-wrapper .search-input:focus {
  background-color: #FFFFFF;
  border-color: rgba(var(--primary-blue-rgb), 0.4);
  box-shadow: 0 0 0 4px rgba(var(--primary-blue-rgb), 0.08);
}

.search-btn i {
  transition: color 0.2s ease, transform 0.2s ease;
}

.search-btn:hover i {
  color: var(--primary-blue) !important;
  transform: scale(1.1);
}

/* --- Navigation Links with Floating Pill Effect --- */
.navbar-nav {
  gap: 4px;
}

.nav-link {
  font-weight: 500;
  font-size: 0.925rem;
  color: #334155 !important;
  padding: 0.5rem 1.1rem !important;
  border-radius: 50px;
  position: relative;
  transition: all 0.25s var(--transition-smooth);
}

.nav-link:hover {
  color: var(--primary-blue) !important;
  background-color: rgba(var(--primary-blue-rgb), 0.06);
}

.nav-link.active {
  color: var(--primary-blue) !important;
  background-color: rgba(var(--primary-blue-rgb), 0.08);
  font-weight: 600;
}

/* Dropdown Caret Styling */
.nav-link.dropdown-toggle::after {
  vertical-align: middle;
  margin-left: 0.4em;
  transition: transform 0.25s ease;
}

.dropdown:hover .nav-link.dropdown-toggle::after {
  transform: rotate(180deg);
}

/* --- Premium Animated Dropdown Menu --- */
.dropdown-menu {
  border-radius: 16px;
  padding: 0.6rem;
  margin-top: 0.75rem !important;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.12);
  background: #FFFFFF;
  animation: dropdownSlideIn 0.25s var(--transition-smooth);
}

.dropdown-item {
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.6rem 1rem;
  color: #475569;
  transition: all 0.2s var(--transition-smooth);
}

.dropdown-item:hover {
  background-color: rgba(var(--primary-blue-rgb), 0.06);
  color: var(--primary-blue);
  transform: translateX(4px);
}

@keyframes dropdownSlideIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* --- Modern Gradient CTA Button --- */
.cta-btn {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #003282 100%);
  border: none;
  font-size: 0.85rem;
  letter-spacing: 0.6px;
  padding: 0.7rem 1.6rem !important;
  transition: all 0.3s var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-red) 0%, #A31216 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.35s var(--transition-smooth);
}

.cta-btn:hover {
  box-shadow: 0 8px 22px rgba(0, 75, 183, 0.35) !important;
  transform: translateY(-2px);
}

.cta-btn:hover::before {
  opacity: 1;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: #FFFFFF;
    padding: 1.25rem;
    border-radius: 16px;
    margin-top: 0.75rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
  }

  .nav-link {
    border-radius: 10px;
  }

  .dropdown-menu {
    box-shadow: none;
    border: 1px solid #E2E8F0;
    background: #F8FAFC;
  }
}


/* Hero Section  */
/* --- HERO FULL BACKGROUND STYLES --- */
.hero-bg-section {
  width: 100%;
}

.hero-bg-slide {
  height: calc(100vh - 80px);
  min-height: 600px;
  background-size: cover;
  background-position: center;
}

/* White Clean Glass Card */
.hero-clean-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #F1F5F9;
  color: #0F172A;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 30px;
}

.hero-clean-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.2;
}

.text-primary-blue {
  color: #004BB7 !important;
}

.text-primary-red {
  color: #D9252A !important;
}

.hero-clean-desc {
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-top: 1rem;
}

/* Card Buttons */
.btn-hero-main {
  background-color: #004BB7;
  color: #FFFFFF !important;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(0, 75, 183, 0.25);
}

.btn-hero-main:hover {
  background-color: #D9252A;
  transform: translateY(-2px);
}

.btn-hero-secondary {
  background-color: #F1F5F9;
  color: #0F172A !important;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background-color: #E2E8F0;
  transform: translateY(-2px);
}

/* Carousel Indicators & Arrows */
.hero-bg-indicators {
  bottom: 1.5rem;
}

.hero-bg-indicators button {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  background-color: rgba(255, 255, 255, 0.6) !important;
  border: none !important;
  margin: 0 5px !important;
}

.hero-bg-indicators button.active {
  width: 28px !important;
  border-radius: 10px !important;
  background-color: #004BB7 !important;
}

.modern-bg-arrow {
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  color: #0F172A;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 1.5rem;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.modern-bg-arrow:hover {
  background: #004BB7;
  color: #FFFFFF;
}

/* Responsive */
@media (max-width: 991.98px) {
  .hero-clean-title {
    font-size: 2.2rem;
  }
  .hero-clean-card {
    padding: 2rem;
  }
}

@media (max-width: 575.98px) {
  .hero-clean-title {
    font-size: 1.8rem;
  }
  .modern-bg-arrow {
    display: none;
  }
}


/* --- CORE PILLARS SECTION --- */
.pillars-section {
  background-color: #F8FAFC !important;
}

.pillar-card {
  border: 1px solid #E2E8F0;
  transition: all 0.35s ease;
  z-index: 1;
}

/* Hover Lift & Glow Effect */
.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px rgba(0, 75, 183, 0.1) !important;
  border-color: #004BB7;
}

/* Feature Highlighted Middle Card */
.pillar-card.feature-highlight:hover {
  box-shadow: 0 20px 35px rgba(217, 37, 42, 0.1) !important;
  border-color: #D9252A;
}

/* Icon Container Styling */
.pillar-icon-box {
  width: 58px;
  height: 58px;
  background-color: #EFF6FF;
  color: #004BB7;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}

.pillar-icon-box.icon-red {
  background-color: #FEF2F2;
  color: #D9252A;
}

.pillar-card:hover .pillar-icon-box {
  background-color: #004BB7;
  color: #FFFFFF;
}

.pillar-card.feature-highlight:hover .pillar-icon-box.icon-red {
  background-color: #D9252A;
  color: #FFFFFF;
}

/* Large Background Number */
.pillar-number {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 4rem;
  font-weight: 800;
  color: #F1F5F9;
  line-height: 1;
  user-select: none;
  z-index: -1;
  transition: all 0.3s ease;
}

.pillar-card:hover .pillar-number {
  color: #E2E8F0;
  transform: scale(1.05);
}

.pillar-title {
  color: #0F172A;
}

.pillar-desc {
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Responsive Tweaks */
@media (max-width: 991.98px) {
  .pillar-card {
    padding: 2rem !important;
  }
  .pillar-number {
    font-size: 3.2rem;
  }
}


/* --- ABOUT US SECTION STYLES --- */
.about-image-wrapper {
  padding: 20px 0 20px 20px;
}

/* Offset Accent Box Behind Image */
.about-accent-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 85%;
  background-color: #004BB7;
  border-radius: 16px;
  z-index: 1;
}

.about-image-card {
  z-index: 2;
  min-height: 350px;
}

.about-image-card img {
  height: 480px;
  object-fit: cover;
}

/* Floating Badge Position */
.about-experience-badge {
  position: absolute;
  bottom: 0px;
  right: -10px;
  z-index: 3;
}

/* Responsive Tweaks for Mobile / Tablet */
@media (max-width: 991.98px) {
  .about-image-wrapper {
    padding: 0;
  }
  .about-accent-bg {
    display: none;
  }
  .about-image-card img {
    height: 350px;
  }
  .about-experience-badge {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 15px;
    display: inline-flex !important;
  }
}


/* --- ENVIRONMENT, HEALTH & SAFETY SECTION --- */
.ehs-section {
  background-color: #F8FAFC !important;
}

.ehs-card {
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(226, 232, 240, 0.8) !important;
}

.ehs-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08) !important;
  border-color: rgba(0, 75, 183, 0.2) !important;
}

/* Soft Pastel Circular Icon Badges */
.ehs-icon-wrapper {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: transform 0.3s ease;
}

.ehs-card:hover .ehs-icon-wrapper {
  transform: scale(1.1);
}

.ehs-card-title {
  letter-spacing: -0.3px;
}

.ehs-card-desc {
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .ehs-card {
    padding: 2rem 1.5rem !important;
  }
}


/* --- MISSION & VISION SECTION --- */
.mission-vision-section {
  background-color: #FFFFFF;
}

.mv-card {
  border-color: rgba(226, 232, 240, 0.9) !important;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mv-card:hover {
  transform: translateY(-6px);
  border-color: #004BB7 !important;
  box-shadow: 0 18px 36px rgba(0, 75, 183, 0.08) !important;
}

/* Rounded Icon Boxes */
.mv-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.mv-quote {
  font-size: 1.05rem;
  line-height: 1.5;
}

.mv-desc {
  font-size: 0.96rem;
  line-height: 1.7;
}

/* Mobile Tweaks */
@media (max-width: 991.98px) {
  .mv-card {
    padding: 2rem 1.5rem !important;
  }
}


/* --- QUALIFIED MEDICAL FACILITIES SECTION --- */
.facilities-section {
  background-color: #F8FAFC !important;
}

.facility-image-card img {
  height: 440px;
  object-fit: cover;
}

.facility-title {
  color: #0F172A;
  letter-spacing: -0.5px;
}

.facility-desc {
  line-height: 1.7;
}

/* Feature List Item Styling */
.facility-feature-item {
  border-color: rgba(226, 232, 240, 0.8) !important;
  transition: all 0.3s ease;
}

.facility-feature-item:hover {
  transform: translateX(6px);
  border-color: #004BB7 !important;
  box-shadow: 0 10px 20px rgba(0, 75, 183, 0.08) !important;
}

/* Square Soft Icon Boxes */
.facility-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.facility-feature-item:hover .facility-icon-box {
  background-color: #004BB7 !important;
  color: #FFFFFF !important;
}

/* Responsive */
@media (max-width: 991.98px) {
  .facility-image-card img {
    height: 350px;
  }
}


/* --- ULTRA MODERN FOOTER STYLES --- */
.site-footer {
  background-color: #080E1E;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Background Blue Glow Effect */
.footer-glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, rgba(8, 14, 30, 0) 70%);
  pointer-events: none;
}

/* Headings with Bottom Accent Line */
.footer-heading {
  font-size: 1.15rem;
  letter-spacing: -0.2px;
  position: relative;
  display: inline-block;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 32px;
  height: 2px;
  background-color: #0D6EFD;
  border-radius: 2px;
}

/* Muted Text */
.text-light-50 {
  color: #94A3B8 !important;
}

.footer-text {
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Quick Links Styling */
.footer-nav-links li {
  margin-bottom: 12px;
}

.footer-nav-links a {
  color: #94A3B8;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.footer-nav-links a i {
  font-size: 0.75rem;
  color: #0D6EFD;
  transition: transform 0.3s ease;
}

.footer-nav-links a:hover {
  color: #FFFFFF;
  transform: translateX(6px);
}

.footer-nav-links a:hover i {
  transform: translateX(3px);
}

/* Glassmorphism Icon Boxes */
.contact-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #38BDF8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.footer-contact-link {
  transition: color 0.3s ease;
}

.footer-contact-link:hover {
  color: #38BDF8 !important;
}

/* Social Buttons */
.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #94A3B8;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.social-btn:hover {
  background: #0D6EFD;
  border-color: #0D6EFD;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(13, 110, 253, 0.3);
}

/* Bottom Bar */
.footer-bottom {
  background-color: #050914;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.fs-7 {
  font-size: 0.85rem;
}

.fs-8 {
  font-size: 0.7rem;
}


/* Cobntact Page  */
/* --- CONTACT PAGE STYLES --- */

/* Hero Banner Background & Grid Pattern */
.breadcrumb-section {
  background-color: #0b132b;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  position: relative;
}

/* Hero Content Box with Left Accent Line */
.hero-card {
  max-width: 520px;
  background-color: rgba(15, 23, 42, 0.7);
  border-left: 3px solid #f59e0b;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tracking-wider {
  letter-spacing: 1.5px;
}

.text-light-50 {
  color: #94a3b8;
}

/* Info Cards Styling */
.contact-info-card {
  background-color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  overflow: hidden; /* Prevents long string overflows */
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
}

/* Icon Light Blue Circle */
.info-icon-circle {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background-color: #f0f6ff;
  color: #0d6efd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.text-break {
  word-break: break-word !important;
  overflow-wrap: anywhere !important;
}

/* --- CUSTOM GET IN TOUCH STYLES --- */

.get-in-touch-section {
  background-color: #f8fafc;
}

/* Title Indicator Dot */
.section-title-dot {
  width: 8px;
  height: 8px;
  background-color: #0d6efd;
  border-radius: 50%;
  display: inline-block;
}

/* Modern Floating Inputs Styling */
.custom-floating .form-control {
  border: 1px solid #e2e8f0;
  background-color: #f8fafc;
  border-radius: 12px;
  transition: all 0.25s ease;
}

.custom-floating .form-control:focus {
  background-color: #ffffff;
  border-color: #0d6efd;
  box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
}

.custom-floating label {
  color: #64748b;
}

.tracking-wider {
  letter-spacing: 1px;
}

/* --- MODERN ACTION BUTTON --- */
.btn-modern-primary {
  background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-modern-primary .btn-icon {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-modern-primary:hover {
  background: linear-gradient(135deg, #0b5ed7 0%, #084298 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(13, 110, 253, 0.3) !important;
}

.btn-modern-primary:hover .btn-icon {
  transform: translateX(5px);
}

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

/* --- MAP SECTION STYLES --- */

.map-section {
  overflow: hidden;
  position: relative;
}

.map-container iframe {
  filter: grayscale(15%) contrast(100%);
  display: block;
}

/* Floating Overlay Card */
.location-overlay-card {
  position: absolute;
  bottom: 40px;
  left: 20px;
  max-width: 440px;
  width: calc(100% - 40px);
  background: linear-gradient(145deg, #0b132b 0%, #1e293b 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  z-index: 10;
}

.tracking-wider {
  letter-spacing: 1.5px;
}

.text-light-50 {
  color: #cbd5e1;
}

/* Responsive adjustment for small screens */
@media (max-width: 767.98px) {
  .location-overlay-card {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    margin-top: -60px;
    border-radius: 16px !important;
  }
}


/* --- GALLERY & LIGHTBOX STYLES --- */

.gallery-section {
  background-color: #f8fafc;
}

.gallery-card {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #0b132b;
}

.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.gallery-card .gallery-img {
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.3s ease;
  cursor: pointer;
}

.gallery-card:hover .gallery-img {
  transform: scale(1.05);
  opacity: 0.9;
}

/* Lightbox Modal Overlay */
.lightbox-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: rgba(11, 19, 43, 0.95);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-modal.active {
  display: flex;
  opacity: 1;
}

/* Image Container */
.lightbox-content {
  max-width: 85vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

/* Navigation Buttons */
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 10000;
}

.lightbox-close {
  top: 25px;
  right: 25px;
  width: 48px;
  height: 48px;
  font-size: 1.75rem;
  line-height: 1;
}

.lightbox-prev {
  left: 30px;
  width: 52px;
  height: 52px;
  font-size: 1.25rem;
}

.lightbox-next {
  right: 30px;
  width: 52px;
  height: 52px;
  font-size: 1.25rem;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: #0d6efd;
  border-color: #0d6efd;
  transform: scale(1.1);
}

@media (max-width: 767.98px) {
  .lightbox-prev { left: 10px; width: 42px; height: 42px; }
  .lightbox-next { right: 10px; width: 42px; height: 42px; }
  .lightbox-close { top: 15px; right: 15px; width: 40px; height: 40px; }
}

/* --- HERO BANNER STYLES --- */

.gallery-hero {
  background-color: #f8fafc;
}

.hero-card {
  background-color: #4a5162; /* Hero banner dark background */
  border-left: 5px solid #f39c12; /* Left orange accent line */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Breadcrumb Divider Color */
.hero-card .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}



/* Product Page  */
/* --- MODERN PRODUCT SECTION DESIGN --- */

.products-section {
  background-color: #f8fafc;
}

.max-w-700 {
  max-width: 700px;
}

.section-title-dot {
  width: 8px;
  height: 8px;
  background-color: #f39c12;
  border-radius: 50%;
  display: inline-block;
}

/* Card Container */
.product-card {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(11, 19, 43, 0.1);
  border-color: rgba(243, 156, 18, 0.4);
}

/* Image Header Container */
.product-img-box {
  height: 220px;
  background-color: #f1f5f9;
}

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

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

/* Lightbox Trigger Overlay */
.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 19, 43, 0.4);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-overlay .btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.product-card:hover .product-overlay .btn {
  transform: scale(1);
}

/* Typography & Content */
.product-title {
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}

.product-composition {
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Modern Outline Button */
.btn-custom-outline {
  background-color: #f8fafc;
  color: #0b132b;
  border: 1px solid #cbd5e1;
  padding: 10px 16px;
  transition: all 0.25s ease;
}

.product-card:hover .btn-custom-outline {
  background-color: #0b132b;
  color: #ffffff;
  border-color: #0b132b;
}

.product-card:hover .btn-custom-outline i {
  transform: translateX(4px);
  transition: transform 0.25s ease;
}

/* Utility Font Sizes */
.fs-7 { font-size: 0.85rem; }
.fs-8 { font-size: 0.75rem; }
.tracking-wider { letter-spacing: 0.08em; }

/* Lightbox Styles */
.lightbox-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: rgba(11, 19, 43, 0.95);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-modal.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  max-width: 85vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 10000;
}

.lightbox-close { top: 25px; right: 25px; width: 48px; height: 48px; font-size: 1.75rem; }
.lightbox-prev { left: 30px; width: 52px; height: 52px; font-size: 1.25rem; }
.lightbox-next { right: 30px; width: 52px; height: 52px; font-size: 1.25rem; }

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: #f39c12;
  border-color: #f39c12;
  color: #ffffff;
  transform: scale(1.1);
}


/* About Page  */
/* --- ABOUT US SECTION STYLES --- */

.about-section {
  background-color: #ffffff;
}

/* Image Wrapper with Dark Backdrop Accent */
.about-img-wrapper {
  padding: 0 0 20px 25px;
}

.about-accent-bg {
  position: absolute;
  top: 15px;
  left: 0;
  width: 75%;
  height: 90%;
  background-color: #0b132b; /* Theme Dark Blue */
  z-index: 1;
}

.about-img-box {
  z-index: 2;
  height: 480px;
}

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

/* Floating Experience Badge */
.exp-badge {
  bottom: 0;
  right: -10px;
  z-index: 3;
  min-width: 210px;
  border: 4px solid #ffffff;
}

.leading-tight {
  line-height: 1.25;
}

/* Utility Font Sizes */
.fs-7 { font-size: 0.875rem; }
.fs-8 { font-size: 0.75rem; }
.tracking-wider { letter-spacing: 0.08em; }

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .about-img-wrapper {
    padding: 0 0 15px 15px;
    margin-bottom: 20px;
  }
  
  .about-img-box {
    height: 380px;
  }
  
  .exp-badge {
    right: 15px;
    bottom: -15px;
  }
}

.badge {
  color: #2e2e2e !important;
}
.footer-brand-wrapper .fst-italic.text-primary-emphasis{
  color: #f9f9f9 !important;
}
.footer-brand-wrapper img{
      width: 130px;
    margin-bottom: 5px;
}

.hero-bg-section .carousel-item{
  background-position: top;
}

.hero-clean-card{
  background: #ffffff6e;
}
.hero-clean-desc{
  color: #303e52;
}