/* Variables */
:root {
    --primary-color: #5ca4cf; /* Sky Blue from logo background */
    --primary-dark: #153c5e; /* Deep Navy Blue from logo text/borders */
    --secondary-color: #e74c3c; /* Red from kite replaces yellow */
    --secondary-dark: #c0392b; /* Darker red */
    --accent-red: #e74c3c; /* Red from kite */
    --accent-green: #378b4a; /* Green from trees */
    --text-main: #333333;
    --text-muted: #666666;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a202c;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.text-center { text-align: center; }
.text-white { color: var(--bg-white) !important; }
.text-muted { color: var(--text-muted); }
.bg-light { background-color: var(--bg-light); }
.bg-primary { background-color: var(--primary-color); }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.shadow { box-shadow: var(--shadow-md); }
.hidden { display: none !important; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
    box-shadow: 0 4px 14px rgba(92, 164, 207, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(21, 60, 94, 0.4);
    color: #fff;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: #fff;
    box-shadow: 0 4px 14px rgba(231, 76, 60, 0.4);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(192, 57, 43, 0.6);
    color: #fff;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

header.scrolled {
    padding: 10px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 90px;
    width: auto;
    transition: var(--transition);
}

header.scrolled .logo {
    height: 65px;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
}

.main-nav .nav-list {
    display: flex;
    gap: 25px;
}

.nav-list a {
    color: var(--text-main);
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    position: relative;
}

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

.nav-list a:hover::after, .nav-list a.active::after {
    width: 100%;
}
.nav-list a.active {
    color: var(--primary-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-donate-nav {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-dark);
}

/* Sections Base */
.section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
}

.divider {
    height: 3px;
    width: 60px;
    background-color: var(--secondary-color);
    margin: 15px auto;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    background-image: url('../assets/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(255,255,255,0.8);
}

.hero-tagline {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 40px;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}



/* Animations Core */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--primary-dark);
}

.mission-vision {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.mission-vision .card {
    background: var(--bg-white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--secondary-color);
    transition: var(--transition);
}

.mission-vision .card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.card-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.abstract-peace {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(92,164,207,0.2) 0%, rgba(247,202,24,0.2) 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}
.abstract-peace::before {
    content: '\f55b'; /* Dove icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    color: var(--primary-color);
    opacity: 0.2;
}


/* Leadership Section */
.leadership-hierarchy {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.org-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    max-width: 400px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.org-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.org-card.highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    box-shadow: var(--shadow-md);
}
.org-card.highlight h3 {
    color: white;
    margin: 0;
    margin-top: 10px;
}

.role-badge {
    background-color: var(--secondary-color);
    color: #1a202c;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: var(--font-heading);
    display: inline-block;
}

.sub-title {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: -20px;
}

.org-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 100%;
}

.icon-large {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.exec-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.exec-member {
    background: var(--bg-light);
    padding: 20px 40px;
    border-radius: 50px;
    text-align: center;
    min-width: 250px;
}
.exec-member h5 { margin-bottom: 5px; color: var(--primary-dark); }
.exec-member p { margin: 0; font-weight: 600; }

.exec-members-list {
    text-align: center;
}
.member-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}
.member-pills li span {
    background: white;
    border: 1px solid var(--border-color);
    padding: 8px 20px;
    border-radius: 20px;
    display: inline-block;
}

.update-note {
    font-size: 0.9rem;
    color: var(--text-muted);
}


/* Global Initiative */
#initiative {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}
#initiative::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="p" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M50 0 A 50 50 0 0 1 100 50 A 50 50 0 0 1 50 100 A 50 50 0 0 1 0 50 A 50 50 0 0 1 50 0 Z" fill="rgba(255,255,255,0.05)" /></pattern></defs><rect width="100%" height="100%" fill="url(%23p)" /></svg>');
}
.initiative-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}
#initiative h2 { color: white; font-size: 3rem; max-width: 900px; margin: 0 auto 30px auto; }
.initiative-desc { font-size: 1.2rem; max-width: 700px; margin: 0 auto; opacity: 0.9; }

/* Donation Section */
.donation-progress-wrapper {
    max-width: 700px;
    margin: 0 auto 40px auto;
}
.progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}
.progress-bar {
    height: 12px;
    background-color: var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}
.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    border-radius: 10px;
    transition: width 1.5s ease-in-out;
}

.donation-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 700px;
    margin: 0 auto;
}
.donation-form-wrapper h3 { text-align: center; margin-bottom: 30px; font-size: 1.8rem; }

.donation-amount-group { margin-bottom: 30px; }
.donation-amount-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-family: var(--font-heading);
}
.amount-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.amount-btn {
    flex: 1;
    min-width: 100px;
    padding: 15px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}
.amount-btn:hover { border-color: var(--primary-color); color: var(--primary-color); }
.amount-btn.active {
    border-color: var(--primary-color);
    background-color: rgba(77, 166, 231, 0.1);
    color: var(--primary-color);
}

.custom-amount-input {
    margin-top: 15px;
    position: relative;
}
.custom-amount-input .currency-symbol {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-muted);
}
.custom-amount-input input {
    width: 100%;
    padding: 15px 15px 15px 35px;
    font-size: 1.2rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    outline: none;
    transition: var(--transition);
}
.custom-amount-input input:focus { border-color: var(--primary-color); }

.payment-methods { margin-bottom: 30px; }
.method-options {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}
.method-card {
    flex: 1;
    cursor: pointer;
    position: relative;
}
.method-card input {
    position: absolute;
    opacity: 0;
}
.method-content {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}
.method-card input:checked + .method-content {
    border-color: var(--primary-color);
    background-color: rgba(77, 166, 231, 0.05);
}

.bank-details {
    background: #f1f5f9;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    border-left: 4px solid var(--secondary-color);
}
.bank-details p { margin-bottom: 5px; }

/* News Section */
/* News & Blog Section */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    height: 480px;
    border: 1px solid #f1f5f9;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.blog-card-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-img-wrap img {
    transform: scale(1.08);
}

.blog-card-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--secondary-color);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.blog-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-date {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card-content h4 {
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.blog-card-footer {
    padding: 0 24px 24px 24px;
}

.read-more-btn {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.blog-card:hover .read-more-btn {
    gap: 12px;
}

/* Article Modal */
.news-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(8px);
    z-index: 2000;
    padding: 40px 20px;
    overflow-y: auto;
}

.news-modal.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.news-modal-content {
    background: #fff;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.news-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 1.2rem;
    color: var(--primary-dark);
    transition: all 0.3s ease;
}

.news-modal-close:hover {
    background: var(--secondary-color);
    color: #fff;
    transform: rotate(90deg);
}

.news-modal-hero {
    height: 400px;
    width: 100%;
}

.news-modal-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-modal-body {
    padding: 40px;
}

.news-modal-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.news-modal-title {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 25px;
    line-height: 1.2;
}

.news-modal-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #334155;
    white-space: pre-wrap;
}

.news-modal-gallery {
    margin-top: 40px;
}

.news-modal-gallery h5 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.gallery-item {
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .news-modal-title { font-size: 1.8rem; }
    .news-modal-body { padding: 25px; }
    .news-modal-hero { height: 250px; }
}


/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}
.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}
.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(77, 166, 231, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.info-item h4 { margin-bottom: 5px; }
.info-item p { margin-bottom: 0; color: var(--text-muted); }

.social-icons a, .social-icons-footer a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    color: var(--primary-dark);
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
}
.social-icons a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 20px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-dark);
}
.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
    background: #f9fafb;
}
.form-control:focus {
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(77, 166, 231, 0.1);
}

/* Footer */
.footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 80px 0 20px 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}
.footer-logo {
    color: white;
    margin-bottom: 20px;
}
.footer h4 { color: white; margin-bottom: 25px; }
.footer ul li { margin-bottom: 12px; }
.footer a { color: #cbd5e1; }
.footer a:hover { color: var(--secondary-color); padding-left: 5px; }
.social-icons-footer a {
    background: rgba(255,255,255,0.1);
    color: white;
}
.social-icons-footer a:hover { 
    background: var(--secondary-color);
    color: white !important;
    padding-left: 0 !important;
    transform: translateY(-3px);
}
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    .org-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero-title { font-size: 3.5rem; }
}

@media (max-width: 768px) {
    .main-nav .nav-list {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        gap: 0;
        box-shadow: var(--shadow-md);
        display: none;
    }
    .main-nav .nav-list.show { display: flex; }
    .main-nav .nav-list li {
        width: 100%;
        border-bottom: 1px solid var(--bg-light);
    }
    .nav-list a {
        display: block;
        padding: 15px 20px;
    }
    .nav-list a::after { display: none; }
    .mobile-menu-toggle { display: block; }
    .btn-donate-nav { display: none; }
    
    .logo { height: 70px; }
    .hero-content { margin-top: 100px; }
    .hero-title { font-size: 2.8rem; }
    .hero-tagline { font-size: 1.4rem; }
    .hero-buttons { flex-direction: column; }
    
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .social-icons-footer { justify-content: center; }
    .contact-wrapper, .donation-form-wrapper { padding: 20px; }
}

/* Mobile Hero Logo (visible only on mobile) */
.mobile-hero-logo {
    display: none;
}

@media (max-width: 768px) {
    .mobile-hero-logo {
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }

    .mobile-hero-logo img {
        width: 120px;
        height: 120px;
        object-fit: contain;
        border-radius: 50%;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
        background: rgba(255, 255, 255, 0.85);
        padding: 8px;
    }
}

