:root {
    --primary: #d4af37;
    --secondary: #1a1a1a;
    --gold: #d4af37;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
}

.navbar {
    background: rgba(26, 26, 26, 0.95);
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.98) !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    padding: 0.5rem 0 !important;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--gold) !important;
}

.nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 15px;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold) !important;
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)), url('https://ashirwadenterprises.com/img/2151989598.jpg') center/cover;
    height: 90vh;
    color: white;
    display: flex;
    align-items: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

.btn-gold {
    background: var(--gold);
    color: #000;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-gold:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
}

.section-title {
    position: relative;
    display: inline-block;
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 50px;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--gold);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.product-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.product-card img {
        object-fit: cover;
}

.about-img, .vision-mission {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.why-box {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: 0.3s;
}

.why-box:hover {
    background: var(--gold);
    color: white !important;
    transform: translateY(-10px);
}

.text-gold { color: var(--gold); }

.gold { color: var(--gold); }

footer {
    background: var(--secondary);
    color: #ddd;
}

footer a {
    color: var(--gold);
    text-decoration: none;
}

footer a:hover {
    color: white;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}