body {
    font-family: 'Poppins', sans-serif;
    color: #333;
}

/* Navbar */
.navbar {
    background: darkcyan;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: white !important;
}
.nav-link {
    color: white !important;
    font-weight: 500;
    transition: color 0.3s;
}
.nav-link:hover {
    color: #f1f1f1 !important;
}

/* Hero Section */
.hero {
    background: url('https://via.placeholder.com/1920x600?text=Pharmacy+Hero+Image') no-repeat center center/cover;
    color: white;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
.hero-content {
    position: relative;
    z-index: 1;
}
.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
}
.btn-custom {
    background-color: #28a745;
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: background-color 0.3s, transform 0.3s;
}
.btn-custom:hover {
    background-color: #218838;
    transform: translateY(-2px);
}

/* Section Padding */
.section-padding {
    padding: 80px 0;
}

/* Parallax Effect */
.parallax {
    background: chartreuse;
    position: relative;
    color: white;
}
.parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 123, 255, 0.7);
}
.parallax-content {
    position: relative;
    z-index: 1;
}

/* Cards */
.row.equal-height {
    display: flex;
    flex-wrap: wrap;
}
.row.equal-height > [class^="col-"] {
    display: flex;
    flex-direction: column;
}
.card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Licenses Section */
.license-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Contact Form */
.form-control {
    border-radius: 10px;
    border: 1px solid #ced4da;
    padding: 12px;
}
.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Footer */
footer {
    background: darkcyan;
    color: white;
    padding: 30px 0;
}
footer a {
    color: #f1f1f1;
    text-decoration: none;
    margin: 0 10px;
}
footer a:hover {
    text-decoration: underline;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1s, transform 1s;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 1rem; }
    .navbar-brand { font-size: 1.5rem; }
    .section-padding { padding: 50px 0; }
}



.license-img {
    width: 520px;
    height: 520px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 1rem;
}