/* =========================================
   DrugHub - CONSOLIDATED MASTER STYLESHEET
   Brand Colors: Blue (#004DA0) & Green (#44D62C)
   Merged from: index.php + about.php styles
   ========================================= */

/* ===============================
   CSS CUSTOM PROPERTIES / ROOT VARIABLES
   =============================== */
:root {
    /* Primary Brand Colors */
    --primary-blue: #004DA0;
    --primary-green: #44D62C;
    --gradient-brand: linear-gradient(135deg, #004DA0 0%, #004DA0 60%, #44D62C 100%);
    
    /* Secondary Brand Colors */
    --primary-blue-dark: #003a80;
    --primary-blue-light: #0066cc;
    --primary-green-dark: #3bc224;
    --primary-green-light: #5ee040;
    --accent-green: #44D62C;
    --bright-green: #44D62C;
    
    /* Background Colors */
    --light-bg: #f8fafc;
    --light-gray: #f8f9fa;
    --light-green: #e8f5e8;
    --white: #ffffff;
    
    /* Text Colors */
    --dark-text: #2c3e50;
    
    /* Border & Effects */
    --border-light: #e9ecef;
    --shadow-light: 0 5px 15px rgba(0,0,0,0.08);
    --shadow-medium: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-heavy: 0 20px 40px rgba(0,0,0,0.15);
    
    /* Additional Colors */
    --orange: #ff8c00;
    --whatsapp-green: #25d366;
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===============================
   GLOBAL RESET & BASE STYLES
   =============================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Inter', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--light-bg);
    line-height: 1.6;
    color: var(--dark-text);
    overflow-x: hidden;
}

/* ===============================
   UTILITY CLASSES
   =============================== */
.section-padding {
    padding: 6rem 0;
}

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

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.section-title h2 {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: #666;
    margin-bottom: 4rem;
    font-weight: 400;
}

.section-title p {
    color: #666;
    font-size: 1.1rem;
}

/* ===============================
   TOP BAR
   =============================== */
.top-bar {
    background: var(--gradient-brand);
    color: white;
    padding: 0.6rem 0;
    font-size: 0.9rem;
}

.top-bar a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.top-bar a:hover {
    opacity: 0.8;
}

.social-icons i {
    margin-left: 0.5rem;
    font-size: 0.9rem;
}

/* ===============================
   NAVIGATION / HEADER
   =============================== */
.header {
    background-color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    padding: 1rem 0;
}

.brand-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-logo,
.navbar-brand img {
    max-height: 60px;
    height: 45px;
    width: auto;
}

.brand-tagline {
    font-size: 0.7rem;
    color: #666;
    font-style: italic;
    margin: 0;
}

.navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: var(--transition);
    border-radius: 8px;
    margin: 0.2rem 0.75rem;
}

.navbar-nav .nav-link:hover {
    background-color: #f0f4ff;
    color: var(--primary-blue);
}

/* ===============================
   BUTTONS
   =============================== */
.btn-primary-custom {
    background: var(--gradient-brand);
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 77, 160, 0.3);
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 77, 160, 0.4);
    color: white;
}

.btn-service {
    background: var(--gradient-brand);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
}

.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 77, 160, 0.3);
}

.btn-book {
    width: 100%;
    background: var(--gradient-brand);
    color: white;
    border: none;
    padding: 0.6rem;
    border-radius: 15px;
    font-weight: 600;
    text-decoration: none;
    display: block;
    font-size: 0.85rem;
    transition: var(--transition);
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 77, 160, 0.3);
}

/* ===============================
   SEARCH SECTION
   =============================== */
.search-section {
    background: var(--gradient-brand);
    padding: 2rem 1rem;
}

.search-box {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 0.7rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.search-btn {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.search-btn:hover {
    background: var(--primary-blue-dark);
}

/* ===============================
   HERO SECTIONS
   =============================== */
.hero {
    background: var(--gradient-brand);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.about-hero {
    background: var(--gradient-brand);
    padding: 150px 0 100px;
    color: white;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="200" height="200" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ===============================
   CAROUSEL / HERO SLIDES
   =============================== */
.carousel-item {
    height: 500px;
}

.carousel-slide {
    height: 100%;
    display: flex;
    align-items: center;
    border-radius: 20px;
    margin: 1rem;
}

.slide-content {
    color: white;
    padding: 2rem;
}

.slide-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.slide-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.slide-buttons .btn {
    margin: 0.5rem;
    padding: 0.5rem;
    border-radius: 25px;
    font-weight: 300;
}

/* ===============================
   SERVICES SECTION
   =============================== */
.services-section {
    padding: 3rem 1rem;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-color: var(--primary-green);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* ===============================
   PRODUCTS SECTION
   =============================== */
.products-section {
    padding: 3rem 1rem;
    background: white;
}

.product-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 20px;
    padding: 1.5rem;
    transition: var(--transition);
    height: 100%;
    cursor: pointer;
    text-decoration: none;
    display: block;
    color: inherit;
}

.product-card:hover {
    border-color: var(--primary-green);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.product-card:hover .product-name {
    color: var(--primary-green);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1rem;
}

.product-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.product-category {
    font-size: 0.75rem;
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 800;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0;
}

/* ===============================
   DOCTOR SECTION
   =============================== */
.doctor-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
    border: 2px solid #f0f0f0;
}

.doctor-card:hover {
    border-color: var(--primary-green);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.doctor-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    object-fit: cover;
    border: 3px solid var(--primary-green);
}

.doctor-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.doctor-specialty {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.doctor-rating {
    color: #ffa500;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

/* ===============================
   MISSION VISION SECTION
   =============================== */
.mission-vision-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-light);
    text-align: center;
}

.mission-vision-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.mission-vision-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: white;
}

.mission-vision-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}

.mission-vision-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
}

/* ===============================
   TEAM SECTION
   =============================== */
.team-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-light);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.team-avatar {
    width: 120px;
    height: 120px;
    background: var(--gradient-brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 3rem;
    font-weight: 600;
}

.team-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}

.team-position {
    font-size: 1rem;
    color: var(--primary-green);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-bio {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* ===============================
   VALUES SECTION
   =============================== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

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

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

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

.value-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.value-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* ===============================
   STATS SECTION
   =============================== */
.stats-section {
    background: var(--gradient-brand);
    padding: 3rem 1rem;
    color: white;
}

.stat-box,
.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

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

/* ===============================
   HOW IT WORKS SECTION
   =============================== */
.how-it-works {
    padding: 3rem 1rem;
}

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

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-brand);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

/* ===============================
   TIMELINE SECTION
   =============================== */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-green);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 100%;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: 52%;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 52%;
    margin-right: 0;
    text-align: left;
}

.timeline-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    position: relative;
}

.timeline-date {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-green);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    z-index: 2;
}

.timeline-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.timeline-description {
    color: #666;
    line-height: 1.6;
}

/* ===============================
   TESTIMONIALS SECTION
   =============================== */
.testimonials-section {
    padding: 3rem 1rem;
    background: white;
}

.testimonial-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
}

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

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.testimonial-rating {
    color: #ffa500;
}

.testimonial-text {
    color: #666;
    line-height: 1.6;
}

/* ===============================
   NEWSLETTER SECTION
   =============================== */
.newsletter-section {
    background: var(--gradient-brand);
    padding: 3rem 1rem;
    color: white;
    text-align: center;
}

.newsletter-form {
    max-width: 600px;
    margin: 2rem auto;
    display: flex;
    gap: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}

.btn-subscribe {
    background: white;
    color: var(--primary-blue);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-subscribe:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ===============================
   CTA SECTION
   =============================== */
.cta-section {
    background: var(--light-gray);
    padding: 5rem 0;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}

.cta-text {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

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

/* ===============================
   FOOTER
   =============================== */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 1rem 1rem;
}

.footer h5 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-green);
    font-size: 1.2rem;
}

.footer ul {
    list-style: none;
    padding: 0;
}

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

.footer a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer a:hover {
    color: var(--primary-green);
}

.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-brand img {
    height: 45px;
    margin-right: 1rem;
}

.footer-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #bdc3c7;
}

.footer-section h5 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 1.2rem;
}

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

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

.social-links a:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
	color: #FFF;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    margin-top: 2rem;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.security-badges {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: #bdc3c7;
}

/* ===============================
   CHAT FAB (Floating Action Button)
   =============================== */
.chat-fab {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 65px;
    height: 65px;
    background: var(--gradient-brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 77, 160, 0.4);
    color: white;
    font-size: 1.6rem;
    text-decoration: none;
    z-index: 999;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 8px 25px rgba(0, 77, 160, 0.4); }
    50% { box-shadow: 0 8px 35px rgba(68, 214, 44, 0.6); }
}

/* ===============================
   ANIMATIONS
   =============================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===============================
   RESPONSIVE DESIGN
   =============================== */
@media (max-width: 992px) {
    .slide-title {
        font-size: 1.4rem;
    }
    
    .carousel-item {
        height: 400px;
    }
}

@media (max-width: 768px) {
    /* Hero & Titles */
    .slide-title {
        font-size: 1.4rem;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .carousel-item {
        height: 400px;
    }
    
    /* Stats */
    .stat-number {
        font-size: 2rem;
    }
    
    /* Newsletter */
    .newsletter-form {
        flex-direction: column;
    }
    
    /* Products */
    .product-image {
        height: 150px;
    }
    
    .product-name {
        font-size: 0.85rem;
    }
    
    .product-category {
        font-size: 0.7rem;
    }
    
    /* Doctors */
    .doctor-avatar {
        width: 70px;
        height: 70px;
    }
    
    .doctor-name {
        font-size: 0.85rem;
    }
    
    .doctor-specialty {
        font-size: 0.75rem;
    }
    
    .btn-book {
        font-size: 0.8rem;
        padding: 0.5rem;
    }
    
    /* Service Cards */
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    /* Timeline */
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 70px;
        margin-right: 0;
        text-align: left;
    }
    
    .timeline-date {
        left: 30px;
        transform: translateY(-50%);
    }
    
    /* CTA & Footer */
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .section-padding {
        padding: 4rem 0;
    }
}

@media (max-width: 576px) {
    body {
        font-size: 0.875rem;
    }
}

/* ===============================
   PRINT STYLES
   =============================== */
@media print {
    .navbar,
    .top-bar,
    .footer,
    .chat-fab,
    .no-print {
        display: none !important;
    }
    
    body {
        background: white;
    }
}

/* ===============================
   END OF STYLESHEET
   ========================================= */
