/* ============================================
   CSS Reset & Base Styles
   ============================================ */
   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
        --primary-color: #4A90E2;
    --secondary-color: #6BB6C7;
    --accent-color: #6BB6C7;
    --accent-light: #7EC8E3;
    --teal-color: #6BB6C7;
    --dark-color: #2E5A8A;
    --light-color: #E8F4F8;
    --text-color: #2E5A8A;
    --text-light: #5A7A9A;
    --white: #ffffff;
    --success: #4A90E2;
    --warning: #6BB6C7;
    --danger: #4A90E2;
    --shadow: 0 2px 10px rgba(74, 144, 226, 0.1);
    --shadow-lg: 0 5px 20px rgba(74, 144, 226, 0.15);
    --transition: all 0.3s ease;
    /* Default hero / page header background (overridden per page below) */
    --hero-bg-image: url('../images/hero-home.jpg');
}

/* Per-page hero images — paths are relative to this CSS file (css/) */
body.page-home .hero {
    --hero-bg-image: url('../images/hero-home.jpg');
}

body.page-about .page-header {
    --hero-bg-image: url('../images/hero-about.jpg');
}

body.page-services .page-header {
    --hero-bg-image: url('../images/hero-services.jpg');
}

body.page-updates .page-header {
    --hero-bg-image: url('../images/hero-updates.jpg');
}

body.page-categories .page-header {
    --hero-bg-image: url('../images/hero-categories.jpg');
}

body.page-contact .page-header {
    --hero-bg-image: url('../images/hero-contact.jpg');
}

body.page-partners .page-header {
    --hero-bg-image: url('../images/hero-partners.jpg');
}

body.page-achievements .page-header {
    --hero-bg-image: url('../images/hero-achievements.jpg');
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lora', serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

/* Long-form body paragraphs: left-aligned for natural line breaks and readable spacing */
.intro-text p,
.content-text p {
    text-align: left;
}

/* Constrain intro/content width so justify doesn't create huge word gaps */
.intro-text,
.content-text {
    max-width: 42rem;
}

/* Section headers and subtitles: keep centered */
.section-header .section-subtitle,
.section-header p,
.section-header .lead {
    text-align: center;
}

/* Card content: keep centered (overview, quick links, services, values, certs, etc.) */
.overview-card p,
.quick-link-card p,
.service-card p,
.value-card p,
.certification-card p,
.vm-card p,
.pharmacy-stat-card p,
.pharmacy-service-card p,
.waste-info-card p,
.subcategory-card p {
    text-align: center;
}

/* Secondary font for headings and special elements */
h1, h2, h3, h4, h5, h6,
.section-title,
.hero-title,
.page-header h1,
.vm-card h2,
.lead {
    font-family: 'Manrope', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--light-color);
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
    overflow: visible;
}

.navbar.scrolled {
    box-shadow: var(--shadow-lg);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.6rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 36px;
    white-space: nowrap;
    font-family: "Bauhaus 93", "Bauhaus 93 Std", "Bebas Neue", sans-serif;
    letter-spacing: 0.02em;
}

/* Logo wordmark: "med" black + "waste" red (Bauhaus 93 style) */
.logo-wordmark {
    font-family: "Bauhaus 93", "Bauhaus 93 Std", "Bebas Neue", sans-serif;
    font-weight: normal;
    font-size: 36px;
    letter-spacing: 0.02em;
    text-transform: lowercase;
}

/* Navbar logo: capitals only */
.navbar .logo .logo-wordmark {
    text-transform: uppercase;
}

.logo-med {
    color: #000000;
}

.logo-waste {
    color: #E31837;
}

.footer .logo-wordmark .logo-med { color: #ffffff; }
.footer .logo-wordmark .logo-waste { color: #E31837; }

.footer .logo-wordmark {
    text-transform: uppercase;
    font-size: 1.25rem;
}

.logo-image {
    height: 55px;
    width: auto;
    max-width: 80px;
    min-width: 50px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.logo img {
    display: block;
    height: 55px;
    width: auto;
}

/* Fallback icon styling */
.logo .fa-recycle {
    font-size: 2rem;
    color: var(--primary-color);
    display: none;
}

.logo img[src=""],
.logo img:not([src]) {
    display: none;
}

.logo i {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.2rem;
    align-items: center;
    flex-wrap: wrap;
    margin-left: 2rem;
}

.nav-menu li {
    white-space: nowrap;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Navbar Log In — white pill, blue serif text, soft shadow (matches hero “Our Services” style) */
.nav-menu a.nav-login,
a.nav-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--primary-color) !important;
    padding: 12px 26px;
    border-radius: 12px;
    border: none;
    line-height: 1.2;
    flex-shrink: 0;
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.02em;
    text-decoration: none !important;
    box-shadow: 0 4px 18px rgba(74, 144, 226, 0.22), 0 2px 6px rgba(46, 90, 138, 0.12);
    transition: box-shadow 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.nav-menu a.nav-login:hover,
a.nav-login:hover {
    background: var(--white);
    color: var(--primary-color) !important;
    text-decoration: none !important;
    box-shadow: 0 8px 28px rgba(74, 144, 226, 0.28), 0 4px 10px rgba(46, 90, 138, 0.16);
    transform: translateY(-2px);
}

.nav-menu a.nav-login:focus-visible,
a.nav-login:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 3px;
}

.nav-menu a.nav-login::after,
a.nav-login::after {
    display: none !important;
}

/* Standalone Log In always visible on desktop (right side of navbar) */
.nav-login-standalone {
    margin-left: 1rem;
}

/* Hide Log In inside menu on desktop; show standalone */
@media (min-width: 769px) {
    .nav-login-li {
        display: none;
    }
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 70px;
    overflow: hidden;
    /* Hero: full-bleed photo only (no colour overlay) */
    background-color: #1a2a3a;
    background-image: var(--hero-bg-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: var(--white);
    font-size: 2rem;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.45));
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* ============================================
   Section Headers
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    margin: 1rem auto;
    border-radius: 2px;
}

/* ============================================
   Page Header
   ============================================ */
.page-header {
    position: relative;
    overflow: hidden;
    color: var(--white);
    padding: 120px 0 60px;
    text-align: center;
    margin-top: 70px;
    /* Inner pages: photo only (no colour overlay) */
    background-color: #1a2a3a;
    background-image: var(--hero-bg-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Full-viewport hero band (Services, Updates, Partners, Categories) — below fixed navbar */
body.page-services .page-header,
body.page-updates .page-header,
body.page-partners .page-header,
body.page-categories .page-header {
    min-height: calc(100vh - 70px);
    min-height: calc(100dvh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    margin-top: 70px;
}

body.page-services .page-header .container,
body.page-updates .page-header .container,
body.page-partners .page-header .container,
body.page-categories .page-header .container {
    width: 100%;
    max-width: 1200px;
}

/* ============================================
   Intro Section
   ============================================ */
.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.intro-text .lead {
    text-align: left;
}

.intro-text p {
    text-align: justify;
}

.intro-text .lead {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    max-width: 100ch;
}

.intro-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.image-placeholder {
    background: var(--light-color);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder i {
    font-size: 5rem;
    color: var(--accent-color);
}

/* ============================================
   Overview Cards
   ============================================ */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.overview-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.overview-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.card-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.overview-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ============================================
   Quick Links
   ============================================ */
.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.quick-link-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.quick-link-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    color: var(--primary-color);
}

.quick-link-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.quick-link-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* ============================================
   Content Grid
   ============================================ */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.content-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.content-text .lead {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* ============================================
   Vision & Mission
   ============================================ */
.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.vm-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.vm-icon {
    width: 100px;
    height: 100px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.vm-icon i {
    font-size: 3rem;
    color: var(--primary-color);
}

.vm-card h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ============================================
   Values Grid
   ============================================ */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.value-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ============================================
   Services
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    padding: 3px;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.service-icon-image,
.activity-icon-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: inherit;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin-top: 1.5rem;
    text-align: center;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    text-align: center;
}

.service-features i {
    color: var(--success);
    margin-right: 0.5rem;
}

/* ============================================
   Activities
   ============================================ */
.activities-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.activity-item {
    display: flex;
    gap: 2rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.activity-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.activity-icon {
    width: 70px;
    height: 70px;
    background: var(--white);
    padding: 3px;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.activity-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.activity-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* ============================================
   Updates
   ============================================ */
.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.certification-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.certification-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.cert-icon {
    width: 80px;
    height: 80px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.cert-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.cert-type {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.cert-date {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--light-color);
    color: var(--text-light);
    font-size: 0.9rem;
}

.compliance-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.compliance-list {
    margin-top: 2rem;
}

.compliance-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.compliance-item i {
    color: var(--success);
    font-size: 1.2rem;
}

/* ============================================
   Achievements & Projects
   ============================================ */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.project-image {
    height: 200px;
    background: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-image i {
    font-size: 4rem;
    color: var(--accent-color);
}

.project-content {
    padding: 2rem;
}

.project-year {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.project-features {
    list-style: none;
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.project-features li {
    background: var(--light-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.achievements-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.achievement-item {
    display: flex;
    gap: 2rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.achievement-icon {
    width: 70px;
    height: 70px;
    background: var(--light-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.achievement-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.achievement-year {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* ============================================
   Pharmacy
   ============================================ */
.pharmacy-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pharmacy-stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.pharmacy-stat-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.pharmacy-stat-card h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.pharmacy-map {
    height: 600px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--light-color);
    z-index: 1;
}

.pharmacy-marker {
    background: transparent;
    border: none;
}

.map-legend {
    font-family: 'Manrope', sans-serif;
}

.pharmacy-popup .leaflet-popup-content-wrapper {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.pharmacy-popup .leaflet-popup-content {
    margin: 15px;
    font-family: 'Manrope', sans-serif;
}

/* Marker Cluster Styles */
.marker-cluster-small {
    background-color: rgba(107, 182, 199, 0.6);
}

.marker-cluster-small div {
    background-color: rgba(107, 182, 199, 0.8);
    color: white;
}

.marker-cluster-medium {
    background-color: rgba(74, 144, 226, 0.6);
}

.marker-cluster-medium div {
    background-color: rgba(74, 144, 226, 0.8);
    color: white;
}

.marker-cluster-large {
    background-color: rgba(107, 182, 199, 0.6);
}

.marker-cluster-large div {
    background-color: rgba(107, 182, 199, 0.8);
    color: white;
}

.pharmacy-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pharmacy-item {
    display: flex;
    gap: 2rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.pharmacy-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.pharmacy-icon {
    width: 60px;
    height: 60px;
    background: var(--light-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pharmacy-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.pharmacy-details h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.pharmacy-details p {
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.pharmacy-details i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.pharmacy-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.pharmacy-service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.pharmacy-service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pharmacy-service-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.pharmacy-service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Corporate Partners (logos) */
.partners-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

.partner-logo-placeholder {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.partner-logo-placeholder i {
    font-size: 2.5rem;
    color: var(--accent-color);
}

.partner-logo {
    background: var(--white);
    padding: 0.45rem;
    border-radius: 10px;
    border: 1px solid rgba(74, 144, 226, 0.2);
    box-shadow: var(--shadow);
    min-height: 130px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.partner-logo:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

/* Partner logos (when you add images) */
.partners-logos-grid .partner-logo img {
    max-width: 100%;
    max-height: 118px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Districts grid (25 districts) */
.districts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.district-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 0.75rem;
    background: var(--white);
    border: 2px solid var(--light-color);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-color);
    text-align: center;
}

.district-card i {
    color: var(--accent-color);
    font-size: 1.25rem;
}

.district-card:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: var(--shadow);
}

.district-card.active {
    border-color: var(--primary-color);
    background: var(--light-color);
    color: var(--primary-color);
}

.pharmacies-by-district {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 10px;
}

.pharmacies-placeholder {
    color: var(--text-light);
    text-align: center;
    margin: 0;
}

.pharmacies-district-title {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.pharmacies-list-wrap {
    margin-top: 0;
}

/* Featured Clients (logos) – kept for any other pages */
.featured-clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

.client-logo {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.client-logo:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.client-logo img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.client-logo-placeholder {
    display: none;
    width: 80px;
    height: 80px;
    background: var(--light-color);
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 2rem;
}

.featured-clients-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.featured-clients-note code {
    background: var(--light-color);
    padding: 0.2em 0.5em;
    border-radius: 4px;
    font-size: 0.85em;
}

/* ============================================
   Categories
   ============================================ */
.category-section {
    margin-bottom: 4rem;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-color);
}

.category-icon {
    width: 70px;
    height: 70px;
    background: var(--light-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-card .category-icon {
    margin: 0 auto 1rem;
}

.category-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.category-icon-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 6px;
}

.category-card .category-icon {
    width: 78px;
    height: 78px;
    padding: 3px;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    background: var(--white);
}

.category-header h2 {
    color: var(--primary-color);
    font-size: 2rem;
}

.subcategories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.subcategory-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.subcategory-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.subcategory-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.subcategory-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.category-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.waste-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.waste-info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.waste-info-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.waste-info-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ============================================
   Contact
   ============================================ */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-info-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.contact-icon i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.contact-info-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-info-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.social-contact {
    margin-top: 2rem;
}

.social-contact h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-form h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--light-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    display: none;
}

.form-message.success {
    background: rgba(107, 182, 199, 0.2);
    color: var(--primary-color);
    border: 1px solid var(--secondary-color);
    display: block;
}

.form-message.error {
    background: rgba(74, 144, 226, 0.2);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    display: block;
}

.office-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.office-map iframe {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 10px;
    display: block;
}

.map-placeholder {
    height: 400px;
    background: var(--light-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.map-note {
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info i {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.footer-credit {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.footer-credit a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-credit a:hover {
    color: var(--accent-color);
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.animate-fade-in {
    animation: fadeInUp 1s ease;
}

.animate-fade-in-delay {
    animation: fadeInUp 1s ease 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeInUp 1s ease 0.6s both;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Responsive Design
   ============================================ */

/* Tablet and below */
@media (max-width: 992px) {
    .container {
        padding: 0 24px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .vm-card {
        padding: 2rem;
    }

    .intro-content,
    .content-grid,
    .compliance-content {
        gap: 2rem;
    }

    .content-text .lead {
        font-size: 1.1rem;
    }

    .intro-text .lead {
        font-size: 1.15rem;
    }

    .image-placeholder {
        min-height: 250px;
        padding: 2.5rem;
    }

    .image-placeholder i {
        font-size: 4rem;
    }

    .page-header {
        padding: 100px 0 50px;
    }

    body.page-services .page-header,
    body.page-updates .page-header,
    body.page-partners .page-header,
    body.page-categories .page-header {
        min-height: calc(100vh - 70px);
        min-height: calc(100dvh - 70px);
        padding: 0 20px;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .page-header p {
        font-size: 1.1rem;
    }

    .pharmacy-map {
        height: 450px;
    }

    .contact-wrapper {
        gap: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }

    .office-map iframe {
        height: 350px;
    }
}

/* Mobile – show hamburger, stack layouts */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
        padding: 8px;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
        z-index: 1001;
    }

    .mobile-menu-toggle span {
        width: 24px;
        height: 2.5px;
        transition: var(--transition);
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-wrapper {
        padding: 1rem 0;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        right: 0;
        bottom: 0;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: var(--white);
        width: 100%;
        max-width: 100%;
        padding: 80px 24px 24px;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s ease;
        overflow-y: auto;
        gap: 0;
        margin-left: 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--light-color);
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
    }

    /* Hide standalone Log In on mobile; show the one inside menu */
    .nav-login-standalone {
        display: none !important;
    }

    .nav-login-li {
        display: list-item;
    }

    .nav-menu a.nav-login {
        width: min(320px, 100%);
        margin: 0.75rem auto 0;
        text-align: center;
    }

    .nav-menu.active {
        left: 0;
    }

    .logo {
        font-size: 28px;
    }

    .logo .logo-wordmark {
        font-size: 28px;
    }

    .logo-image,
    .logo img {
        height: 45px;
    }

    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        margin-top: 60px;
        padding: 2rem 0 4rem;
        align-items: center;
    }

    .hero-content .container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 1.85rem;
        line-height: 1.25;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 14px 24px;
        text-align: center;
    }

    .hero-scroll {
        bottom: 20px;
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.85rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .intro-content,
    .content-grid,
    .contact-wrapper,
    .compliance-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .intro-text .lead {
        font-size: 1.1rem;
    }

    .intro-image {
        order: -1;
    }

    .image-placeholder {
        min-height: 220px;
        padding: 2rem;
    }

    .image-placeholder i {
        font-size: 3.5rem;
    }

    .page-header {
        padding: 90px 0 40px;
        margin-top: 60px;
    }

    body.page-services .page-header,
    body.page-updates .page-header,
    body.page-partners .page-header,
    body.page-categories .page-header {
        min-height: calc(100vh - 60px);
        min-height: calc(100dvh - 60px);
        padding: 0 20px;
        margin-top: 60px;
    }

    .page-header h1 {
        font-size: 1.85rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .overview-grid,
    .quick-links-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .overview-card,
    .quick-link-card,
    .service-card,
    .certification-card,
    .value-card {
        padding: 1.5rem;
    }

    .card-icon,
    .vm-icon {
        width: 70px;
        height: 70px;
    }

    .card-icon i,
    .vm-icon i {
        font-size: 2rem;
    }

    .vm-card {
        padding: 2rem;
    }

    .services-grid,
    .certifications-grid,
    .values-grid {
        gap: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-card {
        padding: 1.25rem;
    }

    .stat-number {
        font-size: 2.25rem;
    }

    .stat-label {
        font-size: 0.95rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .project-image {
        height: 160px;
    }

    .project-content {
        padding: 1.5rem;
    }

    .activity-item,
    .achievement-item,
    .pharmacy-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }

    .activity-icon,
    .achievement-icon,
    .pharmacy-icon {
        margin: 0 auto;
    }

    .districts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .district-card {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }

    .pharmacy-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .pharmacy-stat-card {
        padding: 1.25rem;
    }

    .pharmacy-stat-card h3 {
        font-size: 1.75rem;
    }

    .pharmacy-services-grid {
        grid-template-columns: 1fr;
    }

    .featured-clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .client-logo {
        min-height: 100px;
        padding: 1rem;
    }

    .client-logo img {
        max-height: 60px;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .contact-form h2 {
        margin-bottom: 1.5rem;
        font-size: 1.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
    }

    .office-map iframe {
        height: 300px;
    }

    .map-placeholder {
        height: 280px;
    }

    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .category-header h2 {
        font-size: 1.5rem;
    }

    .subcategories-grid {
        grid-template-columns: 1fr;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .waste-info-grid {
        grid-template-columns: 1fr;
    }

    .cta-section .section-padding {
        padding: 50px 0;
    }

    .cta-content h2 {
        font-size: 1.6rem;
    }

    .cta-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .footer-content {
        gap: 1.5rem;
        text-align: center;
    }

    .footer-section .social-links {
        justify-content: center;
    }

    .contact-info li {
        justify-content: center;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .section-padding {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 1.5rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .overview-grid,
    .quick-links-grid,
    .services-grid,
    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .pharmacy-stats {
        grid-template-columns: 1fr;
    }

    .pharmacy-map {
        height: 280px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom p {
        font-size: 0.9rem;
    }

    .contact-info li {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
}

/* Extra small – safe area and typography */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }

    .hero-title {
        font-size: 1.35rem;
    }

    .nav-menu a {
        font-size: 1rem;
    }

    .logo span,
    .logo .logo-wordmark {
        font-size: 24px;
    }
}

/* Safe area for notched devices */
@supports (padding: max(0px)) {
    .navbar .container {
        padding-left: max(20px, calc(20px + env(safe-area-inset-left)));
        padding-right: max(20px, calc(20px + env(safe-area-inset-right)));
    }

    @media (max-width: 768px) {
        .nav-menu.active {
            padding-left: max(24px, calc(24px + env(safe-area-inset-left)));
            padding-right: max(24px, calc(24px + env(safe-area-inset-right)));
        }
    }
}

/* Prevent horizontal scroll and improve tap targets */
html {
    -webkit-text-size-adjust: 100%;
}

body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}