/* ===== CSS Variables ===== */
:root {
    --primary-color: #1a5f7a;
    --primary-dark: #0d3d4d;
    --secondary-color: #c4a35a;
    --accent-color: #e8b923;
    --text-dark: #1a1a2e;
    --text-light: #ffffff;
    --text-muted: #6b7280;
    --bg-light: #f8fafc;
    --bg-dark: #0f172a;
    --gradient-primary: linear-gradient(135deg, #1a5f7a 0%, #0d3d4d 100%);
    --gradient-accent: linear-gradient(135deg, #c4a35a 0%, #e8b923 100%);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.2);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --border-radius: 12px;
    --border-radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

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

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

ul {
    list-style: none;
}

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

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes scrollDown {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(10px); }
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    border-radius: 8px;
}

.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-link {
    font-weight: 500;
    font-size: 15px;
    color: var(--text-dark);
    position: relative;
    padding: 5px 0;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: width var(--transition-normal);
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all var(--transition-normal);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url('../images/bg.jpg') center/cover no-repeat;
    padding: 100px 20px 50px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 61, 77, 0.9) 0%, rgba(15, 23, 42, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

.hero-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-logo {
    height: 70px;
    width: auto;
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

.hero-logo:nth-child(2) {
    animation-delay: 0.5s;
}

.hero-logo:nth-child(3) {
    animation-delay: 1s;
}

.hero-patronage {
    font-size: 16px;
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 10px;
    animation: fadeIn 1s ease-out 0.3s backwards;
}

.hero-jubilee {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    animation: fadeIn 1s ease-out 0.4s backwards;
}

.hero-title {
    font-size: clamp(28px, 5vw, 48px);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1s ease-out 0.5s backwards;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 30px;
    animation: fadeIn 1s ease-out 0.6s backwards;
}

.hero-organizers {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 0.7s backwards;
}

.hero-organizers p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-description {
    max-width: 800px;
    margin: 0 auto 35px;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    animation: fadeIn 1s ease-out 0.75s backwards;
}

@media (max-width: 768px) {
    .hero-description {
        font-size: 14px;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .hero-description {
        font-size: 13px;
    }
}

.hero-btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--gradient-accent);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    animation: fadeIn 1s ease-out 0.8s backwards;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 2px;
    animation: scrollDown 1.5s infinite;
}

/* ===== Section Styles ===== */
.section {
    padding: 100px 0;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    color: var(--text-dark);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-title.light {
    color: var(--text-light);
}

.section-title.light::after {
    background: var(--secondary-color);
}

/* ===== About Section ===== */
.about {
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.about-text {
    animation: slideInLeft 0.8s ease-out;
}

.about-intro {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
    color: var(--text-muted);
}

.about-image {
    animation: slideInRight 0.8s ease-out;
}

.about-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
}

.subsection-title {
    font-size: 28px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.aims-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.aim-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-normal);
}

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

.aim-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.aim-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.aim-card p {
    font-size: 14px;
    color: var(--text-muted);
}

.useful-links {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.links-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-radius: var(--border-radius);
    transition: all var(--transition-normal);
}

.link-card img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.link-card span {
    font-weight: 500;
    color: var(--primary-color);
}

.link-card:hover {
    background: var(--bg-light);
    transform: translateY(-5px);
}

/* ===== Committees Section ===== */
.committees {
    background: linear-gradient(180deg, var(--bg-light) 0%, #e2e8f0 100%);
}

.committees-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.committee-block {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
}

.committee-block:hover {
    box-shadow: var(--shadow-xl);
}

.committee-title {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--secondary-color);
}

.committee-subgroups {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.subgroup-title {
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.subgroup-title::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.member-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.member-list.centered {
    align-items: center;
}

.member-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: var(--bg-light);
    border-radius: 8px;
    font-size: 15px;
    transition: all var(--transition-fast);
}

.member-list li:hover {
    background: rgba(26, 95, 122, 0.1);
    transform: translateX(5px);
}

.member-list .role {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 13px;
    background: rgba(26, 95, 122, 0.1);
    padding: 3px 10px;
    border-radius: 20px;
}

.committee-note {
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
    padding: 20px;
}

/* ===== Registration Section ===== */
.registration {
    position: relative;
    background: url('../images/register-bg.jpg') center/cover no-repeat;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.registration-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 61, 77, 0.95) 0%, rgba(15, 23, 42, 0.9) 100%);
}

.registration .container {
    position: relative;
    z-index: 2;
}

.registration-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.registration-info {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.registration-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px 50px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    transition: all var(--transition-normal);
}

.registration-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.reg-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.registration-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.registration-card .deadline {
    font-size: 24px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.qr-section {
    margin-bottom: 30px;
}

.qr-code {
    width: 150px;
    height: 150px;
    background: white;
    padding: 10px;
    border-radius: var(--border-radius);
    margin-bottom: 10px;
}

.qr-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.register-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 50px;
    background: var(--gradient-accent);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 18px;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
}

.register-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

.register-btn svg {
    transition: transform var(--transition-fast);
}

.register-btn:hover svg {
    transform: translateX(5px);
}

/* ===== Participation Section ===== */
.participation {
    background: var(--bg-light);
}

.participation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.participation-text p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

.participation-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.participation-benefits li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.participation-benefits li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: var(--gradient-accent);
    color: var(--text-dark);
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

.participation-benefits li:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.participation-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
}

/* ===== Contact Section ===== */
.contact {
    background: linear-gradient(180deg, #e2e8f0 0%, var(--bg-light) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-card {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: all var(--transition-normal);
}

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

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--text-light);
}

.contact-card h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.contact-card .org {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.email-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 500;
    padding: 10px 20px;
    background: rgba(26, 95, 122, 0.1);
    border-radius: 25px;
    transition: all var(--transition-fast);
}

.email-link:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

/* ===== Footer ===== */
.footer {
    background: var(--bg-dark);
    padding: 40px 20px;
    text-align: center;
}

.footer-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-logos img {
    height: 40px;
    background: white;
    padding: 5px 10px;
    border-radius: 8px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

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

/* Tablet - 768px and below */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
        gap: 25px;
        transition: left var(--transition-normal);
        box-shadow: var(--shadow-xl);
    }

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

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .section {
        padding: 70px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image {
        order: -1;
    }

    .committee-subgroups {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .participation-content {
        grid-template-columns: 1fr;
    }

    .participation-image {
        order: -1;
    }

    .hero-logos {
        gap: 20px;
    }

    .hero-logo {
        height: 55px;
    }

    .hero-organizers {
        gap: 20px;
    }
}

/* Small Mobile - 576px and below */
@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }

    .section {
        padding: 50px 0;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .hero {
        padding: 80px 15px 40px;
    }

    .hero-logos {
        gap: 15px;
    }

    .hero-logo {
        height: 45px;
        padding: 8px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-organizers {
        flex-direction: column;
        gap: 15px;
    }

    .hero-btn {
        padding: 12px 30px;
        font-size: 14px;
    }

    .aims-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .aim-card {
        padding: 25px 20px;
    }

    .aim-icon {
        font-size: 36px;
    }

    .links-grid {
        gap: 20px;
    }

    .link-card img {
        height: 50px;
    }

    .committee-block {
        padding: 25px 20px;
    }

    .committee-title {
        font-size: 22px;
    }

    .member-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        font-size: 14px;
    }

    .registration-card {
        padding: 25px 30px;
    }

    .registration-card .deadline {
        font-size: 20px;
    }

    .register-btn {
        padding: 15px 35px;
        font-size: 16px;
    }

    .qr-code {
        width: 120px;
        height: 120px;
    }

    .contact-card {
        padding: 30px 20px;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
    }

    .contact-card h3 {
        font-size: 20px;
    }

    .useful-links {
        padding: 30px 20px;
    }
}

/* Extra Small Mobile - 480px and below */
@media (max-width: 480px) {
    .logo-img {
        height: 40px;
    }

    .nav-container {
        padding: 12px 15px;
    }

    .section-title {
        font-size: 24px;
    }

    .subsection-title {
        font-size: 22px;
    }

    .hero-logos {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-logo {
        height: 40px;
    }

    .hero-patronage {
        font-size: 14px;
    }

    .hero-jubilee {
        font-size: 12px;
    }

    .hero-title {
        font-size: 22px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .about-intro {
        font-size: 16px;
    }

    .registration-info {
        flex-direction: column;
        gap: 20px;
    }

    .registration-card {
        width: 100%;
        padding: 20px;
    }

    .reg-icon {
        font-size: 32px;
    }

    .registration-card h3 {
        font-size: 16px;
    }

    .registration-card .deadline {
        font-size: 18px;
    }

    .participation-benefits li {
        padding: 12px 15px;
        font-size: 14px;
    }

    .participation-benefits li::before {
        width: 25px;
        height: 25px;
        font-size: 14px;
    }

    .contact-grid {
        gap: 20px;
    }

    .scroll-indicator {
        display: none;
    }
}

/* Ultra Small Mobile - 400px and below */
@media (max-width: 400px) {
    .hero {
        min-height: auto;
        padding: 100px 10px 50px;
    }

    .hero-logos {
        gap: 10px;
    }

    .hero-logo {
        height: 35px;
        padding: 6px;
    }

    .hero-title {
        font-size: 20px;
    }

    .hero-btn {
        padding: 10px 25px;
        font-size: 13px;
    }

    .section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .subsection-title {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .aim-card {
        padding: 20px 15px;
    }

    .aim-icon {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .aim-card h4 {
        font-size: 18px;
    }

    .aim-card p {
        font-size: 13px;
    }

    .committee-block {
        padding: 20px 15px;
    }

    .committee-title {
        font-size: 20px;
        margin-bottom: 20px;
        padding-bottom: 10px;
    }

    .subgroup-title {
        font-size: 18px;
    }

    .member-list li {
        padding: 8px 12px;
        font-size: 13px;
    }

    .member-list .role {
        font-size: 11px;
        padding: 2px 8px;
    }

    .qr-code {
        width: 100px;
        height: 100px;
    }

    .register-btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    .register-btn svg {
        width: 20px;
        height: 20px;
    }

    .contact-card {
        padding: 25px 15px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
    }

    .contact-icon svg {
        width: 24px;
        height: 24px;
    }

    .contact-card h3 {
        font-size: 18px;
    }

    .contact-card .org {
        font-size: 13px;
    }

    .email-link {
        font-size: 12px;
        padding: 8px 15px;
    }

    .footer-logos {
        gap: 15px;
    }

    .footer-logos img {
        height: 35px;
    }

    .footer-text {
        font-size: 12px;
    }
}

/* ===== Animation on Scroll ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

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