:root {
  /* ProCorBay Theme Primary Colors */
  --theme-primary: #4F46E5;
  --theme-primary-hover: #3730A3;
  --theme-primary-light: rgba(79, 70, 229, 0.08);
  --theme-primary-glow: rgba(79, 70, 229, 0.25);
  --theme-color-1: #003087;
  --theme-color: linear-gradient(to top, #00c6ff, #003087);

  /* Theme Accent Shades */
  --theme-shade-1: #1E1B4B;
  --theme-shade-2: #312E81;
  --theme-shade-3: #3730A3;
  --theme-shade-4: #4338CA;
  --theme-shade-5: #4F46E5;
  --theme-shade-6: #6366F1;
  --theme-shade-7: #01020e;
  --theme-shade-8: #059669;

  /* Division Accent Colors mapped to brand theme shades */
  --color-our-company: var(--theme-shade-1);
  --color-our-category: var(--theme-shade-3);
  --color-blog: #4f46e5;
  --color-faq: #4f46e5;
  --color-about: var(--theme-primary);
  --color-contact: var(--theme-primary);
  --color-careers: var(--theme-shade-6);
  --color-investors: var(--theme-shade-2);
  --color-media: var(--theme-shade-7);
  --color-sustainability: var(--theme-shade-8);
  --color-blue: var(--theme-primary);

  --s-indigo-deep: #1E1B4B;
  --s-indigo: #3730A3;
  --s-indigo-mid: #4F46E5;
  --s-indigo-lite: #6366F1;
  --s-violet: #818CF8;
  --s-lavender: #A5B4FC;
  --s-white: #ffffff;
  --s-muted: #64748B;
  --s-bg-light: #F8FAFC;
  --s-border: rgba(99, 102, 241, 0.15);
  --s-glass-bg: rgba(255, 255, 255, 0.06);
  --s-glass-border: rgba(255, 255, 255, 0.12);
  --s-font-title: "Poppins", sans-serif;
  --s-transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);

  /* Text and background tokens */
  --header-text-color: #0F172A;
  --text-dark: #0F172A;
  --text-muted: #64748B;

  /* Gradients & Radii */
  --theme-gradient-primary: linear-gradient(135deg, #1E1B4B 0%, #3730A3 50%, #4F46E5 100%);
  --theme-gradient-glow: linear-gradient(135deg, #4F46E5 0%, #6366F1 100%);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 50px;

  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);

  --font-title: "Poppins", sans-serif;
  --font-body: 'Inter', sans-serif;
  --color-white: #ffffff;
  --color-overlay: linear-gradient(180deg, rgba(15, 23, 42, 0.75) 0%, rgba(15, 23, 42, 0.45) 50%, rgba(15, 23, 42, 0.85) 100%);
  --transition-speed: 0.8s;
  /* Legacy/theme aliases used by service tab styles */
  --theme-color: var(--theme-primary);
  /* --theme-color-1: var(--theme-primary); */
  /* --theme-color-icon: #003087; */
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  color: #000;
  line-height: 1.6;
  background-color: #fafafa;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  height: auto;
  overflow-x: clip;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
a {
  padding: 0;
  margin: 0;
  text-decoration: none;
  list-style: none;
}

section {
  padding: 80px 0;
}

/* Background preview for home screen so header visibility can be verified */
main {
  margin-top: 0;
  /* Header overlaps because it is position: fixed */
}


/* ==========================================================================
   HEADER MAIN BAR
   ========================================================================== */

/* Backdrop overlay */
.header-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(5px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 998;
}

.header-backdrop.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* Header container position fixed */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
  transition: var(--transition-smooth);
}

/* Hover, scrolled, and active mega menu state */
.main-header:hover,
.main-header.header--scrolled,
.main-header.menu-active {
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(203, 213, 225, 0.8);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

/* Children styling overrides on hover, scrolled, and active states */
.main-header:hover .navbar-brand .logo-link,
.main-header.header--scrolled .navbar-brand .logo-link,
.main-header.menu-active .navbar-brand .logo-link {
  color: #000000;
}

.main-header:hover .nav-link,
.main-header.header--scrolled .nav-link,
.main-header.menu-active .nav-link {
  color: #000000;
}

.main-header:hover .hamburger-bar,
.main-header.header--scrolled .hamburger-bar,
.main-header.menu-active .hamburger-bar {
  background-color: #000000;
}

#headerContainer {
  transition: var(--transition-smooth);
}

.main-header.header--scrolled #headerContainer {
  height: 70px !important;
}

/* Logo styling */
.navbar-brand .logo-link {
  font-size: 26px;
  font-weight: 400;
  color: #222222;
  letter-spacing: 1px;
  transition: opacity 0.3s ease;
}

.navbar-brand .logo-link:hover {
  opacity: 0.8;
}

.nav-menu.primary-menu {
  margin-right: auto;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: #333333;
  font-size: 14.5px;
  font-weight: 500;
  padding: 28px 0;
  /* Ensures full height hover zone */
  cursor: pointer;
  display: block;
  transition: color 0.25s ease;
  position: relative;
}

.main-header.header--scrolled .nav-link {
  padding: 23px 0;
}

/* Active underline indicators based on division colors */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: transparent;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

/* Apply customized colors to bottom bar and set text color on hover/active to match their specific division accent color */
.nav-item[data-division="about"]:hover .nav-link,
.nav-item[data-division="about"].is-active .nav-link,
.nav-item[data-division="about"].active .nav-link,
.nav-item[data-division="about"] .nav-link.active {
  color: var(--color-about, var(--theme-primary)) !important;
}

.nav-item[data-division="our-company"]:hover .nav-link,
.nav-item[data-division="our-company"].is-active .nav-link,
.nav-item[data-division="our-company"].active .nav-link,
.nav-item[data-division="our-company"] .nav-link.active {
  color: var(--color-our-company) !important;
}

.nav-item[data-division="our-category"]:hover .nav-link,
.nav-item[data-division="our-category"].is-active .nav-link,
.nav-item[data-division="our-category"].active .nav-link,
.nav-item[data-division="our-category"] .nav-link.active {
  color: var(--color-our-category) !important;
}

.nav-item[data-division="blog"]:hover .nav-link,
.nav-item[data-division="blog"].is-active .nav-link,
.nav-item[data-division="blog"].active .nav-link,
.nav-item[data-division="blog"] .nav-link.active {
  color: var(--color-blog) !important;
}

.nav-item[data-division="faq"]:hover .nav-link,
.nav-item[data-division="faq"].is-active .nav-link,
.nav-item[data-division="faq"].active .nav-link,
.nav-item[data-division="faq"] .nav-link.active {
  color: var(--color-faq) !important;
}

.nav-item[data-division="contact"]:hover .nav-link,
.nav-item[data-division="contact"].is-active .nav-link,
.nav-item[data-division="contact"].active .nav-link,
.nav-item[data-division="contact"] .nav-link.active {
  color: var(--color-contact, var(--theme-primary)) !important;
}

.nav-item[data-division="careers"]:hover .nav-link,
.nav-item[data-division="careers"].is-active .nav-link,
.nav-item[data-division="careers"].active .nav-link,
.nav-item[data-division="careers"] .nav-link.active {
  color: var(--color-careers) !important;
}

.nav-item[data-division="investors"]:hover .nav-link,
.nav-item[data-division="investors"].is-active .nav-link,
.nav-item[data-division="investors"].active .nav-link,
.nav-item[data-division="investors"] .nav-link.active {
  color: var(--color-investors) !important;
}

.nav-item[data-division="media"]:hover .nav-link,
.nav-item[data-division="media"].is-active .nav-link,
.nav-item[data-division="media"].active .nav-link,
.nav-item[data-division="media"] .nav-link.active {
  color: var(--color-media) !important;
}

/* Default / fallback hover & active state for any nav link */
.nav-item:hover .nav-link,
.nav-item.is-active .nav-link,
.nav-item.active .nav-link,
.nav-item .nav-link.active,
.nav-link:hover,
.nav-link.active {
  color: var(--theme-primary) !important;
}

.nav-link::after {
  background-color: var(--theme-primary);
}

.nav-item[data-division="about"] .nav-link::after {
  background-color: var(--color-about, var(--theme-primary));
}

.nav-item[data-division="our-company"] .nav-link::after {
  background-color: var(--color-our-company);
}

.nav-item[data-division="our-category"] .nav-link::after {
  background-color: var(--color-our-category);
}

.nav-item[data-division="blog"] .nav-link::after {
  background-color: var(--color-blog);
}

.nav-item[data-division="faq"] .nav-link::after {
  background-color: var(--color-faq);
}

.nav-item[data-division="contact"] .nav-link::after {
  background-color: var(--color-contact, var(--theme-primary));
}

.nav-item[data-division="careers"] .nav-link::after {
  background-color: var(--color-careers);
}

.nav-item[data-division="investors"] .nav-link::after {
  background-color: var(--color-investors);
}

.nav-item[data-division="media"] .nav-link::after {
  background-color: var(--color-media);
}

.nav-item:hover .nav-link::after,
.nav-item.is-active .nav-link::after,
.nav-item.active .nav-link::after,
.nav-item .nav-link.active::after,
.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

/* ==========================================================================
   MEGA MENUS SYSTEM
   ========================================================================== */

.mega-menus-wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.mega-menus-wrapper.open {
  max-height: 700px;
}

.mega-menu {
  display: none;
  width: 100%;
  position: relative;
}

.mega-menu.is-active {
  display: block;
}

/* Close button on mega menu */
.mega-menu-close {
  position: absolute;
  top: 25px;
  right: 40px;
  background: none;
  border: none;
  font-size: 32px;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-smooth);
}

.mega-menu-close:hover {
  color: var(--text-dark);
  transform: scale(1.1);
}

.col-title-link {
  transition: color 0.25s ease;
}

.mega-menu[data-color] ul li a {
  transition: color 0.25s ease, padding-left 0.25s ease;
}

/* Category column hover coloring logic */
.mega-menu[data-color] ul li a:hover,
.mega-menu[data-color] .col-title-link:hover {
  color: var(--menu-theme-color);
  padding-left: 3px;
}

/* Inject css theme colors based on menu parent data-color variables */
#mega-our-company {
  --menu-theme-color: var(--color-our-company);
}

#mega-our-category {
  --menu-theme-color: var(--color-our-category);
}

#mega-blog {
  --menu-theme-color: var(--color-blog);
}


#mega-careers {
  --menu-theme-color: var(--color-careers);
}

#mega-investors {
  --menu-theme-color: var(--color-investors);
}

#mega-media {
  --menu-theme-color: var(--color-media);
}

/* Hamburger Menu Button */
.mobile-toggle {
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1002;
}

.hamburger-bar {
  width: 100%;
  height: 2px;
  background-color: #222222;
  transition: var(--transition-smooth);
}

/* Mobile Menu Container (hidden on desktop) */
.mobile-menu {
  display: none;
}

/* ==========================================================================
   REFRESH / ENTRANCE ANIMATION (GIVAUDAN LINK REFRESH EFFECT)
   ========================================================================== */
@keyframes headerEntrance {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar-brand,
.primary-menu .nav-item,
.secondary-menu .nav-item,
.mobile-toggle {
  opacity: 0;
  animation: headerEntrance 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Stagger delays */
.navbar-brand {
  animation-delay: 0.1s;
}

.primary-menu .nav-item:nth-child(1) {
  animation-delay: 0.2s;
}

.primary-menu .nav-item:nth-child(2) {
  animation-delay: 0.3s;
}

.primary-menu .nav-item:nth-child(3) {
  animation-delay: 0.4s;
}

.secondary-menu .nav-item:nth-child(1) {
  animation-delay: 0.5s;
}

.secondary-menu .nav-item:nth-child(2) {
  animation-delay: 0.6s;
}

.secondary-menu .nav-item:nth-child(3) {
  animation-delay: 0.7s;
}

.secondary-menu .nav-item:nth-child(4) {
  animation-delay: 0.8s;
}

.mobile-toggle {
  animation-delay: 0.3s;
}


/* ==========================================================================
   GIVAUDAN REPLICA FOOTER STYLES
   ========================================================================== */
.g-footer {
  background: linear-gradient(135deg, var(--theme-shade-1), var(--theme-shade-4), var(--theme-shade-3));
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-family: "Poppins", sans-serif;
}

.g-footer .footer-logo {
  font-size: 26px;
  font-weight: 300;
  letter-spacing: 1px;
  color: #ffffff;
}

.g-footer .locations-link {
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition-smooth);
}

.g-footer .locations-link:hover {
  color: #ffffff;
}

.g-footer .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
  transition: var(--transition-smooth);
}

.g-footer .social-link:hover {
  background-color: #ffffff !important;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.28);
}

.g-footer .footer-col-title {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 8px;
}

.g-footer .footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition-smooth);
  display: inline-block;
}

.g-footer .footer-links a:hover,
.g-footer .footer-contact-info a:hover {
  color: #ffffff !important;
  transform: translateX(3px);
}

.g-footer .footer-contact-info a {
  transition: var(--transition-smooth);
}

.g-footer .transition-hover {
  transition: var(--transition-smooth);
}

.hero-section {
  touch-action: pan-y;
  padding: 0 !important;
}

.hero-section .carousel-item {
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.follow-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.news-swiper .swiper-wrapper {
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.hero-section .carousel-bg-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-section .carousel-overlay {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.75) 0%, rgba(30, 27, 75, 0.55) 50%, rgba(15, 23, 42, 0.8) 100%);
  z-index: 2;
}

.hero-section .carousel-caption-custom {
  padding: 0 8%;
  z-index: 3;
}

/* Hero Pill Tag Badge */
.hero-section .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c7d2fe;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.1s;
}

.hero-section .carousel-item .carousel-caption-custom h1,
.hero-section .swiper-slide .carousel-caption-custom h1 {
  font-family: var(--font-title);
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 22px;
  color: #ffffff;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.2s;
  letter-spacing: -1px;
}

.hero-section .carousel-item .carousel-caption-custom p,
.hero-section .swiper-slide .carousel-caption-custom p {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 400;
  max-width: 780px;
  margin: 0 auto 36px auto;
  color: rgba(255, 255, 255, 0.92);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.4s;
  line-height: 1.7;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero-section .carousel-item .carousel-caption-custom .btn-group-custom,
.hero-section .swiper-slide .carousel-caption-custom .btn-group-custom {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.6s;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.hero-section .carousel-item.active .hero-badge,
.hero-section .carousel-item.active .carousel-caption-custom h1,
.hero-section .carousel-item.active .carousel-caption-custom p,
.hero-section .carousel-item.active .carousel-caption-custom .btn-group-custom,
.hero-section .swiper-slide-active .hero-badge,
.hero-section .swiper-slide-active .carousel-caption-custom h1,
.hero-section .swiper-slide-active .carousel-caption-custom p,
.hero-section .swiper-slide-active .carousel-caption-custom .btn-group-custom {
  opacity: 1;
  transform: translateY(0);
}

.hero-section .btn-hero-primary {
  background: linear-gradient(135deg, #4F46E5 0%, #6366F1 100%);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 14px 34px;
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  border-radius: 50px;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.45);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-section .btn-hero-primary:hover {
  background: linear-gradient(135deg, #3730A3 0%, #4F46E5 100%);
  color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(79, 70, 229, 0.6);
}

.hero-section .btn-hero-secondary,
.hero-section .btn-outline-white,
.btn-outline-white {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 13px 32px;
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  border-radius: 50px;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.hero-section .btn-hero-secondary:hover,
.hero-section .btn-outline-white:hover,
.btn-outline-white:hover {
  background: #ffffff;
  color: #0F172A !important;
  border-color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.35);
}

.hero-section .hero-button-prev,
.hero-section .hero-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 300;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-section .hero-button-prev {
  left: 30px;
}

.hero-section .hero-button-next {
  right: 30px;
}

.hero-section .hero-button-prev:hover,
.hero-section .hero-button-next:hover {
  background-color: #ffffff;
  color: #000000;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.hero-swiper-pagination {
  bottom: 60px !important;
  z-index: 10;
}

.hero-swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  margin: 0 6px !important;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
  background: #ffffff;
  transform: scale(1.3);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
}

.hero-section .carousel-indicators-custom li.active {
  background-color: var(--color-white);
  transform: scale(1.15);
}

.hero-section .scroll-down-hint {
  bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
  z-index: 4;
  cursor: pointer;
}

.bi-chevron-down::before {
  display: inline-block;
  animation: bounceUpDown 1.6s infinite ease-in-out;
}

@keyframes bounceUpDown {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }
}

/* ========================================================
           NEWS SECTION (SWIPER) STYLES
           ======================================================== */
.news-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.news-section h2 {
  font-family: var(--font-title);
  font-size: 2.25rem;
  font-weight: 400;
}

.news-section .news-slider-container {
  padding: 0 60px;
}

.news-section .news-swiper {
  padding-bottom: 50px !important;
}

.news-section .news-card {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  padding: 20px;
}

.news-section .news-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.news-section .news-img-wrapper {
  aspect-ratio: 1 / 1;
  background-color: #f5f5f5;
}

.news-section .news-img-wrapper img {
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.news-section .news-card:hover .news-img-wrapper img {
  transform: scale(1.1);
}

.news-section .news-category {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: #707070;
  letter-spacing: 0.2px;
}

.news-section .news-text {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.6;
  color: #333333;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 7.8em;
}

.news-section .news-text strong {
  font-weight: 500;
  color: #000000;
}

.news-section .btn-read-more {
  color: var(--theme-primary);
  border: 1px solid var(--theme-primary);
  padding: 8px 24px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  transition: all 0.3s ease;
}

.news-section .btn-read-more:hover {
  background-color: var(--theme-primary-hover) !important;
  border-color: var(--theme-primary-hover) !important;
  color: #ffffff;
}

.news-section .swiper-button-prev-custom,
.news-section .swiper-button-next-custom {
  top: 35%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 10;
  color: #000000;
  font-size: 1.8rem;
  font-weight: 200;
  transition: opacity 0.3s ease, color 0.3s ease;
  user-select: none;
}

.news-section .swiper-button-prev-custom:hover,
.news-section .swiper-button-next-custom:hover {
  color: var(--theme-primary);
}

.news-section .swiper-button-prev-custom {
  left: 10px;
}

.news-section .swiper-button-next-custom {
  right: 10px;
}

.news-section .swiper-button-prev-custom.swiper-button-disabled,
.news-section .swiper-button-next-custom.swiper-button-disabled {
  opacity: 0.15;
  cursor: default;
  pointer-events: none;
}

.news-section .news-swiper .swiper-pagination-bullets {
  bottom: 0px !important;
}

.news-section .news-swiper .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: #d4d4d4;
  opacity: 1;
  margin: 0 6px !important;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.news-section .news-swiper .swiper-pagination-bullet-active {
  background: var(--theme-primary);
  transform: scale(1.3);
}

.news-section .btn-see-all {
  color: var(--theme-primary);
  border: 1px solid var(--theme-primary);
  padding: 12px 36px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  transition: all 0.3s ease;
}

.news-section .btn-see-all:hover {
  background-color: var(--theme-primary-hover) !important;
  border-color: var(--theme-primary-hover) !important;
  color: #ffffff;
}

.fade-up-element {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.fade-up-element.visible {
  opacity: 1;
  transform: translateY(0);
}

.animation-delay {
  transition-delay: 150ms;
}

.btn-outline-custom {
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--theme-primary);
  border: 1.5px solid var(--theme-primary);
  border-radius: var(--radius-pill);
  padding: 10px 28px;
  font-family: var(--font-title);
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
  box-shadow: 0 2px 10px rgba(79, 70, 229, 0.08);
}

.btn-outline-custom:hover {
  background-color: var(--theme-primary);
  border-color: var(--theme-primary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--theme-primary-glow);
}

.btn-primary-custom {
  background: var(--theme-gradient-glow);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-pill);
  padding: 12px 32px;
  font-family: var(--font-title);
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
  box-shadow: 0 6px 20px var(--theme-primary-glow);
}

.btn-primary-custom:hover {
  background: var(--theme-gradient-primary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(30, 27, 75, 0.3);
}

.social-icon-box {
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  color: var(--text-dark);
  border: 1px solid rgba(203, 213, 225, 0.8);
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: var(--transition-smooth);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.social-icon-box:hover {
  background: var(--theme-primary);
  border-color: var(--theme-primary);
  color: #ffffff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 16px var(--theme-primary-glow);
}

#highlightsSection {
  background: var(--theme-gradient-primary) !important;
}

#followSection {
  background-color: #F8FAFC;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.follow-swiper-container {
  position: relative;
  padding: 0 45px;
}

.follow-swiper .swiper-slide .ratio-1x1 {
  border-radius: var(--radius-md);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
}

.follow-button-prev,
.follow-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background-color: #ffffff;
  border: 1px solid rgba(203, 213, 225, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: var(--text-dark);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
  transition: var(--transition-smooth);
  font-size: 1.1rem;
  user-select: none;
}

.follow-button-prev:hover,
.follow-button-next:hover {
  background-color: var(--theme-primary);
  border-color: var(--theme-primary);
  color: #ffffff;
  box-shadow: 0 8px 20px var(--theme-primary-glow);
  transform: translateY(-50%) scale(1.08);
}

.follow-button-prev {
  left: 0;
}

.follow-button-next {
  right: 0;
}

/* FAQ Accordion & Button Colors */
.faq-accordion .accordion-button:hover,
.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--theme-primary) !important;
}

.btn-theme-primary {
  background-color: var(--theme-primary) !important;
  border-color: var(--theme-primary) !important;
  color: #ffffff !important;
}

.btn-theme-primary:hover {
  background-color: var(--theme-primary-hover) !important;
  border-color: var(--theme-primary-hover) !important;
}

/* ==========================================================================
   Browse Categories Page Specific Styles
   ========================================================================== */
:root {
  --color-burgundy: #800020;
  --color-burgundy-light: rgba(128, 0, 32, 0.08);
  --color-burgundy-hover: #600018;
}

/* Browse Categories Section */
.browse-section {
  padding: 130px 0 80px 0;
  /* Clear fixed top header */
}

.browse-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #121212;
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -0.5px;
}

.browse-subtitle {
  font-family: 'Poppins', sans-serif;
  color: #666;
  max-width: 680px;
  margin: 0 auto 35px auto;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.6;
  font-weight: 300;
}

/* Search Bar styling */
.search-container {
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  border-radius: 50px;
  overflow: hidden;
  background-color: #fff;
  border: 1px solid #eaeaea;
  padding: 6px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.search-container:focus-within {
  border-color: var(--theme-primary);
  box-shadow: 0 8px 30px rgba(69, 88, 255, 0.15);
}

.search-input {
  border: none;
  padding: 10px 25px;
  font-size: 0.95rem;
  width: 100%;
  outline: none;
  color: #333;
}

.search-input::placeholder {
  color: #999;
}

.search-btn {
  background-color: var(--theme-primary);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px 32px;
  font-weight: 500;
  transition: all 0.2s ease;
  font-family: "Poppins", sans-serif;
}

.search-btn:hover {
  background-color: var(--theme-primary-hover);
  color: #fff;
  transform: translateY(-1px);
}

/* Sidebar / Filters */
.filter-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #eaeaea;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  position: sticky;
  top: 100px;
}

.filter-header {
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #121212;
  margin-bottom: 4px;
}

.filter-subheader {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 24px;
}

.filter-group-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #b0b0b0;
  margin-bottom: 12px;
}

.filter-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 12px 18px;
  font-size: 0.92rem;
  font-weight: 500;
  color: #555;
  background: transparent;
  border: none;
  border-radius: 10px;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-item i {
  margin-right: 12px;
  font-size: 1.15rem;
  transition: color 0.2s ease;
}

.filter-item:hover {
  background-color: #f8f8f8;
  color: #121212;
}

/* Dynamic Active Highlighting Colors - Unified under Theme */
.filter-item.active {
  background-color: var(--theme-primary-light) !important;
  color: var(--theme-primary) !important;
  font-weight: 600;
}

.clear-btn {
  display: block;
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--theme-primary);
  font-weight: 600;
  text-decoration: none;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.2s ease, color 0.2s ease;
  padding: 0;
  text-align: left;
}

.clear-btn:hover {
  color: var(--theme-primary-hover);
  text-decoration: underline;
}

/* Product Grid & Cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 991.98px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .product-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}


.prod-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #eaeaea;
  padding: 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  min-height: 250px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}

.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  border-color: #eaeaea;
}

.card-header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.card-icon-container {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: #555;
  transition: all 0.25s ease;
}

/* Specific Hover Colors for icons based on active classes */
.prod-card:hover .card-icon-container {
  background-color: #f0f0f0;
}

.prod-card:hover .card-icon-container:has(~ .badge-indigo) {
  background-color: #E0E7FF;
  color: #4338CA;
}

.prod-card:hover .card-icon-container:has(~ .badge-purple) {
  background-color: #F3E8FF;
  color: #7E22CE;
}

.prod-card:hover .card-icon-container:has(~ .badge-sky) {
  background-color: #E0F2FE;
  color: #0369A1;
}

.prod-card:hover .card-icon-container:has(~ .badge-gray) {
  background-color: #F3F4F6;
  color: #4B5563;
}

.prod-card:hover .card-icon-container:has(~ .badge-blue) {
  background-color: #E8EAF6;
  color: #3F51B5;
}

.prod-card:hover .card-icon-container:has(~ .badge-green) {
  background-color: #DCFCE7;
  color: #15803D;
}

.prod-card:hover .card-icon-container:has(~ .badge-red) {
  background-color: #FEE2E2;
  color: #B91C1C;
}

.prod-card:hover .card-icon-container:has(~ .badge-amber) {
  background-color: #FEF3C7;
  color: #D97706;
}

/* Badge Custom Colors */
.badge-products {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  font-family: "Poppins", sans-serif;
}

.badge-products.badge-indigo {
  background-color: #E0E7FF;
  color: #4338CA;
}

.badge-products.badge-purple {
  background-color: #F3E8FF;
  color: #7E22CE;
}

.badge-products.badge-sky {
  background-color: #E0F2FE;
  color: #0369A1;
}

.badge-products.badge-gray {
  background-color: #F3F4F6;
  color: #4B5563;
}

.badge-products.badge-blue {
  background-color: #E8EAF6;
  color: #3F51B5;
}

.badge-products.badge-green {
  background-color: #DCFCE7;
  color: #15803D;
}

.badge-products.badge-red {
  background-color: #FEE2E2;
  color: #B91C1C;
}

.badge-products.badge-amber {
  background-color: #FEF3C7;
  color: #D97706;
}

.card-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #121212;
  margin-bottom: 8px;
}

.card-description {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 22px;
  flex-grow: 1;
  font-weight: 300;
}

.card-link {
  font-family: "Poppins", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--theme-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease, color 0.2s ease;
  margin-top: auto;
}

.card-link:hover {
  color: var(--theme-primary-hover);
  gap: 10px;
}

/* "More Categories" card variant */
.more-card {
  border-style: dashed;
  border-width: 2px;
  border-color: #d0d0d0;
  background-color: #fafafa;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 250px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.more-card:hover {
  border-color: var(--theme-primary);
  background-color: var(--theme-primary-light);
}

.more-icon {
  font-size: 2rem;
  color: var(--theme-primary);
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.more-card:hover .more-icon {
  transform: scale(1.2) rotate(90deg);
}

.more-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #121212;
  margin-bottom: 6px;
}

.more-desc {
  font-size: 0.85rem;
  color: #777;
  max-width: 200px;
  font-weight: 300;
  line-height: 1.5;
}

/* Empty state styling */
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 50px 20px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #eaeaea;
}

.empty-icon {
  font-size: 3rem;
  color: #ccc;
  margin-bottom: 15px;
}

.empty-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
}

.empty-desc {
  font-size: 0.88rem;
  color: #888;
}

/* categoryinside page css start */
.category-page-wrapper .category-hero {
  background-color: var(--bg-light);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  margin-top: 80px;
  /* Offset for fixed header */
}

.category-page-wrapper .breadcrumb-link {
  font-size: 0.85rem;
  color: var(--color-investors);
  text-decoration: none;
  transition: color 0.2s ease;
}

.category-page-wrapper .breadcrumb-link:hover {
  color: var(--color-our-company);
}

.category-page-wrapper .listing-toolbar {
  background: #ffffff;
}

.category-page-wrapper .hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-page-wrapper .hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08) !important;
}

.pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-top: 40px;
}

.pagination-number {
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark, #111827);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s ease;
}

.pagination-number:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.pagination-number.active {
  background-color: var(--theme-primary, #0E7490);
  color: #ffffff;
}

.pagination-arrow {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted, #6b7280);
  text-decoration: none;
  transition: all 0.25s ease;
}

.pagination-arrow.disabled {
  opacity: 0.4;
  pointer-events: none;
}

.pagination-arrow:hover {
  color: #000000;
}

/* categoryinside page css end */

.category-page-wrapper .btn-dark:hover {
  background-color: var(--theme-primary-hover) !important;
  border-color: var(--theme-primary-hover) !important;
  color: #ffffff !important;
}

/* Contact Page Specific Styles */
.contact-page .contact-hero {
  position: relative;
  padding: 140px 0 80px 0;
  background:
    url('/front/images/contact/contact page.webp') no-repeat center center;
  background-size: cover;
  height: 50vh;
  display: flex;
  align-items: center;
}

.contact-page .contact-hero::before {
  display: none;
}

.contact-page .contact-hero-title {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
  color: white;
}

.contact-page .contact-hero-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  font-weight: 400;
  max-width: 600px;
  color: white;
  line-height: 1.7;
}

.contact-page .contact-card-wrapper {
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.04);
  transition: var(--transition-smooth);
}

.contact-page .form-control-custom {
  background-color: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition-smooth);
  width: 100%;
}

.contact-page .form-control-custom:focus {
  background-color: #ffffff;
  border-color: var(--theme-primary);
  outline: none;
  box-shadow: 0 0 0 4px var(--theme-primary-glow);
}

.contact-page .form-group-custom {
  position: relative;
  margin-bottom: 24px;
}

.contact-page .validation-error-msg {
  color: #ef4444;
  font-size: 0.8rem;
  margin-top: 6px;
  font-weight: 500;
  display: none;
}

.contact-page .form-group-custom.has-error .form-control-custom {
  border-color: #ef4444;
  background-color: rgba(239, 68, 68, 0.02);
}

.contact-page .form-group-custom.has-error .validation-error-msg {
  display: block;
}

.contact-page .info-card-premium {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: #ffffff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 40px rgba(30, 27, 75, 0.15);
}

.contact-page .info-card-premium .rounded-3:hover {
  background: rgba(255, 255, 255, 0.16) !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
  transform: translateY(-2px);
}

.contact-page .info-list-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
}

.contact-page .info-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  color: var(--theme-shade-6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.contact-page .info-list-item:hover .info-icon-box {
  background: #ffffff;
  color: var(--theme-primary);
  transform: scale(1.05);
}

.contact-page .info-list-item a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-page .info-list-item a:hover {
  color: var(--theme-shade-6);
}

.contact-page .location-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: var(--radius-md);
  padding: 35px 30px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
}

.contact-page .location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(79, 70, 229, 0.06);
  border-color: rgba(79, 70, 229, 0.12);
}

.contact-page #highlightsSection {
  background: none !important;
}

.contact-page .success-icon-wrapper {
  width: 80px;
  height: 80px;
  animation: pulse-icon 0.8s ease-out forwards;
}

@keyframes pulse-icon {
  0% {
    transform: scale(0.6);
    box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.4);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(79, 70, 229, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(79, 70, 229, 0);
  }
}

/* contact page css end  */
/* about us page css start */

.about-hero {
  position: relative;
  padding: 160px 0 100px 0;
  background:
    url('/front/images/about/about us page (1).webp') no-repeat center center;
  background-size: cover;
  /* color: #ffffff; */
  overflow: hidden;
  height: 50vh;
}

/* .about-hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to top, #fafafa, transparent);
  z-index: 1;
} */

.pillar-card {
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(79, 70, 229, 0.08);
  border-color: rgba(79, 70, 229, 0.15);
}

.pillar-icon-box {
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
}

.pillar-card:hover .pillar-icon-box {
  background: var(--theme-primary) !important;
  color: #ffffff !important;
  transform: scale(1.05);
}

/* Timeline/Milestones styles */
.timeline-wrapper {
  position: relative;
  max-width: 800px;
  margin: 40px auto 0 auto;
  padding-left: 30px;
}

.timeline-wrapper::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: rgba(79, 70, 229, 0.15);
}

.timeline-item {
  position: relative;
  padding-bottom: 40px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -30px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid var(--theme-primary);
  transition: var(--transition-smooth);
  z-index: 2;
}

.timeline-item:hover .timeline-dot {
  background: var(--theme-primary);
  transform: scale(1.2);
}

/* about us page css end */

/* faq pass css start */

/* FAQ Accordion and Hero Styles */
.faq-accordion .accordion-item {
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  border-radius: var(--radius-md) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
  transition: var(--transition-smooth);
}

.faq-accordion .accordion-item:hover {
  border-color: rgba(79, 70, 229, 0.25) !important;
  box-shadow: 0 8px 25px rgba(79, 70, 229, 0.04);
}

/* Open/Expanded Accordion Item: Logo Primary Color Border & Glow */
.faq-accordion .accordion-item:has(.accordion-button:not(.collapsed)),
.faq-accordion .accordion-item.active {
  border-color: var(--theme-primary) !important;
  box-shadow: 0 8px 25px rgba(79, 70, 229, 0.12) !important;
}

.faq-accordion .accordion-button {
  border: none !important;
  box-shadow: none !important;
  transition: var(--transition-smooth);
}

/* Open Accordion Header Button: Logo Primary Color Text & Background */
.faq-accordion .accordion-button:not(.collapsed) {
  background-color: rgba(79, 70, 229, 0.05) !important;
  color: var(--theme-primary) !important;
  font-weight: 600;
}

/* Open Accordion Arrow Icon: Logo Primary Color */
.faq-accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234f46e5'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.faq-accordion .accordion-body {
  background-color: rgba(79, 70, 229, 0.02);
}

.faq-hero {
  position: relative;
  padding: 160px 0 120px 0;
  background: url('/front/images/faq/FAQ page banner.webp') no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 50vh;
}

.faq-hero::before {
  display: none;
}

.faq-hero-title {
  font-family: var(--font-title);
  font-size: clamp(5rem, 15vw, 12rem);
  font-weight: 900;
  color: white;
  letter-spacing: -5px;
  line-height: 1;
  margin: 0;
  text-align: center;
}

/* faq pass css end */

/* ==========================================================================
   BLOG DETAIL PAGE STYLES (Scoped with body.blog-detail)
   ========================================================================== */

/* Section 1: Hero Banner */
body.blog-detail .blog-hero {
  position: relative;
  padding: 160px 0 90px 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(30, 27, 75, 0.88) 50%, rgba(79, 70, 229, 0.78) 100%),
    url('https://images.unsplash.com/photo-1541888946425-d0fbb186a5b3?q=80&w=1920') no-repeat center center;
  background-size: cover;
  color: #ffffff;
  overflow: hidden;
  min-height: 480px;
}

body.blog-detail .blog-hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: linear-gradient(to top, #fafafa, transparent);
  z-index: 1;
}

body.blog-detail .blog-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c7d2fe;
  margin-bottom: 18px;
}

body.blog-detail .blog-hero-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  color: #ffffff;
}

body.blog-detail .blog-hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Poppins', sans-serif;
}

/* Section 2: Article Content */
body.blog-detail .blog-article-body {
  font-family: 'Poppins', sans-serif;
  color: #334155;
  font-size: 1.05rem;
  line-height: 1.85;
}

body.blog-detail .blog-article-body h2 {
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #0f172a;
  margin-top: 40px;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
  position: relative;
}

body.blog-detail .blog-article-body h3 {
  font-family: var(--font-title);
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  font-weight: 600;
  color: #1e1b4b;
  margin-top: 30px;
  margin-bottom: 14px;
}

body.blog-detail .blog-article-body p {
  margin-bottom: 22px;
}

body.blog-detail .blog-article-quote {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(99, 102, 241, 0.08) 100%);
  border-left: 5px solid var(--theme-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 26px 30px;
  margin: 35px 0;
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 500;
  color: #1e1b4b;
  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.03);
}

body.blog-detail .blog-article-image-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 40px 0 15px 0;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
  position: relative;
}

body.blog-detail .blog-article-image-box img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

body.blog-detail .blog-article-image-box:hover img {
  transform: scale(1.03);
}

body.blog-detail .blog-image-caption {
  font-size: 0.85rem;
  color: #64748b;
  text-align: center;
  margin-bottom: 30px;
  font-style: italic;
}

body.blog-detail .key-takeaways-card {
  background: #ffffff;
  border: 1px solid rgba(79, 70, 229, 0.15);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 40px 0;
  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.05);
}

body.blog-detail .key-takeaways-card h4 {
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--theme-shade-1);
  font-size: 1.25rem;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

body.blog-detail .key-takeaways-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

body.blog-detail .key-takeaways-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  color: #475569;
}

body.blog-detail .key-takeaways-list li::before {
  content: '\F26B';
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--theme-primary);
  font-weight: bold;
}

body.blog-detail .sidebar-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  margin-bottom: 30px;
}

body.blog-detail .sidebar-title {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(79, 70, 229, 0.1);
}

/* Section 3: FAQ Accordion */
body.blog-detail .faq-section {
  background: #ffffff;
  position: relative;
}

body.blog-detail .faq-accordion .accordion-item {
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  border-radius: var(--radius-md) !important;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.02);
  transition: var(--transition-smooth);
}

body.blog-detail .faq-accordion .accordion-item:hover {
  border-color: rgba(79, 70, 229, 0.25) !important;
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.05);
}

body.blog-detail .faq-accordion .accordion-button {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.08rem;
  color: #0f172a;
  padding: 22px 26px;
  background-color: #ffffff;
  box-shadow: none !important;
}

body.blog-detail .faq-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.03) 0%, rgba(99, 102, 241, 0.06) 100%);
  color: var(--theme-primary);
}

body.blog-detail .faq-accordion .accordion-button::after {
  background-size: 1.1rem;
  transition: transform 0.3s ease;
}

body.blog-detail .faq-accordion .accordion-body {
  padding: 12px 26px 26px 26px;
  font-size: 0.98rem;
  line-height: 1.75;
  color: #475569;
  background-color: rgba(79, 70, 229, 0.01);
}

/* Section 4: Related Posts Carousel */
body.blog-detail .related-posts-section {
  background: #fafafa;
  padding: 80px 0;
  position: relative;
}

body.blog-detail .related-posts-title {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #111827;
  text-align: center;
  margin-bottom: 50px;
}

body.blog-detail .related-card {
  background: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

body.blog-detail .related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

body.blog-detail .related-card-banner {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

body.blog-detail .related-card-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.blog-detail .related-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 78%;
  height: 100%;
  background: linear-gradient(135deg, #0e3a6c 0%, #155bb5 65%, rgba(21, 91, 181, 0) 100%);
  clip-path: polygon(0 0, 100% 0, 70% 100%, 0% 100%);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #ffffff;
  z-index: 2;
}

body.blog-detail .related-card-brand-logo {
  font-family: var(--font-title);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}

body.blog-detail .related-card-banner-headline {
  font-family: var(--font-title);
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.25;
  margin-top: auto;
  margin-bottom: 6px;
  padding-right: 15px;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

body.blog-detail .related-card-banner-sub {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

body.blog-detail .related-card-body {
  padding: 20px 22px 24px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

body.blog-detail .related-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.82rem;
  color: #64748b;
  margin-bottom: 12px;
  font-family: 'Poppins', sans-serif;
}

body.blog-detail .related-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

body.blog-detail .related-card-title {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #1e293b;
  line-height: 1.35;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

body.blog-detail .related-card:hover .related-card-title {
  color: var(--theme-primary);
}

body.blog-detail .related-swiper-wrapper {
  position: relative;
  padding: 0 50px;
}

body.blog-detail .related-nav-prev,
body.blog-detail .related-nav-next {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #0e3a6c;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(14, 58, 108, 0.3);
  border: none;
}

body.blog-detail .related-nav-prev {
  left: 0;
}

body.blog-detail .related-nav-next {
  right: 0;
}

body.blog-detail .related-nav-prev:hover,
body.blog-detail .related-nav-next:hover {
  background-color: var(--theme-primary);
  transform: translateY(-50%) scale(1.1);
  color: #ffffff;
}

body.blog-detail .related-swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 35px;
}

body.blog-detail .related-swiper-pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  background-color: #cbd5e1;
  opacity: 1;
  border-radius: 50%;
  transition: all 0.3s ease;
  margin: 0 !important;
}

body.blog-detail .related-swiper-pagination .swiper-pagination-bullet-active {
  background-color: #0e3a6c;
  width: 11px;
  height: 11px;
}

/* Section 5: Form */
body.blog-detail .sourcing-form-section {
  background: #ffffff;
  padding: 80px 0;
}

body.blog-detail .sourcing-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.04);
  max-width: 900px;
  margin: 0 auto;
}

body.blog-detail .sourcing-card-title {
  font-family: var(--font-title);
  font-size: 2.1rem;
  font-weight: 700;
  color: #1e1b4b;
  margin-bottom: 8px;
}

body.blog-detail .sourcing-card-subtitle {
  font-size: 0.95rem;
  color: #64748b;
  margin-bottom: 32px;
}

body.blog-detail .sourcing-field-group {
  margin-bottom: 24px;
  position: relative;
}

body.blog-detail .sourcing-label {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.92rem;
  color: #1e293b;
  margin-bottom: 8px;
  display: block;
}

body.blog-detail .sourcing-label span {
  color: #ef4444;
}

body.blog-detail .sourcing-input {
  width: 100%;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 14px 18px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: #1e293b;
  transition: all 0.25s ease;
}

body.blog-detail .sourcing-input::placeholder {
  color: #94a3b8;
}

body.blog-detail .sourcing-input:focus {
  background-color: #ffffff;
  border-color: #6366f1;
  outline: none;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15);
}

body.blog-detail select.sourcing-input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23334155' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 14px;
  padding-right: 42px;
}

body.blog-detail .btn-submit-sourcing {
  width: 100%;
  background-color: #5b50ec;
  color: #ffffff;
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: 50px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(91, 80, 236, 0.35);
  margin-top: 10px;
}

body.blog-detail .btn-submit-sourcing:hover {
  background-color: #473dc8;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(91, 80, 236, 0.5);
}

body.blog-detail .sourcing-field-group.has-error .sourcing-input {
  border-color: #ef4444;
  background-color: rgba(239, 68, 68, 0.03);
}

body.blog-detail .sourcing-field-group .error-msg {
  color: #ef4444;
  font-size: 0.8rem;
  margin-top: 5px;
  display: none;
  font-weight: 500;
}

body.blog-detail .sourcing-field-group.has-error .error-msg {
  display: block;
}

/* Sticky Section Navigation Bar (Givaudan Style 3-Box Bar) */
body.blog-detail .blog-sticky-subnav {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  z-index: 990;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s;
}

body.blog-detail .blog-sticky-subnav.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

body.blog-detail .subnav-grid {
  display: flex;
  width: 100%;
  margin: 0;
  padding: 0;
}

body.blog-detail .subnav-item {
  flex: 1;
  text-align: center;
  padding: 16px 20px;
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 500;
  color: #475569;
  text-decoration: none !important;
  position: relative;
  border-right: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.25s ease;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
}

body.blog-detail .subnav-item:last-child {
  border-right: none;
}

body.blog-detail .subnav-item:hover {
  color: var(--theme-primary);
  background-color: #f8fafc;
}

/* Active State Underline Bar (Matching Screenshot 100%) */
body.blog-detail .subnav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--theme-primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

body.blog-detail .subnav-item.active {
  color: var(--theme-primary);
  font-weight: 600;
  background-color: #ffffff;
}

body.blog-detail .subnav-item.active::after {
  transform: scaleX(1);
}

/* blog-detail page css end */

/* blog page css start */
.blog-listing-hero {
  height: 50vh;
  padding-top: 140px;
  padding-bottom: 60px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.88) 0%, rgba(14, 116, 144, 0.85) 100%),
    url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?q=80&w=1600') center/cover no-repeat;
  color: #ffffff;
  display: flex;
  align-items: center;
  position: relative;
}

.blog-hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--color-blog, #0E7490);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50rem;
}

.blog-clean-card {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  height: auto;
}

.blog-clean-card-img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, height 0.3s ease;
}

.hover-top {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hover-top:hover {
  transform: translateY(-6px);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.12) !important;
}

.blog-clean-card:hover .blog-clean-card-img {
  transform: translateY(-3px);
}

.blog-card-title-underlined {
  font-family: var(--font-title, "Poppins", sans-serif);
  margin-bottom: 0.75rem;
}

.blog-card-title-underlined a,
.card-title a {
  font-weight: 700;
  color: #111827;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

.blog-card-title-underlined a:hover,
.card-title a:hover {
  color: #0E7490;
  text-decoration: none !important;
}

.blog-clean-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #6b7280;
  margin-bottom: 0;
}

.blog-read-article {
  color: var(--theme-primary) !important;
  transition: color 0.25s ease;
}

.blog-read-article i {
  transition: transform 0.25s ease;
}

.card:hover .blog-read-article,
.blog-read-article:hover {
  color: var(--theme-primary-hover) !important;
}

.card:hover .blog-read-article i,
.blog-read-article:hover i {
  transform: translateX(5px);
}

/* new design css start */

/* ==========================================================================
   SERVICES TABS SECTION (WHAT WE DO - DITO MATCH)
   ========================================================================== */
.services-tabs-section {
  position: relative;
  background: radial-gradient(circle at 80% 50%, var(--theme-shade-4, #4338CA) 0%, var(--theme-shade-2, #312E81) 55%, var(--theme-shade-1, #1E1B4B) 100%);
  padding: 90px 0 100px 0;
  overflow: hidden;
}

.services-shape-34 {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  max-width: 50%;
  pointer-events: none;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.services-shape-img {
  height: 100%;
  width: auto;
  max-height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: 0.85;
}

.services-sub-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.services-badge-text {
  font-family: var(--font-title, "Poppins", sans-serif);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #ffffff;
  text-transform: uppercase;
}

.services-main-title {
  font-family: var(--font-title, "Poppins", sans-serif);
  font-size: clamp(1.85rem, 3.2vw, 2.55rem);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin: 0;
}

.services-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  color: #ffffff !important;
  font-family: var(--font-title, "Poppins", sans-serif);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.services-all-btn:hover {
  background: #ffffff;
  color: var(--theme-shade-1, #1E1B4B) !important;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--theme-primary-glow, rgba(79, 70, 229, 0.25));
}

.services-tab-btn {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 18px 36px 18px 24px;
  background: #ffffff;
  border: none;
  outline: none;
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 50%, calc(100% - 22px) 100%, 0 100%);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--theme-shade-1, #1E1B4B);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  border-radius: 0;
}

.services-tab-btn .services-tab-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-primary, #4F46E5);
  transition: color 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
}

.services-tab-btn .services-tab-text {
  font-family: var(--font-title, "Poppins", sans-serif);
  font-size: 16.5px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--theme-shade-1, #1E1B4B);
  transition: color 0.3s ease;
}

.services-tab-btn:hover:not(.active) {
  background: #f8fafc;
  transform: translateX(4px);
}

.services-tab-btn:hover:not(.active) .services-tab-text {
  color: var(--theme-primary, #4F46E5);
}

.services-tab-btn.active {
  background: var(--theme-gradient-glow, linear-gradient(135deg, #4F46E5 0%, #6366F1 100%));
  box-shadow: 0 10px 25px var(--theme-primary-glow, rgba(79, 70, 229, 0.35));
  transform: translateX(6px);
}

.services-tab-btn.active .services-tab-icon {
  color: #ffffff;
  transform: scale(1.08);
}

.services-tab-btn.active .services-tab-text {
  color: #ffffff;
}

.services-tab-content-card {
  background: #ffffff;
  border-radius: 4px;
  padding: 30px 26px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.25);
  min-height: 400px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.services-content-img-box {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  height: 340px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.services-content-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.services-content-img-box:hover .services-content-img {
  transform: scale(1.04);
}

.services-content-title {
  font-family: var(--font-title, "Poppins", sans-serif);
  font-size: clamp(1.2rem, 1.85vw, 1.45rem);
  font-weight: 900;
  letter-spacing: -0.3px;
  text-transform: uppercase;
  color: var(--text-dark, #111827);
  overflow-wrap: break-word;
  word-break: normal;
}

.services-content-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--text-muted, #64748b);
  margin: 0;
}

.services-content-desc strong {
  color: var(--theme-primary, #4F46E5);
  font-weight: 700;
}


/* ==========================================================================
   WORKING PROCESS SECTION (DITO MATCH)
   ========================================================================== */
.work-process-section {
  position: relative;
  background-color: #ffffff;
  background-image: url('../images/home/process-bg.png');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  padding: 90px 0 100px 0;
}

.work-process-main-title {
  font-family: var(--font-title, "Poppins", sans-serif);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 900;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: var(--text-dark, #111827);
  margin: 0;
}

.work-process-line {
  position: absolute;
  top: 32px;
  left: 0;
  width: 100%;
  height: 64px;
  z-index: 1;
  pointer-events: none;
}

.work-process-line svg {
  display: block;
}

.work-process-line svg path {
  stroke: var(--theme-primary, #4F46E5);
}

.work-process-card {
  padding: 10px;
  position: relative;
  z-index: 2;
  cursor: pointer;
}

.work-process-icon-wrap {
  width: 96px;
  height: 96px;
  position: relative;
}

.work-process-icon-circle {
  width: 96px;
  height: 96px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--theme-primary-light, rgba(79, 70, 229, 0.08));
  color: var(--theme-primary, #4F46E5);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    color 0.35s ease;
  margin: 0 auto;
}

.work-process-icon-circle .work-process-svg {
  transition: transform 0.35s ease, color 0.35s ease;
}

.work-process-icon-circle .svg-cutout {
  fill: #ffffff;
  transition: fill 0.35s ease;
}

/* On Hover: Circle Background becomes Theme Logo Color, Icon becomes Pure White */
.work-process-card:hover .work-process-icon-circle {
  transform: translateY(-6px);
  background-color: var(--theme-primary, #4F46E5);
  border-color: var(--theme-primary, #4F46E5);
  box-shadow: 0 16px 36px var(--theme-primary-glow, rgba(79, 70, 229, 0.35));
  color: #ffffff;
}

.work-process-card:hover .work-process-icon-circle .work-process-svg {
  color: #ffffff;
  transform: scale(1.08);
}

.work-process-card:hover .work-process-icon-circle .svg-cutout {
  fill: var(--theme-primary, #4F46E5);
}

.work-process-num {
  position: absolute;
  top: -2px;
  left: 2px;
  width: 28px;
  height: 28px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  color: var(--theme-primary, #4F46E5);
  font-family: var(--font-title, "Poppins", sans-serif);
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  border: 1px solid var(--theme-primary-light, #eef2f6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-process-card:hover .work-process-num {
  transform: scale(1.06);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.work-process-title {
  font-family: var(--font-title, "Poppins", sans-serif);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-dark, #111827);
  transition: color 0.3s ease;
}

.work-process-card:hover .work-process-title {
  color: var(--theme-primary, #4F46E5);
}

.work-process-text {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted, #64748b);
  max-width: 320px;
  margin: 0 auto;
}

/* TEXT SLIDER CSS START */

.text-slider-section .slide-box svg path {
  fill: var(--theme-primary);
}

.text-slider-box {
  display: flex;
  position: relative;
  animation: aspro-scroller 27s linear infinite;
  will-change: transform;
  white-space: nowrap;
  gap: 10px;
}

.text-slider-box .slide-box {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
}

.text-slider-box .slide-box h1 {
  font-size: 32px;
  font-style: normal;
  text-transform: uppercase;
}

@keyframes aspro-scroller {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-100%, 0);
  }
}

@keyframes aspro-scroller-reverse {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(100%, 0);
  }
}

/* TEXT SLIDER CSS END */

/* ==========================================================================
   ABOUT US SECTION (SCAFFOLDING & SHUTTERING SOLUTIONS - DITO MATCH)
   ========================================================================== */
.about-2-section {
  background-color: #ffffff;
  padding: 90px 0;
}

.about-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 430px;
  margin-left: 65px;
  margin-right: 0;
}

.about-dots-pattern {
  position: absolute;
  top: 14%;
  left: -65px;
  width: 50px;
  height: 165px;
  background-image: radial-gradient(circle, #1e293b 1.5px, transparent 1.5px);
  background-size: 10px 15px;
  background-repeat: repeat;
  opacity: 0.45;
  z-index: 1;
}

.about-main-img-box {
  position: relative;
  z-index: 2;
  border-radius: 0 140px 0 0;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.about-main-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.about-small-img-box {
  position: absolute;
  bottom: 12%;
  right: -50px;
  width: 62%;
  max-width: 270px;
  aspect-ratio: 1 / 1;
  border: 14px solid #ffffff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.16);
  z-index: 3;
}

.about-small-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Subtitle Badge */
.about-sub-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.about-badge-text {
  font-family: var(--font-title, "Poppins", sans-serif);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--text-dark, #111827);
  text-transform: uppercase;
}

/* Headline */
.about-heading {
  font-family: var(--font-title, "Poppins", sans-serif);
  font-size: clamp(1.95rem, 3.2vw, 2.65rem);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: var(--text-dark, #111827);
  margin-bottom: 24px;
}

/* Description */
.about-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--text-muted, #64748b);
  margin-bottom: 28px;
}

.about-desc strong {
  color: var(--text-dark, #1e293b);
  font-weight: 600;
}

/* Features Checklist */
.about-features-grid {
  margin-bottom: 34px !important;
}

.about-checklist li {
  font-family: 'Poppins', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-dark, #1e293b);
  line-height: 1.4;
  margin-bottom: 14px !important;
}

.about-checklist .check-icon {
  flex-shrink: 0;
  color: var(--theme-primary, #4F46E5);
  font-size: 19px;
  line-height: 1;
}

.about-checklist .check-icon path {
  stroke: var(--theme-primary, #4F46E5);
}

/* Explore Products CTA Button */
.about-explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--theme-gradient-glow, linear-gradient(135deg, #4F46E5 0%, #6366F1 100%));
  color: #ffffff !important;
  font-family: var(--font-title, "Poppins", sans-serif);
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  box-shadow: 0 6px 20px var(--theme-primary-glow, rgba(79, 70, 229, 0.3));
}

.about-explore-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px var(--theme-primary-glow, rgba(79, 70, 229, 0.45));
  background: var(--theme-primary-hover, #3730A3);
}

.about-explore-btn .btn-pipe {
  opacity: 0.6;
  font-weight: 400;
}

.about-explore-btn i {
  font-size: 15px;
  transition: transform 0.25s ease;
}

.about-explore-btn:hover i {
  transform: translateX(4px);
}

/* ==========================================================================
   CLIENTS / PARTNERS CONTINUOUS RUNNING LOGO TICKER
   ========================================================================== */
.clients-ticker-section {
  position: relative;
  width: 100%;
  background: #ffffff;
  border-top: none;
  border-bottom: 1px solid #eef2f6;
  padding: 38px 0;
  overflow: hidden;
  z-index: 10;
}

.clients-ticker-wrap {
  display: flex;
  width: 100%;
  overflow: hidden;
  user-select: none;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent 100%);
}

.clients-ticker-track {
  display: flex;
  width: max-content;
  flex-shrink: 0;
  align-items: center;
  animation: tickerContinuous 28s linear infinite;
  will-change: transform;
}

.clients-ticker-track:hover {
  animation-play-state: paused;
}

.clients-ticker-group {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-shrink: 0;
  gap: 80px;
  padding-right: 80px;
}

.client-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 80px;
  padding: 0 12px;
  transition: transform 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
}

.client-logo-item img {
  max-height: 65px;
  max-width: 220px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(10%) opacity(0.92);
  transition: filter 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}

.client-logo-item:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.08);
}

@keyframes tickerContinuous {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* second sec css start */

.bg-color-1 {
  background: var(--theme-color-1);
}

.features-section .bg-shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: bottom left;
}

.features-section .bg-shape-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: bottom right;
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

.features-box-area {
  padding: 30px 30px 25px 30px;
  background: #fff;
  min-height: 360px;
}

.features-box-area:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: var(--theme-color);
  transition: all 700ms ease;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.features-box-area:hover:before {
  width: 100%;
  left: 0;
}

.features-box-area .shape-3 {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-repeat: no-repeat;
  background-position: top right;
  z-index: 1;
}

.features-box-area .icon-box {
  font-size: 50px;
  color: var(--theme-color);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.features-box-area .icon-box svg {
  transition: fill 0.3s ease, stroke 0.3s ease;
}

.features-box-area .icon-box svg path,
.features-box-area .icon-box svg g,
.features-box-area .icon-box svg circle,
.features-box-area .icon-box svg line,
.features-box-area .icon-box svg rect,
.features-box-area .icon-box svg polygon {
  transition: fill 0.3s ease, stroke 0.3s ease;
}

svg#Capa_1,
svg#Layer_1,
svg#_x32_ {
  width: 50px;
  height: 50px;
}

.mt-20 {
  margin-top: 20px;
}

.mb-10 {
  margin-bottom: 10px;
}

.features-box-area h5 {
  position: relative;
  z-index: 2;
}

.features-box-area h5 a {
  color: var(--bs-black);
  transition: color 0.3s ease;
}

.features-box-area p {
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.features-box-area:hover .shape-3 {
  opacity: 1;
}

.features-box-area:hover .icon-box,
.features-box-area:hover p {
  color: #fff;
}

.features-box-area:hover h5 a {
  color: #fff;
}

.features-box-area:hover .icon-box svg {
  fill: #fff;
  color: #fff;
}

.features-box-area:hover .icon-box svg path,
.features-box-area:hover .icon-box svg g {
  fill: #fff;
}

.features-box-area:hover .icon-box svg[fill="none"] {
  fill: none;
}

.features-box-area:hover .icon-box svg[fill="none"] path,
.features-box-area:hover .icon-box svg[fill="none"] circle,
.features-box-area:hover .icon-box svg[fill="none"] line,
.features-box-area:hover .icon-box svg[fill="none"] rect {
  fill: none;
}

.features-box-area:hover .icon-box svg[stroke],
.features-box-area:hover .icon-box svg [stroke],
.features-box-area:hover .icon-box svg line,
.features-box-area:hover .icon-box svg circle {
  stroke: #fff;
}

/* ==========================================================================
   GET SUPPORT FORM SECTION (DITO MATCH)
   ========================================================================== */
.get-support-section {
  position: relative;
  background-color: #f8fafc;
  background-image: radial-gradient(circle at 75% 50%, rgba(0, 48, 135, 0.04) 0%, rgba(248, 250, 252, 0.95) 70%);
  padding: 90px 0;
  overflow: hidden;
}

/* 1. Whole Section Background Layer */
.support-sec-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/home/form-bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  pointer-events: none;
  z-index: 1;
}

/* 2. Left Side Image */
.support-left-img-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 34%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
}

.support-left-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  display: block;
}

/* 3. Right Top Background Shape */
.support-right-shape-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 35vw;
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
}

.support-right-shape-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Centered Form Card */
.support-form-card {
  position: relative;
  left: 40px;
  z-index: 5;
  background: linear-gradient(1deg, #1E1B4B 0%, #3730A3 50%, #4338CA 100%);
  max-width: 860px;
}

.support-badge-text {
  font-family: var(--font-title, "Poppins", sans-serif);
  letter-spacing: 1.2px;
}

.support-heading {
  font-family: var(--font-title, "Poppins", sans-serif);
}

/* Submit Button Custom Styling */
.support-submit-btn {
  background-color: white !important;
  color: var(--theme-shade-2) !important;
  border-radius: 20px !important;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-family: var(--font-title, "Poppins", sans-serif);
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.support-submit-btn:hover {
  background-color: var(--theme-shade-4) !important;
  color: white !important;
  /* border-color: rgba(255, 255, 255, 0.5); */
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(1, 2, 14, 0.45) !important;
}

/* ==========================================================================
   TEXT SLIDER / MARQUEE TICKER SECTION (CONTINUOUS RUNNING)
   ========================================================================== */
.text-slider-section {
  position: relative;
  width: 100%;
  background: #ffffff;
  padding: 55px 0;
  overflow: hidden;
  user-select: none;
  border-top: 1px solid rgba(0, 48, 135, 0.08);
  border-bottom: 1px solid rgba(0, 48, 135, 0.08);
  display: flex;
  align-items: center;
}

.text-slider-wrap {
  display: flex;
  width: 100%;
  overflow: hidden;
  user-select: none;
}

.text-slider-track {
  display: flex;
  width: max-content;
  flex-shrink: 0;
  align-items: center;
  animation: textSliderContinuous 24s linear infinite;
  will-change: transform;
}

.text-slider-track:hover {
  animation-play-state: paused;
}

.text-slider-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.slide-item {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.slide-text {
  /* font-family: var(--font-title, "Poppins", sans-serif); */
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #000000;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}

.slide-star {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0 26px;
}

.slide-star svg {
  width: 32px;
  height: 32px;
  display: block;
}

.slide-star svg path {
  fill: var(--theme-shade-5);
}

@keyframes textSliderContinuous {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* second sec css end */

/* ==========================================================================
   ABOUT PAGE CSS START
   ========================================================================== */

.aboutus-image-area {
  position: relative;
}

.aboutus-dashed-box {
  border: 1px dashed var(--theme-shade-1);
  padding: 24px;
  /* width: 90%; */
}

.aboutus-image-main {
  width: 82%;
}

.aboutus-image-main img {
  width: 100%;
  height: auto;
}

.aboutus-image-secondary {
  position: absolute;
  right: 0;
  bottom: 71px;
  z-index: 2;
  /* width: 44%; */
  border: 8px solid var(--color-white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  background: var(--color-white);
}

.aboutus-subtitle {
  font-family: var(--font-title);
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--theme-primary);
}

.aboutus-subtitle i {
  font-size: 0.45rem;
}

.aboutus-title {
  font-family: var(--font-title);
  font-size: clamp(1.85rem, 3.5vw, 2.40rem);
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.aboutus-description {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.aboutus-feature-box {
  border-bottom: 1px solid rgba(100, 116, 139, 0.1);
}

.aboutus-feature-icon {
  width: 50px;
  height: 50px;
  background: var(--theme-primary-light);
  color: var(--theme-primary);
  font-size: 1.3rem;
  transition: var(--transition-smooth);
}

.aboutus-feature-box:hover .aboutus-feature-icon {
  background: var(--theme-primary);
  color: var(--color-white);
}

.aboutus-feature-box p {
  font-size: 0.92rem;
  line-height: 1.7;
}

.aboutus-cta-btn {
  padding: 14px 32px;
  font-family: var(--font-title);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  color: var(--color-white);
  background: var(--theme-primary);
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
}

.aboutus-cta-btn:hover {
  background: var(--theme-primary-hover);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--theme-primary-glow);
}

.aboutus-cta-btn:hover i {
  transform: translateX(4px);
}

.aboutus-cta-btn i {
  transition: transform 0.3s ease;
}

/* --- Mission & Vision Section --- */
.aboutus-mission-section {
  /* background: linear-gradient(135deg, var(--theme-shade-1), var(--theme-shade-4), var(--theme-shade-3)); */
  /* background-color: var(--theme-shade-); */
  overflow: hidden;
}

.mission-subtitle {
  font-family: var(--font-title);
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--color-white);
}

.mission-subtitle i {
  font-size: 0.45rem;
}

.mission-title {
  font-family: var(--font-title);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.mission-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.mission-item:last-child {
  border-bottom: none;
}

.mission-icon-box {
  position: relative;
  overflow: hidden;
  width: 75px;
  height: 75px;
  font-size: 1.4rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition-smooth);
}

.mission-icon-box i {
  position: relative;
  z-index: 2;
  transition: color 400ms ease;
}

.mission-icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  transform: scale(0);
  background: var(--theme-primary);
  transition: all 700ms ease;
  z-index: 1;
}

.mission-item:hover .mission-icon-box::before,
.mission-icon-box:hover::before {
  transform: scale(1, 1);
}

.mission-item:hover .mission-icon-box i,
.mission-icon-box:hover i {
  color: var(--color-white) !important;
}

.mission-item-title {
  font-family: var(--font-title);
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.mission-item-desc {
  font-size: 0.93rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

.mission-img {
  max-height: 480px;
  object-fit: contain;
}

/* .bi-circle-fill::before{
  width: 36px;
} */

/* --- What Defines Us Section --- */
.aboutus-defines-section {
  background-color: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.defines-bg-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background-repeat: no-repeat;
  background-position: top right;
  opacity: 0.6;
  pointer-events: none;
}

.defines-subtitle {
  font-family: var(--font-title);
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--theme-primary);
}

.defines-subtitle i {
  font-size: 0.45rem;
}

.defines-title {
  font-family: var(--font-title);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.defines-intro-text {
  font-size: 1rem;
  line-height: 1.75;
}

.defines-list-item {
  font-size: 0.95rem;
  line-height: 1.7;
}

.defines-list-item i {
  color: var(--theme-primary) !important;
}

/* --- Our Approach Section --- */
.aboutus-approach-section {
  background: linear-gradient(180deg, #f8fafc 0%, rgba(79, 70, 229, 0.05) 100%);
  border-top: 1px solid rgba(79, 70, 229, 0.08);
  position: relative;
}


.approach-subtitle {
  font-family: var(--font-title);
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--theme-primary);
}

.approach-subtitle i {
  font-size: 0.45rem;
}

.approach-title {
  font-family: var(--font-title);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.approach-item {
  /* padding: 20px; */
  position: relative;
  z-index: 1;
}

.approach-icon-box {
  width: 100px;
  height: 100px;
  position: relative;
  margin: 0 auto;
}

.approach-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  font-size: 38px;
  background: #fff;
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.08);
  color: var(--theme-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.approach-circle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--theme-primary);
  border-radius: 50%;
  transform: scale(0);
  transition: all 500ms ease;
}

.approach-item:hover .approach-circle i {
  color: #fff;
  position: relative;
  z-index: 2;
}

.approach-item:hover .approach-circle::before {
  transform: scale(1, 1);
}

.approach-step-badge {
  position: absolute;
  top: -3px;
  left: -5px;
  width: 34px;
  height: 34px;
  background: #fff;
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  font-size: 16px;
  font-family: var(--font-title);
  color: var(--theme-primary);
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.approach-item-title {
  font-family: var(--font-title);
  font-size: 1.1rem;
  color: var(--text-dark);
  letter-spacing: 0.5px;
}

.approach-item-desc {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ==========================================================================
   ABOUT PAGE CSS END
   ========================================================================== */

/* PRODUCT DETAIL PAGE start */

.product-detail-main-section {
  background-color: #ffffff;
}

.product-banner-image-wrap {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(15, 23, 42, 0.04);
}

.product-banner-image-wrap img,
.main-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.4s ease;
}

.product-banner-image-wrap:hover img,
.product-banner-image-wrap:hover .main-product-img {
  transform: scale(1.03);
}

/* Category & Product Cards Image Containers - Responsive 4:3 Aspect Ratio (Overrides inline heights) */
.category-card-img-wrap,
.product-card-img-wrap,
.product-item .card>.position-relative {
  width: 100%;
  height: auto !important;
  aspect-ratio: 4 / 3 !important;
  background-color: #f1f5f9;
  overflow: hidden;
  position: relative;
}

.category-card-img-wrap img,
.product-card-img-wrap img,
.product-item .card>.position-relative img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.4s ease;
}

.card:hover .category-card-img-wrap img,
.card:hover .product-card-img-wrap img,
.card:hover .product-item .card>.position-relative img {
  transform: scale(1.04);
}

.btn-product-detail {
  background: var(--theme-gradient-glow);
  color: #ffffff !important;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 8px 16px;
  border-radius: 4px;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  border: none;
  text-decoration: none;
  box-shadow: 0 4px 12px var(--theme-primary-glow);
}

.card:hover .btn-product-detail,
.btn-product-detail:hover {
  background: var(--theme-gradient-primary);
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(30, 27, 75, 0.25);
}

/* Product Tabs & Bullet Lists */
.product-pills-bar {
  background-color: #f1f5f9;
  border-radius: 4px;
  padding: 4px;
}

.product-pills-bar .nav-link {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 14px !important;
  border-radius: 3px;
  background: transparent;
  border: none;
}

.product-pills-bar .nav-link.active {
  background-color: var(--color-white, #fff) !important;
  color: var(--theme-shade-1) !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.product-specs-list {
  padding-left: 0;
  margin-bottom: 0;
}

.product-specs-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.product-specs-list li::before {
  content: "•";
  position: absolute;
  left: 6px;
  top: -5px;
  font-size: 1.25rem;
  color: var(--theme-shade-1);
}

.product-specs-list li strong {
  color: var(--text-dark);
}

/* Sidebar Cards & Forms */
.request-info-card,
.rep-contact-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  background-color: #ffffff;
  border-radius: 2px;
}

.request-info-header,
.rep-contact-header {
  background-color: var(--theme-shade-1, #1E1B4B);
  color: #ffffff;
  font-family: var(--font-title);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 12px 16px;
  text-align: center;
  text-transform: uppercase;
}

.request-info-body,
.rep-contact-body {
  padding: 20px 18px;
}

.request-info-body .form-control,
.request-info-body .form-select {
  background-color: #f3f4f6;
  border: 1px solid transparent;
  font-size: 0.88rem;
  padding: 9px 12px;
  color: var(--text-dark);
  border-radius: 2px;
}

.request-info-body .form-control:focus,
.request-info-body .form-select:focus {
  background-color: #ffffff;
  border-color: var(--theme-primary);
  box-shadow: 0 0 0 3px var(--theme-primary-light);
  outline: none;
}

.request-info-note {
  font-size: 0.76rem;
  line-height: 1.45;
  color: var(--text-muted);
  margin: 12px 0 16px 0;
}

.btn-send-message {
  background-color: #5c5c5c;
  color: #ffffff;
  font-size: 0.88rem;
  padding: 8px 26px;
  border: none;
  border-radius: 2px;
  transition: all 0.25s ease;
}

.btn-send-message:hover {
  background-color: var(--theme-primary);
  color: #ffffff;
}

.rep-pill-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid var(--theme-shade-1);
  background-color: #ffffff;
  border-radius: 3px;
  font-size: 0.88rem;
  color: var(--theme-shade-1);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.rep-pill-btn:hover {
  background-color: var(--theme-primary-light);
  border-color: var(--theme-primary);
  color: var(--theme-primary);
}

/* Floating WhatsApp Button */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 50px;
  height: 50px;
  background-color: #25D366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  z-index: 990;
  text-decoration: none;
  transition: transform 0.25s ease;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1);
  color: #ffffff;
}

/* PRODUCT DETAIL PAGE end */

/* SUSTAINABILITY PAGE css start */

/* ---- SHARED WRAP ---- */
.sustainability .wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

/* =================================================================
           HERO SECTION
        ================================================================= */
.sustainability .hero {
  position: relative;
  padding: 110px 0 80px;
  background: linear-gradient(135deg, #0F0E27 0%, #1E1B4B 40%, #3730A3 80%, #1E1B4B 100%);
  color: var(--s-white);
  overflow: hidden;
}

/* Animated mesh orbs */
.sustainability .hero::before,
.sustainability .hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: s-float 8s ease-in-out infinite alternate;
}

.sustainability .hero::before {
  width: 520px;
  height: 520px;
  background: rgba(131, 92, 247, 0.22);
  top: -120px;
  right: -100px;
}

.sustainability .hero::after {
  width: 380px;
  height: 380px;
  background: rgba(99, 102, 241, 0.22);
  bottom: -80px;
  left: -60px;
  animation-delay: -4s;
}

@keyframes s-float {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(20px, 30px) scale(1.08);
  }
}

/* Grid dot overlay */
.sustainability .hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  z-index: 0;
}

.sustainability .hero .wrap {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

/* Eyebrow badge */
.sustainability .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(129, 140, 248, 0.4);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 7px 18px;
  font-family: var(--s-font-title);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #C7D2FE;
  margin-bottom: 28px;
}

.sustainability .eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--s-violet);
  display: inline-block;
  box-shadow: 0 0 8px var(--s-violet);
  animation: s-pulse 2s ease-in-out infinite;
}

@keyframes s-pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.85);
  }
}

.sustainability .hero h1 {
  font-family: var(--s-font-title);
  font-weight: 700;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 22px;
  color: var(--s-white);
}

.sustainability .hero h1 span {
  background: linear-gradient(90deg, #A5B4FC, #818CF8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sustainability .hero p {
  font-size: 16.5px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 640px;
  line-height: 1.75;
}

/* =================================================================
           STATS STRIP
        ================================================================= */
.sustainability .strip {
  background: var(--s-white);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 30px rgba(30, 27, 75, 0.06);
}

.sustainability .strip .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
}

.sustainability .strip-item {
  padding: 32px 28px;
  border-left: 1px solid rgba(226, 232, 240, 0.8);
  position: relative;
  transition: var(--s-transition);
  cursor: default;
}

.sustainability .strip-item:first-child {
  border-left: none;
}

.sustainability .strip-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--s-indigo-mid), var(--s-violet));
  transition: width 0.4s ease;
}

.sustainability .strip-item:hover::before {
  width: 100%;
}

.sustainability .strip-item:hover {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.04), rgba(99, 102, 241, 0.06));
}

.sustainability .strip-item .n {
  font-family: var(--s-font-title);
  font-size: 2.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--s-indigo-mid), var(--s-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}

.sustainability .strip-item .l {
  font-family: var(--s-font-title);
  font-size: 11px;
  font-weight: 500;
  color: var(--s-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  line-height: 1.4;
}

/* =================================================================
           SECTION HEAD (shared)
        ================================================================= */
.sustainability .sec-head {
  max-width: 620px;
  margin-bottom: 52px;
}

.sustainability .sec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--s-font-title);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--s-indigo-mid);
  margin-bottom: 14px;
}

.sustainability .sec-eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, var(--s-indigo-mid), var(--s-violet));
  border-radius: 2px;
  display: inline-block;
}

.sustainability .sec-head h2 {
  font-family: var(--s-font-title);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.3px;
  color: #0F172A;
  margin-bottom: 14px;
  line-height: 1.25;
}

.sustainability .sec-head p {
  color: var(--s-muted);
  font-size: 15.5px;
  line-height: 1.7;
}

/* =================================================================
           PILLARS SECTION
        ================================================================= */
.sustainability .pillars {
  padding: 96px 0;
  background: var(--s-bg-light);
  position: relative;
  overflow: hidden;
}

.sustainability .pillars::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.06) 0%, transparent 70%);
  top: -200px;
  right: -150px;
  pointer-events: none;
}

.sustainability .pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.sustainability .pillar-card {
  background: var(--s-white);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 16px;
  padding: 30px 26px;
  transition: var(--s-transition);
  position: relative;
  overflow: hidden;
}

.sustainability .pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--s-indigo-mid), var(--s-violet));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sustainability .pillar-card:hover {
  border-color: transparent;
  box-shadow: 0 20px 50px rgba(30, 27, 75, 0.10), 0 0 0 1px rgba(79, 70, 229, 0.15);
  transform: translateY(-5px);
}

.sustainability .pillar-card:hover::before {
  opacity: 1;
}

.sustainability .pillar-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(99, 102, 241, 0.15));
  border: 1px solid rgba(79, 70, 229, 0.2);
  font-family: var(--s-font-title);
  font-size: 13px;
  font-weight: 700;
  color: var(--s-indigo-mid);
  margin-bottom: 18px;
}

.sustainability .pillar-card h3 {
  font-family: var(--s-font-title);
  font-size: 16px;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 10px;
}

.sustainability .pillar-card p {
  font-size: 13.5px;
  color: var(--s-muted);
  line-height: 1.65;
  margin-bottom: 0;
}

.sustainability .pillar-card ul {
  margin-top: 14px;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sustainability .pillar-card li {
  font-size: 13px;
  color: #475569;
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.sustainability .pillar-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--s-indigo-mid), var(--s-violet));
}

/* =================================================================
           COMMITMENT SECTION
        ================================================================= */
.sustainability .commitment {
  padding: 96px 0;
  background: linear-gradient(135deg, #1E1B4B 0%, #2D2A6E 50%, #1a2d4a 100%);
  position: relative;
  overflow: hidden;
}

.sustainability .commitment::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.sustainability .commitment::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 65%);
  bottom: -150px;
  right: -100px;
  pointer-events: none;
}

.sustainability .commitment .wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

/* Visual card */
.sustainability .commitment-visual {
  background: var(--s-glass-bg);
  border: 1px solid var(--s-glass-border);
  backdrop-filter: blur(16px);
  border-radius: 20px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.sustainability .commitment-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.12) 0%, rgba(99, 102, 241, 0.12) 100%);
  border-radius: 20px;
}

.sustainability .commitment-visual svg {
  width: 68%;
  height: 68%;
  position: relative;
  z-index: 1;
}

/* Re-color SVG for the new theme */
.sustainability .commitment-visual svg circle[stroke="#2C5487"] {
  stroke: rgba(99, 102, 241, 0.5);
}

.sustainability .commitment-visual svg circle[fill="#FFFFFF"] {
  fill: #6366F1;
}

.sustainability .commitment-visual svg g circle {
  fill: rgba(129, 140, 248, 0.9);
  stroke: rgba(255, 255, 255, 0.5);
}

.sustainability .commitment .sec-eyebrow {
  color: #C7D2FE;
}

.sustainability .commitment .sec-eyebrow::before {
  background: linear-gradient(90deg, #A5B4FC, var(--s-indigo-lite));
}

.sustainability .commitment-copy h2 {
  font-family: var(--s-font-title);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 700;
  color: var(--s-white);
  margin-bottom: 20px;
  line-height: 1.3;
}

.sustainability .commitment-copy p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  margin-bottom: 16px;
  line-height: 1.75;
}

/* =================================================================
           PROCESS SECTION
        ================================================================= */
.sustainability .process {
  padding: 96px 0;
  background: var(--s-white);
}

.sustainability .process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 0;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 16px;
  overflow: hidden;
}

.sustainability .process-item {
  padding: 32px 26px;
  border-right: 1px solid rgba(226, 232, 240, 0.8);
  transition: var(--s-transition);
  position: relative;
}

.sustainability .process-item:last-child {
  border-right: none;
}

.sustainability .process-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.06), rgba(99, 102, 241, 0.08));
  transition: height 0.35s ease;
}

.sustainability .process-item:hover::after {
  height: 100%;
}

.sustainability .process-item>* {
  position: relative;
  z-index: 1;
}

.sustainability .process-num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--s-indigo-mid), var(--s-violet));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--s-font-title);
  font-size: 15px;
  font-weight: 700;
  color: var(--s-white);
  margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.3);
}

.sustainability .process-item h3 {
  font-family: var(--s-font-title);
  font-size: 15.5px;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 10px;
}

.sustainability .process-item p {
  font-size: 13px;
  color: var(--s-muted);
  line-height: 1.65;
}

/* =================================================================
           NOTE BAND
        ================================================================= */
.sustainability .note-band {
  padding: 48px 0;
  background: linear-gradient(135deg, #1E1B4B 0%, #2D2A6E 60%, #1E1B4B 100%);
  position: relative;
  overflow: hidden;
}

.sustainability .note-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.sustainability .note-box {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(165, 180, 252, 0.25);
  border-left: 4px solid var(--s-lavender);
  border-radius: 12px;
  padding: 22px 28px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--s-font-title);
  line-height: 1.7;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  backdrop-filter: blur(8px);
}

.sustainability .note-box::before {
  content: '📋';
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.sustainability .note-box b {
  color: var(--s-lavender);
  font-weight: 600;
}

/* =================================================================
           CTA SECTION
        ================================================================= */
.sustainability .cta {
  padding: 96px 0;
  background: var(--s-white);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.sustainability .cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 50%, rgba(79, 70, 229, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.sustainability .cta::after {
  display: none;
}

.sustainability .cta .wrap {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 580px;
}

.sustainability .cta h2 {
  font-family: var(--s-font-title);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 14px;
  color: #0F172A;
}

.sustainability .cta p {
  color: var(--s-muted);
  font-size: 15.5px;
  margin-bottom: 34px;
  line-height: 1.65;
}

.sustainability .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--s-font-title);
  font-size: 14px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--s-indigo-mid), var(--s-indigo-lite));
  color: var(--s-white);
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--s-transition);
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.35);
  letter-spacing: 0.2px;
}

.sustainability .btn-primary:hover {
  background: linear-gradient(135deg, var(--s-indigo), var(--s-indigo-mid));
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(79, 70, 229, 0.5);
  color: var(--s-white);
}

/* SUSTAINABILITY PAGE css end */
/* new design css end */