.elementor-101 .elementor-element.elementor-element-c4eb31d{--display:flex;}/* Start custom CSS for html, class: .elementor-element-755a393 */.hero{

background:url("maleka-pharmacy.jpg") center center / cover no-repeat;

min-height:600px;

display:flex;

align-items:center;

justify-content:center;

text-align:center;

position:relative;

}

.hero::before{

content:"";

position:absolute;

top:0;
left:0;
right:0;
bottom:0;

background:rgba(0,0,0,0.6);

}

.hero-content{

position:relative;

color:white;

max-width:800px;

padding:40px;

}

.hero-logo{

width:220px;

margin:auto;

margin-bottom:20px;

border-radius:10px;

}

.hero h1{

font-size:42px;

margin-bottom:10px;

}

.hero p{

font-size:18px;

margin-bottom:25px;

}

.hero-buttons{

display:flex;

gap:15px;

justify-content:center;

flex-wrap:wrap;

}

.btn-call{

background:#16a34a;

color:white;

padding:14px 28px;

border-radius:50px;

font-weight:bold;

}

.btn-whatsapp{

background:white;

color:#16a34a;

padding:14px 28px;

border-radius:50px;

font-weight:bold;

border:2px solid #16a34a;

}/* End custom CSS */
/* Start custom CSS *//* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Header Styles */
header {
    background: linear-gradient(90deg, #28a745, #007bff);
    color: white;
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Header Content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Logo */
.logo h1 {
    font-size: 1.8rem;
    margin: 0;
}

/* Navigation Menu */
nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

nav a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1587854692152-cbebb492fc73?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 120px 20px;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    background: #28a745;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    margin: 10px;
    transition: 0.3s;
}

.btn:hover {
    background: #218838;
    transform: translateY(-3px);
}

.btn:active {
    transform: translateY(1px);
}

/* Category Section */
.section {
    padding: 60px 0;
}

h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #007bff;
}

/* Categories Grid */
.categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    padding: 0 15px;
}

.card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card h4 {
    padding: 15px;
    background: #e9f7ef;
    margin: 0;
    color: #28a745;
}

/* OTC Section */
#otc {
    background: #e9f7ef;
}

/* About Section */
.about {
    background: #f1f8ff;
    padding: 60px 0;
}

/* Contact Section */
.contact {
    background: #f8f9fa;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    text-align: center;
}

.info-item {
    max-width: 350px;
}

/* Footer Styles */
footer {
    background: #007bff;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 2.2rem;
    }

    nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .categories {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

    .info-item {
        max-width: 100%;
    }
}/* End custom CSS */