* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #DAA520, #B8860B);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
}

.logo .nature {
    color: #000;
}

.logo .x {
    color: #DAA520;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #DAA520;
    background: rgba(218, 165, 32, 0.1);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}


        .logo-container {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo-image {
            width: 150px;
            height: 50px;
            background: #f0f0f0;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
            font-size: 0.8rem;
        }

        .logo {
            font-size: 2.5rem;
            font-weight: bold;
        }

        .logo .nature {
            color: #000;
        }

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 300;
    color: #000;
}

.hero h1 .nature {
    color: #000;
}

.hero h1 .x {
    color: #DAA520;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #666;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: #DAA520;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(218, 165, 32, 0.4);
}

/* About Section */
.about {
    padding: 5rem 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #DAA520, #333);
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
}

/* Brands Section */
.brands {
    padding: 5rem 0;
    background: white;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.brand-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    text-decoration: none;
    color: inherit;
    height: 650px;
    display: flex;
    flex-direction: column;
}

.brand-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.brand-image {
    height: 200px;
    overflow: hidden;
    background: white;
    flex-shrink: 0;
    position: relative;
}

.brand-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    display: block;
}

/* Individual brand image customizations */
.oba-cafe .brand-image img {
    object-fit: contain;
}

.woodly .brand-image img {
    /* margin-top: 10px; */
    object-position: contain;
    height:fit-content;
    width: 200px;
    margin-left: 70px;
    margin-top: 10px;
}

.oba-food .brand-image img {
    object-fit: contain;
   
}

.naturex-chemicals .brand-image img {
    object-fit: contain;
   
}

.hotel-exclusive .brand-image img {
    object-position: center;
    padding-top: 10px;
    height:fit-content;
     object-position: contain;
    
    width: 250px;
    margin-left: 60px;
    margin-top: 10px;
}



/* Handle hover effects for scaled images */
.oba-cafe:hover .brand-image img {
    transform: scale(0.85);
}

.oba-food:hover .brand-image img {
    transform: scale(1.35);
}

.naturex-chemicals:hover .brand-image img {
    transform: scale(1.25);
}

.brand-card:hover .brand-image img {
    transform: scale(1.05);
}

.brand-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.brand-name {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.brand-name h3 {
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
}

.brand-description {
    flex-grow: 1;
    margin-bottom: 2rem;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
}

.brand-description p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
}

.brand-card:hover .brand-description p {
    -webkit-line-clamp: unset;
    display: block;
}

.brand-button {
    margin-top: auto;
    flex-shrink: 0;
    padding-bottom: 0.5rem;
}

.brand-button a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
    min-height: 50px;
}

.brand-button a:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Brand-specific colors */
.oba-cafe .brand-name h3 {
    color: #20B2AA;
}

.oba-cafe .brand-name .highlight {
    color: #DAA520;
}

.oba-cafe .brand-button a {
    background: linear-gradient(135deg, #20B2AA, #DAA520);
}

.woodly .brand-name h3 {
    color: #8B4513;
}

.woodly .brand-button a {
    background: linear-gradient(135deg, #8B4513, #DAA520);
}

.jolly-hippo .brand-name h3 {
    color: #000;
}

.jolly-hippo .brand-name .highlight {
    color: #ed26a1;
}

.jolly-hippo .brand-button a {
    background: linear-gradient(135deg, #000, gray);
}

.naturex-chemicals .brand-name h3 {
    color: #C40C0F;
}

.naturex-chemicals .brand-button a {
    background: linear-gradient(135deg, #C40C0F, black);
}

.trendworld .brand-name h3 {
    color: #000;
}

.trendworld .brand-name .highlight {
    color: #ed26a1;
}

.trendworld .brand-button a {
    background: linear-gradient(135deg, #000, #ed26a1);
}

.hotel-exclusive .brand-name h3 {
    color: black;
}

.hotel-exclusive .brand-button a {
    background: linear-gradient(135deg, black, #DAA520);
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: #DAA520;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.contact-item p {
    font-size: 1.1rem;
    color: #666;
}

.contact-item a {
    color: #DAA520;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #333;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #333;
    text-align: center;
    padding: 2rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .nav {
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .brands-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .brand-card {
        height: auto;
        min-height: 550px;
    }
}