/* ==========================================================================
   Be My Vision - Professional B2B Accessibility Theme Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Client Design System Variables */
  --primary: #0b2341;
  --secondary: #ca1f26;
  --accent: #ca1f26;
  --heading: #10233d;
  --body: #5f6f82;
  --light-bg: #f5f8fc;
  --border: #dfe7f0;
  --white: #ffffff;
  
  --section-space: 60px;
  --section-space-tablet: 80px;
  --section-space-mobile: 60px;
  --container-width: 1320px;
  
  --radius-small: 12px;
  --radius-medium: 20px;
  --radius-large: 30px;
  
  --shadow-soft: 0 18px 50px rgba(15, 35, 65, 0.10);
  
  /* Standard Z-Index Scale */
  --z-base: 1;
  --z-sticky: 100;
  --z-dropdown: 500;
  --z-offcanvas: 1000;
  --z-backdrop: 990;
  --z-modal: 2000;
  
  /* Layout Sizing Constants */
  --font-scale: 1;
  --transition-luxury: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --header-height: 84px;
}

/* Responsive spacing variables mapping */
@media (max-width: 991.98px) {
  :root {
    --section-space: var(--section-space-tablet);
  }
}
@media (max-width: 575.98px) {
  :root {
    --section-space: var(--section-space-mobile);
  }
}

/* ==========================================================================
   1. Base Accessibility Reset & General Layout
   ========================================================================== */
html, body {
  font-family: 'Inter', sans-serif;
  color: var(--body);
  background-color: var(--white);
  font-size: calc(16px * var(--font-scale));
  line-height: 1.625;
  letter-spacing: -0.01em;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-top: 0;
}

/* Focus and Skip Links */
*:focus-visible {
  outline: 2px solid var(--secondary) !important;
  outline-offset: 3px !important;
}

.skip-to-content {
  position: fixed;
  top: -100px;
  left: 20px;
  background-color: var(--accent);
  color: var(--primary);
  padding: 14px 28px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  z-index: 999999;
  box-shadow: var(--shadow-soft);
  transition: top 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.skip-to-content:focus {
  top: 20px;
}

/* ==========================================================================
   2. Container & Section Padding System
   ========================================================================== */
.container {
  max-width: var(--container-width) !important;
  width: 100% !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
  margin-inline: auto !important;
}

@media (max-width: 767.98px) {
  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
@media (max-width: 575.98px) {
  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

.section-padding {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
  position: relative;
  z-index: var(--z-base);
}

.section-tag {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
  display: inline-block;
}

.section-title {
  font-size: clamp(34px, 2vw, 54px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.section-desc {
  max-width: 650px;
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.bg-grid {
  position: relative;
}
.bg-grid::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: linear-gradient(to right, rgba(15, 35, 65, 0.015) 1px, transparent 1px),
                    linear-gradient(to bottom, rgba(15, 35, 65, 0.015) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;
}

.blur-glow-container {
  position: relative;
}
.blur-glow-circle {
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 99, 255, 0.06) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.blur-glow-circle.accent {
  background: radial-gradient(circle, rgba(247, 201, 72, 0.04) 0%, transparent 70%);
}

/* ==========================================================================
   3. Visual Content & Image Aspect Ratios
   ========================================================================== */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-medium);
  background-color: var(--light-bg);
}
.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ratio-hero {
  aspect-ratio: 1920 / 800;
}
.ratio-about {
  aspect-ratio: 8 / 5;
}
.ratio-product {
  aspect-ratio: 4 / 3;
}
.ratio-project {
  aspect-ratio: 16 / 10;
}
.ratio-industry {
  aspect-ratio: 3 / 2;
}

.text-warning {
    --bs-text-opacity: 1;
    color: rgb(255 255 255) !important;
}

/* ==========================================================================
   4. Floating Glassmorphism Header
   ========================================================================== */
.accessibility-bar {
  background-color: #9f2429;
  color: rgba(255, 255, 255, 0.7);
  padding: 8px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.accessibility-bar a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
.accessibility-bar a:hover {
  color: var(--accent);
}


.main-header{
    width:100%;
    z-index:999;
    transition:all .35s ease;
}
.main-header.fixed-header{
    position:fixed;
    top:0;
    right: 0;
    left:0;
    width:100%;
    background:#fff;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    animation:headerDown .35s ease;
}

@keyframes headerDown{
    from{
        transform:translateY(-100%);
    }

    to{
        transform:translateY(0);
    }

}


.main-header {
  top: 20px;
  margin-top: 10px;
  height: var(--header-height);
  z-index: var(--z-sticky);
  background-color: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 100px;
  box-shadow: var(--shadow-soft);
  max-width: var(--container-width);
  width: calc(100% - 40px);
  margin-inline: auto;
  transition: var(--transition-luxury);
  position: sticky;
}
.main-header.scrolled {
  top: 10px;
  height: 72px;
  background-color: rgba(255, 255, 255, 0.88);
  box-shadow: 0 15px 35px -10px rgba(15, 35, 65, 0.08);
}

.nav-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 1.25rem !important;
    transition: var(--transition-luxury);
    white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--secondary) !important;
}

.accessibility-btn {
    border: none;
    background-color: var(--accent);
    color: #fff;
    border-radius: 50px;
    padding: 3px 15px;
}

/* ==========================================================================
   4A. Products Mega Menu (Desktop)
   ========================================================================== */
.nav-item-mega {
  position: static !important; /* Forces dropdown alignment relative to navbar container */
}

/* Dropdown Menu block rules */
.nav-item-mega .mega-menu {
  position: absolute;
  top: 100%;
  left: 50% !important;
  transform: translateX(-50%) translateY(12px) !important;
  width: calc(100% - 48px);
  max-width: 1200px;
  background-color: var(--white);
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-medium) !important;
  box-shadow: var(--shadow-soft) !important;
  padding: 1rem !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition-luxury);
  z-index: var(--z-dropdown);
  display: block !important; /* Overrides default bootstrap display: none; */
}

/* Hover bridge mechanics to prevent close flicker */
.nav-item-mega .mega-menu::before {
  content: '';
  position: absolute;
  top: -24px;
  left: 0;
  right: 0;
  height: 24px;
  background-color: transparent;
}

/* Show Mega Menu states on Hover & Focus */
@media (hover: hover) and (pointer: fine) and (min-width: 992px) {
  .nav-item-mega:hover .mega-menu,
  .nav-item-mega:focus-within .mega-menu,
  .nav-item-mega.is-open .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0) !important;
  }
}
.catgroy_menu {
    background-color: #ca1f260a;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid #ca1f2636;
    margin-bottom: 20px;
}
.catgroy_menu p {
    margin: 0px;
    font-size: 16px;
    padding: 0px;
    font-weight: 700;
    color: #ca1f26;
}
/* Mega menu item styles */
.mega-menu-item-link {
  display: block;
  padding: 4px 8px;
  border-radius: var(--radius-small);
  text-decoration: none;
  transition: var(--transition-luxury);
  border: 1px solid transparent;
}
.mega-menu-item-link:hover {
  background-color: var(--light-bg);
  border-color: var(--border);
}
.mega-menu-item-link i {
    color: var(--secondary);
    transition: var(--transition-luxury);
    font-size: 20px !important;
}
.mega-menu-item-link:hover i {
  transform: translateY(-2px);
}
.mega-menu-item-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  color: var(--heading);
  font-size: 14px;
}
.mega-menu-item-desc {
  font-size: 0.8rem;
  color: var(--body);
  line-height: 1.4;
}
.mega_link_active
{
  background-color: var(--light-bg);
  border-color: var(--border);
}

/* ==========================================================================
   5. Reusable Luxury Buttons
   ========================================================================== */
.btn-luxury-primary {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  background-color: var(--secondary);
  color: var(--white);
  border: none;
  padding: 14px 28px;
  border-radius: 100px;
  transition: var(--transition-luxury);
  box-shadow: 0 10px 20px -5px rgba(20, 99, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}
.btn-luxury-primary:hover, .btn-luxury-primary:focus {
  background-color: #e3353c;
  color: var(--white);
  transform: translateY(-2px);
}
.btn-luxury-primary i {
  transition: transform 0.3s ease;
}
.btn-luxury-primary:hover i {
  transform: translateX(4px);
}

.btn-luxury-secondary {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 12px 28px;
  border-radius: 100px;
  transition: var(--transition-luxury);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-luxury-secondary:hover, .btn-luxury-secondary:focus {
  background-color: #ca1f26;
  color: var(--white);
  transform: translateY(-2px);
}

.btn-luxury-accent {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  background-color: var(--accent);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 100px;
  transition: var(--transition-luxury);
  box-shadow: 0 10px 20px -5px rgba(247, 201, 72, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  justify-content: center;
}
.btn-luxury-accent:hover, .btn-luxury-accent:focus {
  background-color: #ca1f26;
  color: #fff;
  transform: translateY(-2px);
}

/* ==========================================================================
   6. Split Hero & Floating badges
   ========================================================================== */
.hero-section-luxury {
  position: relative;
  background-color: var(--light-bg);
  min-height: clamp(680px, 78vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-title {
    font-size: clamp(42px, 2.2vw, 76px);
    line-height: 1.05;
    letter-spacing: -0.04em;
    max-width: 760px;
}

.hero-desc {
  max-width: 650px;
  font-size: 1.125rem;
  line-height: 1.6;
}

.hero-gradient-text {
  background: linear-gradient(135deg, var(--primary) 20%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-3d-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1.1/1;
  perspective: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg-photo {
  width: 82%;
  height: 82%;
  object-fit: cover;
  border-radius: var(--radius-medium);
  filter: brightness(0.8) contrast(1.05);
  box-shadow: var(--shadow-soft);
  transform: rotateY(-12deg) rotateX(8deg);
}

.hero-floating-card {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(15px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-medium);
  padding: 1.125rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition-luxury);
  cursor: pointer;
  z-index: 10;
}

.hero-floating-card:hover {
  transform: scale(1.05) translateY(-6px) translateZ(40px) !important;
}

.hero-floating-card img {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-small);
  object-fit: cover;
}

.hero-floating-card span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--heading);
}

/* ==========================================================================
   7. Reusable Components & Cards Polish
   ========================================================================== */
.card-item {
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: var(--transition-luxury);
}
.card-item:hover {
  transform: translateY(-5px);
  border-color: rgba(20, 99, 255, 0.15);
}
.card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 2rem;
}
.card-cta {
  margin-top: auto;
}

.about-image-wrapper {
    position: relative;
}

.about-experience-card {
  position: absolute;
  bottom: -30px;
  right: -20px;
  background-color: var(--primary);
  color: var(--white);
  padding: 2.25rem;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-soft);
  max-width: 300px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.about-experience-card .num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.04em;
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 28px;
}
.bento-item {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);
  padding: 2.5rem;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: var(--transition-luxury);
  box-shadow: var(--shadow-soft);
  min-height: 300px;
}
.bento-item:hover {
  border-color: rgba(20, 99, 255, 0.2);
  transform: translateY(-6px);
}
.bento-featured {
  grid-column: span 8;
  grid-row: span 2;
  justify-content: space-between;
  min-height: 600px;
}
.bento-tall {
  grid-column: span 4;
  grid-row: span 2;
  min-height: 600px;
}
.bento-item-third {
  grid-column: span 4;
}

.bento-item-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: var(--transition-luxury);
  filter: brightness(0.65) contrast(1.05);
}
.bento-item:hover .bento-item-bg {
  transform: scale(1.04);
}
.bento-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(11, 35, 65, 0.1) 0%, rgb(0 0 0 / 45%) 100%);
    z-index: 2;
}
.bento-item-content {
  position: relative;
  z-index: 3;
  color: var(--white);
}
.bento-item-content h3, .bento-item-content h4 {
  color: var(--white);
  margin-bottom: 0.5rem;
  font-weight: 800;
}
.bento-item-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}
.bento-item-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.bento-item-link i {
  transition: transform 0.3s ease;
}
.bento-item-link:hover i {
  transform: translateX(4px);
}

/* Horizontal Industry Strips */
.industry-strip-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);
  overflow: hidden;
  transition: var(--transition-luxury);
  display: flex;
  flex-direction: row;
  min-height: 220px;
  box-shadow: var(--shadow-soft);
}
.industry-strip-card:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 99, 255, 0.15);
}
.industry-strip-img-wrapper {
  width: 28%;
  min-width: 220px;
  overflow: hidden;
  position: relative;
}
.industry-strip-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-luxury);
}
.industry-strip-card:hover .industry-strip-img {
  transform: scale(1.05);
}
.industry-strip-body {
  padding: 2.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.industry-strip-title {
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 0.5rem;
  font-size: 1.375rem;
}
.industry-strip-desc {
  color: var(--body);
  font-size: 1rem;
  margin-bottom: 0;
  max-width: 650px;
}
.industry-strip-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--light-bg);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-right: 2.5rem;
  align-self: center;
  transition: var(--transition-luxury);
  flex-shrink: 0;
}
.industry-strip-card:hover .industry-strip-btn {
  background-color: var(--secondary);
  color: var(--white);
  transform: translateX(4px);
}

/* Projects Case Studies */
.project-case-card {
  border-radius: var(--radius-medium);
  overflow: hidden;
  border: 1px solid var(--border);
  background-color: var(--white);
  transition: var(--transition-luxury);
  box-shadow: var(--shadow-soft);
}
.project-case-card:hover {
  transform: translateY(-6px);
  border-color: rgba(20, 99, 255, 0.15);
}
.project-case-img-wrapper {
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 10;
}
.project-case-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-luxury);
}
.project-case-card:hover .project-case-img {
  transform: scale(1.04);
}
.project-case-body {
  padding: 1.5rem;
}
.project-case-tag {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 0.75rem;
  display: inline-block;
}

/* Accordions */
.accordion-flush .accordion-item {
  border-bottom: 1px solid var(--border) !important;
  background-color: transparent;
}
.accordion-button {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--heading) !important;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 1.5rem 0 !important;
  background-color: transparent !important;
  box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
  color: var(--secondary) !important;
}
.accordion-body {
  padding: 0 0 1.5rem 0 !important;
  font-size: 1.05rem;
  color: var(--body);
}

/* Separators */
.section-separator {
  position: relative;
  height: 60px;
  width: 100%;
  overflow: hidden;
  background-color: var(--white);
  z-index: 10;
}
.section-separator svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60px;
}
.section-separator.to-soft svg {
  fill: var(--light-bg);
}
.section-separator.to-navy svg {
  fill: var(--primary);
}

/* ==========================================================================
   8. Premium rebuilt Footer Component
   ========================================================================== */
.footer-cta-strip {
  background-color: var(--secondary);
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.footer-cta-strip h3 {
  color: var(--white);
  font-size: clamp(28px, 3.5vw, 42px);
  margin-bottom: 0.75rem;
}
.footer-cta-strip p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  font-size: 1.125rem;
  margin-bottom: 0;
}

.premium-footer {
  background-color: #000;
  color: rgba(255, 255, 255, 0.6);
  padding: 85px 0 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 2;
}
.premium-footer h5 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  letter-spacing: -0.01em;
}

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

.footer-links-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.footer-links-list li {
  margin-bottom: 0.75rem;
}
.footer-links-list a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition-luxury);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.footer-links-list a::after {
  content: '\F135'; /* Bootstrap icon arrow-up-right */
  font-family: 'bootstrap-icons';
  font-size: 0.75rem;
  opacity: 0;
  transform: translate(-3px, 3px);
  transition: var(--transition-luxury);
}
.footer-links-list a:hover {
  color: var(--accent);
}
.footer-links-list a:hover::after {
  opacity: 1;
  transform: translate(0, 0);
}

.footer-contact-info li {
  display: flex;
  align-items: start;
  gap: 12px;
  margin-bottom: 0.85rem !important;
}
.footer-contact-info li i {
  color: var(--accent);
  margin-top: 4px;
  font-size: 1.1rem;
}
.footer-contact-info li span {
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 26px 0;
  font-size: 0.875rem;
  margin-top: 60px;
}
.footer-bottom-bar a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  margin-left: 1.5rem;
  transition: var(--transition-luxury);
}
.footer-bottom-bar a:hover {
  color: var(--accent);
}

/* Reusable Lightbox */
.custom-lightbox {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(3, 10, 26, 0.96);
  z-index: var(--z-modal);
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 30px;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 3rem;
  cursor: pointer;
}
.lightbox-btn {
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  padding: 20px;
  position: absolute;
}
.lightbox-btn-prev { left: 20px; }
.lightbox-btn-next { right: 20px; }
.lightbox-content-wrapper {
  max-width: 80%;
  max-height: 80%;
  text-align: center;
}
.lightbox-img {
  max-width: 100%;
  max-height: 70vh;
  border-radius: var(--radius-small);
  box-shadow: var(--shadow-soft);
}
.lightbox-caption {
  color: var(--white);
  margin-top: 15px;
  font-weight: 600;
}

/* ==========================================================================
   9. High Contrast Style Stark Colors
   ========================================================================== */
body.high-contrast {
  background-color: #000000 !important;
  color: #FFFFFF !important;
  --light-bg: #000000;
  --white: #000000;
  --body: #E2E8F0;
  --border: #FFFFFF;
  --heading: #FFFFFF;
  --secondary: #FFFF00;
}
body.high-contrast .main-header,
body.high-contrast .premium-footer,
body.high-contrast .card,
body.high-contrast .bento-item,
body.high-contrast .industry-strip-card,
body.high-contrast .project-case-card,
body.high-contrast .accordion-item,
body.high-contrast .mega-menu {
  background-color: #000000 !important;
  color: #FFFFFF !important;
  border: 1px solid #FFFFFF !important;
}
body.high-contrast a,
body.high-contrast h1,
body.high-contrast h2,
body.high-contrast h3,
body.high-contrast h4,
body.high-contrast h5,
body.high-contrast h6,
body.high-contrast strong,
body.high-contrast label,
body.high-contrast th,
body.high-contrast .nav-link,
body.high-contrast .mega-menu-item-title {
  color: #FFFF00 !important;
}
body.high-contrast .btn-luxury-primary,
body.high-contrast .btn-luxury-secondary,
body.high-contrast .btn-luxury-accent {
  background-color: #000000 !important;
  color: #FFFF00 !important;
  border: 2px solid #FFFF00 !important;
}
body.high-contrast .btn-luxury-primary:hover,
body.high-contrast .btn-luxury-secondary:hover,
body.high-contrast .btn-luxury-accent:hover {
  background-color: #FFFF00 !important;
  color: #000000 !important;
}
body.high-contrast input,
body.high-contrast textarea,
body.high-contrast select {
  background-color: #000000 !important;
  color: #FFFFFF !important;
  border: 2px solid #FFFFFF !important;
}




    /* =========================
       Hero Slider
    ========================= */

    .hero-slider {
      position: relative;
      overflow: hidden;
      background: var(--dark-color);
      margin-top: 15px;
    }

    .hero-slider .carousel-item {
      position: relative;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
    }

    .hero-slide-1 {
      background-image: url("../../assets/images/banners11.png");
    }

    .hero-slide-2 {
      background-image: url("../../assets/images/banners22.png");
    }

    /* Dark overlay */

  .hero-slider .carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgb(202 31 38) 0%, rgb(202 31 38 / 38%) 40%, rgba(7, 25, 46, 0.35) 75%, rgba(7, 25, 46, 0.2) 100%);
    z-index: 1;
}

    /* Decorative pattern */

    .hero-slider .carousel-item::after {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
      background-size: 60px 60px;
      z-index: 1;
      pointer-events: none;
    }

    .hero-slider .carousel-item .container {
      position: relative;
      z-index: 3;
    }

    .hero-content {
      max-width: 100%;
      padding-top: 50px;
      padding-bottom: 80px;
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 22px;
      color: #fff;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 1.4px;
      text-transform: uppercase;
    }

    .hero-tag::before {
      content: "";
      width: 42px;
      height: 3px;
      border-radius: 20px;
      background:#fff;
    }

    .hero-title {
      margin-bottom: 24px;
      color: #fff;
      font-size: clamp(42px, 2.5vw, 76px);
      font-weight: 800;
      line-height: 1.08;
    }

    .section-padding span {
    color: #ffffff;
}

.text-warning {
    --bs-text-opacity: 1;
    color:  var(--accent-yellow) !important;
}

    .hero-title span {
      color: var(--secondary-color);
    }

    .hero-description {
      max-width: 670px;
      margin-bottom: 34px;
      color: rgba(255, 255, 255, 0.82);
      font-size: 18px;
      line-height: 1.8;
    }

    .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
    }

    .hero-btn {
      min-height: 56px;
      padding: 15px 27px;
      border: 2px solid transparent;
      border-radius: 8px;
      font-size: 15px;
      font-weight: 700;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .hero-btn-primary {
      color: #fff;
      background: var(--accent-yellow);
    }

    .hero-btn-primary:hover {
      color: #fff;
      background: #e94f56;
      transform: translateY(-3px);
    }

    .hero-btn-outline {
      color: #fff;
      border-color: #fff;
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(10px);
    }

    .hero-btn-outline:hover {
      color: #fff;
      border-color: #e94f56;
      background: #e94f56;
      transform: translateY(-3px);
    }

    /* Trust points */

    .hero-trust {
      display: flex;
      flex-wrap: wrap;
      gap: 25px;
      margin-top: 40px;
    }

    .hero-trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
      color: rgba(255, 255, 255, 0.86);
      font-size: 14px;
      font-weight: 600;
    }

    .hero-trust-item i {
      color: var(--secondary-color);
      font-size: 18px;
    }

    /* Indicators */

    .hero-slider .carousel-indicators {
      right: auto;
      bottom: 45px;
      left: 50%;
      justify-content: flex-start;
      width: 100%;
      max-width: 1320px;
      margin-right: 0;
      margin-bottom: 0;
      margin-left: 0;
      padding: 0 12px;
      transform: translateX(-50%);
    }

    .hero-slider .carousel-indicators [data-bs-target] {
      width: 38px;
      height: 4px;
      margin-right: 8px;
      margin-left: 0;
      border: 0;
      border-radius: 20px;
      background-color: rgba(255, 255, 255, 0.4);
      opacity: 1;
      transition: all 0.3s ease;
    }

    .hero-slider .carousel-indicators .active {
      width: 65px;
      background-color: var(--secondary-color);
    }

    /* Slider arrows */

    .hero-slider .carousel-control-prev,
    .hero-slider .carousel-control-next {
      top: 50%;
      bottom: auto;
      width: 54px;
      height: 54px;
      border: 1px solid rgba(255, 255, 255, 0.25);
      border-radius: 50%;
      background: rgba(7, 25, 46, 0.38);
      opacity: 1;
      backdrop-filter: blur(8px);
      transform: translateY(-50%);
      transition: all 0.3s ease;
    }

    .hero-slider .carousel-control-prev {
      left: 25px;
    }

    .hero-slider .carousel-control-next {
      right: 25px;
    }

    .hero-slider .carousel-control-prev:hover,
    .hero-slider .carousel-control-next:hover {
      border-color: var(--secondary-color);
      background: var(--secondary-color);
    }

    .hero-slider .carousel-control-prev-icon,
    .hero-slider .carousel-control-next-icon {
      width: 20px;
      height: 20px;
    }

    /* =========================
       Slider Content Animation
    ========================= */

    .hero-slider .hero-tag,
    .hero-slider .hero-title,
    .hero-slider .hero-description,
    .hero-slider .hero-buttons,
    .hero-slider .hero-trust {
      opacity: 0;
      transform: translateY(35px);
    }

    .hero-slider .carousel-item.active .hero-tag {
      animation: heroFadeUp 0.7s ease forwards 0.2s;
    }

    .hero-slider .carousel-item.active .hero-title {
      animation: heroFadeUp 0.8s ease forwards 0.35s;
    }

    .hero-slider .carousel-item.active .hero-description {
      animation: heroFadeUp 0.8s ease forwards 0.5s;
    }

    .hero-slider .carousel-item.active .hero-buttons {
      animation: heroFadeUp 0.8s ease forwards 0.65s;
    }

    .hero-slider .carousel-item.active .hero-trust {
      animation: heroFadeUp 0.8s ease forwards 0.8s;
    }

    @keyframes heroFadeUp {
      from {
        opacity: 0;
        transform: translateY(35px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Background zoom */

    .hero-slider .carousel-item.active {
      animation: heroBackgroundZoom 7s ease-out forwards;
    }

    @keyframes heroBackgroundZoom {
      from {
        background-size: 100%;
      }

      to {
        background-size: 108%;
      }
    }

    /* =========================
       Responsive
    ========================= */

    @media (max-width: 1199px) {
      .hero-slider .carousel-control-prev,
      .hero-slider .carousel-control-next {
        display: none;
      }

      .hero-content {
        padding-top: 150px;
      }
    }

    @media (max-width: 991px) {
      .hero-slider .carousel-item {
        background-position: 65% center;
      }

      .hero-slider .carousel-item::before {
        background: rgba(7, 25, 46, 0.84);
      }

      .hero-content {
        max-width: 720px;
        padding-top: 135px;
        padding-bottom: 115px;
      }

     
    }

    @media (max-width: 767px) {

      .hero-content {
        padding-top: 110px;
        padding-bottom: 115px;
      }

      .hero-tag {
        margin-bottom: 18px;
        font-size: 12px;
        letter-spacing: 1px;
      }

      .hero-tag::before {
        width: 28px;
      }

.hero-slider {
    margin-top: 0px;
}

      .hero-title {
        margin-bottom: 20px;
        font-size: 42px;
        line-height: 1.12;
      }

      .hero-description {
        margin-bottom: 27px;
        font-size: 16px;
        line-height: 1.7;
      }

      .hero-buttons {
        flex-direction: column;
        align-items: stretch;
      }

      .hero-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
      }

      .hero-trust {
        gap: 15px;
        margin-top: 30px;
      }

      .hero-trust-item {
        width: 100%;
      }

      .hero-slider .carousel-indicators {
        bottom: 28px;
      }

      @keyframes heroBackgroundZoom {
        from {
          background-size: cover;
        }

        to {
          background-size: cover;
        }
      }
    }

    @media (max-width: 480px) {

      .hero-title {
        font-size: 36px;
      }

      .hero-description {
        font-size: 15px;
      }
    }

    /* Reduced motion accessibility */

    @media (prefers-reduced-motion: reduce) {
      .hero-slider .carousel-item.active,
      .hero-slider .carousel-item.active .hero-tag,
      .hero-slider .carousel-item.active .hero-title,
      .hero-slider .carousel-item.active .hero-description,
      .hero-slider .carousel-item.active .hero-buttons,
      .hero-slider .carousel-item.active .hero-trust {
        animation: none;
        opacity: 1;
        transform: none;
      }

      .hero-btn,
      .carousel-indicators button {
        transition: none;
      }
    }

    .section-padding li span {
    color: #000 !important;
}











/* Owl item spacing */
.accessibility-carousel .owl-stage {
    display: flex;
}

.accessibility-carousel .owl-item {
    display: flex;
}

.accessibility-carousel .owl-item > article {
    width: 100%;
}


/* Product Card */
.product-slider-card {
    position: relative;
    min-height: 410px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    border: 1px solid var(--border);
    border-radius: var(--radius-medium);
    background: var(--dark);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-luxury);
    isolation: isolate;
}

.product-slider-card:hover {
    transform: translateY(-8px);
    border-color: rgba(20, 99, 255, 0.25);
    box-shadow: 0 28px 65px rgba(15, 23, 42, 0.2);
}

.product-card-image {
    position: absolute;
    inset: 0;
    z-index: -3;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    filter: brightness(0.72) contrast(1.05);
}

.product-slider-card:hover .product-card-image {
    transform: scale(1.07);
}

.product-card-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(
            180deg,
            rgba(11, 35, 65, 0.04) 5%,
            rgba(3, 10, 20, 0.25) 42%,
            rgba(0, 0, 0, 0.9) 100%
        );
}

.product-card-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 34px;
    color: var(--white);
}

.product-card-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 13px;
    margin-bottom: 16px;
    border-radius: 50px;
    background: var(--secondary);
    color: #111827;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
}

.product-card-content h3 {
    margin: 0 0 11px;
    color: var(--white);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(23px, 2vw, 30px);
    font-weight: 800;
    line-height: 1.25;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.35);
}

.product-card-content p {
    display: -webkit-box;
    margin: 0 0 23px;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.88);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 15px;
    line-height: 1.7;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.product-card-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #ff3131;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.3s ease;
}

.product-card-link:hover {
    color: #ffffff;
}

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

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

.accessibility-carousel {
    position: relative;
}
/* Owl Navigation */
.accessibility-carousel .owl-nav {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
}

.accessibility-carousel .owl-nav button.owl-prev,
.accessibility-carousel .owl-nav button.owl-next {
    width: 52px;
    height: 52px;
    margin: 0 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(11, 35, 65, 0.12) !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    color: var(--dark) !important;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1);
    transition: 0.3s ease;
}

.accessibility-carousel .owl-nav button.owl-prev:hover,
.accessibility-carousel .owl-nav button.owl-next:hover {
    border-color: var(--dark) !important;
    background: var(--dark) !important;
    color: #ffffff !important;
    transform: translateY(-3px);
}

.accessibility-carousel .owl-nav button span {
    font-size: 0;
}

.accessibility-carousel .owl-nav button i {
    font-size: 20px;
}


/* Owl Dots */
.accessibility-carousel .owl-dots {
    margin-top: 22px !important;
}

.accessibility-carousel .owl-dots .owl-dot span {
    width: 9px;
    height: 9px;
    margin: 5px;
    background: rgba(11, 35, 65, 0.2);
    transition: 0.3s ease;
}

.accessibility-carousel .owl-dots .owl-dot.active span {
    width: 28px;
    border-radius: 20px;
    background: var(--dark);
}
.inner-hero
{
  background-image: linear-gradient(135deg, var(--primary) 0%, #010610 100%); 
  position: relative; 
  overflow: hidden; 
  padding-top: 100px; 
  padding-bottom: 80px;
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 991px) {
    .section-padding {
        padding: 70px 0;
    }

    .product-slider-card {
        min-height: 390px;
    }

    .product-card-content {
        padding: 28px;
    }
}

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

    .product-section-heading {
        margin-bottom: 32px;
    }

    .section-desc {
        font-size: 15px;
    }

    .product-slider-card {
        min-height: 430px;
        border-radius: 20px;
    }

    .product-card-content {
        padding: 25px;
    }

    .product-card-content h3 {
        font-size: 24px;
    }

    .product-card-content p {
        font-size: 14px;
        -webkit-line-clamp: 5;
    }

    .accessibility-carousel .owl-nav button.owl-prev,
    .accessibility-carousel .owl-nav button.owl-next {
        width: 46px;
        height: 46px;
    }
    .inner-hero
{
  margin-top: 0px;
}
.section-tag {
    padding-top: 0px !important;
}

}

.mobile_menu_service_main {
    background-color: #0b23414a;
    margin-bottom: 5px;
    color: #000000 !important;
}
.mobile-submenu h5 {
    font-weight: 600;
    font-size: 18px;
}





.gallery-section{
    background:#f8f9fb;
}

.sub-title{
    display:inline-block;
    color:#4F46E5;
    font-weight:600;
    margin-bottom:10px;
}

.gallery-item{
    display:block;
    position:relative;
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.gallery-item img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:.6s;
}

.gallery-item.tall img{
    height:664px;
}

.gallery-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(0,0,0,.75),transparent);
    display:flex;
    align-items:flex-end;
    padding:25px;
    opacity:0;
    transition:.4s;
}

.gallery-overlay h5{
    color:#fff;
    margin:0;
    transform:translateY(20px);
    transition:.4s;
}

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

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

.gallery-item:hover h5{
    transform:translateY(0);
}

@media(max-width:991px){

.gallery-item img,
.gallery-item.tall img{
    height:300px;
}

}


.popup-card{
    border:none;
    border-radius:22px;
    overflow:hidden;
    backdrop-filter:blur(20px);
    box-shadow:0 25px 60px rgba(0,0,0,.18);
}

.popup-left {
    background: linear-gradient(135deg, #9f2429, #ff0711, #280708);
    color: #fff;
    padding: 45px;
    align-items: center;
}

.popup-left h2{
    font-weight:700;
    color: #fff;
    margin-bottom:20px;
}

.popup-left p{
    opacity:.9;
}

.popup-left li{
    margin-bottom:15px;
    font-size:16px;
}

.popup-form{
    padding:40px;
    background:#fff;
}

.custom-input{
    height:55px;
    border-radius:12px;
    border:1px solid #ddd;
    padding:15px;
    transition:.3s;
}

textarea.custom-input{
    height:auto;
}

.custom-input:focus{
    border-color:#5B6CFF;
    box-shadow:0 0 0 .2rem rgba(91,108,255,.15);
}

.submit-btn{
    height:55px;
    border-radius:12px;
    background:#9f2429;
    color:#fff;
    font-weight:600;
    transition:.3s;
}

.submit-btn:hover{
    background:#720e11;
    color:#fff;
    transform:translateY(-2px);
}

.btn-close{
    opacity:1;
}


.mega-menu.dropdown-menu {
    height: 350px;
    overflow-y: scroll;
}

















