/* Master Chef Training Institute - About Page CSS */
/* Golden Gradient Theme: #ebc779 + #c88c0c + Black */
/* Body Font: Inter | Heading Font: Poppins */
/* All sizes reduced to 85% of original */

/* Reset & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #ebc779;
    --primary-gold-dark: #c88c0c;
    --text-dark: #000000;
    --text-medium: #333333;
    --text-light: #666666;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-cream: #fef9f4;
    --shadow-sm: 0 1.7px 6.8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 6.8px 21.25px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 12.75px 29.75px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 21.25px 42.5px rgba(0, 0, 0, 0.2);
    --gradient-gold: linear-gradient(135deg, #ebc779 0%, #c88c0c 100%);
    --tg-body-font-family: 'Inter', sans-serif;
    --tg-heading-font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 13.6px; /* 16px * 0.85 */
}

body {
    font-family: var(--tg-body-font-family);
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--tg-heading-font-family);
    font-weight: 700;
    line-height: 1.2;
}

/* Container */
.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1.7rem; /* 2rem * 0.85 */
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 0.95rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
}

.navbar.scrolled {
    background: rgb(255, 255, 255);
    backdrop-filter: blur(17px);
    box-shadow: var(--shadow-md);
    padding: 0.7125rem 0;
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.9rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.7125rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.02);
}

.logo-image {
    width: 82.5px;
    height: 82.5px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.7px solid var(--primary-gold);
}

.logo-text {
    font-size: 1.235rem;
    font-weight: 800;
    font-family: var(--tg-heading-font-family);
    color: var(--text-dark);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.375rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-family: var(--tg-body-font-family);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.475rem 0;
}

.navbar.scrolled .nav-link {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2.85px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
    border-radius: 1.9px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-btn {
    background: var(--gradient-gold);
    color: white;
    padding: 0.7125rem 1.425rem;
    border-radius: 23.75px;
    text-decoration: none;
    font-weight: 600;
    font-family: var(--tg-body-font-family);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.cta-btn:hover {
    transform: translateY(-1.9px);
    box-shadow: var(--shadow-xl);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 3.8px;
    padding: 7.6px;
}

.hamburger {
    width: 23.75px;
    height: 2.85px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 1.9px;
}

.navbar.scrolled .hamburger {
    background: var(--text-dark);
}

/* About Hero Section - Image Background */
.about-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
}

.about-hero-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1.7rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.4rem;
    align-items: center;
    position: relative;
    z-index: 3;
    min-height: 80vh;
    padding-top: 68px;
}

.about-hero-content {
    color: white;
}

.about-hero-badge {
    background: var(--gradient-gold);
    color: white;
    padding: 0.425rem 0.85rem;
    border-radius: 17px;
    font-size: 0.765rem;
    font-weight: 600;
    font-family: var(--tg-body-font-family);
    margin-bottom: 1.275rem;
    display: inline-block;
}

.about-hero-title {
    font-size: 2.975rem;
    font-weight: 900;
    font-family: var(--tg-heading-font-family);
    line-height: 1.1;
    margin-bottom: 1.275rem;
    color: white;
}

.about-hero-title .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-description {
    font-size: 0.935rem;
    font-family: var(--tg-body-font-family);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.7rem;
    line-height: 1.7;
}

.about-hero-buttons {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.about-enroll-btn-hero {
    background: var(--gradient-gold);
    color: white;
    padding: 0.85rem 1.7rem;
    border: none;
    border-radius: 21.25px;
    font-weight: 600;
    font-family: var(--tg-body-font-family);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.425rem;
    font-size: 0.85rem;
}

.about-courses-btn-hero {
    background: transparent;
    color: white;
    padding: 0.85rem 1.7rem;
    border: 1.7px solid var(--primary-gold);
    border-radius: 21.25px;
    font-weight: 600;
    font-family: var(--tg-body-font-family);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.425rem;
    font-size: 0.85rem;
}

.about-enroll-btn-hero:hover,
.about-courses-btn-hero:hover {
    transform: translateY(-1.7px);
    box-shadow: var(--shadow-lg);
}

.about-courses-btn-hero:hover {
    background: var(--primary-gold);
    color: white;
}

.about-enroll-btn-hero i,
.about-courses-btn-hero i {
    transition: transform 0.3s ease;
}

.about-enroll-btn-hero:hover i,
.about-courses-btn-hero:hover i {
    transform: translateX(4.25px);
}

/* About Hero Visual */
.about-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-visual-section {
    position: relative;
    text-align: center;
}

.about-visual-container {
    position: relative;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--gradient-gold);
    padding: 8.5px;
    margin-bottom: 1.7rem;
}

.about-visual-thumbnail {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.about-visual-badge {
    position: absolute;
    bottom: 17px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 0.85rem 1.275rem;
    border-radius: 21.25px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.about-visual-badge h4 {
    font-size: 1.02rem;
    font-weight: 800;
    color: var(--primary-gold-dark);
    margin-bottom: 0.2125rem;
    font-family: var(--tg-heading-font-family);
}

.about-visual-badge p {
    font-size: 0.68rem;
    color: var(--text-medium);
    font-family: var(--tg-body-font-family);
    margin: 0;
}

.about-stats-avatars {
    display: flex;
    justify-content: center;
    gap: 1.275rem;
    flex-wrap: wrap;
}

.about-stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.85rem 1.275rem;
    border-radius: 12.75px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.about-stat-item:hover {
    transform: translateY(-4.25px);
    background: rgba(255, 255, 255, 0.15);
}

.about-stat-item h3 {
    font-size: 1.275rem;
    font-weight: 800;
    color: var(--primary-gold);
    margin-bottom: 0.2125rem;
    font-family: var(--tg-heading-font-family);
}

.about-stat-item p {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--tg-body-font-family);
    margin: 0;
}

/* Section Headers */
.about-section-header {
    text-align: center;
    margin-bottom: 3.4rem;
}

.about-section-label {
    font-size: 0.765rem;
    font-weight: 600;
    font-family: var(--tg-body-font-family);
    color: var(--primary-gold-dark);
    text-transform: uppercase;
    letter-spacing: 1.7px;
    margin-bottom: 0.85rem;
}

.about-section-title {
    font-size: 2.125rem;
    font-weight: 800;
    font-family: var(--tg-heading-font-family);
    margin-bottom: 0.85rem;
    color: var(--text-dark);
}

.about-section-subtitle {
    font-size: 0.935rem;
    font-family: var(--tg-body-font-family);
    color: var(--text-medium);
    max-width: 510px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-section-description {
    font-size: 0.935rem;
    font-family: var(--tg-body-font-family);
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1.7rem;
}

/* Mission Vision Section */
.about-mission-vision {
    padding: 68px 0;
    background: var(--bg-light);
}

.about-mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.55rem;
    margin-top: 2.55rem;
}

.about-mission-card,
.about-vision-card {
    background: white;
    padding: 2.55rem;
    border-radius: 12.75px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 0.85px solid #f0f0f0;
}

.about-mission-card:hover,
.about-vision-card:hover {
    transform: translateY(-6.8px);
    box-shadow: var(--shadow-lg);
}

.about-card-icon {
    width: 68px;
    height: 68px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.7rem;
}

.about-card-icon i {
    font-size: 1.7rem;
    color: white;
}

.about-mission-card h3,
.about-vision-card h3 {
    font-size: 1.36rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.85rem;
    font-family: var(--tg-heading-font-family);
}

.about-mission-card p,
.about-vision-card p {
    font-size: 0.85rem;
    color: var(--text-medium);
    line-height: 1.6;
    font-family: var(--tg-body-font-family);
}

/* Features Section */
.about-features-section {
    padding: 68px 0;
    background: white;
}

.about-features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.4rem;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
}

.about-features-list {
    display: flex;
    flex-direction: column;
    gap: 1.275rem;
    margin-top: 1.7rem;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1.275rem;
    background: var(--bg-light);
    border-radius: 10.2px;
    transition: all 0.3s ease;
}

.about-feature-item:hover {
    transform: translateX(6.8px);
    box-shadow: var(--shadow-sm);
}

.about-feature-icon {
    width: 42.5px;
    height: 42.5px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-icon i {
    font-size: 1.02rem;
    color: white;
}

.about-feature-content h4 {
    font-size: 0.935rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.425rem;
    font-family: var(--tg-heading-font-family);
}

.about-feature-content p {
    font-size: 0.8075rem;
    color: var(--text-medium);
    line-height: 1.5;
    font-family: var(--tg-body-font-family);
}

/* Visual Grid */
.about-visual-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0.85rem;
    height: 425px;
}

.about-grid-image {
    border-radius: 10.2px;
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.about-grid-image.large {
    grid-row: 1 / -1;
}

.about-grid-image:hover {
    transform: scale(1.02);
}

/* Values Section */
.about-values-section {
    padding: 68px 0;
    background: white;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(212.5px, 1fr));
    gap: 2.125rem;
    margin-top: 2.55rem;
}

.about-value-card {
    background: var(--bg-light);
    padding: 2.125rem;
    border-radius: 12.75px;
    text-align: center;
    transition: all 0.3s ease;
    border: 0.85px solid #f0f0f0;
}

.about-value-card:hover {
    transform: translateY(-6.8px);
    box-shadow: var(--shadow-lg);
    background: white;
}

.about-value-icon {
    width: 68px;
    height: 68px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.275rem;
}

.about-value-icon i {
    font-size: 1.7rem;
    color: white;
}

.about-value-card h3 {
    font-size: 1.19rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.85rem;
    font-family: var(--tg-heading-font-family);
}

.about-value-card p {
    font-size: 0.8075rem;
    color: var(--text-medium);
    line-height: 1.6;
    font-family: var(--tg-body-font-family);
}

/* CTA Section */
.about-cta-section {
    padding: 68px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('./Images/about1.jpg') center/cover;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: linear-gradient(135deg, rgba(235, 199, 121, 0.1) 0%, rgba(200, 140, 12, 0.1) 100%);
    z-index: 1;
}

.about-cta-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 auto;
}

.about-cta-badge {
    background: var(--gradient-gold);
    color: white;
    padding: 0.425rem 0.85rem;
    border-radius: 17px;
    font-size: 0.765rem;
    font-weight: 600;
    font-family: var(--tg-body-font-family);
    margin-bottom: 1.275rem;
    display: inline-block;
}

.about-cta-title {
    font-size: 2.55rem;
    font-weight: 800;
    font-family: var(--tg-heading-font-family);
    margin-bottom: 1.275rem;
    color: white;
}

.about-cta-description {
    font-size: 1.02rem;
    font-family: var(--tg-body-font-family);
    margin-bottom: 2.125rem;
    line-height: 1.6;
    opacity: 0.9;
}

.about-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.275rem;
    flex-wrap: wrap;
}

.about-cta-btn-primary {
    background: white;
    color: var(--primary-gold-dark);
    padding: 0.85rem 1.7rem;
    border-radius: 21.25px;
    text-decoration: none;
    font-weight: 600;
    font-family: var(--tg-body-font-family);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.425rem;
    box-shadow: var(--shadow-md);
}

.about-cta-btn-secondary {
    background: transparent;
    color: white;
    padding: 0.85rem 1.7rem;
    border: 1.7px solid white;
    border-radius: 21.25px;
    text-decoration: none;
    font-weight: 600;
    font-family: var(--tg-body-font-family);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.425rem;
}

.about-cta-btn-primary:hover {
    transform: translateY(-2.55px);
    box-shadow: var(--shadow-xl);
}

.about-cta-btn-secondary:hover {
    background: white;
    color: var(--primary-gold-dark);
    transform: translateY(-2.55px);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 51px 0 17px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(212.5px, 1fr));
    gap: 2.55rem;
    margin-bottom: 2.55rem;
}

.footer-section h4 {
    font-family: var(--tg-heading-font-family);
    font-size: 1.02rem;
    font-weight: 600;
    margin-bottom: 1.275rem;
    color: white;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6375rem;
    margin-bottom: 0.85rem;
}

.footer-logo-image {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.7px solid var(--primary-gold);
}

.footer-logo-text {
    font-size: 0.935rem;
    font-weight: 700;
    font-family: var(--tg-heading-font-family);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    font-family: var(--tg-body-font-family);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.275rem;
}

.footer-social {
    display: flex;
    gap: 0.85rem;
}

.footer-social a {
    width: 34px;
    height: 34px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-2.55px);
    box-shadow: var(--shadow-md);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.6375rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-family: var(--tg-body-font-family);
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-gold);
    transform: translateX(4.25px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.6375rem;
    font-family: var(--tg-body-font-family);
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.contact-item:hover {
    color: var(--primary-gold);
    transform: translateX(4.25px);
}

.contact-item i {
    color: var(--primary-gold);
    width: 17px;
}

.footer-bottom {
    border-top: 0.85px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.7rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.footer-copyright p {
    font-family: var(--tg-body-font-family);
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 1.7rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-family: var(--tg-body-font-family);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-gold);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.55rem;
    }

    .about-hero-title {
        font-size: 2.38rem;
    }

    .about-features-content {
        grid-template-columns: 1fr;
        gap: 2.55rem;
        text-align: center;
    }

    .about-visual-grid {
        height: auto;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }

    .about-grid-image.large {
        grid-row: auto;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    .about-hero-title {
        font-size: 1.87rem;
    }

    .about-hero-buttons {
        justify-content: center;
    }.about-visual-container {
        width: 255px;
        height: 255px;
    }

    .about-stats-avatars {
        gap: 0.85rem;
    }

    .about-section-title {
        font-size: 1.7rem;
    }

    .about-cta-title {
        font-size: 1.87rem;
    }

    .about-mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.7rem;
    }

    .about-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.85rem;
    }

    .about-hero-title {
        font-size: 1.53rem;
    }

    .about-hero-description {
        font-size: 0.85rem;
    }

    .about-hero-buttons {
        flex-direction: column;
    }

    .about-enroll-btn-hero,
    .about-courses-btn-hero {
        padding: 0.74375rem 1.275rem;
        font-size: 0.765rem;
        justify-content: center;
    }

    .about-visual-container {
        width: 212.5px;
        height: 212.5px;
    }

    .about-stats-avatars {
        flex-direction: column;
        align-items: center;
    }

    .about-section-title {
        font-size: 1.36rem;
    }

    .about-cta-title {
        font-size: 1.53rem;
    }

    .about-mission-card,
    .about-vision-card {
        padding: 1.7rem;
    }

    .about-value-card {
        padding: 1.7rem;
    }

    .about-feature-item {
        padding: 1.02rem;
    }

    .about-visual-grid {
        display: block;
    }

    .about-grid-image {
        margin-bottom: 0.85rem;
        height: 170px;
    }

    .about-cta-btn-primary,
    .about-cta-btn-secondary {
        padding: 0.74375rem 1.275rem;
        font-size: 0.765rem;
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.7rem;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(17px);
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-in-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6.8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-gold);
    border-radius: 3.4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-gold-dark);
}

/* Selection Styles */
::selection {
    background: var(--primary-gold);
    color: white;
}

::-moz-selection {
    background: var(--primary-gold);
    color: white;
}

/* Focus Styles */
*:focus {
    outline: 1.7px solid var(--primary-gold);
    outline-offset: 1.7px;
    border-radius: 3.4px;
}

/* Print Styles */
@media print {
    .navbar,
    .mobile-menu,
    .about-header-background,
    .about-header-overlay {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .about-page-header,
    .about-cta-section {
        background: white !important;
        color: black !important;
    }
}