* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}
.navbar a.active {
    color: #e11d48;
}

.navbar a.active::after {
    width: 100%;
}


/* ===== ABOUT US SECTION ===== */

.about-section {
    max-width: 1200px;
    margin: auto;
    padding: 60px 40px;   /* controlled padding */
    background: #ffffff;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 35px;
}

/* Title full width */
.about-title {
    grid-column: span 2;
    text-align: center;
    margin-bottom: 30px;
}

.about-title h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #222;
}

.about-title p {
    color: #666;
    font-size: 16px;
}

/* Blocks */
.about-block {
    background: #ffffff;
    padding: 30px 35px;
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.05);
    margin: 0;              /* 🔴 removes black gaps */
}

.about-block.light {
    background: #fafafa;
}

.about-block h3 {
    font-size: 22px;
    color: #e11d48;
    margin-bottom: 12px;
}

.about-block p {
    font-size: 15.5px;
    line-height: 1.8;
    color: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .about-section {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }

    .about-title {
        grid-column: span 1;
    }
}




/* ===== HEADER ===== */
.header {
    width: 100%;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 80px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #ffffff;
}


.logo img {
    height: 150px;
}

.navbar {
    display: flex;
    gap: 40px;
}

.navbar a {
    text-decoration: none;
    color: #222;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s;
}

.navbar a:hover,
.navbar a.active {
    color: #e11d48;
}

.navbar a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #e11d48;
    left: 0;
    bottom: 0;
    transition: 0.3s;
}

.navbar a:hover::after,
.navbar a.active::after {
    width: 100%;
}

/* ===== SLIDER ===== */
.slider-container {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
}

.slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    object-fit: cover;
}

.slide.active {
    opacity: 1;
}

/* Buttons */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    font-size: 24px;
    padding: 10px 14px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
}

.prev { left: 25px; }
.next { right: 25px; }

.prev:hover, .next:hover {
    background: #e11d48;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .header {
        padding: 0 25px;
    }

    .navbar {
        display: none;
    }

    .slider-container {
        height: 220px;
    }
}
.product-section {
    padding: 20px 20px;
    background: #ffffff;
}

/* Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    justify-items: center;   /* 🔥 centers cards horizontally */
}

/* Card */
.product-card {
    background: linear-gradient(to bottom, #f9f9f9, #eeeeee);
    border-radius: 20px;
    padding: 40px;
    min-height: 420px;
    width: 100%;
    max-width: 420px;       /* 🔥 control card width */
    display: flex;
    flex-direction: column;
    align-items: center;    /* 🔥 center content horizontally */
    justify-content: center;/* 🔥 center content vertically */
    text-align: center;     /* 🔥 center text */
    transition: 0.4s ease;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

/* Image */
.product-image {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.product-image img {
    max-width: 280px;
    max-height: 280px;
    object-fit: contain;
    transition: 0.4s ease;
}

.product-card:hover img {
    transform: scale(1.08);
}

/* Info */
.product-info {
    text-align: center;
}

.product-info h3 {
    font-size: 26px;
    font-weight: 700;
    color: #111;
}

/* Responsive */
@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        max-width: 500px;
    }
}


/* ===== ABOUT US (LONG CONTENT) ===== */

.about-section {
    padding: 80px 120px;
    background: #ffffff;
}

.about-title {
    text-align: center;
    margin-bottom: 60px;
}

.about-title h2 {
    font-size: 36px;
    color: #222;
    margin-bottom: 10px;
}

.about-title p {
    font-size: 17px;
    color: #666;
}

/* Individual blocks */
.about-block {
    padding: 45px 50px;
    margin-bottom: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.about-block.light {
    background: #fafafa;
}

.about-block h3 {
    font-size: 26px;
    color: #e11d48;
    margin-bottom: 15px;
}

.about-block p {
    font-size: 16.5px;
    line-height: 1.9;
    color: #555;
}

/* Responsive */
@media (max-width: 992px) {
    .about-section {
        padding: 60px 40px;
    }

    .about-title h2 {
        font-size: 30px;
    }

    .about-block h3 {
        font-size: 22px;
    }
}

@media (max-width: 600px) {
    .about-section {
        padding: 40px 20px;
    }

    .about-block {
        padding: 30px 25px;
    }

    .about-title h2 {
        font-size: 26px;
    }
}

/* ===== CONTACT US ===== */

.contact-section {
    padding: 80px 120px;
    background: #fafafa;
}

.contact-title {
    text-align: center;
    margin-bottom: 60px;
}

.contact-title h2 {
    font-size: 36px;
    color: #222;
    margin-bottom: 10px;
}

.contact-title p {
    font-size: 17px;
    color: #666;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch;
}

/* Contact Info */
.contact-info {
    background: #ffffff;
    padding: 45px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.contact-info h3 {
    font-size: 26px;
    color: #e11d48;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 18px;
}

.contact-info strong {
    color: #222;
}

/* Contact Form */
.contact-form {
    background: #ffffff;
    padding: 45px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    transition: border 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #e11d48;
}

.contact-btn {
    background: #e11d48;
    color: #fff;
    border: none;
    padding: 14px 35px;
    font-size: 16px;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-btn:hover {
    background: #be123c;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-section {
        padding: 60px 40px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .contact-section {
        padding: 40px 20px;
    }

    .contact-title h2 {
        font-size: 28px;
    }
}

/* ===== FOOTER (WHITE PROFESSIONAL) ===== */

.footer {
    background: #ffffff;
    border-top: 1px solid #eeeeee;
    margin-top: 60px;
}

/* Main container */
.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 50px 80px;
    display: flex;
   
    align-items: center;
}

/* Brand section */
.footer-brand img {
    height: 150px;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* Social icons */
.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid #e11d48;
    color: #e11d48;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #e11d48;
    color: #ffffff;
}

/* Quick links */
.footer-links h4 {
    font-size: 18px;
    color: #222;
    margin-bottom: 18px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    text-decoration: none;
    font-size: 15px;
    color: #555;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #e11d48;
}

/* Bottom bar */
.footer-bottom {
    border-top: 1px solid #eeeeee;
    padding: 15px 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #777;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
        gap: 30px;
    }

    .footer-social {
        justify-content: center;
    }
}





