body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f4f4f4;
}

header{
display:flex;
justify-content:space-between;
align-items:center;
background: white;
color: #198754;
padding:15px;
border-top: 5px solid #198754;
}

header h2{
color: #198754;
font-weight:bold;
font-size:28px;
font-style:italic;
text-shadow:2px 2px 4px rgba(0,0,0,0.2);
}

.logo img {
    height: 50px; /* Adjust this height as needed to fit your header */
    width: auto;
    display: block;
}

nav {
    display: flex;
    align-items: center;
}

nav a {
    color: #198754;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 15px;
    transition: background 0.3s ease, color 0.3s ease;
    border-radius: 5px;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 220px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
    z-index: 1000;
    border-radius: 5px;
    top: 100%;
    left: 0;
    border: 1px solid rgba(25, 135, 84, 0.1);
    padding: 5px 0;
}

.dropdown-content a {
    color: #198754;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    border-radius: 0;
    font-weight: 500;
}

.dropdown:hover .dropdown-content {
    display: block;
}

nav a:hover {
    color: #146c43;
    background-color: rgba(25, 135, 84, 0.1);
}

/* Fire Letter Effect */
.fire-letter{
color:#dc3545;
font-weight:bold;
font-size:inherit;
text-shadow:
0 0 5px #ff6b35,
0 0 10px #ff4500,
0 0 15px #ff2400,
0 0 20px #ff0000,
2px 2px 4px rgba(255,69,0,0.6);
animation:fireGlow 1.5s ease-in-out infinite;
}

@keyframes fireGlow{
0%, 100%{
text-shadow:
0 0 5px #ff6b35,
0 0 10px #ff4500,
0 0 15px #ff2400,
0 0 20px #ff0000,
2px 2px 4px rgba(255,69,0,0.6);
}
50%{
text-shadow:
0 0 8px #ff6b35,
0 0 15px #ff4500,
0 0 20px #ff2400,
0 0 25px #ff0000,
0 0 30px #ff1a00,
2px 2px 4px rgba(255,69,0,0.8);
}
}

.hero{
    position: relative;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.product-hero {
    position: relative;
    height: 350px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5); /* Darkens the background for text readability */
    padding: 40px;
    max-width: 800px;
    border-radius: 10px;
}

.hero button{
padding:12px 20px;
background:#0d6efd;
border:none;
color:white;
cursor:pointer;
}

#products{
text-align:center;
padding:40px;
}

.product-container{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.product{
background:white;
border:1px solid #ddd;
padding:20px;
width:200px;
border-radius:8px;
text-align:center;
}

.product-label {
    font-weight: bold;
    color: #0d6efd; /* A distinct color for labels */
}
.product button{
background:#28a745;
color:white;
border:none;
padding:10px;
cursor:pointer;
}

#cart{
padding:40px;
text-align:center;
}

footer{
background:#222;
color:white;
padding:40px 20px 20px;
text-align: left;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
    gap: 30px;
}

.footer-left, .footer-right {
    flex: 1;
    min-width: 280px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.footer-contact-item a {
    color: white;
    text-decoration: none;
}

.footer-right p {
    margin: 5px 0;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.footer-social-icons a {
    transition: transform 0.2s ease;
}

/* About Us Slideshow & Green Navbar */
.about-hero {
    position: relative;
    height: 450px;
    overflow: hidden;
    background: #000;
}

.about-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    left: 0;
    top: 0;
    transition: transform 1.5s ease-in-out;
    transform: translateX(-100%); /* Reverse slide starts from left */
}

.about-slide.active {
    transform: translateX(0);
}

.about-slide.exit {
    transform: translateX(100%);
}

.green-navbar {
    background: #198754;
    padding: 15px 0;
    display: flex;
    justify-content: center;
    gap: 40px;
    border-radius: 0; /* Right angled */
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.footer-social-icons a:hover {
    transform: scale(1.2);
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #444;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

/* Featured Product Section Styling */
.featured-product{
background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
padding:60px 20px;
text-align:center;
border-top:5px solid #dc3545;
border-bottom:5px solid #198754;
}

.featured-product h2{
font-size:24px;
margin:10px 0;
font-weight:bold;
}

.highlight-green{
color:#198754;
font-weight:bold;
font-size:26px;
}

.highlight-red{
color:#dc3545;
font-weight:bold;
font-size:26px;
}

.product-title{
color:#222;
font-size:42px;
margin:20px 0;
font-weight:bold;
text-transform:uppercase;
letter-spacing:1px;
}

.featured-split {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 40px auto;
    text-align: left;
    flex-wrap: wrap;
}

.featured-split-image, .featured-split-text {
    flex: 1;
    min-width: 300px;
}

.featured-split-text h3 {
    color: #dc3545; /* Red */
    font-weight: bold;
    font-size: 28px;
    margin-bottom: 20px;
}

.featured-split-text p {
    color: #198754; /* Green */
    line-height: 1.8; /* Professional spacing for readability */
    font-size: 18px;
}

.featured-split-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-title strong{
color:#dc3545;
}

.features{
margin:30px 0;
}

.feature-item h3{
color:#198754;
font-size:28px;
margin:15px 0;
font-weight:bold;
}

.feature-highlight{
font-size:20px;
color:#dc3545;
font-weight:bold;
letter-spacing:2px;
margin:15px 0;
}

.product-description{
font-size:18px;
color:#333;
max-width:800px;
margin:30px auto;
line-height:1.6;
}

.benefits-grid{
display:grid;
grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));
gap:20px;
max-width:900px;
margin:40px auto;
padding:20px;
}

.benefit{
background:white;
padding:20px;
border-radius:8px;
box-shadow:0 4px 6px rgba(0,0,0,0.1);
transition:transform 0.3s ease;
}

.benefit:hover{
transform:translateY(-5px);
box-shadow:0 6px 12px rgba(0,0,0,0.15);
}

.benefit h4{
margin:10px 0;
font-size:18px;
}

.green-text{
color:#198754 !important;
font-weight:bold;
}

.red-text{
color:#dc3545 !important;
font-weight:bold;
}

.cta-text{
font-size:18px;
color:#222;
margin:30px 0;
font-weight:bold;
}

.cta-button{
background:linear-gradient(135deg, #198754 0%, #dc3545 100%);
color:white;
border:none;
padding:15px 40px;
font-size:18px;
font-weight:bold;
cursor:pointer;
border-radius:5px;
transition:transform 0.3s ease, box-shadow 0.3s ease;
margin-top:20px;
}

.cta-button:hover{
transform:scale(1.05);
box-shadow:0 6px 20px rgba(220,53,69,0.4);
}

/* Product Carousel Styling */
.carousel-section{
padding:60px 20px;
background:linear-gradient(135deg, #198754 0%, #333 100%);
text-align:center;
}

.carousel-section h2{
color:white;
font-size:36px;
margin-bottom:40px;
font-weight:bold;
text-transform:uppercase;
letter-spacing:2px;
}

.carousel-container{
max-width:1200px;
margin:0 auto;
overflow:hidden;
background:white;
border-radius:10px;
box-shadow:0 8px 24px rgba(0,0,0,0.2);
padding:20px;
}

.carousel-wrapper{
overflow:hidden;
}

.carousel-track{
display:flex;
transition:transform 0.6s ease-in-out;
gap:20px;
}

.carousel-item{
min-width:280px;
flex-shrink:0;
background:white;
border:2px solid #198754;
border-radius:8px;
padding:20px;
text-align:center;
transition:transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-item:hover{
transform:translateY(-10px);
box-shadow:0 10px 25px rgba(25,135,84,0.3);
border-color:#dc3545;
}

.carousel-item img{
width:100%;
height:250px;
object-fit:cover;
border-radius:5px;
margin-bottom:15px;
}

.carousel-item h3{
color:#198754;
font-size:20px;
margin:15px 0;
font-weight:bold;
}

.carousel-item p{
color:#666;
font-size:14px;
}

.carousel-controls{
display:flex;
justify-content:center;
gap:20px;
margin-top:30px;
}

.carousel-btn{
background:linear-gradient(135deg, #198754 0%, #dc3545 100%);
color:white;
border:none;
padding:12px 25px;
font-size:16px;
font-weight:bold;
cursor:pointer;
border-radius:5px;
transition:transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-btn:hover{
transform:scale(1.08);
box-shadow:0 6px 20px rgba(220,53,69,0.4);
}

/* Services Section Styling */
#services{
padding:40px;
text-align:center;
background:#f8f9fa;
}

#services h2 {
    color: #0f5132;
}

#services > p {
    color: #198754;
}

.services-list{
display:grid;
grid-template-columns:repeat(auto-fit, minmax(300px, 1fr));
gap:20px;
max-width:1200px;
margin:40px auto;
}

.service-item{
background:white;
padding:20px;
border-radius:8px;
box-shadow:0 2px 5px rgba(0,0,0,0.1);
text-align:left;
}

.service-item h3{
color: #0f5132;
font-size:22px;
margin-bottom:10px;
}

.service-item ul{
margin:10px 0;
padding-left:20px;
color: #198754;
}

.service-item li{
margin:5px 0;
color: #198754;
}

.service-item p{
margin:10px 0;
color: #198754;
}

.carousel-btn:active{
transform:scale(0.95);
}

/* Auto-scroll animation */
@keyframes slideRight{
from{
transform:translateX(-100%);
}
to{
transform:translateX(0);
}
}

@keyframes slideLeft{
from{
transform:translateX(0);
}
to{
transform:translateX(-100%);
}
}

/* Contact Form Styling */
#contact {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.contact-container {
    display: flex;
    gap: 40px;
    text-align: left;
    flex-wrap: wrap;
    margin-top: 30px;
}

.contact-left, .contact-right {
    flex: 1;
    min-width: 300px;
}

.contact-info {
    font-size: 18px;
    line-height: 1.6;
}

#contactForm {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

#contactForm input, #contactForm textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

#contactForm button {
    background: #198754;
    color: white;
    border: none;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
}

#contactForm button:hover {
    background: #146c43;
}

.contact-info a {
    color: #198754;
    text-decoration: none;
    font-weight: bold;
}

.social-links {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.social-links a {
    display: block;
    color: #333;
    text-decoration: none;
    margin: 10px 0;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #dc3545;
}

.admin-link {
    color: #888;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.admin-link:hover {
    color: #ffc107;
}

/* Admin Auth Styling */
#auth-container {
    max-width: 400px;
    margin: 50px auto;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

#adminContent .container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 20px auto;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

#adminContent .container input[type="text"],
#adminContent .container textarea,
#adminContent .container select,
#adminContent .container input[type="file"] {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
#auth-container h2 {
    color: #198754;
    margin-bottom: 25px;
    font-size: 28px;
}

#auth-container input {
    width: calc(100% - 24px); /* Account for padding */
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

#auth-container button {
    background: #0d6efd;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
    margin: 5px;
}

#auth-container button:hover {
    background: #0b5ed7;
}

#auth-message {
    margin-bottom: 15px;
    font-weight: bold;
}

.product-list {
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.product-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.container {
    max-width: 1000px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    color: white;
}

/* Styling for dynamic products on product.html */
#dynamic-products .product-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.info-cards-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px auto;
    flex-wrap: wrap;
    max-width: 1100px;
}

.info-card {
    flex: 1;
    min-width: 300px;
    background: #198754;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    transition: all 0.4s ease;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    color: white;
}

.info-card:hover {
    background-color: #198754;
    transform: translateY(-10px);
    cursor: pointer;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
}

.why-choose-us h2 {
    color: #8B4513; /* Brown */
    font-weight: bold;
    font-size: 32px;
    max-width: 1200px;
    margin: 0 auto 40px;
    text-align: left;
}

.why-choose-container {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    flex-wrap: wrap;
}

.why-choose-cards {
    flex: 1.5;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    text-align: left;
}

.why-card {
    background-color: #e8f5e9; /* Light Green */
    padding: 20px;
    border-radius: 8px;
    font-weight: bold;
    color: #198754;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border-left: 5px solid #198754;
}

.why-choose-image {
    flex: 1;
    min-width: 300px;
}

.why-choose-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.info-card:hover h3, .info-card:hover p {
    color: white !important;
}

/* Chatbot Styling */
.chatbot-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 2000;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.chatbot-toggle {
    width: 60px;
    height: 60px;
    background: #198754;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 30px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
}

.chatbot-window {
    display: none;
    width: 320px;
    height: 450px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    flex-direction: column;
    overflow: hidden;
    position: absolute;
    bottom: 80px;
}

.chatbot-header button {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.chatbot-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #f9f9f9;
}

.bot-msg, .user-msg {
    padding: 10px 15px;
    border-radius: 15px;
    max-width: 85%;
    font-size: 14px;
    line-height: 1.4;
}

.bot-msg { background: #e8f5e9; color: #198754; align-self: flex-start; }
.user-msg { background: #198754; color: white; align-self: flex-end; }

.chatbot-input {
    padding: 15px;
    display: flex;
    border-top: 1px solid #eee;
}

.chatbot-input input { flex: 1; border: 1px solid #ddd; padding: 8px; border-radius: 5px; outline: none; }
.chatbot-input button { background: #198754; color: white; border: none; padding: 0 15px; border-radius: 5px; margin-left: 5px; cursor: pointer; }

/* Hamburger Menu default hidden */
.hamburger {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Header and Navigation */
    header {
        flex-direction: row;
        padding: 10px 20px;
        position: relative;
    }
    
    .hamburger {
        display: block;
        font-size: 28px;
        cursor: pointer;
        color: #198754;
    }

    nav {
        position: fixed;
        top: 0;
        left: -250px; /* Hidden by default on left sidebar as requested */
        width: 250px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding-top: 60px;
        box-shadow: 2px 0 5px rgba(0,0,0,0.1);
        transition: left 0.3s ease-in-out;
        z-index: 2000;
        margin: 0;
    }
    
    nav.active {
        left: 0;
    }

    nav a {
        padding: 15px 20px;
        font-size: 16px;
        width: 100%;
        box-sizing: border-box;
        border-bottom: 1px solid #eee;
    }
    
    .dropdown {
        width: 100%;
    }
    
    .dropdown-content {
        position: relative;
        box-shadow: none;
        border: none;
        border-bottom: 1px solid #eee;
        min-width: 100%;
        padding-left: 15px;
    }

    /* Hero Sections */
    .hero, .product-hero, .about-hero {
        height: auto;
        min-height: 350px;
        padding: 40px 20px;
    }
    .hero-overlay {
        padding: 20px;
        margin: 20px;
    }
    header h2, .product-title {
        font-size: 22px;
    }

    /* Arrange products/images in 2 columns on smaller displays */
    .product-container {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
        padding: 0 15px !important;
        max-width: 100% !important;
        overflow: hidden;
    }
    .product {
        width: 100% !important;
        box-sizing: border-box;
        overflow: hidden;
    }
    .product img {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .carousel-item {
        min-width: calc(50% - 10px) !important;
    }

    /* Other Grids - 2 columns */
    .benefits-grid, .why-choose-cards {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    /* Info cards - single column stack on mobile */
    .info-cards-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
        padding: 0 15px !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .info-card {
        min-width: 0 !important;
        width: 100% !important;
        padding: 20px !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        overflow: visible !important;
    }

    .info-card p, .info-card h3 {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        max-width: 100% !important;
    }

    /* The inline-styled image div inside info-cards */
    .info-cards-container > div {
        min-width: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .info-cards-container > div img {
        width: 100% !important;
        height: auto !important;
    }

    /* Override inline grids for projects/certificates if needed */
    section.container[style*="grid"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    /* Split sections become single column */
    .featured-split, .contact-container, .footer-container {
        flex-direction: column !important;
        align-items: center;
        text-align: center;
    }
    
    .featured-split {
        padding: 0 15px !important;
    }

    .featured-split-image, .featured-split-text {
        min-width: 0 !important;
        width: 100% !important;
    }
    
    .featured-split-text {
        text-align: center;
    }

    /* Adjust product images to ensure they fit well in 2-column layout */
    .product img, .carousel-item img, section.container[style*="grid"] img {
        height: 150px !important; 
        object-fit: cover;
    }

    /* Prevent horizontal overflow globally */
    body {
        overflow-x: hidden;
    }

    /* Constrain all sections and containers to viewport */
    section, .container, .product-showcase {
        max-width: 100% !important;
        box-sizing: border-box;
    }

    /* Reset min-widths that cause overflow */
    .why-card, .service-item, .contact-left, .contact-right, .carousel-item, .why-choose-image {
        min-width: 0 !important;
    }

    /* Featured product section padding */
    .featured-product {
        padding: 20px 15px !important;
    }

    .product-showcase {
        padding: 0 !important;
    }

    /* Footer adjustments */
    .footer-left, .footer-right {
        min-width: 100%;
        text-align: center;
    }
    .footer-contact-item {
        justify-content: center;
    }
    .footer-social-icons, .payment-methods {
        justify-content: center;
    }
    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .product h3, .carousel-item h3 {
        font-size: 14px !important;
    }
    .product button, .carousel-btn {
        padding: 8px 10px;
        font-size: 12px;
    }
    .hero-overlay h1 {
        font-size: 20px;
    }
    .hero-overlay p {
        font-size: 14px;
    }
}