* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Muli', 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background: #f8f8f8;
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left a {
    color: #666;
    text-decoration: none;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

/* Header */
.main-header {
    background: white;
    padding: 20px 0;
    border-top: 4px solid #d9534f;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 77px;
    width: auto;
}

.header-email {
    font-size: 13px;
}

.header-email a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

/* Navigation */
.main-nav {
    background: #b53822;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.main-nav .container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
}

.nav-menu li {
    padding: 0 4px;
}

.nav-menu li a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 15px 12px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #000;
    font-weight: bold;
}

.portfolio-btn {
    background: #555;
    border-radius: 10px;
    padding: 8px 15px !important;
    margin-left: 10px;
}

.portfolio-btn:hover {
    background: #333;
    color: white !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: black;
    transition: 0.3s;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 475px;
    overflow: hidden;
    background: #000;
}

.slider-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(181, 56, 34, 0.3);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 30px;
    cursor: pointer;
    transition: background 0.3s;
    z-index: 10;
}

.slider-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
}

.slider-arrow.prev {
    left: 30px;
}

.slider-arrow.next {
    right: 30px;
}

/* About Section */
.about-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.content-main h1 {
    color: #000;
    font-size: 25px;
    margin-bottom: 20px;
    text-transform: none;
    border-bottom: 3px solid #d9534f;
    padding-bottom: 10px;
}

.content-main p {
    margin-bottom: 20px;
    text-align: justify;
    line-height: 1.8;
}

.read-more {
    color: #d9534f;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
}

.read-more:hover {
    color: #a01717;
}

.content-sidebar h3 {
    font-size: 14px;
    margin-bottom: 15px;
    color: #000;
    border-bottom: 3px solid #d9534f;
    padding-bottom: 10px;
}

.news-item {
    background: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.news-item img {
    width: 100%;
    height: auto;
}

.news-item p {
    padding: 15px;
    text-align: center;
    margin: 0;
}

/* Products Grid */
.products-grid {
    padding: 60px 0;
    background: white;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-box {
    text-align: center;
    transition: transform 0.3s;
}

.product-box:hover {
    transform: translateY(-10px);
}

.product-image {
    border: 3px solid #b0250a;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.product-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.product-box h3 {
    color: #5c5c5c;
    font-size: 18px;
    margin-bottom: 10px;
}

.product-box h3 a {
    color: #5c5c5c;
    text-decoration: none;
    transition: color 0.3s;
}

.product-box h3 a:hover {
    color: #d9534f;
}

.product-box p {
    color: #000;
    font-size: 14px;
}

/* Distributor CTA */
.distributor-cta {
    background: #b0250a;
    padding: 30px 0;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-content h2 {
    color: white;
    font-size: 22px;
    margin: 0;
}

.cta-button {
    background: #f7f7f7;
    color: #000;
    padding: 10px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s;
}

.cta-button:hover {
    background: white;
    transform: scale(1.05);
}

/* Footer */
.main-footer {
    background: #1a1a1a;
    color: white;
    padding: 50px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-column h4 {
    color: #d9534f;
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-logo {
    max-width: 180px;
    margin: 20px 0;
}

.footer-column p {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #d9534f;
}

.footer-bottom {
    background: #0d0d0d;
    padding: 20px 0;
    border-top: 1px solid #333;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: #88A4A7;
    transition: color 0.3s;
}

.social-links a:hover {
    color: white;
}

/* Mobile Header (hidden on desktop) */
.mobile-header {
    display: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Hide desktop navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: #b53822;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        transition: 0.3s;
        box-shadow: 2px 0 10px rgba(0,0,0,0.3);
        overflow-y: auto;
        padding: 80px 0 20px;
        justify-content: flex-start;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        padding: 0;
    }
    
    .nav-menu li a {
        padding: 15px 20px;
        display: block;
        width: 100%;
    }
    
    /* Show mobile header with logo and hamburger */
    .mobile-header {
        display: block;
        background: white;
        padding: 15px 0;
        position: relative;
        z-index: 1002;
    }
    
    .mobile-header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .mobile-header .logo img {
        height: 50px;
    }
    
    /* Show hamburger on mobile */
    .hamburger {
        display: flex;
        position: static;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    /* Hide desktop header on mobile */
    .main-header {
        display: none;
    }
    
    /* Adjust top bar */
    .top-bar {
        font-size: 12px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .hero-slider {
        height: 300px;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 24px;
    }
    
    .slider-arrow.prev {
        left: 10px;
    }
    
    .slider-arrow.next {
        right: 10px;
    }
    
    /* Overlay for mobile menu */
    .nav-menu.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
}

@media (max-width: 480px) {
    .content-main h1 {
        font-size: 20px;
    }
    
    .mobile-header .logo img {
        height: 45px;
    }
    
    .hero-slider {
        height: 250px;
    }
    
    .top-bar-left,
    .top-bar-right {
        font-size: 11px;
    }
}





.logo-wrapper {
    position: relative;
    display: inline-block;
}

/* Upar wale logos */
.top-logos {
    position: absolute;
    top: -10px;          /* overlap control */
    left: 0;
    display: flex;
    gap: 15px;
    z-index: 2;
}

.top-logos img {
    height: 80px;
    padding: 2px 4px;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* Main logo niche rahega */
.logo img {
    height: 77px;
    position: relative;
    z-index: 1;
}

@media (max-width: 480px) {

    .top-logos {
    position: absolute;
    top: -10px;          /* overlap control */
    left: 0;
    display: flex;
    gap: 8px;
    z-index: 2;
}

}

