/* Sophisticated Color Palette & Variables */
:root {
    /* Primary Colors - Sophisticated & Formal */
    --primary-dark: #1e293b;
    --primary-medium: #334155;
    --primary-light: #475569;
    
    /* Accent Colors - Elegant & Professional */
    --accent-gold: #d4af37;
    --accent-gold-light: #e6c75a;
    --accent-blue: #3b82f6;
    --accent-blue-light: #60a5fa;
    
    /* Neutral Colors - Refined */
    --neutral-50: #f8fafc;
    --neutral-100: #f1f5f9;
    --neutral-200: #e2e8f0;
    --neutral-300: #cbd5e1;
    --neutral-400: #94a3b8;
    --neutral-500: #64748b;
    --neutral-600: #475569;
    --neutral-700: #334155;
    --neutral-800: #1e293b;
    --neutral-900: #0f172a;
    
    /* Status Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    
    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-dark: #1e293b;
    
    /* Typography */
    --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    
    /* Spacing */
    --container-max: 1200px;
    --section-padding: 100px 0;
    
    /* Shadows - Sophisticated */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Transitions - Smooth & Easy */
    --transition-fast: all 0.2s ease;
    --transition-smooth: all 0.3s ease;
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--neutral-700);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--neutral-600);
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: var(--section-padding);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.1);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    height: 70px;
}

/* Brand Logo Styling - Fixed to original style */
.brand-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: all 0.3s ease;
}

.brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    transition: color 0.3s ease;
    line-height: 1;
}

.brand-org {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-gold);
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brand-org {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-gold);
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Scrolled navbar text colors */
.navbar.scrolled .brand-text {
    color: white;
}

.navbar .brand-org {
    
    padding-top: 11px;
}

.navbar.scrolled .brand-org {
    color: var(--accent-gold);
    padding-top: 11px;
}

.navbar.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.9);
}

.navbar.scrolled .nav-link:hover {
    color: var(--accent-gold);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--primary-dark);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
}

.nav-link.active {
    color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
}

.nav-cta {
    background: var(--accent-gold);
    color: white !important;
    font-weight: 600;
    padding: 0.75rem 1.5rem !important;
}

.nav-cta:hover {
    background: var(--accent-gold-light);
    color: white !important;
    transform: translateY(-1px);
}

/* Enhanced Hamburger Menu Styles - Fixed animations */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.75rem;
    border: none;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    z-index: 1002;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nav-toggle:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.2);
    transform: scale(1.05);
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-dark);
    display: block;
    transition: all 0.3s ease;
    transform-origin: center;
    margin-bottom: 5px;
    border-radius: 2px;
}

.nav-toggle span:last-child {
    margin-bottom: 0;
}

.navbar.scrolled .nav-toggle {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.navbar.scrolled .nav-toggle span {
    background: white;
}

.navbar.scrolled .nav-toggle:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--accent-gold);
}

.nav-toggle.active {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--accent-gold);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background: var(--accent-gold);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
    background: var(--accent-gold);
}

.navbar.scrolled .nav-toggle.active span:nth-child(1),
.navbar.scrolled .nav-toggle.active span:nth-child(3) {
    background: var(--accent-gold);
}

/* Mobile Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Enhanced Mobile Menu - Fixed */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.5rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 320px;
        height: 100vh;
        background: linear-gradient(135deg, var(--primary-dark) 0%, var(--neutral-800) 100%);
        backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 6rem 2rem 2rem;
        gap: 0;
        transform: translateX(100%);
        transition: transform 0.4s ease;
        z-index: 1001;
        border-left: 2px solid var(--accent-gold);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu li {
        margin: 0;
        opacity: 1;
        transform: none;
        transition: all 0.3s ease;
    }

    .nav-link {
        display: block;
        padding: 1.2rem 1.5rem;
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.1rem;
        font-weight: 500;
        border-radius: 12px;
        margin-bottom: 0.5rem;
        background: transparent;
        border: 2px solid transparent;
        transition: all 0.3s ease;
        position: relative;
    }

    .nav-link:hover {
        color: var(--accent-gold);
        background: rgba(212, 175, 55, 0.1);
        border-color: rgba(212, 175, 55, 0.3);
        transform: translateX(8px);
        padding-left: 2rem;
    }

    .nav-link.active {
        color: var(--accent-gold);
        background: rgba(212, 175, 55, 0.15);
        border-color: var(--accent-gold);
        font-weight: 600;
    }

    .nav-cta {
        background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light)) !important;
        color: var(--primary-dark) !important;
        border: none !important;
        margin-top: 1rem;
        text-align: center;
        border-radius: 12px !important;
        padding: 1.2rem 1.5rem !important;
        font-weight: 700 !important;
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    }

    .nav-cta:hover {
        background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold)) !important;
        color: var(--primary-dark) !important;
        transform: translateX(8px) scale(1.02);
        box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
    }

    body.menu-open {
        overflow: hidden;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .nav-menu {
        width: 280px;
        padding: 5rem 1.5rem 2rem;
    }

    .brand-text {
        font-size: 1.5rem;
    }

    .brand-org {
        font-size: 0.9rem;
    }

    .nav-toggle {
        padding: 0.6rem;
    }

    .nav-toggle span {
        width: 24px;
        height: 2px;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    display: block;
}

.section-title {
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
    margin: 0 auto;
    border-radius: 2px;
}

/* Hero Sections */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--neutral-50) 0%, var(--neutral-100) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-overlay {
    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 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.geometric-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-blue));
    opacity: 0.1;
    border-radius: 20px;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    right: 10%;
    animation: floatShape 8s ease-in-out infinite;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    animation: floatShape 6s ease-in-out infinite reverse;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 30%;
    animation: floatShape 10s ease-in-out infinite;
}

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(-10px) rotate(10deg);
    }
    75% {
        transform: translateY(-30px) rotate(5deg);
    }
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: var(--neutral-100);
    border: 1px solid var(--neutral-200);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--neutral-600);
}

.hero-title {
    margin-bottom: 2rem;
}

.title-line {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--primary-dark);
}

.title-line.accent {
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--accent-gold);
    font-style: italic;
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--neutral-600);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--neutral-900) 100%);
    color: white;
    padding: 4rem 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Footer Brand */
.footer-brand {
    max-width: 300px;
}

.brand-logo-footer {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.brand-logo-footer .brand-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
}

.brand-logo-footer .brand-org {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--accent-gold);
}

.brand-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.footer-social h5 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

.footer-social .social-links {
    display: flex;
    gap: 1rem;
}

.footer-social .social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social .social-link:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Footer Links - Fixed alignment */
.footer h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
    text-align: left;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-gold);
}

.footer ul {
    list-style: none;
    text-align: left;
}

.footer ul li {
    margin-bottom: 0.75rem;
    text-align: left;
}

.footer ul a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: left;
}

.footer ul a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

/* Footer Contact - Left aligned */
.footer-contact .contact-info {
    margin-bottom: 2rem;
    text-align: left;
}

.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.footer-contact .contact-item div {
    text-align: left;
}

.footer-contact .contact-item div span {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
    text-align: left;
}

.footer-contact .contact-item a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    text-align: left;
}

.footer-contact .contact-item a:hover {
    color: var(--accent-gold);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
}

.footer-bottom-left p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.footer-tagline {
    color: var(--accent-gold) !important;
    font-weight: 500;
    margin-top: 0.25rem !important;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
}

.footer-legal a:hover {
    color: var(--accent-gold);
}

.footer-legal a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.footer-legal a:hover::after {
    width: 100%;
}

/* Mobile-only social section */
.footer-social-mobile { 
    display: none;
}

/* Footer Responsive Styles - Completely Fixed */
@media (max-width: 768px) {

    .footer {
        padding: 3rem 0 0;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    /* Brand Section - First */
    .footer-brand {
        order: 1;
        text-align: center;
        margin-bottom: 0;
    }

    .footer-brand .brand-description,
    .footer-brand .footer-social {
        display: none;
    }

    .brand-logo-footer {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.25rem;
        text-align: center;
        margin-bottom: 1rem;
    }

    /* Organization Links - Second */
    .footer-links {
        order: 2;
        text-align: center;
    }

    /* Hide Divisions - Third (hidden) */
    .footer-divisions {
        display: none;
    }

    /* Contact Info - Third */
    .footer-contact {
        order: 3;
        text-align: center;
    }

    .footer-contact .contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .footer-contact .contact-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.25rem;
    }

    .footer-contact .contact-item div {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* Social Links - Fourth */
    .footer-social-mobile {
        order: 4;
        display: block;
        text-align: center;
        padding: 1rem 0;
    }

    .footer-social-mobile h4 {
        color: white;
        margin-bottom: 1rem;
        font-size: 1rem;
        font-weight: 600;
        text-align: center;
        position: relative;
    }

    .footer-social-mobile h4::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 2px;
        background: var(--accent-gold);
    }

    .footer-social-mobile .social-links {
        display: flex;
        justify-content: center;
        gap: 1rem;
    }

    .footer-social-mobile .social-link {
        width: 45px;
        height: 45px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-social-mobile .social-link:hover {
        background: var(--accent-gold);
        color: var(--primary-dark);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    }

    /* General footer headings */
    .footer h4 {
        text-align: center;
        position: relative;
        padding-bottom: 0.5rem;
        margin-bottom: 1rem;
    }

    .footer h4::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 2px;
        background: var(--accent-gold);
    }

    .footer ul {
        list-style: none;
        text-align: center;
        padding: 0;
        margin: 0;
    }

    .footer ul li {
        margin-bottom: 0.75rem;
        text-align: center;
    }

    .footer ul a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        display: inline-block;
        text-align: center;
    }

    .footer ul a:hover {
        color: var(--accent-gold);
        transform: none;
    }

    .footer-bottom {
        padding: 1.5rem 0;
        text-align: center;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .footer-bottom-left {
        text-align: center;
    }

    .footer-bottom-left p {
        text-align: center;
        margin: 0.25rem 0;
    }

    .footer-legal {
        flex-direction: column;
        gap: 1rem;
        justify-content: center;
        align-items: center;
    }

    .footer-legal a {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 0 0;
    }

    .footer-content {
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .brand-logo-footer .brand-text {
        font-size: 1.5rem;
    }

    .brand-logo-footer .brand-org {
        font-size: 1.5rem;
    }

    .footer-social-mobile .social-link {
        width: 40px;
        height: 40px;
    }

    .footer-bottom-left p {
        font-size: 0.8rem;
    }

    .footer-legal a {
        font-size: 0.8rem;
    }

    .footer h4 {
        font-size: 1rem;
    }

    .footer ul a {
        font-size: 0.9rem;
    }
    
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.fade-in.animated {
    opacity: 1;
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.slide-up.animated {
    opacity: 1;
    transform: translateY(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.6s ease;
}

.scale-in.animated {
    opacity: 1;
    transform: scale(1);
}
