* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #FF6B35;
    --secondary-blue: #004E89;
    --tertiary-maroon: #8B0000;
    --light-bg: #F8F9FA;
    --dark-bg: #1a1a1a;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
}

[data-aos] {
    opacity: 0;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    overflow-x: hidden;
}


.premium-navbar {
    position: fixed;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    z-index: 999;
    padding: 14px 30px;

    background: white;
    

    backdrop-filter: blur(18px);
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.15);

    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}


.premium-navbar .navbar-brand {
    font-weight: 800;
    font-size: 1.7rem;
    color: var(--text-light) !important;
    letter-spacing: 2px;
}

.premium-navbar .nav-link {
    color: var(--primary-orange) !important;
    margin: 0 14px;
    font-weight: 500;
    position: relative;
    transition: .3s;
}

.premium-navbar .nav-link:hover {
    color: var(--primary-orange) !important;
}

.premium-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary-orange);
    transition: .3s;
}

.premium-navbar .nav-link:hover::after {
    width: 100%;
}

.logo-brand {
    display: flex;
    align-items: center;
}

/* logo image */
.logo-brand img {
    height: 55px;
    width: 86px;
    object-fit: contain;
    transition: 0.3s ease;
}


.logo-brand img:hover {
    transform: scale(1.05);
}

@media(max-width:768px) {

    .logo-brand img {
        height: 38px;
    }

}



.video-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    overflow: hidden;
    padding: 120px 20px 80px;
    /* ✅ FIX */
}


.hero-slider {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-slider .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slider .slide.active {
    opacity: 1;
}

.hero-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        rgba(0, 0, 0, 0.45);
    z-index: -1;
}

.hero-content {
    max-width: 850px;
}

.video-hero h1 {
    font-size: 4rem;
    font-weight: 800;
}

.video-hero h1 span {
    color: var(--primary-orange);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin: 20px 0 30px;
}

.hero-btn {
    padding: 14px 38px;
    border-radius: 50px;
    text-decoration: none;
    margin: 10px;
    font-weight: 600;
    transition: .3s;
}

.hero-btn.primary {
    background: var(--primary-orange);
    color: var(--text-light);
}

.hero-btn.secondary {
    border: 2px solid var(--primary-orange);
    color: var(--text-light);
}

.hero-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media(max-width:768px) {

    .video-hero {
        padding-top: 160px;
        padding-bottom: 80px;
    }

    .video-hero h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-btn {
        padding: 12px 26px;
        font-size: 14px;
    }
}


.section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--secondary-blue);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-orange), var(--tertiary-maroon));
    border-radius: 3px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-top: 2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    line-height: 1.8;
}

@media(max-width:768px) {

    .hero-content {
        padding: 0 10px;
    }

    .video-hero h1 {
        font-size: 2.1rem;
    }

    .hero-btn {
        display: block;
        width: 100%;
        max-width: 260px;
        margin: 12px auto;
        text-align: center;
    }

}

/* about-section */

.about {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--secondary-blue);
    margin-bottom: 1rem;
}

.about-text p {
    color: #555;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-image {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 78, 137, 0.15);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.3), transparent);
    animation: rotate 8s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}


@media(max-width:768px) {

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image {
        height: 300px;
        order: -1;
    }

}


/* service */

.services {
    background: white;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-orange), var(--tertiary-maroon));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-orange);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange), #ff8555);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.service-card h4 {
    font-size: 1.4rem;
    color: var(--secondary-blue);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.service-card:hover h4 {
    color: var(--primary-orange);
}

.service-card p {
    color: #666;
    line-height: 1.7;
}

/* impact-section */

.impact {
    background: linear-gradient(135deg, var(--secondary-blue) 0%, #003d6b 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.impact::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2), transparent);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.2;
    }
}

.impact-stat {
    text-align: center;
    position: relative;
    z-index: 1;
}

.impact-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-orange);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0.5rem;
}

.impact-label {
    font-size: 1.1rem;
    opacity: 0.95;
    font-weight: 500;
}


/* team-section */

.team {
    background: white;
}

.team-card {
    text-align: center;
    border-radius: 15px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.team-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-orange), var(--tertiary-maroon));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
}

.team-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 78, 137, 0.2);
}

.team-info {
    padding: 25px;
}

.team-info h4 {
    color: var(--secondary-blue);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.team-role {
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.team-bio {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 15px;
}

.social-link {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--primary-orange), var(--tertiary-maroon));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.social-link:hover {
    transform: scale(1.15);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* cta-section */

.cta-section {
    background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--tertiary-maroon) 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1), transparent);
    animation: rotate 15s linear infinite;
}

.cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

/* footer-section */
footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-section a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-orange);
    padding-left: 20px;
}

.footer-section a:hover::before {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    padding-top: 20px;
    text-align: center;
    color: #999;
}

.footer-socials {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-orange), var(--tertiary-maroon));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

/*
   SMOOTH MOUSE FOLLOWER */


.mouse-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;

    background: #ff6b35; 

    transform: translate(-50%, -50%);
    transition: width .25s ease,
                height .25s ease,
                background .25s ease,
                box-shadow .25s ease;

    box-shadow:
        0 0 10px #ff6b35,
        0 0 25px rgba(255,107,53,0.8),
        0 0 45px rgba(255,107,53,0.6);
}

/* Hover Effect */
.mouse-follower.active {
    width: 45px;
    height: 45px;
    background: rgba(255,107,53,0.15);
    border: 2px solid #ff6b35;

    box-shadow:
        0 0 20px #ff6b35,
        0 0 60px rgba(255,107,53,0.7);
}


@media(max-width:768px){
    .mouse-follower{
        display:none;
    }
}






/* profile-page */

    /*  PROFILE HERO SECTION  */
    .profile-hero {
        
        color: var(--text-light);
        padding: 120px 20px;
        position: relative;
        overflow: hidden;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .profile-hero::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
        border-radius: 50%;
        animation: float 6s ease-in-out infinite;
    }

    .profile-hero::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -5%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(139, 0, 0, 0.15) 0%, transparent 70%);
        border-radius: 50%;
        animation: float 8s ease-in-out infinite reverse;
    }

    .profile-hero .floating-icon-1 {
        position: absolute;
        font-size: 4rem;
        animation: float-rotate 8s ease-in-out infinite;
        opacity: 0.2;
    }

    .profile-hero .floating-icon-2 {
        position: absolute;
        font-size: 3.5rem;
        animation: float-rotate 10s ease-in-out infinite reverse;
        opacity: 0.15;
    }

    .profile-hero .floating-icon-3 {
        position: absolute;
        font-size: 3rem;
        animation: float-rotate 12s ease-in-out infinite;
        opacity: 0.2;
    }

    @keyframes float-rotate {
        0%, 100% { transform: translateY(0px) rotate(0deg); }
        50% { transform: translateY(30px) rotate(10deg); }
    }

    @keyframes float {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(30px); }
    }

    .profile-hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
        max-width: 800px;
        animation: fadeInDown 1s ease-out;
    }

    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .profile-hero h1 {
        font-size: clamp(2.5rem, 5vw, 4rem);
        font-weight: 800;
        margin-bottom: 1rem;
        letter-spacing: -1px;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 40px rgba(255, 107, 53, 0.2);
        animation: slideInUp 1s ease-out 0.2s both, glow-pulse 3s ease-in-out 1s infinite;
    }

    @keyframes slideInUp {
        from {
            opacity: 0;
            transform: translateY(50px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes glow-pulse {
        0%, 100% { text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 40px rgba(255, 107, 53, 0.2); }
        50% { text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 60px rgba(255, 107, 53, 0.4); }
    }

    .profile-hero p {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        opacity: 0.95;
        animation: slideInUp 1s ease-out 0.4s both;
    }

    .profile-hero .subtitle {
        font-size: 1rem;
        color: var(--primary-orange);
        font-weight: 600;
        animation: slideInUp 1s ease-out 0.3s both, pulse-color 2s ease-in-out infinite;
    }

    @keyframes pulse-color {
        0%, 100% { color: var(--primary-orange); }
        50% { color: #ff8555; }
    }

    /*  ABOUT SECTION  */
    .profile-section {
        padding: 80px 20px;
        scroll-margin-top: 100px;
    }

    .profile-section.about {
        background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
    }

    .profile-section.vision {
        background: var(--text-light);
    }

    .profile-section.mission {
        background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
    }

    .profile-section.objectives {
        background: var(--text-light);
    }

    .section-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .section-header {
        display: flex;
        align-items: center;
        margin-bottom: 3rem;
        gap: 2rem;
    }

    .section-header::before {
        content: '';
        width: 5px;
        height: 60px;
        background: linear-gradient(180deg, var(--primary-orange), var(--tertiary-maroon));
        border-radius: 3px;
        animation: expandHeight 0.8s ease-out;
    }

    @keyframes expandHeight {
        from {
            height: 0;
        }
        to {
            height: 60px;
        }
    }

    .section-header h2 {
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 800;
        color: var(--secondary-blue);
        letter-spacing: -0.5px;
    }

    .section-content {
        display: grid;
        gap: 2rem;
    }

    .section-text {
        font-size: 1.05rem;
        line-height: 1.8;
        color: var(--text-dark);
        animation: fadeInUp 0.8s ease-out;
    }

    .section-text strong {
        color: var(--tertiary-maroon);
    }

    /*  VISION & MISSION BOXES  */
    .vision-mission-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
    }

    .vision-box,
    .mission-box {
        background: white;
        padding: 2.5rem;
        border-radius: 15px;
        border-left: 5px solid var(--primary-orange);
        box-shadow: 0 10px 40px rgba(0, 78, 137, 0.08);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        animation: slideInUp 0.8s ease-out;
    }

    .vision-box:hover,
    .mission-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 60px rgba(0, 78, 137, 0.15);
    }

    .vision-box h3,
    .mission-box h3 {
        color: var(--secondary-blue);
        font-size: 1.4rem;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 0.8rem;
    }

    .vision-box p,
    .mission-box p {
        color: var(--text-dark);
        line-height: 1.8;
    }

    .icon {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, var(--primary-orange), var(--tertiary-maroon));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.5rem;
        box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
        transition: all 0.3s ease;
        animation: bounce-icon 2s ease-in-out infinite;
    }

    .icon:hover {
        transform: scale(1.15) rotate(10deg);
        box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
    }

    @keyframes bounce-icon {
        0%, 100% { transform: translateY(0) scale(1); }
        50% { transform: translateY(-8px) scale(1.05); }
    }

    /*  OBJECTIVES SECTION  */
    .objectives-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
    }

    .objective-card {
        background: linear-gradient(135deg, white 0%, var(--light-bg) 100%);
        padding: 2.5rem;
        border-radius: 15px;
        border-top: 5px solid var(--tertiary-maroon);
        border-left: 3px solid var(--primary-orange);
        box-shadow: 0 8px 30px rgba(139, 0, 0, 0.1);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        animation: scaleIn 0.6s ease-out;
        position: relative;
        overflow: hidden;
    }

    .objective-card::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, rgba(255, 107, 53, 0.1), transparent 70%);
        border-radius: 50%;
        transition: all 0.4s ease;
    }

    .objective-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 50px rgba(139, 0, 0, 0.2);
    }

    .objective-card:hover::before {
        top: -30%;
        right: -30%;
    }

    @keyframes scaleIn {
        from {
            opacity: 0;
            transform: scale(0.9);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    .objective-number {
        font-size: 2.5rem;
        font-weight: 900;
        background: linear-gradient(135deg, var(--primary-orange), var(--tertiary-maroon));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 0.5rem;
    }

    .objective-card h3 {
        font-size: 1.3rem;
        color: var(--secondary-blue);
        margin-bottom: 1rem;
        font-weight: 700;
    }

    .objective-card p {
        color: var(--text-dark);
        line-height: 1.7;
        position: relative;
        z-index: 1;
    }

    /*  IMPACT STATS  */
    .impact-stats {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
        padding-top: 3rem;
        border-top: 2px solid rgba(255, 107, 53, 0.2);
    }

    .stat-item {
        text-align: center;
        animation: fadeInUp 0.8s ease-out;
    }

    .stat-number {
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 900;
        color: var(--primary-orange);
        margin-bottom: 0.5rem;
    }

    .stat-label {
        font-size: 1rem;
        color: var(--text-dark);
        font-weight: 600;
    }

    /*  RESPONSIVE  */
    @media (max-width: 768px) {
        .profile-hero {
            padding: 80px 20px;
            min-height: 100vh;
        }

        .profile-section {
            padding: 60px 20px;
        }

        .section-header {
            flex-direction: column;
            align-items: flex-start;
            margin-bottom: 2rem;
        }

        .section-header::before {
            width: 60px;
            height: 5px;
        }

        .objectives-grid {
            grid-template-columns: 1fr;
        }

        .vision-mission-grid {
            grid-template-columns: 1fr;
        }

        .profile-hero h1 {
            font-size: 2.2rem;
        }

        .profile-hero p {
            font-size: 1rem;
        }

        .objective-card {
            padding: 2rem 1.5rem;
        }

        .icon {
            width: 40px;
            height: 40px;
            font-size: 1.2rem;
        }
    }

    @media (max-width: 480px) {
        .profile-hero {
            padding: 60px 15px;
            min-height: 100vh;
        }

        .profile-section {
            padding: 40px 15px;
        }

        .profile-hero h1 {
            font-size: 1.8rem;
        }

        .profile-hero p {
            font-size: 0.9rem;
        }

        .section-header h2 {
            font-size: 1.8rem;
        }

        .objective-number {
            font-size: 2rem;
        }

        .stat-number {
            font-size: 1.8rem;
        }
    }
