/* Navbar Brand */
.navbar-brand {
    font-weight: 650; /* thoda bold */
    font-size: 1.5rem;
    margin-left: 20px;
    letter-spacing: 1px;
    color: #000;
}

/* Center Menu Links */
.navbar-nav.mx-auto .nav-link {
    font-weight: 500;
    font-size: 1rem;
    margin: 0 15px;
    position: relative;
    color: #000;
}

/* Hover underline effect for center menu */
.navbar-nav.mx-auto .nav-link::after {
    content: '';
    display: block;
    height: 2px;
    width: 0%;
    background: #000;
    transition: width 0.3s;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.navbar-nav.mx-auto .nav-link:hover::after {
    width: 100%;
}

/* Right Icons */
.navbar-nav.ms-auto .nav-link {
    color: #000;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 500px;
    background: url('../assets/images/hero1.jpg') center center/cover no-repeat; /* default image */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
    overflow: hidden;
    color: white; /* all text in hero white by default */
    transition: background 1s ease-in-out; /* smooth fade effect */
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.3); /* optional overlay for readability */
    z-index:1;
}


/* Dark overlay */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* Text above overlay */
.hero > .container {
    position: relative;
    z-index: 2;
    color: white; /* ensures all inner text is white */
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    color: white; /* heading white */
}

.hero p {
    font-size: 1.3rem;
    margin: 1rem 0;
    color: white; /* paragraph white */
}

.hero .btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    background-color: white; 
    color: black; /* button text white */
    border: none;
    border-radius: 5px;
    transition: transform 0.2s, background-color 0.2s;
}

.hero .btn:hover {
    transform: scale(1.05);
    color: black; /* button text remain white */
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1.1rem; }
}

@media (max-width: 768px) {
    .hero { height: 60vh; }
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 1rem; }
}

@media (max-width: 480px) {
    .hero { height: 50vh; }
    .hero h1 { font-size: 1.5rem; }
    .hero p { font-size: 0.9rem; }
    .hero .btn { padding: 0.6rem 1.5rem; font-size: 0.9rem; }
}

/* Categories Section */
.categories .category-card {
    display: inline-block;
    width: 150px;
    margin: 0.5rem;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    background-color: #fff;
}

.categories .category-card:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Products Section */
.product-card {
    transition: all 0.3s;
    overflow: hidden;
}

.product-card img {
    transition: all 0.3s;
}

.product-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.product-card:hover img {
    transform: scale(1.05) translateY(-5px);
}

/* About Boxes */
.about-box {
    background-color: #222;
    color: #ccc;
    padding: 2rem 1rem;
    border-radius: 10px;
    transition: all 0.3s;
    text-align: center;
    height: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.about-box h5 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #fff;
}

.about-box p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: lightgray;
}

.about-box:hover {
    background-color: #333;
    transform: translateY(-5px);
}

/* Contact Page Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    padding: 20px;
}

h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.form-label {
    font-weight: 500;
}

.form-control {
    border-radius: 5px;
    border: 1px solid #ccc;
}

.btn-primary {
    background-color: #25D366;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: transform 0.2s;
}

.btn-primary:hover {
    background-color: #128C7E;
    transform: scale(1.05);
}

p {
    text-align: center;
    margin-top: 20px;
    color: #666;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.2s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.footer {
      background: #111;
      color: #ccc;
      padding: 60px 0;
    }

    /* Quick Links */
    .footer-link {
      color: #ccc;
      text-decoration: none;
      display: block;
      margin-bottom: 6px;
      transition: 0.3s;
    }

    .footer-link:hover {
      color: #fff;
      margin-left: 4px;
    }

    /* Icons */
    .footer-icon {
      color: #ccc;
      transition: 0.3s;
      font-size: 26px;
    }

    .footer-icon:hover {
      color: #fff;
      transform: scale(1.15);
    }

    /* Contact section */
    .contact-item {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
      color: #ccc;
      font-size: 0.97rem;
    }

    .footer .col-md-4 {
      text-align: left;
    }

    .follow-icons {
      justify-content: center;
    }

    /* Contact Form Styling */
.contact-form input,
.contact-form textarea {
    border-radius: 5px;
    border: 1px solid #ccc;
    transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0,123,255,0.3);
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    font-size: 24px;
    padding: 12px 16px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: 0.3s;
    text-decoration: none;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    text-decoration: none;
}

 
