/* 
   Shivoham Overseas - Custom Premium Design Stylesheet
   Typography: Plus Jakarta Sans (Headers), Inter (Body)
   Colors: Steel Navy, Brass Gold, Crimson Red, Charcoal, Slate
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* Custom Selection & Scrollbar Styling */
::selection {
    background-color: #ca933e;
    color: #ffffff;
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f8fafc;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
    border: 2px solid #f8fafc;
}
::-webkit-scrollbar-thumb:hover {
    background: #ca933e;
}

:root {
    /* Color Palette matching Shivoham Overseas Logo */
    --primary: #0b2e59;        /* Logo Navy Blue */
    --primary-light: #184175;  /* Lighter Navy */
    --accent: #ca933e;         /* Logo Metallic Gold */
    --accent-hover: #b27d2c;   /* Darker Gold */
    --accent-secondary: #dc2626; /* Firefighter Red */
    --accent-secondary-hover: #b91c1c;
    --text-dark: #0b2e59;
    --text-muted: #64748b;
    --text-light: #f8fafc;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --card-shadow: 0 10px 30px -15px rgba(11, 46, 89, 0.08);
    --hover-shadow: 0 20px 40px -15px rgba(11, 46, 89, 0.15);
    
    /* Fonts */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout */
    --max-width: 1280px;
    --header-height: 105px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

input, select, textarea, button {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
}

/* Grid & Layout Utilities */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.section-bg-dark {
    background-color: var(--primary);
    color: var(--text-light);
}

.section-bg-dark h2 {
    color: var(--text-light);
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px auto;
}

.section-header span {
    font-family: var(--font-heading);
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 16px;
    position: relative;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--accent);
    margin: 16px auto 0 auto;
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-header:hover h2::after {
    width: 80px;
}

.section-header p {
    color: var(--text-muted);
}

.section-bg-dark .section-header p {
    color: #94a3b8;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-weight: 600;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(202, 147, 62, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: var(--text-light);
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 20px -5px rgba(255, 255, 255, 0.1);
}

.btn-dark {
    background-color: var(--primary);
    color: var(--text-light);
}

.btn-dark:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(11, 46, 89, 0.3);
}

/* Top Utility Bar */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 38px;
    background: #0b2e59;
    z-index: 1001;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.top-bar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 500;
    font-family: var(--font-body);
    text-decoration: none;
    transition: color 0.2s ease;
}

.top-bar-link:hover {
    color: #ca933e;
}

.top-bar-link svg {
    flex-shrink: 0;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Custom Google Translate Pill Dropdown Styling */
.custom-translate-wrapper {
    position: relative;
    font-family: var(--font-body);
}

.translate-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.translate-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(202, 147, 62, 0.4);
}

.translate-btn svg {
    flex-shrink: 0;
    opacity: 0.85;
}

.translate-btn .chevron {
    transition: transform 0.3s ease;
}

.custom-translate-wrapper.active .translate-btn .chevron {
    transform: rotate(180deg);
}

.translate-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #0b2e59;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 8px 0;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
}

.custom-translate-wrapper.active .translate-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.translate-dropdown a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 16px;
    text-decoration: none;
    font-size: 13px;
    text-align: left;
    transition: all 0.2s ease;
}

.translate-dropdown a:hover {
    background: rgba(202, 147, 62, 0.15);
    color: #ca933e;
}


/* Hide the original Google Translate element using opacity and pointer-events so Google sees it as fully laid out and active */
#google_translate_element {
    opacity: 0.01;
    position: absolute;
    z-index: -1000;
    pointer-events: none;
    top: 0;
    right: 0;
}

/* Hide Google Translate top frame and tooltips */
.goog-te-banner-frame,
iframe.skiptranslate,
#goog-gt-tt,
.goog-te-balloon-frame {
    display: none !important;
}

body {
    top: 0 !important;
}


/* Header & Navigation */
header {
    position: fixed;
    top: 38px;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: #ffffff;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    background-color: #ffffff;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    height: 85px;
    box-shadow: 0 4px 30px rgba(11, 46, 89, 0.06);
}

.header-logo {
    height: 85px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

header.scrolled .header-logo {
    height: 68px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo svg {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--primary);
}

.logo-text span {
    color: var(--accent);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-weight: 700;
    font-size: 17px;
    color: var(--primary-light);
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent);
}

/* Navigation Dropdown */
.nav-item-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.dropdown-toggle .arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

/* Show dropdown on hover (Desktop) */
@media (min-width: 992px) {
    .nav-item-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-item-dropdown:hover .dropdown-toggle .arrow {
        transform: rotate(180deg);
    }
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 260px;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--hover-shadow);
    border: 1px solid var(--border-color);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.dropdown-menu a {
    display: block;
    padding: 10px 24px;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    text-align: left;
}

.dropdown-menu a:hover {
    background-color: var(--bg-light);
    color: var(--accent);
    padding-left: 28px;
}

/* Mobile Dropdown Styling */
@media (max-width: 991px) {
    .nav-item-dropdown {
        width: 100%;
    }

    .nav-item-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        display: none;
        transform: none;
        box-shadow: none;
        border: none;
        background-color: rgba(0, 0, 0, 0.15);
        padding: 4px 0;
        min-width: auto;
        border-radius: 6px;
        margin-top: 5px;
        flex-direction: column;
    }
    
    .nav-item-dropdown.active-mobile .dropdown-menu {
        display: flex;
    }
    
    .mobile-nav .dropdown-toggle .arrow {
        display: inline-block;
        border: solid rgba(255, 255, 255, 0.8);
        border-width: 0 2px 2px 0;
        padding: 3px;
        transform: rotate(45deg);
        margin-left: 8px;
        font-size: 0;
        line-height: 0;
        transition: transform 0.3s ease;
    }
    
    .nav-item-dropdown.active-mobile .dropdown-toggle .arrow {
        transform: rotate(-135deg);
    }
    
    .mobile-nav .dropdown-menu a {
        color: rgba(255, 255, 255, 0.8) !important;
        font-size: 15px;
        font-weight: 500;
        padding: 10px 20px;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        width: 100%;
    }
    
    .mobile-nav .dropdown-menu a:last-child {
        border-bottom: none;
    }
    
    .mobile-nav .dropdown-menu a:hover {
        color: var(--accent) !important;
        background-color: rgba(255, 255, 255, 0.03);
    }
}

/* Mobile Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    cursor: pointer;
    z-index: 1006;
}

.hamburger span {
    width: 100%;
    height: 2.5px;
    background-color: var(--primary);
    border-radius: 5px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Navigation Menu */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    height: 100dvh;
    background-color: var(--primary);
    padding: 15px 24px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 1005;
    box-shadow: -10px 0 30px rgba(0,0,0,0.25);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overflow-x: hidden;
}

.mobile-nav.active {
    right: 0;
}

/* Mobile Logo inside Drawer */
.mobile-logo {
    display: none !important;
}

.mobile-logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    background-color: #ffffff;
    padding: 6px 12px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.mobile-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 600;
    padding: 12px 16px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
    border-radius: 6px;
}

.mobile-nav .nav-link.active {
    background-color: var(--accent);
    color: var(--primary) !important;
    border-bottom: none;
}

.mobile-nav .nav-link:hover:not(.active) {
    background-color: rgba(255, 255, 255, 0.05);
}

.mobile-nav .mobile-translate-container {
    margin-bottom: 5px !important;
    margin-top: 5px !important;
}

.mobile-nav .btn {
    margin-top: 15px !important;
    padding: 18px 24px !important;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 90% !important;
    align-self: center;
    text-align: center;
}

.mobile-nav .mobile-nav-contact {
    margin-top: 15px !important;
    padding-top: 15px !important;
}

.mobile-nav-contact a {
    flex-wrap: wrap;
    overflow-wrap: anywhere;
    word-break: break-all;
}

.mobile-nav-contact a svg {
    flex-shrink: 0;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 1004;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    height: 100dvh;
    padding-top: calc(var(--header-height) + 38px);
    background-color: var(--primary);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.85)), url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    animation: zoomOut 20s infinite alternate;
}

@keyframes zoomOut {
    0% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.hero-content {
    position: relative;
    max-width: 750px;
    color: var(--text-light);
    z-index: 10;
}

.hero-tagline {
    font-family: var(--font-heading);
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 20px;
    display: inline-block;
}

.hero h1 {
    font-size: 56px;
    color: var(--text-light);
    margin-bottom: 24px;
    font-weight: 800;
    line-height: 1.1;
}

.hero h1 span {
    color: var(--accent);
    background: linear-gradient(135deg, var(--accent), #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 18px;
    color: #cbd5e1;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Page Hero Banner */
.page-hero {
    position: relative;
    padding: calc(var(--header-height) + 80px) 0 80px 0;
    background-color: var(--primary);
    background-image: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.95)), url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    text-align: center;
}

.page-hero h1 {
    color: var(--text-light);
    font-size: 44px;
    margin-bottom: 12px;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    font-weight: 500;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: var(--accent);
}

.breadcrumbs span {
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumbs span:last-child {
    color: var(--accent);
    font-weight: 600;
}

/* Grid Components & Info Cards */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.info-card {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
    border-color: rgba(217, 119, 6, 0.2);
}

.info-card-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(217, 119, 6, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--accent);
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
}

.info-card p {
    color: var(--text-muted);
}

/* Products Section (Home & Products Grid) */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -15px rgba(202, 147, 62, 0.12), 0 0 0 1px rgba(202, 147, 62, 0.2);
    border-color: rgba(202, 147, 62, 0.3);
}

.product-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #ffffff;
    padding: 12px;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: var(--primary);
    color: var(--text-light);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.product-info p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-specs {
    border-top: 1px solid var(--border-color);
    padding: 16px 0;
    margin-bottom: 20px;
}

.product-specs-item {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 8px;
}

.product-specs-item span:first-child {
    color: var(--text-muted);
    font-weight: 500;
}

.product-specs-item span:last-child {
    color: var(--primary);
    font-weight: 600;
}

.product-card .btn {
    width: 100%;
}

/* Category Filter Tabs */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 10px 24px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    color: var(--primary-light);
    cursor: pointer;
    transition: var(--transition);
}

.filter-tab:hover, .filter-tab.active {
    background-color: var(--accent);
    color: var(--bg-white);
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.2);
}

/* Stats Section */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 40px 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.stat-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(202, 147, 62, 0.3);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25), 0 0 30px rgba(202, 147, 62, 0.05);
}

.stat-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(202, 147, 62, 0.1);
    color: var(--accent);
    margin-bottom: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover .stat-icon-wrapper {
    background: var(--accent);
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(202, 147, 62, 0.3);
}

.stat-item h3 {
    font-size: 44px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 13px;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* About Intro Layout (Two-column) */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro-img {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.about-intro-img::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    pointer-events: none;
}

.about-intro-content span {
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: inline-block;
}

.about-intro-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
}

.about-intro-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.about-bullets {
    margin: 30px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.about-bullet-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 15px;
}

.about-bullet-item svg {
    color: var(--accent);
    width: 20px;
    height: 20px;
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.blog-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -15px rgba(202, 147, 62, 0.12), 0 0 0 1px rgba(202, 147, 62, 0.2);
    border-color: rgba(202, 147, 62, 0.3);
}

.blog-img-wrapper {
    height: 220px;
    overflow: hidden;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.08);
}

.blog-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-meta-item svg {
    width: 14px;
    height: 14px;
}

.blog-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.blog-content h3 a:hover {
    color: var(--accent);
}

.blog-content p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-read-more {
    font-weight: 700;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.blog-read-more:hover {
    color: var(--accent-hover);
    gap: 10px;
}

/* Contact Details & Form Layout */
.contact-layout {
    display: grid;
    grid-template-columns: 4fr 6fr;
    gap: 50px;
}

.contact-info-panel,
.contact-form-panel {
    min-width: 0;
}

.contact-info-panel {
    background-color: var(--primary);
    color: var(--text-light);
    padding: 50px;
    border-radius: 8px;
    background-image: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.95)), url('https://images.unsplash.com/photo-1596524430615-b46475ddff6e?auto=format&fit=crop&w=600&q=80');
    background-size: cover;
    background-position: center;
}

.contact-info-panel h3 {
    color: var(--text-light);
    font-size: 24px;
    margin-bottom: 16px;
}

.contact-info-panel > p {
    color: #cbd5e1;
    margin-bottom: 40px;
    overflow-wrap: anywhere;
}

.contact-detail-item {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
}

.contact-detail-text {
    min-width: 0;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 20px;
    height: 20px;
}

.contact-detail-text h4 {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 4px;
}

.contact-detail-text p, .contact-detail-text a {
    color: #94a3b8;
    font-size: 15px;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.contact-detail-text a:hover {
    color: var(--accent);
}

.contact-form-panel {
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
}

.contact-form-panel h3 {
    font-size: 24px;
    margin-bottom: 30px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-full {
    grid-column: span 2;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-light);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background-color: #f8fafc;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--accent);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.15);
}

textarea.form-control {
    resize: vertical;
    min-height: 140px;
}

.contact-form-panel .btn {
    width: 100%;
}

.form-status {
    margin-top: 16px;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    display: none;
    text-align: center;
}

.form-status.success {
    display: block;
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-status.error {
    display: block;
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* Map Section */
.map-section {
    height: 450px;
    background-color: #e2e8f0;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f1f5f9;
    color: var(--text-muted);
}

.map-placeholder svg {
    color: var(--accent);
    margin-bottom: 12px;
    width: 48px;
    height: 48px;
}

/* Product Detail Table Specifications */
.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    font-size: 15px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
}

.spec-table tr {
    border-bottom: 1px solid var(--border-color);
}

.spec-table tr:last-child {
    border-bottom: none;
}

.spec-table td {
    padding: 16px 20px;
    color: var(--text-dark);
    vertical-align: middle;
}

.spec-table td:first-child {
    font-weight: 600;
    color: var(--primary);
    width: 35%;
    background-color: rgba(15, 23, 42, 0.02);
    border-right: 1px solid var(--border-color);
}

.spec-table td:last-child {
    color: var(--text-muted);
}

/* Product Detail Page Showcase Layout */
.product-detail-showcase {
    display: grid;
    grid-template-columns: 5fr 5fr;
    gap: 60px;
    margin-bottom: 60px;
    align-items: center;
}

.detail-img-container {
    height: 380px;
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.thumb-item:hover {
    border-color: var(--accent) !important;
    opacity: 0.9;
}

.product-detail-specs {
    display: grid;
    grid-template-columns: 6fr 4fr;
    gap: 50px;
}

/* Product Detail Responsive adjustments */
@media (max-width: 992px) {
    .product-detail-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .detail-img-container {
        height: 320px;
    }
    
    .product-detail-specs {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .detail-img-container {
        height: 240px;
    }
    
    #detail-name {
        font-size: 28px !important;
    }
    
    .spec-table td {
        display: block;
        width: 100% !important;
        border-right: none !important;
        padding: 10px 15px;
    }
    
    .spec-table td:first-child {
        background-color: rgba(15, 23, 42, 0.02);
        border-bottom: 1px solid var(--border-color);
    }
    
    #detail-inquire-btn {
        max-width: 100% !important;
    }
}

/* Footer Styles */
footer {
    background-color: var(--primary);
    color: var(--text-light);
    padding: 80px 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 0.8fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-col {
    min-width: 0;
}

.footer-col h4 {
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 24px;
    font-weight: 700;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent);
}

.footer-about p {
    color: #94a3b8;
    font-size: 15px;
    margin-top: 20px;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
}

.footer-social-link:hover {
    background-color: var(--accent);
    color: var(--bg-white);
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: #94a3b8;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-link:hover {
    color: var(--accent);
    padding-left: 6px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    color: #94a3b8;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.footer-contact-item svg {
    color: var(--accent);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-item a {
    color: #94a3b8;
}

.footer-contact-item a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: #64748b;
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a:hover {
    color: var(--accent);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* Responsive adjustments */
@media (max-width: 1024px) {
    .section {
        padding: 80px 0;
    }
    
    .about-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .top-bar {
        display: none !important;
    }
    
    header {
        top: 0;
    }
    
    .hero {
        height: auto;
        min-height: 100vh;
        min-height: 100dvh;
        padding-top: calc(var(--header-height) + 50px);
        padding-bottom: 50px;
        overflow: visible;
    }
    
    header .logo {
        display: flex !important;
    }
    
    .header-logo {
        height: 45px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .hero h1 {
        font-size: 38px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group-full {
        grid-column: span 1;
    }
    
    .contact-info-panel, .contact-form-panel {
        padding: 30px 20px;
    }
    
    .contact-info-panel > p {
        margin-bottom: 25px;
    }
    
    .contact-detail-item {
        margin-bottom: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Premium Page Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background-color: #ffffff;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.6s;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-wrapper {
    position: relative;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid rgba(11, 46, 89, 0.05);
    border-top: 3px solid var(--accent);
    border-radius: 50%;
    animation: loader-spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.loader-ring::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border: 2px solid transparent;
    border-bottom: 2px solid var(--primary);
    border-radius: 50%;
    animation: loader-spin-reverse 1s linear infinite;
}

.loader-logo {
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: loader-pulse 2s ease-in-out infinite;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9998;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    box-shadow: 0 6px 20px rgba(18, 140, 126, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

/* Keyframes */
@keyframes loader-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes loader-spin-reverse {
    0% { transform: rotate(360deg); }
    100% { transform: rotate(0deg); }
}

@keyframes loader-pulse {
    0%, 100% { transform: scale(0.92); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ==========================================
   EXPORT MAP SECTION
   ========================================== */
.export-map-section {
    background: linear-gradient(135deg, #0b2e59 0%, #14466b 50%, #0b2e59 100%);
    padding: 100px 0;
    overflow: hidden;
}

.export-map-section .section-header span {
    color: #ca933e;
}
.export-map-section .section-header h2 {
    color: #ffffff;
}
.export-map-section .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.export-map-container {
    max-width: 900px;
    margin: 0 auto;
}

.world-map-svg {
    width: 100%;
    margin-bottom: 50px;
}

.world-map-svg svg {
    width: 100%;
    height: auto;
}

.map-continent {
    fill: rgba(255, 255, 255, 0.08);
    stroke: rgba(255, 255, 255, 0.15);
    stroke-width: 1;
    transition: fill 0.3s ease;
}

.map-india {
    fill: rgba(202, 147, 62, 0.35);
    stroke: #ca933e;
    stroke-width: 1.5;
    animation: indiaGlow 3s ease-in-out infinite;
}

@keyframes indiaGlow {
    0%, 100% { fill: rgba(202, 147, 62, 0.25); }
    50% { fill: rgba(202, 147, 62, 0.45); }
}

/* Animated Export Route Lines - Continuous flowing dashes */
.export-route {
    stroke: #ca933e;
    stroke-width: 1.5;
    stroke-dasharray: 12 6;
    stroke-opacity: 0.5;
    fill: none;
}

.export-route.route-1 { animation: routeFlow 1.8s linear infinite; }
.export-route.route-2 { animation: routeFlow 2.2s linear infinite 0.2s; }
.export-route.route-3 { animation: routeFlow 1.6s linear infinite 0.4s; }
.export-route.route-4 { animation: routeFlow 1.4s linear infinite 0.1s; }
.export-route.route-5 { animation: routeFlow 1.8s linear infinite 0.3s; }
.export-route.route-6 { animation: routeFlow 1.5s linear infinite 0.5s; }
.export-route.route-7 { animation: routeFlow 2.0s linear infinite 0.15s; }
.export-route.route-8 { animation: routeFlow 2.4s linear infinite 0.35s; }

@keyframes routeFlow {
    0% { stroke-dashoffset: 36; }
    100% { stroke-dashoffset: 0; }
}

/* Hidden paths for animateMotion */
.hidden-path {
    visibility: hidden;
}

/* Traveling Dot Particles */
.traveling-dot {
    opacity: 0.9;
}

/* Destination Dots - Continuous pulse */
.export-dot {
    fill: #e6b84d;
    opacity: 1;
}

.export-dot.dot-1 { animation: dotPulse 2.5s ease-in-out infinite 0s; }
.export-dot.dot-2 { animation: dotPulse 2.5s ease-in-out infinite 0.3s; }
.export-dot.dot-3 { animation: dotPulse 2.5s ease-in-out infinite 0.6s; }
.export-dot.dot-4 { animation: dotPulse 2.5s ease-in-out infinite 0.9s; }
.export-dot.dot-5 { animation: dotPulse 2.5s ease-in-out infinite 1.2s; }
.export-dot.dot-6 { animation: dotPulse 2.5s ease-in-out infinite 1.5s; }
.export-dot.dot-7 { animation: dotPulse 2.5s ease-in-out infinite 1.8s; }
.export-dot.dot-8 { animation: dotPulse 2.5s ease-in-out infinite 2.1s; }

@keyframes dotPulse {
    0%, 100% { r: 4; opacity: 0.7; }
    50% { r: 6; opacity: 1; }
}

/* Destination Pulse Rings */
.dest-ring {
    fill: none;
    stroke: #ca933e;
    stroke-width: 1;
    opacity: 0;
}

.dest-ring.ring-1 { animation: ringExpand 3s ease-out infinite 0s; }
.dest-ring.ring-2 { animation: ringExpand 3s ease-out infinite 0.4s; }
.dest-ring.ring-3 { animation: ringExpand 3s ease-out infinite 0.8s; }
.dest-ring.ring-4 { animation: ringExpand 3s ease-out infinite 1.2s; }
.dest-ring.ring-5 { animation: ringExpand 3s ease-out infinite 1.6s; }
.dest-ring.ring-6 { animation: ringExpand 3s ease-out infinite 2.0s; }
.dest-ring.ring-7 { animation: ringExpand 3s ease-out infinite 2.4s; }
.dest-ring.ring-8 { animation: ringExpand 3s ease-out infinite 2.8s; }

@keyframes ringExpand {
    0% { r: 5; opacity: 0.6; stroke-width: 2; }
    100% { r: 18; opacity: 0; stroke-width: 0.5; }
}

/* India Origin Dot - pulsing with glow */
.export-origin {
    fill: #e6b84d;
    animation: originPulse 2s ease-in-out infinite;
}

@keyframes originPulse {
    0%, 100% { r: 7; opacity: 1; }
    50% { r: 10; opacity: 0.7; }
}

/* Origin Radar Rings */
.origin-radar {
    fill: none;
    stroke: #ca933e;
    stroke-width: 1.5;
    opacity: 0;
}

.origin-radar.radar-1 {
    animation: radarSweep 3s ease-out infinite;
}

.origin-radar.radar-2 {
    animation: radarSweep 3s ease-out 1.5s infinite;
}

@keyframes radarSweep {
    0% { r: 10; opacity: 0.7; stroke-width: 2; }
    100% { r: 45; opacity: 0; stroke-width: 0.3; }
}

/* Map Label */
.map-label {
    font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-anchor: middle;
    fill: transparent;
}

.map-label-india {
    fill: #ca933e;
    opacity: 0.8;
    animation: labelFade 3s ease-in-out infinite;
}

@keyframes labelFade {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Country Tags Grid */
.export-countries-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.export-country-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    padding: 10px 20px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-body);
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.export-country-tag:hover {
    background: rgba(202, 147, 62, 0.15);
    border-color: rgba(202, 147, 62, 0.4);
    color: #ffffff;
    transform: translateY(-2px);
}

.country-flag {
    font-size: 18px;
    line-height: 1;
}

/* ==========================================
   WHY CHOOSE US SECTION
   ========================================== */
.why-choose-section {
    background: #f8fafc;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 28px;
    text-align: center;
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ca933e, #e6b84d);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(11, 46, 89, 0.08);
    border-color: rgba(202, 147, 62, 0.2);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #ca933e, #e6b84d);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: transform 0.3s ease;
}

.why-card:hover .why-card-icon {
    transform: scale(1.1) rotate(-5deg);
}

.why-card-icon svg {
    width: 28px;
    height: 28px;
    color: #ffffff;
}

.why-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.why-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ==========================================
   INDUSTRIES WE SERVE SECTION
   ========================================== */
.industries-section {
    background: #ffffff;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.industry-card {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.industry-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ca933e, #e6b84d);
    transition: width 0.4s ease;
}

.industry-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(11, 46, 89, 0.07);
    border-color: rgba(202, 147, 62, 0.25);
    background: linear-gradient(135deg, #ffffff, #fefce8);
}

.industry-card:hover::after {
    width: 60%;
}

.industry-icon {
    font-size: 40px;
    margin-bottom: 16px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.industry-card:hover .industry-icon {
    transform: scale(1.2);
}

.industry-card h4 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.industry-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==========================================
   RESPONSIVE ADJUSTMENTS FOR NEW SECTIONS
   ========================================== */
@media (max-width: 992px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .export-map-section {
        padding: 60px 0;
    }
    .world-map-svg {
        margin-bottom: 30px;
    }
    .export-country-tag {
        padding: 8px 14px;
        font-size: 12px;
    }
    .country-flag {
        font-size: 15px;
    }
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .why-card {
        padding: 30px 24px;
    }
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .industry-card {
        padding: 28px 24px;
    }
}

/* Certificate Modal & Card Styles */
.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.certificate-card:hover {
    transform: translateY(-5px);
}

.certificate-img-wrapper:hover .cert-img {
    transform: scale(1.05);
}

.cert-close:hover {
    color: var(--accent) !important;
}
