:root {
    --primary-blue: #007bff;
    --deep-blue: #0056b3;
    --light-blue: #e3f2fd;
    --accent-blue: #00d2ff;
    --pure-white: #ffffff;
    --text-dark: #1a202c;
    --text-muted: #718096;
    --glass-white: rgba(255, 255, 255, 0.85);
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navbar Styling */
.navbar {
    transition: all 0.3s ease;
    padding: 1rem 0;
    backdrop-filter: blur(10px);
    background-color: transparent;
}

.navbar.scrolled {
    background-color: var(--glass-white);
    padding: 0.5rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.brand-aqua {
    color: var(--primary-blue);
}

.brand-panch {
    color: var(--text-dark);
}

.nav-link {
    font-weight: 600;
    color: var(--text-dark) !important;
    margin: 0 10px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10px;
    right: 10px;
    height: 2px;
    background-color: var(--primary-blue);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.8), rgba(0, 86, 179, 0.9)), 
                url('images/hero-bg.jpg') center/cover no-repeat;
    margin-top: -80px;
    padding-top: 80px;
}

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

/* Benefit Cards */
.benefit-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.1) !important;
}

.icon-box {
    display: inline-block;
    padding: 1.5rem;
    border-radius: 50%;
    background-color: var(--light-blue);
}

/* Product Cards */
.product-card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card:hover {
    transform: scale(1.02);
}

.product-card img {
    height: 300px;
    object-fit: contain;
}

/* Delivery Section */
.bg-white-10 {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Contact Section */
.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.1);
    border-color: var(--primary-blue);
}

.contact-info i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: var(--light-blue);
    border-radius: 50%;
}

/* Footer Styling */
footer .social-icons a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

footer .social-icons a:hover {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .navbar {
        background-color: var(--pure-white);
    }
    
    .hero-section {
        text-align: center;
        min-height: auto;
        padding: 120px 0 80px;
    }
    
    .display-3 {
        font-size: 2.5rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-section h1, .hero-section p, .hero-section .btn {
    animation: fadeIn 1s ease-out forwards;
}

.hero-section p { animation-delay: 0.3s; }
.hero-section .btn { animation-delay: 0.6s; }
