@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Open+Sans:wght@400;600&family=Playfair+Display:wght@400;700&family=Raleway:wght@400;500&display=swap");

:root {
  /* --- Primary Brand Color (The Anchor) --- */
  --primary-color: #1a2232;
  /* --- Secondary Structure --- */
  --secondary-color: #434d5e;
  /* --- The Silent Luxury Accent --- */
  --accent-color: #e29b18;
  --accent-hover: #d39117;
  --last-green:#27ae60;
  /* --- The Eye-Comfort Backgrounds (60% Area) --- */
  --light-bg: #f8f9fa;
  --dark-bg: #1a2232;
  /* --- Editorial Typography --- */
  --text-dark: #222935;
  --text-light: #f8f9fa;
  --text-muted: #6b7280;
  /* --- Clean UI Details --- */
  --border-color: #e5e7eb;
  --banner-overlay-color:rgba(43, 52, 59, 0.75);
  --banner-text-color: #ffffff;
  --banner-accent-color: #f1b813;
  
  /* font*/
  --font-heading: "Raleway", sans-serif;
  --font-body: "Open Sans", sans-serif;
  --font-accent: "Montserrat", sans-serif;
  --font-serif: "Playfair Display", serif;
  --transition-speed: 0.3s;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--text-light);
  overflow-x: hidden;
}

h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}

h1 {
  color: var(--text-light);
  font-family: var(--font-heading);
}

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--transition-speed) ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.About-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  padding: 0 20px 100px;
  font-size: 20px;
}

/* Scroll Trigger Animations base */
.animate-on-scroll {
  opacity: 0;
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: none !important;
}

/* Animations */
.fade-in-up {
  transform: translateY(40px);
}

.zoom-in {
  transform: scale(0.9);
}

.bounce-in-left {
  transform: translateX(-100px);
}

.zoom-in-right {
  transform: scale(0.9) translateX(100px);
}

/* Top bar style */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary-color);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--text-light);
  font-size: 0.99rem;
  z-index: 1001;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all var(--transition-speed) ease;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 25px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.top-bar-info li {
  display: inline-block;
  white-space: nowrap;
}

.top-bar-info li a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.top-bar-info li a:hover {
  color: var(--accent-hover);
}

.top-bar-socials {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  font-size: 1rem;
}

.top-bar-socials a {
  transition:
    transform 0.2s ease,
    color 0.2s ease;
}

.top-bar-socials a:hover {
  transform: scale(1.15);
  color: var(--accent-hover);
}

/* Main Header & Navigation */
header.main-header {
  position: fixed;
  top: 47px;
  left: 0;
  width: 100%;
  background-color: var(--primary-color);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--text-light);
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all var(--transition-speed) ease;
}

header.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo a {
  display: flex;
  align-items: center;
}

.logo img {
  max-height: 75px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
  font-family: var(--font-accent);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links > li {
  position: relative;
  padding: 25px 0;
}

.nav-links a {
  color: var(--text-light);
}

.nav-links a:hover {
  color: var(--accent-hover);
}

/* Dropdown styling */
.nav-links li svg {
  width: 10px;
  height: 10px;
  margin-left: 6px;
  fill: currentColor;
  vertical-align: middle;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background-color: var(--primary-color);
  min-width: 220px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-speed) ease;
  border-top: 3px solid var(--accent-color);
}

.nav-links li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
}

.dropdown-menu a:hover {
  background-color: rgba(255, 255, 255, 0.05);
  padding-left: 25px;
}

/* Sub-dropdown */
.dropdown-menu .sub-dropdown-trigger svg {
  float: right;
  margin-top: 5px;
  transform: rotate(-90deg);
}

.sub-dropdown {
  position: absolute;
  top: 0;
  left: 100%;
  background-color: var(--primary-color);
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateX(15px);
  transition: all var(--transition-speed) ease;
}

.dropdown-menu li:hover .sub-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Hamburger mobile menu button */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 1002;
  transition: color var(--transition-speed);
}

.mobile-nav-toggle:hover {
  color: var(--accent-hover);
}

/* Hero smart-slider replica */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 480px;
  max-height: 650px;
  overflow: hidden;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 2;
}

.slide.active {
  opacity: 1;
  z-index: 5;
}

.slide-content {
  position: relative;
  z-index: 10;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

.slide-welcome {
  font-family: var(--font-accent);
  text-transform: uppercase;
  font-size: 1.4rem;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: inline-block;
  border-bottom: 2px solid var(--text-light);
  padding-bottom: 5px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease 0.3s;
}

.slide.active .slide-welcome {
  opacity: 1;
  transform: translateY(0);
}

.slide-title {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease 0.6s;
}

.slide.active .slide-title {
  opacity: 1;
  transform: translateY(0);
}

.slide-btn {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-light);
  border: 2px solid var(--text-light);
  padding: 12px 30px;
  border-radius: 50px;
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition:
    all 0.8s ease 0.9s,
    background-color 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;
}

.slide.active .slide-btn {
  opacity: 1;
  transform: translateY(0);
}

.slide-btn:hover {
  background-color: var(--text-light);
  color: var(--accent-hover);
  border-color: var(--text-light);
}

/* Slider Controls */
.slider-arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 30px;
  z-index: 20;
  pointer-events: none;
}

.slider-arrow {
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.4);
  border: none;
  border-radius: 50%;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition-speed);
  pointer-events: auto;
}

.slider-arrow:hover {
  background-color: var(--accent-hover);
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 20;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: background-color var(--transition-speed);
}

.slider-dot.active {
  background-color: var(--text-light);
}

/* page banner */

.page-banner01 {
  position: relative;
  background-image: url(assets/about-company/overlay-img/about01.webp);

  height: 650px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 0 60px;
}

.page-banner01::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--banner-overlay-color);
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 800px;
  padding: 0 20px;
}

.banner-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Breadcrumb Navigation styling */
.breadcrumb {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-heading);
  font-weight: 500;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--accent-hover);
}

.breadcrumb span {
  color: var(--banner-text-color);
  font-weight: 600;
  margin: 0 5px;
}

/* Section styling base */
section.section-padding {
  padding: 20px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  position: relative;
  padding-bottom: 10px;
  padding-top: 40px;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
}

/* sourcing agent page */
.page-banner2{
  position: relative;
  background-image: url(assets/Sourcing-agent-page/Soucring-overlay/sourcing-agent-overlay.webp);
  height: 650px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 0 60px;
}

.page-banner2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--banner-overlay-color);
  z-index: 1;
}
/* Product banner 3 */
.page-banner3 {
  position: relative;
  background-image: url(assets/product-page-main/product-page-overlay/product-page-overlay01.webp);
  height: 650px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 0 60px;
}

.page-banner3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--banner-overlay-color);
  z-index: 1;
}
/* Product bagasee banner 4 */
.page-banner4 {
  position: relative;
  background-image: url(assets/product-page-main/bagasse/bagasee-product-overlay/bagase-page-overlay.webp);
  height: 650px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 0 60px;
}

.page-banner4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--banner-overlay-color);
  z-index: 1;
}
/* product paper 5 */
.page-banner5 {
  position: relative;
  background-image: url(assets/product-page-main/paper/paper-product-overlay/paper-product-page-overlay.webp);
  height: 650px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 0 60px;
}

.page-banner5::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--banner-overlay-color);
  z-index: 1;
}


/* Cataluge 06 */
.page-banner6 {
  position: relative;
  background-image: url(assets/Catlauge-page/cataluge-page-overlay\ \(1\).webp);
  height: 650px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 0 60px;
}

.page-banner6::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--banner-overlay-color);
  z-index: 1;
}
/* Contact us 07 */
.page-banner7 {
  position: relative;
  background-image: url(assets/Contact-us-page/contact-page-overlay.webp);
  height: 650px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 0 60px;
}

.page-banner7::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--banner-overlay-color);
  z-index: 1;
}
/* Certifications Section */
#certification {
  background-color: #1e2d5a !important;
  padding: 80px 0;
}

#certification h2,
#certification .section-title h2 {
  font-family: var(--font-heading);
  color: var(--text-light) !important;
}

#certification .section-title h2::after {
  background-color: var(--accent-color);
}

#certification > .container > p {
  color: var(--text-light) !important;
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.certification-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.cert-card {
  background-color: var(--light-bg);
  padding: 40px 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.cert-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.cert-logo {
  height: 70px;
  width: auto;
  object-fit: contain;
  margin-bottom: 25px;
}

.cert-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1e2d5a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cert-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #4b5563 !important;
  margin: 0;
}

/* Key Person Section */
#key-person .keyperson-grid {
  display: flex;
  justify-content: center;
  max-width: 800px;
  margin: 40px auto 0 auto;
  padding: 0 20px;
}

#key-person .person-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: transparent;
  width: 100%;
}

#key-person .client-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

#key-person .client-avatar {
  width: 320px;
  height: 400px;
  border: 1px solid #777777;
  padding: 5px;
  background-color: #ffffff;
  box-shadow: 0 0 0 2px #333333;
  overflow: hidden;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#key-person .client-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#key-person .client-details {
  text-align: center;
  margin-bottom: 20px;
}

#key-person .client-details h3 {
  font-size: 1.5rem;
  color: #1e40af;
  font-weight: 700;
  margin-bottom: 6px;
}

#key-person .client-details .role {
  font-size: 1rem;
  font-weight: 600;
  color: #d97706;
  display: block;
}

#key-person .person-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #333333;
  max-width: 600px;
  margin: 0 auto;
  padding-bottom: 60px;
}

/* About Section */
.about-section {
  background-color: var(--light-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  text-align: left;
}

.about-content p {
  color: var(--text-dark);
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.8;
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.about-image img {
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 320px;
  width: 100%;
  height: auto;
  object-fit: contain;
}
/*  */
/* Apply to elements that animate or change opacity when scrolling */
.card, .feature-box, .animated-image {
  will-change: transform, opacity;
}

/*  */
/* "What We Do" Section */
.what-we-do {
  background-color: var(--secondary-color);
  color: var(--text-light);
}

.what-we-do .section-title h2 {
  color: var(--text-light);
}

.do-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.do-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 40px 25px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-speed) ease;
}

.do-card:hover {
  background-color: var(--accent-color);
  transform: translateY(-10px);
}

.do-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px auto;
}

.do-card h3 {
  font-size: 1.25rem;
  font-family: var(--font-accent);
  margin-bottom: 15px;
}

.do-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

/* "What We Export" Section */
.export-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Flex item helper for the anchor containers */
.product-card-anchor {
    flex: 1;
    min-width: 200px;
    max-width: 400px;
}

.product-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}

/* Hover effect on entire card via parent anchor */
.product-card-anchor:hover .product-card {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.product-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card-anchor:hover .product-image img {
    transform: scale(1.04);
}

.product-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a2b4c; /* Matches corporate identity palette */
}

.product-divider {
    width: 50px;
    height: 3px;
    background-color: var(--accent-hover); /* Matches brand green */
    margin-bottom: 15px;
}

.product-info p {
    font-size: 14px;
    color: #555555;
    line-height: 1.6;
}

/* ==========================================
   Product Directory Grid Setup
   ========================================== */
.product-directory {
    background-color: #fafafa;
    padding: 60px 0;
}

.product-directory-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.directory-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    max-width: 450px;
    flex: 1;
    min-width: 300px;
    text-decoration: none; /* Removes underline from link */
    color: inherit;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.directory-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.directory-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.directory-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.directory-card:hover .directory-image img {
    transform: scale(1.05);
}

.directory-info {
    padding: 25px;
}

.directory-info h3 {
    font-size: 22px;
    color: #111;
    margin-bottom: 12px;
}

.directory-info p {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
}

.explore-link {
    font-weight: 600;
    color:var(--last-green); /* Brand green theme accent color */
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.explore-link i {
    transition: transform 0.2s ease;
}

.directory-card:hover .explore-link i {
    transform: translateX(5px);
}

/*  sub-product*/
.sub-product-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.sub-product-item {
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    flex: 1;
    min-width: 300px;
    max-width: calc(33.333% - 20px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.sub-product-item:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    transform: translateY(-5px);
    border-color: var(--banner-accent-color);
}

.sub-prod-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #f5f5f5;
}

.sub-prod-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sub-prod-details {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.sub-prod-details h3 {
    font-size: 19px;
    color: #222;
    margin-bottom: 8px;
}
.sub-prod-details .enquiry-btn{
  background-color: var(--banner-accent-color);
}
.sub-prod-details .enquiry-btn:hover{
  background-color: var(--accent-hover);
}
.sub-prod-details .specs {
    font-size: 13px;
    font-weight: 700;
    color: #27ae60;
    background-color: #edf9f1;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 12px;
}
.sub-prod-details .specs ul {
    font-size: 13px;
    font-weight: 700;
    color:var(--last-green);
    background-color: #edf9f1;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 12px;
}
.sub-prod-details .description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.enquiry-btn {
    text-decoration: none;
    text-align: center;
    background-color: #222;
    color: #fff;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.enquiry-btn:hover {
    background-color:var(--accent-hover);
}

/*  */
/* Business Gallery Section */
.business-gallery {
  background-color: var(--secondary-color);
  color: var(--text-light);
  padding: 80px 0;
}

.business-gallery h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  position: relative;
  padding-bottom: 15px;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1/1;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  background: #000;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.5s ease,
    opacity 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
  opacity: 0.85;
}

/* Why Choose Us Section */
.why-choose-us {
  background-color: var(--text-light);
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.choose-card {
  text-align: center;
  background-color: var(--light-bg);
  border-radius: 8px;
  padding: 40px 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid var(--border-color);
  transition:
    transform var(--transition-speed) ease,
    box-shadow var(--transition-speed) ease;
}

.choose-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.choose-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px auto;
  object-fit: contain;
}

.choose-card h3 {
  font-size: 1.2rem;
  font-family: var(--font-accent);
  color: var(--primary-color);
  margin-bottom: 15px;
}

.choose-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Testimonials Section */
/* .testimonials {
  background-color: var(--secondary-color);
  color: var(--text-light);
  overflow: hidden;
}

.testimonials .section-title h2 {
  color: var(--text-light);
}

.testimonial-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 10px;
}

.testimonial-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease-in-out;
}

.testimonial-card {
  min-width: calc(33.333% - 14px);
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.client-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--accent-color);
}

.client-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-details strong {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.95rem;
}

.client-details span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.testimonial-content {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  flex-grow: 1;
}

.testimonial-content i {
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.05);
  position: absolute;
  top: -20px;
  left: -10px;
}

.client-rating {
  display: flex;
  gap: 4px;
  color: #ffc107;
  font-size: 0.8rem;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: background-color var(--transition-speed);
}

.testimonial-dot.active {
  background-color: var(--text-light);
} */

/* Secondary Pages Banner (Hero Header) */
.banner-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.banner-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* --- How We Work Section --- */
.how-we-work-section {
  width: 100%;
  background-color: #ffffff;
  padding: 80px 0;
  overflow: hidden;
}

.hww-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  align-items: center;
  padding-left: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.hww-left-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hww-title {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.hww-subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333333;
  margin-bottom: 25px;
}

.hww-decorative-line {
  width: 80px;
  height: 3px;
  background-color: var(--banner-accent-color);
}

.hww-right-split {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  background-color: #f8f9fa;
}

.hww-list-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hww-star-badge {
  width: 50px;
  height: 50px;
  background-color: var(--accent-color);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.hww-list-text {
  color: #222222;
  font-size: 1.1rem;
  font-weight: 600;
}

/* --- What Is Your Benefit Section --- */
.benefits-section {
  background-color: var(--secondary-color, #111e38);
  padding: 80px 4%;
  text-align: center;
  width: 100%;
}

.benefits-container {
  max-width: 1240px;
  margin: 0 auto;
}

.benefits-main-heading {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 70px;
  font-family: Arial, sans-serif;
  text-align: center;
}

.benefits-cards-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr 1.1fr 1fr;
  gap: 18px;
  align-items: center;
  width: 100%;
}

.benefit-card {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 30px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 230px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.benefit-card-text {
  color: #555555;
  font-size: 0.93rem;
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
}

.benefit-icon-box {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon-box img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.benefit-column-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit-card.position-down-low {
  margin-top: 110px;
}

.benefit-card.position-center-tall {
  min-height: 280px;
  padding: 40px 22px;
}
/* catalogue */
.catalogue-hero {
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: left;
    color: #ffffff;
}

.catalogue-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-left: 20px;
}

.catalogue-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 70px;
    padding-bottom: 70px;
}

.catalogue-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    flex: 1;
    min-width: 300px;
    max-height: 300px;
    border: 1px solid #eee;
}

.brochure-preview {
    position: relative;
    width: 100%;
    height: 300px; /* Elegant tall aspect ratio resembling an actual paper brochure cover */
    overflow: hidden;
    background-color: #f9f9f9;
}

.brochure-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Hover Overlay Mechanism */
.brochure-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 43, 76, 0.85); /* Semitransparent corporate navy */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.catalogue-card:hover .brochure-overlay {
    opacity: 1;
}

.catalogue-card:hover .brochure-preview img {
    transform: scale(1.05);
}

.download-trigger-btn {
    text-decoration: none;
    background-color:var(--last-green);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.download-trigger-btn:hover {
    background-color: #219653;
    transform: scale(1.05);
}

.brochure-meta {
    padding: 20px;
    text-align: center;
    background: #ffffff;
}

.brochure-meta h3 {
    font-size: 18px;
    color: #1a2b4c;
    margin-bottom: 5px;
    font-weight: 700;
}

.brochure-meta p {
    font-size: 13px;
    color: #888;
}


/* Contact Info Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 45px;
  align-items: center;
  justify-content: center;
  max-width: 680px; /* Perfect readable line length width */
  margin: 45px auto; /* Gives ample white space breathing room */
  padding: 10px 40px; /* Inserts clean inner card breathing room */
  background: #ffffff; /* Crisp card background texture */
  border-radius: 20px; /* Sleek modern corner curves */
  box-shadow: 0 15px 45px rgba(26, 34, 50, 0.05); /* Soft premium shadow ring */
  border: 1px solid rgba(0, 0, 0, 0.03);
}

/* Base Wrapper formatting */
.contact-details-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Master Centered Header Content */
.contact-details-panel .section-title {
  text-align: center !important;
  margin-bottom: 20px;
  width: 100%;
}

.contact-details-panel .section-title h2 {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.contact-details-panel .section-title h2::after {
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 4px;
  background-color: var(--accent-color);
  margin-top: 12px;
}

.contact-details-panel > p {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 540px; /* Stops paragraph from reading too wide */
}

/* Individual Content Blocks (Designed as Elegant Micro-Cards) */
.contact-info-block {
  margin-bottom: 20px;
  display: flex;
  gap: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
  background-color: #f8fafc; /* Subtle contrasting background plate */
  padding: 24px 30px;
  border-radius: 14px;
  width: 100%; /* Ensures balanced grid item alignments */
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: all var(--transition-speed) ease;
}

.contact-info-block:hover {
  background-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  border-color: rgba(
    197,
    160,
    89,
    0.25
  ); /* Faint gold highlights on cursor hover */
}

/* Micro-Icons Layout adjustments */
.contact-info-block i {
  color: var(--text-dark-headings);
  font-size: 1.3rem;
  background: rgba(255, 166, 0, 0.1); /* Soft background frame around icons */
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
}

.contact-info-block h3 {
  font-family: var(--font-accent);
  color: var(--primary-color);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-info-block p,
.contact-info-block a {
  font-size: 1.05rem;
  font-weight: 500;
  color: #334155;
  text-decoration: none;
}

/* Premium Social Profiles Alignment */
.socials-contact {
  display: flex;
  gap: 14px;
  justify-content: flex-start;
  width: 100%;
  margin-top: 15px;
}

.socials-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px; /* Upgraded from round to clean squircle style */
  background-color: #f1f5f9;
  color: var(--primary-color);
  border: 1px solid #e2e8f0;
  font-size: 1.15rem;
  transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
}

.socials-contact a:hover {
  background-color: var(--accent-color);
  color: #ffffff;
  border-color: var(--accent-color);
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(197, 160, 89, 0.35); /* Interactive gold shadow pop */
}
/* Footer Section */
.main-footer {
    background-color:var(--primary-color); /* Deep corporate maritime navy */
    color: #ffffff;
    padding-top: 50px; /* Added padding here since CTA bar is removed */
    font-family: inherit;
}

/* Master Columns Architecture */
.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    padding-bottom: 50px;
}

.footer-col {
    flex: 1;
    min-width: 220px;
    margin-left: 20px;
    margin-right: 20px;
}

.brand-info-col {
    flex: 1.5;
    min-width: 280px;
}

.footer-col h3 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: #ffffff;
    position: relative;
}

.brand-text {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 25px;
}

.sub-title {
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: #ffffff;
    
}

/* Quick Navigation Links formatting */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links a:hover {
    color: var(--accent-hover);
    padding-left: 4px;
}

/* Contact Info Sub-structures */
.inquiry-label {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    font-size: 16px;
    color: #cbd5e1;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact li i {
    color: var(--accent-hover);
    width: 16px;
}

/* Social Icon Roundels block */
.footer-socials {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    background-color: var(--accent-hover);
}
/* Lower Copyright Strip */
.footer-bottom {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 16px;
    color: #94a3b8;
    text-align: center; /* Centers inline text elements */
}

.footer-bottom-flex {
    display: flex;
    flex-direction: column; /* Stacks copyright and credits on top of each other */
    justify-content: center;
    align-items: center;
    gap: 6px; /* Adds a clean spacing between the two lines */
}

.footer-bottom p {
    margin: 0;
    text-align: center;
}
/* Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-speed) ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 80%;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border: 4px solid var(--text-light);
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 2.2rem;
  cursor: pointer;
  transition: color 0.2s;
}

.lightbox-close:hover {
  color: var(--accent-hover);
}

/* Enquiry Form Modal & Floating Actions */
.sticky-action-container {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.sticky-btn {
  position: relative;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  animation: pulse-animation 2s infinite;
}

.whatsapp-btn {
  background-color: #25d366;
}
.email-btn {
  background-color: #d44638;
}
.instagram-btn {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.linkedin-btn {
  background-color: #0077b5; /* Official LinkedIn Blue */
}

.btn-label {
  position: absolute;
  right: 70px;
  background: #333;
  color: #fff;
  padding: 6px 14px;
  border-radius: 5px;
  font-size: 0.99rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.sticky-btn:hover .btn-label {
  opacity: 1;
  visibility: visible;
  right: 75px;
}

.sticky-btn:hover {
  animation: none;
  transform: scale(1.1);
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}


/* ==========================================================================
   COMPLETE COMPREHENSIVE RESPONSIVE DESIGN ARCHITECTURE (UPDATED LOGO & ICONS)
   ========================================================================== */

/* Tablet & Mobile Layout Systems (Max-width: 992px) */
@media screen and (max-width: 992px) {
  
  /* 1. Global Typography & Heading Centering */
  h1, h2, h3, h4, h5, h6,
  .section-title,
  .section-title h2,
  .about-content h2,
  .hww-title,
  .benefits-main-heading,
  .catalogue-hero h1,
  .banner-content h1,
  .slide-title,
  .contact-container h2,
  .contact-details-panel .section-title h2 {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    /* display: flex; */
  }

  /* Center decorative underline styling on headings */
  .section-title h2::after,
  .contact-details-panel .section-title h2::after {
    left: 50% !important;
    transform: translateX(-50%) !important;
  }

  /* 2. Absolute Contact Page Centering (Paragraphs, Elements, & Social Icons) */
  .contact-container,
  .contact-grid,
  .contact-details-panel,
  .contact-info-block,
  .form-container,
  .contact-form {
    text-align: center !important;
  }

  /* Force all paragraph 'p' elements on the contact page to center */
  .contact-container p,
  .contact-grid p,
  .contact-info-block p,
  .contact-details-panel p,
  .form-container p,
  .contact-form p {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 100% !important;
  }

  /* Center contact form labels */
  .contact-form label,
  .form-group label {
    display: block !important;
    text-align: center !important;
    width: 100% !important;
  }

  /* Comprehensive Contact Social Media Icons Centering Matrix */
  .contact-social-links, 
  .contact-meta-info,
  .social-icons,
  .contact-socials,
  .follow-us-icons {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 !important;
    list-style: none !important;
    width: 100% !important;
  }

  /* Center target wrappers around individual social media anchor blocks */
  .contact-social-links li,
  .social-icons a,
  .contact-socials a {
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    float: none !important;
  }

  /* 3. Responsive Header Realignment (Toggle Left, Logo Center, Top Bar Hidden) */
  .top-bar {
    display: none !important; /* Hides the top-bar row row completely on mobile viewports */
  }

  header.main-header {
    top: 0 !important;
    position: sticky !important;
    z-index: 1000;
    width: 100% !important;
  }

  header.main-header .container {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    height: 75px !important; /* Slightly padded to safely encompass the larger logo design */
    padding: 0 20px !important;
    position: relative !important;
  }

  /* Shifting Three-Line Mobile Hamburger Menu Toggle to the Left Side */
  .mobile-nav-toggle {
    display: flex !important;
    order: 1 !important;           /* Forces toggle to compile first on the left side */
    margin-right: auto !important;  /* Pushes neighboring items away to the right */
    margin-left: 0 !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    width: 26px !important;
    height: 19px !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    padding: 0 !important;
    z-index: 1002;
  }

  .mobile-nav-toggle::before,
  .mobile-nav-toggle::after,
  .mobile-nav-toggle span {
    content: "";
    width: 100%;
    height: 3px;
    background-color: var(--text-light, #f8f9fa);
    border-radius: 3px;
    transition: all 0.3s ease;
  }

  /* Positioning Company Logo Directly in the Horizontal Center */
  .logo {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    order: 2 !important;           /* Places logo in the middle slot */
    position: absolute !important;  /* Dead-centers logo regardless of element widths */
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
  }

  /* INCRESED LOGO SIZE: Bumped up max-height to make it clearly visible and bold on small layouts */
  .logo img {
    max-height: 65px !important;
    width: auto !important;
    object-fit: contain !important;
  }

  /* Blank space placeholder node to balance out flex distributions layout */
  header.main-header .container::after {
    content: "";
    width: 26px; /* Matches identical toggle tracking dimension width limits */
    order: 3 !important;
    display: block !important;
  }

  /* 4. Sliding Sidebar Navigation Drawer Overrides */
  .nav-links {
    position: fixed !important;
    top: 75px !important;
    left: -100% !important; /* Changed to slide outward from Left instead of Right side */
    right: auto !important;
    width: 280px !important;
    height: calc(100vh - 75px) !important;
    background-color: var(--primary-color) !important;
    flex-direction: column !important;
    padding: 25px !important;
    box-shadow: 5px 0 20px rgba(0, 0, 0, 0.25);
    transition: left 0.3s ease !important;
    z-index: 1001;
    overflow-y: auto;
  }

  /* If your JavaScript toggles the '.open' or '.active' class, it draws outward seamlessly */
  .nav-links.active,
  .nav-links.open {
    left: 0 !important;
    right: auto !important;
  }

  .nav-links > li {
    width: 100% !important;
    padding: 12px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  /* Mobile Dropdown Overrides */
  .dropdown-menu,
  .sub-dropdown {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    background-color: rgba(0, 0, 0, 0.15) !important;
    box-shadow: none !important;
    margin-top: 10px !important;
    border-left: 2px solid var(--accent-color) !important;
    display: none;
  }

  .nav-links li:hover .dropdown-menu,
  .dropdown-menu li:hover .sub-dropdown {
    display: block !important;
  }

  /* 5. Structural Core Layout Flattening */
  .container,
  .About-container,
  .benefits-container,
  .testimonial-container,
  .hww-container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    box-sizing: border-box;
  }

  .about-grid,
  .hww-container {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  /* Clean separate grid styles for the benefits grid block */
  .benefits-cards-layout {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
    width: 100% !important;
  }

  /* Complete micro-rule style breakdown for clean side-by-side uniform layout alignment */
  .benefit-card {
    width: 100% !important;
    height: 100% !important;
    min-height: 220px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 24px 16px !important;
    margin: 0 !important;
    position: static !important;
    transform: none !important;
    box-sizing: border-box !important;
  }

  /* Disables the alternating staggered vertical margin shifts from desktop view */
  .benefit-card.position-down-low {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .hero-slider {
    height: 60vh !important;
  }
}

/* Smartphone Specific Micro-Controls (Max-width: 576px) */
@media screen and (max-width: 576px) {
  html {
    font-size: 14px;
  }

  .slide-title,
  .banner-content h1,
  .catalogue-hero h1 {
    font-size: 1.9rem !important;
  }

  /* Force 2-columns on mobile layouts with clear item sizing styles */
  .benefits-cards-layout {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }
  
  /* Separate line configurations for typography formatting inside the cards */
  .benefit-card p {
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
    text-align: center !important;
    margin: 8px 0 0 0 !important;
  }

  .benefit-card img,
  .benefit-card i {
    max-width: 40px !important;
    height: auto !important;
    margin-bottom: 4px !important;
  }

  /* 6. Complete Contact Grid & Map Collapse */
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    padding: 20px 15px !important;
    margin: 20px auto !important;
  }

  .contact-info-block {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 25px 20px !important;
  }

  .contact-info-block i,
  .contact-info-block .icon-wrapper {
    margin: 0 auto 15px auto !important;
  }

  .contact-details-panel,
  .map-container,
  .map-container iframe {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 8px;
  }

  /* 7. Product Catalogues and Directories Grid Normalization */
  .export-grid,
  .product-directory-grid,
  .sub-product-grid,
  .catalogue-grid,
  .certification-grid,
  .do-grid,
  .gallery-grid,
  .choose-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 20px !important;
    width: 100% !important;
  }

  .product-card-anchor,
  .directory-card,
  .sub-product-item,
  .catalogue-card {
    width: 100% !important;
    min-width: 100% !important;
  }

  .product-image,
  .directory-image,
  .sub-prod-img,
  .brochure-preview {
    height: 210px !important;
  }

  /* 8. OPTIMIZED RESPONSIVE FOOTER SYSTEM WITH FLUID PADDING */
  footer, 
  .main-footer {
    text-align: center !important;
    padding: 40px 0 !important;
  }

  .footer-grid, 
  .footer-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 35px !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Center individual layout columns completely */
  .footer-section,
  .footer-col,
  .footer-div {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    padding: 0 10px !important;
    box-sizing: border-box !important;
  }

  /* Restrict corporate summary text fields from growing bloated */
  .footer-section p,
  .footer-col p {
    text-align: center !important;
    margin: 12px auto !important;
    max-width: 100% !important;
    line-height: 1.6 !important;
  }

  /* Clean up lists, links, and remove uneven indentation gaps */
  .footer-section ul,
  .footer-col ul,
  .quick-links,
  .footer-links {
    padding: 0 !important;
    margin: 0 auto !important;
    text-align: center !important;
    list-style: none !important;
    width: 100% !important;
  }

  .footer-section ul li,
  .footer-col ul li {
    text-align: center !important;
    padding: 6px 0 !important;
  }

  /* Ensure long enterprise emails wrap dynamically inside narrow viewports */
  .footer-section a,
  .footer-col a,
  .footer-section span,
  .footer-col span {
    word-break: break-all !important;
    overflow-wrap: break-word !important;
    text-align: center !important;
    max-width: 100% !important;
    /* display: inline-block !important; */
  }

  /* FIX FOOTER SOCIAL ICONS: Clean up alignment vectors & force perfect center formatting */
  .footer-section .social-icons,
  .footer-col .social-icons,
  .footer-section .contact-social-links,
  .footer-col .contact-social-links,
  .footer-container .social-icons {
    margin: 15px auto 0 auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 12px !important;
  }

  /* Resets the circular anchor buttons for social links so font-icons sit dead center */
  .footer-section .social-icons a,
  .footer-col .social-icons a,
  .footer-container .social-icons a {
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    width: 40px !important;
    height: 40px !important;
    line-height: 40px !important; /* Fixed fallback line-height */
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 50% !important;
  }

  /* Assures internal font-awesome/image icons don't drift to top-left corners */
  .footer-section .social-icons a i,
  .footer-col .social-icons a i,
  .footer-container .social-icons a i {
    display: block !important;
    margin: 0 auto !important;
    padding: 0 !important;
    font-size: 1.1rem !important;
    line-height: inherit !important;
  }

  /* 9. Floating UI Shortcuts (WhatsApp/Email Hooks) */
  .sticky-action-container {
    bottom: 15px !important;
    right: 15px !important;
    gap: 10px !important;
    z-index: 999;
  }

  .sticky-btn {
    width: 46px !important;
    height: 46px !important;
    font-size: 1.3rem !important;
  }
}