@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap");


/* ==========================================================================
   CSS-VARIABLES-START
   ========================================================================== */

/* ==========================================================================
   BRAND COLORS - BLUE AND GREEN
   ========================================================================== */

:root {

  --primary-color: #085394;
  --primary-dark: #085394;
  --primary-light: #085394;
  --secondary-color: #538c38;
  --secondary-dark: #538c38;
  --secondary-light: #538c38;
  --accent-color: #538c38;
  --accent-dark: #538c38;
  --accent-light: #538c38;
  --success-color: #538c38;

  --white: #ffffff;
  --gray-50: #ffffff;
  --gray-100: #ffffff;
  --gray-200: #ffffff;
  --gray-300: #ffffff;
  --gray-400: #2d2d2d;
  --gray-500: #2d2d2d;
  --gray-600: #2d2d2d;
  --gray-700: #2d2d2d;
  --gray-800: #2d2d2d;
  --gray-900: #2d2d2d;
  --heading-gray: #2d2d2d;
  --black: #2d2d2d;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

:root {
  --font-primary: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-secondary: "Manrope", sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 0.9375rem;
  --text-lg: 1.05rem;
  --text-xl: 1.15rem;
  --text-2xl: 1.4rem;
  --text-3xl: 1.75rem;
  --text-4xl: 2.1rem;
  --text-5xl: 2.5rem;
  --text-6xl: 3rem;

  

/* ==========================================================================
   SPACING
   ========================================================================== */

  --spacing-1: 0.25rem;
  --spacing-2: 0.5rem;
  --spacing-3: 0.75rem;
  --spacing-4: 1rem;
  --spacing-5: 1.25rem;
  --spacing-6: 1.5rem;
  --spacing-8: 2rem;
  --spacing-10: 2.5rem;
  --spacing-12: 3rem;
  --spacing-16: 4rem;
  --spacing-20: 5rem;
  --spacing-24: 6rem;

  

/* ==========================================================================
   BORDER RADIUS
   ========================================================================== */

  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  

/* ==========================================================================
   SHADOWS
   ========================================================================== */

  --shadow-sm: 0 1px 2px 0 rgba(45, 45, 45, 0.05);
  --shadow-md:
    0 4px 6px -1px rgba(45, 45, 45, 0.1), 0 2px 4px -2px rgba(45, 45, 45, 0.1);
  --shadow-lg:
    0 10px 15px -3px rgba(45, 45, 45, 0.1), 0 4px 6px -4px rgba(45, 45, 45, 0.1);
  --shadow-xl:
    0 20px 25px -5px rgba(45, 45, 45, 0.1),
    0 8px 10px -6px rgba(45, 45, 45, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(45, 45, 45, 0.25);

  

/* ==========================================================================
   TRANSITIONS
   ========================================================================== */

  --transition-fast: 150ms ease-in-out;
  --transition-normal: 300ms ease-in-out;
  --transition-slow: 500ms ease-in-out;

  

/* ==========================================================================
   Z-INDEX
   ========================================================================== */

  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
}


/* ==========================================================================
   CSS-VARIABLES-END
   ========================================================================== */


/* ==========================================================================
   RESET-BASE-START
   ========================================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--gray-700);
  background-color: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  padding-top: 0;
  margin: 0;
  text-align: left;
  max-width: 100vw;
}

* {
  -webkit-tap-highlight-color: transparent;
}

/* Let paragraphs follow their parent alignment (left by default, center in centered blocks) */
p {
  text-align: inherit;
  text-justify: auto;
  hyphens: none;
  -webkit-hyphens: none;
}


/* ==========================================================================
   AVOID AWKWARD SPACING IN SHORT-WIDTH CARDS AND UTILITY BLOCKS
   ========================================================================== */

.feature-box p,
.product-clean-body p,
.blog-clean-body p,
.testimonial-clean-card p,
.job-card p,
.contact-list-modern p,
.footer.footer-modern p {
  text-align: left;
  text-justify: auto;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}


/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-secondary);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--spacing-3);
  color: var(--heading-gray);
  letter-spacing: -0.01em;
}

h1 {
  font-size: var(--text-3xl);
  font-weight: 700;
}

h2 {
  font-size: var(--text-2xl);
  font-weight: 600;
}

h3 {
  font-size: var(--text-xl);
  font-weight: 600;
}

h4 {
  font-size: var(--text-lg);
  font-weight: 600;
}

h5 {
  font-size: var(--text-base);
  font-weight: 600;
}

h6 {
  font-size: var(--text-sm);
  font-weight: 600;
}

p {
  margin-bottom: var(--spacing-4);
  color: #2d2d2d;
  line-height: 1.8;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-dark);
}

/* Keep semantic emphasis visible wherever strong is used. */
strong {
  font-weight: 700;
}

/* Global copy style: all page paragraph text stays gray. */
body p {
  color: #2d2d2d !important;
}

/* Hide subheading text shown directly after section/page headings site-wide. */
.page-subtitle,
.about-modern-head>h2+p,
.why-modern-head>h2+p,
.products-modern-head>h2+p,
.blog-modern-head>h2+p,
.testimonial-modern-head>h2+p,
.contact-modern-head>h2+p {
  display: none !important;
}

/* Keep paragraphs readable on dark backgrounds. */
.contact-info p,
.footer p,
.footer-bottom p,
.footer.footer-modern p,
.footer.footer-modern .footer-bottom p,
.cta-widget p,
.video-fallback p {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* RESET/BASE RESPONSIVE */
@media (max-width: 1200px) {
  :root {
    --text-5xl: 2rem;
    --text-4xl: 1.75rem;
    --text-3xl: 1.5rem;
    --text-2xl: 1.25rem;
    --text-xl: 1.125rem;
    --text-lg: 1rem;
    --text-base: 0.9rem;
    --text-sm: 0.825rem;
  }
}

@media (max-width: 992px) {
  :root {
    --text-5xl: 1.75rem;
    --text-4xl: 1.5rem;
    --text-3xl: 1.25rem;
    --text-2xl: 1.125rem;
    --text-xl: 1rem;
    --text-lg: 0.9rem;
    --text-base: 0.85rem;
    --text-sm: 0.775rem;
  }
}

@media (max-width: 768px) {
  :root {
    --text-5xl: 1.625rem;
    --text-4xl: 1.5rem;
    --text-3xl: 1.25rem;
    --text-2xl: 1.125rem;
    --text-xl: 1rem;
    --text-lg: 0.9rem;
    --text-base: 0.75rem;
    --text-sm: 0.7rem;
    --text-xs: 0.65rem;
  }

  p {
    font-size: 0.75rem;
    line-height: 1.6;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1.125rem;
  }

  h4 {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  :root {
    --text-5xl: 1.75rem;
    --text-4xl: 1.5rem;
    --text-3xl: 1.25rem;
    --text-2xl: 1.125rem;
  }

  h1 {
    font-size: 1.35rem;
  }

  h2 {
    font-size: 1.15rem;
  }

  h3 {
    font-size: 1rem;
  }

  h4 {
    font-size: 0.95rem;
  }

  .mb-4 {
    text-align: center;
  }
}


/* ==========================================================================
   RESET-BASE-END
   ========================================================================== */


/* ==========================================================================
   UTILITY-CLASSES-START
   ========================================================================== */


/* ==========================================================================
   NAVIGATION ENQUIRY ICON
   ========================================================================== */


/* ==========================================================================
   COLOR SWATCHES AND DOTS
   ========================================================================== */

.swatch-yellow {
  background-color: #ffd700 !important;
}

.swatch-orange {
  background-color: #ff8c00 !important;
}

.swatch-black {
  background-color: #333333 !important;
}

.swatch-blue {
  background-color: #1e90ff !important;
}

.swatch-gray {
  background-color: #a9a9a9 !important;
}


/* ==========================================================================
   UTILITY-CLASSES-END
   ========================================================================== */


/* ==========================================================================
   BUTTONS-START
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
  box-shadow: 0 1px 2px rgba(45, 45, 45, 0.08);
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transform: translate(-50%, -50%);
  transition:
    width 0.4s,
    height 0.4s;
}

.btn:hover::before {
  width: 200px;
  height: 200px;
}

.btn-primary {
  background: var(--primary-color);
  color: #ffffff;
  border: 2px solid transparent;
}

.btn-primary:hover {
  background: var(--secondary-color);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(83, 140, 56, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(83, 140, 56, 0.25);
}

.btn-secondary {
  background: #ffffff;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: 0 2px 8px rgba(83, 140, 56, 0.15);
}

.btn-secondary:hover {
  background: var(--secondary-color);
  color: #ffffff;
  border-color: var(--secondary-color);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(83, 140, 56, 0.25);
}

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

.btn-outline {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 2px solid #ffffff;
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: var(--secondary-color);
  color: #ffffff;
  border-color: var(--secondary-color);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.25);
}

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

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  border-radius: 10px;
}

.btn i {
  transition: transform 0.3s ease;
}

.btn:hover i {
  transform: translateX(3px);
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}


/* ==========================================================================
   BUTTONS-END
   ========================================================================== */


/* ==========================================================================
   NAVIGATION-START
   ========================================================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  box-shadow: none;
  border-bottom: none;
  transition: all 0.3s ease;
  padding: 0;
  height: 64px;
  backdrop-filter: blur(10px);
}

.navbar.scrolled {
  background: #ffffff !important;
  box-shadow: 0 2px 20px rgba(45, 45, 45, 0.1);
  border-bottom: none;
}


/* ==========================================================================
   TRANSPARENT NAV ON HERO PAGES
   ========================================================================== */

body.has-hero-video .navbar:not(.scrolled) {
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

body.has-hero-video .navbar:not(.scrolled) .nav-link {
  color: #ffffff !important;
}

body.has-hero-video .navbar:not(.scrolled) .nav-link:hover {
  color: #6fce40 !important;
  background: rgba(255, 255, 255, 0.1);
}

body.has-hero-video .navbar:not(.scrolled) .nav-link.active {
  color: #6fce40 !important;
  background: rgba(255, 255, 255, 0.12);
}

body.has-hero-video .navbar:not(.scrolled) .nav-link i {
  opacity: 0.8;
}

body.has-hero-video .navbar:not(.scrolled) .nav-social-link {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.25);
}

body.has-hero-video .navbar:not(.scrolled) .nav-social-link:hover {
  background: var(--secondary-color);
  color: #ffffff !important;
}

body.has-hero-video .navbar:not(.scrolled) .nav-social-item {
  border-left-color: rgba(255, 255, 255, 0.2);
}

body.has-hero-video .navbar:not(.scrolled) .mobile-menu-toggle {
  border-color: rgba(255, 255, 255, 0.4);
}

body.has-hero-video .navbar:not(.scrolled) .mobile-menu-toggle span {
  background: #ffffff;
}

body.has-hero-video .navbar:not(.scrolled) .dropdown-content {
  background: #ffffff;
}

body.has-hero-video .navbar:not(.scrolled) .category-btn {
  color: #2d2d2d;
}

body.has-hero-video .navbar:not(.scrolled) .products-list a {
  color: #2d2d2d;
}


/* ==========================================================================
   LOGO SWAP ON SCROLL
   ========================================================================== */

.brand-logo .logo-scrolled {
  display: none;
}

.brand-logo .logo-default {
  display: block;
}

.navbar.scrolled .brand-logo .logo-default {
  display: none;
}

.navbar.scrolled .brand-logo .logo-scrolled {
  display: block;
}

/* On hero pages, show default logo in transparent state */
body.has-hero-video .navbar:not(.scrolled) .brand-logo .logo-default {
  display: block;
}

body.has-hero-video .navbar:not(.scrolled) .brand-logo .logo-scrolled {
  display: none;
}


/* ==========================================================================
   ENHANCED GREEN HOVER FOR NAV LINKS
   ========================================================================== */

.nav-link::before {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #6fce40;
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::before,
.nav-link.active::before {
  width: 60%;
}

.navbar .container {
  max-width: 1320px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: 64px;
  padding: 0;
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}

.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: none;
  z-index: 1002;
  margin-right: 2.5rem;
  background: transparent;
  padding: 0.5rem 0;
  border-radius: 0;
  overflow: visible;
  position: relative;
  cursor: pointer;
}

.brand-logo img {
  height: 56px;
  width: auto;
  transition: all 0.3s ease !important;
  display: block;
}

.navbar.scrolled .brand-logo img {
  height: 56px !important;
}

.navbar.scrolled .brand-logo {
  padding: 0.5rem 0 !important;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  margin-left: auto;
}

.nav-menu>li {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.875rem;
  color: #2d2d2d !important;
  text-decoration: none !important;
  font-weight: 500;
  font-size: 0.875rem;
  border-radius: 6px;
  transition: all 0.2s ease;
  position: relative;
  background: transparent;
  white-space: nowrap;
}

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

.nav-link:hover {
  color: #6fce40 !important;
  background: rgba(111, 206, 64, 0.06);
}

.nav-link.active {
  color: #6fce40 !important;
  background: rgba(111, 206, 64, 0.08);
}

.nav-link i {
  font-size: 0.625rem;
  transition: transform 0.3s ease;
  opacity: 0.6;
}

.nav-dropdown {
  padding-bottom: 0;
  position: relative;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 14px;
}

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

.dropdown-content {
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  transform: translateY(-14px) scale(0.985);
  transform-origin: top left;
  width: max-content;
  min-width: 0;
  max-width: none;
  background: transparent;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.62s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.62s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
  padding: 0;
  margin-top: 0;
  z-index: 1000;
  display: block;
  overflow: visible;
  will-change: transform, opacity;
}

.nav-dropdown:hover .dropdown-content,
.nav-dropdown:focus-within .dropdown-content {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.nav-dropdown:focus-within .nav-link i {
  transform: rotate(180deg);
}

.dropdown-categories {
  width: max-content;
  min-width: 0;
  background: #f8f9fa;
  border: 1px solid rgba(45, 45, 45, 0.1);
  border-radius: 8px;
  box-shadow:
    0 20px 60px rgba(45, 45, 45, 0.25),
    0 8px 20px rgba(45, 45, 45, 0.15),
    0 0 1px rgba(45, 45, 45, 0.2);
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.category-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.25rem;
  background: transparent;
  border: none;
  color: #2d2d2d;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  font-family: var(--font-primary);
  border-left: 3px solid transparent;
  white-space: nowrap;
}

.category-btn span {
  white-space: nowrap;
}

.category-btn:hover {
  background: rgba(83, 140, 56, 0.08);
  color: var(--secondary-color);
  border-left-color: var(--secondary-color);
}

.category-btn.active {
  background: rgba(83, 140, 56, 0.12);
  color: var(--secondary-color);
  border-left-color: var(--secondary-color);
}

.category-btn i {
  font-size: 0.625rem;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.category-btn:hover i,
.category-btn.active i {
  opacity: 1;
  transform: translateX(2px);
}

.dropdown-products {
  position: absolute;
  top: 0;
  left: 100%;
  width: max-content;
  min-width: 0;
  margin-left: 0;
  max-width: min(70vw, 760px);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  overflow: auto;
  pointer-events: none;
  background: #ffffff;
  border: 1px solid rgba(45, 45, 45, 0.1);
  border-radius: 8px;
  box-shadow:
    0 20px 60px rgba(45, 45, 45, 0.25),
    0 8px 20px rgba(45, 45, 45, 0.15),
    0 0 1px rgba(45, 45, 45, 0.2);
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease;
  transform: translateX(-2px);
}

.dropdown-content.has-active .dropdown-products {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.products-list {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
}

.products-list.active {
  display: flex;
}

.products-list a {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.6rem 0.75rem;
  color: #2d2d2d;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.15s ease;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.4;
  background: transparent;
  white-space: nowrap;
}

.products-list a:hover {
  color: var(--secondary-color);
  background: rgba(83, 140, 56, 0.06);
  padding-left: 1rem;
}

.products-list a i {
  color: var(--primary-color);
  font-size: 0.625rem;
  transition: all 0.15s ease;
  opacity: 0.7;
}

.products-list a:hover i {
  color: var(--secondary-color);
  transform: translateX(2px);
  opacity: 1;
}

.nav-social-item {
  display: flex;
  align-items: center;
  margin-left: 1rem;
  padding-left: 1.5rem;
  border-left: 1px solid rgba(45, 45, 45, 0.1);
}

.nav-social-icons-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(8, 83, 148, 0.08);
  color: #085394 !important;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}

.nav-social-link:hover {
  background: var(--secondary-color);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(83, 140, 56, 0.3);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 2px solid rgba(45, 45, 45, 0.2);
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle span {
  width: 28px;
  height: 3px;
  background: #2d2d2d;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
}

.mobile-menu-toggle:hover span {
  background: #ffffff !important;
}

.mobile-menu-toggle.active {
  background: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
}

.mobile-menu-toggle.active span {
  background: #ffffff !important;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  width: 100%;
  max-height: 0;
  background: #ffffff;
  box-shadow: 0 4px 6px rgba(45, 45, 45, 0.06);
  transition: max-height 0.4s ease;
  z-index: 999;
  overflow: hidden;
  border-top: none;
}

.mobile-menu.active {
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}

.mobile-menu .container {
  max-width: 1320px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}

.mobile-nav-list {
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
}

.mobile-nav-list>li {
  margin-bottom: 0;
}

.mobile-nav-list>li>a {
  display: block;
  padding: 0.6rem 1rem;
  color: #2d2d2d;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  border-left: none;
  position: relative;
  background: transparent;
}

.mobile-nav-list>li>a:hover {
  background: rgba(83, 140, 56, 0.06);
  color: var(--secondary-color);
}

.mobile-nav-list>li>a.active {
  background: rgba(83, 140, 56, 0.08);
  color: var(--secondary-color);
}

.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 0.6rem 1rem;
  color: #2d2d2d;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  border-left: none;
  transition: all 0.2s ease;
  background: transparent;
  position: relative;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-primary);
}

.mobile-dropdown-toggle:hover {
  background: rgba(83, 140, 56, 0.06);
  color: var(--secondary-color);
}

.mobile-dropdown-toggle:active {
  background: rgba(83, 140, 56, 0.1);
}

.mobile-dropdown-toggle:focus {
  outline: none;
}

.mobile-dropdown-toggle i {
  transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-toggle {
  background: rgba(83, 140, 56, 0.08);
  color: var(--secondary-color);
}

.mobile-dropdown.active .mobile-dropdown-toggle i {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #ffffff;
}

.mobile-dropdown.active .mobile-dropdown-menu {
  max-height: 600px;
}

.mobile-dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem 0.5rem 1.75rem;
  color: #085394;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.2s ease;
  position: relative;
  background: transparent;
}

.mobile-dropdown-menu li a i {
  color: var(--primary-color);
  font-size: 0.625rem;
  opacity: 0.7;
}

.mobile-dropdown-menu li a:hover {
  background: #ffffff;
  color: var(--secondary-color);
}

.mobile-dropdown-menu li a:hover i {
  opacity: 1;
  color: var(--secondary-color);
}

.mobile-menu-overlay {
  display: none;
}

.mobile-social-wrapper {
  margin-top: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(45, 45, 45, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.mobile-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(8, 83, 148, 0.08);
  color: #085394 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.mobile-social-link:hover {
  background: var(--secondary-color);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(83, 140, 56, 0.3);
}


/* ==========================================================================
   RESPONSIVE NAVIGATION BREAKPOINTS
   ========================================================================== */

@media (min-width: 1400px) {
  .navbar {
    background: #ffffff;
  }
}

@media (max-width: 1300px) {
  .navbar {
    background: #ffffff;
  }

  .brand-logo {
    margin-right: 1.5rem;
  }

  .nav-menu {
    gap: 0.3rem;
  }

  .nav-link {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .dropdown-content {
    max-width: none;
  }
}

@media (max-width: 1200px) {
  .navbar {
    background: #ffffff;
  }

  .brand-logo {
    margin-right: 1.2rem;
  }

  .nav-menu {
    gap: 0.15rem;
  }

  .nav-link {
    padding: 0.6rem 0.9rem;
    font-size: 0.85rem;
  }

  .dropdown-content {
    max-width: none;
  }
}

@media (max-width: 1024px) {
  .navbar {
    background: #ffffff;
  }

  .nav-container {
    padding: 0;
  }

  .brand-logo {
    padding: 0.5rem 0;
    overflow: visible;
    max-height: 64px;
    margin-right: 1.5rem;
  }

  .brand-logo img {
    height: 50px;
  }

  .navbar.scrolled .brand-logo {
    padding: 0.5rem 0 !important;
  }

  .navbar.scrolled .brand-logo img {
    height: 50px !important;
  }

  .nav-menu {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .nav-right {
    margin-left: auto;
    gap: 0;
  }

  .navbar {
    height: 64px;
  }

  .mobile-menu {
    top: 64px;
  }

  .dropdown-content {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .navbar {
    height: 60px !important;
    background: #ffffff;
  }

  .nav-container {
    padding: 0.5rem 15px;
    height: 60px;
  }

  .brand-logo {
    padding: 0.4rem 0;
    margin-right: 0.5rem;
    max-width: 170px;
    overflow: visible;
    max-height: 60px;
  }

  .brand-logo img {
    height: 50px;
    max-width: 100%;
    object-fit: contain;
    display: block;
  }

  .navbar.scrolled .brand-logo {
    padding: 0.4rem 0 !important;
  }

  .navbar.scrolled .brand-logo img {
    height: 50px !important;
  }

  .nav-right {
    margin-left: auto;
    gap: 0.4rem;
  }

  .mobile-menu-toggle {
    padding: 7px;
  }

  .mobile-nav-list>li>a,
  .mobile-dropdown-toggle {
    font-size: 1rem;
  }

  .mobile-dropdown-menu li a {
    font-size: 0.95rem;
  }

  .mobile-menu {
    width: 100%;
    top: 60px;
  }

  .mobile-menu.active {
    max-height: calc(100vh - 60px);
  }


  .hero .hero-video-wrapper {
    margin-top: 60px !important;
  }
}

@media (max-width: 480px) {
  .navbar {
    height: 56px !important;
    background: #ffffff;
  }

  .nav-container {
    padding: 0.5rem 0.75rem;
    height: 56px;
  }

  .brand-logo {
    padding: 0.3rem 0;
    margin-right: 0.4rem;
    max-width: 140px;
    overflow: visible;
    max-height: 56px;
  }

  .brand-logo img {
    height: 46px;
    max-width: 100%;
    object-fit: contain;
    display: block;
  }

  .navbar.scrolled .brand-logo {
    padding: 0.3rem 0 !important;
  }

  .navbar.scrolled .brand-logo img {
    height: 46px !important;
  }

  .nav-right {
    gap: 0.35rem;
  }

  .mobile-menu-toggle {
    padding: 6px;
  }

  .mobile-nav-list>li>a,
  .mobile-dropdown-toggle {
    font-size: 0.95rem;
  }

  .mobile-dropdown-menu li a {
    font-size: 0.9rem;
  }

  .mobile-menu {
    width: 100%;
    top: 56px;
  }

  .mobile-menu.active {
    max-height: calc(100vh - 56px);
  }


  .hero .hero-video-wrapper {
    margin-top: 56px !important;
  }
}


/* ==========================================================================
   NAVIGATION-END
   ========================================================================== */


/* ==========================================================================
   HERO-CAROUSEL-START
   ========================================================================== */


body.has-hero-video .navbar {
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.2);
}

body.has-hero-video .navbar .nav-link {
  color: #ffffff !important;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

body.has-hero-video .navbar .nav-link:hover,
body.has-hero-video .navbar .nav-link.active {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.16);
}

body.has-hero-video .navbar .mobile-menu-toggle {
  border-color: var(--secondary-color);
  background: rgba(255, 255, 255, 0.08);
}

body.has-hero-video .navbar .mobile-menu-toggle span {
  background: var(--secondary-color);
}

body.has-hero-video .mobile-nav-list>li>a,
body.has-hero-video .mobile-dropdown-toggle,
body.has-hero-video .mobile-dropdown-menu li a {
  color: #000000;
}

body.has-hero-video .navbar.scrolled {
  background: #ffffff;
  backdrop-filter: none;
  box-shadow: 0 1px 3px rgba(45, 45, 45, 0.08);
}

body.has-hero-video .navbar.scrolled .nav-link {
  color: #2d2d2d !important;
  text-shadow: none;
}

body.has-hero-video .navbar.scrolled .nav-link:hover {
  color: var(--secondary-color) !important;
  background: rgba(83, 140, 56, 0.06);
}

body.has-hero-video .navbar.scrolled .nav-link.active {
  color: var(--secondary-color) !important;
  background: rgba(83, 140, 56, 0.08);
}

body.has-hero-video .navbar:not(.scrolled) .dropdown-content {
  background: #ffffff;
}

body.has-hero-video .navbar:not(.scrolled) .category-btn {
  color: #2d2d2d;
}

body.has-hero-video .navbar:not(.scrolled) .products-list a {
  color: #2d2d2d;
}

body.has-hero-video .hero .hero-video-wrapper {
  margin-top: 0 !important;
}

.hero {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
}

.hero .hero-video-wrapper {
  width: 100%;
  height: min(92vh, 940px);
  min-height: 450px;
  max-height: 940px;
  aspect-ratio: auto;
  margin: 64px 0 0;
  position: relative;
  overflow: hidden;
  background: #2d2d2d;
}

/* ── VIDEO LOADER ── */
.video-loader {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #081426 0%, #0d2040 50%, #081426 100%);
  background-size: 400% 400%;
  animation: loaderShimmer 3s ease infinite;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}

.video-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes loaderShimmer {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.video-loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.video-loader-spinner {
  position: relative;
  width: 52px;
  height: 52px;
}

.video-loader-spinner span {
  position: absolute;
  inset: 0;
  border: 3px solid transparent;
  border-radius: 50%;
  animation: spinArc 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.video-loader-spinner span:nth-child(1) {
  border-top-color: #085394;
  animation-delay: -0.45s;
}

.video-loader-spinner span:nth-child(2) {
  border-top-color: rgba(8, 83, 148, 0.65);
  animation-delay: -0.3s;
  inset: 6px;
}

.video-loader-spinner span:nth-child(3) {
  border-top-color: rgba(83, 140, 56, 0.8);
  animation-delay: -0.15s;
  inset: 12px;
}

.video-loader-spinner span:nth-child(4) {
  border-top-color: rgba(83, 140, 56, 0.4);
  animation-delay: 0s;
  inset: 18px;
}

@keyframes spinArc {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.video-loader-text {
  font-family: "Manrope", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5) !important;
  margin: 0;
  animation: loaderPulse 1.5s ease-in-out infinite;
}

@keyframes loaderPulse {

  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }
}

/* ── /VIDEO LOADER ── */
.hero .hero-video-wrapper::before {
  content: "";
  position: absolute;
  inset: 1;
  z-index: 1;
  background: linear-gradient(105deg,
      rgba(8, 20, 38, 0.68) 0%,
      rgba(8, 20, 38, 0.5) 40%,
      rgba(8, 20, 38, 0.14) 100%);
}

.hero .banner-video {
  width: 100vw;
  height: 100vh;
  display: block;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.hero .hero-banner-overlay {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: clamp(1rem, 5vw, 4.5rem);
  transform: translateY(-50%);
  width: min(720px, calc(100% - 2rem));
  color: #ffffff;
}

.hero .hero-banner-kicker {
  margin-bottom: 0.85rem;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9) !important;
}

.hero .hero-banner-overlay h1 {
  margin-bottom: 1rem;
  font-size: clamp(1.5rem, 3.2vw, 3rem);
  line-height: 1.15;
  color: var(--white) !important;
  max-width: 18ch;
}

.hero .hero-banner-copy {
  margin-bottom: 1.5rem;
  max-width: 52ch;
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92) !important;
}

.hero .hero-banner-overlay .btn {
  min-width: 190px;
}

@media (max-width: 768px) {
  .hero .hero-video-wrapper {
    height: min(85vh, 760px);
    min-height: 500px;
  }

  .hero .hero-banner-overlay {
    width: calc(100% - 2rem);
    left: 1rem;
  }

  .hero .hero-banner-kicker {
    margin-bottom: 0.5rem;
    font-size: 0.72rem;
  }

  .hero .hero-banner-overlay h1 {
    margin-bottom: 0.75rem;
    max-width: 24ch;
  }

  .hero .hero-banner-copy {
    margin-bottom: 1rem;
    max-width: 100%;
    font-size: 0.82rem;
    line-height: 1.6;
  }

  .hero .hero-banner-overlay .btn {
    min-width: 160px;
    padding: 0.65rem 1.15rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .hero .hero-video-wrapper {
    height: min(78vh, 620px);
    min-height: auto;
  }

  .hero .hero-banner-kicker,
  .hero .hero-banner-copy {
    display: none;
  }

  .hero .hero-banner-overlay h1 {
    font-size: 1.15rem;
    margin-bottom: 0.65rem;
  }

  .hero .hero-banner-overlay .btn {
    min-width: 145px;
    font-size: 0.75rem;
    padding: 0.55rem 0.95rem;
  }
}


/* ==========================================================================
   HERO-CAROUSEL-END
   ========================================================================== */


/* ==========================================================================
   SECTIONS-START
   ========================================================================== */

.section {
  padding: 2.5rem 0;
  overflow: visible;
  background: #ffffff;
  position: relative;
  z-index: 1;
}

.section-light {
  background: #ffffff;
}

.text-center p,
p.text-center {
  text-align: center !important;
}

#why-choose-us .row.mb-4 p {
  text-align: center !important;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.row.mb-4 p {
  text-align: center !important;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

@media (max-width: 992px) {
  .section {
    padding: 2.75rem 0;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 2.25rem 0;
  }
}

@media (max-width: 576px) {
  .section {
    padding: 1.9rem 0;
  }
}


/* ==========================================================================
   SECTIONS-END
   ========================================================================== */


/* ==================== CONTACT + FEATURE CARDS ==================== */


/* ==========================================================================
   CONTACT FORM
   ========================================================================== */

.contact-form {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(45, 45, 45, 0.06);
  border: 1px solid rgba(45, 45, 45, 0.08);
}

.contact-form .form-control {
  border: 2px solid #ffffff;
  border-radius: 10px;
  padding: 0.85rem 1.25rem;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: #085394;
  box-shadow: 0 0 0 4px rgba(83, 140, 56, 0.1);
  outline: none;
}

.contact-info {
  background: var(--primary-color);
  padding: 2.5rem;
  border-radius: 16px;
  color: #ffffff;
  height: 100%;
  box-shadow: 0 4px 20px rgba(83, 140, 56, 0.2);
}

.contact-info h3 {
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1.25rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-info i {
  color: #ffffff;
  font-size: 1.25rem;
}


/* ==========================================================================
   FEATURE CARDS
   ========================================================================== */

.feature-box {
  background: #ffffff;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(45, 45, 45, 0.08);
  border: 1px solid rgba(45, 45, 45, 0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 280px;
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon i {
  font-size: 2rem;
  color: #ffffff;
}

.feature-box h4 {
  font-size: 0.96rem;
  font-weight: 600;
  color: #2d2d2d !important;
  margin-bottom: 0.75rem;
}

.feature-box p {
  font-size: 0.8rem;
  color: #2d2d2d !important;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .feature-box {
    padding: 1.5rem 1rem;
    min-height: 260px;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
  }

  .feature-icon i {
    font-size: 1.75rem;
  }
}

/* ==================== CONTACT + FEATURE CARDS END ==================== */

/* ==================== TESTIMONIALS (SLIDER) START ==================== */

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease;
}

.testimonial-card {
  min-width: 100%;
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(45, 45, 45, 0.08);
  border: 1px solid rgba(45, 45, 45, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card::before {
  display: none;
}

.testimonial-card p {
  color: #085394;
  font-style: italic;
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.8;
  min-height: 100px;
}

.testimonial-prev,
.testimonial-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #2d2d2d;
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(45, 45, 45, 0.25);
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background: var(--primary-color);
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(83, 140, 56, 0.4);
}

.map-iframe {
  border: 0;
  border-radius: 12px;
}

/* ==================== TESTIMONIALS (SLIDER) END ==================== */


/* ==========================================================================
   FOOTER BASE START
   ========================================================================== */

.footer {
  background: linear-gradient(135deg, #085394 0%, #085394 100%);
  color: #ffffff;
  padding: 4rem 0 0;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--primary-color);
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(83, 140, 56, 0.08) 0%,
      rgba(83, 140, 56, 0.08) 100%);
  opacity: 1;
}

.footer .container {
  position: relative;
  z-index: 2;
}

.footer img[src*="logo"] {
  background: #ffffff;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(45, 45, 45, 0.2);
}

.footer h4 {
  color: #ffffff !important;
  margin-bottom: 1.75rem;
  font-weight: 700;
  font-size: 1.1rem;
  position: relative;
  padding-bottom: 6px;
  text-align: left;
  display: inline-block;
}

.footer h4::after {
  display: none;
}

.footer p {
  color: rgba(255, 255, 255, 0.85) !important;
  line-height: 1.8;
  font-size: 0.95rem;
  opacity: 1;
  font-weight: 400;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8) !important;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  opacity: 1;
  font-weight: 400;
}

.footer-links a i {
  font-size: 1.rem;
  transition: all 0.3s ease;
  color: #ffffff;
  line-height: 1;
  vertical-align: middle;
  width: 22px;
  text-align: center;
  display: inline-block;
}

.footer-links a:hover {
  color: #ffffff !important;
  padding-left: 10px;
  transform: none;
  opacity: 1;
  font-weight: 500;
}

.footer-links a:hover i {
  transform: translateX(4px);
  color: #ffffff;
}

.footer-links li>i {
  margin-right: 0.5rem;
  font-size: 1.25rem;
  color: #ffffff;
  line-height: 1;
  vertical-align: middle;
  width: 22px;
  text-align: center;
  display: inline-block;
}

.contact-info p a {
  transition: all 0.3s ease;
}

.contact-info p a:hover {
  color: #538c38 !important;
  text-decoration: underline !important;
}


/* ==========================================================================
   ISO CERTIFICATES IN FOOTER
   ========================================================================== */

.iso-certificates {
  margin-top: 1.5rem;
  padding-top: 0;
  border-top: none;
}

.iso-certificates img {
  border-radius: 8px;
}

.iso-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
}

.footer-bottom {
  padding: 1.75rem 0;
  margin-top: 3.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.8) !important;
  margin: 0;
  font-size: 0.9rem;
  opacity: 1;
  text-align: center;
  font-weight: 400;
}

.footer-bottom a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--primary-light) !important;
  text-decoration: underline;
}


/* ==========================================================================
   FOOTER RESPONSIVE
   ========================================================================== */

@media (max-width: 768px) {
  .footer {
    padding: 3rem 0 0;
  }

  .footer h4 {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
  }

  .footer p,
  .footer-links a {
    font-size: 0.875rem;
  }

  .footer .col-lg-3 {
    margin-bottom: 2rem;
  }

  .iso-certificates {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
  }

  .footer-bottom {
    padding: 1.25rem 0;
    margin-top: 2rem;
  }

  .footer-bottom p {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .footer {
    padding: 2.5rem 0 0;
  }

  .footer h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .footer p,
  .footer-links a {
    font-size: 0.8rem;
    font-weight: 500;
  }

  .footer .col-lg-3 {
    margin-bottom: 1.5rem;
  }

  .footer-logo {
    max-width: 150px;
  }

  .iso-certificates {
    margin-top: 1rem;
    padding-top: 1rem;
  }

  .iso-title {
    font-size: 0.9rem;
  }

  .footer-bottom {
    padding: 1rem 0;
    margin-top: 1.5rem;
  }

  .footer-bottom p {
    font-size: 0.75rem;
    line-height: 1.6;
  }
}


/* ==========================================================================
   FOOTER BASE END
   ========================================================================== */


/* ==========================================================================
   ANIMATIONS-START
   ========================================================================== */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

::selection {
  background-color: var(--primary-color);
  color: var(--white);
}


/* ==========================================================================
   ANIMATIONS-END
   ========================================================================== */


/* ==========================================================================
   MODALS-START
   ========================================================================== */

.loading {
  opacity: 0.6;
  pointer-events: none;
}

.btn:focus,
.form-control:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.form-control,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="search"],
textarea,
select {
  border: 1.5px solid #2d2d2d !important;
  border-radius: 8px;
}

.modal-content {
  border: none;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2xl);
}

.modal-header {
  background: var(--primary-color);
  color: var(--white);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  border: none;
  padding: 1.5rem 2rem;
  box-shadow: 0 2px 10px rgba(83, 140, 56, 0.15);
}

.modal-body {
  padding: 2rem;
}

.modal-body .form-label {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.modal-body .form-control {
  border: 2px solid #ffffff;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.modal-body .form-control:focus {
  border-color: #085394;
  box-shadow: 0 0 0 4px rgba(83, 140, 56, 0.1);
  outline: none;
}

.btn-close {
  filter: brightness(0) invert(1);
  opacity: 1;
}

.btn-close:hover {
  opacity: 0.8;
}


/* ==========================================================================
   MODALS-END
   ========================================================================== */


/* ==========================================================================
   PAGE-BANNER-START
   ========================================================================== */

.page-banner {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 64px !important;
  margin-bottom: 0;
  padding: 60px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  overflow: hidden;
  isolation: isolate;
}

.page-banner::before,
.page-banner::after {
  display: none;
}

@keyframes bannerPattern {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(40px);
  }
}

.page-banner .container {
  position: relative;
  z-index: 2;
}

.page-banner .text-center {
  text-align: center !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}

.page-title {
  font-size: 50px;
  font-weight: 600;
  color: #ffffff !important;
  margin: 0;
  text-shadow: none;
  letter-spacing: 0;
  line-height: 1.2;
  display: block !important;
}

.page-subtitle {
  font-size: 1rem;
  color: #ffffff !important;
  margin: 0;
  font-weight: 400;
  line-height: 1.6;
  text-shadow: none;
  display: block !important;
}

.page-banner nav[aria-label="breadcrumb"] {
  margin-top: 0.25rem;
}

.breadcrumb {
  background: transparent;
  padding: 0.875rem 1.75rem;
  border-radius: 50px;
  margin: 0;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 20px rgba(45, 45, 45, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  flex-wrap: wrap;
  gap: 0.25rem;
}

.breadcrumb-item {
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  line-height: 1;
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.92) !important;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.breadcrumb-item a:hover {
  color: rgba(255, 255, 255, 0.92) !important;
  transform: translateX(-2px);
  opacity: 0.95;
}

.breadcrumb-item a i {
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.92) !important;
}

.breadcrumb-item.active {
  color: #ffffff;
  font-weight: 600;
  opacity: 0.9;
}

.breadcrumb-item+.breadcrumb-item::before {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.7rem;
  padding: 0 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  vertical-align: middle;
}

.site-modern .page-banner .btn.btn-primary {
  background: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: #ffffff !important;
  box-shadow: 0 6px 14px rgba(8, 83, 148, 0.22);
}

.site-modern .page-banner .btn.btn-primary:hover {
  background: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(83, 140, 56, 0.3);
}

.site-modern .page-banner~.section .btn.btn-primary {
  background: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: #ffffff !important;
  box-shadow: 0 6px 14px rgba(8, 83, 148, 0.22);
}

.site-modern .page-banner~.section .btn.btn-primary:hover {
  background: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(83, 140, 56, 0.3);
}

@media (max-width: 992px) {
  .page-banner {
    margin-top: 64px !important;
    padding: 40px 0;
  }

  .page-title {
    font-size: 34px;
    font-weight: 600;
  }

  .page-subtitle {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .page-banner {
    background-attachment: scroll;
    padding: 10px 0;
    margin-top: 60px !important;
  }

  .page-banner .text-center {
    gap: 0.6rem;
  }

  .page-title {
    font-size: 20px;
    font-weight: 600;
  }

  .page-subtitle {
    font-size: 11px;
    margin-bottom: 0;
  }

  .page-banner .btn {
    padding: 0.65rem 1.5rem;
    font-size: 0.875rem;
  }

  .breadcrumb {
    margin-bottom: 0;
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
    max-width: 90%;
    justify-content: center;
  }

  .breadcrumb-item+.breadcrumb-item::before {
    padding: 0 0.5rem;
  }

  .btn-lg {
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
  }

  .d-flex.gap-3 {
    gap: 1rem !important;
  }
}

@media (max-width: 576px) {
  .page-banner {
    padding: 10px 0;
    margin-top: 56px !important;
  }

  .page-banner .text-center {
    gap: 0.5rem;
  }

  .page-title {
    font-size: 20px;
    font-weight: 600;
  }

  .page-subtitle {
    font-size: 11px;
    margin-bottom: 0;
  }

  .page-banner .btn {
    padding: 0.6rem 1.25rem;
    font-size: 0.8rem;
  }

  .breadcrumb {
    padding: 0.6rem 0.5rem;
    max-width: 100%;
    margin-bottom: 0;
  }

  .breadcrumb-item {
    font-size: 0.8rem;
  }

  .breadcrumb-item+.breadcrumb-item::before {
    padding: 0 0.4rem;
    font-size: 0.65rem;
  }

  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .d-flex.gap-3 {
    gap: 0.75rem !important;
    flex-direction: column;
  }

  .d-flex.gap-3 .btn {
    width: 100%;
  }
}


/* ==========================================================================
   PAGE-BANNER-END
   ========================================================================== */


/* ==========================================================================
   DROPDOWNS-START
   ========================================================================== */


.subdropdown {
  display: none;
  flex-direction: column;
  padding-left: 1rem;
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
  border-left: 2px solid #ffffff;
  animation: slideDown 0.3s ease;
}

.subdropdown.active {
  display: flex;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

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

.subdropdown a {
  padding: 0.5rem 0.75rem;
  font-size: 0.8rem;
  color: #085394;
  transition: all 0.2s ease;
}

.subdropdown a i {
  font-size: 0.4rem;
  color: #085394;
  transition: all 0.2s ease;
}

.subdropdown a:hover {
  color: var(--secondary-color);
  background: transparent;
  padding-left: 1rem;
  box-shadow: 0 2px 8px rgba(83, 140, 56, 0.15);
}

.subdropdown a:hover i {
  color: var(--secondary-color);
}

.mobile-subdropdown {
  position: relative;
}

.mobile-subdropdown-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 0.5rem 1rem 0.5rem 1.75rem;
  color: #085394;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.2s ease;
  font-weight: 500;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-primary);
}

.mobile-subdropdown-toggle:hover {
  background: rgba(83, 140, 56, 0.06);
  color: var(--secondary-color);
}

.mobile-subdropdown-toggle i {
  transition: transform 0.3s ease;
  font-size: 0.75rem;
}

.mobile-subdropdown.active .mobile-subdropdown-toggle {
  background: rgba(83, 140, 56, 0.08);
  color: var(--primary-color);
}

.mobile-subdropdown.active .mobile-subdropdown-toggle i {
  transform: rotate(180deg);
}

.mobile-subdropdown-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #ffffff;
}

.mobile-subdropdown.active .mobile-subdropdown-menu {
  max-height: 800px;
}

.mobile-subdropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem 0.45rem 2.5rem;
  color: #085394;
  text-decoration: none;
  font-size: 0.8rem;
  transition: all 0.2s ease;
  background: transparent;
}

.mobile-subdropdown-menu li a i {
  font-size: 0.625rem;
  color: var(--primary-color);
  opacity: 0.7;
}

.mobile-subdropdown-menu li a:hover {
  background: #ffffff;
  color: var(--secondary-color);
}

.mobile-subdropdown-menu li a:hover i {
  color: var(--secondary-color);
  opacity: 1;
}


/* ==========================================================================
   DROPDOWNS-END
   ========================================================================== */


/* ==========================================================================
   FIXED-BUTTONS-START
   ========================================================================== */


.scroll-to-top {
  display: none !important;
}


/* ==========================================================================
   FIXED-BUTTONS-END
   ========================================================================== */


/* ==========================================================================
   CONTENT SECTIONS START
   ========================================================================== */

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

.footer a img.footer-logo {
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.footer a:hover img.footer-logo {
  transform: scale(1.05);
  opacity: 0.9;
}


/* ==========================================================================
   ABOUT
   ========================================================================== */


.about-modern {
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 20px;
  padding: 2.25rem;
  box-shadow: 0 12px 30px rgba(8, 83, 148, 0.06);
}

.about-modern-head {
  max-width: 860px;
  margin: 0 auto 2rem;
  text-align: center;
}

.about-eyebrow {
  display: inline-block;
  margin-bottom: 0.9rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid #ffffff;
  border-radius: 999px;
  background: #ffffff;
  color: #2d2d2d;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.about-modern-head h2 {
  color: #2d2d2d;
  font-size: clamp(1.65rem, 2.7vw, 2.35rem);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.about-modern-head p {
  color: #085394;
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.02rem;
  line-height: 1.7;
}

.about-media-card,
.about-content-card {
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 18px;
  height: 100%;
}

.about-media-card {
  overflow: hidden;
}

.about-main-image {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.about-content-card {
  padding: 1.7rem;
}

.about-watermark-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.about-watermark-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/logo/gloseals_logo.webp");
  background-repeat: no-repeat;
  background-position: center 55%;
  background-size: min(88%, 470px);
  opacity: 0.16;
  pointer-events: none;
  z-index: 0;
}

.about-watermark-card>* {
  position: relative;
  z-index: 1;
}

.about-content-card h3 {
  color: var(--heading-gray);
  margin-bottom: 0.85rem;
  font-size: 1.4rem;
}

.about-content-card p {
  color: #2d2d2d;
  line-height: 1.8;
  margin-bottom: 0.95rem;
}

.about-feature-list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  list-style: disc;
}

.about-feature-list li {
  padding-left: 0;
  margin-bottom: 0.65rem;
  color: #2d2d2d;
  line-height: 1.6;
}

.about-feature-list li::marker {
  color: #2d2d2d;
}

.about-metrics-grid {
  margin-top: 1.45rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

.about-metric-card {
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 14px;
  padding: 1.1rem 0.8rem;
  text-align: center;
}

.about-metric-card h4 {
  font-size: 1.6rem;
  margin-bottom: 0.35rem;
  color: var(--heading-gray);
  font-weight: 500;
  letter-spacing: 0.012em;
  text-shadow: 0 1px 0 rgba(45, 45, 45, 0.12);
}

.about-metric-card p {
  margin: 0;
  color: var(--heading-gray) !important;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.008em;
}

.about-metric-card:first-child p {
  font-weight: 700 !important;
  font-size: 1.35rem;
  letter-spacing: 0.015em;
  color: var(--heading-gray) !important;
}


/* ==========================================================================
   ABOUT END
   ========================================================================== */


/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */

.why-modern {
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 20px;
  padding: 2.15rem;
  box-shadow: 0 10px 28px rgba(8, 83, 148, 0.05);
}

.why-modern-head {
  max-width: 860px;
  text-align: center;
  margin: 0 auto 1.8rem;
}

.why-eyebrow {
  display: inline-block;
  margin-bottom: 0.9rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid #ffffff;
  border-radius: 999px;
  background: #ffffff;
  color: #2d2d2d;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.why-modern-head h2 {
  color: #2d2d2d;
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
  line-height: 1.22;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.why-modern-head p {
  color: #085394;
  margin: 0 auto;
  max-width: 760px;
  font-size: 1rem;
  line-height: 1.7;
}

.why-feature-card {
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 16px;
  padding: 1.45rem 1.1rem;
  text-align: center;
  height: 100%;
}

.why-feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 14px;
  background: #085394;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-feature-icon i {
  color: #ffffff;
  font-size: 1.3rem;
}

.why-feature-card h4 {
  color: var(--heading-gray);
  font-size: 0.93rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.why-feature-card p {
  color: #085394;
  font-size: 0.8rem;
  line-height: 1.6;
  margin: 0;
}


/* ==========================================================================
   WHY CHOOSE US END
   ========================================================================== */


/* ==================== PRODUCTS (SECTION WRAPPER) ==================== */
.products-modern {
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 20px;
  padding: 2.15rem;
  box-shadow: 0 10px 28px rgba(8, 83, 148, 0.05);
}

/* ==================== PRODUCTS (SECTION WRAPPER) END ==================== */

/* ==================== SECTION WRAPPERS (SITE MODERN) ==================== */
.about-modern,
.why-modern,
.products-modern,
.blog-modern,
.testimonial-modern,
.contact-modern,
.careers-modern,
.careers-openings-modern,
.blog-detail-content,
.base-model-modern,
.customization-modern {
  background: linear-gradient(135deg, rgb(41 81 180 / 32%) 0%, rgb(50 178 38 / 33%) 100%) !important;
  box-shadow: 0 3px 12px rgba(8, 83, 148, 0.05) !important;
  border-radius: 24px;
  padding: 4rem 2rem;
  margin: 2rem auto;
  max-width: 1320px;
}

/* ==================== CUSTOMIZATION (START) ==================== */
.customization-modern {
  padding: 3rem 4rem;
  text-align: center;
}

.customization-modern .why-modern-head {
  margin-bottom: 3.5rem;
}

.custom-card {
  background: transparent !important;
  padding: 0;
  border: none !important;
  box-shadow: none !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.custom-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #2d2d2d;
}

.custom-card p {
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  max-width: 500px;
}

.custom-swatches {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.customization-modern .swatch {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.custom-image-container {
  margin-top: 2rem;
  width: 100%;
  display: flex;
  justify-content: center;
  background: transparent;
  position: relative;
}

.custom-image-container img {
  border-radius: 12px;
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: scale-down;
  display: block;
}

.custom-image-container .logo-image {
  max-width: 410px;
}

/* ==================== MAP INFO BOX (START) ==================== */
.map-container {
  position: relative;
  overflow: hidden;
}

.map-info-box {
  position: absolute;
  top: 43px;
  left: 7px;
  background: white;
  border-radius: 2px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  padding: 12px 15px;
  max-width: 280px;
  z-index: 10;
  pointer-events: auto;
}

.map-info-box .info-header {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.map-info-box .info-header i {
  color: #085394;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.map-info-box .info-header div p {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
}

.map-info-box .info-header div p:first-child {
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 4px;
}

.map-info-box .info-header div p:last-child {
  font-size: 12px;
  color: #666;
}

.map-info-box .info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 12px;
}

.map-info-box .info-item:last-child {
  margin-bottom: 0;
}

.map-info-box .info-item i {
  color: #085394;
  font-size: 14px;
  width: 16px;
  text-align: center;
}

.map-info-box .info-item a {
  color: #085394;
  text-decoration: none;
  font-size: 12px;
  transition: color 0.2s ease;
}

.map-info-box .info-item a:hover {
  color: #053d6b;
}

/* ==================== MAP INFO BOX (END) ==================== */

/* ==================== CUSTOMIZATION (END) ==================== */


/* ==========================================================================
   REFINED-BASE-MODEL-START
   ========================================================================== */

.diagram-container {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  min-width: 0;
}

.callout-wrapper {
  display: grid;
  grid-template-columns: 300px 1fr 300px;
  gap: 2rem;
  align-items: center;
  min-width: 0;
}

.callout-column {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  min-width: 0;
}

.callout-item {
  position: relative;
  min-width: 0;
}

.callout-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
  position: relative;
}

.callout-item h4::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--secondary-color);
}

.callout-item p {
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
  color: #555 !important;
}

.callout-image-center {
  text-align: center;
  min-width: 0;
}

.callout-image-center img {
  max-width: 100%;
  height: auto;
}

.base-model-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
}

.text-xs-important {
  font-size: 0.75rem !important;
}

/* Leader Lines Desktop Only - Re-engineered for 1:1 precision */
@media (min-width: 1101px) {
  .callout-item[class*="leader-line-"] h4 {
    position: relative;
    display: inline-block;
    width: auto;
    margin-bottom: 1rem !important;
  }

  .callout-item[class*="leader-line-"] h4::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background: transparent;
  }

  .callout-item[class*="leader-line-"]::after {
    content: "";
    position: absolute;
    background: transparent;
    z-index: 10;
    height: 1px;
    display: none;
  }

  .callout-item[class*="leader-line-"]::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    background: transparent;
    z-index: 11;
    display: none;
  }

  

/* ==========================================================================
   LEFT COLUMN LINES - HIDDEN
   ========================================================================== */

  .leader-line-1::after {
    display: none;
  }

  .leader-line-1::before {
    display: none;
  }

  .leader-line-2::after {
    display: none;
  }

  .leader-line-2::before {
    display: none;
  }

  .leader-line-3::after {
    display: none;
  }

  .leader-line-3::before {
    display: none;
  }

  

/* ==========================================================================
   RIGHT COLUMN LINES - HIDDEN
   ========================================================================== */

  .leader-line-4::after {
    display: none;
  }

  .leader-line-4::before {
    display: none;
  }

  .leader-line-5::after {
    display: none;
  }

  .leader-line-5::before {
    display: none;
  }
}


/* ==========================================================================
   LEGEND TABLE REFINEMENT
   ========================================================================== */

@media (max-width: 1100px) {
  .callout-wrapper {
    grid-template-columns: 1fr;
  }

  .callout-column {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .callout-item {
    width: calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .callout-item {
    width: 100%;
  }

  .base-model-modern {
    padding: 1.5rem;
  }
}


/* ==========================================================================
   BLOG SIDEBAR OVERRIDE
   ========================================================================== */

.blog-sidebar,
.blog-sidebar-sticky {
  position: static !important;
  top: auto !important;
}

/* ==================== PRODUCTS (GRID/CARDS) START ==================== */
.products-modern-head {
  max-width: 860px;
  text-align: center;
  margin: 0 auto 1.8rem;
}

.products-eyebrow {
  display: inline-block;
  margin-bottom: 0.9rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid #ffffff;
  border-radius: 999px;
  background: #ffffff;
  color: #2d2d2d;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.products-modern-head h2 {
  color: #2d2d2d;
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
  line-height: 1.22;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.products-modern-head p {
  color: #085394;
  margin: 0 auto;
  max-width: 760px;
  font-size: 1rem;
  line-height: 1.7;
}

.product-clean-card {
  background: #2d2d2d;
  border: 0;
  border-radius: 28px;
  overflow: hidden;
  height: 100%;
  min-height: 360px;
  position: relative;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.18);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease
}

.product-clean-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(15, 23, 42, 0.08) 35%,
      rgba(15, 23, 42, 0.78) 100%);
  z-index: 1;
}

.product-clean-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  /* object-fit: cover !important; */
  display: block;
  background: none;
  padding: 0 !important;
  margin: 0 !important;
  transition: transform 0.45s ease;
  z-index: 0;
}

.product-clean-body {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.15rem;
  z-index: 2;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.product-clean-body h3 {
  color: #ffffff !important;
  font-size: 1.42rem;
  margin-bottom: 0.4rem;
  font-weight: 800;
  line-height: 1.25;
  text-shadow: 0 2px 10px rgba(15, 23, 42, 0.55);
}

.product-clean-body p {
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: 0.8rem;
  line-height: 1.45;
  margin-bottom: 0.7rem;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-clean-link {
  color: #ffffff !important;
  font-weight: 800;
  font-size: 0.88rem;
  text-decoration: none;
  margin-top: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #085394;
  border: 1px solid #085394;
  border-radius: 999px;
  padding: 0.42rem 0.9rem;
  width: fit-content;
  box-shadow: 0 6px 14px rgba(8, 83, 148, 0.25);
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    gap 0.25s ease;
}

.product-clean-link i {
  font-size: 0.82rem;
  transition: transform 0.25s ease;
}

.product-clean-link:hover {
  color: #ffffff !important;
  background: #085394;
  border-color: #085394;
  gap: 0.6rem;
}

.product-clean-card .product-clean-link {
  color: #ffffff !important;
  background: #085394;
  border-color: #085394;
  box-shadow: 0 6px 14px rgba(8, 83, 148, 0.25);
}

.product-clean-card .product-clean-link:hover {
  color: #ffffff !important;
  background: #085394;
  border-color: #085394;
}

.product-clean-link:hover i {
  transform: translateX(3px);
}

.product-clean-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.24);
}

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

/* ==================== PRODUCTS (GRID/CARDS) END ==================== */


/* ==========================================================================
   BLOG SECTION START
   ========================================================================== */

.blog-modern {
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 20px;
  padding: 2.15rem;
  box-shadow: 0 10px 28px rgba(8, 83, 148, 0.05);
  position: relative;
  z-index: 1;
}

.blog-modern-head {
  max-width: 860px;
  text-align: center;
  margin: 0 auto 1.8rem;
}

.blog-modern-eyebrow {
  display: inline-block;
  margin-bottom: 0.9rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid #ffffff;
  border-radius: 999px;
  background: #ffffff;
  color: #2d2d2d;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.blog-modern-head h2 {
  color: #2d2d2d;
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
  line-height: 1.22;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.blog-modern-head p {
  color: #085394;
  margin: 0 auto;
  max-width: 760px;
  font-size: 1rem;
  line-height: 1.7;
}

.blog-clean-card {
  background: #2d2d2d;
  border: 0;
  border-radius: 28px;
  overflow: hidden;
  height: 100%;
  min-height: 360px;
  position: relative;
  display: block;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.18);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.blog-clean-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(15, 23, 42, 0.08) 35%,
      rgba(15, 23, 42, 0.78) 100%);
  z-index: 1;
}

.blog-clean-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block;
  background: none;
  padding: 0 !important;
  margin: 0 !important;
  transition: transform 0.45s ease;
  z-index: 0;
}

.blog-clean-body {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.15rem;
  z-index: 2;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.blog-clean-tag {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.blog-clean-body h4 {
  color: #ffffff !important;
  font-size: 1.42rem;
  margin-bottom: 0.45rem;
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(15, 23, 42, 0.55);
}

.blog-clean-body p {
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: 0.8rem;
  line-height: 1.45;
  margin-bottom: 0.7rem;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-clean-link {
  color: #ffffff !important;
  font-weight: 800;
  font-size: 0.88rem;
  text-decoration: none;
  margin-top: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #085394;
  border: 1px solid #085394;
  border-radius: 999px;
  padding: 0.42rem 0.9rem;
  width: fit-content;
  box-shadow: 0 6px 14px rgba(8, 83, 148, 0.25);
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    gap 0.25s ease;
}

.blog-clean-link i {
  font-size: 0.82rem;
  transition: transform 0.25s ease;
}

.blog-clean-link:hover {
  color: #ffffff !important;
  background: #085394;
  border-color: #085394;
  gap: 0.6rem;
}

.blog-clean-card .blog-clean-link {
  color: #ffffff !important;
  background: #085394;
  border-color: #085394;
  box-shadow: 0 6px 14px rgba(8, 83, 148, 0.25);
}

.blog-clean-card .blog-clean-link:hover {
  color: #ffffff !important;
  background: #085394;
  border-color: #085394;
}

.blog-clean-link:hover i {
  transform: translateX(3px);
}

.blog-clean-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.24);
}

.blog-clean-card:hover img {
  transform: scale(1.06);
}

.blog-detail .related-posts .blog-clean-card {
  background: #ffffff;
  border: 1px solid rgba(45, 45, 45, 0.08);
  box-shadow: 0 12px 30px rgba(45, 45, 45, 0.12);
}

.blog-detail .related-posts .blog-clean-card::after {
  background: rgba(255, 255, 255, 0.6);
}

.blog-detail .related-posts .blog-clean-body h4 {
  color: #2d2d2d !important;
  text-shadow: none !important;
}

.blog-detail .related-posts .blog-clean-body p {
  color: rgba(45, 45, 45, 0.85) !important;
}


/* ==========================================================================
   BLOG SECTION END
   ========================================================================== */


/* ==========================================================================
   SHARED MEDIA CARD STYLES
   ========================================================================== */

.about-media-card,
.blog-featured-image {
  border-radius: 28px !important;
  overflow: hidden;
  border: 0 !important;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.18) !important;
  position: relative;
  background: #2d2d2d;
}

.about-media-card::after,
.blog-featured-image::after {
  display: none !important;
}

.about-main-image,
.blog-featured-image img {
  width: 100%;
  height: 100%;
  /* object-fit: cover !important; */
  transition: transform 0.45s ease;
}

.about-main-image,
.blog-featured-image {
  min-height: 420px;
}

.blog-featured-image {
  max-height: none;
  padding: 0;
  display: block;
}

.blog-featured-image img {
  max-height: none;
}

.about-media-card:hover .about-main-image,
.blog-detail-content:hover .blog-featured-image img {
  transform: scale(1.06);
}

.recent-post-item img {
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.16);
}

.about-metric-card,
.why-feature-card,
.testimonial-clean-card,
.contact-panel-modern,
.contact-item,
.feature-box,
.job-card {
  border-radius: 20px;
  border: 1px solid #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.07);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.about-metric-card:hover,
.why-feature-card:hover,
.testimonial-clean-card:hover,
.contact-panel-modern:hover,
.contact-item:hover,
.feature-box:hover,
.job-card:hover {
  transform: translateY(-4px);
  border-color: #ffffff;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.1);
}


/* ==========================================================================
   TESTIMONIALS SECTION START
   ========================================================================== */

.testimonial-modern {
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 20px;
  padding: 2.15rem;
  box-shadow: 0 10px 28px rgba(8, 83, 148, 0.05);
}

.testimonial-modern-head {
  max-width: 860px;
  text-align: center;
  margin: 0 auto 1.8rem;
}

.testimonial-modern-eyebrow {
  display: inline-block;
  margin-bottom: 0.9rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid #ffffff;
  border-radius: 999px;
  background: #ffffff;
  color: #2d2d2d;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.testimonial-modern-head h2 {
  color: #2d2d2d;
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
  line-height: 1.22;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.testimonial-modern-head p {
  color: #085394;
  margin: 0 auto;
  max-width: 760px;
  font-size: 1rem;
  line-height: 1.7;
}

.testimonial-clean-card {
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 16px;
  padding: 1.2rem 1.1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.testimonial-clean-card p {
  color: #085394;
  font-size: 0.82rem;
  line-height: 1.65;
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-clean-author {
  margin-top: auto;
  border-top: 1px solid #ffffff;
  padding-top: 0.75rem;
}

.testimonial-clean-author h6 {
  margin: 0 0 0.2rem;
  color: var(--heading-gray);
  font-size: 0.85rem;
  font-weight: 700;
}

.testimonial-clean-author small {
  color: #085394;
  font-size: 0.82rem;
}

.contact-modern {
  background: linear-gradient(135deg,
      rgba(8, 83, 148, 0.08) 0%,
      rgba(83, 140, 56, 0.08) 100%);
  border: 1px solid rgba(8, 83, 148, 0.16);
  border-radius: 20px;
  padding: 2.15rem;
  box-shadow: 0 12px 30px rgba(8, 83, 148, 0.12);
}

.contact-modern-head {
  max-width: 860px;
  text-align: center;
  margin: 0 auto 1.8rem;
}

.contact-modern-eyebrow {
  display: inline-block;
  margin-bottom: 0.9rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid #ffffff;
  border-radius: 999px;
  background: #ffffff;
  color: #2d2d2d;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.contact-modern-head h2 {
  color: #2d2d2d;
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
  line-height: 1.22;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.contact-modern-head p {
  color: #085394;
  margin: 0 auto;
  max-width: 760px;
  font-size: 1rem;
  line-height: 1.7;
}


/* ==========================================================================
   SHARED SECTION HEADING SCALE
   ========================================================================== */

.page-title,
.about-modern-head h2,
.why-modern-head h2,
.products-modern-head h2,
.blog-modern-head h2,
.testimonial-modern-head h2,
.contact-modern-head h2 {
  font-size: clamp(1.75rem, 2.7vw, 2.35rem) !important;
  line-height: 1.2;
}


/* ==========================================================================
   TESTIMONIALS SECTION END
   ========================================================================== */


/* ==========================================================================
   CONTACT SECTION START
   ========================================================================== */

.contact-form-modern {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(8, 83, 148, 0.14);
  box-shadow: 0 10px 22px rgba(8, 83, 148, 0.08);
}

.contact-form-modern .btn.btn-primary {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  background: linear-gradient(135deg,
      var(--primary-light) 0%,
      var(--primary-dark) 100%);
  border: 1px solid var(--primary-dark);
  border-radius: 999px;
  padding: 0.62rem 1.15rem;
  box-shadow: 0 6px 14px rgba(8, 83, 148, 0.22);
  transition: all 0.25s ease;
}

.contact-form-modern .btn.btn-primary:hover {
  color: #ffffff;
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(83, 140, 56, 0.3);
}

.contact-form-modern .btn.btn-primary i {
  margin-right: 0.35rem;
}

.contact-panel-modern {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(8, 83, 148, 0.14);
  border-radius: 16px;
  padding: 1.4rem;
  height: 100%;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-panel-modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 26px rgba(8, 83, 148, 0.08);
}

.contact-panel-modern h3 {
  color: var(--heading-gray);
  font-size: 1.08rem;
  margin-bottom: 1rem;
}

.contact-list-modern p {
  color: #085394;
  font-size: 0.82rem;
  line-height: 1.55;
  margin-bottom: 0.8rem;
  display: flex;
  gap: 0.6rem;
}

.contact-list-modern p>a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  line-height: 1.55;
  text-align: center;
}

.contact-list-modern p i,
.contact-list-modern p>a i {
  flex: 0 0 1.1rem;
  width: 1.1rem;
  line-height: 1.3;
  text-align: center;
  margin-top: 0.1rem;
}

.contact-list-modern i {
  color: var(--primary-light);
  font-size: 1rem;
}

.contact-panel-modern .contact-link {
  color: #085394;
  text-decoration: none;
  font-weight: 500;
}

.contact-panel-modern .contact-link:hover {
  color: var(--primary-light);
}

.contact-panel-modern .contact-list-modern i {
  color: #085394;
}

.contact-panel-modern .contact-details p a.contact-link,
.contact-panel-modern .contact-details p .contact-link {
  color: #085394;
}

.contact-panel-modern .contact-details p a.contact-link:hover,
.contact-panel-modern .contact-details p .contact-link:hover {
  color: #085394;
}

.contact-panel-modern .contact-item .contact-details p {
  color: #5f728a !important;
  display: block;
}

.contact-panel-modern .contact-item {
  background: #ffffff;
  border: 1px solid rgba(8, 83, 148, 0.12);
  box-shadow: 0 4px 12px rgba(8, 83, 148, 0.06);
}

.contact-panel-modern .contact-item:hover {
  background: #ffffff;
  border-color: rgba(8, 83, 148, 0.22);
  box-shadow: 0 10px 22px rgba(8, 83, 148, 0.14);
}

.contact-panel-modern .contact-icon {
  background: rgba(8, 83, 148, 0.08);
  box-shadow: 0 2px 8px rgba(8, 83, 148, 0.12);
}

.contact-panel-modern .contact-icon i {
  color: #085394;
}

.section#contact .contact-panel-modern h3 {
  color: var(--heading-gray) !important;
}

.section#contact .contact-list-modern i {
  color: var(--heading-gray) !important;
}

.section#contact .contact-panel-modern .contact-link {
  color: var(--heading-gray) !important;
}

.section#contact .contact-panel-modern .contact-link:hover {
  color: var(--heading-gray) !important;
}

.section#contact .btn.btn-primary {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(8, 83, 148, 0.25);
}

.section#contact .btn.btn-primary:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(83, 140, 56, 0.35);
}

.site-modern .page-banner~.section .contact-modern .contact-form-modern .btn.btn-primary {
  background: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(8, 83, 148, 0.25);
}

.site-modern .page-banner~.section .contact-modern .contact-form-modern .btn.btn-primary:hover {
  background: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(83, 140, 56, 0.35);
}

.contact-info.contact-panel-modern h3,
.contact-info.contact-panel-modern h5 {
  color: var(--heading-gray) !important;
}

.contact-info.contact-panel-modern .contact-icon i {
  color: var(--heading-gray) !important;
}

.contact-info.contact-panel-modern .contact-details p,
.contact-info.contact-panel-modern .contact-details .contact-link {
  color: var(--heading-gray) !important;
}

@media (max-width: 768px) {

  .page-title,
  .about-modern-head h2,
  .why-modern-head h2,
  .products-modern-head h2,
  .blog-modern-head h2,
  .testimonial-modern-head h2,
  .contact-modern-head h2 {
    font-size: 1.65rem !important;
  }
}

@media (max-width: 576px) {

  .page-title,
  .about-modern-head h2,
  .why-modern-head h2,
  .products-modern-head h2,
  .blog-modern-head h2,
  .testimonial-modern-head h2,
  .contact-modern-head h2 {
    font-size: 1.45rem !important;
  }
}


/* ==========================================================================
   CONTACT SECTION END
   ========================================================================== */


/* ==========================================================================
   FOOTER SECTION START
   ========================================================================== */

.footer.footer-modern {
  position: relative;
  background: var(--primary-color);
  border-top: 0;
  padding: 3rem 0 0;
}

.custom-shape-divider-top-1774526786 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-top-1774526786 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 81px;
}

.custom-shape-divider-top-1774526786 .shape-fill {
  fill: #FFFFFF;
}

.footer.footer-modern::before {
  background: linear-gradient(160deg,
      rgba(255, 255, 255, 0.06) 0%,
      rgba(255, 255, 255, 0.02) 55%,
      rgba(255, 255, 255, 0.04) 100%);
}

.footer.footer-modern .footer-modern-top {
  padding-bottom: 0rem;
  align-items: flex-start;
}

.footer.footer-modern .footer-modern-top>[class*="col-"] {
  text-align: left;
  padding-top: 3rem;
}

.footer.footer-modern .footer-brand-link {
  display: inline-block;
  margin-bottom: 0.9rem;
  cursor: pointer;
}

.footer.footer-modern .footer-logo {
  max-height: 62px;
  background: #ffffff;
  border-radius: 10px;
  padding: 0.45rem 0.9rem;
}

.footer.footer-modern h4 {
  font-size: 1.02rem;
  margin-bottom: 0.95rem;
  color: rgba(255, 255, 255, 0.95) !important;
  padding: 0;
  display: block;
  text-align: left;
}

.footer.footer-modern h4::after {
  display: none;
}

.footer.footer-modern p {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 0.92rem;
  line-height: 1.65;
  text-align: left;
}

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

.footer.footer-modern .footer-links li {
  color: rgba(255, 255, 255, 0.9) !important;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer.footer-modern .footer-links a {
  color: rgba(255, 255, 255, 0.9) !important;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer.footer-modern .footer-links a:hover {
  color: #ffffff !important;
}


.footer.footer-modern .footer-modern-top> :nth-child(4) .footer-links a i {
  color: #ffffff;
  width: 22px;
  text-align: center;
  font-size: 1.rem;
  flex: 0 0 22px;
  line-height: 1.3;
  margin-top: 0.1rem;
}

.footer.footer-modern .footer-modern-top> :nth-child(4) .footer-links li i {
  color: #ffffff;
  width: 22px;
  text-align: center;
  font-size: 1.1rem;
  flex: 0 0 22px;
  line-height: 1.3;
  margin-right: 0;
  margin-top: 0.1rem;
}

.footer.footer-modern .footer-modern-top> :nth-child(4) .footer-links li,
.footer.footer-modern .footer-modern-top> :nth-child(4) .footer-links a {
  align-items: flex-start;
  gap: 0.6rem;
}

.footer.footer-modern .footer-social-modern {
  display: flex;
  gap: 0.55rem;
  margin-top: 1rem;
  justify-content: flex-start;
}

.footer.footer-modern .footer-social-modern a {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.25rem;
  background: rgba(255, 255, 255, 0.1);
}

.footer.footer-modern .footer-social-modern a:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
}

.footer.footer-modern .footer-iso-modern .iso-title {
  color: rgba(255, 255, 255, 0.9) !important;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer.footer-modern .footer-iso-modern img {
  background: #ffffff;
  border-radius: 14px;
  padding: 0.3rem;
  width: 64px;
  height: 64px;
  object-fit: contain;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.footer.footer-modern .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding: 1rem 0 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer.footer-modern .footer-bottom p {
  margin: 0;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.92) !important;
}

.footer.footer-modern .footer-bottom a {
  color: #ffffff !important;
}

.footer.footer-modern .footer-bottom a:hover {
  color: #ffffff;
  opacity: 1;
}


/* ==========================================================================
   FOOTER SECTION END
   ========================================================================== */


/* ==========================================================================
   SITE-MODERN OVERRIDES
   ========================================================================== */

.site-modern .section {
  position: relative;
}

.site-modern .page-banner {
  min-height: clamp(240px, 30vw, 390px);
}

.site-modern .page-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.site-modern .page-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.site-modern .breadcrumb-item,
.site-modern .breadcrumb-item a,
.site-modern .breadcrumb-item.active {
  font-size: 0.88rem;
}

.site-modern .breadcrumb-item a:hover {
  color: rgba(255, 255, 255, 0.92) !important;
}

.site-modern .breadcrumb-item a:hover i {
  color: rgba(255, 255, 255, 0.92) !important;
}

.site-modern .feature-box,
.site-modern .sidebar-widget,
.site-modern .contact-form,
.site-modern .contact-info {
  border-radius: 16px;
  border: 1px solid #ffffff;
  box-shadow: 0 10px 24px rgba(8, 83, 148, 0.06);
  background: #ffffff;
}

.site-modern .feature-box,
.site-modern .sidebar-widget {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.site-modern .feature-box:hover,
.site-modern .sidebar-widget:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(8, 83, 148, 0.1);
  border-color: #085394;
}


.site-modern .contact-item,
.site-modern .job-card {
  border-radius: 16px;
  border: 1px solid #ffffff;
  box-shadow: 0 8px 22px rgba(8, 83, 148, 0.06);
  background: #ffffff;
}

.site-modern .btn.btn-primary,
.site-modern .btn.btn-outline,
.site-modern .btn.btn-secondary {
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.86rem;
  padding: 0.55rem 1rem;
  transition: all 0.25s ease;
}

.site-modern .btn.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg,
      var(--primary-light) 0%,
      var(--primary-dark) 100%);
  border: 1px solid var(--primary-dark);
  box-shadow: 0 6px 14px rgba(8, 83, 148, 0.22);
}

.site-modern .btn.btn-primary:hover {
  color: #ffffff;
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(83, 140, 56, 0.3);
}

.site-modern .btn.btn-outline,
.site-modern .btn.btn-secondary {
  color: var(--primary-light);
  background: #ffffff;
  border: 1px solid #085394;
}

.site-modern .btn.btn-outline:hover,
.site-modern .btn.btn-secondary:hover {
  color: #ffffff;
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}

@media (max-width: 768px) {

  /* ==================== PAGE BANNER (SITE MODERN) ==================== */
  .site-modern .page-banner {
    min-height: 220px;
  }

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

  .site-modern .breadcrumb {
    max-width: 100%;
    margin-bottom: 0;
  }

  .site-modern .breadcrumb-item {
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 576px) {

  /* ==================== PAGE BANNER (SITE MODERN) ==================== */
  .site-modern .page-banner {
    min-height: 190px;
  }
}

@media (max-width: 992px) {

  

/* ==========================================================================
   PRODUCTS
   ========================================================================== */

  .products-modern {
    padding: 1.5rem;
  }

  .blog-modern {
    padding: 1.5rem;
  }

  .testimonial-modern {
    padding: 1.5rem;
  }

  .contact-modern {
    padding: 1.5rem;
  }

  .footer.footer-modern .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .products-modern {
    padding: 1.1rem;
    border-radius: 14px;
  }

  .products-modern-head h2 {
    font-size: 1.35rem;
  }

  .products-modern-head p {
    font-size: 0.95rem;
  }

  .product-clean-card {
    min-height: 300px;
    border-radius: 22px;
  }

  .product-clean-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .product-clean-body {
    left: 0.95rem;
    right: 0.95rem;
    bottom: 0.9rem;
  }

  .product-clean-body h3 {
    font-size: 1.25rem;
  }

  .product-clean-body p {
    font-size: 0.88rem;
  }

  .blog-modern {
    padding: 1.1rem;
    border-radius: 14px;
  }

  .blog-modern-head h2 {
    font-size: 1.35rem;
  }

  .blog-modern-head p {
    font-size: 0.95rem;
  }

  .blog-clean-card {
    min-height: 300px;
    border-radius: 22px;
  }

  .blog-clean-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .blog-clean-body {
    left: 0.95rem;
    right: 0.95rem;
    bottom: 0.9rem;
  }

  .blog-clean-body h4 {
    font-size: 1.25rem;
  }

  .blog-clean-body p,
  .blog-clean-tag {
    font-size: 0.88rem;
  }

  .testimonial-modern {
    padding: 1.1rem;
    border-radius: 14px;
  }

  .testimonial-modern-head h2 {
    font-size: 1.35rem;
  }

  .testimonial-modern-head p {
    font-size: 0.95rem;
  }

  .contact-modern {
    padding: 1.1rem;
    border-radius: 14px;
  }

  .contact-modern-head h2 {
    font-size: 1.35rem;
  }

  .contact-modern-head p {
    font-size: 0.95rem;
  }

  .contact-panel-modern {
    padding: 1rem;
  }

  .contact-list-modern p {
    text-align: center;
  }

  .footer.footer-modern {
    padding-top: 2.2rem;
  }

  .footer.footer-modern .footer-logo {
    max-height: 56px;
  }

  .footer.footer-modern .footer-modern-top {
    padding-bottom: -0.6rem;
  }
}

@media (max-width: 992px) {
  .why-modern {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .why-modern {
    padding: 1.1rem;
    border-radius: 14px;
  }

  .why-modern-head h2 {
    font-size: 1.35rem;
  }

  .why-modern-head p {
    font-size: 0.95rem;
  }
}

@media (max-width: 992px) {
  .about-modern {
    padding: 1.6rem;
  }

  .about-main-image {
    min-height: 300px;
  }

  .about-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .about-modern {
    padding: 1.15rem;
    border-radius: 14px;
  }

  .about-content-card {
    padding: 1.2rem;
  }

  .about-watermark-card::before {
    background-size: 92%;
    background-position: center 52%;
    opacity: 0.14;
  }

  .about-modern-head h2 {
    font-size: 1.4rem;
  }

  .about-modern-head p {
    font-size: 0.95rem;
  }

  .about-main-image {
    min-height: 240px;
  }

  .about-metrics-grid {
    gap: 0.6rem;
  }

  .about-metric-card {
    padding: 0.85rem 0.55rem;
    border-radius: 12px;
  }

  .about-metric-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.15rem;
    font-weight: 600;
  }

  .about-metric-card p {
    font-size: 0.9rem;
    line-height: 1.35;
    font-weight: 800;
  }

  .about-metric-card:first-child p {
    font-size: 0.9rem;
    font-weight: 800 !important;
  }
}

/* ==================== CAREERS SECTION (CARD WRAPPER) ==================== */
.careers-modern,
.careers-openings-modern {
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
  border: 1px solid #ffffff;
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 10px 28px rgba(8, 83, 148, 0.06);
}

.careers-openings-modern {
  background: #ffffff;
}

.careers-modern .feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #085394;
  border: none;
  box-shadow: none;
  transform: none;
}

.careers-modern .feature-icon::before {
  content: none;
}

.careers-modern .feature-icon i {
  color: #ffffff;
  font-size: 1.3rem;
  transform: none;
}

.careers-modern .feature-box:hover .feature-icon {
  transform: none;
  box-shadow: none;
}

@media (max-width: 992px) {

  .careers-modern,
  .careers-openings-modern {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {

  .careers-modern,
  .careers-openings-modern {
    padding: 1.1rem;
    border-radius: 14px;
  }
}

/* ==================== CAREERS SECTION (CARD WRAPPER) END ==================== */


/* ==========================================================================
   SHARED COMPONENTS
   ========================================================================== */

.video-fallback {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  padding: 2rem;
  background: rgba(8, 83, 148, 0.95);
  color: #ffffff;
  border-radius: 16px;
  display: none;
}

.video-fallback i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #538c38;
}

.video-fallback h3 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.video-fallback p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.video-fallback .btn-outline {
  border-color: #ffffff;
  color: #ffffff;
}

.contact-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
}

.contact-link:hover {
  color: #538c38;
}

.section-heading {
  color: #2d2d2d;
  margin-bottom: 1.5rem;
  font-weight: 700;
  font-size: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(45, 45, 45, 0.06);
}

.contact-item:hover {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(45, 45, 45, 0.08);
  transform: translateY(-2px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(83, 140, 56, 0.2);
}

.contact-icon i {
  font-size: 1.3rem;
  color: #ffffff;
}

.contact-details {
  flex: 1;
  min-width: 0;
}

.contact-details h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 0.5rem;
}

.contact-details p {
  margin: 0;
  color: #2d2d2d;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.contact-details p a {
  color: #085394;
  font-weight: 500;
  word-break: break-word;
}

.map-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(45, 45, 45, 0.1);
}

@media (max-width: 576px) {
  .contact-item {
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem;
    text-align: center;
    align-items: center;
  }

  .contact-details {
    text-align: center;
  }

  .contact-details p {
    font-size: 0.9rem;
  }

  .contact-details p a {
    word-break: break-word;
  }
}


/* ==========================================================================
   SHARED COMPONENTS END
   ========================================================================== */


/* ==================== BLOG SIDEBAR + LISTING ==================== */
.section .row {
  overflow: visible;
}

.section .container {
  overflow: visible;
}

.blog-modern {
  overflow: visible !important;
}

.blog-modern>.row {
  overflow: visible !important;
}

.blog-modern>.row>.col-lg-4 {
  align-self: flex-start;
}

.blog-sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  align-self: flex-start;
  z-index: 10;
}

.sidebar-widget {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 1px 3px rgba(45, 45, 45, 0.08);
  border: 1px solid rgba(45, 45, 45, 0.08);
  position: relative;
  padding-left: 2.5rem;
}

.sidebar-widget::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.5rem;
  width: 4px;
  height: 50px;
  background: linear-gradient(180deg, var(--primary-color) 0%, #538c38 100%);
  border-radius: 0 2px 2px 0;
}

.widget-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #ffffff;
  text-align: center;
}

.recent-post-content h5 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.recent-post-content h5 a {
  color: var(--primary-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.recent-post-content h5 a:hover {
  color: #085394;
}

.post-date {
  font-size: 0.85rem;
  color: #085394;
}

.post-date i {
  margin-right: 0.25rem;
}

.cta-widget {
  background: var(--primary-color);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(83, 140, 56, 0.2);
}

.cta-widget .widget-title {
  color: #ffffff;
  border-bottom-color: #538c38;
}

.cta-widget p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.cta-widget .btn-block {
  width: 100%;
}

@media (max-width: 991px) {
  .blog-sidebar {
    position: static;
    margin-top: 3rem;
  }
}

/* ==================== BLOG SIDEBAR + LISTING END ==================== */


/* ==========================================================================
   CAREERS PAGE
   ========================================================================== */

.job-card {
  background: #ffffff !important;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  box-shadow: 0 1px 3px rgba(45, 45, 45, 0.08);
  border: 1px solid rgba(45, 45, 45, 0.08);
  transition: all 0.3s ease;
  position: relative;
  padding-left: 2rem;
}

.job-card::before {
  display: none;
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 1.5rem;
}

.job-header h3 {
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  color: #2d2d2d !important;
  margin-bottom: 0.75rem !important;
  display: block !important;
}

.job-card p {
  color: #2d2d2d !important;
  line-height: 1.6 !important;
  margin: 0 !important;
  font-size: 1rem !important;
  display: block !important;
}

@media (max-width: 768px) {
  .job-header {
    flex-direction: column;
  }

  .job-header .btn {
    width: 100%;
  }
}


/* ==========================================================================
   CAREERS PAGE END
   ========================================================================== */


/* ==========================================================================
   ENQUIRY MODAL
   ========================================================================== */

.modal-content {
  border-radius: 12px;
  border: none;
  box-shadow: 0 20px 60px rgba(45, 45, 45, 0.15);
  overflow: hidden;
}

#enquiryModal .modal-dialog {
  max-width: 620px;
}

.modal-header {
  background: #ffffff;
  border-radius: 0;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(45, 45, 45, 0.08);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.modal-header .brand-section {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.modal-header .brand-section img {
  height: 40px;
  width: auto;
}

.modal-header .btn-secondary {
  background: #ffffff;
  color: #085394;
  border: 1.5px solid #085394;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.modal-header .btn-secondary:hover {
  background: #ffffff;
  color: #085394;
  border-color: #085394;
  transform: none;
  box-shadow: 0 2px 8px rgba(8, 83, 148, 0.16);
}

.site-modern .modal-header .btn.btn-secondary,
.site-modern #enquiryModal .modal-header .btn.btn-secondary {
  background: #ffffff;
  color: #085394 !important;
  border-color: #085394;
}

.site-modern .modal-header .btn.btn-secondary:hover,
.site-modern #enquiryModal .modal-header .btn.btn-secondary:hover {
  background: #ffffff !important;
  color: #085394 !important;
  border-color: #085394 !important;
  transform: none;
}

.modal-body {
  padding: 1.1rem 1.25rem;
  background: #ffffff;
}

.modal-body .enquiry-heading {
  font-size: 1.35rem;
  font-weight: 700;
  color: #2d2d2d;
  margin: 0 0 0.5rem 0;
  text-align: left;
}

.modal-body .title-underline {
  display: none !important;
}

.modal-body .form-label {
  color: #2d2d2d;
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-size: 0.8rem;
}

.modal-body .form-label .text-danger {
  color: #2d2d2d;
  margin-left: 2px;
}

.modal-body .form-control,
.modal-body .form-select {
  border: 1.5px solid #ffffff;
  border-radius: 8px;
  padding: 0.5rem 0.78rem;
  font-size: 0.83rem;
  transition: all 0.3s ease;
  background: #ffffff;
  color: #2d2d2d;
  min-height: 38px;
}

.modal-body .form-control::placeholder {
  color: #2d2d2d;
}

.modal-body .mb-3 {
  margin-bottom: 0.62rem !important;
}

.modal-body .form-control:focus,
.modal-body .form-select:focus {
  border-color: #085394;
  box-shadow: 0 0 0 3px rgba(8, 83, 148, 0.14);
  outline: none;
  background: #ffffff;
}

.modal-body .form-control.is-invalid {
  border-color: #2d2d2d;
}

.modal-body .invalid-feedback {
  color: #2d2d2d;
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

.modal-body textarea.form-control {
  min-height: 76px;
  resize: vertical;
}

.modal-body .btn-primary.w-100 {
  background: var(--primary-color);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 0.62rem;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.modal-body .btn-primary.w-100:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(83, 140, 56, 0.3);
}

@media (max-width: 768px) {
  .modal-header {
    padding: 0.875rem 1.25rem;
  }

  .modal-header .brand-section img {
    height: 35px;
  }

  .modal-body {
    padding: 0.95rem 1rem;
  }

  .modal-body .enquiry-heading {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .modal-header .brand-section img {
    height: 32px;
  }

  .modal-body {
    padding: 0.9rem;
  }

  .modal-body .enquiry-heading {
    font-size: 1.1rem;
  }

  .modal-body .btn-primary.w-100 {
    font-size: 0.85rem;
    padding: 0.65rem;
  }
}

.alert-success {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  box-shadow: 0 4px 20px rgba(83, 140, 56, 0.3);
  z-index: 9999;
}

.alert-success i {
  margin-right: 0.5rem;
  font-size: 1.25rem;
}


/* ==========================================================================
   ENQUIRY MODAL END
   ========================================================================== */


/* ==========================================================================
   PRODUCT PAGE
   ========================================================================== */


.product-title {
  font-size: 1.75rem !important;
  font-weight: 700 !important;
  color: #2d2d2d !important;
  margin-bottom: 1rem !important;
  line-height: 1.3 !important;
  position: relative;
  padding-left: 0;
}

.product-title::before {
  display: none;
}

.product-description {
  font-size: 0.95rem !important;
  line-height: 1.7 !important;
  color: #2d2d2d !important;
  margin-bottom: 1.5rem !important;
  padding: 1.25rem;
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
  border-radius: 12px;
  border-left: 3px solid var(--primary-color);
}


/* ==========================================================================
   RESPONSIVE STYLES FOR PRODUCT PAGES
   ========================================================================== */

@media (max-width: 991px) {
  .product-title {
    font-size: 1.5rem !important;
  }
}

@media (max-width: 767px) {

  .product-title {
    font-size: 1.35rem !important;
    padding-left: 0.75rem;
  }

  .product-title::before {
    width: 3px;
  }

  .product-description {
    font-size: 0.875rem !important;
    padding: 1rem;
  }
}

@media (max-width: 576px) {
  .product-title {
    font-size: 1.25rem !important;
  }

  .product-description {
    font-size: 0.8rem !important;
  }
}


/* ==========================================================================
   PRODUCT PAGE END
   ========================================================================== */


/* ==========================================================================
   REFERENCE LAYOUT
   ========================================================================== */

.ref-quote-strip-inner {
  text-align: center;
  background: linear-gradient(130deg, #085394 0%, #2d2d2d 100%);
  border-radius: 20px;
  padding: 2rem 1.2rem;
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(45, 45, 45, 0.18);
}

.ref-quote-strip-inner h3 {
  color: #ffffff;
}

.ref-quote-strip-inner p {
  color: rgba(255, 255, 255, 0.92) !important;
  max-width: 760px;
  margin: 0 auto 1rem;
}

.site-modern .ref-quote-strip-inner .btn.btn-primary {
  background: #ffffff !important;
  border-color: #ffffff !important;
  color: #085394 !important;
}

.site-modern .ref-quote-strip-inner .btn.btn-primary:hover {
  background: #2d2d2d !important;
  border-color: #2d2d2d !important;
  color: #ffffff !important;
}


/* ==========================================================================
   REFERENCE LAYOUT END
   ========================================================================== */


/* ==========================================================================
   BLOG DETAIL START
   ========================================================================== */

.blog-detail-content {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(45, 45, 45, 0.08);
  border: none;
}

.blog-featured-image {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  position: relative;
  border-radius: 0;
  margin-bottom: 0;
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.blog-featured-image::after {
  display: none;
}

.blog-featured-image img {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.blog-detail-content:hover .blog-featured-image img {
  transform: scale(1.02);
}

.blog-content-detail {
  padding: 2.5rem 2.5rem;
  color: #2d2d2d;
}

.blog-content-detail h2 {
  font-size: 1.85rem !important;
  font-weight: 700 !important;
  color: #2d2d2d !important;
  margin-bottom: 1.5rem !important;
  margin-top: 2.5rem !important;
  position: relative;
  padding-left: 0;
}

.blog-content-detail h2::before {
  display: none;
}

.blog-content-detail h2:first-child {
  margin-top: 0 !important;
}

.blog-content-detail h3 {
  font-size: 1.35rem !important;
  font-weight: 600 !important;
  color: #085394 !important;
  margin-bottom: 1rem !important;
  margin-top: 1.75rem !important;
}

.blog-content-detail h4 {
  font-size: 1.15rem !important;
  font-weight: 600 !important;
  color: #085394 !important;
  margin-bottom: 0.75rem !important;
  margin-top: 1.25rem !important;
}

.blog-content-detail p {
  font-size: 0.98rem !important;
  line-height: 1.75 !important;
  color: #1a1a1a !important;
  margin-bottom: 1.25rem !important;
}

.blog-content-detail ul,
.blog-content-detail ol {
  margin: 1.25rem 0 1.5rem 0;
  padding-left: 1.75rem;
}

.blog-content-detail ul li,
.blog-content-detail ol li {
  font-size: 0.95rem !important;
  line-height: 1.7 !important;
  color: #1a1a1a !important;
  margin-bottom: 0.65rem !important;
  position: relative;
  padding-left: 0.5rem;
}

.blog-content-detail ul li::marker {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.blog-content-detail a {
  color: #085394 !important;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.blog-content-detail a:hover {
  color: #085394 !important;
  border-bottom-color: #085394;
}

.blog-quote {
  background: linear-gradient(135deg,
      var(--primary-color) 0%,
      var(--primary-dark) 100%);
  padding: 2.5rem 2rem;
  margin: 3rem 0;
  border-radius: 16px;
  border-left: 6px solid #538c38;
  position: relative;
  box-shadow: 0 8px 30px rgba(83, 140, 56, 0.3);
}

.blog-quote::before {
  content: "\f10d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 2rem;
  left: 2rem;
  font-size: 3rem;
  color: rgba(255, 180, 0, 0.3);
}

.blog-quote p {
  font-size: 1.25rem !important;
  font-style: italic;
  color: #ffffff !important;
  margin-bottom: 1.25rem !important;
  line-height: 1.8 !important;
  padding-left: 3rem;
}

.blog-quote cite {
  font-size: 1rem !important;
  color: rgba(255, 255, 255, 0.9) !important;
  font-style: normal;
  display: block;
  text-align: right;
  font-weight: 600;
}

.related-posts {
  padding: 2.5rem;
  border-top: 2px solid #ffffff;
}

.related-posts h3 {
  font-size: 1.75rem !important;
  font-weight: 700 !important;
  color: #2d2d2d !important;
  margin-bottom: 2rem !important;
  position: relative;
  padding-left: 0;
}

.related-posts h3::before {
  display: none;
}

/* ==================== BLOG SIDEBAR (DETAIL) ==================== */
.blog-sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  align-self: flex-start;
  z-index: 10;
}

.blog-sidebar-sticky {
  position: sticky !important;
  position: -webkit-sticky !important;
  top: 100px !important;
  align-self: flex-start;
  z-index: 100;
  will-change: transform;
}

.section .row {
  overflow: visible !important;
}

.section .container {
  overflow: visible !important;
}

.sidebar-widget {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 30px rgba(45, 45, 45, 0.08);
  border: 2px solid #538c38;
  position: relative;
  transition: all 0.3s ease;
}

.sidebar-widget:hover {
  box-shadow: 0 8px 40px rgba(83, 140, 56, 0.15);
  transform: translateY(-4px);
}

.sidebar-widget::before {
  display: none;
}

.widget-title {
  font-size: 1.4rem !important;
  font-weight: 700 !important;
  color: #2d2d2d !important;
  margin-bottom: 1.75rem !important;
  padding-bottom: 0;
  border-bottom: none;
  padding-left: 0;
}

.recent-post-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 2px solid #ffffff;
  transition: all 0.3s ease;
}

.recent-post-item:hover {
  transform: translateX(6px);
}

.recent-post-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.recent-post-item img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(45, 45, 45, 0.1);
  transition: transform 0.3s ease;
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
}

.recent-post-item:hover img {
  transform: scale(1.05);
}

.recent-post-content h5 {
  font-size: 1rem !important;
  font-weight: 600 !important;
  margin-bottom: 0.625rem !important;
  line-height: 1.4 !important;
}

.recent-post-content h5 a {
  color: #2d2d2d;
  text-decoration: none;
  transition: all 0.3s ease;
}

.recent-post-content h5 a:hover {
  color: var(--primary-color);
}

.recent-post-content .post-date {
  font-size: 0.85rem;
  color: #085394;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-weight: 500;
}


/* ==========================================================================
   BLOG DETAIL RESPONSIVE
   ========================================================================== */

@media (max-width: 991px) {
  .blog-sidebar {
    position: static;
    margin-top: 50px;
  }

  .blog-sidebar-sticky {
    position: static !important;
    margin-top: 50px;
  }
}

@media (max-width: 768px) {
  .blog-detail-content {
    border-radius: 12px;
  }

  .blog-featured-image {
    max-height: 350px;
    padding: 1rem;
  }

  .blog-featured-image img {
    max-height: 300px;
  }

  .blog-content-detail {
    padding: 1.5rem 1.5rem;
  }

  .blog-content-detail .row {
    margin: 0;
  }

  .blog-content-detail .col-md-6 {
    padding: 0;
  }

  .blog-sidebar-sticky {
    margin-top: 30px;
  }

  .sidebar-widget {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .widget-title {
    font-size: 1.1rem;
  }

  .recent-post-item {
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .recent-post-item img {
    width: 70px;
    height: 70px;
  }

  .recent-post-content h5 {
    font-size: 0.9rem !important;
  }

  .recent-post-content .post-date {
    font-size: 0.75rem;
  }
}

@media (max-width: 576px) {
  .blog-featured-image {
    max-height: 300px;
    padding: 0.75rem;
  }

  .blog-featured-image img {
    max-height: 250px;
  }

  .blog-content-detail {
    padding: 1.25rem 1rem;
  }

  .blog-content-detail h2 {
    font-size: 1.5rem !important;
  }

  .blog-content-detail h3 {
    font-size: 1.2rem !important;
  }

  .blog-content-detail h4 {
    font-size: 1rem !important;
  }

  .blog-content-detail p,
  .blog-content-detail ul li,
  .blog-content-detail ol li {
    font-size: 0.85rem !important;
  }

  .sidebar-widget {
    padding: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .widget-title {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .recent-post-item {
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
  }

  .recent-post-item img {
    width: 60px;
    height: 60px;
  }

  .recent-post-content h5 {
    font-size: 0.85rem !important;
    margin-bottom: 0.35rem !important;
  }

  .recent-post-content .post-date {
    font-size: 0.7rem;
  }

  .cta-widget p {
    font-size: 0.85rem !important;
    margin-bottom: 1rem !important;
  }

  .cta-widget .btn-outline {
    padding: 0.65rem 1.5rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .blog-content-detail {
    padding: 20px;
  }

  .blog-content-detail h2 {
    font-size: 24px;
  }

  .blog-content-detail h3 {
    font-size: 20px;
  }

  .blog-content-detail h4 {
    font-size: 18px;
  }

  .blog-content-detail p,
  .blog-content-detail ul li,
  .blog-content-detail ol li {
    font-size: 15px;
  }

  .blog-quote {
    padding: 20px;
    margin: 20px 0;
  }

  .blog-quote p {
    font-size: 16px;
  }

  .related-posts {
    padding: 20px;
  }

  .related-posts h3 {
    font-size: 20px;
  }

  .sidebar-widget {
    padding: 20px;
  }

  .widget-title {
    font-size: 18px;
  }
}

@media (max-width: 576px) {

  .blog-sidebar-sticky {
    margin-top: 30px;
  }

  .sidebar-widget {
    padding: 1rem;
    margin-bottom: 1rem;
  }

  .widget-title {
    font-size: 1rem !important;
    margin-bottom: 1rem !important;
    padding-bottom: 0.75rem !important;
  }

  .recent-post-item {
    display: flex !important;
    flex-direction: row !important;
    gap: 0.75rem !important;
    margin-bottom: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .recent-post-item img {
    width: 70px !important;
    height: 70px !important;
    object-fit: cover !important;
    object-position: center !important;
    flex-shrink: 0 !important;
    border-radius: 8px !important;
  }

  .recent-post-content {
    flex: 1;
    min-width: 0;
  }

  .recent-post-content h5 {
    font-size: 0.85rem !important;
    margin-bottom: 0.35rem !important;
    line-height: 1.3 !important;
  }

  .recent-post-content .post-date {
    font-size: 0.7rem !important;
  }
}


/* ==========================================================================
   BLOG DETAIL END
   ========================================================================== */


/* ==========================================================================
   PRODUCT PAGE MODERN REFINEMENTS
   ========================================================================== */


/* ==========================================================================
   ROOT OVERRIDES FOR MONAD PAGE
   ========================================================================== */


.product-details-focused {
  position: relative;
  padding-top: 5rem !important;
}


/* ==========================================================================
   STICKY IMAGE COLUMN
   ========================================================================== */

.product-sticky-view {
  position: sticky;
  top: 100px;
  z-index: 10;
}

.product-main-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-main-visual:hover {
  transform: scale(1.02);
}

.product-main-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.visual-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--secondary-color);
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 99px;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(83, 140, 56, 0.4);
}


/* ==========================================================================
   PRODUCT INFO PANEL
   ========================================================================== */

.product-info-panel {
  padding-left: 1.5rem;
}

.lead-sm {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.7;
}


/* ==========================================================================
   FEATURE PILLS GRID
   ========================================================================== */

.feature-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #f8f9fa;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-pill:hover {
  background: white;
  border-color: var(--primary-color);
  box-shadow: 0 8px 20px rgba(8, 83, 148, 0.1);
  transform: translateY(-2px);
}

.feature-pill i {
  color: var(--primary-color);
  font-size: 1.25rem;
}

.feature-pill span {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-800);
}


/* ==========================================================================
   COMPACT SPEC CARD
   ========================================================================== */

.compact-spec-row {
  display: flex;
  background: #fdfdfd;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.spec-mini-card {
  flex: 1;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
}

.spec-mini-card .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray-500);
  margin-bottom: 0.35rem;
  font-weight: 700;
}

.spec-mini-card .value {
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 1rem;
}


/* ==========================================================================
   ACTION GROUP
   ========================================================================== */

.product-actions-group {
  display: flex;
  gap: 1.25rem;
}


/* ==========================================================================
   PREMIUM SPECS TABLE
   ========================================================================== */

.bg-light-gradient {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.premium-specs-table-wrapper {
  margin-top: 2rem;
}

.shadow-spec {
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  overflow: hidden;
}

.premium-specs-table-wrapper .table {
  border: none;
}

.premium-specs-table-wrapper thead th {
  background: var(--primary-color);
  color: white;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 800;
  padding: 1.5rem;
  border: none;
}

.premium-specs-table-wrapper tbody td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.spec-category {
  width: 30%;
}

.title-accent {
  width: 60px;
  height: 4px;
  background: var(--secondary-color);
  border-radius: 2px;
}

@media (max-width: 991px) {
  .product-details-focused {
    padding-top: 3rem !important;
  }

  .product-sticky-view {
    position: static;
    margin-bottom: 3rem;
  }

  .product-info-panel {
    padding-left: 0;
  }
}

@media (max-width: 576px) {
  .product-actions-group {
    flex-direction: column;
  }

  .spec-mini-card {
    padding: 1rem;
  }

  .spec-mini-card .value {
    font-size: 0.85rem;
  }
}


/* ==========================================================================
   RECAPTCHA LAYOUT
   ========================================================================== */


/* ==========================================================================
   VALIDATION REFINEMENTS
   ========================================================================== */

.shake {
  animation: gloseals-shake 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  transform: translate3d(0, 0, 0);
}

@keyframes gloseals-shake {

  10%,
  90% {
    transform: translate3d(-1px, 0, 0);
  }

  20%,
  80% {
    transform: translate3d(2px, 0, 0);
  }

  30%,
  50%,
  70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%,
  60% {
    transform: translate3d(4px, 0, 0);
  }
}


/* ==========================================================================
   FLOATING ICONS
   ========================================================================== */

.floating-icons-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1050;
}

.floating-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  animation: floatingIconBounce 2s infinite ease-in-out alternate;
}

.floating-icon i {
  color: #fff !important;
}

.floating-icon:hover {
  transform: scale(1.1);
  color: #fff;
}

.floating-icon:hover i {
  color: #fff !important;
}

.whatsapp-icon {
  background-color: #25d366;
}

.whatsapp-icon:hover {
  background-color: #1ebe57;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.call-icon {
  background-color: #085394;
  animation-delay: 1s;
}

.call-icon:hover {
  background-color: #064074;
  box-shadow: 0 6px 20px rgba(8, 83, 148, 0.4);
}

@keyframes floatingIconBounce {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-5px);
  }
}

@media (max-width: 768px) {
  .floating-icons-container {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }

  .floating-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}


/* ==========================================================================
   INDUSTRIES-PAGE-START
   ========================================================================== */

.why-modern {
  background: #FFFFFF;
  border: 1px solid #FFFFFF;
  border-radius: 20px;
  padding: 2.15rem;
  box-shadow: 0 10px 28px rgba(8, 83, 148, 0.05);
}

.why-modern-head {
  max-width: 860px;
  text-align: center;
  margin: 0 auto 1.8rem;
}

.why-eyebrow {
  display: inline-block;
  margin-bottom: 0.9rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid #FFFFFF;
  border-radius: 999px;
  background: #FFFFFF;
  color: #2D2D2D;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.why-modern-head h2 {
  color: #2D2D2D;
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
  line-height: 1.22;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.why-modern-head p {
  color: #085394;
  margin: 0 auto;
  max-width: 760px;
  font-size: 1rem;
  line-height: 1.7;
}

.why-feature-card {
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 16px;
  padding: 1.45rem 1.1rem;
  text-align: center;
  height: 100%;
}

.why-feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 14px;
  background: #085394;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-feature-icon i {
  color: #ffffff;
  font-size: 1.3rem;
}

.why-feature-card h4 {
  color: var(--heading-gray);
  font-size: 0.93rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.why-feature-card p {
  color: #085394;
  font-size: 0.8rem;
  line-height: 1.6;
  margin: 0;
}


/* ==========================================================================
   INDUSTRIES PAGE MEDIA QUERIES
   ========================================================================== */

@media (max-width: 768px) {
  .why-modern-head h2 {
    font-size: 1.65rem !important;
  }
}

@media (max-width: 576px) {
  .why-modern-head h2 {
    font-size: 1.45rem !important;
  }
}


/* ==========================================================================
   INDUSTRIES PAGE CARD STYLES
   ========================================================================== */

.industry-card {
  background: linear-gradient(145deg, #17395a 0%, #0e1f33 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  padding: 2.45rem 1.2rem 1.55rem 1.2rem;
  text-align: center;
  height: 100%;
  min-height: 340px;
  position: relative;
  overflow: visible;
  isolation: isolate;
  box-shadow:
    0 20px 44px rgba(7, 29, 50, 0.24),
    0 3px 10px rgba(7, 29, 50, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  z-index: 0;
  border-radius: 22px;
  transition: transform 0.45s ease;
}

.industry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(190deg,
      rgba(8, 52, 94, 0.2) 0%,
      rgba(4, 18, 34, 0.86) 58%,
      rgba(4, 16, 30, 0.96) 100%);
  z-index: 1;
  pointer-events: none;
  border-radius: 22px;
}

.industry-card h4,
.industry-card p {
  position: relative;
  z-index: 2;
}

.industry-card h4 {
  color: #ffffff !important;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(4, 16, 30, 0.72);
}

.industry-card p {
  color: rgba(243, 249, 255, 0.97) !important;
  font-size: 0.96rem;
  line-height: 1.7;
  margin: 0;
  text-shadow: 0 1px 8px rgba(4, 16, 30, 0.5);
}

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 26px 52px rgba(7, 29, 50, 0.3),
    0 8px 16px rgba(7, 29, 50, 0.14);
}

.industry-card:hover::before {
  transform: scale(1.06);
  transition: transform 0.45s ease;
}


/* ==========================================================================
   INDUSTRY SPECIFIC BACKGROUNDS
   ========================================================================== */

.ind-manufacturing::before {
  background-image: url('../img/Industries/manufacturing.webp');
}

.ind-warehousing::before {
  background-image: url('../img/Industries/Warehousing & Logistics.webp');
}

.ind-aviation::before {
  background-image: url('../img/Industries/Aviation.webp');
}

.ind-construction::before {
  background-image: url('../img/Industries/Construction.webp');
}

.ind-healthcare::before {
  background-image: url('../img/Industries/Healthcare.webp');
}

.ind-retail::before {
  background-image: url('../img/Industries/Retail.webp');
}

.ind-energy::before {
  background-image: url('../img/Industries/Energy.webp');
}

.ind-automotive::before {
  background-image: url('../img/Industries/automative\ \(1\).webp');
}

.ind-education::before {
  background-image: url('../img/Industries/education.webp');
}

.ind-hospitality::before {
  background-image: url('../img/Industries/Hospitality.webp');
}

.ind-marine::before {
  background-image: url('../img/Industries/Marine & Ports.webp');
}

.ind-pharma::before {
  background-image: url('../img/Industries/Pharmaceuticals.webp');
}


/* ==========================================================================
   INDUSTRIES-PAGE-END
   ========================================================================== */


.industry-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #2d89d5 0%, #085394 65%, #064171 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -29px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  border: 2px solid rgba(255, 255, 255, 0.62);
  box-shadow:
    0 12px 24px rgba(6, 65, 113, 0.42),
    0 0 0 6px rgba(8, 83, 148, 0.14);
}

.industry-icon i {
  color: #ffffff;
  font-size: 1.25rem;
}

@media (max-width: 992px) {
  .industry-card {
    min-height: 320px;
    border-radius: 18px;
  }

  .industry-card::before,
  .industry-card::after {
    border-radius: 18px;
  }

  .industry-card h4 {
    font-size: 1.1rem;
  }

  .industry-card p {
    font-size: 0.9rem;
    line-height: 1.62;
  }
}

@media (max-width: 576px) {
  .industry-card {
    padding: 2.25rem 1rem 1.35rem 1rem;
    min-height: 300px;
  }

  .industry-icon {
    width: 52px;
    height: 52px;
    top: -25px;
  }

  .industry-icon i {
    font-size: 1.1rem;
  }
}


/* ==========================================================================
   CUSTOMIZATION-REDESIGN-START
   ========================================================================== */

@keyframes rotateText {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ==========================================================================
   PRECISION POINT FROM TOP-OVERLAP POSITION
   ========================================================================== */


/* ==========================================================================
   SMALL POINTER TIP
   ========================================================================== */

/* .badge-arrow::after {
  content: "";
  position: absolute;
  width: 15px; 
  height: 4px;
  background: #ff8c00;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  border-radius: 0 4px 4px 0;
} */

/* .logo-redesign-card:hover .badge-arrow {
  transform: rotate(25deg) scale(1.05);
} */
/* ==========================================================================
   FORCE OVERLAP TO TOUCH THE CORNER
   ========================================================================== */

/* ==========================================================================
   EVEN BIGGER PRODUCT IMAGE
   ========================================================================== */

.logo-image {
  max-height: 580px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.1));
}

@media (max-width: 768px) {

  .logo-image {
    max-height: 460px;
    

/* ==========================================================================
   BOLDER MOBILE PRESENCE
   ========================================================================== */

    width: 100%;
    object-fit: contain;
  }
}


/* ==========================================================================
   CUSTOMIZATION-REDESIGN-END
   ========================================================================== */

/* ==========================================================================
   MATH CAPTCHA STYLES
   ========================================================================== */

.math-captcha-container {
    background: rgba(8, 83, 148, 0.03);
    padding: 10px;
    border-radius: 8px;
    border: 1px solid rgba(8, 83, 148, 0.1);
}

.captcha-box {
    background-color: #085394;
    color: #ffffff;
    min-width: 120px;
    font-size: 1.1rem;
    letter-spacing: 2px;
    box-shadow: 0 4px 10px rgba(8, 83, 148, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.captcha-reload-btn {
    border: 1px solid #085394;
    color: #085394;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.3s ease;
    background: #ffffff;
}

.captcha-reload-btn:hover {
    background-color: #085394;
    color: #ffffff;
    transform: rotate(180deg);
}

.captcha-input {
    max-width: 130px;
    border-color: rgba(8, 83, 148, 0.2) !important;
    font-weight: 600;
    text-align: center;
    font-size: 1.1rem;
}

.captcha-input:focus {
    border-color: #085394 !important;
    box-shadow: 0 0 0 0.25rem rgba(8, 83, 148, 0.1) !important;
}

/* Modal specific captcha adjustment */
.modal-body .captcha-box {
    background-color: #085394;
}
