/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%; /* Prevent any element from exceeding viewport */
}

:root {
    /* Combined Color Variables from Both Files */
    --primary-color: #0077ff;
    --accent-color: #00bcd4;
    --accent2-color: #ff9800;
    --accent3-color: #e91e63;
    --primary-red: #d32f2f;
    --dark-red: #b71c1c;
    --light-red: #f44336;
    --gray-dark: #424242;
    --gray-medium: #757575;
    --gray-light: #f5f5f5;
    --white: #ffffff;
    --text-dark: #212121;
    --text-light: #757575;
    --light-background-color: #f7f9fc;
    --light-border-color: #e0e0e0;
	--accent4-color: #8bc34a;
    --dark-text-color: #1a1a1a;
    --gray-text-color: #666666;      
    --dark-background-color: #111111;
    --primary-button-hover-bg-color: #005bb5;
	--agent-behind: #f5fbfc;
    --button-rounded-radius: 8px;
	--cert-bg:	#f8f9fa;
    --font-family-heading: 'Poppins', sans-serif;
}

/* Combined Body Styles */
html, body {
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Container - Combined */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

/* Page Header Section */
.page-header {
    background: linear-gradient(rgba(26, 54, 93, 0.8), rgba(26, 54, 93, 0.8)), url('../../wp-content/images/backgrounds/background-about.jpg');
    background-size: cover;
    background-position: center;
    padding: 70px 0 80px;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    list-style: none;
}

.breadcrumb li {
    margin: 0 5px;
    font-size: 0.9rem;
	font-weight: bold;
}

.breadcrumb li a {
    color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
}

.breadcrumb li a:hover {
    color: var(--white);
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 10px;
    color: rgba(255, 255, 255, 0.5);
}

/* Header - NOT FIXED */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    width: 100%;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo img {
    height: 70px;
    width: auto;
}

/* Language Toggle - FIXED: Now in header */
.language-toggle {
    position: relative;
}

.lang-btn {
    background: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 8px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.lang-btn:hover {
    background: var(--dark-red);
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

.nav a:hover,
.nav a.active {
    color: var(--primary-red);
}

.nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-red);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-right: 15px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
}


/* Intro Section */
.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.intro-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Company Intro Section */
.company-intro {
    padding: 95px 0;
	background: linear-gradient(to right, #f7f9fc, #fff4f0 50%, #f7f9fc);
}

.company-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.company-intro-text h2 {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 30px;
    opacity: 1;
    transform: translateX(0);
}

.company-intro-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 25px;
    opacity: 1;
    transform: translateY(0);
	text-align: justify;
}

.company-intro-text .btn {
    opacity: 1;
    transform: translateY(0);
}

.company-intro-image {
    position: relative;
    opacity: 1;
    transform: translateX(0);
}

.company-intro-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* About Content Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 20px;
    opacity: 1;
    transform: translateY(0);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
    opacity: 1;
    transform: translateY(0);
}

.about-image {
    opacity: 1;
    transform: translateX(0);
}

.image-placeholder-about {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* History Timeline Section */
.history {
    padding: 80px 0;
   background: linear-gradient(to right, #FFF5E1, #ffffff 50%, #FFF5E1);
}

.history h2 {
    margin-bottom: 20px;
}

.pd {
padding: 10px 200px;	
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 22px;
    bottom: 0;
    left: 50%;
    width: 7px;
	height: 1000px;
    background-color: var(--primary-red);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 100%;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
    text-align: left;
}

.timeline-item:nth-child(odd) .timeline-content::after {
    left: auto;
    right: -10px;
}

.timeline-content {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 45%;
    position: relative;
}

.timeline-content p {
    font-size: 0.9rem;
}



.timeline-item:nth-child(odd) .timeline-content::after {
    border-right: none;
    border-left: 10px solid var(--white);
    left: auto;
    right: -10px;
}

.timeline-year {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-red);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 600;
    z-index: 1;
}

/* Mission Section */
.mission {
    padding: 80px 0;
}

.mission-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.mission-card {
    background: var(--white);
    padding: 50px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    opacity: 1;
    transform: translateY(0);
}

.mission-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), var(--light-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--white);
    font-size: 2rem;
}

.mission-card h3 {
    color: var(--primary-red);
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.mission-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* Values Section */
.values {
    background: var(--light-background-color);
}

.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.feature {
    background: var(--white);
    padding: 40px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    opacity: 1;
    transform: translateY(0);
}

.feature:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-red), var(--light-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 1.8rem;
}

.feature h3 {
    color: var(--primary-red);
    font-size: 1rem;
    margin-bottom: 15px;
}

.feature p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 86vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}


/* Carousel Controls */
.carousel-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 3;
}

.carousel-prev,
.carousel-next {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--primary-red);
}

.carousel-indicators {
    display: flex;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.indicator.active {
    background: var(--white);
}

/* Global Responsive Typography */
h2 {
    font-family: var(--font-family-heading);
    font-weight: 700;
    font-size: 2rem; /* Desktop size */
    color: var(--primary-red);
	line-height: 1.3;
	margin-bottom: 20px;
}

h3 {
    font-size: 	1.2rem; /* Desktop size */
    color: var(--primary-red);
	line-height: 1.3;
	margin-bottom: 15px;
	text-transform: uppercase;
}

p {
    font-size: 1rem; /* Desktop size */
}

/* Combined Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-red);
}

.btn-primary:hover {
    background: var(--gray-light);
}

.btn-primary-en {
    background: var(--primary-red);
    color: var(--white);
}

.btn-primary-en:hover {
    background: var(--gray-light);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-red);
}

.btn-primary-ab {
    background: var(--primary-red);
    color: var(--white);
}

.btn-primary-ab:hover {
    background: var(--gray-light);
    color: var(--primary-red);
}

/* Background Organization */
.intro {
    background: linear-gradient(to right, #FFF5E1, #ffffff 50%, #FFF5E1);
}

.features-section {
    background: var(--white);
}

.top-products-section {
    background: var(--white);
}

.our-service-section {
    background: var(--white);
}

.benefits-section {
   background: linear-gradient(to right, #FFF5E1, #ffffff 50%, #FFF5E1);
}

.cta {
    background: linear-gradient(135deg, var(--gray-dark) 0%, var(--text-dark) 100%);
    color: var(--white);
    text-align: center;
}

/* Animation Classes - REMOVED ANIMATIONS */
.animate-on-scroll {
    opacity: 1;
    transform: translate(0, 0);
}


/* Content Grid Layout */
.content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0px;
}

.tag {
  display: inline-block;
  background: var(--light-background-color);
  color: var(--primary-color);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.text-column p {
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 40px;
}

.text-column h2 {
	padding: 30px 0;
	line-height: 1.3;
	font-size: 1.6rem;
}

/* Logistics Stats Grid */
.logistics-section {
	background: linear-gradient(to right, #cfdef3 30%, #edf3fc);
}

.logistics-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.logistics-stat-card {
  background: var(--light-background-color);
  border: 1px solid var(--light-border-color);
  border-radius: 12px;
  padding: 10px;
  text-align: left;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.logistics-stat-card .number {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 5px;
  margin-left: 10px;
}

.number.primary { color: var(--primary-color); }
.number.accent { color: var(--accent-color); }
.number.accent2 { color: var(--accent2-color); }
.number.accent3 { color: var(--accent3-color); }

.label {
  color: var(--text-dark);
  font-size: 0.9rem;
  margin-left: 10px;
}

/* Logistics Benefits */
.logistics-benefits {
  margin-bottom: 40px;
}

.logistics-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.icon-box.primary { background: var(--primary-color); }
.icon-box.accent { background: var(--accent-color); }
.icon-box.accent3 { background: var(--accent3-color); }

.logistics-benefit-item h4 {
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0 0 4px 0;
}

.logistics-benefit-item p {
  color: var(--text-dark);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* Image Column Styles */
.image-column {
  position: relative;
}

.image-wrapper img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.floating-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #fff;
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
}

.badge-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
}

.continent {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.3rem;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-content {
    padding: 40px;
}

.features-grid img {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-content h2 {
    color: var(--primary-red);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.feature-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: justify;
}

/* Vision & Goal Section */
section.vision-goals {
    background: linear-gradient(to right, #FFF5E1, #ffffff 50%, #FFF5E1);
}

.vision-section{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    padding:72px 10%;
    border-bottom:1px solid #eee;
    flex-wrap:wrap;
}

.vision-text, .vision-image{
    flex:1 1 420px;
    min-width:280px;
    opacity:1;
    transform:none;
}

.vision-text h2{
    color: var(--primary-red);
    font-size:1.9rem;
    border-left:4px solid var(--accent);
    margin:0 0 50px;
}

.vision-text p{ 
    line-height:1.7; 
    margin:0; 
    font-size:1rem; 
}

.vision-image img{
    width:100%;
    height:100%;
    max-height:380px;
    object-fit:cover;
    border-radius:12px;
    box-shadow:0 8px 28px rgba(0,0,0,.10);
    display:block;
}

/* Goals Section */
.goals-section{
    padding:72px 10%;
}

.goals-header{
    margin:0 0 24px 0;
}

.goals-header h2{
    color: var(--primary-red);
    font-size: 2rem;
    border-left:4px solid var(--accent);
    margin:0 0 50px;
}

.goals-grid{
    display:flex;
    gap:30px;
    align-items:stretch;
    flex-wrap:wrap;
}

.goal-column{
    flex:1;
    min-width:280px;
    background:var(--white);
    border-radius:12px;
    padding:22px;
    box-shadow:0 6px 18px rgba(0,0,0,.08);
    opacity:1;
    transform:none;
}

.goal-column ul{ 
    margin:0; 
    padding-left:18px; 
}

.goal-column li{ 
    margin-bottom:30px; 
    line-height:1.6; 
}

/* Statistics Section */
.stats {
    background: url('../../wp-content/images/backgrounds/background-1.png') no-repeat center center;
    background-size: cover;
    padding: 40px 0;
    position: relative;
    z-index: 0;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 40px 20px;
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 500;
}

/* Top Export Products Section */
.top-products-section h2{
   color: var(--primary-red);
    margin-bottom: 20px;
    font-size: 2rem;
}

.top-products-section p{
    text-align: center;
    margin-bottom: 60px;
}

.products-scroll-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.products-scroll-container {
    overflow: hidden;
    width: 100%;
}

.products-scroll {
    display: flex;
    gap: 30px;
    animation: scrollProducts 30s linear infinite;
    padding: 20px 0;
    width: max-content;
}

.product-scroll-item {
    flex: 0 0 auto;
    width: 250px;
    background: var(--white);
    border-radius: 12px;
    padding: 20px 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.product-scroll-item:hover {
    transform: translateY(-5px);
}

.image-placeholder-small {
    height: 120px;
    border-radius: 8px;
    background: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 10px 0;
}

.product-scroll-item h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
}

@keyframes scrollProducts {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 3 - 30px * 6));
    }
}

/* Our Service Section */
.our-service-section h2{
    color: var(--primary-red);
    margin-bottom: 20px;
    font-size: 2rem;
}

.our-service-section p {
    text-align: center;
    margin-bottom: 60px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-item {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    border: 1px solid var(--gray-light);
}

.service-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-item h3 {
    color: var(--primary-red);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 7px;
}

/* Benefits Section */
.benefits-section h2{
   color: var(--primary-red);
    margin-bottom: 20px;
    font-size: 2rem;
}

.benefits-section p{
    text-align: center;
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-item {
    background: var(--white);
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-red);
}

.benefit-item h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 7px;
}

/* CTA Section */
.cta-content h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1rem;
    opacity: 0.9;
	margin-bottom: 30px;
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 60px;
    color: var(--text-dark);
}

/* Footer */
.footer {
    background: var(--gray-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2.5fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h2,
.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 30px;
	font-size: 1.6rem;
}

.footer-section img {
    height: 90px;
    width: auto;
    margin-bottom: 30px;
}

.footer-section p,
.footer-section a {
    color: #bdbdbd;
    line-height: 1.8;
    text-decoration: none;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-section ul {
    list-style: none;
    padding-left: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #616161;
    color: #ffffff;
}

.footer-bottom p {
    font-size: 0.9rem;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-red);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    font-size: 20px;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--dark-red);
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 900px){
    .vision-section, .goals-section{ 
        padding:44px 6%; 
    }
    .vision-text h2, .goals-header h3{ 
        font-size:1.4rem;
    }
    .vision-image img{ 
        max-height:300px; 
    }
    
    .content {
        grid-template-columns: 1fr;
    }
    .floating-badge {
        position: static;
        margin-top: 20px;
    }
    
    /* New responsive styles for added sections */
    .intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .features {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        justify-content: flex-start;
        align-items: flex-start;
    }
    
    .timeline-year {
        flex: 0 0 80px;
        margin: 0 20px 0 0;
    }
    
    .timeline-content::before {
        display: none;
    }
}

@media (max-width: 768px) {
    /* Typography */
    h2 {
        font-size: 1.4rem; /* Mobile size */
    }
    
    p {
        font-size: 0.9rem; /* Mobile size */
		padding: 0 !important;
    }

    /* Page Header Mobile */
    .page-header {
        padding: 40px 0 60px;
    }
    
    .page-header h1 {
        font-size: 1.6rem;
		margin-bottom: 10px;
    }
	
	.breadcrumb li {
		margin: 0 3px;
		font-size: 0.7rem;
		font-weight: bold;
	}
    
    .page-header p {
        font-size: 0.9rem;
    }

    /* Fix container overflow */
    .container {
        width: 100%;
        padding: 0 20px;
        overflow-x: hidden;
    }

    .mobile-menu-btn {
        display: flex;
    }
    
    .header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px;
    }

    .nav {
        position: fixed;
        top: 97px;
        left: -100%;
        width: 100%;
        background: var(--white);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    
    .logo img {
        height: 65px;
        width: auto;
    }

    .nav.active {
        left: 0;
    }

    .nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }

    .nav li {
        margin-bottom: 15px;
    }

    .hero-title {
        font-size: 1.4rem;
    }
    
    .hero-subtitle{
        font-size: 0.9rem;
        text-align: center;
    }
    
    .hero-content {
        padding: 0 15px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        padding: 0;
        border-radius: 5px;
        text-decoration: none;
        font-weight: 600;
        border: none;
        cursor: pointer;
        text-align: center;
        font-size: 0.7rem;
        width: 115px;
        height: 40px;
        line-height: 40px;
        white-space: nowrap;
        overflow: hidden;
        box-sizing: border-box;
    }

    .btn-primary {
        background: var(--primary-red);
        color: var(--white);
        border: 2px solid var(--primary-red);
    }

    .btn-secondary {
        background: var(--white);
        color: var(--primary-red);
        border: 2px solid var(--white);
    }
	
	.btn-primary-ab {
		width: 50%;
	}
	
	.intro-content {
		padding: 0 10px;
    }

    .intro-content h2 {
        font-size: 1.4rem;
        margin-bottom: 30px;
        color: var(--text-dark);
    }

    .intro-content p {
        font-size: 0.9rem;
        color: var(--text-light);
        line-height: 1.8;
        text-align: center;		
    }

    .features-grid img {
        width: 100%;
        height: 250px;
        max-width: 100%;
    }

    .feature-content {
        padding: 5px;
    }

    .feature-content h2 {
        color: var(--primary-red);
        margin-bottom: 20px;
        font-size: 1.4rem;
        text-align: center;
    }

    .feature-content p {
        font-size: 0.8rem;
        color: var(--text-light);
        line-height: 1.8;
        margin-bottom: 30px;
        text-align: justify;
    }

    .stat-number {
        font-size: 1.7rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .stat-item {
        padding: 20px 20px;
        position: relative;
        z-index: 2;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
	
	.company-intro-content {
		display: grid;
		grid-template-columns: 1fr;
		padding: 0;
		gap: 40px;
	}
	
	.company-intro-text h2 {
		font-size: 1.2rem;
		text-transform: uppercase;

	}
	
	.text-column h2 {
		padding: 10px 0;
		line-height: 1.3;
		font-size: 1.6rem;
		margin-top: 20px;
	}
	
	.company-intro-image img {
		height: 300px;
	}
	
	.stats-card .title {
		font-size: 0.8rem !important;
		font-weight: 600;
		margin-bottom: 5px;
		text-align: left;
		text-transform: uppercase;
	}

	
    /* Fix products scroll section */
    .products-scroll-container {
        width: 100%;
        overflow: hidden;
        position: relative;
    }
    
    .products-scroll {
        width: auto;
        padding: 20px 0;
        gap: 20px;
    }

    .product-scroll-item {
        width: 220px;
        padding: 15px 10px;
		height: 220px;
    }

    .product-scroll-item h4 {
        font-size: 0.8rem;
    }

    .image-placeholder-small {
        height: 85px;
    }

    /* Top Export Products Section */
    .top-products-section h2 {
        font-size: 1.4rem;
    }

    .top-products-section p {
        margin-bottom: 40px;
    }

    /* Fix vision & goals section padding */
    .vision-section, 
    .goals-section { 
        padding: 44px 15px !important;
        width: 100%;
        box-sizing: border-box;
    }

    /* Ensure all sections respect container */
    .section-padding {
        padding: 50px 0;
        width: 100%;
        overflow: hidden;
    }

    /* Vision & Goal Section */
    .vision-section {
        flex-direction: column;
        text-align: center;
        padding: 25px 15px !important;
        gap: 30px;
    }
    
    .vision-text h2 {
        font-size: 1.4rem;
        text-align: center;
        margin-top: 40px;
		margin-bottom: 20px;
    }
    
    .goals-section h2 {
		font-size: 1.4rem;
		margin-bottom: 40px;
		margin-top: 20px;
		text-align: center;
    }
    
    .goals-section {
        padding: 50px 15px !important;
    }
    
    .goals-grid {
        flex-direction: column;
        gap: 20px;
    }

    /* Our Service Section */
    .our-service-section .container {
        width: 100%;
        padding: 0 15px;
        overflow: hidden;
    }
    
    .service-grid {
        grid-template-columns: 1fr !important;
        gap: 15px;
        width: 100% !important;
        margin: 0 auto;
        padding: 0;
    }
    
    .service-item {
        width: 100% !important;
        max-width: 100%;
        margin: 0;
        padding: 20px 35px !important;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .service-item h3 {
        font-size: 1rem;
        word-wrap: break-word;
    }
    
    .service-item p {
        font-size: 0.85rem;
        line-height: 1.5;
        word-wrap: break-word;
    }
    
    .our-service-section h2 {
        font-size: 1.4rem;
		margin-bottom: 40px;
		margin-top: 20px;
		text-align: center;
    }
        
    .goal-column li {
        font-size: 0.9rem;
    }
        
    .vision-text p {
        font-size: 0.9rem;
        margin-bottom: 15px;
        text-align: justify;
    }
        
    .vision-text, .vision-image {
        flex: 1 1 340px;
    }

    /* Fix Benefits Section */
    .benefits-section .container {
        width: 100%;
        padding: 0 15px;
        overflow: hidden;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr !important;
        gap: 15px;
        width: 100% !important;
        margin: 0 auto;
        padding: 0;
    }
    
    .benefit-item {
        width: 100% !important;
        max-width: 100%;
        margin: 0;
        padding: 25px 15px !important;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .benefit-item h3 {
        font-size: 1rem;
    }
    
    .benefit-item p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .benefits-section h2 {
        font-size: 1.4rem;
		margin-bottom: 40px;
		margin-top: 20px;
		text-align: center;
    }

    .top-products-section h2 {
        padding-bottom: 3px;
        font-size: 1.4rem;
        margin-bottom: 20px;
		margin-top: 40px;
    }
	
	 .timeline::before {
		display: none;
	}

	.timeline-content {
		width: calc(100% - 70px);
		margin-left: 60px !important;
		text-align: left !important;
	}

	.timeline-content::after {
		left: -10px !important;
		right: auto !important;
		border-right: 10px solid var(--white) !important;
		border-left: none !important;
	}

	.timeline-year {
		left: 5px;
		transform: none;
	}
	
	.timeline-content h3 {
    font-size: 0.9rem;
	}
	
	.timeline-content p {
    font-size: 0.8rem;
	}

    /* New Mobile Styles for Added Sections */
    .company-intro {
        padding: 60px 0;
    }
    
    .intro-text h2 {
        font-size: 1.6rem;
        text-align: center;
    }
    
    .intro-image img {
        height: 300px;
    }
    
    .about-text h2 {
        font-size: 1.6rem;
        text-align: center;
    }
    
    .history {
        padding: 60px 0;
    }
    
    .timeline::before {
    left: 35px;
    height: 1148px;
	}

	.timeline-content {
		width: calc(100% - 80px);
		margin-left: 80px !important;
		text-align: left !important;
	}

	.timeline-content::after {
		left: -10px !important;
		right: auto !important;
		border-right: 10px solid var(--white) !important;
		border-left: none !important;
	}

	.timeline-year {
		left: 30px;
		transform: none;
	}
    
    .mission {
        padding: 60px 0;
    }
    
    .mission-card {
        padding: 30px 20px;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature {
        padding: 30px 20px;
    }

    /* CTA Section */
    .cta-content h2 {
        font-size: 1.4rem;
    }
    
    .cta-content p {
        font-size: 0.9rem;
        padding: 0 10px;
    }

    /* Footer Section */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
        padding: 0 10px;
    }
    
    .footer-content p{
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: justify;
    }
    
    .footer-section img {
        margin: 0 auto 20px;
        display: block;
    }
    
    .footer-bottom p{
        text-align: center;
        font-size: 0.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vision-goal-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Additional global fixes for products scrolling section */
.products-scroll-wrapper {
    width: 100%;
    overflow: hidden;
}

.products-scroll-container {
    width: 100%;
    overflow: hidden;
}

/* Products Filter */
.products-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
    padding: 0 10px;
}

.filter-btn {
    padding: 10px 20px;
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--light-border-color);
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
}

.filter-btn:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

.filter-btn.active {
    background: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
}

/* Products Grid - 4 columns */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

/* Product Card */
.product-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    border: 1px solid var(--light-border-color);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.product-card.hidden {
    display: none;
}

/* Product Image - White background */
.product-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    padding: 20px;
    border-bottom: 1px solid var(--light-border-color);
}

.product-img img {
    max-width: 100%;
    max-height: 160px;
    object-fit: contain;
}

/* Fallback for missing images */
.product-img:not(:has(img[src])) {
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img:not(:has(img[src]))::before {
    content: "⚗️";
    font-size: 3rem;
    color: var(--gray-medium);
}

/* Product Info */
.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Product Name */
.product-info h3 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.3;
}

/* Product Description */
.product-info p {
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 0.9rem;
    flex-grow: 1;
}

/* Product Specs - Side by side layout */
.product-specs {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 15px;
    padding: 12px;
    background: var(--light-background-color);
    border-radius: 6px;
    border-left: 3px solid var(--primary-red);
}

.spec-item {
    color: var(--text-dark);
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.4;
    flex: 1;
}

.spec-item:first-child {
    text-align: left;
}

.spec-item:last-child {
    text-align: right;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .products-filter {
        gap: 8px;
        margin-bottom: 40px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-img {
        height: 160px;
        padding: 15px;
    }
    
    .product-img img {
        max-height: 130px;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-info h3 {
        font-size: 1rem;
    }
    
    .product-info p {
        font-size: 0.85rem;
    }
    
    .product-specs {
        padding: 10px;
    }
    
    .spec-item {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .products-filter {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
        margin: 0 -15px 30px;
        padding: 0 15px 10px;
    }
    
    .filter-btn {
        flex-shrink: 0;
    }
    
    .product-specs {
        flex-direction: column;
        gap: 5px;
    }
    
    .spec-item:first-child,
    .spec-item:last-child {
        text-align: left;
    }
}

/* === SERVICES PAGE SPECIFIC STYLES === */

/* Core Services Section */
.core-services {
    background: var(--white);
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid var(--light-border-color);    
    overflow: hidden;
	transition: var(--transition);
}

.service-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-icon {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-red);
    color: var(--white);
    font-size: 3rem;
}
		
.service-info {
    padding: 30px;
}

.service-info h3 {
    color: var(--primary-red);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
	text-transform: uppercase;
	text-align: center;
}

.service-info p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.9rem;
	text-align: justify;
}

.service-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-info li {
    color: var(--text-dark);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 0.9rem;
	text-align: justify;
}

.service-info li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
    font-size: 0.9rem;
}

/* Product Categories Section */
.product-categories {
    padding: 100px 0;
    background: linear-gradient(to right, #f7f9fc, #fff4f0 50%, #f7f9fc);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.category-card {
    background: var(--white);
    border-radius: 12px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid var(--light-border-color);
    position: relative;
    overflow: hidden;
}

.category-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-red);
}

.category-card:hover {
    background-color: var(--primary-red);
    color: var(--white);
    transform: translateY(-5px);
}

.category-card:hover h3,
.category-card:hover p {
    color: var(--white);
}
.category-card:hover .category-icon {
    color: var(--white);
}

.category-icon {
    width: 100px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 5px;
    color: var(--primary-red);
    font-size: 2.2rem;
}

.category-card h3 {
    color: var(--primary-red);
    font-size: 1.05rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.category-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Supply Chain Section */
.supply-chain {
    padding: 100px 0;
    background: var(--white);
}

.chain-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 60px;
    position: relative;
}

.chain-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--accent2-color));
    z-index: 1;
}

.chain-step {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
    padding: 0 15px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), var(--light-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 2rem;
    position: relative;
    z-index: 3;
}

.chain-step:hover .step-icon {
    box-shadow: 0 10px 25px rgba(211, 47, 47, 0.3);
}

.chain-step h3 {
    color: var(--primary-red);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Process Section */
.process {
    padding: 100px 0;
    background: linear-gradient(to right, #f7f9fc, #fff4f0 50%, #f7f9fc);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.process-step {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid var(--light-border-color);
    position: relative;
}

.process-step:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: bold;
}

.process-step h4 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Value Added Services Section */
.value-services {
    padding: 100px 0;
    background: var(--white);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.value-card {
    background: var(--white);
    border-radius: 12px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid var(--light-border-color);
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent2-color), var(--accent3-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 1.8rem;
    position: relative;
    z-index: 2;
}

.value-card h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

/* === SERVICES PAGE MOBILE RESPONSIVENESS === */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
    }
    
    .chain-steps::before {
        left: 8%;
        right: 8%;
    }
}



@media (max-width: 768px) {
    /* Services Page Mobile Typography */
    .core-services,
    .product-categories,
    .supply-chain,
    .process,
    .value-services {
        padding: 60px 0;
    }
    
    .services-grid,
    .categories-grid,
    .process-steps,
    .value-grid {
        margin-top: 40px;
        gap: 20px;
    }
    
    .service-card,
    .category-card,
    .process-step,
    .value-card {
        padding: 30px 20px;
    }
    
    .service-icon,
    .category-icon,
    .step-icon,
    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
		margin: 0 auto 15px;
    }
	
	 .chain-steps {
        flex-direction: column;
        gap: 40px;
    }
	
	.chain-steps::before {
        display: none;
    }
	
	.chain-step {
        display: flex;
        padding: 0;
		flex-direction: column;
        text-align: center;
        gap: 15px;
		padding: 25px;
    }
    
    .service-info h3,
    .category-card h3,
    .chain-step h3,
    .process-step h4,
    .value-card h3 {
        font-size: 1.1rem;
        text-align: center !important; /* Force centering */
    }
    
    .service-info p,
    .category-card p,
    .step-content p,
    .process-step p,
    .value-card p {
        font-size: 0.9rem;
    }
	
	.service-info {
    padding: 5px;
}
    
    .service-info li {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
    
    
    
    /* Process Steps Mobile */
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    /* Grid Adjustments */
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .value-grid {
        grid-template-columns: 1fr;
    }
}



/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .service-card:hover,
    .category-card:hover,
    .chain-step:hover,
    .process-step:hover,
    .value-card:hover {
        box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    }
}

/* Global Reach Section */
.global-reach {
    padding: 40px 0;
    background: var(--agent-behind);
}

.global-reach-header h2 {
	  font-size: 2rem;
      color: var(--gray-text-color);
      margin: 0.3rem auto 1.5rem auto;
	  text-align: center;
	  margin-top: 50px;
	  font-family: 'Roboto Condensed', sans-serif;
    }

    .global-reach-header p {
	font-size: 0.9rem;
      color: var(--gray-text-color);
      max-width: 550px;
      margin: 0.3rem auto 1.5rem auto;
	  text-align: center;
	  margin-top: 15px;
	  margin-bottom: 50px;
    }

    .stats-image-grid {
      display: grid;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .image-card {
      position: relative;
      border-radius: 0.6rem;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      transition: transform 0.3s, box-shadow 0.3s;
      margin-bottom: 0.5rem;
    }

    .image-card:hover img {
      transform: scale(1.03);
    }

    .image-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.3s;
    }

    .image-card .overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, var(--dark-background-color) 0%, transparent 100%);
      opacity: 0.5;
    }

    .image-card .text {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 0.8rem;
      color: #fff;
    }

    .image-card h3 {
      font-family: 'Roboto Condensed', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 0.2rem;
    }

    .image-card p {
      font-size: 0.75rem;
      opacity: 0.9;
    }

    .stats-grid-q {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
	}

    .stats-card {
      border-radius: 0.6rem;
      padding: 20px;
      color: #fff;
      box-shadow: 0 3px 8px rgba(0,0,0,0.08);
      transition: box-shadow 0.3s, transform 0.3s;
      margin-bottom: 0.5rem;
    }

    .stats-card:hover {
      box-shadow: 0 8px 16px rgba(0,0,0,0.12);
      transform: translateY(-1px);
    }

    .stats-card h4 {
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 5px;
	  margin-top: 5px;
	  text-align: left;
    }

    .stats-card .title {
      font-size: 0.95rem;
      font-weight: 600;
      margin-bottom: 5px;
	  text-align: left;
    }

    .stats-card p {
      font-size: 0.75rem;
      opacity: 0.85;
	  text-align: left;
    }

    .regional-markets {
      display: grid;
      gap: 0.8rem;
      margin-bottom: 1.5rem;
    }

    .market-card {
      background-color: var(--white);
      border-radius: 0.6rem;
      padding: 0.8rem;
      transition: box-shadow 0.3s, transform 0.3s;
      margin-bottom: 0.5rem;
	  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    }

    .market-card:hover {
      transform: translateY(-7px);
    }

    .market-card .icon {
      width: 2.2rem;
      height: 2.2rem;
      border-radius: 0.4rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 0.5rem;
      color: #fff;
      font-size: 1rem;
    }

    .market-card h3 {
      font-family: 'Roboto Condensed', sans-serif;
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 0.2rem;
    }

    .market-card p {
      font-size: 0.75rem;
      color: var(--gray-text-color);
    }
	
	@media(min-width: 1024px) {
  .stats-image-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  .regional-markets {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(min-width: 640px) {
  .stats-grid-q {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .regional-markets {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* === QUALITY & GLOBAL PAGE STYLES === */

/* Quality Standards Section */
.quality-content {
    max-width: 800px;
    margin: 0 auto;
	margin-bottom: 60px;
}

.quality-text h2 {
    color: var(--primary-red);
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.quality-text h3 {
    color: var(--primary-red);
    font-size: 1.3rem;
    margin: 40px 0 15px 0;
    border-left: 4px solid var(--primary-red);
    padding-left: 15px;
}

.quality-text p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
	text-align: center;
}



/* Environment Section */
.environment {
    background: var(--white);
	padding: 60px;
}

.environment-content {
    max-width: 800px;
    margin: 0 auto;
}

.environment-content h2 {
    color: var(--primary-red);
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.environment-content > p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.6;
}

.environment-content ul {
    list-style: none;
    padding: 0;
    margin: 40px 0;
}

.environment-content li {
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-left: 35px;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
}

.environment-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
}


/* Logistics Section */
.logistics {
    background: var(--white);
}

.logistics-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.logistics-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.7;
}

.logistics-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    text-align: left;
}

.logistics-content li {
    color: var(--text-dark);
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
}

.logistics-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-red);
    font-weight: bold;
    font-size: 1.1rem;
}



/* Animations */
@keyframes fadeInRegion {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.7);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(211, 47, 47, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(211, 47, 47, 0);
    }
}

/* === MOBILE RESPONSIVENESS === */
@media (max-width: 768px) {
    /* Quality Standards Mobile */
    .quality-text h2 {
        font-size: 1.6rem;
    }
    
    .quality-text h3 {
        font-size: 1.2rem;
        margin: 30px 0 12px 0;
    }
    
    .quality-text p {
        font-size: 0.95rem;
    }

   

    /* Environment Mobile */
	
	.environment {
		background: var(--white);
		padding: 10px;
	}
	
    .environment-content h2 {
        font-size: 1.6rem;
		margin-top: 40px;
    }
    
    .environment-content > p {
        font-size: 1rem;
    }
    
    .environment-content li {
        font-size: 0.95rem;
        margin-bottom: 15px;
        padding-left: 40px;
    }

    

    /* Logistics Mobile */
    .logistics-content p {
        font-size: 1rem;
    }
    
    .logistics-content ul {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .logistics-content li {
        font-size: 0.95rem;
        padding-left: 25px;
    }

    /* Global Reach Mobile */
    .global-reach {
        padding: 20px 0;
    }
	
	.image-card {
		width:	100%;
		align-items
	}
	
	.stats-grid-q {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
		text-align: center;
	}

    /* Further adjust map positions for very small screens */
    .asia {
        top: 35%;
        left: 65%;
    }
    
    .europe {
        top: 25%;
        left: 40%;
    }
    
    .africa {
        top: 40%;
        left: 35%;
    }
    
    .middle-east {
        top: 30%;
        left: 50%;
    }
    
    .region-item {
        padding: 25px 15px;
    }
    
    .certification-item {
        padding: 25px 15px;
    }
}


/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .certification-item:hover,
    .region-item:hover {
        transform: none;
    }
    
    .certification-item:active,
    .region-item:active {
        transform: scale(0.98);
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .certification-item,
    .region-item {
        border: 2px solid var(--text-dark);
    }
    
    .region-dot {
        border: 2px solid var(--white);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .certification-item,
    .region-item,
    .map-region {
        transition: none;
        animation: none;
    }
    
    .region-dot {
        animation: none;
    }
}

 /* Documentation */
        .documentation {
            background: linear-gradient(to right, #f7f9fc, #fff4f0 50%, #f7f9fc);
			padding: 80px;
        }
		
		.documentation h2 {
            font-size: 2rem;
			padding: 10px;
        }
		
		.documentation p {
            font-size: 0.85rem;
			padding: 10px 200px;
        }

        .docs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .doc-card {
            background-color: var(--white);
            padding: 30px;
            border-radius: 8px;
            box-shadow: var(--shadow);
            transition: var(--transition);
			box-shadow: 0 8px 25px rgba(0,0,0,0.08);
        }
		
		.doc-card h2 {
            font-size: ;
			padding: 30px;
        }
		
		.doc-card p {
            font-size: 0.85rem;
			padding: 5px 0;
        }

        .doc-card:hover {
            transform: translateY(-5px);
        }

        .doc-icon {
            font-size: 2.5rem;
            color: var(--primary-red);
            margin-bottom: 20px;
        }

        .doc-actions {
            margin-top: 20px;
        }


		.quality-section {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
			padding: 5px;
        }
		
		.quality-section h2 {
            color: var(--primary-red);
			font-size:1.9rem;
			border-left:4px solid var(--accent);
			text-align: center !important;
			padding: 20px;
		}
		
		.quality-section-p {
            color: var(--text-light);
			line-height: 1.6;
			font-size: 0.95rem;
			text-align: center !important;
			margin-bottom: 80px;
			}



        /* Quality Philosophy Section - Full Width */
        .philosophy-section {
            padding: 0 40px;
            background: var(--white);
        }

        .philosophy-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .philosophy-item {
            margin-bottom: 20px;
        }

        .philosophy-title {
            color: var(--text-dark);
            font-size: 1.3rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .philosophy-title i {
            background: var(--accent2-color);
            color: white;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
        }

        .philosophy-text {
            color: var(--text-light);
            line-height: 1.7;
            font-size: 0.85rem;
			text-align: justify;
        }

        @media (max-width: 768px) {
			
			.documentation {
				padding: 10px;
			}
			
			.documentation h2 {
				font-size: 1.6rem;
				margin-top: 40px;
				margin-bottom: 20px;
			}
			
			.doc-card {
				text-align: center;
			}

            .philosophy-section {
                padding: 20px 10px;
            }
            
            .philosophy-grid {
                grid-template-columns: 1fr;
            }
			
			.philosophy-title {
				color: var(--text-dark);
				font-size: 0.9rem !important;
				
				display: flex;
				align-items: center;
				gap: 10px;
				text-transform: uppercase;
				
			}
            
            .section-title {
                font-size: 1.6rem;
            }
        }
		

 .certifications {
            margin-bottom: 30px;
            padding: 80px;
			background-color: var(--cert-bg);
        }
        
        .certifications-header h2 {
            color: var(--primary-red);
			font-size: 2rem;
			margin-bottom: 20px;
			text-align: center;
		}
        
        .certifications-header p {
            font-size: 1rem;
            line-height: 1.5;
			text-align: center !important;
			padding: 10px 200px;
			margin-bottom: 50px;
        }
        
        .certifications-section {
            display: flex;
            gap: 30px;
            margin-bottom: 20px;
        }
        
        .cert-left, .cert-right {
            flex: 1;
        }
        
        .promo-card {
            display: flex;
            background-color: white;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        }
        
        .icon-section {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 15px;
            background-color: var(--primary-red);
        }
        
        .icon-circle {
            width: 70px;
            height: 70px;
            background-color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
            color: var(--primary-red);
        }
        
        .content-section {
            flex: 3;
            padding: 20px;
        }
        
        .content-section h2 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 10px;
            letter-spacing: 0.3px;
            color: var(--primary-red);
        }
        
        .content-section p {
            line-height: 1.5;
            font-size: 0.9rem;
        }
        
        
        @media (max-width: 768px) {
			
			.certifications {
				margin-top: 30px;
				padding: 10px;
				background-color: var(--cert-bg);
			}
			
			 .certifications-header h2 {
				color: var(--primary-red);
				font-size: 1.6rem;
				margin-bottom: 20px;
				margin-top: 40px;
				text-align: center;
			}

            .certifications-section {
                flex-direction: column;
            }
            
            .promo-card {
                flex-direction: column;
				border-radius: 0.6rem;
            }
            
            .icon-section {
                padding: 12px;
            }
            
            .icon-circle {
                width: 60px;
                height: 60px;
            }
            
            .content-section {
                padding: 18px;
            }
			
			.content-section h2 {
				text-align: center;
				margin-top: 15px;
				margin-bottom: 20px;
			}
			
			.content-section p {
				text-align: center;
			}
              }
			  
	
	/* === CONTACT PAGE STYLES === */

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin: 60px 0;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid var(--light-border-color);
}

.contact-form h2 {
    color: var(--primary-red);
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--light-border-color);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--light-background-color);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 10px;
}

/* Contact Info */
.contact-info {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid var(--light-border-color);
}

.contact-info h2 {
    color: var(--primary-red);
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-border-color);
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    flex-shrink: 0;
}

.info-item h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.info-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Map Section */
.map-section {
    background: var(--white);
	margin-bottom: 80px;
}

.map-section h2 {
    color: var(--primary-red);
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.map-placeholder {
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid var(--light-border-color);
}

/* Quick Contact CTA */
.cta .cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta .btn {
    margin-top: 20px;
}

/* === CONTACT PAGE MOBILE RESPONSIVENESS === */
@media (max-width: 768px) {
    /* Contact Section Mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin: 40px 0;
    }
    
    .contact-form,
    .contact-info {
        padding: 30px 25px;
    }
    
    .contact-form h2,
    .contact-info h2 {
        font-size: 1.4rem;
        margin-bottom: 30px;
    }
    
    /* Form Mobile */
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .contact-form .btn {
		line-height: 1px;
		font-size: 0.9rem;
		padding: 25px;
    }
    
    /* Contact Info Mobile */
    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding-bottom: 25px;
		align-items: center;
    }
    
    .info-icon {
        align-self: center;
		margin-top: 30px;
    }
    
    .info-item h4 {
        font-size: 1rem;
    }
    
    .info-item p {
        font-size: 0.9rem;
		text-align: center !important;
		margin-bottom: 30px;
    }
    
    /* Map Section Mobile */
    .map-section {
        padding: 10px 0;
    }
    
    .map-section h2 {
        font-size: 1.4rem;
        margin-bottom: 30px;
    }
    
    .map-placeholder {
        border-radius: 8px;
    }
    
    /* CTA Mobile */
    .cta .cta-content h2 {
        font-size: 1.4rem;
    }
    
    .cta .cta-content p {
        font-size: 0.9rem;
    }
}


/* Form Validation Styles */
.form-group input:invalid:not(:focus):not(:placeholder-shown),
.form-group textarea:invalid:not(:focus):not(:placeholder-shown) {
    border-color: var(--light-red);
    background: rgba(244, 67, 54, 0.05);
}

.form-group input:valid:not(:focus):not(:placeholder-shown),
.form-group textarea:valid:not(:focus):not(:placeholder-shown) {
    border-color: var(--accent4-color);
    background: rgba(139, 195, 74, 0.05);
}

/* Loading State */
.contact-form.loading .btn {
    position: relative;
    color: transparent;
}

.contact-form.loading .btn::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid var(--white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success/Error Messages */
.form-message {
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.1);
    color: var(--accent4-color);
    border: 1px solid var(--accent4-color);
}

.form-message.error {
    background: rgba(244, 67, 54, 0.1);
    color: var(--light-red);
    border: 1px solid var(--light-red);
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .btn {
        min-height: 44px; /* Better touch targets */
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .contact-form,
    .contact-info {
        border: 2px solid var(--text-dark);
    }
    
    .form-group input,
    .form-group textarea {
        border-width: 2px;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .form-group input,
    .form-group textarea,
    .btn {
        transition: none;
    }
    
    .contact-form.loading .btn::after {
        animation: none;
    }
}