/* --- Root Variables: Define primary colors for easy theme changes --- */
:root {
    --primary-blue: #004d99; /* Deep blue for primary elements */
    --secondary-gold: #ffc107; /* Golden yellow for accents and CTAs */
    --light-gray: #f8f9fa; /* Light background for sections */
    --medium-gray: #e9ecef; /* Slightly darker gray for borders/separators */
    --dark-text: #000000; /* Changed to pure black for high readability */
    --text-light: #000000; /* Changed to pure black for high readability */
}

/* --- Universal Box-Sizing: Ensures consistent element sizing --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* --- Body Styles: Sets default font, text color, line height, and background --- */
body {
    font-family: 'Poppins', sans-serif; /* Primary font for body text */
    color: var(--dark-text); /* Ensure body text is pure black */
    line-height: 1.7; /* Slightly increased line-height for better readability */
    background-color: #fff;
    scroll-behavior: smooth; /* Smooth scrolling for anchor links */
    font-size: 1.05rem; /* Increased base font size for better readability */
}

/* --- Main Content Margin: Prevents content from being hidden behind sticky header --- */
main {
    margin-top: 100px; /* Adjusted for potentially taller header due to font size changes */
}

/* --- Container Class: Centers content and sets max width for readability --- */
.container {
    max-width: 1500px; /* Reduced max-width for better content flow on very large screens */
    margin: 0 auto; /* Center the container */
    padding: 0 20px; /* Increased horizontal padding for better spacing */
}

/* --- Typography: Defines font families, sizes, and weights for headings and paragraphs --- */
h1, h2, h3 {
    font-family: 'Montserrat', sans-serif; /* Heading font */
    font-weight: 700;
    color: var(--dark-text); /* Ensure headings are pure black */
}
h1 { font-size: 3.2rem; margin-bottom: 25px; } /* Slightly larger */
h2 { font-size: 2.5rem; margin-bottom: 35px; } /* Slightly larger */
h3 { font-size: 2rem; margin-bottom: 20px; } /* Slightly larger */
p {
    font-size: 1.3rem; /* INCREASED: Paragraph font size for better readability */
    line-height: 1.6; /* Adjusted line-height for paragraph text */
    margin-bottom: 20px; /* Adjusted margin-bottom for paragraph text */
    color: var(--dark-text); /* Ensure paragraphs are pure black */
}

/* --- Buttons & Links: Styles for primary call-to-action buttons and navigation links --- */
.cta-button {
    display: inline-block;
    background-color: var(--primary-blue);
    color: #fff;
    padding: 14px 30px; /* Increased padding */
    border-radius: 50px; /* Pill-shaped button */
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.3rem; /* Consistent with base font size */
}
.cta-button:hover {
    transform: scale(1.05); /* Subtle scale-up on hover */
    box-shadow: 0 6px 20px rgba(0, 77, 153, 0.4); /* More prominent shadow on hover */
    background-color: #003a73; /* Darker blue on hover */
}

/* --- Header Button Specific Styles (HIGH SPECIFICITY) --- */
.header-nav-button {
    padding: 10px 22px; /* Adjusted padding */
    margin-left: 20px; /* Adjusted margin */
    font-size: 1rem;
    font-weight: 700;
}

.cta-button.header-nav-button:first-of-type {
    background-color: var(--secondary-gold);
    color: var(--dark-text);
}
.cta-button.header-nav-button:first-of-type:hover {
    background-color: #ffda6a;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    color: var(--dark-text);
}
.cta-button.header-nav-button:last-of-type {
    color: #000000;
}
.cta-button.header-nav-button:last-of-type:hover {
    background-color: #003a73;
    box-shadow: 0 4px 15px rgba(0, 77, 153, 0.3);
    color: #fff;
}

/* --- Header & Navigation: Styles for the sticky header and its navigation --- */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    z-index: 1000;
    padding: 25px 0; /* Increased padding for a taller header */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); /* More prominent shadow */
}
.sticky-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo img.header-logo {
    height: 140px; /* Adjusted logo height */
    width: auto;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 30px; /* Increased space */
}
.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
}
.main-nav li a {
    text-decoration: none;
    color: var(--dark-text); /* Ensure nav links are pure black */
    font-weight: 600; /* Increased font-weight for better visibility */
    margin: 0 18px; /* Adjusted margin */
    transition: color 0.3s ease;
    font-size: 1.05rem; /* Consistent with base font size */
}
.main-nav li a:not(.header-nav-button):hover {
    color: var(--primary-blue);
}
.hamburger-menu {
    display: none; /* Hidden by default, shown on mobile */
    font-size: 2rem; /* Larger hamburger icon */
    cursor: pointer;
    color: var(--primary-blue);
}

/* --- Search Bar in Header --- */
.search-bar {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border-radius: 50px;
    padding: 8px 18px; /* Increased padding */
    border: 5px solid var(--secondary-gold); /* Adjusted border */
}
.search-input {
    border: none;
    background: transparent;
    outline: none;
    padding: 10px 0;
    font-size: 1.05rem; /* Consistent with base font size */
    color: var(--dark-text); /* Changed to pure black */
    width: 200px; /* Increased default width */
    transition: width 0.3s ease;
}
.search-input:focus {
    width: 280px; /* Expand more on focus */
}
.search-icon {
    background: none;
    border: none;
    color: var(--primary-blue);
    font-size: 1.4rem; /* Larger icon */
    cursor: pointer;
    padding-left: 12px;
}

/* --- Hero Banner --- */
.hero-banner {
    background-color: var(--primary-blue);
    color: #fff;
    padding: 180px 0 120px; /* Adjusted padding */
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 750px; /* Increased min-height */
    flex-direction: column;
}
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 77, 153, 0.6); /* Slightly darker overlay */
    z-index: 1;
}
.hero-banner .hero-content {
    position: relative;
    z-index: 2;
}
.hero-banner::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px; /* Increased height */
    background: linear-gradient(to top, #fff, transparent);
    z-index: 3;
}

/* --- Sub-page Hero Banner --- */
.hero-banner-sub {
    background-color: rgba(0, 77, 153, 0.6); /* Consistent darker overlay */
    color: #fff;
    padding: 160px 0 80px; /* Adjusted padding */
    text-align: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 650px; /* Increased min-height */
    flex-direction: column;
    background-blend-mode: multiply;
}
.hero-banner h1, .hero-banner p,
.hero-banner-sub h1, .hero-banner-sub p {
    position: relative;
    z-index: 2;
    color: #fff;
}
.hero-banner::after, .hero-banner-sub::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px; /* Increased height */
    background: linear-gradient(to top, #fff, transparent);
    z-index: 1;
}

/* --- Stats Counter Section --- */
.stats-section {
    background-color: #fff;
    padding: 70px 0; /* Adjusted padding */
    text-align: center;
}
.stats-section .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px; /* Added gap for better spacing */
}
.stat-card {
    text-align: center;
    padding: 25px; /* Increased padding */
    border-radius: 10px; /* Slightly more rounded */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1; /* Allow cards to grow and shrink */
    min-width: 220px; /* Minimum width for flex items */
}
.stat-card:hover {
    transform: translateY(-8px); /* More pronounced lift */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15); /* More prominent shadow */
}
.stat-card h2 {
    font-size: 3.5rem; /* Larger font size */
    color: var(--primary-blue);
    font-weight: 700;
}
.stat-card p {
    font-size: 1.05rem; /* Consistent with base font size */
    font-weight: 600;
    text-transform: uppercase;
    color: var(--dark-text); /* Ensure text is pure black */
}

/* --- General Section Styling --- */
section {
    padding: 90px 0; /* Increased general section padding */
}

/* --- Virtual Warehouse Section --- */
.virtual-warehouse-section {
    background-color: var(--light-gray);
}
.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px; /* Increased gap */
    align-items: center;
}
.column-image img {
    width: 100%;
    height: auto;
    border-radius: 10px; /* Slightly more rounded */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15); /* More prominent shadow */
}

/* --- Product Categories & Other Card Grids --- */
.product-categories-section, .benefits-section, .team-section, .exporter-directory-section, .stories-section {
    text-align: center;
}
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* Adjusted minmax for better scaling */
    gap: 35px; /* Increased gap */
    margin-top: 45px; /* Adjusted margin */
}
@media (min-width: 1100px) {
    .product-categories-section .card-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}
.product-card, .team-card, .benefit-card, .exporter-card {
    background-color: #fff;
    padding: 45px 25px; /* Increased padding */
    border-radius: 10px; /* Slightly more rounded */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08); /* Adjusted shadow */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover, .team-card:hover, .benefit-card:hover, .exporter-card:hover {
    transform: translateY(-12px); /* More pronounced lift effect */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18); /* Larger shadow on hover */
}
.product-card i, .benefit-card i {
    font-size: 3.5rem; /* Larger icon size */
    color: var(--secondary-gold);
    margin-bottom: 25px; /* Adjusted margin */
    transition: transform 0.3s ease;
}
.product-card:hover i, .benefit-card:hover i {
    transform: scale(1.2); /* More pronounced icon scale on hover */
}

.team-card img {
    width: 100%;
    height: auto;
    max-width: 160px; /* Slightly larger image */
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
}
.team-card h3 {
    color: var(--dark-text); /* Ensure pure black */
}
.team-card p {
    color: var(--dark-text); /* Ensure pure black */
    font-size: 0.95rem; /* Slightly smaller for description */
}

/* --- Testimonials Section --- */
.testimonials-section {
    background-color: var(--primary-blue);
    color: #fff;
    text-align: center;
    padding: 90px 0; /* Adjusted padding */
}
.testimonials-section h2 {
    color: #fff;
    margin-bottom: 50px; /* Increased margin */
}
.testimonial-slider {
    display: flex;
    justify-content: center;
    gap: 35px; /* Increased gap */
    flex-wrap: wrap;
}
.testimonial-card {
    background-color: rgba(255, 255, 255, 0.15); /* Slightly less transparent */
    border-left: 5px solid var(--secondary-gold); /* Thicker accent border */
    padding: 35px; /* Increased padding */
    border-radius: 10px; /* Slightly more rounded */
    max-width: 480px; /* Slightly wider */
    text-align: left;
}
.testimonial-card p {
    font-style: italic;
    margin-bottom: 25px; /* Adjusted margin */
    color: #fff; /* Ensure white text */
    font-size: 1.1rem; /* INCREASED: Consistent with new paragraph base font size */
}
.testimonial-card h4 {
    font-weight: 600; /* Bolder */
    color: #fff; /* Ensure white text */
    font-size: 1.1rem; /* Slightly larger */
}
.testimonial-card .company-name {
    color: var(--secondary-gold);
}

/* --- About Us Page Specific Styles --- */
.about-content {
    background-color: var(--light-gray);
    padding: 90px 0 50px; /* Adjusted padding */
}
.about-content .container {
    display: flex;
    justify-content: space-around;
    gap: 35px; /* Increased gap */
    flex-wrap: wrap;
}
.about-card {
    flex: 1;
    min-width: 300px; /* Slightly wider cards */
    max-width: 380px; /* Slightly wider cards */
    background-color: #fff;
    padding: 35px; /* Increased padding */
    border-radius: 15px; /* More rounded */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12); /* More pronounced shadow */
    text-align: center;
    border-top: 6px solid var(--primary-blue); /* Thicker top accent border */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-card:hover {
    transform: translateY(-10px); /* More pronounced lift */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18); /* More prominent shadow */
}
.about-icon {
    font-size: 4rem; /* Larger icons */
    color: var(--primary-blue);
    margin-bottom: 30px; /* Adjusted margin */
}
.about-card h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}
.about-card p {
    color: var(--dark-text); /* Ensure pure black */
    font-size: 1.1rem; /* INCREASED: Consistent with new paragraph base font size */
}

.global-map-placeholder {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 40px; /* Adjusted margin */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* --- Services Page Specific Styles (Redesigned) --- */
.services-section-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); /* Adjusted minmax */
    gap: 35px; /* Increased gap */
    margin-top: 45px; /* Adjusted margin */
}
.service-card-new {
    background-color: #fff;
    padding: 40px; /* Increased padding */
    border-radius: 15px; /* More rounded */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    text-align: center;
    border-bottom: 5px solid var(--secondary-gold); /* Thicker accent border */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
}
.service-card-new i {
    font-size: 4rem; /* Larger icons */
    color: var(--primary-blue);
    margin-bottom: 25px;
}
.service-card-new h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}
.service-card-new p {
    color: var(--dark-text); /* Ensure pure black */
    font-size: 1.1rem; /* INCREASED: Consistent with new paragraph base font size */
}

/* --- Pricing Section (Redesigned with Cards) --- */
.price-display-area {
    position: relative;
    height: 60px; /* Increased height */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-top: 8px; /* Adjusted margin */
    margin-bottom: 25px; /* Adjusted margin */
}
.price-display-area .price {
    position: absolute;
    font-size: 2.5rem; /* Larger font size */
    font-weight: 700;
    color: var(--secondary-gold);
    filter: blur(10px);
    opacity: 1;
    transform: scale(1);
    transition: all 0.4s ease-in-out;
    white-space: nowrap;
    pointer-events: auto;
    text-shadow: 0 0 8px rgba(255, 193, 7, 0.6); /* More pronounced glow */
}
.price-display-area .enquire-price-btn {
    position: absolute;
    background-color: var(--primary-blue);
    color: #fff;
    padding: 12px 25px; /* Increased padding */
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease-in-out;
    white-space: nowrap;
    pointer-events: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); /* Adjusted shadow */
    font-size: 1.05rem; /* Consistent with base font size */
}
.price-display-area:hover .price {
    opacity: 0;
    filter: blur(12px); /* Increased blur */
    transform: scale(1.15); /* More pronounced grow */
    pointer-events: none;
}
.price-display-area:hover .enquire-price-btn {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    background-color: #003a73;
    box-shadow: 0 8px 20px rgba(0, 77, 153, 0.4);
}
.pricing-section {
    background-color: var(--light-gray);
    padding: 90px 0; /* Adjusted padding */
    text-align: center;
}
.pricing-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); /* Adjusted minmax for wider cards */
    gap: 35px; /* Increased gap */
    margin-top: 50px; /* Adjusted margin */
    justify-content: center;
    align-items: flex-start;
}
.pricing-section .container {
    padding: 0 20px; /* Consistent padding */
}
.pricing-card {
    background-color: #fff;
    border-radius: 18px; /* More rounded */
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1); /* Adjusted shadow */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 35px; /* Adjusted padding */
    position: relative;
    border: 3px solid transparent; /* Thicker default border */
}
.pricing-card:hover {
    transform: translateY(-18px); /* More pronounced lift effect */
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2); /* More prominent shadow */
}
.pricing-card .plan-header {
    background-color: var(--primary-blue);
    color: #fff;
    padding: 30px 25px; /* Increased padding */
    width: 100%;
    text-align: center;
    border-bottom-left-radius: 18px; /* Consistent rounded corners */
    border-bottom-right-radius: 18px;
    margin-bottom: 25px; /* Adjusted margin */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.pricing-card .plan-header h3 {
    margin: 0;
    font-size: 2rem; /* Larger font size */
    color: #fff;
}
.pricing-card .plan-header .price {
    display: block;
    font-size: 2.8rem; /* Larger font size */
    font-weight: 700;
    color: var(--secondary-gold);
    margin-top: 8px; /* Adjusted margin */
}
.pricing-card .features-list {
    list-style: none;
    padding: 0 35px; /* Increased padding */
    margin-bottom: 35px; /* Adjusted margin */
    flex-grow: 1;
    width: 100%;
    text-align: left;
}
.pricing-card .features-list li {
    padding: 12px 0; /* Increased padding */
    border-bottom: 1px dashed var(--medium-gray);
    display: flex;
    align-items: flex-start;
    gap: 18px; /* Increased gap */
    font-size: 1.1rem; /* INCREASED: Consistent with new paragraph base font size */
    color: var(--dark-text); /* Ensure pure black */
}
.pricing-card .features-list li:last-child {
    border-bottom: none;
}
.pricing-card .features-list li .service-tag {
    display: none;
}
.pricing-card .features-list li .icon-yes {
    color: #28a745;
    font-size: 1.3rem; /* Larger icon */
    flex-shrink: 0;
    margin-top: 3px;
}
.pricing-card .features-list li .icon-no {
    color: #dc3545;
    font-size: 1.3rem; /* Larger icon */
    flex-shrink: 0;
    margin-top: 3px;
}
.pricing-card .features-list li.excluded {
    opacity: 0.7; /* Less dim */
}
.pricing-buy-button {
    background-color: var(--secondary-gold);
    color: var(--dark-text);
    padding: 14px 35px; /* Increased padding */
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem; /* Slightly larger */
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    width: 85%; /* Wider button */
    margin-top: auto;
}
.pricing-buy-button:hover {
    background-color: #ffda6a;
    transform: scale(1.1); /* More pronounced scale */
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.5); /* Larger shadow */
}
.pricing-card.popular {
    transform: scale(1.07); /* More pronounced scale */
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25); /* More prominent shadow */
    border-color: var(--secondary-gold);
    z-index: 5;
}
.pricing-card.popular .plan-header {
    background-color: var(--secondary-gold);
    color: var(--dark-text);
}
.pricing-card.popular .plan-header h3 {
    color: var(--dark-text);
}
.pricing-card.popular .plan-header .price {
    color: var(--primary-blue);
}
.pricing-card.popular::before {
    content: 'RECOMMENDED';
    position: absolute;
    top: -25px; /* Adjusted position */
    left: 50%;
    transform: translateX(-50%) rotate(-5deg);
    background-color: #28a745;
    color: #fff;
    padding: 6px 18px; /* Adjusted padding */
    border-radius: 6px; /* Slightly more rounded */
    font-size: 0.9rem; /* Slightly larger */
    font-weight: 700;
    letter-spacing: 0.8px; /* Adjusted spacing */
    z-index: 10;
    box-shadow: 0 6px 18px rgba(0,0,0,0.35); /* More prominent shadow */
}

/* --- Timeline Styling (Services, Partner pages) --- */
.timeline-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Adjusted minmax */
    gap: 35px; /* Increased gap */
    margin-top: 45px; /* Adjusted margin */
}
.timeline-item {
    position: relative;
    padding: 25px 0 25px 50px; /* Increased padding */
    border-left: 3px solid var(--primary-blue); /* Thicker vertical line */
}
.timeline-item::before {
    content: '';
    position: absolute;
    top: 25px; /* Adjusted position */
    left: -12px; /* Adjusted position */
    width: 24px; /* Larger circle */
    height: 24px;
    background-color: var(--primary-blue);
    border-radius: 50%;
}
.timeline-item h3 {
    margin-top: 0;
    color: var(--dark-text); /* Ensure pure black */
}
.timeline-item p {
    color: var(--dark-text); /* Ensure pure black */
    font-size: 1.1rem; /* INCREASED: Consistent with new paragraph base font size */
}
.timeline-item .timeline-icon {
    position: absolute;
    left: -3px; /* Adjusted to align with thicker border */
    top: 30px; /* Adjusted position */
    transform: translate(-50%, -50%);
    color: #fff;
    background-color: var(--primary-blue);
    width: 35px; /* Larger icon container */
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem; /* Larger icon font size */
}
.journey-section .timeline-container {
    border-left: none;
    padding-left: 0;
}
.journey-section .timeline-item {
    padding: 0;
    border-left: none;
    text-align: center;
}
.journey-section .timeline-item::before {
    display: none;
}
.journey-section .timeline-icon {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin-bottom: 18px; /* Adjusted margin */
    width: 55px; /* Larger icon container */
    height: 55px;
    font-size: 1.6rem; /* Larger icon font size */
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15); /* More prominent shadow */
}
.journey-section .timeline-item:nth-child(even) .timeline-icon {
    background-color: var(--secondary-gold);
}

/* --- CTA Section --- */
.cta-section {
    background-color: var(--primary-blue);
    color: #fff;
    padding: 70px 0; /* Adjusted padding */
    text-align: center;
}
.cta-section h2 {
    color: #fff;
}
.cta-section a.cta-button {
    background-color: var(--secondary-gold);
    color: var(--dark-text);
}
.cta-section a.cta-button:hover {
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4); /* Adjusted shadow */
    background-color: #ffca2c;
}

/* --- Exporter Directory Page Specific Styles --- */
.exporter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* Adjusted minmax */
    gap: 35px; /* Increased gap */
}
.exporter-card {
    padding: 25px; /* Increased padding */
    border-radius: 10px; /* Slightly more rounded */
}
.exporter-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 18px; /* Adjusted margin */
    border-radius: 10px; /* Slightly more rounded */
    box-shadow: 0 4px 15px rgba(0,0,0,0.08); /* Adjusted shadow */
}
.exporter-card h3 {
    color: var(--dark-text); /* Ensure pure black */
}
.exporter-card .category, .exporter-card .status {
    font-size: 0.95rem; /* Consistent with base font size */
    color: var(--dark-text); /* Ensure pure black */
    margin: 8px 0; /* Adjusted margin */
}
.exporter-card .view-profile-btn {
    display: inline-block;
    margin-top: 18px; /* Adjusted margin */
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    padding: 10px 18px; /* Adjusted padding */
    border: 2px solid var(--primary-blue); /* Thicker border */
    border-radius: 50px;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 1rem; /* Slightly larger */
}
.exporter-card .view-profile-btn:hover {
    background-color: var(--primary-blue);
    color: #fff;
    text-decoration: none;
}

/* --- Success Stories Page Specific Styles --- */
.stories-section {
    background-color: var(--light-gray);
    padding: 90px 0; /* Adjusted padding */
}
.story-card {
    display: flex;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 45px; /* Adjusted margin */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
.story-image {
    flex: 1;
}
.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.story-content {
    flex: 1.5;
    padding: 35px; /* Increased padding */
    text-align: left;
}
.story-content h3 {
    color: var(--primary-blue);
}
.story-content p {
    color: var(--dark-text); /* Ensure pure black */
    font-size: 1.1rem; /* INCREASED: Consistent with new paragraph base font size */
}
.story-content .company-info {
    font-style: italic;
    color: var(--dark-text); /* Changed to pure black */
    font-size: 0.95rem; /* Consistent */
    margin-bottom: 18px; /* Adjusted margin */
}
.story-content .country-flag {
    margin-top: 25px; /* Adjusted margin */
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px; /* Increased gap */
    color: var(--dark-text); /* Ensure pure black */
    font-size: 1rem; /* Consistent */
}
.story-content .country-flag img {
    border: 1px solid #ddd;
}

/* --- Become a Partner Page Specific Styles --- */
.inquiry-form-section {
    background-color: var(--light-gray);
    padding: 90px 0; /* Adjusted padding */
    text-align: center;
}
#partner-form {
    max-width: 650px; /* Slightly wider form */
    margin: 0 auto;
    text-align: left;
    background-color: #fff;
    padding: 45px; /* Increased padding */
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
.form-group {
    margin-bottom: 22px; /* Adjusted margin */
}
.form-group label {
    display: block;
    margin-bottom: 10px; /* Adjusted margin */
    font-weight: 600;
    color: var(--dark-text); /* Ensure pure black */
    font-size: 1.3rem; /* Consistent with base font size */
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 14px; /* Increased padding */
    border: 1px solid #ccc;
    border-radius: 5px; /* Slightly more rounded */
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    color: var(--dark-text); /* Ensure input text is pure black */
    font-size: 1rem; /* Consistent with base font size */
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--primary-blue);
    outline: none;
    box-shadow: 0 0 8px rgba(0, 77, 153, 0.3); /* More prominent shadow */
}
#partner-form .cta-button {
    width: 100%;
}

/* --- FAQ Page Specific Styles --- */
.faq-section {
    background-color: var(--light-gray);
    padding-bottom: 0;
}
.faq-accordion {
    max-width: 850px; /* Slightly wider accordion */
    margin: 0 auto;
}
.faq-item {
    border: 1px solid var(--medium-gray);
    border-radius: 10px; /* Slightly more rounded */
    margin-bottom: 18px; /* Adjusted margin */
    overflow: hidden;
}
.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px; /* Increased padding */
    cursor: pointer;
    background-color: #fff;
    font-weight: 600;
    transition: background-color 0.3s ease;
    color: var(--primary-blue);
    font-size: 1.1rem; /* Slightly larger */
}
.faq-header:hover {
    background-color: #f5f5f5; /* Slightly lighter hover */
}
.faq-content {
    background-color: var(--light-gray);
    max-height: 0;
    overflow: hidden;
    padding: 0 22px; /* Consistent padding */
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-content p {
    margin: 0 0 22px 0; /* Adjusted margin */
    color: var(--dark-text); /* Ensure pure black */
    font-size: 1.1rem; /* INCREASED: Consistent with new paragraph base font size */
}
.toggle-icon {
    transition: transform 0.3s ease;
    color: var(--primary-blue);
    font-size: 1.2rem; /* Larger icon */
}
.faq-header .fa-minus {
    transform: rotate(180deg);
}

/* --- FAQ Accordion Styles --- */
/* Ensure the content is hidden by default and handles overflow */
.faq-accordion .faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
    padding-top: 0;
    padding-bottom: 0;
}

/* Style for active item to show content */
.faq-accordion .faq-item.active .faq-content {
    max-height: 500px; /* Adjust this value if your answers are very long */
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* Add transition to the toggle icon for a smooth spin */
.faq-accordion .faq-item .toggle-icon i {
    transition: transform 0.3s ease-in-out;
}

/* Icon transformation for active state */
.faq-accordion .faq-item.active .toggle-icon i {
    transform: rotate(45deg);
}
/* --- FAQ Accordion Styles --- */
/* Ensure the content is hidden by default and handles overflow */
.faq-accordion .faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
    padding-top: 0;
    padding-bottom: 0;
}

/* Style for active item to show content */
.faq-accordion .faq-item.active .faq-content {
    max-height: 500px; /* Adjust this value if your answers are very long */
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* Add transition to the toggle icon for a smooth spin */
.faq-accordion .faq-item .toggle-icon i {
    transition: transform 0.3s ease-in-out;
}

    /* Icon transformation for active state */
.faq-accordion .faq-item.active .toggle-icon i {
    transform: rotate(45deg);
}

/* --- Contact Page Specific Styles --- */
.contact-section {
    padding-bottom: 50px; /* Adjusted padding */
}
.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px; /* Increased gap */
    align-items: flex-start;
}
.contact-info-card {
    background-color: var(--primary-blue);
    color: #fff;
    padding: 45px; /* Increased padding */
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
.contact-info-card h3 {
    margin-bottom: 25px; /* Adjusted margin */
    color: #fff;
}
.contact-info-card p {
    color: #fff; /* Ensure white text */
    font-size: 2rem; /* INCREASED: Consistent with new paragraph base font size */
}
.contact-info-card .contact-detail-large {
    font-size: 1.4rem; /* Larger font size */
    font-weight: bold;
    color: #fff;
    margin-bottom: 12px; /* Adjusted margin */
    display: block;
}
.contact-info-card a {
    color: #fff;
    text-decoration: none;
}
.contact-info-card p.contact-detail-large a {
    display: inline-block;
    background-color: var(--primary-blue);
    color: #fff;
    padding: 10px 18px; /* Increased padding */
    border-radius: 25px; /* More rounded */
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    margin-top: 8px; /* Adjusted margin */
    margin-left: 12px; /* Adjusted margin */
    font-size: 1.5rem; /* Consistent with base font size */
}
.contact-info-card p.contact-detail-large a:hover {
    background-color: var(--secondary-gold); /* Changed to gold on hover */
    transform: translateY(-3px); /* More pronounced lift effect */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25); /* More prominent shadow */
}
.contact-info-card a:hover {
    text-decoration: underline;
}
/* Styling for the new location section */
.contact-location-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem; /* Space between the maps and the address card */
}

/* Wrapper to make the iframes responsive */
.map-embed-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    border-radius: 12px;
    overflow: hidden; /* Ensures the border-radius is applied to the iframe */
}

.map-embed-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Additional styling for the address card to match the existing contact info card */
.address-card {
    /* Assuming the .contact-info-card has a box-shadow and padding, this ensures consistency */
    padding: 2rem;
    background-color: #004d99; /* Or a color that matches your design */
    border-radius: 12px;
    height: 94%;
}
/* --- 404 Page Specific Styles --- */
.body-404 {
    background-color: var(--primary-blue);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}
.container-404 h1 {
    font-size: 9rem; /* Larger font size */
    margin-bottom: 0;
    line-height: 1;
}
.container-404 h2 {
    font-size: 3.5rem; /* Larger font size */
    margin-bottom: 25px; /* Adjusted margin */
}
.container-404 p {
    max-width: 550px; /* Slightly wider */
    margin: 0 auto 35px auto; /* Adjusted margin */
    color: #fff; /* Ensure white text */
    font-size: 1.15rem; /* INCREASED: Slightly larger for 404 page readability */
}
.container-404 .cta-button {
    font-size: 1.1rem; /* Slightly larger */
}

/* --- Floating WhatsApp Button: Fixed position, always visible --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366; /* WhatsApp green */
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 2.5rem;
    line-height: 60px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 211, 102, 0.4);
}

/* --- Footer: Enhanced with more links and prominent buttons --- */
.enhanced-footer {
    background-color: var(--primary-blue); /* Consistent blue background */
    color: #fff; /* White text for contrast */
    padding: 3.5rem 0 2rem; /* Adjusted padding (56px top, 32px bottom) for smaller overall size using rem */
    text-align: center; /* Center align footer content by default */
    font-family: 'Poppins', sans-serif; /* Ensure consistent font */
    font-size: 1.05rem; /* Consistent with body base font size */
}

/* Base font size for all text elements within the footer */
.enhanced-footer p,
.enhanced-footer ul li,
.enhanced-footer .footer-about h3,
.enhanced-footer .footer-links-group h4,
.enhanced-footer .footer-contact h4,
.enhanced-footer .footer-social h3 { /* Using h3 for "Follow Us On" */
    font-size: 1.1rem; /* INCREASED: Consistent with new paragraph base font size */
    line-height: 1.6;
    color: #fff; /* Ensure all text is white */
}

/* Highlight footer headings */
.enhanced-footer .footer-about h3,
.enhanced-footer .footer-links-group h4,
.enhanced-footer .footer-contact h4,
.enhanced-footer .footer-social h3 { /* Using h3 for "Follow Us On" */
    font-weight: 700;
    font-size: 1.5rem; /* Adjusted heading size for desktop */
    margin-bottom: 1.2rem; /* Adjusted spacing below headings (19.2px) */
    font-family: 'Montserrat', sans-serif;
}

/* Styling for ALL links within the footer, excluding buttons */
.enhanced-footer a:not(.cta-button) {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: color 0.3s ease;
    display: block;
    padding: 0.4rem 0; /* Adjusted vertical padding (6.4px) */
    font-size: 1.1rem; /* INCREASED: Consistent with new paragraph base font size */
}
.enhanced-footer a:not(.cta-button):hover {
    color: var(--secondary-gold);
}

/* Ensure footer CTA buttons also get the new font size and adjust padding */
.enhanced-footer .cta-button {
    font-size: 1.05rem; /* Adjusted for consistency */
    padding: 0.8rem 1.2rem; /* Adjusted padding (12.8px 19.2px) */
    background-color: var(--secondary-gold);
    color: var(--dark-text);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    border-radius: 50px;
}
.enhanced-footer .cta-button:hover {
    background-color: #ffda6a;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

/* Footer content grid for responsive layout */
.enhanced-footer .footer-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* Adjusted minmax for slightly larger columns */
    gap: 1.8rem; /* Increased spacing between grid items (28.8px) */
    padding-bottom: 2.2rem; /* Space above footer-bottom content (35.2px) */
    border-bottom: 1px solid rgba(255, 255, 255, 0.15); /* Slightly more prominent separator */
    margin-bottom: 1.8rem; /* Space below separator (28.8px) */
    text-align: left;
}
.enhanced-footer .footer-about {
    text-align: left;
}
.enhanced-footer .footer-about img {
    margin-bottom: 1rem;
    max-width: 160px; /* Slightly larger logo */
    height: auto;
}

/* Styling for footer navigation links (ul li a) */
.enhanced-footer .footer-links-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.enhanced-footer .footer-links-group li {
    margin-bottom: 0.6rem; /* Vertical spacing between nav items (9.6px) */
}
.enhanced-footer .footer-links-group li:last-child {
    margin-bottom: 0;
}

/* Adjust spacing for contact paragraphs */
.enhanced-footer .footer-contact p {
    margin-bottom: 0.6rem;
    color: #fff;
    font-size: 1.1rem; /* INCREASED: Consistent with new paragraph base font size */
}

/* Arrange footer buttons neatly */
/* MODIFIED: Centering and aligning footer buttons */
.enhanced-footer .footer-contact .footer-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem; /* Increased spacing between buttons (16px) */
    margin-top: 1.2rem; /* Adjusted space between contact info and buttons (19.2px) */
    justify-content: center; /* ALIGNMENT CHANGE: Center buttons horizontally */
}

/* Social media follow section */
.enhanced-footer .footer-social {
    text-align: left; /* Aligned left for desktop consistency */
    margin-top: 0; /* No extra top margin if placed after footer-about heading */
}

.enhanced-footer .footer-social h3 {
    margin-bottom: 1rem; /* Space below "Follow Us On" heading */
    font-size: 1.5rem; /* Desktop heading size */
    text-align: left; /* Ensure heading is left-aligned */
}

/* Social link icons */
.enhanced-footer .footer-social ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: nowrapwrap;
    flex-direction: column-reverse;
    justify-content: flex-start; /* Align icons to the start */
    gap: 1rem; /* Spacing between social icons (16px) */
}

.enhanced-footer .footer-social li {
    margin: 0;
}

.enhanced-footer .footer-social a {
    font-size: 1.25rem; /* 20px desktop icon size */
    color: #fff;
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex; /* Ensures icon and text are aligned */
    align-items: center;
    gap: 0.5rem; /* Space between icon and text */
    text-decoration: none; /* Ensure no underline */
    font-weight: 600; /* Make text bold */
}

.enhanced-footer .footer-social a:hover {
    color: var(--secondary-gold);
    transform: scale(1.1); /* Subtle scale-up on hover */
}

/* Copyright text style */
.enhanced-footer .footer-bottom p {
    font-size: 1rem; /* INCREASED: Slightly larger for copyright */
    margin-top: 1.2rem; /* Adjusted space above copyright text (19.2px) */
    color: rgba(255, 255, 255, 0.7);
}

/* --- Responsive Adjustments --- */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
    body {
        font-size: 1rem; /* Base font size for tablet */
    }
    main {
        margin-top: 90px;
    }
    .container {
        padding: 0 15px; /* Adjusted padding */
    }
    h1 { font-size: 2.8rem; margin-bottom: 20px; }
    h2 { font-size: 2.2rem; margin-bottom: 30px; }
    h3 { font-size: 1.6rem; margin-bottom: 15px; }
    p {
        font-size: 1.05rem; /* INCREASED: Paragraph font size for tablet */
        margin-bottom: 18px; /* Adjusted margin-bottom for paragraph text */
        line-height: 1.6;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    .header-nav-button {
        padding: 8px 18px;
        margin-left: 15px;
        font-size: 0.95rem;
    }
    .sticky-header {
        padding: 20px 0;
    }
    .logo img.header-logo {
        height: 120px;
    }
    .main-nav {
        gap: 20px;
        flex-wrap: wrap; /* Allow navigation to wrap */
        justify-content: flex-end;
    }
    .main-nav ul {
        display: none; /* Hidden by default for tablet hamburger behavior */
        flex-direction: column;
        width: 100%;
        text-align: left;
        margin-top: 10px;
    }
    .main-nav ul.active {
        display: flex;
        align-items: flex-start;
    }
    .main-nav li {
        margin: 8px 0;
        width: 100%;
    }
    .main-nav li a {
        margin: 0;
        padding: 5px 0;
        font-size: 1rem;
    }
    .search-bar {
        width: auto; /* Allow search bar to shrink */
        order: 1; /* Move search bar for better layout on wrap */
    }
    .search-input {
        width: 180px;
        font-size: 0.95rem;
    }
    .search-input:focus {
        width: 240px;
    }
    .search-icon {
        font-size: 1.3rem;
    }
    .hamburger-menu {
        display: block; /* Show hamburger menu on tablet */
        order: 2; /* Position hamburger menu */
    }

    .hero-banner {
        padding: 150px 0 100px;
        min-height: 650px;
    }
    .hero-banner-sub {
        padding: 130px 0 70px;
        min-height: 580px;
    }
    .stats-section {
        padding: 60px 0;
    }
    .stat-card h2 {
        font-size: 3rem;
    }
    .stat-card p {
        font-size: 1rem;
    }
    section {
        padding: 80px 0;
    }
    .two-column-layout {
        grid-template-columns: 1fr; /* Stack columns vertically */
        gap: 50px;
    }
    .card-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }
    .product-card, .team-card, .benefit-card, .exporter-card {
        padding: 40px 20px;
    }
    .product-card i, .benefit-card i {
        font-size: 3rem;
    }
    .team-card img {
        max-width: 140px;
    }
    .testimonials-section {
        padding: 80px 0;
    }
    .testimonial-card {
        max-width: 400px;
        padding: 30px;
    }
    .testimonial-card p {
        font-size: 1.05rem; /* INCREASED: Consistent with new paragraph base font size */
    }
    .about-card {
        min-width: 250px;
        max-width: 320px;
        padding: 30px;
    }
    .about-icon {
        font-size: 3.5rem;
    }
    .about-card p {
        font-size: 1.05rem; /* INCREASED: Consistent with new paragraph base font size */
    }
    .services-section-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
    .service-card-new {
        padding: 35px;
    }
    .service-card-new i {
        font-size: 3.5rem;
    }
    .service-card-new p {
        font-size: 1.05rem; /* INCREASED: Consistent with new paragraph base font size */
    }
    .price-display-area {
        height: 50px;
    }
    .price-display-area .price {
        font-size: 2.2rem;
    }
    .price-display-area .enquire-price-btn {
        padding: 10px 20px;
        font-size: 1rem;
    }
    .pricing-cards-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }
    .pricing-card {
        border-radius: 15px;
        padding-bottom: 30px;
    }
    .pricing-card .plan-header {
        padding: 25px 20px;
        border-bottom-left-radius: 15px;
        border-bottom-right-radius: 15px;
        margin-bottom: 20px;
    }
    .pricing-card .plan-header h3 {
        font-size: 1.8rem;
    }
    .pricing-card .plan-header .price {
        font-size: 2.5rem;
    }
    .pricing-card .features-list {
        padding: 0 30px;
        margin-bottom: 30px;
    }
    .pricing-card .features-list li {
        padding: 10px 0;
        gap: 15px;
        font-size: 1.05rem; /* INCREASED: Consistent with new paragraph base font size */
    }
    .pricing-buy-button {
        padding: 12px 30px;
        font-size: 1.05rem;
        width: 80%;
    }
    .pricing-card.popular {
        transform: scale(1.03);
    }
    .pricing-card.popular::before {
        top: -20px;
        padding: 5px 15px;
        font-size: 0.85rem;
    }
    .timeline-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
    .timeline-item {
        padding: 20px 0 20px 40px;
    }
    .timeline-item::before {
        top: 20px;
        left: -10px;
        width: 20px;
        height: 20px;
    }
    .timeline-item .timeline-icon {
        left: -2px;
        top: 25px;
        width: 30px;
        height: 30px;
        font-size: 0.95rem;
    }
    .journey-section .timeline-icon {
        margin-bottom: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    .cta-section {
        padding: 60px 0;
    }
    .exporter-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
    .exporter-card {
        padding: 20px;
    }
    .exporter-card img {
        margin-bottom: 15px;
    }
    .exporter-card .category, .exporter-card .status {
        font-size: 0.9rem;
    }
    .exporter-card .view-profile-btn {
        margin-top: 15px;
        padding: 8px 15px;
        font-size: 0.95rem;
    }
    .story-card {
        margin-bottom: 40px;
    }
    .story-content {
        padding: 30px;
    }
    .story-content p {
        font-size: 1.05rem; /* INCREASED: Consistent with new paragraph base font size */
    }
    .story-content .company-info {
        font-size: 0.9rem;
    }
    .story-content .country-flag {
        margin-top: 20px;
        gap: 10px;
        font-size: 0.95rem;
    }
    .inquiry-form-section {
        padding: 80px 0;
    }
    #partner-form {
        max-width: 600px;
        padding: 40px;
    }
    .form-group {
        margin-bottom: 20px;
    }
    .form-group label {
        margin-bottom: 8px;
        font-size: 1rem;
    }
    .form-group input, .form-group select, .form-group textarea {
        padding: 12px;
        font-size: 0.95rem;
    }
    .faq-accordion {
        max-width: 800px;
    }
    .faq-item {
        margin-bottom: 15px;
    }
    .faq-header {
        padding: 20px;
        font-size: 1.05rem;
    }
    .faq-content p {
        margin: 0 0 20px 0;
        font-size: 1.05rem; /* INCREASED: Consistent with new paragraph base font size */
    }
    .toggle-icon {
        font-size: 1.1rem;
    }
    .contact-info-grid {
        gap: 60px;
    }
    .contact-info-card {
        padding: 40px;
    }
    .contact-info-card h3 {
        margin-bottom: 20px;
    }
    .contact-info-card p {
        font-size: 1.05rem; /* INCREASED: Consistent with new paragraph base font size */
    }
    .contact-info-card .contact-detail-large {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    .contact-info-card p.contact-detail-large a {
        padding: 8px 15px;
        border-radius: 20px;
        margin-top: 5px;
        margin-left: 10px;
        font-size: 1rem;
    }
    .contact-form-container {
        padding: 40px;
    }
    .contact-form-container h3 {
        margin-bottom: 20px;
    }
    .body-404 .container-404 h1 {
        font-size: 7rem;
    }
    .body-404 .container-404 h2 {
        font-size: 3rem;
    }
    .body-404 .container-404 p {
        font-size: 1.05rem; /* INCREASED: Consistent with new paragraph base font size */
    }

    .enhanced-footer {
        padding: 3rem 0.5rem 1.5rem;
        font-size: 1rem;
    }
    .enhanced-footer p,
    .enhanced-footer ul li,
    .enhanced-footer .footer-about h3,
    .enhanced-footer .footer-links-group h4,
    .enhanced-footer .footer-contact h4,
    .enhanced-footer .footer-social h3 {
        font-size: 1.05rem; /* INCREASED: Consistent with new paragraph base font size */
    }
    .enhanced-footer .footer-about h3,
    .enhanced-footer .footer-links-group h4,
    .enhanced-footer .footer-contact h4,
    .enhanced-footer .footer-social h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    .enhanced-footer a:not(.cta-button) {
        padding: 0.3rem 0;
        font-size: 1.05rem; /* INCREASED: Consistent with new paragraph base font size */
    }
    .enhanced-footer .cta-button {
        font-size: 1rem;
        padding: 0.6rem 1rem;
    }
    .enhanced-footer .footer-content-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.5rem;
        padding-bottom: 2rem;
        margin-bottom: 1.5rem;
    }
    .enhanced-footer .footer-about img {
        max-width: 140px;
    }
    .enhanced-footer .footer-contact .footer-buttons {
        gap: 0.8rem;
        margin-top: 1rem;
        justify-content: center; /* ALIGNMENT CHANGE: Center buttons horizontally */
    }
    .enhanced-footer .footer-social h3 {
        font-size: 1.3rem;
    }
    .enhanced-footer .footer-social ul {
        justify-content: center; /* Center icons on tablet */
    }
    .enhanced-footer .footer-social a {
        font-size: 1.15rem; /* 18.4px tablet icon size */
    }
    .enhanced-footer .footer-bottom p {
        font-size: 0.95rem; /* INCREASED: Slightly larger for copyright */
    }
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 2.2rem;
        line-height: 55px;
    }
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
    body {
        font-size: 0.95rem; /* Base font size for mobile */
    }
    main {
        margin-top: 80px;
    }
    .container {
        padding: 0 15px;
    }
    h1 { font-size: 2.2rem; margin-bottom: 15px; }
    h2 { font-size: 1.8rem; margin-bottom: 25px; }
    h3 { font-size: 1.4rem; margin-bottom: 12px; }
    p {
        font-size: 1rem; /* INCREASED: Paragraph font size for mobile */
        margin-bottom: 15px; /* Adjusted margin-bottom for paragraph text */
        line-height: 1.6;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    .header-nav-button {
        padding: 8px 15px;
        margin-left: 10px;
        font-size: 0.9rem;
    }
    .sticky-header {
        padding: 15px 0;
    }
    .logo img.header-logo {
        height: 100px;
    }
    .main-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
    .main-nav ul {
        margin-top: 10px;
    }
    .main-nav li {
        margin: 5px 0;
        width: 100%;
    }
    .main-nav li a {
        font-size: 0.95rem;
        padding: 8px 15px; /* ADJUSTED: More padding for hamburger menu links */
        display: block; /* Ensure it takes full width for clickability */
        white-space: normal; /* Allow text to wrap within the button */
        text-align: left; /* Align text within the button */
    }
    .search-bar {
        width: 100%; /* Full width search bar */
        order: 1;
        margin-bottom: 10px;
    }
    .search-input {
        width: calc(100% - 40px);
        font-size: 0.9rem;
    }
    .search-input:focus {
        width: calc(100% - 40px);
    }
    .search-icon {
        font-size: 1.1rem;
    }
    .hamburger-menu {
        font-size: 1.8rem;
    }

    .hero-banner {
        padding: 120px 0 80px;
        min-height: 550px;
    }
    .hero-banner-sub {
        padding: 100px 0 60px;
        min-height: 500px;
    }
    .stats-section .container {
        flex-direction: column;
        gap: 20px;
    }
    .stat-card {
        margin-bottom: 20px;
        min-width: 100%;
    }
    .stat-card h2 {
        font-size: 2.8rem;
    }
    .stat-card p {
        font-size: 0.95rem;
    }
    section {
        padding: 60px 0;
    }
    .two-column-layout {
        gap: 30px;
    }
    .card-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 25px;
        margin-top: 30px;
    }
    .product-card, .team-card, .benefit-card, .exporter-card {
        padding: 30px 15px;
    }
    .product-card i, .benefit-card i {
        font-size: 2.8rem;
    }
    .team-card img {
        max-width: 100px;
    }
    .team-card p {
        font-size: 0.85rem;
    }
    .testimonials-section {
        padding: 60px 0;
    }
    .testimonial-card {
        max-width: 100%;
        padding: 25px;
    }
    .testimonial-card p {
        font-size: 1rem; /* INCREASED: Consistent with new paragraph base font size */
    }
    .about-card {
        min-width: 100%;
        max-width: 100%;
        padding: 25px;
    }
    .about-icon {
        font-size: 3rem;
    }
    .about-card p {
        font-size: 1rem; /* INCREASED: Consistent with new paragraph base font size */
    }
    .services-section-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .service-card-new {
        padding: 30px;
    }
    .service-card-new i {
        font-size: 3rem;
    }
    .service-card-new p {
        font-size: 1rem; /* INCREASED: Consistent with new paragraph base font size */
    }
    .price-display-area {
        height: 45px;
    }
    .price-display-area .price {
        font-size: 2rem;
    }
    .price-display-area .enquire-price-btn {
        padding: 8px 18px;
        font-size: 0.95rem;
    }
    .pricing-cards-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .pricing-card .plan-header h3 {
        font-size: 1.6rem;
    }
    .pricing-card .plan-header .price {
        font-size: 2.2rem;
    }
    .pricing-card .features-list {
        padding: 0 25px;
    }
    .pricing-card .features-list li {
        font-size: 1rem; /* INCREASED: Consistent with new paragraph base font size */
        gap: 12px;
    }
    .pricing-buy-button {
        padding: 10px 25px;
        font-size: 1rem;
        width: 90%;
    }
    .pricing-card.popular::before {
        top: -15px;
        padding: 4px 12px;
        font-size: 0.8rem;
    }
    .timeline-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .timeline-item {
        padding: 20px 0 20px 40px;
        border-left: 2px solid var(--primary-blue);
    }
    .timeline-item::before {
        left: -10px;
        width: 20px;
        height: 20px;
    }
    .timeline-item .timeline-icon {
        left: -2px;
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    .journey-section .timeline-icon {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
    }
    .cta-section {
        padding: 50px 0;
    }
    .exporter-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .exporter-card {
        padding: 20px;
    }
    .exporter-card img {
        margin-bottom: 15px;
    }
    .exporter-card .category, .exporter-card .status {
        font-size: 0.85rem;
    }
    .exporter-card .view-profile-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    .story-card {
        flex-direction: column;
        margin-bottom: 30px;
    }
    .story-content {
        padding: 25px;
    }
    .story-content p {
        font-size: 1rem; /* INCREASED: Consistent with new paragraph base font size */
    }
    .story-content .company-info {
        font-size: 0.85rem;
    }
    .story-content .country-flag {
        font-size: 0.9rem;
    }
    #partner-form {
        padding: 30px;
    }
    .form-group label {
        font-size: 0.95rem;
    }
    .form-group input, .form-group select, .form-group textarea {
        padding: 10px;
        font-size: 0.9rem;
    }
    .faq-accordion {
        max-width: 100%;
        padding: 0 10px;
    }
    .faq-header {
        padding: 18px;
        font-size: 1rem;
    }
    .faq-content p {
        font-size: 1rem; /* INCREASED: Consistent with new paragraph base font size */
    }
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-info-card {
        padding: 35px;
    }
    .contact-info-card h3 {
        margin-bottom: 18px;
    }
    .contact-info-card p {
        font-size: 1rem; /* INCREASED: Consistent with new paragraph base font size */
    }
    .contact-info-card .contact-detail-large {
        font-size: 1.2rem;
    }
    .contact-info-card p.contact-detail-large a {
        padding: 6px 12px;
        font-size: 0.95rem;
    }
    .contact-form-container {
        padding: 35px;
    }
    .contact-form-container h3 {
        margin-bottom: 18px;
    }
    .body-404 .container-404 h1 {
        font-size: 6rem;
    }
    .body-404 .container-404 h2 {
        font-size: 2.5rem;
    }
    .body-404 .container-404 p {
        font-size: 1rem; /* INCREASED: Consistent with new paragraph base font size */
    }

    .enhanced-footer {
        padding: 2.5rem 0.8rem 1.2rem;
        font-size: 0.95rem;
    }
    .enhanced-footer p,
    .enhanced-footer ul li,
    .enhanced-footer .footer-about h3,
    .enhanced-footer .footer-links-group h4,
    .enhanced-footer .footer-contact h4,
    .enhanced-footer .footer-social h3 {
        font-size: 1rem; /* INCREASED: Consistent with new paragraph base font size */
    }
    .enhanced-footer .footer-about h3,
    .enhanced-footer .footer-links-group h4,
    .enhanced-footer .footer-contact h4,
    .enhanced-footer .footer-social h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    .enhanced-footer a:not(.cta-button) {
        padding: 0.2rem 0;
        font-size: 1rem; /* INCREASED: Consistent with new paragraph base font size */
    }
    .enhanced-footer .cta-button {
        font-size: 0.95rem;
        padding: 0.5rem 0.8rem;
    }
    .enhanced-footer .footer-content-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding-bottom: 1.5rem;
        margin-bottom: 1.2rem;
    }
    .enhanced-footer .footer-about img {
        max-width: 120px;
        margin: 0 auto 0.6rem auto;
    }
    .enhanced-footer .footer-social h3 {
        text-align: center; /* Center heading on mobile */
    }
    .enhanced-footer .footer-social ul {
        justify-content: center; /* Center icons on mobile */
        gap: 0.8rem;
    }
    .enhanced-footer .footer-social a {
        font-size: 1.05rem; /* 16.8px mobile icon size */
    }
    .enhanced-footer .footer-bottom p {
        font-size: 0.9rem; /* INCREASED: Slightly larger for copyright */
    }
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 2rem;
        line-height: 50px;
        bottom: 15px;
        right: 15px;
    }
}

/* Very Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    body {
        font-size: 0.9rem;
    }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.2rem; }
    p {
        font-size: 0.95rem; /* INCREASED: Paragraph font size for very small mobile */
        margin-bottom: 12px;
        line-height: 1.6;
    }

    .cta-button {
        font-size: 0.9rem;
        padding: 8px 18px;
    }
    .header-nav-button {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
    .logo img.header-logo {
        height: 80px;
    }
    .main-nav li a {
        font-size: 0.9rem;
        padding: 6px 12px; /* ADJUSTED: More padding for hamburger menu links */
    }
    .search-input {
        font-size: 0.85rem;
    }
    .search-icon {
        font-size: 1rem;
    }

    .hero-banner {
        padding: 100px 0 60px;
        min-height: 450px;
    }
    .hero-banner-sub {
        padding: 80px 0 50px;
        min-height: 400px;
    }
    .stat-card h2 {
        font-size: 2.5rem;
    }
    .stat-card p {
        font-size: 0.9rem;
    }
    .product-card, .team-card, .benefit-card, .exporter-card, .about-card, .service-card-new {
        padding: 20px 10px;
    }
    .product-card i, .benefit-card i {
        font-size: 2.5rem;
    }
    .team-card img {
        max-width: 80px;
    }
    .testimonial-card {
        padding: 20px;
    }
    .testimonial-card p {
        font-size: 0.95rem; /* INCREASED: Consistent with new paragraph base font size */
    }
    .about-icon {
        font-size: 2.5rem;
    }
    .about-card p {
        font-size: 0.95rem; /* INCREASED: Consistent with new paragraph base font size */
    }
    .services-section-grid {
        gap: 20px;
    }
    .service-card-new i {
        font-size: 2.5rem;
    }
    .service-card-new p {
        font-size: 0.95rem; /* INCREASED: Consistent with new paragraph base font size */
    }
    .price-display-area .price {
        font-size: 1.8rem;
    }
    .pricing-card .plan-header h3 {
        font-size: 1.4rem;
    }
    .pricing-card .plan-header .price {
        font-size: 2rem;
    }
    .pricing-card .features-list li {
        font-size: 0.95rem; /* INCREASED: Consistent with new paragraph base font size */
    }
    .pricing-buy-button {
        font-size: 0.95rem;
        padding: 8px 20px;
    }
    .timeline-item .timeline-icon {
        font-size: 0.85rem;
    }
    .journey-section .timeline-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .exporter-card .view-profile-btn {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
    .story-content h3 {
        font-size: 1.3rem;
    }
    .form-group label {
        font-size: 0.9rem;
    }
    .form-group input, .form-group select, .form-group textarea {
        font-size: 0.85rem;
    }
    .faq-header {
        font-size: 0.95rem;
        padding: 15px;
    }
    .faq-content p {
        font-size: 0.95rem; /* INCREASED: Consistent with new paragraph base font size */
    }
    .contact-info-card .contact-detail-large {
        font-size: 1.1rem;
    }
    .contact-info-card p.contact-detail-large a {
        font-size: 0.9rem;
        padding: 5px 10px;
    }
    .body-404 .container-404 h1 {
        font-size: 5rem;
    }
    .body-404 .container-404 h2 {
        font-size: 2rem;
    }
    .body-404 .container-404 p {
        font-size: 0.95rem; /* INCREASED: Consistent with new paragraph base font size */
    }

    .enhanced-footer {
        padding: 2rem 0.5rem 1rem;
        font-size: 0.9rem;
    }
    .enhanced-footer .footer-about img {
        max-width: 100px;
    }
    .enhanced-footer p,
    .enhanced-footer ul li,
    .enhanced-footer .footer-about h3,
    .enhanced-footer .footer-links-group h4,
    .enhanced-footer .footer-contact h4,
    .enhanced-footer .footer-social h3 {
        font-size: 0.95rem; /* INCREASED: Consistent with new paragraph base font size */
    }
    .enhanced-footer .footer-about h3,
    .enhanced-footer .footer-links-group h4,
    .enhanced-footer .footer-contact h4,
    .enhanced-footer .footer-social h3 {
        font-size: 1rem;
    }
    .enhanced-footer a:not(.cta-button) {
        padding: 0.2rem 0;
        font-size: 0.95rem; /* INCREASED: Consistent with new paragraph base font size */
    }
    .enhanced-footer .cta-button {
        font-size: 0.9rem;
        padding: 0.5rem 0.8rem;
    }
    .enhanced-footer .footer-content-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding-bottom: 1.5rem;
        margin-bottom: 1.2rem;
    }
    .enhanced-footer .footer-about img {
        max-width: 100px;
        margin: 0 auto 0.6rem auto;
    }
    .enhanced-footer .footer-social h3 {
        text-align: center; /* Center heading on mobile */
    }
    .enhanced-footer .footer-social ul {
        justify-content: center; /* Center icons on mobile */
        gap: 0.8rem;
    }
    .enhanced-footer .footer-social a {
        font-size: 1rem; /* 16px mobile icon size */
    }
    .enhanced-footer .footer-bottom p {
        font-size: 0.85rem; /* INCREASED: Slightly larger for copyright */
    }
    .whatsapp-float {
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
        line-height: 45px;
        bottom: 10px;
        right: 10px;
    }
}
