* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fafcfc;
    color: #1a2a3a;
    line-height: 1.6;
}

/* Top Bar */
.top-bar {
    background: #0b2b26;
    color: #e0f2e9;
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 0.85rem;
}

.top-bar i {
    margin-right: 6px;
}

/* Header */
.main-header {
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0px;
    padding: 8px 0;
}

.logo-area img {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: none;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 28px;
    margin: 0;
    padding: 0;
}

nav ul li {
    position: relative;
    list-style: none;
}

nav ul li a {
    text-decoration: none;
    font-weight: 600;
    color: #1e3a3a;
    padding: 28px 0;
    display: inline-block;
    transition: 0.2s;
}

nav ul li a:hover, nav ul li a.active {
    color: #c17b2e;
    border-bottom: 3px solid #c17b2e;
}

/* ========== DROPDOWN MENU - VERTICAL FIX ========== */
.dropdown {
    position: relative;
}

.dropdown > a {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    border: 1px solid #eef2f0;
    /* CRITICAL: Force vertical display */
    display: block !important;
    flex-direction: column !important;
}

/* Force submenu items to stack VERTICALLY (one below another) */
.dropdown-content li {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    float: none !important;
    clear: both !important;
}

.dropdown-content li a {
    display: block !important;
    padding: 12px 24px !important;
    color: #1e3a3a !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    font-size: 0.9rem !important;
    border-bottom: none !important;
    transition: all 0.25s ease !important;
    width: 100% !important;
    text-align: left !important;
    white-space: nowrap;
}

.dropdown-content li a:hover {
    background: #f5f0e8 !important;
    color: #c17b2e !important;
    padding-left: 30px !important;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
}

/* First level menu items styling */
nav > ul > li > a {
    padding: 28px 0;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(11,43,38,0.8), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1581092160562-40aa08e7882a?w=1600');
    background-size: cover;
    background-position: center;
    height: 60vh;
    min-height: 450px;
    display: flex;
    align-items: center;
}

.hero-overlay {
    width: 100%;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    color: white;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Page Hero */
.page-hero {
    background-size: cover;
    background-position: center;
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.page-hero-content {
    text-align: center;
    width: 100%;
    color: white;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #c17b2e;
    color: white;
}

.btn-primary:hover {
    background: #a0641f;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #c17b2e;
    border: 2px solid #c17b2e;
}

.btn-secondary:hover {
    background: #c17b2e;
    color: white;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 5%;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0b2b26;
    margin-bottom: 30px;
    border-left: 6px solid #c17b2e;
    padding-left: 20px;
}

/* Grids */
.grid-2, .two-column {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Cards */
.card {
    background: white;
    padding: 28px;
    border-radius: 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
    transition: 0.2s;
    border: 1px solid #e2ece9;
    text-align: center;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.card-icon {
    font-size: 2.5rem;
    color: #c17b2e;
    margin-bottom: 15px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.service-icon {
    font-size: 2.5rem;
    color: #c17b2e;
    margin-bottom: 20px;
}

/* Badge */
.badge {
    background: #c17b2e20;
    color: #b1651c;
    padding: 4px 12px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

/* Product Tags */
.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0;
}

.product-tags span {
    background: #eef4f2;
    padding: 8px 20px;
    border-radius: 40px;
    font-weight: 600;
}

/* Check List */
.check-list {
    list-style: none;
}

.check-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-list i {
    color: #c17b2e;
}

/* Certification Banner */
.certification-banner {
    background: linear-gradient(135deg, #0b2b26, #1a4a42);
    color: white;
    padding: 40px;
    border-radius: 28px;
    text-align: center;
    margin: 40px 0;
}

/* Product Category Large */
.product-category-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: white;
    border-radius: 32px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.product-category-large.reverse {
    direction: rtl;
}

.product-category-large.reverse .product-category-content {
    direction: ltr;
}

.product-category-image img {
    width: 100%;
    border-radius: 24px;
    height: 250px;
    object-fit: cover;
}

/* Quality Box */
.quality-box {
    background: #f0f7f4;
    padding: 30px;
    border-radius: 28px;
    margin: 40px 0;
}

.supply-info {
    background: #fff8f0;
    padding: 30px;
    border-radius: 28px;
    text-align: center;
}

/* Contact Forms */
.contact-info-card, .contact-form-card {
    background: white;
    padding: 30px;
    border-radius: 28px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contact-info-card h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: #0b2b26;
}

.contact-form-card input, .contact-form-card select, .contact-form-card textarea {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-family: inherit;
}

.map-container {
    margin-top: 40px;
}

.rounded-image {
    border-radius: 24px;
    width: 100%;
    height: auto;
}

.industry-card {
    background: #eef4f2;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    font-weight: 600;
}

/* Footer */
footer {
    background: #0b2b26;
    color: #cbdcd6;
    padding: 40px 5% 20px;
}

.footer-content {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-section a {
    color: #cbdcd6;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #2a534a;
    padding-top: 25px;
    margin-top: 30px;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: #c17b2e;
    text-decoration: none;
    transition: 0.2s;
    font-weight: 500;
}

.footer-bottom a:hover {
    color: #e0964a;
    text-decoration: underline;
}

/* Mobile Menu */
.menu-icon {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 800px) {
    .menu-icon {
        display: block;
    }
    
    nav ul {
        position: fixed;
        top: 110px;
        left: -100%;
        background: white;
        width: 75%;
        height: 100vh;
        flex-direction: column;
        padding: 30px 25px;
        gap: 15px;
        box-shadow: 5px 0 25px rgba(0,0,0,0.15);
        transition: 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }
    
    nav ul.active-mobile {
        left: 0;
    }
    
    nav ul li {
        width: 100%;
    }
    
    nav ul li a {
        display: block;
        padding: 12px 0;
        width: 100%;
    }
    
    /* Mobile dropdown fixes */
    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        display: none;
        box-shadow: none;
        padding-left: 20px;
        background: transparent;
        width: 100%;
        min-width: auto;
        border: none;
        margin-top: 5px;
    }
    
    .dropdown-content li a {
        padding: 10px 15px !important;
        white-space: normal;
        font-size: 0.85rem !important;
    }
    
    .dropdown-content li a:hover {
        background: #f0f7f2 !important;
        padding-left: 20px !important;
    }
    
    .dropdown.active-drop .dropdown-content {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .product-category-large {
        grid-template-columns: 1fr;
    }
    
    .product-category-large.reverse {
        direction: ltr;
    }
    
    .logo-area img {
        height: 70px;
    }
}

/* Small screens */
@media (max-width: 480px) {
    .logo-area img {
        height: 55px;
    }
    
    nav ul {
        top: 95px;
    }
    
    .dropdown-content li a {
        font-size: 0.8rem !important;
    }
}

/* MOBILE DROPDOWN FIX */

@media (max-width:800px){

    .dropdown-content{

        display:none !important;
        opacity:1;
        visibility:visible;

    }

    .dropdown.active-drop .dropdown-content{

        display:block !important;

    }

}