/* =============================================
   GeoTek Global Trading - Main Stylesheet
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* CSS Variables */
:root {
    --primary: #1a2e5a;
    --primary-dark: #0f1e3d;
    --secondary: #e8820c;
    --secondary-light: #f5a644;
    --green: #2d9b4e;
    --green-light: #3ab860;
    --white: #ffffff;
    --light-gray: #f5f7fa;
    --border: #e0e6ef;
    --text: #333344;
    --text-light: #666680;
    --font: 'Poppins', sans-serif;
}

/* =============================================
   GLOBAL BASE
   ============================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font);
    color: var(--text);
    font-size: 15px;
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
}

.logo-image{
    width: 300px;
    height: auto;
}

.section-padding {
    padding: 80px 0;
}

.bg-light-gray {
    background-color: var(--light-gray);
}

.bg-dark-navy {
    background-color: var(--primary);
}

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-tag {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: var(--green);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
    margin-bottom: 12px;
}

.section-title span {
    color: var(--secondary);
}

.section-desc {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* =============================================
   TOP BAR
   ============================================= */
.top-bar {
    background-color: var(--primary);
    padding: 9px 0;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar-left a,
.top-bar-left span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-left a:hover {
    color: var(--secondary);
}

.top-bar-left i {
    color: var(--secondary);
    font-size: 12px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
}

.top-bar-right span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

.top-bar-right a {
    color: rgba(255, 255, 255, 0.8);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.top-bar-right a:hover {
    background: var(--secondary);
    color: var(--white);
}

/* =============================================
   NAVBAR
   ============================================= */
#mainNav {
    background-color: var(--white);
    padding: 14px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    z-index: 999;
}

#mainNav.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--primary), var(--green));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
}

.logo-icon-sm {
    width: 38px;
    height: 38px;
    font-size: 18px;
    border-radius: 8px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.brand-name-sm {
    font-size: 18px;
}

.brand-sub {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--green);
}

.brand-sub-sm {
    font-size: 8px;
}

.navbar-nav .nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    padding: 8px 14px;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--secondary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--secondary);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    padding: 10px 0;
}

.dropdown-item {
    font-size: 14px;
    padding: 8px 20px;
    color: var(--primary);
    font-weight: 500;
}

.dropdown-item:hover {
    background-color: var(--light-gray);
    color: var(--secondary);
}

.btn-quote {
    background-color: var(--secondary);
    color: var(--white);
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    border: none;
}

.btn-quote:hover {
    background-color: #c96a05;
    color: var(--white);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, #0f2a52 60%, #1a4a6b 100%);
    min-height: 560px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: url('./media/images/hero-bnr-img.png') center/cover;
    clip-path: polygon(18% 0%, 100% 0%, 100% 100%, 0% 100%);
    opacity: 0.15;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--green), var(--secondary));
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 18px;
}

.hero-title span {
    color: var(--secondary);
}

.hero-products {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-products span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 500;
}

.hero-products .sep {
    color: var(--secondary);
}

.hero-btns {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background-color: var(--green);
    color: var(--white);
    padding: 13px 28px;
    border-radius: 7px;
    font-weight: 600;
    font-size: 15px;
}

.btn-hero-primary:hover {
    background-color: #238a40;
    color: var(--white);
    transform: translateY(-2px);
}

.btn-hero-outline {
    background: transparent;
    color: var(--white);
    padding: 12px 28px;
    border-radius: 7px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-hero-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.hero-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-stat i {
    font-size: 48px;
    color: var(--secondary);
}

.hero-stat strong {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
}

.hero-stat span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
}

/* =============================================
   PRODUCT CAT CARDS
   ============================================= */
.product-cat-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-cat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.product-cat-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-cat-card:hover .product-cat-img img {
    transform: scale(1.08);
}

.product-cat-icon {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 46px;
    height: 46px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(45, 155, 78, 0.4);
    border: 3px solid var(--white);
}

.product-cat-body {
    padding: 35px 20px 25px;
    text-align: center;
}

.product-cat-body h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.product-cat-body p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

/* =============================================
   PRODUCT TABS
   ============================================= */
.product-nav .nav-link {
    background: var(--white);
    color: var(--primary);
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid var(--border);
    margin: 3px;
}

.product-nav .nav-link.active,
.product-nav .nav-link:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
}

.product-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.product-card p {
    padding: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
}

.btn-view-all {
    background: var(--green);
    color: var(--white);
    padding: 12px 32px;
    border-radius: 7px;
    font-weight: 600;
    font-size: 15px;
    border: none;
}

.btn-view-all:hover {
    background: #248940;
    color: var(--white);
}

/* =============================================
   WORKING PROCEDURE / STEPS
   ============================================= */
.process-flow {
    align-items: stretch;
}

.process-step {
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '\f061';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: -14px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transform: translateY(-50%);
    z-index: 2;
    box-shadow: 0 4px 14px rgba(232, 130, 12, 0.28);
}

.step-card {
    text-align: center;
    padding: 28px 18px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
    position: relative;
    transition: transform 0.3s ease;
    height: 100%;
    border: 1px solid var(--border);
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--green), #48c96b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--white);
    font-size: 22px;
}

.step-card h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.step-card p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

/* =============================================
   CERTIFICATIONS
   ============================================= */
.cert-badge {
    padding: 25px 15px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease;
}

.cert-badge:hover {
    transform: translateY(-4px);
}

.cert-badge i {
    font-size: 36px;
    color: var(--primary);
    display: block;
    margin-bottom: 10px;
}

.cert-badge p {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
    line-height: 1.4;
}

.cert-badge small {
    font-weight: 500;
    color: var(--text-light);
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonial-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--secondary);
    height: 100%;
    margin: 20px;
}

.testimonial-card .stars {
    color: #f5a623;
    font-size: 14px;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author img {
    width: 48px !important;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author strong {
    display: block;
    font-size: 14px;
    color: var(--primary);
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-light);
}

.testimonial-slider.owl-carousel {
    position: relative;
}

.testimonial-slider.owl-carousel .owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 20px 0 0 0;
}

.testimonial-slider.owl-carousel .owl-dots .owl-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    transition: all 0.3s ease;
}

.testimonial-slider.owl-carousel .owl-dots .owl-dot.active {
    background: var(--secondary);
    width: 12px;
    height: 12px;
    /* border-radius: 5px; */
}

.testimonial-list .testimonial-card {
    margin: 0;
}

/* =============================================
   CONTACT STRIP
   ============================================= */
.contact-strip {
    background: var(--primary);
    padding: 25px 0;
    border-top: 3px solid var(--secondary);
}

.contact-strip-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    justify-content: center;
}

.contact-strip-item i {
    font-size: 22px;
    color: var(--secondary);
}

.contact-strip-item small {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-strip-item p {
    font-size: 13px;
    color: var(--white);
    margin: 0;
    font-weight: 500;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background-color: var(--primary-dark);
    padding: 60px 0 0;
}

.footer-brand p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.footer-social a:hover {
    background: var(--secondary);
    color: var(--white);
}

.footer-heading {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.08);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 4px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.footer-contact li i {
    color: var(--secondary);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-bottom {
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-bottom a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover {
    color: var(--secondary);
}

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 52px;
    height: 52px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 26px;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #1eb855;
    color: var(--white);
    transform: scale(1.1);
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8);
    }
}

/* =============================================
   PAGE HEADER (Inner Pages)
   ============================================= */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, #0f2244 60%);
    position: relative;
    overflow: hidden;
    padding: 70px 0 50px;
}

.page-header::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: url('./media/images/inr-bnr-img.jpg') center/cover;
    opacity: 0.12;
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.page-header-sm {
    padding: 40px 0 30px;
}

.page-header-overlay {
    display: none;
}

.page-header h1 {
    font-size: 38px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.page-header .breadcrumb {
    background: transparent;
    padding: 0;
    position: relative;
    z-index: 2;
}

.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.page-header .breadcrumb-item.active {
    color: var(--secondary);
    font-size: 14px;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

.page-header-tagline {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-top: 18px;
    position: relative;
    z-index: 2;
}

.page-header-tagline span {
    color: var(--secondary);
    font-style: italic;
}

.page-header-sub {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    position: relative;
    z-index: 2;
    margin-top: 10px;
    margin-bottom: 5px;
}

.page-header-sub span {
    color: var(--secondary);
}

.page-header-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    position: relative;
    z-index: 2;
    margin: 0;
}

/* Contact page header extras */
.hero-tagline-green {
    color: var(--secondary);
    font-size: 20px;
    font-weight: 600;
    font-style: italic;
    position: relative;
    z-index: 2;
    margin-bottom: 5px;
}

.page-header p:not(.hero-tagline-green):not(.page-header-tagline):not(.page-header-sub):not(.page-header-desc) {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.header-line {
    width: 50px;
    height: 3px;
    background: var(--secondary);
    margin-top: 18px;
    border-radius: 2px;
    position: relative;
    z-index: 2;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-img-wrap {
    position: relative;
    border-radius: 16px;
    overflow: visible;
}

.about-main-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(26, 46, 90, 0.4);
    min-width: 150px;
}

.about-badge i {
    font-size: 30px;
    color: var(--secondary);
    margin-bottom: 8px;
}

.about-badge p {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    line-height: 1.3;
}

.about-badge small {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
}

.about-stat {
    text-align: center;
    padding: 20px 12px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border-top: 3px solid var(--green);
}

.about-stat strong {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    display: block;
    line-height: 1.1;
}

.about-stat span {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 500;
}

/* =============================================
   MVV SECTION
   ============================================= */
.mvv-card {
    background: var(--white);
    border-radius: 14px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.mvv-card:hover {
    transform: translateY(-6px);
}

.mvv-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 26px;
}

.mvv-icon.mission {
    background: linear-gradient(135deg, var(--green), #48c96b);
    color: var(--white);
}

.mvv-icon.vision {
    background: linear-gradient(135deg, var(--primary), #2a4a8a);
    color: var(--white);
}

.mvv-icon.values {
    background: linear-gradient(135deg, var(--secondary), #f5b844);
    color: var(--white);
}

.mvv-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.mvv-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.values-list li {
    font-size: 14px;
    color: var(--text-light);
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.values-list li i {
    color: var(--secondary);
    font-size: 13px;
}

/* =============================================
   WHY CHOOSE US (DARK)
   ============================================= */
.why-us {
    padding: 60px 0;
}

.why-card {
    padding: 30px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-align: left;
    transition: all 0.3s ease;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--secondary);
}

.why-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.why-card h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.why-card h5 span {
    color: var(--green-light);
    display: block;
}

.why-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* =============================================
   TEAM SECTION
   ============================================= */
.team-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-6px);
}

.team-card img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 4px solid var(--light-gray);
    transition: border-color 0.3s ease;
}

.team-card:hover img {
    border-color: var(--green);
}

.team-card h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.team-card p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.team-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--light-gray);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.team-social a:hover {
    background: var(--primary);
    color: var(--white);
}

/* =============================================
   PRODUCTS PAGE - CATEGORIES LARGE
   ============================================= */
.product-cat-card-lg {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.product-cat-card-lg:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.15);
}

.product-cat-card-lg img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-cat-card-lg:hover img {
    transform: scale(1.06);
}

.pcat-icon {
    position: absolute;
    top: 170px;
    left: 20px;
    width: 44px;
    height: 44px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    border: 3px solid var(--white);
    box-shadow: 0 4px 12px rgba(45, 155, 78, 0.4);
}

.pcat-body {
    padding: 30px 20px 25px;
}

.pcat-body h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.pcat-body p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.pcat-body a {
    font-size: 13px;
    font-weight: 600;
    color: var(--green);
}

.pcat-body a:hover {
    color: var(--secondary);
}

/* =============================================
   FILTER SIDEBAR
   ============================================= */
.filter-sidebar {
    background: var(--white);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    position: sticky;
    top: 90px;
}

.filter-header h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border);
}

.filter-group {
    margin-bottom: 22px;
}

.filter-group h6 {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-group .form-check {
    margin-bottom: 8px;
}

.filter-group .form-check-label {
    font-size: 13px;
    color: var(--text-light);
}

.filter-group .form-check-label span {
    color: var(--text-light);
    font-size: 12px;
}

.filter-group .form-check-input:checked {
    background-color: var(--green);
    border-color: var(--green);
}

.filter-group .form-select {
    font-size: 13px;
    border-color: var(--border);
    border-radius: 7px;
}

.filter-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border);
}

.btn-apply {
    background: var(--green);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 7px;
    border: none;
    flex: 1;
}

.btn-apply:hover {
    background: #248940;
    color: var(--white);
}

.btn-reset {
    background: transparent;
    color: var(--text-light);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 7px;
    border: 1px solid var(--border);
}

.btn-reset:hover {
    background: var(--light-gray);
}

/* =============================================
   PRODUCT GRID CARD
   ============================================= */
.product-grid-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-grid-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.14);
}

.product-grid-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-grid-card:hover img {
    transform: scale(1.06);
}

.badge-export {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--green);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    z-index: 2;
}

.product-grid-body {
    padding: 16px;
}

.product-grid-body h6 {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.stars-sm {
    color: #f5a623;
    font-size: 12px;
    margin-bottom: 12px;
}

.stars-sm small {
    color: var(--text-light);
    margin-left: 4px;
}

.btn-view-detail {
    background: var(--primary);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 6px;
    width: 100%;
    border: none;
    text-align: center;
    display: block;
}

.btn-view-detail:hover {
    background: var(--secondary);
    color: var(--white);
}

.btn-load-more {
    background: transparent;
    color: var(--primary);
    padding: 12px 32px;
    border-radius: 7px;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid var(--primary);
}

.btn-load-more:hover {
    background: var(--primary);
    color: var(--white);
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
    background: linear-gradient(135deg, var(--primary), #0f2244);
    padding: 50px 0;
    border-top: 4px solid var(--secondary);
}

.cta-banner h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.cta-banner p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.btn-cta-white {
    background: var(--white);
    color: var(--primary);
    padding: 13px 28px;
    border-radius: 7px;
    font-weight: 700;
    font-size: 15px;
    border: none;
    display: inline-block;
    margin-bottom: 15px;
}

.btn-cta-white:hover {
    background: var(--secondary);
    color: var(--white);
}

.cta-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 10px;
}

.cta-features span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 5px;
}

.cta-features span i {
    color: var(--secondary);
}

/* =============================================
   PRODUCT DETAIL PAGE
   ============================================= */
.product-detail-img {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.product-detail-img .carousel-item img {
    height: 420px;
    object-fit: cover;
    width: 100%;
}

.badge-export-lg {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--green);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    z-index: 10;
    letter-spacing: 0.5px;
}

.product-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.product-thumbs img {
    width: 70px;
    height: 55px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid var(--border);
    transition: border-color 0.3s ease;
}

.product-thumbs img.active-thumb,
.product-thumbs img:hover {
    border-color: var(--green);
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.feature-item {
    text-align: center;
    flex: 1;
    min-width: 80px;
    padding: 12px 8px;
    background: var(--light-gray);
    border-radius: 8px;
}

.feature-item i {
    font-size: 18px;
    color: var(--green);
    margin-bottom: 6px;
    display: block;
}

.feature-item span {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 3px;
}

.feature-item small {
    font-size: 10px;
    color: var(--text-light);
}

.product-detail-info h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 6px;
}

.product-tags-line {
    font-size: 14px;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 10px;
}

.product-tags-line span {
    color: var(--text-light);
}

.product-detail-info .stars {
    color: #f5a623;
    font-size: 16px;
}

.product-detail-info .stars span {
    font-size: 14px;
    color: var(--text-light);
}

.product-detail-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.product-specs-table {
    width: 100%;
    margin-bottom: 20px;
}

.product-specs-table td {
    padding: 6px 0;
    font-size: 13px;
    color: var(--text);
}

.product-specs-table td:first-child {
    color: var(--primary);
    width: 130px;
}

.export-markets-box {
    background: var(--light-gray);
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 20px;
}

.export-markets-box p {
    font-size: 13px;
    margin-bottom: 8px;
    color: var(--primary);
}

.export-markets-box span {
    font-size: 13px;
    color: var(--text-light);
    margin-right: 15px;
    display: inline-block;
}

.product-quote-form {
    background: var(--primary);
    border-radius: 12px;
    padding: 24px;
}

.product-quote-form h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.product-quote-form .form-control {
    font-size: 13px;
    border-radius: 7px;
    border: none;
    padding: 10px 14px;
}

.btn-send-inquiry {
    background: var(--green);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    padding: 12px;
    border-radius: 7px;
    border: none;
    width: 100%;
}

.btn-send-inquiry:hover {
    background: #248940;
    color: var(--white);
}

.product-detail-tabs .nav-tabs .nav-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    border: none;
    border-bottom: 3px solid transparent;
    padding: 12px 20px;
}

.product-detail-tabs .nav-tabs .nav-link.active {
    color: var(--secondary);
    border-bottom-color: var(--secondary);
    background: transparent;
}

.product-detail-tabs .tab-content {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 12px 12px;
}

.detail-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
}

.detail-list li {
    font-size: 14px;
    color: var(--text-light);
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-list li i {
    color: var(--green);
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-form-card {
    background: var(--white);
    border-radius: 14px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.contact-form-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.contact-form-card p {
    font-size: 14px;
    color: var(--text-light);
}

.input-group-custom {
    position: relative;
}

.input-group-custom i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 14px;
    z-index: 5;
}

.input-group-custom .msg-icon {
    top: 18px;
    transform: none;
}

.input-group-custom .form-control,
.input-group-custom select {
    padding-left: 40px;
    border-radius: 8px;
    border: 1px solid var(--border);
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.input-group-custom .form-control:focus,
.input-group-custom select:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(45, 155, 78, 0.1);
}

.btn-send-msg {
    background: var(--primary);
    color: var(--white);
    padding: 13px 32px;
    border-radius: 7px;
    font-size: 15px;
    font-weight: 600;
    border: none;
}

.btn-send-msg:hover {
    background: var(--secondary);
    color: var(--white);
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.07);
}

.contact-icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    flex-shrink: 0;
}

.bg-green {
    background: var(--green);
}

.bg-orange {
    background: var(--secondary);
}

.bg-navy {
    background: var(--primary);
}

.contact-info-item h6 {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.contact-info-item p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.find-us-card {
    background: var(--primary);
    border-radius: 12px;
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.find-us-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 15px;
}

.find-us-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 25px;
    line-height: 1.8;
}

.btn-get-directions {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 12px 24px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
}

.btn-get-directions:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

/* Why Strip (Contact Page) */
.why-strip {
    background: var(--light-gray);
    padding: 50px 0;
    border-top: 1px solid var(--border);
}

.why-strip-item {
    padding: 20px;
}

.why-strip-icon {
    width: 56px;
    height: 56px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    margin: 0 auto 15px;
}

.why-strip-icon-orange {
    background: var(--secondary);
}

.why-strip-icon-navy {
    background: var(--primary);
}

.why-strip-item h6 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.why-strip-item p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

/* =============================================
   STARS
   ============================================= */
.stars {
    color: #f5a623;
    font-size: 15px;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1100px) {
    .step-card h5 {
        font-size: 12px;
    }

    .step-card p {
        font-size: 10px;
    }

    .footer-contact li {
        font-size: 12px;
    }

    .footer-heading {
        font-size: 12px;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        position: absolute;
        background: #f4f4f4;
        width: 100%;
        left: 0;
        top: 100%;
        padding: 20px;
        /* border-bottom: 1px solid #f4f4f4; */
        box-shadow: 0 0 4px rgba(0, 0, 0, .75);
    }

    .navbar-toggler {
        padding: 0px !important;
        font-size: 20px;
        line-height: 1;
        color: #f4f4f4;
        background-color: #fff;
        border-radius: 0px !important;
    }

    .navbar-toggler:focus {
        box-shadow: none !important;
    }

    .contact-strip-item {
        justify-content: flex-start;
    }

    .top-bar-right span {
        display: none;
    }

    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 26px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .top-bar-left {
        gap: 12px;
    }

    .top-bar-left span {
        display: none;
    }

    .about-badge {
        bottom: -10px;
        right: -10px;
    }

    .cta-features {
        justify-content: flex-start;
    }

    .process-flow {
        --bs-gutter-y: 3rem;
    }

    .process-flow .process-step {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .process-step:nth-child(1) {
        order: 1;
    }

    .process-step:nth-child(2) {
        order: 2;
    }

    .process-step:nth-child(3) {
        order: 4;
    }

    .process-step:nth-child(4) {
        order: 3;
    }

    .process-step:nth-child(5) {
        order: 5;
    }

    .process-step:nth-child(2)::after,
    .process-step:nth-child(4)::after {
        content: '\f063';
        top: auto;
        right: 50%;
        bottom: -18px;
        transform: translateX(50%);
    }

    .process-step:nth-child(3)::after {
        content: '\f060';
        right: auto;
        left: -14px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: auto;
        padding: 50px 0;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-stat i {
        font-size: 30px;
    }

    .hero-content {
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-stats {
        gap: 15px;
    }

    .top-bar-right {
        display: none;
    }

    .process-flow {
        --bs-gutter-y: 2.5rem;
    }

    .process-flow .process-step {
        flex: 0 0 100%;
        max-width: 100%;
        order: initial;
    }

    .process-step:not(:last-child)::after {
        content: '\f063';
        top: auto;
        right: 50%;
        left: auto;
        bottom: -18px;
        transform: translateX(50%);
    }

    .step-card {
        padding: 28px 18px;
    }

    .contact-form-card {
        padding: 25px 20px;
    }

    .about-badge {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 15px;
        display: inline-flex;
        align-items: center;
        gap: 12px;
    }

    .section-title {
        font-size: 22px;
    }

    .page-header h1 {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    

    .btn-hero-primary,
    .btn-hero-outline {
        text-align: center;
    }

    .product-features {
        gap: 8px;
    }

    .feature-item {
        min-width: 60px;
    }
}


@media (max-width: 410px) {
    .hero-btns {
        flex-direction: column;
    }
}

