/* ============================================
   BASE STYLES FROM style.css
   ============================================ */

/* CSS Variables */
:root {
    --primary-green: #2d5016;
    --light-green: #4a7c2a;
    --bright-green: #5cb85c;
    --dark-green: #1a3309;
    --accent-green: #469A4F;
    --dark-grey: #2c3e50;
    --light-grey: #f8f9fa;
    --white: #ffffff;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

body {
    font-family: 'Mona Sans';
    color: var(--dark-grey);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header/Navbar Styles */
.navbar {
    background-color: #191919;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--primary-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--accent-green);
}

.logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.logo-circle::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    z-index: -1;
}

.brand-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin: 0;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: var(--white) !important;
}

.navbar-nav .nav-link.active {
    color: var(--white) !important;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section Base Styles */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
    overflow-x: hidden;
    overflow-y: visible;
    padding-top: 80px;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-content h1,
.hero-title {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 1.2rem;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: var(--white);
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
    color: var(--white);
}

.hero-description {
    font-size: 20px;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
    color: var(--white);
}

/* Section Styles */
.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: #f8f9fa;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-grey);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.about-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-grey);
    margin-bottom: 1rem;
    line-height: 1.3;
    padding: 0 100px 0 0;
}

.export-process-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-grey);
    margin-bottom: 1rem;
    line-height: 1.3;
}
.exporting-brands-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-grey);
    margin-bottom: 1rem;
    line-height: 1.3;
    padding: 0 10px ;
}
/* Process Steps Section */
.process-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 70px;
    flex-wrap: wrap;
    gap: 30px;
}

.process-section-header h2 {
    margin-bottom: 0;
    text-align: left;
    flex: 1;
    min-width: 300px;
    font-weight: 700;
    font-size: 2.5rem;
    color: #2c3e50;
    line-height: 1.3;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    padding: 0px 0 85px;
    align-items: start;
    min-height: 420px;
}

.process-steps::after {
    content: '';
    position: absolute;
    top: calc(50% - 80px);
    left: 0;
    right: 0;
    height: 160px;
    width: 100%;
    background-image: url('../images/Vector 1.svg');
    background-size: 100% 190px;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
    opacity: 1;
}

.process-step {
    text-align: left;
    position: relative;
    z-index: 2;
    padding-top: 0;
}

.step-1 {
    margin-top: 0;
}

.step-2 {
    margin-top: 140px;
}

.step-3 {
    margin-top: 0;
}

.step-4 {
    margin-top: 140px;
}

.step-number-bg {
    position: absolute;
    left: 0;
    font-size: 250px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.05);
    line-height: 0.6;
    z-index: 0;
    font-family: 'Mona Sans', sans-serif;
    pointer-events: none;
    opacity: 0.2;
}

.step-1 .step-number-bg {
    top: 140px;
    left: 271px;
    font-size: 106px;
    color: black;
}

.step-2 .step-number-bg {
    top: 190px;
    left: 220px;
    color: black;
    font-size: 106px;
}

.step-3 .step-number-bg {
    top: 54px;
    left: 185px;
    color: black;
    font-size: 106px;
}

.step-4 .step-number-bg {
    top: 131px;
    left: 113px;
    color: black;
    font-size: 106px;
}

.step-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: #469A4F;
    border-radius: 50%;
    z-index: 3;
    border: 3px solid var(--white);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.step-1 .step-marker {
    top: 117%;
}

.step-2 .step-marker {
    top: 38%;
}

.step-3 .step-marker {
    top: 130%;
}

.step-4 .step-marker {
    top: 14%;
}

.step-content {
    position: relative;
    z-index: 1;
    padding-left: 0;
    margin-top: 0;
}

.step-1 .step-content {
    margin-top: 139px;
    left: 115px;
}

.step-2 .step-content {
    margin-top: 190px;
    left: 60px;
}

.step-3 .step-content {
    margin-top: 66px;
    left: 10px;
}

.step-4 .step-content {
    margin-top: 130px;
    left: -69px;
}

.step-content h4 {
    color: #000000;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 1.2rem;
    font-family: 'Mona Sans', sans-serif;
    width: 134px;
}

.step-content p {
    color: #2c3e50;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
    font-family: 'Mona Sans', sans-serif;
}

/* Brand Carousel Styles */
.brand-carousel-wrapper {
    position: relative;
    margin-top: 2.5rem;
}

.brand-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
    height: 100%;
    margin: 0;
}

.brand-card:hover {
    transform: translateY(-10px);
}

.brand-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    object-position: center;
    border-radius: 10px;
    margin-bottom: 20px;
    background-color: transparent;
}

.brand-card h4 {
    color: var(--dark-grey);
    margin-bottom: 15px;
    font-weight: 600;
    text-align: left;
}

/* Footer Styles */
.footer {
    background: #232323;
    color: var(--white);
    padding: 60px 0 20px;
    position: relative;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer .logo-circle {
    margin-bottom: 15px;
    height: 200px;
    width: 200px;
}

.footer h5 {
    color: white;
    margin-bottom: 20px;
    font-weight: 600;
}

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

.footer ul li {
    padding: 8px 0;
    color: #ccc;
    font-size: 20px;
}

.footer ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer ul li a:hover {
    color: var(--accent-green);
}

.footer-bottom {
    border-top: 1px solid #444;
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
}

/* ============================================
   ABOUT PAGE SPECIFIC STYLES
   ============================================ */

/* Hero Section - About Page Specific */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/abouthero.png') center/cover no-repeat;
    background-size: cover;
    background-position: center;
}

/* Override inline styles for responsive design */
@media (max-width: 992px) {
    .hero-content h1[style*="padding"] {
        padding: 0 30px !important;
    }

    .hero-description[style*="padding"] {
        padding: 0 30px !important;
    }
}

@media (max-width: 768px) {
    .hero-content h1[style*="padding"] {
        padding: 0 20px !important;
    }

    .hero-description[style*="padding"] {
        padding: 0 20px !important;
    }
}

.hero-section .row.align-items-center.justify-content-center {
    top: 177px;
    position: relative;
}

@media (max-width: 768px) {
    .hero-section .row.align-items-center.justify-content-center {
        top: 0;
        position: relative;
    }
}

@media (max-width: 576px) {
    .hero-section .row.align-items-center.justify-content-center {
        top: 0;
        position: relative;
    }

    .hero-section {
        min-height: auto !important;
        padding: 70px 0 20px !important;
    }

    .hero-content h1 {
        font-size: 1.2rem !important;
        padding: 0 10px !important;
        margin-bottom: 0.8rem !important;
    }

    .hero-description {
        font-size: 0.75rem !important;
        padding: 0 10px !important;
        line-height: 1.5;
        margin-bottom: 1rem !important;
    }
}

/* Mission, Vision, Call to Action Section */
.mission-vision-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    min-height: 750px;
    background: transparent;
}

    .mission-vision-section .container-fluid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 400px;
    background: url('../images/bgtractore.png') center/cover no-repeat;
    background-size: cover;
    background-position: center;
    /* filter: blur(5px); */
    z-index: 0;
    transform: scale(1.1);
}

.mission-vision-section .container {
    position: relative;
    z-index: 1;
}

.mission-vision-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 50px;
    text-align: left;
    font-family: 'Mona Sans';
    line-height: 1.2;
    text-align: center;
}

.mission-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 50px 35px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 512px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    z-index: 1;
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.mission-icon {
    width: 90px;
    height: 90px;
    background: transparent;
    /* border: 2px solid var(--accent-green); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    flex-shrink: 0;
}

.mission-icon img {
    width: 85px;
    height: 85px;
    object-fit: contain;
}

.mission-card h3 {
    font-size: 35px;
    font-weight: 600;
    color: var(--accent-green);
    margin-bottom: 20px;
    font-family: 'Mona Sans';
}

.mission-card p {
    font-size: 22px;
    color: #8C8C8C;
    line-height: 1.8;
    margin: 0;
    padding: 0 25px;
    font-weight: 500;
}

/* Why Choose About Section */
.why-choose-about-section {
    background: #ffffff;
    padding: 80px 0;
}

.why-choose-about-img {
    width: 100%;
    height: 480px;
    object-fit: contain;
    object-position: center;
    border-radius: 15px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: #f8f9fa; */
}

.why-choose-box {
    background: #e8f5e9;
    border-radius: 12px;
    padding: 30px;
    margin-top: 20px;
    border: 1px solid #0080008a;
}

.why-choose-list-about {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-choose-list-about li {
    padding: 12px 0;
    padding-left: 30px;
    color: var(--dark-grey);
    font-size: 1.05rem;
    line-height: 1.6;
    position: relative;
}

.why-choose-list-about li::before {
    content: ".";
    position: absolute;
    left: 0;
    color: gray;
    font-weight: bold;
    font-size: 1.3rem;
    top: 5px;
}

/* Supporting Solutions Section */
.supporting-solutions-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.supporting-solutions-section .row {
    align-items: center;
    justify-content: center;
}

.solution-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
}

.solution-tab {
    background: #ffffff;
    color: var(--dark-grey);
    padding: 14px 40px;
    border-radius: 8px 8px 0 0;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border-bottom: none;
    font-family: 'Mona Sans',;
    outline: none;
    position: relative;
}

.solution-tab:focus {
    outline: 2px solid var(--accent-green);
    outline-offset: 2px;
}

.solution-tab.active {
    background: #ffffff;
    color: #9e9d9d;
    border-bottom: none;
}

.solution-tab:not(.active) {
    background: #ffffff;
    color: var(--dark-grey);
    border-bottom: none;
}

.solution-tab:hover {
    background: #ffffff;
    color: #666666;
}

.solution-tab.active:hover {
    background: #ffffff;
    color: #666666;
}

/* Solution Content Container */
.solution-content {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.solution-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.solution-card {
    background: transparent;
    border-radius: 12px;
    padding: 0;
    text-align: center;
    box-shadow: none;
    transition: all 0.5s ease;
    height: 100%;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    border: none;
    overflow: hidden;
    transform: scale(0.85);
}

/* Center card - zoomed in */
.supporting-solutions-section .row .col-lg-4:nth-child(2) .solution-card,
.supporting-solutions-section .row .col-md-6:nth-child(2) .solution-card {
    transform: scale(1.1);
    z-index: 2;
    position: relative;
    box-shadow: none;
}

/* Left and right cards - zoomed out */
.supporting-solutions-section .row .col-lg-4:nth-child(1) .solution-card,
.supporting-solutions-section .row .col-lg-4:nth-child(3) .solution-card,
.supporting-solutions-section .row .col-md-6:nth-child(1) .solution-card,
.supporting-solutions-section .row .col-md-6:nth-child(3) .solution-card {
    transform: scale(0.85);
    opacity: 0.8;
}

.solution-card:hover {
    transform: scale(0.9) !important;
    box-shadow: none;
    border: none;
}

/* Center card hover - maintain zoom */
.supporting-solutions-section .row .col-lg-4:nth-child(2) .solution-card:hover,
.supporting-solutions-section .row .col-md-6:nth-child(2) .solution-card:hover {
    transform: scale(1.15) !important;
}

.solution-image {
    width: 100%;
    height: 440px;
    margin-bottom: 0;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    flex-shrink: 0;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Center card image - larger */
.supporting-solutions-section .row .col-lg-4:nth-child(2) .solution-image,
.supporting-solutions-section .row .col-md-6:nth-child(2) .solution-image {
    height: 440px;
}

.solution-image img {
    width: 100%;
    height: 440px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

/* Center card image - no zoom to show full image */
.supporting-solutions-section .row .col-lg-4:nth-child(2) .solution-image img,
.supporting-solutions-section .row .col-md-6:nth-child(2) .solution-image img {
    transform: scale(1);
}

/* Side cards image - no zoom to show full image */
.supporting-solutions-section .row .col-lg-4:nth-child(1) .solution-image img,
.supporting-solutions-section .row .col-lg-4:nth-child(3) .solution-image img,
.supporting-solutions-section .row .col-md-6:nth-child(1) .solution-image img,
.supporting-solutions-section .row .col-md-6:nth-child(3) .solution-image img {
    transform: scale(1);
}

.solution-card:hover .solution-image img {
    transform: scale(1.05);
}

/* Center card hover image */
.supporting-solutions-section .row .col-lg-4:nth-child(2) .solution-card:hover .solution-image img,
.supporting-solutions-section .row .col-md-6:nth-child(2) .solution-card:hover .solution-image img {
    transform: scale(1.05);
}

.solution-card h4 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark-grey);
    margin: 0;
    padding: 20px 40px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.4;
    font-size: 25px;
}

/* Product Range Section */
.product-range-section {
    background: #ffffff;
    padding: 80px 0;
}

.product-range-container {
    background: #ffffff;
    border-radius: 15px;
    padding: 50px 40px;
    text-align: center;
    margin: 0 auto;
    max-width: 1200px;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
}

.product-range-grid {
    padding: 40px 0;
    border: 1px solid rgba(0, 0, 0, 0.09);
    border-radius: 20px;
    margin: 0;
    overflow: hidden;
}

/* Grid lines for desktop (3 columns) */
@media (min-width: 992px) {
    .product-range-grid > [class*="col-lg-4"] {
        border-right: 1px solid rgba(0, 0, 0, 0.09);
        border-bottom: 1px solid rgba(0, 0, 0, 0.09);
    }
    
    .product-range-grid > [class*="col-lg-4"]:nth-child(3n) {
        border-right: none;
    }
    
    .product-range-grid > [class*="col-lg-4"]:nth-child(n+4) {
        border-bottom: none;
    }
}

/* Grid lines for tablet (2 columns) */
@media (min-width: 768px) and (max-width: 991px) {
    .product-range-grid > [class*="col-md-6"] {
        border-right: 1px solid rgba(0, 0, 0, 0.09);
        border-bottom: 1px solid rgba(0, 0, 0, 0.09);
    }
    
    .product-range-grid > [class*="col-md-6"]:nth-child(2n) {
        border-right: none;
    }
    
    .product-range-grid > [class*="col-md-6"]:nth-child(n+5) {
        border-bottom: none;
    }
}

/* Grid lines for mobile (1 column) */
@media (max-width: 767px) {
    .product-range-grid > [class*="col-"] {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.09);
    }
    
    .product-range-grid > [class*="col-"]:last-child {
        border-bottom: none;
    }
}

.product-range-item {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 45px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: none;
}

.product-range-item:hover {
    transform: translateY(-3px);
}

.product-range-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-range-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(27%) sepia(95%) saturate(1352%) hue-rotate(87deg) brightness(96%) contrast(88%);
}

.product-range-item:hover .product-range-icon img {
    filter: brightness(0) saturate(100%) invert(27%) sepia(95%) saturate(1352%) hue-rotate(87deg) brightness(96%) contrast(88%);
}

.product-range-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-grey);
    margin: 0;
}

/* Leaders Section */
.leaders-section {
    background: linear-gradient(180deg, #f7f9fb 0%, #ffffff 100%);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.leaders-section::before {
    content: '';
    position: absolute;
    top: -140px;
    right: -140px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(70, 154, 79, 0.16), rgba(70, 154, 79, 0));
    pointer-events: none;
}

.leaders-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.leaders-eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-green);
}

.leaders-title {
    margin: 0;
}

.leaders-subtitle {
    margin: 0;
    max-width: 760px;
    color: #6c757d;
    font-size: 1.1rem;
}

.leaders-grid {
    position: relative;
    z-index: 1;
}

@media (min-width: 992px) {
    .leaders-header {
        align-items: flex-start;
        text-align: left;
    }
}

.brand-logo-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    border: 1px solid rgba(45, 80, 22, 0.08);
    box-shadow: 0 12px 30px rgba(16, 24, 40, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    height: 100%;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.brand-logo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(16, 24, 40, 0.12);
    border-color: rgba(70, 154, 79, 0.25);
}

.brand-logo-img {
    width: 100%;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 12px;
    padding: 12px;
    background: #f4f6f8;
}

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

.brand-logo-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-grey);
    margin: 0;
}

/* Export Process Timeline Section - New Design */
.export-process-timeline-section {
    background: #ffffff;
    padding: 80px 0;
}

.export-timeline-wrapper {
    position: relative;
    padding: 60px 0 100px;
}

.export-timeline-line {
    position: absolute;
    top: 73px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e0e0e0;
    transform: translateY(-50%);
    z-index: 1;
}

.export-timeline-dots {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10%;
    z-index: 2;
    margin-bottom: 80px;
}

.export-timeline-dot {
    width: 20px;
    height: 20px;
    background: var(--accent-green);
    border-radius: 50%;
    border: 3px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.export-process-cards {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 0 5%;
}

.export-process-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 90px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.15);
    border: 1px solid rgba(76, 175, 80, 0.2);
    flex: 1;
    max-width: 250px;
    transition: all 0.3s ease;
    position: relative;
}

.export-process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.25);
}

.export-process-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-green);
    line-height: 1;
    margin-bottom: 15px;
    font-family: 'Mona Sans', sans-serif;
}

.export-process-text {
    font-size: 25px;
    font-weight: 500;
    color: #000000;
    line-height: 1.4;
    font-family: 'Mona Sans', sans-serif;
}

/* Export Process Section - Center Header */
.process-section-header.text-center {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    margin-bottom: 22px;
}

.process-section-header.text-center h2 {
    text-align: center !important;
    margin-bottom: 15px;
    flex: none !important;
    min-width: auto !important;
}

.process-section-header.text-center p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Export Process Section (Numbered) */
.export-process-section {
    background: #ffffff;
    padding: 80px 0;
}

.export-process-timeline {
    position: relative;
    margin-bottom: 60px;
    padding: 0 15px;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 15px;
    right: 15px;
    height: 2px;
    background: #e0e0e0;
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-dots {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    padding: 0;
    margin: 0;
}

.timeline-dots .timeline-dot {
    flex: 0 0 auto;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    background: var(--accent-green);
    border-radius: 50%;
    border: 3px solid #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.process-cards-row {
    position: relative;
    z-index: 3;
}

.process-number-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.12), 0 0 0 1px rgba(76, 175, 80, 0.15);
    transition: all 0.3s ease;
    height: 100%;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(76, 175, 80, 0.15);
}

.process-number-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2), 0 0 0 1px rgba(76, 175, 80, 0.2);
}

.process-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-green);
    line-height: 1;
    margin-bottom: 15px;
    font-family: 'Mona Sans', sans-serif;
}

.process-number-card h4 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark-grey);
    margin: 0;
    line-height: 1.5;
}

/* Export Process Flowchart Section */
.export-process-flowchart-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.process-flowchart {
    position: relative;
    padding: 60px 0;
}

.process-flowchart-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    height: 200px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
}

.process-flowchart-line img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.process-flowchart-steps {
    position: relative;
    z-index: 2;
}

.flowchart-step {
    text-align: center;
    position: relative;
}

.flowchart-circle {
    width: 60px;
    height: 60px;
    background: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    border: 4px solid #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.flowchart-step h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-grey);
    margin-bottom: 10px;
}

.flowchart-step p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Exporting Brands Section */
.exporting-brands-section {
    background: #ffffff;
    padding: 80px 0;
}

.exporting-brands-section p {
    font-size: 20px;
    color: #8C8C8C;
    padding: 0 10px;
}

@media (max-width: 768px) {
    .exporting-brands-section p {
        padding-left: 0;
    }
}
.exporting-brands-section .brand-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 60px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
    height: 100%;
    margin: 0 15px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #0000001a;
}

.exporting-brands-section .brand-card:hover {
    transform: translateY(-10px);
}

.exporting-brands-section .brand-card img {
    width: 100%;
    height: 200px;
    /* object-fit: cover; */
    border-radius: 10px;
    margin-bottom: 20px;
}

.exporting-brands-section .brand-card h4 {
    color: var(--dark-grey);
    margin: 0;
    font-weight: 600;
    font-size: 20px;
}

/* Exporting Brands Carousel Controls - Diamond Shape */
.exporting-brands-section .brand-carousel-wrapper {
    position: relative;
    /* padding: 0 80px; */
    margin-top: 2.5rem;
}

.exporting-brands-section .brand-carousel-wrapper .carousel-control-prev,
.exporting-brands-section .brand-carousel-wrapper .carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: transparent;
    border: 2px solid var(--accent-green);
    border-radius: 0;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    opacity: 1;
    transition: all 0.3s;
    z-index: 10;
    position: absolute;
}

.exporting-brands-section .brand-carousel-wrapper .carousel-control-prev:hover,
.exporting-brands-section .brand-carousel-wrapper .carousel-control-next:hover {
    background-color: rgba(76, 175, 80, 0.1);
}

.exporting-brands-section .brand-carousel-wrapper .carousel-control-prev {
    left: -90px;
}

.exporting-brands-section .brand-carousel-wrapper .carousel-control-next {
    right: -90px;
}

.exporting-brands-section .brand-carousel-wrapper .carousel-control-prev i,
.exporting-brands-section .brand-carousel-wrapper .carousel-control-next i {
    font-size: 20px;
    color: var(--accent-green);
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.exporting-brands-section .brand-carousel-wrapper .carousel-control-prev-icon,
.exporting-brands-section .brand-carousel-wrapper .carousel-control-next-icon {
    background-image: none;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   RESPONSIVE STYLES FOR BASE COMPONENTS
   ============================================ */

/* Small Desktop Screens (1200px and below) */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-title,
    .about-section-title {
        font-size: 2.2rem;
    }

    .section-padding {
        padding: 70px 0;
    }

    .process-steps {
        gap: 15px;
    }

    .process-section-header h2 {
        font-size: 2.3rem;
    }

    .step-1 .step-content {
        left: 180px;
    }

    .step-2 .step-content {
        left: 160px;
    }

    .step-3 .step-content {
        left: 120px;
    }

    .step-4 .step-content {
        left: 80px;
    }

    .step-number-bg {
        font-size: 220px;
    }

    .brand-card {
        padding: 28px 25px;
    }
}

/* Tablet Screens (992px and below) */
@media (max-width: 992px) {
    .section-padding {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p,
    .hero-description {
        font-size: 0.95rem;
    }

    .section-title,
    .about-section-title,
    .export-process-section-title,
    .exporting-brands-section-title {
        font-size: 2rem;
    }

    .export-process-section-title {
        padding: 0 20px !important;
    }

    .exporting-brands-section-title {
        padding: 0 20px !important;
    }

    .process-section-header {
        gap: 20px;
    }

    .process-section-header h2 {
        font-size: 2rem;
    }

    .process-steps {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
        padding: 80px 0 180px;
    }

    .step-1 .step-content {
        left: 150px;
    }

    .step-2 .step-content {
        left: 120px;
    }

    .step-3 .step-content {
        left: 80px;
    }

    .step-4 .step-content {
        left: 40px;
    }

    .step-number-bg {
        font-size: 200px;
    }

    .step-1 .step-number-bg,
    .step-2 .step-number-bg,
    .step-3 .step-number-bg,
    .step-4 .step-number-bg {
        left: -10px;
    }

    .brand-carousel-wrapper {
        padding: 0 70px;
    }

    .brand-card {
        padding: 25px 20px;
    }
}

/* Smaller Tablet Screens (768px and below) */
@media (max-width: 768px) {
    .navbar {
        padding: 0.8rem 0;
    }

    .logo-circle {
        width: 60px;
        height: 60px;
    }

    .logo-circle img {
        width: 100%;
        height: 100%;
    }

    .brand-text {
        font-size: 16px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p,
    .hero-description {
        font-size: 0.9rem;
    }

    .section-title,
    .about-section-title,
    .export-process-section-title,
    .exporting-brands-section-title {
        font-size: 1.8rem;
    }

    .export-process-section-title {
        padding: 0 20px !important;
    }

    .exporting-brands-section-title {
        padding: 0 20px !important;
    }

    .section-padding {
        padding: 50px 0;
    }

    .process-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 50px;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        padding: 60px 0 120px;
        gap: 40px;
    }

    .process-steps::after {
        display: none;
    }

    .step-1,
    .step-3 {
        margin-top: 0;
    }

    .step-2,
    .step-4 {
        margin-top: 0;
    }

    .step-marker {
        display: none;
    }

    .step-number-bg {
        font-size: 180px;
    }

    .step-1 .step-number-bg,
    .step-2 .step-number-bg,
    .step-3 .step-number-bg,
    .step-4 .step-number-bg {
        top: -100px;
        left: -10px;
    }

    .step-content {
        margin-top: 0;
        left: 120px !important;
    }

    .step-1 .step-content,
    .step-2 .step-content,
    .step-3 .step-content,
    .step-4 .step-content {
        margin-top: 0;
        left: 120px;
    }

    .brand-carousel-wrapper {
        padding: 0 60px;
    }

    .brand-card {
        padding: 25px 20px;
    }

    .brand-card img {
        height: 180px;
    }

    .footer {
        padding: 40px 0 15px;
    }

    .footer .row {
        gap: 25px;
    }

    .footer .col-lg-3,
    .footer .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 25px;
    }

    .footer .col-lg-3:last-child,
    .footer .col-md-6:last-child {
        margin-bottom: 0;
    }

    .footer .logo-circle {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }

    .footer .logo-circle img {
        width: 100%;
        height: 100%;
    }

    .footer .brand-text {
        font-size: 14px;
    }

    .footer h5 {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .footer ul li {
        font-size: 0.85rem;
        padding: 6px 0;
        line-height: 1.5;
    }

    .footer ul li a {
        font-size: 0.85rem;
    }

    .footer-bottom {
        margin-top: 25px;
        padding-top: 15px;
    }

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

/* Mobile Screens (576px and below) */
@media (max-width: 576px) {
    /* Container padding fix */
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .container-fluid {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    /* Navbar */
    .navbar {
        padding: 0.75rem 0;
    }

    .logo-circle {
        width: 45px;
        height: 45px;
    }

    .logo-circle img {
        width: 100%;
        height: 100%;
    }

    .brand-text {
        font-size: 13px;
    }

    .navbar-nav .nav-link {
        font-size: 0.9rem;
        margin: 0 5px;
        padding: 8px 0;
    }

    /* Hero Section */
    .hero-section {
        min-height: auto !important;
        padding: 70px 0 20px !important;
    }

    .hero-section .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .hero-content {
        text-align: center;
        padding: 0 !important;
        width: 100%;
        position: relative;
        z-index: 3;
        top: auto !important;
    }

    .hero-content h1,
    .hero-title {
        font-size: 1.3rem !important;
        line-height: 1.3;
        margin-bottom: 0.8rem !important;
        text-align: center;
        color: #ffffff;
        padding: 0 15px !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-content p,
    .hero-description {
        font-size: 0.8rem !important;
        line-height: 1.5;
        margin-bottom: 1rem !important;
        text-align: center;
        color: #ffffff;
        padding: 0 15px !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Section Titles */
    .section-title,
    .about-section-title,
    .export-process-section-title,
    .exporting-brands-section-title {
        font-size: 1.4rem;
        line-height: 1.3;
        margin-bottom: 1rem;
        padding: 0 15px !important;
    }

    .mission-vision-title {
        padding: 0 15px !important;
    }

    .section-padding {
        padding: 40px 0;
    }

    /* Mission Vision Section */
    .mission-vision-section {
        padding: 40px 0 !important;
    }

    .mission-vision-section .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .mission-vision-title {
        font-size: 1.5rem !important;
        margin-bottom: 25px !important;
        padding: 0 15px !important;
    }

    .mission-card {
        padding: 25px 20px !important;
        margin-bottom: 20px;
    }

    .mission-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .mission-icon img {
        width: 55px;
        height: 55px;
        object-fit: contain;
    }

    .mission-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .mission-card p {
        font-size: 0.85rem;
        padding: 0 10px !important;
    }

    /* Why Choose Section */
    .why-choose-about-section {
        padding: 40px 0 !important;
    }

    .why-choose-about-section .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .why-choose-about-img {
        width: 100%;
        height: auto;
        max-height: 250px;
        object-fit: contain;
        margin-bottom: 20px;
    }

    .why-choose-box {
        padding: 20px 15px !important;
        margin-top: 15px;
    }

    .why-choose-list-about li {
        font-size: 0.9rem;
        padding: 8px 0;
        padding-left: 25px;
    }

    /* Supporting Solutions Section */
    .supporting-solutions-section {
        padding: 40px 0 !important;
    }

    .supporting-solutions-section .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .solution-tabs {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        margin-bottom: 25px;
        padding: 0 15px;
    }

    .solution-tab {
        width: 100%;
        max-width: 100%;
        padding: 12px 20px;
        font-size: 0.9rem;
        border-radius: 8px;
    }

    .solution-card {
        min-height: auto;
        margin-bottom: 20px;
    }

    .solution-image {
        height: 200px;
        width: 100%;
    }

    .solution-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .solution-card h4 {
        font-size: 0.9rem;
        padding: 15px 10px !important;
    }

    /* Product Range Section */
    .product-range-section {
        padding: 40px 0 !important;
    }

    .product-range-section .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .product-range-container {
        padding: 30px 15px !important;
    }

    .product-range-grid {
        padding: 20px 0;
    }

    .product-range-item {
        min-height: 140px;
        padding: 20px 10px !important;
    }

    .product-range-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }

    .product-range-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .product-range-item h4 {
        font-size: 0.9rem;
    }

    /* Leaders Section */
    .leaders-section {
        padding: 50px 0 !important;
    }

    .leaders-section .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .leaders-header {
        margin-bottom: 28px;
        gap: 10px;
    }

    .leaders-subtitle {
        font-size: 0.98rem;
    }

    .brand-logo-card {
        min-height: 180px;
        padding: 20px 16px !important;
        margin-bottom: 15px;
    }

    .brand-logo-img {
        height: 90px;
        padding: 10px;
    }

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

    .brand-logo-name {
        font-size: 0.95rem;
    }

    /* Export Process Timeline Section */
    .export-process-timeline-section {
        padding: 40px 0 !important;
    }

    .export-process-timeline-section .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .export-timeline-wrapper {
        padding: 20px 0 40px;
    }

    .export-process-cards {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 0;
    }

    .export-process-card {
        max-width: 100%;
        width: 100%;
        padding: 40px 20px !important;
    }

    .export-process-number {
        font-size: 2.5rem;
    }

    .export-process-text {
        font-size: 0.95rem;
    }

    /* Process Steps Section */
    .process-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .process-section-header.text-center {
        align-items: center;
        text-align: center;
    }

    .process-section-header h2 {
        font-size: 1.5rem;
        font-weight: 700;
        color: #2c3e50;
        text-align: left;
        margin-bottom: 0;
        line-height: 1.3;
        padding: 0 !important;
    }

    .process-section-header.text-center h2 {
        text-align: center;
    }

    .process-section-header p {
        padding: 0 !important;
        font-size: 0.9rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
        padding: 0;
        gap: 20px;
        min-height: auto;
    }

    .process-steps::after {
        display: none;
    }

    .step-1,
    .step-2,
    .step-3,
    .step-4 {
        margin-top: 0;
    }

    .step-marker {
        display: none;
    }

    .step-number-bg {
        display: none;
    }

    .process-step {
        padding-left: 0;
        position: relative;
    }

    .step-content {
        margin-top: 0;
        left: 0 !important;
        padding-left: 0;
        position: relative;
    }

    .step-1 .step-content,
    .step-2 .step-content,
    .step-3 .step-content,
    .step-4 .step-content {
        margin-top: 0;
        left: 0;
        padding-left: 0;
    }

    .step-content h4 {
        font-size: 1rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 6px;
        width: auto;
        line-height: 1.3;
    }

    .step-content h4::before {
        content: "1. ";
    }

    .step-2 .step-content h4::before {
        content: "2. ";
    }

    .step-3 .step-content h4::before {
        content: "3. ";
    }

    .step-4 .step-content h4::before {
        content: "4. ";
    }

    .step-content p {
        font-size: 0.85rem;
        line-height: 1.6;
        color: #666;
        margin-top: 4px;
    }

    .brand-carousel-wrapper {
        padding: 0 15px;
        margin-top: 20px;
    }

    .brand-carousel-wrapper .carousel-control-prev,
    .brand-carousel-wrapper .carousel-control-next {
        display: none !important;
    }

    .brand-card {
        padding: 18px 15px;
        margin: 0 5px;
    }

    .brand-card img {
        height: 140px;
        margin-bottom: 12px;
        object-fit: contain;
        object-position: center;
    }

    .brand-card h4 {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }

    .footer {
        padding: 40px 0 15px;
    }

    .footer .row {
        gap: 25px;
    }

    .footer .col-lg-3,
    .footer .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 25px;
    }

    .footer .col-lg-3:last-child,
    .footer .col-md-6:last-child {
        margin-bottom: 0;
    }

    .footer-logo {
        margin-bottom: 15px;
    }

    .footer .logo-circle {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }

    .footer .logo-circle img {
        width: 100%;
        height: 100%;
    }

    .footer .brand-text {
        font-size: 14px;
    }

    .footer h5 {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .footer ul {
        padding: 0;
    }

    .footer ul li {
        font-size: 0.85rem;
        padding: 6px 0;
        line-height: 1.5;
    }

    .footer ul li a {
        font-size: 0.85rem;
    }

    .footer-bottom {
        margin-top: 25px;
        padding-top: 15px;
    }

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

/* ============================================
   ABOUT PAGE SPECIFIC RESPONSIVE STYLES
   ============================================ */

/* Responsive Design */
@media (max-width: 992px) {
    .mission-vision-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }

    .mission-card {
        height: 380px;
        padding: 40px 30px;
    }

    .mission-icon {
        width: 70px;
        height: 70px;
    }

    .mission-icon img {
        width: 65px;
        height: 65px;
    }

    .why-choose-about-img {
        height: 350px;
        margin-bottom: 30px;
    }

    .process-flowchart-line {
        display: none;
    }

    .process-number {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    /* Container padding */
    .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    /* Export Process Timeline Section */
    .export-process-timeline-section {
        padding: 50px 0;
    }

    .export-process-timeline-section .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .export-timeline-wrapper {
        padding: 30px 0 60px;
    }

    .export-timeline-line {
        display: none;
    }

    .export-timeline-dots {
        display: none;
    }

    .export-timeline-dot {
        display: none;
    }

    .export-process-cards {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        padding: 0;
    }

    .export-process-card {
        max-width: 100%;
        width: 100%;
        padding: 50px 25px !important;
    }

    .export-process-number {
        font-size: 3rem;
    }

    .export-process-text {
        font-size: 1.1rem;
    }

    /* Mission Vision Section */
    .mission-vision-section {
        padding: 50px 0 !important;
        min-height: auto;
    }

    .mission-vision-section .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .mission-vision-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
        text-align: center;
        padding: 0 20px !important;
    }

    .mission-card {
        height: auto;
        min-height: 320px;
        padding: 30px 25px !important;
        margin-bottom: 20px;
    }

    .mission-card h3 {
        font-size: 1.2rem;
    }

    .mission-card p {
        font-size: 0.9rem;
        padding: 0 15px !important;
    }

    /* Why Choose Section */
    .why-choose-about-section {
        padding: 50px 0;
    }

    .why-choose-about-section .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .why-choose-about-img {
        height: auto;
        max-height: 300px;
        width: 100%;
        object-fit: contain;
        margin-bottom: 25px;
    }

    .why-choose-box {
        padding: 25px 20px !important;
    }

    .why-choose-list-about li {
        font-size: 0.95rem;
        padding: 10px 0;
        padding-left: 28px;
    }

    /* Supporting Solutions Section */
    .supporting-solutions-section {
        padding: 50px 0;
    }

    .supporting-solutions-section .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .solution-tabs {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 0 20px;
    }

    .solution-tab {
        width: 100%;
        max-width: 100%;
        border-radius: 8px;
        border-bottom: none;
    }

    .solution-tab.active {
        border-bottom: none;
    }

    .solution-content {
        animation: fadeIn 0.3s ease-in-out;
    }

    .solution-card {
        min-height: 280px;
        margin-bottom: 20px;
    }

    .solution-image {
        height: 220px;
        width: 100%;
    }

    .solution-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .solution-card h4 {
        font-size: 0.95rem;
        padding: 15px 15px !important;
    }

    /* Product Range Section */
    .product-range-section {
        padding: 50px 0;
    }

    .product-range-section .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .product-range-container {
        padding: 35px 25px !important;
    }

    .product-range-item {
        min-height: 150px;
        padding: 25px 15px !important;
    }

    /* Leaders Section */
    .leaders-section {
        padding: 60px 0;
    }

    .leaders-section .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .leaders-header {
        margin-bottom: 32px;
    }

    .leaders-subtitle {
        font-size: 1.02rem;
    }

    .brand-logo-card {
        min-height: 190px;
        padding: 22px 18px !important;
        margin-bottom: 20px;
    }

    .brand-logo-img {
        height: 105px;
        padding: 12px;
    }

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

    .brand-logo-name {
        font-size: 0.98rem;
    }

    /* Export Process Section */
    .export-process-section {
        padding: 50px 0;
    }

    .export-process-timeline {
        margin-bottom: 40px;
    }

    .timeline-dot {
        width: 14px;
        height: 14px;
    }

    .process-number-card {
        min-height: 180px;
        margin-bottom: 20px;
        padding: 30px 20px;
    }

    .process-number {
        font-size: 2.8rem;
    }

    .export-process-flowchart-section {
        padding: 50px 0;
    }

    .flowchart-circle {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    /* Exporting Brands Section */
    .exporting-brands-section {
        padding: 50px 0;
    }

    .exporting-brands-section .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .exporting-brands-section p {
        padding: 0 20px !important;
        text-align: left;
        font-size: 1rem;
    }

    .exporting-brands-section-title {
        text-align: left !important;
        font-size: 1.6rem;
        padding: 0 20px !important;
        margin-bottom: 15px;
    }

    .exporting-brands-section .brand-carousel-wrapper {
        padding: 0 20px;
        margin-top: 1.5rem;
    }

    .exporting-brands-section .brand-carousel-wrapper .carousel-control-prev,
    .exporting-brands-section .brand-carousel-wrapper .carousel-control-next {
        width: 45px;
        height: 45px;
        display: none !important;
    }

    .exporting-brands-section .brand-card {
        padding: 35px 20px !important;
        margin: 0 0 20px 0 !important;
    }

    .exporting-brands-section .brand-card img {
        height: 180px;
        width: 100%;
        object-fit: contain;
    }

    .exporting-brands-section .brand-card h4 {
        font-size: 1.05rem;
        text-align: center;
    }

    .exporting-brands-section .row.g-4 > * {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0 10px;
    }
}

@media (max-width: 576px) {
    .export-process-timeline-section {
        padding: 50px 0;
    }

    .export-timeline-wrapper {
        padding: 30px 0 60px;
    }

    .export-timeline-dots {
        display: none;
    }

    .export-timeline-dot {
        display: none;
    }

    .export-process-number {
        font-size: 2.5rem;
    }

    .export-process-text {
        font-size: 1rem;
    }

    .mission-vision-section {
        padding: 50px 0;
        min-height: auto;
    }

    .mission-vision-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
        text-align: center;
    }

    .mission-card {
        height: auto;
        min-height: 320px;
        padding: 30px 20px;
        margin-bottom: 20px;
    }

    .mission-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .mission-icon img {
        width: 55px;
        height: 55px;
    }

    .mission-card h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .mission-card p {
        font-size: 0.9rem;
    }

    .why-choose-about-section {
        padding: 50px 0;
    }

    .why-choose-about-img {
        height: 250px;
    }

    .why-choose-box {
        padding: 20px 18px;
    }

    .why-choose-list-about li {
        font-size: 0.95rem;
        padding: 8px 0;
        padding-left: 25px;
    }

    .supporting-solutions-section {
        padding: 50px 0;
    }

    .solution-tabs {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        margin-bottom: 30px;
    }

    .solution-tab {
        width: 100%;
        max-width: 350px;
        padding: 12px 25px;
        font-size: 0.9rem;
        border-radius: 8px;
    }

    .solution-content {
        animation: fadeIn 0.3s ease-in-out;
    }

    .solution-card {
        min-height: 280px;
    }

    .solution-image {
        height: 200px;
    }

    .solution-card h4 {
        font-size: 0.95rem;
        padding: 15px 12px;
    }

    .product-range-section {
        padding: 50px 0;
    }

    .product-range-container {
        padding: 30px 20px;
    }

    .product-range-grid {
        padding: 30px 0;
    }

    .product-range-item {
        min-height: 150px;
        padding: 20px 15px;
    }

    .product-range-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .product-range-item h4 {
        font-size: 1rem;
    }

    .leaders-section {
        padding: 70px 0;
    }

    .brand-logo-card {
        min-height: 195px;
        padding: 24px 20px;
    }

    .brand-logo-img {
        height: 110px;
        padding: 12px;
    }

    .brand-logo-img img {
        max-width: 180px;
    }

    .brand-logo-name {
        font-size: 0.98rem;
    }

    .export-process-section {
        padding: 50px 0;
    }

    .export-process-timeline {
        margin-bottom: 40px;
        display: none;
    }

    .process-number-card {
        min-height: 180px;
        padding: 25px 18px;
        margin-bottom: 20px;
    }

    .process-number {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }

    .process-number-card h4 {
        font-size: 1rem;
    }

    .export-process-flowchart-section {
        padding: 50px 0;
    }

    .flowchart-circle {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .flowchart-step h4 {
        font-size: 1rem;
    }

    .flowchart-step p {
        font-size: 0.9rem;
    }

    /* Exporting Brands Section */
    .exporting-brands-section {
        padding: 40px 0 !important;
    }

    .exporting-brands-section .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .exporting-brands-section p {
        padding: 0 15px !important;
        text-align: left;
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .exporting-brands-section-title {
        text-align: left !important;
        font-size: 1.4rem !important;
        padding: 0 15px !important;
        margin-bottom: 15px !important;
    }

    .exporting-brands-section .brand-carousel-wrapper {
        padding: 0 !important;
        margin-top: 1.5rem;
    }

    .exporting-brands-section .brand-carousel-wrapper .carousel-control-prev,
    .exporting-brands-section .brand-carousel-wrapper .carousel-control-next {
        display: none !important;
    }

    .exporting-brands-section .brand-card {
        padding: 25px 15px !important;
        margin: 0 0 20px 0 !important;
        min-height: auto;
        width: 100%;
    }

    .exporting-brands-section .brand-card img {
        height: 150px;
        width: 100%;
        object-fit: contain;
        margin-bottom: 15px;
    }

    .exporting-brands-section .brand-card h4 {
        font-size: 0.95rem;
        text-align: center;
    }

    .exporting-brands-section .row.g-4 {
        margin: 0;
    }

    .exporting-brands-section .row.g-4 > * {
        padding: 0 15px;
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 0;
    }

    /* Footer */
    .footer {
        padding: 40px 0 15px;
    }

    .footer .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .footer .row {
        gap: 25px;
    }

    .footer .col-lg-3,
    .footer .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 25px;
        padding: 0 15px;
    }

    .footer .col-lg-3:last-child,
    .footer .col-md-6:last-child {
        margin-bottom: 0;
    }

    .footer-logo {
        margin-bottom: 15px;
    }

    .footer .logo-circle {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }

    .footer .logo-circle img {
        width: 100%;
        height: 100%;
    }

    .footer .brand-text {
        font-size: 14px;
    }

    .footer h5 {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .footer ul {
        padding: 0;
    }

    .footer ul li {
        font-size: 0.85rem;
        padding: 6px 0;
        line-height: 1.5;
    }

    .footer ul li a {
        font-size: 0.85rem;
    }

    .footer-bottom {
        margin-top: 25px;
        padding-top: 15px;
    }

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

    /* General Image Fixes */
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    /* Row and Column Padding Fixes */
    .row {
        margin-left: -15px;
        margin-right: -15px;
    }

    .row > * {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Fix hero description padding on mobile */
    .hero-description {
        padding: 0 15px !important;
    }

    /* Override inline styles for mobile */
    .hero-content h1[style*="padding"] {
        padding: 0 15px !important;
    }

    .hero-description[style*="padding"] {
        padding: 0 15px !important;
    }
}

