

/* GENERAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', Arial, sans-serif;
}
body {
    background: #f8f8f8;
    color: #222;
    padding-top: 100px; /* space for fixed header */
}

/* SIDEBAR */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 250px;
    background: #222;
    padding-top: 100px;
    transform: translateX(-250px);
    transition: 0.3s ease;
    z-index: 2000;
}
.sidebar.open { transform: translateX(0); }
.sidebar a {
    display: block;
    padding: 15px 20px;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid #333;
    font-weight: 500;
}
.sidebar a:hover { background: #e63946; }

/* MENU BUTTON */
.menu-btn {
    position: fixed;
    top: 30px;
    left: 20px;
    font-size: 26px;
    background: #e63946;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 6px;
    z-index: 2500;
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.3);
    padding: 20px 40px;
    text-align: center;
    border-bottom: 2px solid rgba(255,255,255,0.2);
    z-index: 2200;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.logo {
    font-size: 56px;
    font-weight: 700;
    color: #222;
}
.logo span { color: #e63946; }

/* HERO */
.hero {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: white;
    background: url('https://images.unsplash.com/photo-1607082343861-f4d3149fa7e3?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
    position: relative;
}
.hero::before {
    content:"";
    position:absolute;
    top:0; left:0;
    width:100%; height:100%;
    background: rgba(0,0,0,0.65);
    z-index:1;
}
.hero-text {
    max-width: 650px;
    background: rgba(0,0,0,0.7);
    padding: 45px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    line-height: 1.6;
    color: #fff;
    text-align: center;
    position: relative;
    z-index:2;
}
.hero-text h1 { font-size: 52px; margin-bottom: 25px; font-weight: 700; }
.hero-text p { font-size: 22px; margin-bottom: 25px; font-weight: 500; }
.hero-text .btn {
    font-size: 18px;
    padding: 14px 28px;
    text-decoration: none;
    background: #e63946;
    color: white;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.2s;
}
.hero-text .btn:hover { transform: scale(1.05); }

/* HERO BUTTONS WITH ICONS */
.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
    align-items: center;
    position: relative;
    z-index:2;
}
.hero-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 260px;
    height: 50px;
    text-align: center;
    font-size: 18px;
    padding: 0 20px;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.3s, background 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.hero-btn:hover { transform: scale(1.05); }

/* BUTTON COLORS */
.whatsapp-btn {
    background: #fff;
    color: #25D366;
    font-weight: 700;
    border: 2px solid #25D366;
    transition: 0.3s;
}
.whatsapp-btn:hover {
    background: #25D366;
    color: #fff;
}
.images-heading3 {
    text-align: center;
    width: 100%;
    font-size: 26px;
    font-weight: 700;
}


.call-btn { background: #e63946; color: white; }
.email-btn { background: #0072c6; color: white; }

/* ICON SIZE */
.hero-btn i { font-size: 22px; }

/* SECTIONS */
.products, .about, .contact, .gallery, .images-section, .images-section2, .images-section3, .images-section4, .images-section5 {
    padding: 60px 40px;
    text-align: center;
    background: #ffffff;
    margin-top: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* HEADINGS */
.marquee-heading {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 40px;
    padding: 20px 0;
    border-radius: 15px;
    background: linear-gradient(90deg, #e63946, #f77f00);
}
.box-heading {
    background: linear-gradient(90deg, #e63946, #f77f00);
    color:white;
    padding:15px 0;
    border-radius:12px;
    font-size:40px;
    font-weight:700;
    margin-bottom:20px;
}
.images-heading {
    background: linear-gradient(90deg, #1d3557, #457b9d);
    padding:15px 0;
    border-radius:12px;
    font-size:38px;
    font-weight:700;
    margin-bottom:20px;
    color:white;
}
.images-heading2 {
    background: linear-gradient(90deg, #457b9d, #1d3557);
    padding:15px 0;
    border-radius:12px;
    font-size:38px;
    font-weight:700;
    margin-bottom:20px;
    color:white;
}
.images-heading3 {
    background: linear-gradient(90deg, #a8dadc, #1d3557);
    padding:15px 0;
    border-radius:12px;
    font-size:38px;
    font-weight:700;
    margin-bottom:20px;
    color:white;
}
.order-btn {
    display: inline-block;
    margin: 12px auto 0 auto;
    background: linear-gradient(90deg, #e63946, #b80c0c);
    color: #fff;
    padding: 12px 28px;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    text-decoration: none;
    font-size: 17px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
    letter-spacing: 1px;
    transition: 0.25s ease;
}
.order-btn:hover {
    transform: scale(1.06);
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
    opacity: 0.95;
}

.images-section6 .images-grid div {
    text-align: center;
}

/* PRODUCT CARDS */
.product-card {
    background: #f8f8f8;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 25px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}
.product-card h3 {
    margin-bottom: 12px;
    font-size: 26px;
    color: #e63946;
    display:flex;
    align-items:center;
    gap:10px;
}
.product-card ul { list-style: none; }
.product-card ul li { padding: 6px 0; font-size: 18px; }

/* GALLERY GRID */
.gallery-grid, .images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 20px auto 0 auto;
}
.gallery-grid img, .images-grid img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    transition: transform 0.3s;
}
.gallery-grid img:hover, .images-grid img:hover {
    transform: scale(1.05);
}

/* FLOATING MESSAGE */
.floating-message {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3000;
}
.floating-message .message-text {
    background: #fff;
    color: #222;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    margin-bottom: 10px;
}
.floating-message .message-icon {
    background: #26a300;
    color: white;
    font-size: 25px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
