/* Solotronics Technologies - Main Stylesheet */
:root {
  --st-green: #68a816;
  --st-green-dark: #558c10;
  --st-green-light: #7cc21e;
  --st-orange: #f36c12;
  --st-orange-hover: #e05904;
  --st-orange-gradient: linear-gradient(135deg, #f57218 0%, #e15502 100%);
  --st-blue: #0284c7;
  --st-text-dark: #2d3748;
  --st-text-muted: #64748b;
  --st-topbar-border: rgba(255, 255, 255, 0.22);
  --st-nav-hover: #68a816;
}

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

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--st-text-dark);
  background-color: #f8fafc;
  overflow-x: hidden;
}

/* ==========================================
   TOP BAR SECTION (Green Banner as in image)
   ========================================== */
.top-bar-container {
  background-color: var(--st-green);
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 600;
  position: relative;
  z-index: 100;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.08);
}

.top-bar-grid {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  min-height: 42px;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1rem;
}

.top-bar-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1.15rem;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.2s ease;
  position: relative;
  flex: 1;
  text-align: center;
  white-space: nowrap;
  font-size: 0.84rem;
  font-weight: 600;
}

.top-bar-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 18%;
  height: 64%;
  width: 1px;
  background-color: var(--st-topbar-border);
}

.top-bar-item:hover {
  background-color: rgba(0, 0, 0, 0.08);
  color: #ffffff;
}

.top-bar-item i {
  font-size: 0.92rem;
  opacity: 0.95;
}

/* ==========================================
   MAIN NAVIGATION HEADER (White Bar)
   ========================================== */
.main-header {
  background-color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 999;
  transition: all 0.3s ease;
  border-bottom: 1px solid #f1f5f9;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
}

.main-header.scrolled {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.header-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0.35rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
}

/* Logo Styling */
.header-logo-wrapper {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-img {
  height: 60px;
  max-height: 60px;
  width: auto;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.brand-logo-img:hover {
  transform: scale(1.02);
}

/* Nav Menu */
.nav-menu-list {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.nav-link-item {
  position: relative;
  flex-shrink: 0;
}

.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #2b2f38;
  text-decoration: none;
  padding: 1.25rem 0.15rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.2s ease;
  position: relative;
  white-space: nowrap;
}

.nav-link:hover,
.nav-dropdown:hover > .nav-link {
  color: var(--st-green) !important;
}

.nav-link.active {
  color: var(--st-green);
}

.chevron-icon {
  font-size: 0.72rem;
  transition: transform 0.25s ease;
}

.nav-dropdown:hover .chevron-icon {
  transform: rotate(180deg);
}

/* =========================================================
   EXACT DRILL-DOWN / NESTED FLYOUT MENU FOR PRODUCTS
   ========================================================= */
.drilldown-wrapper {
  position: absolute;
  top: 100%;
  left: -20px;
  padding-top: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 9999;
  pointer-events: none;
}

.nav-dropdown:hover .drilldown-wrapper,
.nav-dropdown.show .drilldown-wrapper,
.nav-dropdown.active-menu .drilldown-wrapper {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Level 1 Main Box */
.drilldown-menu-main {
  background: #ffffff;
  width: 290px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.06);
  padding: 0.65rem 0;
  border-radius: 4px;
  list-style: none;
  margin: 0;
  border: 1px solid #e2e8f0;
  position: relative;
}

/* Drill-Down Item */
.dd-item {
  position: relative;
  list-style: none;
}

.dd-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 1.35rem;
  color: #4b5563;
  font-family: 'Poppins', 'Montserrat', sans-serif;
  font-style: italic;
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.18s ease;
  white-space: nowrap;
}

.dd-link .arrow-icon {
  font-size: 0.72rem;
  color: #9ca3af;
  font-style: normal;
  transition: transform 0.18s ease, color 0.18s ease;
}

.dd-item:hover > .dd-link,
.dd-item.active-item > .dd-link {
  color: var(--st-green);
  background-color: #f8fafc;
}

.dd-item:hover > .dd-link .arrow-icon,
.dd-item.active-item > .dd-link .arrow-icon {
  color: var(--st-green);
  transform: translateX(3px);
}

/* Level 2 Submenu Box */
.dd-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  width: 290px;
  background: #ffffff;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  border-left: 1px solid #cbd5e1;
  border-radius: 0 4px 4px 4px;
  padding: 0.65rem 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10000;
  pointer-events: none;
}

.dd-item:hover > .dd-submenu,
.dd-item.show-sub > .dd-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}

.dd-sublink {
  display: block;
  padding: 0.55rem 1.35rem;
  color: #4b5563;
  font-family: 'Poppins', 'Montserrat', sans-serif;
  font-style: italic;
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.dd-sublink:hover,
.dd-sublink.active-sub {
  color: var(--st-green);
  background-color: #f8fafc;
}

/* Header Right Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  flex-shrink: 0;
}

/* Orange CTA Button */
.btn-quote {
  background: var(--st-orange-gradient);
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.65rem 1.6rem;
  border-radius: 9999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(243, 108, 18, 0.4);
  transition: all 0.25s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-quote:hover {
  background: linear-gradient(135deg, #e15502 0%, #c94600 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(243, 108, 18, 0.5);
  color: #ffffff;
}

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

/* Search Trigger Button */
.btn-search-trigger {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  color: #334155;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.btn-search-trigger:hover {
  color: var(--st-green);
  background-color: #f1f5f9;
  transform: scale(1.08);
}

/* Mobile Hamburger Toggle */
.mobile-toggle-btn {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.6rem;
  color: #1e293b;
  cursor: pointer;
  padding: 0.35rem;
  line-height: 1;
}

/* ==========================================
   HERO SLIDER BANNER (Matching Screenshot)
   ========================================== */
.hero-slider-section {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(10, 20, 35, 0.45), rgba(10, 20, 35, 0.65)),
              url('https://images.unsplash.com/photo-1519501025264-65ba15a82390?auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
  color: #ffffff;
  overflow: hidden;
}

.hero-slider-content {
  max-width: 1536px;
  margin: 0 auto;
  padding: 4rem 3rem;
  width: 100%;
  position: relative;
  z-index: 10;
}

.hero-slider-text {
  max-width: 680px;
}

.hero-slider-title {
  font-size: 2.8rem;
  font-weight: 800;
  font-style: italic;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: #ffffff;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
  margin-bottom: 1.25rem;
}

.hero-slider-subtitle {
  font-size: 1.12rem;
  font-style: italic;
  font-weight: 400;
  color: #f1f5f9;
  line-height: 1.6;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  margin-bottom: 2rem;
}

.btn-hero-click {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2.25rem;
  background: var(--st-orange);
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 600;
  font-style: italic;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(243, 108, 18, 0.5);
  transition: all 0.25s ease;
}

.btn-hero-click:hover {
  background: #e05904;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(243, 108, 18, 0.6);
  color: #ffffff;
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 60px;
  background: rgba(0, 0, 0, 0.3);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 20;
  border: none;
  backdrop-filter: blur(2px);
}

.slider-arrow:hover {
  background: rgba(0, 0, 0, 0.6);
  color: var(--st-green);
}

.slider-arrow-prev {
  left: 0;
  border-radius: 0 6px 6px 0;
}

.slider-arrow-next {
  right: 0;
  border-radius: 6px 0 0 6px;
}

/* ==========================================
   SEARCH OVERLAY POPUP
   ========================================== */
.search-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 100px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.search-modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.search-box-card {
  background: #ffffff;
  width: 90%;
  max-width: 650px;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  padding: 1.75rem;
  transform: translateY(-20px) scale(0.96);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.search-modal-backdrop.active .search-box-card {
  transform: translateY(0) scale(1);
}

.search-input-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 2px solid var(--st-green);
  padding-bottom: 0.75rem;
}

.search-input-group input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1.15rem;
  color: #1e293b;
}

.close-search-btn {
  background: none;
  border: none;
  font-size: 1.3rem;
  color: #64748b;
  cursor: pointer;
}

.search-quick-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.search-tag {
  background: #f1f5f9;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.82rem;
  color: #475569;
  cursor: pointer;
  transition: all 0.2s ease;
}

.search-tag:hover {
  background: var(--st-green);
  color: #ffffff;
}

/* Live Search Results Container */
.search-results-box {
  margin-top: 1.15rem;
  max-height: 320px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding-right: 4px;
}

.search-results-box::-webkit-scrollbar {
  width: 6px;
}

.search-results-box::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  text-decoration: none;
  transition: all 0.2s ease;
}

.search-result-item:hover {
  background: #f1f5f9;
  border-color: #e2e8f0;
  transform: translateX(3px);
}

.search-res-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--st-green);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.search-res-info {
  flex: 1;
  overflow: hidden;
}

.search-res-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  line-height: 1.2;
}

.search-res-cat {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  color: #64748b;
  margin: 0;
}

.search-res-arrow {
  color: #94a3b8;
  font-size: 0.85rem;
  transition: transform 0.2s ease;
}

.search-result-item:hover .search-res-arrow {
  color: var(--st-orange);
  transform: translateX(2px);
}

.search-no-results {
  text-align: center;
  padding: 1.75rem 1rem;
  color: #64748b;
  font-size: 0.88rem;
  font-family: 'Poppins', sans-serif;
}

.search-no-results i {
  font-size: 1.65rem;
  color: #94a3b8;
  display: block;
  margin-bottom: 0.35rem;
}

/* Card Glow and Pulse Highlight when Arrived from Search */
@keyframes searchCardGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(243, 108, 18, 0.7), 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: scale(1);
    border-color: #f36c12;
  }
  50% {
    box-shadow: 0 0 0 10px rgba(243, 108, 18, 0.35), 0 16px 36px rgba(243, 108, 18, 0.25);
    transform: scale(1.035);
    border-color: #f36c12;
  }
  100% {
    box-shadow: 0 0 0 0 rgba(243, 108, 18, 0), 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: scale(1);
  }
}

.search-highlight-card {
  animation: searchCardGlow 1.2s ease-in-out 3;
  border-color: #f36c12 !important;
  z-index: 10;
  position: relative;
  transition: all 0.3s ease;
}

/* ==========================================
   MODAL / POPUP (Quote Modal)
   ========================================== */
.modal-backdrop-custom {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(5px);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-backdrop-custom.active {
  opacity: 1;
  visibility: visible;
}

.modal-content-card {
  background: #ffffff;
  border-radius: 20px;
  width: 100%;
  max-width: 540px;
  padding: 2rem;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop-custom.active .modal-content-card {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: #f1f5f9;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  background: #e2e8f0;
  color: #0f172a;
}

/* ==========================================
   1:1 MOBILE HEADER & LEFT SIDEBAR DRAWER
   ========================================== */
.mobile-header-left {
  display: none;
}

.mobile-menu-btn-custom {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

.hamburger-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: #334155;
  transition: all 0.2s ease;
}

.mobile-menu-btn-custom:hover .hamburger-circle {
  border-color: var(--st-green);
  color: var(--st-green);
}

.menu-label-text {
  font-family: 'Poppins', 'Montserrat', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 0.95rem;
  color: #475569;
  letter-spacing: 0.03em;
}

/* Mobile Sidebar (Slides in from LEFT) */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(2px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: -340px;
  width: 320px;
  max-width: 85vw;
  height: 100%;
  background: #ffffff;
  z-index: 9999;
  overflow-y: auto;
  box-shadow: 5px 0 25px rgba(0, 0, 0, 0.12);
  transition: left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.mobile-nav-drawer.active {
  left: 0;
}

/* Mobile Drawer Menu Items */
.mobile-sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.ms-item {
  border-bottom: 1px solid #eeeeee;
  position: relative;
}

.ms-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  font-family: 'Poppins', 'Montserrat', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 0.95rem;
  color: #1e293b;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.ms-link.active-green {
  color: var(--st-green);
}

.ms-link:hover {
  background-color: #f8fafc;
  color: var(--st-green);
}

/* PRODUCT Row with Green Square Toggle */
.ms-product-row {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.ms-product-link {
  flex: 1;
  padding: 0.85rem 1.25rem;
  font-family: 'Poppins', 'Montserrat', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 0.95rem;
  color: #1e293b;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.ms-green-toggle-btn {
  width: 48px;
  background-color: var(--st-green);
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: background 0.2s ease;
}

.ms-green-toggle-btn:hover {
  background-color: var(--st-green-dark);
}

.ms-green-toggle-btn i {
  transition: transform 0.25s ease;
}

.ms-green-toggle-btn.expanded i {
  transform: rotate(180deg);
}

/* Mobile Submenu (Under PRODUCT) */
.ms-submenu {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: #ffffff;
}

.ms-submenu.open {
  display: block;
}

.ms-sub-item {
  border-bottom: 1px solid #eeeeee;
  position: relative;
}

.ms-sub-link-row {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  text-decoration: none;
}

.ms-sub-link {
  flex: 1;
  padding: 0.75rem 1.25rem;
  font-family: 'Poppins', 'Montserrat', sans-serif;
  font-style: italic;
  font-size: 0.9rem;
  color: #555555;
  text-decoration: none;
  transition: color 0.15s ease;
}

.ms-sub-link:hover {
  color: var(--st-green);
}

.ms-sub-arrow-btn {
  width: 44px;
  border-left: 1px solid #eeeeee;
  background: transparent;
  border-top: none;
  border-right: none;
  border-bottom: none;
  color: #64748b;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ms-sub-arrow-btn:hover,
.ms-sub-arrow-btn.open {
  color: var(--st-green);
  background-color: #f8fafc;
}

.ms-sub-arrow-btn.open i {
  transform: rotate(90deg);
}

/* Nested Level 3 Submenu for Mobile */
.ms-nested-submenu {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: #f8fafc;
  border-top: 1px solid #eeeeee;
}

.ms-nested-submenu.open {
  display: block;
}

.ms-nested-link {
  display: block;
  padding: 0.65rem 1.75rem;
  font-family: 'Poppins', 'Montserrat', sans-serif;
  font-style: italic;
  font-size: 0.85rem;
  color: #64748b;
  text-decoration: none;
  border-bottom: 1px dashed #e2e8f0;
  transition: color 0.15s ease;
}

.ms-nested-link:hover,
.ms-nested-link.highlight {
  color: var(--st-green);
  padding-left: 2rem;
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES
   ========================================== */
@media (max-width: 1280px) and (min-width: 1025px) {
  .header-container {
    padding: 0.35rem 1rem;
  }
  .nav-menu-list {
    gap: 0.85rem;
  }
  .nav-link {
    font-size: 0.78rem;
    padding: 1.25rem 0.05rem;
  }
  .btn-quote {
    padding: 0.55rem 1.15rem;
    font-size: 0.78rem;
  }
  .brand-logo-img {
    height: 52px;
  }
}

@media (max-width: 1024px) {
  .top-bar-container {
    display: none; /* Mobile header matches image cleanly without top bar */
  }

  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem;
    min-height: 64px;
  }

  .mobile-header-left {
    display: flex;
    align-items: center;
  }

  .header-logo-wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

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

  .nav-menu-list,
  .btn-quote {
    display: none !important;
  }

  .mobile-toggle-btn {
    display: none !important;
  }

  .btn-search-trigger {
    font-size: 1.4rem;
    color: #334155;
  }
}

/* ==========================================
   1:1 FOOTER STYLING (Matching Screenshot)
   ========================================== */
.site-footer {
  background-color: #ffffff;
  border-top: 1px solid #e5e7eb;
  padding-top: 4rem;
  font-family: 'Poppins', 'Montserrat', sans-serif;
  position: relative;
}

.footer-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.15fr 0.75fr 1.35fr 1.55fr;
  gap: 3rem;
}

/* Column 1: Brand */
.footer-brand-col {
  display: flex;
  flex-direction: column;
}

.footer-logo-img {
  height: 62px;
  width: auto;
  object-fit: contain;
  margin-bottom: 0.25rem;
  align-self: flex-start;
}

.footer-about-text {
  font-style: italic;
  font-size: 0.88rem;
  color: #555555;
  line-height: 1.65;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.footer-divider-subtle {
  height: 1px;
  background-color: #e5e7eb;
  width: 100%;
  margin-bottom: 1.25rem;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-social-icon {
  color: #111827;
  font-size: 1.25rem;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-social-icon:hover {
  color: var(--st-green);
  transform: translateY(-2px);
}

/* Headings in Columns 2, 3, 4 */
.footer-heading {
  font-style: italic;
  font-weight: 700;
  font-size: 1.12rem;
  color: #111827;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 1.35rem;
}

/* Links lists */
.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-link {
  font-style: italic;
  font-size: 0.88rem;
  color: #555555;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-link:hover {
  color: var(--st-green);
  transform: translateX(4px);
}

.footer-link.home-highlight {
  font-weight: 700;
  color: #111827;
}

/* Contact Column */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-style: italic;
  font-size: 0.88rem;
  color: #555555;
  line-height: 1.55;
}

.contact-icon-green {
  color: #558c10;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-icon-pink {
  color: #e11d48;
  font-size: 1.15rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a {
  color: #4b5563;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-contact-item a:hover {
  color: var(--st-green);
}

/* Bottom Copyright Bar */
.footer-bottom-bar {
  border-top: 1px solid #e5e7eb;
  margin-top: 3.5rem;
  padding: 1.5rem 1.5rem;
  text-align: center;
  background-color: #ffffff;
}

.footer-bottom-text {
  font-style: italic;
  font-size: 0.84rem;
  color: #64748b;
  margin: 0;
}

/* =========================================================
   FLOATING QUICK-CONNECT CHAT WIDGET & POPUP
   ========================================================= */
.floating-contact-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99999;
}

.floating-chat-bubble {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 8px 24px rgba(147, 51, 234, 0.45);
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.floating-chat-bubble:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 28px rgba(147, 51, 234, 0.6);
}

.floating-chat-bubble .fcp-close-icon {
  display: none;
  font-size: 1.15rem;
}

.floating-contact-widget.active .floating-chat-bubble {
  background: #1e293b;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.4);
}

.floating-contact-widget.active .floating-chat-bubble .fcp-chat-icon {
  display: none;
}

.floating-contact-widget.active .floating-chat-bubble .fcp-close-icon {
  display: block;
}

/* Quick-Connect Popup Card */
.floating-chat-popup {
  position: absolute;
  bottom: 68px;
  right: 0;
  width: 290px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18), 0 0 1px rgba(0,0,0,0.1);
  border: 1px solid #f1f5f9;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.94);
  transform-origin: bottom right;
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s;
  pointer-events: none;
}

.floating-contact-widget.active .floating-chat-popup {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.fcp-header {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 1.1rem 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
}

.fcp-header-left {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.fcp-status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
  animation: fcpPulse 2s infinite;
}

@keyframes fcpPulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
  70% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.fcp-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

.fcp-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  color: #94a3b8;
  display: block;
}

.fcp-close-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #94a3b8;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.fcp-close-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.fcp-body {
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  background: #ffffff;
}

.fcp-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  text-decoration: none;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  transition: all 0.2s ease;
}

.fcp-item:hover {
  background: #f1f5f9;
  transform: translateX(3px);
}

.fcp-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.fcp-icon-wa {
  background: #25D366;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.25);
}

.fcp-icon-mail {
  background: linear-gradient(135deg, #0284c7 0%, #0076be 100%);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(2, 132, 199, 0.25);
}

.fcp-text-box {
  flex: 1;
  overflow: hidden;
}

.fcp-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: #1e293b;
  display: block;
  line-height: 1.2;
}

.fcp-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  color: #64748b;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fcp-arrow {
  color: #cbd5e1;
  font-size: 0.85rem;
  transition: transform 0.2s ease, color 0.2s ease;
}

.fcp-item:hover .fcp-arrow {
  color: #f36c12;
  transform: translateX(2px);
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES
   ========================================== */
@media (max-width: 1200px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 1024px) {
  .nav-menu-list,
  .btn-quote,
  .btn-search-trigger {
    display: none;
  }
  .mobile-toggle-btn {
    display: block;
  }
  .hero-slider-title {
    font-size: 2.2rem;
  }
  .top-bar-item {
    font-size: 0.8rem;
    padding: 0.4rem 0.75rem;
  }
}

@media (max-width: 768px) {
  .top-bar-grid {
    flex-direction: column;
  }
  .top-bar-item:not(:last-child)::after {
    display: none;
  }
  .top-bar-item {
    padding: 0.35rem 1rem;
    border-bottom: 1px solid var(--st-topbar-border);
  }
  .brand-logo-img {
    height: 56px;
  }
  .hero-slider-title {
    font-size: 1.75rem;
  }
  .hero-slider-subtitle {
    font-size: 0.95rem;
  }
}

/* ==========================================
   CONTACT PAGE - VISIT OUR OFFICE SECTION (1:1 Match)
   ========================================== */
.contact-page-section {
  padding: 4.5rem 1.5rem 5.5rem 1.5rem;
  background-color: #ffffff;
  position: relative;
  width: 100%;
}

.contact-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1.75rem;
  width: 100%;
}

.contact-header-wrap {
  text-align: center;
  margin-bottom: 2.75rem;
}

.contact-tag {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0076be;
  display: inline-block;
  margin-bottom: 0.35rem;
}

.contact-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.3rem, 4.5vw, 3.4rem);
  font-weight: 800;
  font-style: italic;
  color: #1e293b;
  line-height: 1.15;
  margin: 0;
}

.contact-title span {
  color: #0076be;
}

.contact-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-style: italic;
  color: #475569;
  font-weight: 500;
  max-width: 680px;
  margin: 0.85rem auto 0 auto;
  line-height: 1.5;
}

.tricolor-bar {
  display: inline-flex;
  height: 4.5px;
  width: 78px;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 1.35rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.tricolor-bar .bar-blue {
  background-color: #0076be;
  width: 33.33%;
  height: 100%;
}

.tricolor-bar .bar-orange {
  background-color: #f36c12;
  width: 33.33%;
  height: 100%;
}

.tricolor-bar .bar-green {
  background-color: #68a816;
  width: 33.34%;
  height: 100%;
}

/* Outer Card Container - Expands to full standard module width */
.contact-main-card {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 28px;
  padding: 3rem 2.75rem;
  box-shadow: 0 4px 25px -2px rgba(15, 23, 42, 0.04);
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.85rem;
}

.contact-item-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  padding: 1.75rem 2.25rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
  transition: all 0.25s ease;
  text-decoration: none;
  color: inherit;
}

.contact-item-card:hover {
  border-color: #0076be;
  box-shadow: 0 12px 32px rgba(0, 118, 190, 0.12);
  transform: translateY(-3px);
}

.contact-item-card.full-width {
  grid-column: 1 / -1;
}

/* Icon Circles */
.contact-icon-circle {
  width: 68px;
  height: 68px;
  min-width: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.85rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.25s ease;
}

.contact-item-card:hover .contact-icon-circle {
  transform: scale(1.08);
}

.contact-icon-circle.bg-blue {
  background: linear-gradient(135deg, #0284c7, #0076be);
}

.contact-icon-circle.bg-orange {
  background: linear-gradient(135deg, #fb923c, #ea580c);
}

.contact-icon-circle.bg-green {
  background: linear-gradient(135deg, #65a30d, #4d7c0f);
}

.contact-icon-circle.bg-amber {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

/* Text Content Inside Card */
.contact-text-content {
  flex: 1;
  min-width: 0;
}

.contact-card-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-card-label.label-blue {
  color: #0076be;
}

.contact-card-label.label-orange {
  color: #ea580c;
}

.contact-card-label.label-green {
  color: #4d7c0f;
}

.contact-card-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  font-style: italic;
  color: #0f172a;
  line-height: 1.38;
  margin: 0;
  word-break: break-word;
}

.contact-card-value a {
  color: #0f172a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-card-value a:hover {
  color: #0076be;
}

.contact-card-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 500;
  color: #64748b;
  margin-top: 5px;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .contact-container {
    padding: 0 1.25rem;
  }

  .contact-main-card {
    padding: 2rem 1.5rem;
    border-radius: 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  .contact-item-card {
    padding: 1.5rem 1.6rem;
    gap: 1.25rem;
  }

  .contact-card-value {
    font-size: 1.12rem;
  }
}

@media (max-width: 640px) {
  .contact-page-section {
    padding: 3rem 0.75rem 4rem 0.75rem;
  }

  .contact-container {
    padding: 0 0.5rem;
  }

  .contact-main-card {
    padding: 1.35rem 1rem;
    border-radius: 18px;
  }

  .contact-item-card {
    padding: 1.25rem 1.15rem;
    gap: 1.1rem;
    border-radius: 16px;
  }

  .contact-icon-circle {
    width: 52px;
    height: 52px;
    min-width: 52px;
    font-size: 1.45rem;
  }

  .contact-card-label {
    font-size: 0.78rem;
  }

  .contact-card-value {
    font-size: 1.02rem;
  }

  .contact-card-sub {
    font-size: 0.82rem;
  }
}

/* ==========================================
   FAQ & CONTACT US FORM SECTION (1:1 Match)
   ========================================== */
.faq-contact-section {
  padding: 4.5rem 1.5rem 6rem 1.5rem;
  background-color: #ffffff;
  border-top: 1px solid #f1f5f9;
  position: relative;
}

.faq-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  position: relative;
}

.faq-contact-grid::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background-color: #e8eef5;
}

/* FAQ Column */
.faq-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  font-style: italic;
  color: #1e293b;
  margin-bottom: 1.75rem;
}

.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background-color: #ffffff;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
  border-color: #cbd5e1;
}

.faq-item.active {
  border-color: #0076be;
  box-shadow: 0 4px 15px rgba(0, 118, 190, 0.06);
}

.faq-question-btn {
  width: 100%;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  font-style: italic;
  color: #1e293b;
  transition: color 0.2s ease;
}

.faq-icon-toggle {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1e293b;
  min-width: 18px;
  line-height: 1;
  user-select: none;
}

.faq-item.active .faq-icon-toggle {
  color: #0076be;
}

.faq-answer-collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
  background-color: #f8fafc;
}

.faq-item.active .faq-answer-collapse {
  max-height: 300px;
  padding: 0.25rem 1.25rem 1.25rem 2.85rem;
  border-top: 1px solid #f1f5f9;
}

.faq-answer-text {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  line-height: 1.65;
  color: #475569;
  margin: 0;
}

/* Contact Form Column */
.form-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  color: #1e293b;
  margin-bottom: 1.75rem;
}

.contact-enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  font-style: italic;
  color: #334155;
}

.form-input-custom,
.form-select-custom,
.form-textarea-custom {
  width: 100%;
  padding: 0.72rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  background-color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: #1e293b;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input-custom::placeholder,
.form-textarea-custom::placeholder {
  color: #94a3b8;
  font-style: normal;
  font-size: 0.88rem;
}

.form-input-custom:focus,
.form-select-custom:focus,
.form-textarea-custom:focus {
  outline: none;
  border-color: #f36c12;
  box-shadow: 0 0 0 3px rgba(243, 108, 18, 0.12);
}

.btn-send-enquiry {
  align-self: flex-start;
  background-color: #f36c12;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  margin-top: 0.35rem;
}

.btn-send-enquiry:hover {
  background-color: #e05904;
  box-shadow: 0 4px 14px rgba(243, 108, 18, 0.35);
  transform: translateY(-1px);
}

@media (max-width: 1024px) {
  .faq-contact-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .faq-contact-grid::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .faq-contact-section {
    padding: 3rem 1rem 4rem 1rem;
  }
  .faq-question-btn {
    padding: 0.85rem 1rem;
    font-size: 0.88rem;
  }
  .faq-item.active .faq-answer-collapse {
    padding: 0.25rem 1rem 1rem 2.25rem;
  }
}

/* ==========================================
   OUR LOCATION SECTION (1:1 Match)
   ========================================== */
.our-location-section {
  padding: 4rem 1.5rem 5.5rem 1.5rem;
  background-color: #ffffff;
  border-top: 1px solid #f1f5f9;
}

.location-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  font-style: italic;
  color: #1e293b;
  text-align: center;
  margin-bottom: 2.25rem;
}

.location-map-wrapper {
  max-width: 1240px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  background-color: #f1f5f9;
  height: 480px;
}

.location-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 768px) {
  .our-location-section {
    padding: 2.75rem 1rem 3.5rem 1rem;
  }
  .location-title {
    margin-bottom: 1.5rem;
  }
  .location-map-wrapper {
    height: 340px;
    border-radius: 8px;
  }
}

/* ==========================================
   ABOUT US - A FEW WORDS SECTION (1:1 Match)
   ========================================== */
.about-words-section {
  padding: 2.5rem 1.5rem 2.5rem 1.5rem;
  background-color: #ffffff;
  position: relative;
}

.about-words-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 3.25rem 3.25rem;
  background-color: #f8fafc;
  border-radius: 24px;
  border: 1px solid #eef2f6;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
}

.about-words-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 3.25rem;
  align-items: start;
}

.about-words-tag {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f36c12;
  margin-bottom: 0.75rem;
  display: block;
}

.about-words-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 2.75vw, 2.45rem);
  font-weight: 800;
  font-style: italic;
  color: #1e293b;
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.01em;
}

.about-column-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.22rem;
  font-weight: 800;
  font-style: italic;
  color: #1e293b;
  margin-bottom: 0.85rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.about-column-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  font-style: italic;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 1024px) {
  .about-words-container {
    padding: 2.5rem 2rem;
  }
  .about-words-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
}

@media (max-width: 768px) {
  .about-words-section {
    padding: 1.5rem 1rem;
  }
  .about-words-container {
    padding: 2rem 1.25rem;
    border-radius: 16px;
  }
  .about-words-title {
    font-size: 1.85rem;
  }
}

/* ==========================================
   ABOUT US - SECTION 2: ABOUT SOLOTRONICS (1:1 Match)
   ========================================== */
.about-company-section {
  padding: 3.5rem 0 5.5rem 0;
  background-color: #ffffff;
  position: relative;
}

.about-company-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.about-company-grid {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 4rem;
  align-items: center;
}

/* Left Column: Exact High-DPI Artwork + Sharp Vector Badge */
.about-artwork-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 448px;
}

.about-artwork-img {
  width: 100%;
  max-width: 448px;
  height: auto;
  display: block;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* 100% Razor-Sharp Floating Badge Overlay */
.about-badge-overlay {
  position: absolute;
  bottom: 2.5%;
  left: 6.5%;
  background: #ffffff;
  border-radius: 11px;
  padding: 0.65rem 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.14);
  border: 1px solid #f1f5f9;
  z-index: 10;
}

.badge-solar-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-solar-icon svg {
  width: 100%;
  height: 100%;
}

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

.badge-headline-1,
.badge-headline-2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.badge-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  text-transform: uppercase;
}

.bt-solar { color: #f36c12; }
.bt-dot { color: #cbd5e1; font-weight: 900; }
.bt-lighting { color: #0284c7; }
.bt-future { color: #16a34a; }

/* Right Column Content */
.about-tag-highlight {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f36c12;
  margin-bottom: 0.65rem;
  display: block;
}

.about-company-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.1rem, 3.2vw, 2.65rem);
  font-weight: 800;
  font-style: italic;
  color: #1e293b;
  line-height: 1.15;
  margin: 0 0 1.25rem 0;
}

.about-lead-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.96rem;
  font-style: italic;
  font-weight: 500;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.about-body-para {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-style: italic;
  color: #64748b;
  line-height: 1.65;
  margin-bottom: 1.15rem;
}

.about-company-divider {
  border-top: 1px solid #e2e8f0;
  margin: 1.75rem 0 1.1rem 0;
}

.about-location-tag {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-style: italic;
  font-weight: 600;
  color: #64748b;
}

@media (max-width: 1024px) {
  .about-company-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-artwork-wrapper {
    justify-content: center;
  }
  .about-artwork-img {
    max-width: 420px;
  }
}

@media (max-width: 768px) {
  .about-company-section {
    padding: 2rem 0 3.5rem 0;
  }
  .about-company-heading {
    font-size: 1.85rem;
  }
  .about-artwork-img {
    max-width: 340px;
  }
}

/* ==========================================
   ABOUT US - SECTION 3: MISSION & VISION (1:1 Match)
   ========================================== */
.mission-vision-section {
  padding: 1.5rem 0 5.5rem 0;
  background-color: #f4f6f8;
  background: linear-gradient(180deg, #ffffff 0%, #f4f6f8 20%, #f4f6f8 85%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* Ambient Background Elements matching Screenshot */
.mv-ambient-top {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 180px;
  border: 26px solid rgba(104, 168, 22, 0.05);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.mv-ambient-right {
  position: absolute;
  bottom: -20px;
  right: 6%;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243, 108, 18, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 1;
  pointer-events: none;
}

.mission-vision-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.25rem;
  align-items: stretch;
  position: relative;
}

/* Subtle Center Divider Tick between cards */
.mv-divider-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1.5px;
  height: 50px;
  background: #e2e8f0;
  border-radius: 2px;
  z-index: 1;
}

.mv-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05), 0 0 1px rgba(0, 0, 0, 0.06);
  border: 1px solid #f1f5f9;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.25rem 2.25rem 2rem 2.25rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 2;
}

.mv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -8px rgba(0, 0, 0, 0.09);
}

/* Top two-tone accent lines */
.mv-card-mission::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0076be 50%, #68a816 50%);
}

.mv-card-vision::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f36c12 50%, #0076be 50%);
}

/* Corner background curve accents */
.mv-corner-curve-blue {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 90px;
  height: 90px;
  background: #f0f9ff;
  border-radius: 90px 0 0 0;
  z-index: 1;
  pointer-events: none;
}

.mv-corner-curve-orange {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 90px;
  height: 90px;
  background: #fff7ed;
  border-radius: 90px 0 0 0;
  z-index: 1;
  pointer-events: none;
}

/* Header Tags & Titles */
.mv-tag-mission {
  font-family: 'Poppins', sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #68a816;
  margin-bottom: 0.35rem;
  display: block;
}

.mv-tag-vision {
  font-family: 'Poppins', sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f36c12;
  margin-bottom: 0.35rem;
  display: block;
}

.mv-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.85rem;
  font-weight: 800;
  font-style: italic;
  color: #1e293b;
  line-height: 1.15;
  margin: 0 0 0.5rem 0;
}

/* Accent Bars under Title */
.mv-accent-bar-blue {
  width: 36px;
  height: 3.5px;
  background: #0076be;
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

.mv-accent-bar-orange {
  width: 36px;
  height: 3.5px;
  background: #f36c12;
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

.mv-body-row {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.mv-icon-circle {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.mv-card:hover .mv-icon-circle {
  transform: scale(1.05);
}

.mv-icon-mission {
  background: #f0f9ff;
  border: 1.5px solid #dbeafe;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.08);
}

.mv-icon-vision {
  background: #fff7ed;
  border: 1.5px solid #ffedd5;
  box-shadow: 0 4px 14px rgba(243, 108, 18, 0.08);
}

.mv-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  font-style: italic;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}

.mv-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.5rem;
  margin-left: calc(86px + 1.5rem);
  position: relative;
  z-index: 2;
}

.mv-pill {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  font-style: italic;
  color: #334155;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.mv-dot-green {
  color: #68a816;
  font-size: 0.9rem;
}

.mv-dot-orange {
  color: #f36c12;
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .mv-badges-row {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .mission-vision-section {
    padding: 1rem 0 3.5rem 0;
  }
  .mv-card {
    padding: 1.5rem 1.25rem;
  }
  .mv-body-row {
    flex-direction: column;
    gap: 1rem;
  }
  .mv-badges-row {
    margin-left: 0;
  }
}

/* ==========================================
   ABOUT US - SECTION 4: WHAT WE OFFER (1:1 Match)
   ========================================== */
.what-we-offer-section {
  padding: 3.5rem 0 5.5rem 0;
  background-color: #ffffff;
  position: relative;
}

.what-we-offer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.what-we-offer-header {
  text-align: center;
  margin-bottom: 2.75rem;
}

.what-we-offer-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 3.2vw, 2.5rem);
  font-weight: 800;
  font-style: italic;
  color: #1e293b;
  margin: 0;
  line-height: 1.2;
  display: inline-block;
}

.title-we-accent {
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
}

.title-we-accent::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 3.5px;
  background: #f36c12;
  border-radius: 2px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.offer-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-5px);
}

.offer-img-wrapper {
  width: 100%;
  max-width: 190px;
  aspect-ratio: 1 / 1;
  border-radius: 0;
  overflow: hidden;
  margin: 0 auto 1.15rem auto;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  background: #f8fafc;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.offer-card:hover .offer-img-wrapper {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.offer-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.offer-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.96rem;
  font-weight: 800;
  font-style: italic;
  color: #1e293b;
  margin: 0;
  line-height: 1.35;
  transition: color 0.2s ease;
}

.offer-card:hover .offer-name {
  color: #f36c12;
}

@media (max-width: 1024px) {
  .offer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

@media (max-width: 640px) {
  .what-we-offer-section {
    padding: 2.5rem 0 3.5rem 0;
  }
  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .offer-name {
    font-size: 0.88rem;
  }
}

/* ==========================================
   ABOUT US - SECTION 5: FULL-WIDTH STATS BANNER (1:1 Match)
   ========================================== */
.about-team-banner-section {
  width: 100%;
  margin: 0 0 5rem 0;
  padding: 0;
  background-color: #ffffff;
  overflow: hidden;
  border: none;
}

.team-banner-full-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  display: block;
  border: none;
}

.team-banner-full-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  border: none;
}

@media (max-width: 768px) {
  .about-team-banner-section {
    margin-bottom: 3.5rem;
  }
}





















/* ==========================================
   SOLUTION PAGE - HERO BANNER & CATEGORIES
   ========================================== */
.solution-hero-section {
  padding: 3rem 0 2rem 0;
  background-color: #ffffff;
}

.solution-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.solution-banner-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 270px;
  height: 285px;
  display: flex;
  align-items: center;
  background-image: url('../assets/images/solution_solar_banner.png');
  background-size: cover;
  background-position: center 60%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.solution-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 14, 26, 0.94) 0%, rgba(8, 14, 26, 0.76) 46%, rgba(8, 14, 26, 0.12) 100%);
  z-index: 1;
}

.solution-banner-content {
  position: relative;
  z-index: 2;
  padding: 2.25rem 2.75rem;
  max-width: 620px;
}

.solution-main-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.65rem, 2.5vw, 2.05rem);
  font-weight: 900;
  font-style: italic;
  color: #ffffff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 0.45rem 0;
  line-height: 1.1;
}

.solution-sub-headline {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 800;
  font-style: italic;
  color: #f36c12;
  line-height: 1.28;
  margin: 0 0 0.85rem 0;
}

.solution-desc-text {
  font-family: 'Poppins', sans-serif;
  font-size: 0.86rem;
  font-style: italic;
  color: #f1f5f9;
  line-height: 1.55;
  margin: 0;
  max-width: 480px;
}

.solution-categories-section {
  padding: 2.5rem 0 5rem 0;
  background-color: #ffffff;
}

.solution-categories-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.65rem, 2.5vw, 2.1rem);
  font-weight: 800;
  font-style: italic;
  color: #1e293b;
  text-align: center;
  margin: 0;
}

@media (max-width: 1024px) {
  .solution-hero-container {
    padding: 0 1.5rem;
  }
  .solution-banner-content {
    padding: 2rem 1.75rem;
  }
}

@media (max-width: 768px) {
  .solution-hero-section {
    padding: 1.75rem 0 1rem 0;
  }
  .solution-banner-card {
    min-height: 290px;
    height: auto;
    border-radius: 6px;
    background-position: center;
  }
  .solution-banner-content {
    padding: 1.75rem 1.25rem;
  }
  .solution-main-tag {
    font-size: 1.6rem;
  }
  .solution-sub-headline {
    font-size: 1.05rem;
  }
  .solution-desc-text {
    font-size: 0.82rem;
  }
  .solution-categories-title {
    font-size: 1.5rem;
  }
}

/* ==========================================
   SOLUTION CATEGORIES 4-CARD GRID (1:1 Match)
   ========================================== */
.solution-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.25rem;
}

.solution-cat-card {
  background: #f4f6f8;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.solution-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: #0076be;
}

.solution-cat-header {
  padding: 1.25rem 1rem 0.95rem 1rem;
  text-align: center;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f6f8;
}

.solution-cat-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  font-style: italic;
  color: #1e293b;
  margin: 0;
  line-height: 1.25;
  text-align: center;
}

.solution-cat-img-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: #e2e8f0;
}

.solution-cat-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
  display: block;
}

.solution-cat-card:hover .solution-cat-img {
  transform: scale(1.04);
}

.solution-cat-body {
  padding: 1.35rem 1.25rem 1.6rem 1.25rem;
  flex: 1;
  background: #f4f6f8;
}

.solution-cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.solution-cat-list li {
  font-family: 'Poppins', sans-serif;
  font-size: 0.86rem;
  font-style: italic;
  color: #334155;
  line-height: 1.6;
  margin-bottom: 0.38rem;
  position: relative;
  padding-left: 0.95rem;
}

.solution-cat-list li:last-child {
  margin-bottom: 0;
}

.solution-cat-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1e293b;
  font-weight: 700;
  font-size: 0.95rem;
}

@media (max-width: 1024px) {
  .solution-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 640px) {
  .solution-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .solution-cat-header {
    min-height: auto;
    padding: 1rem 0.75rem 0.75rem 0.75rem;
  }
}

/* ==========================================
   CONTACT US PAGE - SECTION 1: VISIT OFFICE
   ========================================== */
.contact-page-section {
  padding: 4.5rem 0 5.5rem 0;
  background-color: #ffffff;
  position: relative;
}

.contact-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

.contact-header-wrap {
  text-align: center;
  margin-bottom: 2.75rem;
}

.contact-tag {
  color: #f36c12;
  font-family: 'Poppins', sans-serif;
  font-size: 0.84rem;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.contact-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  font-style: italic;
  color: #1e293b;
  margin: 0 0 0.75rem 0;
  line-height: 1.2;
}

.contact-title span {
  color: #68a816;
}

.contact-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-style: italic;
  color: #64748b;
  max-width: 620px;
  margin: 0 auto 1.25rem auto;
  line-height: 1.6;
}

.tricolor-bar {
  display: flex;
  justify-content: center;
  gap: 4px;
  height: 4px;
  width: 64px;
  margin: 0 auto;
}

.tricolor-bar .bar-blue {
  background: #0076be;
  flex: 1;
  border-radius: 2px;
}

.tricolor-bar .bar-orange {
  background: #f36c12;
  flex: 1;
  border-radius: 2px;
}

.tricolor-bar .bar-green {
  background: #68a816;
  flex: 1;
  border-radius: 2px;
}

.contact-main-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.contact-item-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-item-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  border-color: #cbd5e1;
}

.contact-item-card.full-width {
  grid-column: 1 / -1;
}

.contact-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.contact-icon-circle.bg-blue {
  background: #e0f2fe;
  color: #0284c7;
}

.contact-icon-circle.bg-orange {
  background: #ffedd5;
  color: #ea580c;
}

.contact-icon-circle.bg-green {
  background: #dcfce7;
  color: #16a34a;
}

.contact-icon-circle.bg-amber {
  background: #fef3c7;
  color: #d97706;
}

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

.contact-card-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.contact-card-label.label-blue {
  color: #0076be;
}

.contact-card-label.label-orange {
  color: #f36c12;
}

.contact-card-label.label-green {
  color: #68a816;
}

.contact-card-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.4;
  word-break: break-word;
}

.contact-card-value a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-card-value a:hover {
  color: #f36c12;
}

.contact-card-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-style: italic;
  color: #64748b;
  margin-top: 0.35rem;
}

/* ==========================================
   CONTACT US PAGE - SECTION 2: FAQ & FORM
   ========================================== */
.faq-contact-section {
  padding: 5rem 0;
  background-color: #ffffff;
  border-top: 1px solid #f1f5f9;
}

.faq-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.faq-column-wrapper {
  width: 100%;
}

.faq-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 800;
  font-style: italic;
  color: #1e293b;
  margin-bottom: 1.75rem;
}

.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.25s ease;
}

.faq-item.active {
  background: #ffffff;
  border-color: #0076be;
  box-shadow: 0 4px 15px rgba(0, 118, 190, 0.08);
}

.faq-question-btn {
  width: 100%;
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
  background: none;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  font-style: italic;
  color: #1e293b;
  cursor: pointer;
  transition: color 0.2s ease;
}

.faq-question-btn:hover {
  color: #0076be;
}

.faq-icon-toggle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: bold;
  color: #f36c12;
  flex-shrink: 0;
  line-height: 1;
  transition: all 0.2s ease;
}

.faq-item.active .faq-icon-toggle {
  background: #f36c12;
  color: #ffffff;
  border-color: #f36c12;
}

.faq-answer-collapse {
  display: none;
  padding: 0 1.25rem 1.25rem 3.5rem;
}

.faq-item.active .faq-answer-collapse {
  display: block;
}

.faq-answer-text {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-style: italic;
  color: #64748b;
  line-height: 1.65;
  margin: 0;
}

/* Right Column Contact Form */
.form-column-wrapper {
  width: 100%;
}

.form-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 800;
  font-style: italic;
  color: #1e293b;
  margin-bottom: 1.75rem;
  text-align: center;
}

.contact-enquiry-form {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.form-group-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  font-style: italic;
  color: #334155;
}

.form-input-custom,
.form-select-custom,
.form-textarea-custom {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  background: #ffffff;
  color: #1e293b;
  transition: all 0.2s ease;
  outline: none;
}

.form-input-custom:focus,
.form-select-custom:focus,
.form-textarea-custom:focus {
  border-color: #f36c12;
  box-shadow: 0 0 0 3px rgba(243, 108, 18, 0.12);
}

.btn-send-enquiry {
  background: #f36c12;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.06em;
  padding: 0.95rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(243, 108, 18, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-send-enquiry:hover {
  background: #e05904;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(243, 108, 18, 0.35);
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES FOR CONTACT PAGE
   ========================================== */
@media (max-width: 1024px) {
  .contact-container {
    padding: 0 1.5rem;
  }
  .contact-page-section {
    padding: 3.5rem 0 4rem 0;
  }
  .faq-contact-section {
    padding: 3.5rem 0 4rem 0;
  }
  .faq-contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contact-main-card {
    padding: 1.75rem;
  }
}

@media (max-width: 768px) {
  .contact-page-section {
    padding: 2.75rem 0 3.25rem 0;
  }
  .contact-container {
    padding: 0 1rem;
  }
  .contact-header-wrap {
    margin-bottom: 1.75rem;
  }
  .contact-title {
    font-size: 1.85rem;
  }
  .contact-main-card {
    padding: 1.15rem;
    border-radius: 12px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .contact-item-card {
    padding: 1rem 1.1rem;
    gap: 0.95rem;
    border-radius: 10px;
  }
  .contact-icon-circle {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }
  .contact-card-value {
    font-size: 0.92rem;
  }
  .contact-card-sub {
    font-size: 0.75rem;
  }
  .faq-contact-section {
    padding: 2.75rem 0 3.25rem 0;
  }
  .faq-heading,
  .form-heading {
    font-size: 1.45rem;
    margin-bottom: 1.25rem;
  }
  .faq-question-btn {
    padding: 0.9rem 1rem;
    font-size: 0.88rem;
    gap: 0.75rem;
  }
  .faq-answer-collapse {
    padding: 0 1rem 1rem 2.75rem;
  }
  .contact-enquiry-form {
    padding: 1.25rem 1rem;
    border-radius: 8px;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .contact-item-card {
    padding: 0.9rem 0.85rem;
    gap: 0.75rem;
  }
  .contact-icon-circle {
    width: 38px;
    height: 38px;
    font-size: 1.05rem;
  }
  .contact-card-value {
    font-size: 0.86rem;
  }
  .contact-card-label {
    font-size: 0.7rem;
  }
  .contact-card-sub {
    font-size: 0.72rem;
  }
  .faq-answer-collapse {
    padding: 0 0.85rem 0.85rem 0.85rem;
  }
}

/* =========================================================
   SOLUTIONS PAGE - SECTION 8: DETAILED SOLUTION CATEGORIES
   ========================================================= */
.solution-detailed-categories-section {
  padding: 1.5rem 0 3rem 0;
  background-color: #ffffff;
}

.solution-detailed-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.solution-detailed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.65rem;
  align-items: stretch;
}

.solution-detail-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.solution-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.07);
  border-color: #cbd5e1;
}

.solution-detail-header {
  padding: 1.25rem 1rem 1rem 1rem;
  text-align: center;
  background: #f8fafc;
}

.solution-detail-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
  font-style: italic;
  color: #1e293b;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.25;
  text-transform: uppercase;
}

.solution-detail-img-wrap {
  width: 100%;
  height: 195px;
  overflow: hidden;
  background: #0f172a;
}

.solution-detail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  transition: transform 0.4s ease;
}

.solution-detail-card:hover .solution-detail-img {
  transform: scale(1.03);
}

.solution-detail-body {
  padding: 1.25rem 1.25rem 1.6rem 1.25rem;
  background: #f8fafc;
  flex: 1;
}

.solution-bullet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.solution-bullet-item {
  font-family: 'Poppins', sans-serif;
  font-size: 0.79rem;
  font-style: italic;
  font-weight: 500;
  color: #334155;
  line-height: 1.45;
  position: relative;
  padding-left: 0.85rem;
}

.solution-bullet-item::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: #475569;
  font-size: 0.92rem;
  font-weight: bold;
}

/* =========================================================
   SOLUTIONS PAGE - SECTION 9: TRUST & STATS FEATURE BAR
   ========================================================= */
.solution-trust-stats-section {
  padding: 0 0 5.5rem 0;
  background-color: #ffffff;
}

.solution-trust-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.35rem 1.75rem;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.trust-lead-box {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  max-width: 420px;
}

.trust-bulb-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f0fdf4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #16a34a;
  font-size: 1.5rem;
}

.trust-lead-text {
  font-family: 'Poppins', sans-serif;
  font-size: 0.84rem;
  font-style: italic;
  font-weight: 500;
  color: #334155;
  line-height: 1.45;
  margin: 0;
}

.trust-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  flex: 1;
}

.trust-metric-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.15rem;
  border-left: 1px solid #e2e8f0;
}

.trust-metric-icon {
  font-size: 1.35rem;
  color: #94a3b8;
  margin-bottom: 0.35rem;
}

.trust-metric-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  font-style: italic;
  color: #0f172a;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.trust-metric-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-style: italic;
  font-weight: 500;
  color: #64748b;
  margin-top: 0.25rem;
}

@media (max-width: 1024px) {
  .solution-detailed-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .solution-trust-card {
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
  }
  .trust-lead-box {
    max-width: 100%;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
  }
  .trust-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 0;
  }
  .trust-metric-col:nth-child(2n+1) {
    border-left: none;
  }
}

@media (max-width: 640px) {
  .solution-detailed-grid {
    grid-template-columns: 1fr;
  }
  .solution-trust-stats-section {
    padding-bottom: 3.5rem;
  }
  .trust-metrics-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .trust-metric-col {
    border-left: none;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 0.85rem;
  }
  .trust-metric-col:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/* =========================================================
   BLOG PAGE - HERO BANNER SECTION (1:1 with Screenshot)
   ========================================================= */
.blog-hero-section {
  width: 100%;
  background-color: #000000;
  padding: 5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.blog-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.blog-hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(3.2rem, 5.5vw, 4.5rem);
  font-weight: 900;
  font-style: italic;
  color: #ffffff;
  margin: 0 0 0.85rem 0;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.blog-hero-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 500;
}

.breadcrumb-link {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-link:hover {
  color: #68a816;
}

.breadcrumb-sep {
  color: #64748b;
  font-weight: 600;
}

.breadcrumb-current {
  color: #ffffff;
  font-weight: 700;
}

@media (max-width: 768px) {
  .blog-hero-section {
    padding: 3.5rem 1rem;
  }
  .blog-hero-title {
    font-size: clamp(2.4rem, 6vw, 3.2rem);
  }
}

/* =========================================================
   BLOG PAGE - EMPTY STATE & SEARCH SECTION (1:1 with Screenshot)
   ========================================================= */
.blog-empty-state-section {
  padding: 5rem 1.5rem 8.5rem 1.5rem;
  background-color: #ffffff;
}

.blog-empty-container {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: left;
}

.blog-empty-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.85rem;
  font-weight: 800;
  font-style: italic;
  color: #1e293b;
  margin: 0 0 0.9rem 0;
  line-height: 1.2;
}

.blog-empty-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 400;
  color: #64748b;
  margin: 0 0 1.6rem 0;
  line-height: 1.6;
}

.blog-search-box {
  position: relative;
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
}

.blog-search-input {
  width: 100%;
  padding: 0.85rem 3rem 0.85rem 1.25rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  font-style: italic;
  color: #334155;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.blog-search-input::placeholder {
  color: #94a3b8;
  font-style: italic;
}

.blog-search-input:focus {
  border-color: #cbd5e1;
  box-shadow: 0 0 0 3px rgba(104, 168, 22, 0.08);
}

.blog-search-btn {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.blog-search-btn:hover {
  color: #1e293b;
}

@media (max-width: 768px) {
  .blog-empty-state-section {
    padding: 3rem 1.25rem 5rem 1.25rem;
  }
  .blog-empty-title {
    font-size: 1.55rem;
  }
  .blog-empty-desc {
    font-size: 0.88rem;
  }
}

/* =========================================================
   CAREERS PAGE - HERO BANNER SECTION (1:1 with Screenshot)
   ========================================================= */
.careers-hero-section {
  position: relative;
  width: 100%;
  min-height: 250px;
  background-image: url('../assets/images/careers_hero_sunset.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4.75rem 1.5rem;
}

.careers-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.52) 100%);
}

.careers-hero-container {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.careers-hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(3.2rem, 5.5vw, 4.5rem);
  font-weight: 900;
  font-style: italic;
  color: #ffffff;
  margin: 0 0 0.85rem 0;
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.5);
}

.careers-hero-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 500;
}

.careers-breadcrumb-link {
  color: #f1f5f9;
  text-decoration: none;
  transition: color 0.2s ease;
}

.careers-breadcrumb-link:hover {
  color: #68a816;
}

.careers-breadcrumb-sep {
  color: #e2e8f0;
  font-weight: 600;
}

.careers-breadcrumb-current {
  color: #ffffff;
  font-weight: 700;
}

/* =========================================================
   CAREERS PAGE - WHY JOIN US & BENEFIT CARDS (1:1 with Screenshot)
   ========================================================= */
.careers-benefits-section {
  padding: 4.25rem 1.5rem 1.25rem 1.5rem;
  background-color: #ffffff;
  border-bottom: 1px solid #cbd5e1;
}

.careers-benefits-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 2rem;
  align-items: center;
}

.careers-lead-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 320px;
}

.careers-lead-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  font-style: italic;
  color: #68a816;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.55rem;
}

.careers-lead-headline {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  font-style: italic;
  color: #1e293b;
  line-height: 1.25;
  margin: 0 0 1.1rem 0;
}

.careers-lead-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.83rem;
  font-style: italic;
  font-weight: 400;
  color: #64748b;
  line-height: 1.55;
  margin: 0;
}

.careers-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  align-items: stretch;
}

.career-benefit-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 2rem 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
  justify-content: flex-start;
}

.career-benefit-card::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #f0fdf4;
  z-index: 1;
  pointer-events: none;
}

.career-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  border-color: #cbd5e1;
}

.benefit-icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f0fdf4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #68a816;
  font-size: 1.35rem;
  margin-bottom: 1.15rem;
  position: relative;
  z-index: 2;
}

.benefit-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  font-style: italic;
  color: #1e293b;
  margin: 0 0 0.7rem 0;
  line-height: 1.25;
  position: relative;
  z-index: 2;
}

.benefit-card-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.76rem;
  font-style: italic;
  font-weight: 500;
  color: #64748b;
  line-height: 1.45;
  margin: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 1024px) {
  .careers-benefits-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .careers-lead-col {
    padding-right: 0;
    text-align: center;
  }
  .careers-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .careers-hero-section {
    padding: 3.5rem 1rem;
  }
  .careers-hero-title {
    font-size: clamp(2.4rem, 6vw, 3.2rem);
  }
  .careers-cards-grid {
    grid-template-columns: 1fr;
  }
  .careers-lead-headline {
    font-size: 1.45rem;
  }
}

/* =========================================================
   CAREERS PAGE - LIFE AT SOLOTRONICS (1:1 with Screenshot)
   ========================================================= */
.careers-life-section {
  padding: 4rem 1.5rem 1.75rem 1.5rem;
  background-color: #ffffff;
}

.careers-life-container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.careers-life-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.careers-life-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  font-style: italic;
  color: #68a816;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 0.55rem;
}

.careers-life-headline {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  font-style: italic;
  color: #1e293b;
  line-height: 1.25;
  margin: 0;
}

.careers-life-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.35rem;
  align-items: stretch;
}

.careers-life-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.careers-life-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 11.5;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #f1f5f9;
}

.careers-life-img-wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.careers-life-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.careers-life-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
  font-style: italic;
  color: #1e293b;
  margin: 0.85rem 0 0 0;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

@media (max-width: 992px) {
  .careers-life-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 576px) {
  .careers-life-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .careers-life-headline {
    font-size: 1.55rem;
  }
}

/* =========================================================
   CAREERS PAGE - OPEN POSITIONS CARDS (1:1 with Screenshot)
   ========================================================= */
.careers-jobs-section {
  padding: 1.5rem 1.5rem 4.5rem 1.5rem;
  background-color: #ffffff;
}

.careers-jobs-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1rem;
}

.careers-jobs-header {
  text-align: center;
  margin-bottom: 2.25rem;
}

.careers-jobs-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  font-style: italic;
  color: #68a816;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 0.55rem;
}

.careers-jobs-headline {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  font-style: italic;
  color: #1e293b;
  line-height: 1.25;
  margin: 0;
}

.careers-jobs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
  align-items: stretch;
}

.career-job-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 1.75rem 1.15rem 1.45rem 1.15rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.career-job-card::before {
  content: '';
  position: absolute;
  top: -16px;
  right: -16px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #f0fdf4;
  z-index: 1;
  pointer-events: none;
}

.career-job-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  border-color: #cbd5e1;
}

.job-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.job-icon-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #68a816;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.job-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
  font-style: italic;
  color: #1e293b;
  line-height: 1.25;
  margin: 0;
}

.job-specs-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
  position: relative;
  z-index: 2;
}

.job-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.82rem;
  font-style: italic;
  font-family: 'Poppins', sans-serif;
  line-height: 1.35;
}

.job-spec-label {
  font-weight: 700;
  color: #64748b;
}

.job-spec-value {
  font-weight: 700;
  color: #1e293b;
  text-align: right;
}

.job-apply-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #68a816;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  font-style: italic;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease, transform 0.2s ease;
  position: relative;
  z-index: 2;
  margin-top: auto;
}

.job-apply-link:hover {
  color: #528610;
  transform: translateX(3px);
}

/* =========================================================
   CAREERS PAGE - RESUME CTA FULL WIDTH (1:1 with Screenshot)
   ========================================================= */
.careers-resume-cta-section {
  width: 100%;
  background-color: #06182c;
  background-image: 
    radial-gradient(circle at 100% 50%, rgba(104, 168, 22, 0.12) 0%, transparent 60%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.035) 25%, transparent 25%),
    linear-gradient(225deg, rgba(255, 255, 255, 0.035) 25%, transparent 25%),
    linear-gradient(315deg, rgba(255, 255, 255, 0.035) 25%, transparent 25%),
    linear-gradient(45deg, rgba(255, 255, 255, 0.035) 25%, transparent 25%);
  background-size: 100% 100%, 36px 36px, 36px 36px, 36px 36px, 36px 36px;
  background-position: 0 0, 0 0, 18px 0, 18px -18px, 0 18px;
  padding: 4.5rem 1.5rem;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.careers-resume-cta-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.resume-cta-headline {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  font-weight: 900;
  font-style: italic;
  color: #ffffff;
  line-height: 1.2;
  margin: 0 0 1.15rem 0;
}

.text-lime-brand {
  color: #68a816;
}

.resume-cta-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.86rem;
  font-style: italic;
  font-weight: 400;
  color: #cbd5e1;
  line-height: 1.65;
  margin: 0;
  max-width: 520px;
}

.resume-submit-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  font-style: italic;
  color: #ffffff;
  margin: 0 0 0.5rem 0;
}

.resume-submit-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-style: italic;
  font-weight: 400;
  color: #cbd5e1;
  margin: 0 0 1.35rem 0;
  line-height: 1.5;
}

.btn-send-cv {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background-color: #74b61a;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  font-style: italic;
  padding: 0.85rem 1.85rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 14px rgba(116, 182, 26, 0.35);
}

.btn-send-cv:hover {
  background-color: #63a014;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(116, 182, 26, 0.45);
  color: #ffffff;
}

@media (max-width: 992px) {
  .careers-jobs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .careers-resume-cta-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 576px) {
  .careers-jobs-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   PROJECTS PAGE - HERO BANNER SECTION (1:1 with Screenshot)
   ========================================================= */
.projects-hero-section {
  width: 100%;
  background-color: #000000;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5.5rem 1.5rem;
}

.projects-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.projects-hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(3.2rem, 5.5vw, 4.5rem);
  font-weight: 900;
  font-style: italic;
  color: #ffffff;
  margin: 0 0 0.85rem 0;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.projects-hero-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 500;
}

@media (max-width: 640px) {
  .projects-hero-section {
    padding: 3.5rem 1rem;
  }
  .projects-hero-title {
    font-size: clamp(2.4rem, 6vw, 3.2rem);
  }
}

/* =========================================================
   PROJECTS PAGE - ALL PROJECTS SECTION (1:1 with Screenshot)
   ========================================================= */
.all-projects-section {
  padding: 4rem 2rem 6rem 2rem;
  background-color: #ffffff;
}

.all-projects-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1rem;
}

.all-projects-header {
  text-align: center;
  margin-bottom: 2.25rem;
}

.all-projects-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 900;
  font-style: italic;
  color: #1e3a5f;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.2;
}

/* Filter Navigation Bar */
.projects-filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 3rem;
}

.filter-tab-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.02em;
  color: #475569;
  background-color: #ffffff;
  border: 1px solid #cbd5e1;
  padding: 0.55rem 1.25rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.filter-tab-btn:hover {
  border-color: #1e3a5f;
  color: #1e3a5f;
}

.filter-tab-btn.active {
  background-color: #1a365d;
  color: #ffffff;
  border-color: #1a365d;
  box-shadow: 0 3px 10px rgba(26, 54, 93, 0.25);
}

/* Projects Cards Grid: 4 Columns */
.projects-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
  align-items: stretch;
}

.project-item-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.project-item-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.09);
  border-color: #cbd5e1;
}

.project-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 12;
  background-color: #f1f5f9;
  overflow: hidden;
}

.project-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s ease;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.project-item-card:hover .project-thumb-img {
  transform: scale(1.04);
}

.featured-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ea580c;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  font-style: italic;
  padding: 0.22rem 0.65rem;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(234, 88, 12, 0.4);
  z-index: 2;
  letter-spacing: 0.02em;
}

.project-card-body {
  padding: 1.25rem 1.15rem 1.35rem 1.15rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.project-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
  font-style: italic;
  color: #1e293b;
  margin: 0 0 0.45rem 0;
  line-height: 1.3;
}

.project-card-location {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  font-style: italic;
  color: #0284c7;
  margin-bottom: 0.75rem;
}

.project-card-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.76rem;
  font-style: italic;
  font-weight: 400;
  color: #64748b;
  line-height: 1.55;
  margin: 0 0 1.15rem 0;
  flex-grow: 1;
}

.project-tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.project-tag {
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  font-style: italic;
  color: #475569;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 0.2rem 0.65rem;
  border-radius: 9999px;
}

.btn-project-view {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background-color: #ea580c;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.02em;
  padding: 0.68rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  width: 100%;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 3px 10px rgba(234, 88, 12, 0.25);
}

.btn-project-view:hover {
  background-color: #c2410c;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(234, 88, 12, 0.35);
}

@media (max-width: 1200px) {
  .projects-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 860px) {
  .projects-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .all-projects-section {
    padding: 3.5rem 1rem 4.5rem 1rem;
  }
}

@media (max-width: 540px) {
  .projects-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   PROJECT DETAILS MODAL POPUP (1:1 with Screenshot)
   ========================================================= */
.project-modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(4px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.project-modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.project-modal-dialog {
  background: #ffffff;
  border-radius: 16px;
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  transform: scale(0.92);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
}

.project-modal-backdrop.active .project-modal-dialog {
  transform: scale(1);
}

.project-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  background: #ffffff;
  color: #1e293b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, background 0.2s ease;
}

.project-modal-close:hover {
  transform: scale(1.1);
  background: #f1f5f9;
}

.project-modal-media {
  position: relative;
  width: 100%;
  height: 360px;
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.project-modal-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: 100%;
  object-fit: contain;
  display: block;
}

.project-modal-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #ea580c;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  font-style: italic;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  box-shadow: 0 2px 8px rgba(234, 88, 12, 0.5);
  z-index: 2;
}

.project-modal-body {
  padding: 1.5rem 1.5rem 1.75rem 1.5rem;
}

.project-modal-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  font-style: italic;
  color: #1e293b;
  margin: 0 0 0.4rem 0;
  line-height: 1.25;
}

.project-modal-location {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  font-style: italic;
  color: #0284c7;
  margin-bottom: 0.75rem;
}

.project-modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.15rem;
}

.project-modal-overview-box {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 1.15rem 1.25rem;
}

.project-modal-overview-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  color: #0284c7;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 0.45rem 0;
}

.project-modal-overview-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-style: italic;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

/* =========================================================
   SHOP PAGE - HERO BANNER SECTION (1:1 with Screenshot)
   ========================================================= */
.shop-hero-section {
  width: 100%;
  background-color: #000000;
  color: #ffffff;
  padding: 2.75rem 2rem 2.85rem 2rem;
  text-align: center;
}

.shop-hero-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.shop-hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.75rem, 4.5vw, 3.8rem);
  font-weight: 900;
  font-style: italic;
  color: #ffffff;
  margin: 0 0 1.65rem 0;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.shop-categories-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.shop-cat-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 1.25rem 2.75rem;
}

.shop-cat-item {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.2s ease;
}

.shop-cat-item:hover {
  transform: translateY(-2px);
}

.shop-cat-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  font-style: italic;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.2rem;
  transition: color 0.2s ease;
}

.shop-cat-item:hover .shop-cat-name {
  color: #68a816;
}

.shop-cat-count {
  font-family: 'Poppins', sans-serif;
  font-size: 0.74rem;
  font-style: italic;
  font-weight: 400;
  color: #94a3b8;
}

@media (max-width: 992px) {
  .shop-cat-row {
    gap: 1.15rem 1.75rem;
  }
}

@media (max-width: 640px) {
  .shop-hero-section {
    padding: 2.25rem 1rem;
  }
  .shop-hero-title {
    margin-bottom: 1.25rem;
    font-size: clamp(2.2rem, 6vw, 2.75rem);
  }
  .shop-cat-row {
    gap: 1rem 1.25rem;
  }
}

/* =========================================================
   SHOP PAGE - PRODUCTS CATALOG SECTION (1:1 with Screenshot)
   ========================================================= */
.shop-catalog-section {
  padding: 2.5rem 1.5rem 5.5rem 1.5rem;
  background-color: #ffffff;
}

.shop-catalog-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Shop Utility Bar */
.shop-utility-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 2.5rem;
}

.shop-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  color: #64748b;
}

.shop-bc-link {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.shop-bc-link:hover {
  color: #68a816;
}

.shop-bc-sep {
  color: #cbd5e1;
}

.shop-bc-current {
  color: #1e293b;
  font-weight: 600;
}

.shop-toolbar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.shop-show-options {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  color: #64748b;
}

.shop-show-label {
  font-weight: 500;
  margin-right: 0.2rem;
}

.shop-show-val {
  color: #64748b;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.shop-show-val:hover,
.shop-show-val.active {
  color: #1e293b;
}

.shop-show-sep {
  color: #cbd5e1;
}

.shop-grid-views {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.grid-view-btn {
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 1rem;
  cursor: pointer;
  padding: 0.2rem;
  transition: color 0.2s ease;
}

.grid-view-btn:hover,
.grid-view-btn.active {
  color: #1e293b;
}

.shop-sort-wrap {
  position: relative;
}

.shop-sort-select {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  color: #334155;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 0.45rem 1.85rem 0.45rem 0.85rem;
  cursor: pointer;
  outline: none;
  appearance: auto;
}

/* Products Grid: 3 Columns (1:1 with Screenshot) */
.shop-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2rem;
}

.shop-product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: transform 0.25s ease;
}

.shop-product-card:hover {
  transform: translateY(-4px);
}

.shop-product-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.shop-product-card:hover .shop-product-img-wrap {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  border-color: #e2e8f0;
}

.shop-product-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

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

.shop-product-info {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.shop-product-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  font-style: italic;
  color: #1e293b;
  margin: 0 0 0.25rem 0;
  line-height: 1.3;
  transition: color 0.2s ease;
}

.shop-product-card:hover .shop-product-title {
  color: #68a816;
}

.shop-product-cat {
  font-family: 'Poppins', sans-serif;
  font-size: 0.76rem;
  font-style: italic;
  font-weight: 400;
  color: #64748b;
}

@media (max-width: 860px) {
  .shop-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem 1.25rem;
  }
}

@media (max-width: 540px) {
  .shop-products-grid {
    grid-template-columns: 1fr;
  }
  .shop-utility-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================================================
   HOME PAGE - HERO SLIDER BANNER (1:1 with Screenshot 1)
   ========================================================= */
.hero-slider-section {
  position: relative;
  width: 100%;
  min-height: 560px;
  height: 72vh;
  max-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #0f172a;
}

.hero-bg-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 2s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.hero-bg-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.hero-bg-1 {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.28) 45%, rgba(0, 0, 0, 0.05) 100%), url('../assets/images/home_smart_solar_highway_hero.png');
}

.hero-bg-2 {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.28) 45%, rgba(0, 0, 0, 0.05) 100%), url('../assets/images/home_hero_solar_smart_city.png');
}

.hero-bg-3 {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.28) 45%, rgba(0, 0, 0, 0.05) 100%), url('../assets/images/home_hero_solar_high_mast.png');
}

.hero-bg-4 {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.28) 45%, rgba(0, 0, 0, 0.05) 100%), url('../assets/images/home_hero_solar_park_sunset.png');
}

.hero-slider-content {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 4rem;
  position: relative;
  z-index: 10;
}

.hero-slider-text {
  max-width: 620px;
  text-align: left;
}

.hero-slider-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.3rem, 4.2vw, 3.5rem);
  font-weight: 900;
  font-style: italic;
  color: #ffffff;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.hero-slider-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.95rem, 1.25vw, 1.08rem);
  font-style: italic;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 2rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
  opacity: 0.95;
}

.btn-hero-click {
  display: inline-block;
  padding: 0.65rem 2.25rem;
  border: 1.5px solid #ffffff;
  border-radius: 4px;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  font-style: italic;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(2px);
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-hero-click:hover {
  background: #ea580c;
  border-color: #ea580c;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(234, 88, 12, 0.4);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 64px;
  background: rgba(0, 0, 0, 0.3);
  color: #ffffff;
  border: none;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s ease;
}

.slider-arrow-prev {
  left: 0;
}

.slider-arrow-next {
  right: 0;
}

.slider-arrow:hover {
  background: rgba(0, 0, 0, 0.7);
}

@media (max-width: 860px) {
  .hero-slider-section {
    min-height: 480px;
    height: 60vh;
  }
  .hero-slider-content {
    padding: 0 2rem;
  }
  .hero-slider-title {
    font-size: 2rem;
  }
  .hero-slider-subtitle {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero-slider-content {
    padding: 0 1.25rem;
  }
  .hero-slider-title {
    font-size: 1.65rem;
  }
  .slider-arrow {
    width: 32px;
    height: 48px;
    font-size: 1.1rem;
  }
}

/* =========================================================
   HOME PAGE - ABOUT SOLOTRONICS SECTION (1:1 with Screenshot 1)
   ========================================================= */
.home-about-section {
  padding: 5.5rem 3rem 6.5rem 3rem;
  background-color: #ffffff;
  overflow: hidden;
}

.home-about-container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4.5rem;
  align-items: center;
}

/* Left Media Column */
.home-about-media-col {
  position: relative;
}

.home-about-media-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.home-about-main-card {
  position: relative;
  width: 88%;
  border-radius: 18px;
  overflow: visible;
}

.home-about-main-img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.18);
  border: 4px solid #ffffff;
  display: block;
}

.home-about-green-badge {
  position: absolute;
  bottom: -15px;
  left: -10px;
  background-color: #68a816;
  color: #ffffff;
  padding: 0.75rem 1.4rem;
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  font-style: italic;
  line-height: 1.3;
  box-shadow: 0 10px 24px rgba(104, 168, 22, 0.45);
  border: 2.5px solid #ffffff;
  z-index: 5;
}

.home-about-inset-card {
  position: absolute;
  bottom: -30px;
  right: -10px;
  width: 58%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.35);
  border: 3.5px solid #ffffff;
  z-index: 4;
}

.home-about-inset-img {
  width: 100%;
  height: 165px;
  object-fit: cover;
  display: block;
}

/* Right Content Column */
.home-about-content-col {
  display: flex;
  flex-direction: column;
}

.home-about-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  font-style: italic;
  color: #68a816;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.home-about-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.85rem, 2.5vw, 2.35rem);
  font-weight: 900;
  font-style: italic;
  color: #1e293b;
  line-height: 1.22;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.home-about-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  font-style: italic;
  font-weight: 500;
  color: #64748b;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

/* 4 Feature Circles Grid */
.home-about-features-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  text-align: center;
}

.home-feat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.home-feat-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: transform 0.25s ease;
}

.home-feat-item:hover .home-feat-icon-circle {
  transform: translateY(-3px) scale(1.05);
}

.home-feat-icon-circle.feat-blue {
  background-color: #f0f9ff;
  border: 1.5px solid #0284c7;
  color: #0284c7;
}

.home-feat-icon-circle.feat-orange {
  background-color: #fff7ed;
  border: 1.5px solid #ea580c;
  color: #ea580c;
}

.home-feat-icon-circle.feat-green {
  background-color: #f0fdf4;
  border: 1.5px solid #16a34a;
  color: #16a34a;
}

.home-feat-icon-circle.feat-sky {
  background-color: #f0f9ff;
  border: 1.5px solid #0284c7;
  color: #0284c7;
}

.home-feat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  font-style: italic;
  color: #1e293b;
  line-height: 1.3;
}

@media (max-width: 992px) {
  .home-about-container {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .home-about-media-wrapper {
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .home-about-section {
    padding: 3.5rem 1rem 4.5rem 1rem;
  }
  .home-about-features-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1rem;
  }
}

/* =========================================================
   HOME PAGE - PREMIUM LED LIGHTING SOLUTIONS (1:1 Match)
   ========================================================= */
.home-premium-products-section {
  padding: 3.5rem 1.5rem 1.5rem 1.5rem;
  background-color: #ffffff;
  position: relative;
}

.home-premium-container {
  max-width: 1140px;
  margin: 0 auto;
  background: linear-gradient(180deg, #f8faff 0%, #f1f4f8 100%);
  border: 1px solid #eef2f6;
  border-radius: 28px;
  padding: 3.5rem 2rem 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 35px -10px rgba(15, 23, 42, 0.05);
}

.home-premium-container::before {
  content: '';
  position: absolute;
  top: -140px;
  left: -140px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 50px solid rgba(226, 232, 240, 0.45);
  box-shadow: 0 0 0 40px rgba(241, 245, 249, 0.35);
  pointer-events: none;
  z-index: 0;
}

.premium-header-wrap {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 2.75rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.premium-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 9999px;
  padding: 0.35rem 1.15rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  font-style: italic;
  color: #1e293b;
  letter-spacing: 0.04em;
  margin-bottom: 1.15rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.yellow-dot {
  color: #eab308;
  font-size: 0.75rem;
}

.premium-section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 900;
  font-style: italic;
  color: #68a816;
  line-height: 1.15;
  margin: 0 0 1.25rem 0;
  letter-spacing: -0.01em;
}

.premium-section-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  font-style: italic;
  font-weight: 500;
  color: #64748b;
  line-height: 1.65;
  margin: 0 0 2.25rem 0;
}

/* Category Filter Bar */
.premium-filter-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}

.premium-filter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.65rem;
}

.premium-filter-btn {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 9999px;
  padding: 0.45rem 1.15rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  font-style: italic;
  color: #1e1b4b;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.premium-filter-btn:hover {
  border-color: #1e1b4b;
  color: #1e1b4b;
  transform: translateY(-1px);
}

.premium-filter-btn.active {
  background-color: #1e1b4b;
  border-color: #1e1b4b;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(30, 27, 75, 0.3);
}

/* Carousel Container */
.premium-carousel-wrapper {
  position: relative;
  width: 100%;
  padding: 0 0.5rem;
  z-index: 2;
}

.premium-products-carousel {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1.25rem 0.25rem 2rem 0.25rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.premium-products-carousel::-webkit-scrollbar {
  display: none;
}

.premium-prod-card {
  flex: 0 0 calc((100% - 4.5rem) / 4);
  min-width: calc((100% - 4.5rem) / 4);
  max-width: calc((100% - 4.5rem) / 4);
  width: calc((100% - 4.5rem) / 4);
  scroll-snap-align: start;
  background-color: #ffffff;
  border: 1px solid #eef2f6;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.premium-prod-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.1);
}

.premium-prod-img-box {
  position: relative;
  width: 100%;
  height: 220px;
  background-color: #f3f4f6;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 16px 16px 0 0;
}

.prem-cat-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #1e1b4b;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  font-style: italic;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  z-index: 2;
}

.prem-wa-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #22c55e;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 2;
  box-shadow: 0 3px 8px rgba(34, 197, 94, 0.35);
  transition: transform 0.2s ease, background-color 0.2s ease;
  text-decoration: none;
}

.prem-wa-btn:hover {
  transform: scale(1.15);
  background-color: #16a34a;
}

.prem-prod-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.premium-prod-card[data-category*="solar-power"] .prem-prod-img,
.premium-prod-card:nth-child(1) .prem-prod-img,
.premium-prod-card:nth-child(3) .prem-prod-img {
  object-fit: contain;
  padding: 0.75rem;
}

.premium-prod-card:hover .prem-prod-img {
  transform: scale(1.06);
}

.prem-featured-tag {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: #fef08a;
  color: #854d0e;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 900;
  font-style: italic;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
}

.premium-prod-info {
  padding: 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  background-color: #ffffff;
  border-top: 1px solid #f8fafc;
}

.prem-prod-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.96rem;
  font-weight: 800;
  font-style: italic;
  color: #1e293b;
  margin: 0 0 0.45rem 0;
  line-height: 1.25;
}

.prem-prod-spec {
  font-family: 'Poppins', sans-serif;
  font-size: 0.76rem;
  font-style: italic;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* Card Action Buttons (View Details & Get Quote) */
.card-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 1.15rem;
  padding-top: 0.75rem;
  border-top: 1px dashed #f1f5f9;
}

.btn-card-details {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.95rem;
  border-radius: 9999px;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  font-style: italic;
  color: #1e1b4b;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.btn-card-details:hover {
  border-color: #1e1b4b;
  transform: translateY(-1px);
}

.btn-card-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 1.15rem;
  border-radius: 9999px;
  background: #b58d2a;
  background: linear-gradient(135deg, #c49a2e, #a0781c);
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  font-style: italic;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 3px 8px rgba(181, 141, 42, 0.35);
}

.btn-card-quote:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 12px rgba(181, 141, 42, 0.45);
}

/* Explore All Products Button */
.premium-bottom-action {
  display: flex;
  justify-content: center;
  margin-top: 1.75rem;
  position: relative;
  z-index: 3;
}

.btn-explore-all-products {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background-color: #1e1b4b;
  color: #ffffff;
  padding: 0.8rem 2.25rem;
  border-radius: 9999px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  font-style: italic;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(30, 27, 75, 0.35);
  transition: all 0.25s ease;
}

.btn-explore-all-products:hover {
  background-color: #2e1065;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(30, 27, 75, 0.45);
}

/* Nav Arrows */
.premium-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  color: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  transition: all 0.2s ease;
}

.premium-nav-arrow:hover {
  background-color: #1e1b4b;
  color: #ffffff;
  border-color: #1e1b4b;
  box-shadow: 0 8px 20px rgba(30, 27, 75, 0.25);
}

.premium-nav-arrow.arrow-left {
  left: -14px;
}

.premium-nav-arrow.arrow-right {
  right: -14px;
}

/* =========================================================
   HOME PAGE - IMPACT STATS & HIGHLIGHTS SECTION (1:1 Match)
   ========================================================= */
.home-stats-impact-section {
  padding: 1.5rem 1.5rem 5rem 1.5rem;
  background-color: #ffffff;
}

.home-stats-container {
  max-width: 1140px;
  margin: 0 auto;
}

.home-stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.stat-card {
  background: #ffffff;
  border: 1px solid #eef2f6;
  border-radius: 20px;
  padding: 2.25rem 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.stat-icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #ecfdf5;
  color: #68a816;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 2px 8px rgba(104, 168, 22, 0.15);
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  font-style: italic;
  color: #ea580c;
  line-height: 1.1;
  margin-bottom: 0.45rem;
}

.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  font-style: italic;
  color: #1e293b;
  line-height: 1.25;
}

.stat-label-large {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  font-style: italic;
  color: #1e293b;
  line-height: 1.35;
  margin-top: 0.35rem;
}

@media (max-width: 1100px) {
  .home-stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .premium-prod-card {
    flex: 0 0 calc((100% - 3rem) / 3);
    min-width: calc((100% - 3rem) / 3);
    max-width: calc((100% - 3rem) / 3);
    width: calc((100% - 3rem) / 3);
  }
}

@media (max-width: 768px) {
  .home-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .premium-prod-card {
    flex: 0 0 calc((100% - 1.5rem) / 2);
    min-width: calc((100% - 1.5rem) / 2);
    max-width: calc((100% - 1.5rem) / 2);
    width: calc((100% - 1.5rem) / 2);
  }
}

@media (max-width: 520px) {
  .home-stats-grid {
    grid-template-columns: 1fr;
  }
  .premium-prod-card {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
    width: 100%;
  }
}

/* =========================================================
   HOME PAGE - COMPLETED PROJECTS SECTION (1:1 Match)
   ========================================================= */
.home-completed-projects-section {
  padding: 3.5rem 1.5rem 1.5rem 1.5rem;
  background-color: #ffffff;
  position: relative;
}

.home-completed-projects-container {
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(180deg, #f8faff 0%, #f1f4f8 100%);
  border: 1px solid #eef2f6;
  border-radius: 28px;
  padding: 3.75rem 2.25rem 3.5rem 2.25rem;
  box-shadow: 0 10px 35px -10px rgba(15, 23, 42, 0.05);
}

.completed-projects-header {
  text-align: center;
  margin-bottom: 2.75rem;
}

.completed-projects-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 900;
  font-style: italic;
  color: #1e293b;
  letter-spacing: -0.01em;
  margin: 0 0 0.5rem 0;
}

.completed-projects-divider {
  width: 48px;
  height: 3.5px;
  background-color: #3b82f6;
  margin: 0.5rem auto 2rem auto;
  border-radius: 2px;
}

.completed-projects-filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.5rem;
}

.home-proj-filter-btn {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 0.45rem 1.25rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  font-style: italic;
  color: #1e293b;
  letter-spacing: 0.02em;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.home-proj-filter-btn:hover {
  border-color: #1e1b4b;
  color: #1e1b4b;
  transform: translateY(-1px);
}

.home-proj-filter-btn.active {
  background-color: #1e1b4b;
  border-color: #1e1b4b;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(30, 27, 75, 0.3);
}

/* Projects Grid */
.completed-projects-carousel-wrapper {
  position: relative;
  width: 100%;
  padding: 0 0.5rem;
  z-index: 2;
}

.completed-projects-carousel {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0.5rem 0.25rem 1.5rem 0.25rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.completed-projects-carousel::-webkit-scrollbar {
  display: none;
}

.home-project-card {
  flex: 0 0 calc((100% - 4.5rem) / 4);
  min-width: calc((100% - 4.5rem) / 4);
  max-width: calc((100% - 4.5rem) / 4);
  width: calc((100% - 4.5rem) / 4);
  background-color: #ffffff;
  border: 1px solid #eef2f6;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.home-project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.1);
}

.home-project-img-box {
  width: 100%;
  height: 200px;
  background-color: #f1f5f9;
  overflow: hidden;
}

.home-proj-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.home-project-card:hover .home-proj-img {
  transform: scale(1.06);
}

.home-project-card-body {
  padding: 1.25rem 1.25rem 1.4rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.home-project-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  font-style: italic;
  color: #1e293b;
  line-height: 1.35;
  margin: 0 0 1rem 0;
  min-height: 2.7rem;
}

.home-project-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px dashed #f1f5f9;
}

.home-project-loc {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-style: italic;
  color: #3b82f6;
  font-weight: 500;
}

.home-proj-badge {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  font-style: italic;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
}

.badge-green {
  background-color: #ecfdf5;
  color: #15803d;
}

.badge-red {
  background-color: #fef2f2;
  color: #b91c1c;
}

.badge-amber {
  background-color: #fefce8;
  color: #a16207;
}

.badge-blue {
  background-color: #eff6ff;
  color: #1d4ed8;
}

.badge-purple {
  background-color: #f3e8ff;
  color: #7e22ce;
}

.badge-orange {
  background-color: #fff7ed;
  color: #c2410c;
}

@media (max-width: 1100px) {
  .home-project-card {
    flex: 0 0 calc((100% - 3rem) / 3);
    min-width: calc((100% - 3rem) / 3);
    max-width: calc((100% - 3rem) / 3);
  }
}

@media (max-width: 768px) {
  .home-project-card {
    flex: 0 0 calc((100% - 1.5rem) / 2);
    min-width: calc((100% - 1.5rem) / 2);
    max-width: calc((100% - 1.5rem) / 2);
  }
}

@media (max-width: 480px) {
  .home-project-card {
    flex: 0 0 85%;
    min-width: 85%;
    max-width: 85%;
  }
}

.completed-projects-bottom-action {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.btn-home-all-projects {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #1e1b4b;
  color: #ffffff;
  padding: 0.75rem 2.25rem;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  font-style: italic;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(30, 27, 75, 0.35);
  transition: all 0.25s ease;
}

.btn-home-all-projects:hover {
  background-color: #2e1065;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(30, 27, 75, 0.45);
}

@media (max-width: 1024px) {
  .completed-projects-carousel {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .completed-projects-carousel {
    grid-template-columns: 1fr;
  }
  .home-completed-projects-container {
    padding: 2.5rem 1.25rem 2.5rem 1.25rem;
  }
}

/* =========================================================
   HOME PAGE - CERTIFICATES & APPROVALS SECTION (1:1 Match)
   ========================================================= */
.home-certificates-section {
  padding: 1.5rem 1.5rem 2.5rem 1.5rem;
  background-color: #ffffff;
  position: relative;
}

.home-certificates-container {
  max-width: 1100px;
  margin: 0 auto;
}

.certificates-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.65rem;
  font-weight: 900;
  font-style: italic;
  color: #1e293b;
  letter-spacing: -0.01em;
  text-align: center;
  margin: 0 0 2rem 0;
  text-transform: uppercase;
}

.certificates-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.certificate-card {
  background: #ffffff;
  border: 1px solid #eef2f6;
  border-radius: 18px;
  padding: 1.75rem 1rem 1.5rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.certificate-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  border-color: #cbd5e1;
}

.certificate-logo-box {
  width: 100%;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.15rem;
}

.cert-img-logo,
.cert-svg-logo {
  max-width: 95px;
  max-height: 65px;
  width: auto;
  height: 60px;
  object-fit: contain;
  display: block;
}

.certificate-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  font-style: italic;
  color: #1e293b;
  margin: 0 0 0.25rem 0;
  line-height: 1.25;
}

.certificate-status {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-style: italic;
  color: #64748b;
  font-weight: 500;
  margin: 0;
}

@media (max-width: 1024px) {
  .certificates-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .certificates-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .certificates-title {
    font-size: 1.35rem;
  }
}

@media (max-width: 420px) {
  .certificates-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   HOME PAGE - WHY CHOOSE US SECTION (1:1 Match)
   ========================================================= */
.home-why-choose-section {
  padding: 2rem 1.5rem 6.5rem 1.5rem;
  background-color: #ffffff;
  position: relative;
}

.home-why-choose-container {
  max-width: 1100px;
  margin: 0 auto;
}

.home-why-choose-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.why-choose-left-col {
  display: flex;
  flex-direction: column;
}

.why-choose-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  font-style: italic;
  color: #68a816;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.why-choose-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 3.2vw, 2.65rem);
  font-weight: 900;
  font-style: italic;
  color: #1e1b4b;
  line-height: 1.18;
  margin: 0 0 1.25rem 0;
  letter-spacing: -0.02em;
}

.why-choose-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-style: italic;
  color: #64748b;
  line-height: 1.65;
  margin: 0 0 1.75rem 0;
}

.why-choose-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 2.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  font-style: italic;
  color: #1e293b;
}

.checklist-item .check-icon {
  color: #16a34a;
  font-size: 1.1rem;
  font-weight: 900;
}

.why-choose-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.why-stat-card {
  background: #ffffff;
  border: 1px solid #eef2f6;
  border-radius: 14px;
  padding: 1.1rem 1rem 1.15rem 1rem;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 105px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.why-stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  font-style: italic;
  color: #64748b;
  line-height: 1.25;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
}

.why-stat-body {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.why-stat-icon-pill {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.icon-pill-teal {
  background-color: #ecfdf5;
  color: #059669;
}

.icon-pill-blue {
  background-color: #eff6ff;
  color: #2563eb;
}

.icon-pill-orange {
  background-color: #fff7ed;
  color: #ea580c;
}

.why-stat-value-group {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.why-stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
}

.why-stat-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  font-style: italic;
}

.why-stat-loc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  font-style: italic;
  line-height: 1.2;
}

.text-teal {
  color: #059669;
}

.text-blue {
  color: #2563eb;
}

.text-orange {
  color: #ea580c;
}

/* Right Artwork Column */
.why-choose-right-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-artwork-container {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.why-photo-box {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
  border: 4px solid #ffffff;
  background-color: #f8fafc;
  z-index: 2;
}

.why-main-photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

/* Floating Sustainable Energy Badge */
.why-badge-overlay {
  position: absolute;
  bottom: -18px;
  left: -20px;
  z-index: 10;
  background: #ffffff;
  border-radius: 16px;
  padding: 0.9rem 1.25rem;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.14);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  border: 1px solid #f1f5f9;
}

.why-badge-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.why-badge-icon svg {
  width: 100%;
  height: 100%;
}

.why-badge-texts {
  display: flex;
  flex-direction: column;
}

.why-badge-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  font-style: italic;
  color: #1e293b;
  line-height: 1.2;
}

.why-badge-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-style: italic;
  color: #64748b;
  margin-bottom: 0.2rem;
}

.why-badge-tags {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.5px;
}

.wbt-solar {
  color: #f97316;
}

.wbt-lighting {
  color: #0284c7;
}

.wbt-future {
  color: #16a34a;
}

.wbt-dot {
  color: #cbd5e1;
  margin: 0 2px;
}

@media (max-width: 992px) {
  .home-why-choose-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .why-artwork-container {
    max-width: 520px;
  }
}

@media (max-width: 640px) {
  .why-choose-stats-row {
    grid-template-columns: 1fr;
  }
  .why-badge-overlay {
    bottom: -10px;
    left: 10px;
  }
}

/* =========================================================
   HOME PAGE - PAN-INDIA PRESENCE MAP SECTION (1:1 Match)
   ========================================================= */
.home-presence-map-section {
  padding: 0 1.5rem 6.5rem 1.5rem;
  background-color: #ffffff;
  position: relative;
}

.home-presence-map-container {
  max-width: 1260px;
  margin: 0 auto;
}

.presence-map-wrapper {
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  background-color: #f1f5f9;
}

.presence-map-canvas {
  width: 100%;
  height: 100%;
  z-index: 1;
}

.presence-map-legend {
  position: absolute;
  bottom: 22px;
  left: 22px;
  z-index: 1000;
  background: #ffffff;
  border-radius: 30px;
  padding: 0.45rem 1.15rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
  border: 1px solid #eef2f6;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.dot-head-office {
  background-color: #22c55e;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.25);
}

.dot-projects {
  background-color: #ef4444;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.25);
}

.legend-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  font-style: italic;
  color: #1e293b;
}

/* Custom Marker Pulse Animations */
.leaflet-head-office-pulse {
  background-color: #22c55e;
  border: 2px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.4);
  animation: mapPulse 2s infinite ease-in-out;
}

.leaflet-project-dot {
  background-color: #ef4444;
  border: 1.5px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

@keyframes mapPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

@media (max-width: 640px) {
  .presence-map-wrapper {
    height: 380px;
    border-radius: 18px;
  }
  .presence-map-legend {
    bottom: 14px;
    left: 14px;
    gap: 0.85rem;
    padding: 0.35rem 0.85rem;
  }
  .legend-label {
    font-size: 0.65rem;
  }
}

/* =========================================================
   HOME PAGE - COMMON SECTION HEADING ITALIC
   ========================================================= */
.home-section-heading-italic {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.65rem;
  font-weight: 900;
  font-style: italic;
  color: #1e293b;
  letter-spacing: -0.01em;
  text-align: center;
  margin: 0 0 2.25rem 0;
  text-transform: uppercase;
}

/* =========================================================
   HOME PAGE - DOWNLOAD CENTRE SECTION (1:1 Match)
   ========================================================= */
.home-download-centre-section {
  padding: 1.5rem 1.5rem 4.5rem 1.5rem;
  background-color: #ffffff;
  position: relative;
}

.home-download-centre-container {
  max-width: 1100px;
  margin: 0 auto;
}

.download-centre-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.download-doc-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.download-doc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  border-color: #cbd5e1;
}

.doc-card-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.doc-icon-box {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.doc-svg-icon {
  max-width: 32px;
  max-height: 36px;
  width: 100%;
  height: auto;
}

.doc-text-box {
  display: flex;
  flex-direction: column;
}

.doc-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  font-style: italic;
  color: #1e293b;
  margin: 0 0 0.15rem 0;
  line-height: 1.2;
}

.doc-action {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-style: italic;
  color: #3b82f6;
  font-weight: 500;
}

.doc-arrow-box {
  color: #64748b;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, color 0.2s ease;
}

.download-doc-card:hover .doc-arrow-box {
  transform: translateY(2px);
  color: #1e1b4b;
}

/* =========================================================
   HOME PAGE - WHAT OUR CLIENT SAY SECTION (1:1 Match)
   ========================================================= */
.home-testimonials-section {
  padding: 1.5rem 1.5rem 6.5rem 1.5rem;
  background-color: #ffffff;
  position: relative;
}

.home-testimonials-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.testimonials-carousel-wrapper {
  position: relative;
  width: 100%;
  padding: 0 1rem;
}

.testimonials-carousel-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 0.5rem 0.25rem 1.5rem 0.25rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.testimonials-carousel-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 calc((100% - 3rem) / 3);
  min-width: calc((100% - 3rem) / 3);
  max-width: calc((100% - 3rem) / 3);
  scroll-snap-align: start;
  background: #ffffff;
  border: 1px solid #eef2f6;
  border-radius: 18px;
  padding: 2rem 1.75rem;
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.09);
}

.testi-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  font-style: italic;
  color: #1e293b;
  margin: 0 0 0.65rem 0;
  line-height: 1.3;
}

.testi-stars {
  display: flex;
  gap: 0.25rem;
  color: #f59e0b;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.testi-para {
  font-family: 'Poppins', sans-serif;
  font-size: 0.86rem;
  font-style: italic;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}

.testi-arrow {
  position: absolute;
  top: 46%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
}

.testi-arrow:hover {
  background-color: #1e1b4b;
  color: #ffffff;
  border-color: #1e1b4b;
  box-shadow: 0 6px 18px rgba(30, 27, 75, 0.2);
}

.testi-arrow.arrow-left {
  left: -12px;
}

.testi-arrow.arrow-right {
  right: -12px;
}

.testimonials-dots-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #cbd5e1;
  cursor: pointer;
  transition: all 0.25s ease;
}

.testi-dot.active {
  background-color: #1e1b4b;
  width: 9px;
  height: 9px;
}

@media (max-width: 1024px) {
  .download-centre-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial-card {
    flex: 0 0 calc((100% - 1.5rem) / 2);
    min-width: calc((100% - 1.5rem) / 2);
    max-width: calc((100% - 1.5rem) / 2);
  }
}

@media (max-width: 640px) {
  .download-centre-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-card {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
  }
  .testi-arrow.arrow-left {
    left: 0;
  }
  .testi-arrow.arrow-right {
    right: 0;
  }
}

/* =========================================================
   PRODUCT DETAIL PAGE (1:1 with Screenshot)
   ========================================================= */
.product-detail-main {
  padding: 3rem 4.5rem 3rem 4.5rem;
  background-color: #ffffff;
}

.product-detail-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1rem;
}

.product-breadcrumb-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.product-breadcrumb-trail {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.84rem;
  font-style: italic;
  font-weight: 500;
  color: #64748b;
}

.trail-link {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.trail-link:hover {
  color: #1e1b4b;
}

.trail-sep {
  margin: 0 0.45rem;
  color: #cbd5e1;
}

.trail-current {
  font-weight: 800;
  color: #1e1b4b;
}

.product-nav-pagination {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.p-nav-btn {
  color: #94a3b8;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.p-nav-btn:hover {
  color: #1e1b4b;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3.5rem;
  align-items: start;
}

.product-main-img-box {
  position: relative;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #eef2f6;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.05);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-single-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 520px;
  display: block;
}

.product-zoom-btn {
  position: absolute;
  bottom: 18px;
  left: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: all 0.2s ease;
}

.product-zoom-btn:hover {
  background-color: #1e1b4b;
  color: #ffffff;
  border-color: #1e1b4b;
}

.product-single-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.85rem, 2.75vw, 2.35rem);
  font-weight: 900;
  font-style: italic;
  color: #1e293b;
  margin: 0 0 1.5rem 0;
  letter-spacing: -0.01em;
}

.product-spec-table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 1.5rem;
}

.product-spec-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.product-spec-table th {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  font-style: italic;
  color: #1e293b;
  letter-spacing: 0.03em;
  padding: 0.75rem 0.5rem 0.75rem 0;
  border-bottom: 2px solid #e2e8f0;
}

.product-spec-table td {
  padding: 0.65rem 0.5rem 0.65rem 0;
  font-family: 'Poppins', sans-serif;
  font-size: 0.84rem;
  font-style: italic;
  border-bottom: 1px solid #f1f5f9;
}

.td-key {
  color: #64748b;
  font-weight: 500;
  width: 38%;
}

.td-val {
  color: #334155;
  font-weight: 500;
}

.product-compare-row {
  margin-bottom: 1.25rem;
}

.btn-compare-action {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: none;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.84rem;
  font-weight: 800;
  font-style: italic;
  color: #1e293b;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s ease;
}

.btn-compare-action:hover {
  color: #3b82f6;
}

.product-meta-footer {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  border-top: 1px dashed #e2e8f0;
  padding-top: 1.25rem;
}

.product-meta-category,
.product-meta-share {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-style: italic;
  color: #64748b;
}

.meta-label {
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  font-style: italic;
  color: #1e293b;
}

.meta-category-link {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 600;
}

.share-social-icons {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-left: 0.25rem;
}

.share-icon {
  color: #64748b;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.share-icon:hover {
  color: #1e1b4b;
}

@media (max-width: 1024px) {
  .product-detail-main {
    padding: 2.5rem 2rem 5rem 2rem;
  }
}

@media (max-width: 900px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 640px) {
  .product-detail-main {
    padding: 2rem 1rem 4rem 1rem;
  }
}

/* =========================================================
   PRODUCT DETAIL - DESCRIPTION BLOCK (1:1 with Screenshot)
   ========================================================= */
.product-description-block {
  margin-top: 3.25rem;
  padding: 1.5rem 4rem 0 4rem;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.product-desc-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  font-style: italic;
  color: #1e293b;
  text-align: center;
  margin: 0 0 2.25rem 0;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.product-desc-content {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.product-desc-p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  font-style: italic;
  color: #475569;
  line-height: 1.85;
  margin: 0;
  text-align: left;
}

.product-desc-p strong {
  font-weight: 700;
  color: #1e293b;
}

.product-desc-bottom-line {
  display: none;
}

@media (max-width: 768px) {
  .product-description-block {
    padding: 2rem 0.5rem 0 0.5rem;
  }
}

/* =========================================================
   PRODUCT DETAIL - RELATED PRODUCTS (1:1 with Screenshot)
   ========================================================= */
.product-related-section {
  margin-top: 3.25rem;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
}

.product-related-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  font-style: italic;
  color: #1e293b;
  margin: 0 0 2rem 0;
  text-align: left;
  letter-spacing: -0.01em;
}

.product-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.related-prod-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: transparent;
  transition: transform 0.2s ease;
}

.related-prod-card:hover {
  transform: translateY(-4px);
}

.related-img-box {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  border: 1px solid #f1f5f9;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
  padding: 0.35rem;
}

.related-prod-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.25s ease;
}

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

.related-prod-info {
  text-align: center;
}

.related-prod-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  font-style: italic;
  color: #1e293b;
  margin: 0 0 0.25rem 0;
  line-height: 1.3;
}

.related-prod-cat {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-style: italic;
  color: #94a3b8;
  margin: 0;
}

@media (max-width: 900px) {
  .product-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 540px) {
  .product-related-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   ABOUT PAGE - COMPANY ALBUM SECTION (1:1 with Screenshot)
   ========================================================= */
.company-album-section {
  padding: 1.5rem 0 4rem 0;
  background: radial-gradient(circle at 50% 30%, rgba(248, 250, 252, 0.9) 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.company-album-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.company-album-header {
  text-align: center;
  margin-bottom: 1.35rem;
}

.company-album-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.25rem;
  font-weight: 900;
  font-style: italic;
  color: #1e293b;
  margin: 0;
  letter-spacing: -0.01em;
}

.album-title-underline {
  color: #1e293b;
  position: relative;
  display: inline-block;
}

.album-title-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3.5px;
  background: #f36c12;
  border-radius: 2px;
}

.company-album-slider-wrapper {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 3.25rem;
}

.company-album-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.album-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
  border: 1px solid rgba(226, 232, 240, 0.8);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}

.album-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
}

.album-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3.15;
  overflow: hidden;
  background: #f1f5f9;
  position: relative;
}

.album-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.album-card-body {
  padding: 1.15rem 1rem;
  text-align: center;
  background: #ffffff;
}

.album-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  font-style: italic;
  color: #1e293b;
  margin: 0;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.album-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.12);
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e293b;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
}

.album-nav-prev {
  left: 0.25rem;
}

.album-nav-next {
  right: 0.25rem;
}

.album-nav-btn:hover {
  background: #f36c12;
  color: #ffffff;
  border-color: #f36c12;
  transform: translateY(-50%) scale(1.06);
}

@media (max-width: 1024px) {
  .company-album-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .company-album-slider-wrapper {
    padding: 0 1rem;
  }
  .album-nav-btn {
    display: none;
  }
}

@media (max-width: 580px) {
  .company-album-grid {
    grid-template-columns: 1fr;
  }
  .company-album-title {
    font-size: 1.75rem;
  }
}

/* =========================================================
   CARD IMAGE HOVER AUTO-CYCLE CROSSFADE TRANSITION
   ========================================================= */
.shop-product-img,
.prem-prod-img,
.home-proj-img,
.project-thumb-img,
.offer-img {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.22s ease !important;
  will-change: opacity, transform;
}

/* Footer Bottom Developer Credit Link Styling */
.footer-bottom-text a {
  color: inherit;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s ease, text-decoration 0.2s ease;
}

.footer-bottom-text a:hover {
  color: var(--st-green, #68a816);
  text-decoration: none;
}










