*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    line-height:1.6;
    color:#333;
}

/* Navigation */

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 10%;
    background:#fff;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.logo {
    font-size: 24px;
    font-weight: bold;
    font-style: italic;
    font-family: 'Playfair Display', serif;
    color: #e75480;
}

.navbar {
    padding: 10px 80px;
    min-height: 90px;
}

.logo img {
    height: 85px;
    width: auto;
}
nav ul{
    display:flex;
    list-style:none;
}

nav ul li{
    margin-left:20px;
}

nav ul li a{
    text-decoration:none;
    color:#333;
    font-weight:500;
}

/* Hero Section */

.hero{
    height:90vh;
    background:linear-gradient(rgba(0,0,0,0.4),
    rgba(0,0,0,0.4)),
    url('https://via.placeholder.com/1600x900');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.hero-content{
    color:white;
}

.hero-logo{
    width:150px;
    height:150px;
    object-fit:contain;
    margin-bottom:20px;
}

.hero h1{
    font-size:55px;
    margin-bottom:15px;
}

.hero p{
    font-size:20px;
    margin-bottom:25px;
}

.btn{
    display:inline-block;
    padding:12px 25px;
    background:#e75480;
    color:white;
    text-decoration:none;
    border-radius:30px;
}

/* Products */

.products{
    padding:80px 10%;
}

.products h2{
    text-align:center;
    margin-bottom:40px;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.product-card{
    background:white;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 4px 15px rgba(0,0,0,0.1);
    transition:0.3s;
}

.product-card:hover{
    transform:translateY(-8px);
}

.product-card img{
    width:100%;
}

.product-card h3{
    padding:15px;
}

.product-card p{
    padding:0 15px;
}

.product-card span{
    display:block;
    padding:10px 15px;
    color:#e75480;
    font-weight:bold;
}

.product-card button,
.product-card .view-details-btn{
    display:block;
    margin:15px;
    width:calc(100% - 30px);
    padding:10px;
    border:none;
    background:#e75480;
    color:white;
    border-radius:5px;
    cursor:pointer;
    text-align:center;
    text-decoration:none;
    font-size:16px;
}

/* About */

.about{
    background:#fff4f7;
    padding:80px 10%;
    text-align:center;
}

.about p{
    max-width:800px;
    margin:auto;
}

/* Testimonials */

.testimonials{
    padding:80px 10%;
}

.testimonials h2{
    text-align:center;
    margin-bottom:30px;
}

.testimonial-container{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.testimonial{
    flex:1;
    min-width:250px;
    background:#f9f9f9;
    padding:25px;
    border-radius:10px;
}

/* Contact */

.contact{
    padding:80px 10%;
    background:#fafafa;
}

.contact h2{
    text-align:center;
    margin-bottom:30px;
}

form{
    max-width:600px;
    margin:auto;
}

input,
textarea{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:5px;
}

form button{
    width:100%;
    padding:12px;
    background:#e75480;
    color:white;
    border:none;
    border-radius:5px;
    cursor:pointer;
}

/* Footer */

footer{
    text-align:center;
    padding:20px;
    background:#222;
    color:white;
}

/* Mobile */

@media(max-width:768px){

    nav{
        flex-direction:column;
    }

    nav ul{
        margin-top:15px;
    }

    .hero h1{
        font-size:36px;
    }

    .hero p{
        font-size:16px;
    }
}
.hero{
    height:90vh;
    background:linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
    url('Img/hero-bg.png');
    background-size:cover;
    background-position:center;
    /* rest of your existing code */
}

/* Categories Section */
.categories-page {
    padding: 100px 8%;
    background: #fffafc;
    text-align: center;
}

.categories-page h1 {
    font-size: 42px;
    color: #e75480;
    margin-bottom: 15px;
}

.categories-page > p {
    max-width: 700px;
    margin: 0 auto 50px;
    color: #666;
    line-height: 1.6;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.category-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    padding-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.category-card h3 {
    margin: 20px 15px 10px;
    color: #e75480;
}

.category-card p {
    padding: 0 20px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

.whatsapp-btn {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 20px;
    transition: 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.05);
}

/* Social Media Section */
.social-media {
    background: #fff5f8;
    padding: 60px 20px;
    text-align: center;
}

.social-media h2 {
    color: #e85a8c;
    font-size: 2rem;
    margin-bottom: 15px;
}

.social-media p {
    color: #666;
    margin-bottom: 30px;
    font-size: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e85a8c;
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #d84a7d;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(232, 90, 140, 0.3);
}

.social-links i {
    font-size: 1.2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .social-links a {
        width: 220px;
        justify-content: center;
    }
}

/* HERO SECTION */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-tagline {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: #f8f8f8;
}

.hero p {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 35px;
    font-size: 1rem;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.btn {
    background: #e94f84;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: white;
    color: #333;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item h3 {
    font-size: 2rem;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.95rem;
    margin: 0;
}

/* MOBILE */

@media (max-width: 768px) {

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 30px;
    }
}