/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Team Detail Page Styles */
.team-detail-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #fef6e4 0%, #f8f4e6 100%);
    min-height: 100vh;
}

.team-detail-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 0;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.team-member-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    padding: 50px;
    display: flex;
    gap: 60px;
    max-width: 1300px;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.member-image {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 400px;
}

.member-photo {
    width: 400px;
    height: 600px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.member-photo:hover {
    transform: scale(1.05);
}

.member-position {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #dc143c;
    text-align: center;
}

.position-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.position-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
    font-weight: 500;
}

.member-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.member-name {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    line-height: 1.2;
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.member-skills {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #dc143c;
}

.skills-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.skill-tag {
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.skill-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
}

.member-about {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #dc143c;
}

.about-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    margin: 0;
}

/* Mentor Name Link Styles */
.mentor-name-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mentor-name-link:hover {
    color: #dc143c;
    text-decoration: none;
}

.mentor-name-link:visited {
    color: inherit;
}

.mentor-name-link:focus {
    outline: 2px solid #dc143c;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .team-member-card {
        flex-direction: column;
        padding: 30px 20px;
        gap: 30px;
        margin: 0 20px;
    }
    
    .member-image {
        align-items: center;
        width: 100%;
        max-width: 400px;
    }
    
    .member-photo {
        width: 100%;
        max-width: 350px;
        height: 525px;
    }
    
    .member-position {
        width: 100%;
        max-width: 350px;
    }
    
    .member-name {
        font-size: 2rem;
        text-align: center;
    }
    
    .skills-grid {
        justify-content: center;
    }
    
    .team-detail-section {
        padding: 100px 0 60px;
    }
}

@media (max-width: 480px) {
    .member-name {
        font-size: 1.8rem;
    }
    
    .member-skills,
    .member-about,
    .member-position {
        padding: 20px;
    }
    
    .skill-tag {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .position-title {
        font-size: 1.1rem;
    }
    
    .position-text {
        font-size: 0.9rem;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fef6e4;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #333;
}

.brand-logo {
    width: 240px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #b71c1c 0%, #4a0000 100%);
    border-radius: 15px;
    padding: 8px;
    box-shadow: 0 4px 15px rgba(183, 28, 28, 0.3);
    transition: all 0.3s ease;
}

.brand-logo:hover {
    box-shadow: 0 6px 20px rgba(183, 28, 28, 0.4);
    transform: translateY(-2px);
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Responsive logo sizes */
@media (max-width: 768px) {
    .brand-logo {
        width: 180px;
        height: 45px;
        padding: 6px;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .brand-logo {
        width: 150px;
        height: 38px;
        padding: 5px;
        border-radius: 10px;
    }
}

/* Fallback for brand-icon if needed */
.brand-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #dc143c;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: 1px solid #ddd;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-toggle:hover {
    background: #f8f9fa;
}

.nav-toggle,
.nav-close {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Language Modal */
.language-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.language-modal.active {
    display: flex;
}

.language-modal-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    max-width: 400px;
    width: 90%;
}

.language-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.language-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.language-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.language-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-option:hover,
.language-option.active {
    border-color: #dc143c;
    background: #f8f9ff;
}

.language-option img {
    width: 30px;
    height: 20px;
    object-fit: cover;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #fef6e4 0%, #f9f1e7 100%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.dream-university {
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.highlight-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.hero-cta-btn {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

/* Floating Icons */
.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    color: rgba(220, 20, 60, 0.1);
    animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) { animation-delay: 0s; }
.floating-icon:nth-child(2) { animation-delay: 1s; }
.floating-icon:nth-child(3) { animation-delay: 2s; }
.floating-icon:nth-child(4) { animation-delay: 3s; }
.floating-icon:nth-child(5) { animation-delay: 4s; }
.floating-icon:nth-child(6) { animation-delay: 5s; }
.floating-icon:nth-child(7) { animation-delay: 6s; }
.floating-icon:nth-child(8) { animation-delay: 7s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-card-stack {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.card-stack-container {
    position: relative;
    height: 400px;
    perspective: 1000px;
}

.hero-card {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 4px solid white;
    background: white;
    padding: 4px;
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.hero-card:nth-child(1) { 
    transform: translateZ(0px) rotateY(0deg) scale(1); 
    z-index: 4; 
    opacity: 1;
}
.hero-card:nth-child(2) { 
    transform: translateZ(-30px) rotateY(-8deg) translateX(15px) scale(0.95); 
    z-index: 3; 
    opacity: 0.9;
}
.hero-card:nth-child(3) { 
    transform: translateZ(-60px) rotateY(-15deg) translateX(30px) scale(0.9); 
    z-index: 2; 
    opacity: 0.8;
}
.hero-card:nth-child(4) { 
    transform: translateZ(-90px) rotateY(-22deg) translateX(45px) scale(0.85); 
    z-index: 1; 
    opacity: 0.7;
}

.card-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.card-nav-left { left: -60px; }
.card-nav-right { right: -60px; }

.card-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #333;
    transition: all 0.3s ease;
}

.card-nav-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.card-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.card-indicator.active {
    background: #dc143c;
    transform: scale(1.2);
}

/* University Logos Section */
.university-logos-section {
    padding: 80px 0;
    background: white;
    overflow: hidden;
}

.universities-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.universities-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.logos-wrapper {
    overflow: hidden;
    position: relative;
}

.logos-track {
    display: flex;
    animation: scroll 15s linear infinite;
    gap: 2rem;
}

.logo-item {
    flex-shrink: 0;
}

.university-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border: 2px solid #f8f9fa;
    transition: all 0.3s ease;
    min-width: 220px;
    position: relative;
    overflow: hidden;
}

.university-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(248,249,250,0.8) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.university-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);
    border-color: #dc143c;
}

.university-card:hover::before {
    opacity: 1;
}

.university-logo-img {
    height: 70px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1) saturate(1.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.university-card:hover .university-logo-img {
    filter: brightness(1.2) contrast(1.2) saturate(1.3);
    transform: scale(1.05);
}

.university-name {
    font-weight: 600;
    color: #2d3748;
    text-align: center;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.university-card:hover .university-name {
    color: #dc143c;
    font-weight: 700;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Journey Path */
.journey-path {
    position: fixed;
    right: 30px;
    top: 0;
    height: 100vh;
    width: 80px;
    z-index: 500;
    pointer-events: none;
}

.journey-line {
    position: absolute;
    right: 40px;
    top: 15%;
    bottom: 15%;
    width: 3px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        #d4a574 10%, 
        #d4a574 90%, 
        transparent 100%);
    border-radius: 2px;
}

.journey-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(
        to bottom,
        transparent 0px,
        transparent 8px,
        #8b4513 8px,
        #8b4513 16px
    );
    border-radius: 2px;
}

.journey-step {
    position: absolute;
    right: 25px;
    width: 32px;
    height: 32px;
    background: white;
    border: 3px solid #d4a574;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: #8b4513;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.journey-step.active {
    background: #d4a574;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

.journey-step.completed {
    background: #8b4513;
    border-color: #8b4513;
    color: white;
}

.paper-plane {
    position: absolute;
    right: 32px;
    font-size: 20px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transform-origin: center;
}

.paper-plane.flying {
    animation: fly 0.8s ease-in-out;
}

@keyframes fly {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(5deg) scale(1.1); }
    100% { transform: rotate(0deg) scale(1); }
}

/* Section Styles */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: white;
}

.about-intro-card {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.about-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: center;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.mission-vision-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.mission-card {
    background: linear-gradient(135deg, #f0fdf4 0%, #e6fffa 100%);
}

.vision-card {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
}

.mission-vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.values-section {
    margin-top: 4rem;
}

.values-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    font-family: 'Playfair Display', serif;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, auto);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, auto);
        gap: 1rem;
    }
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Individual Value Card Colors */
.value-card:nth-child(1) {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.value-card:nth-child(2) {
    background: linear-gradient(135deg, #fefce8 0%, #fef3c7 100%);
}

.value-card:nth-child(3) {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.value-card:nth-child(4) {
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
}

.value-card:nth-child(5) {
    background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
}

.value-card:nth-child(6) {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
}

/* Animated Background Icons */
.value-card::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    opacity: 0.1;
    z-index: 1;
    transition: all 0.3s ease;
}

.value-card:nth-child(1)::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23059669' viewBox='0 0 24 24'%3E%3Cpath d='M12 2L13.09 8.26L20 9L13.09 9.74L12 16L10.91 9.74L4 9L10.91 8.26L12 2Z'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    animation: pulse 3s ease-in-out infinite;
}

.value-card:nth-child(2)::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23d97706' viewBox='0 0 24 24'%3E%3Cpath d='M12 2L15.09 8.26L22 9L15.09 9.74L12 16L8.91 9.74L2 9L8.91 8.26L12 2Z'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    animation: sparkle 4s ease-in-out infinite;
}

.value-card:nth-child(3)::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2316a34a' viewBox='0 0 24 24'%3E%3Cpath d='M9 12L11 14L15 10M21 12C21 16.97 16.97 21 12 21C7.03 21 3 16.97 3 12C3 7.03 7.03 3 12 3C16.97 3 21 7.03 21 12Z'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    animation: bounce 2s ease-in-out infinite;
}

.value-card:nth-child(4)::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23be185d' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C13.1 2 14 2.9 14 4C14 5.1 13.1 6 12 6C10.9 6 10 5.1 10 4C10 2.9 10.9 2 12 2ZM21 9V7L15 7.5V9M15 11.5C15 12.3 14.3 13 13.5 13S12 12.3 12 11.5V9H15V11.5ZM5 12C5 10.9 5.9 10 7 10S9 10.9 9 12S8.1 14 7 14S5 13.1 5 12Z'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    animation: rotate 6s linear infinite;
}

.value-card:nth-child(5)::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ea580c' viewBox='0 0 24 24'%3E%3Cpath d='M12 2L13.09 8.26L20 9L13.09 9.74L12 16L10.91 9.74L4 9L10.91 8.26L12 2Z'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    animation: glow 3s ease-in-out infinite alternate;
}

.value-card:nth-child(6)::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%237c3aed' viewBox='0 0 24 24'%3E%3Cpath d='M5 16L3 5L8.5 10L12 4L15.5 10L21 5L19 16H5ZM12 13L10.5 15H13.5L12 13Z'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    animation: float 4s ease-in-out infinite;
}

.value-card:hover::before {
    opacity: 0.2;
    transform: scale(1.1);
}

/* Animation Keyframes */
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.1); opacity: 0.15; }
}

@keyframes sparkle {
    0%, 100% { transform: rotate(0deg) scale(1); opacity: 0.1; }
    25% { transform: rotate(90deg) scale(1.1); opacity: 0.15; }
    50% { transform: rotate(180deg) scale(1); opacity: 0.1; }
    75% { transform: rotate(270deg) scale(1.1); opacity: 0.15; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0px); opacity: 0.1; }
    50% { transform: translateY(-10px); opacity: 0.15; }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes glow {
    0% { opacity: 0.1; transform: scale(1); }
    100% { opacity: 0.2; transform: scale(1.05); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.1; }
    33% { transform: translateY(-5px) rotate(120deg); opacity: 0.15; }
    66% { transform: translateY(5px) rotate(240deg); opacity: 0.12; }
}

/* Ensure content stays above animated background */
.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
}

.value-card h4,
.value-card p {
    position: relative;
    z-index: 2;
}

.comparison-section {
    margin-top: 4rem;
}

.comparison-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    font-family: 'Playfair Display', serif;
}

.comparison-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.comparison-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.comparison-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.comparison-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.comparison-icon.success {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
}

.comparison-icon.danger {
    background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
}

.comparison-list {
    list-style: none;
    margin-bottom: 2rem;
}

.comparison-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.comparison-list li:last-child {
    border-bottom: none;
}

/* Mentors Section */
.mentors {
    background: #fef6e4;
}

.mentor-carousel-container {
    position: relative;
    margin-bottom: 4rem;
}

.mentor-carousel {
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

.mentor-track {
    display: flex;
    animation: scroll 30s linear infinite;
    gap: 2rem;
    padding: 1rem 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.33%);
    }
}

.mentor-carousel:hover .mentor-track {
    animation-play-state: paused;
}

.mentor-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-width: 300px;
    flex-shrink: 0;
    position: relative;
    display: flex;
    flex-direction: column;
}

.mentor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mentor-status-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 20;
    color: white;
    background: #22c55e;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.status-available {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
}

.status-limited {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.status-full {
    background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
}

.mentor-image {
    width: 300px;
    height: 350px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
    display: block;
    position: relative;
    z-index: 1;
}

.mentor-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mentor-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #374151;
    margin: 0;
    line-height: 1.3;
}

.mentor-university {
    font-size: 0.9rem;
    color: #dc143c;
    font-weight: 500;
    margin: 0;
}

.mentor-degree {
    font-size: 0.85rem;
    color: #6b7280;
    margin: 0;
}

.mentor-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.5rem;
}

.specialty-tag {
    background: #e0f2fe;
    color: #0369a1;
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 500;
    font-weight: 500;
}

.mentor-nav-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: all;
    z-index: 10;
}

.mentor-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 1;
    pointer-events: all;
    font-size: 1.2rem;
    color: #333;
    transition: all 0.3s ease;
    pointer-events: all;
}

.mentor-nav-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.mentor-nav-prev {
    left: -25px;
}

.mentor-nav-next {
    right: -25px;
}

.mentor-application-cta {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mentor-application-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.mentor-application-cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Section */
.services {
    background: white;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 4rem 0;
}

.services .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.decoration-icon {
    position: absolute;
    font-size: 3rem;
    color: rgba(220, 20, 60, 0.05);
    animation: float 8s ease-in-out infinite;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* 2 cards: side by side */
.services-grid:has(.service-card:nth-child(2):last-child) {
    grid-template-columns: 1fr 1fr;
    max-width: 800px;
}

/* 3 cards: 2 top + 1 center bottom */
.services-grid:has(.service-card:nth-child(3):last-child) {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    max-width: 800px;
}

.services-grid:has(.service-card:nth-child(3):last-child) .service-card:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 400px;
}

/* 4 cards: 2x2 grid */
.services-grid:has(.service-card:nth-child(4):last-child) {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    max-width: 800px;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    max-width: 400px;
    flex: 1;
    min-width: 300px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.testimonial-rating {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-content {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    justify-content: center;
}

.author-info h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
}

.author-details {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    position: relative;
    z-index: 2;
}

.service-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card.featured {
    border: 2px solid #dc143c;
    transform: scale(1.05);
}

.service-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-header {
    margin-bottom: 2rem;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.service-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: bold;
}

/* Testimonials Section */
.testimonials {
    background: #fef6e4;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 4rem 0;
}

.testimonials .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    overflow: hidden; /* Ensure container hides overflow */
}

.testimonials-grid {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
    padding: 1rem 0;
    margin-bottom: 2rem;
    overflow: hidden;
}

.testimonial-nav-controls {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.testimonial-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #333;
    transition: all 0.3s ease;
}

.testimonial-nav-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonials-container {
    position: relative;
}

.testimonial-carousel {
    overflow: hidden;
    border-radius: 20px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 0 0 calc((100% - 4rem) / 3); /* 3 cards visible with 2 gaps of 2rem => 4rem */
    max-width: calc((100% - 4rem) / 3);
    min-width: calc((100% - 4rem) / 3);
}

/* removed blur states to restore original layout */

.testimonial-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f0f4ff;
    flex-shrink: 0;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.author-details {
    color: #666;
    font-size: 0.9rem;
}

.testimonial-rating {
    color: #fbbf24;
    margin-bottom: 1rem;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #333;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #dc143c;
    transform: scale(1.2);
}

.testimonial-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Testimonial Modal */
.testimonial-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 2rem;
}

.testimonial-modal.active {
    display: flex;
}

.testimonial-modal-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.testimonial-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.testimonial-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.testimonial-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #dc143c;
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1);
}

.form-group textarea::placeholder {
    font-family: inherit;
    font-size: 1rem;
    font-weight: 400;
    color: #999;
    line-height: 1.5;
}

.rating-input {
    display: flex;
    flex-direction: row-reverse;
    gap: 0.25rem;
}

.rating-input input[type="radio"] {
    display: none;
}

.star-label {
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s ease;
}

.rating-input input[type="radio"]:checked ~ .star-label,
.star-label:hover,
.star-label:hover ~ .star-label {
    color: #fbbf24;
}

.file-upload {
    position: relative;
}

.file-upload input[type="file"] {
    display: none;
}

.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 2rem;
    border: 2px dashed #ddd;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
}

.file-upload-label:hover {
    border-color: #dc143c;
    background: #f8f9ff;
}

/* Mentor Application Modal */
.mentor-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 2rem;
}

.mentor-modal.active {
    display: flex;
}

.mentor-modal-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.mentor-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.mentor-modal-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
}

.mentor-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.mentor-modal-close:hover {
    color: #333;
}

.mentor-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Contact Section */
.contact {
    background: white;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 4rem 0;
}

.contact .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form {
    background: #f8f9ff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.next-steps-card,
.get-in-touch-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-method i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.social-section {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.social-link.instagram { background: linear-gradient(135deg, #e4405f 0%, #833ab4 100%); }
.social-link.linkedin { background: linear-gradient(135deg, #0077b5 0%, #00a0dc 100%); }
.social-link.facebook { background: linear-gradient(135deg, #1877f2 0%, #42a5f5 100%); }
.social-link.tiktok { background: linear-gradient(135deg, #000000 0%, #333333 100%); }

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand-section {
    max-width: 400px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer-description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.footer-copyright {
    color: #999;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.scroll-top.show {
    display: flex;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.4);
}

.btn-outline {
    background: transparent;
    color: #dc143c;
    border: 2px solid #dc143c;
}

.btn-outline:hover {
    background: #dc143c;
    color: white;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .journey-path {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .mission-vision-grid,
    .comparison-container,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        transition: right 0.3s ease;
        z-index: 1001;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .nav-toggle,
    .nav-close {
        display: block;
    }
    
    .nav-close {
        position: absolute;
        top: 2rem;
        right: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-highlights {
        gap: 1.5rem;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .card-nav-left,
    .card-nav-right {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    /* Mobile: all cards stack vertically */
    .services-grid:has(.service-card:nth-child(2):last-child),
    .services-grid:has(.service-card:nth-child(3):last-child),
    .services-grid:has(.service-card:nth-child(4):last-child) {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .services-grid:has(.service-card:nth-child(3):last-child) .service-card:nth-child(3) {
        grid-column: 1;
        max-width: 100%;
    }
    
    .service-card.featured {
        transform: none;
    }
    
    .mentor-track {
        gap: 1rem;
    }
    
    .mentor-card {
        min-width: 280px;
    }
    
    .mentor-nav-prev {
        left: -15px;
    }
    
    .mentor-nav-next {
        right: -15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-badge,
    .section-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .mentor-card {
        min-width: 250px;
    }
    
    .mentor-nav-controls {
        display: none;
    }
    
    .testimonial-modal-content {
        padding: 2rem;
        margin: 1rem;
    }
    
    .testimonial-card {
        min-width: 300px;
    }
    
    .testimonial-nav-controls {
        display: none;
    }
    
    .language-modal-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .mentor-modal-content {
        padding: 2rem;
        margin: 1rem;
    }
}

/* Additional CSS from HTML - Comparison Section */
.comparison-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    text-align: center;
    font-family: Arial, sans-serif;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.comparison-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.comparison-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.comparison-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.comparison-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.comparison-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 30px;
    width: 100%;
    max-width: 480px;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.mentify-card {
    border: 1px solid #e0ffe0;
}

.competitors-card {
    border: 1px solid #ffe0e0;
}

.comparison-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.comparison-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.5rem;
    color: #fff;
}

.comparison-icon.success {
    background-color: #e0ffe0;
}

.comparison-icon.success svg {
    fill: #4CAF50;
}

.comparison-icon.danger {
    background-color: #ffe0e0;
}

.comparison-icon.danger svg {
    fill: #E74C3C;
}

.comparison-card h4 {
    font-size: 1.5rem;
    margin: 0;
    color: #333;
}

.mentify-card h4 {
    color: #4CAF50;
}

.competitors-card h4 {
    color: #E74C3C;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.comparison-list li {
    margin-bottom: 20px;
}

.list-item-header {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.list-icon-success,
.list-icon-danger {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 1rem;
    color: #fff;
}

.list-icon-success {
    background-color: #e0ffe0;
}

.list-icon-success svg {
    fill: #4CAF50;
}

.list-icon-danger {
    background-color: #ffe0e0;
}

.list-icon-danger svg {
    fill: #E74C3C;
}

.comparison-list h5 {
    font-size: 1.1rem;
    margin: 0;
    color: #333;
}

.comparison-list p {
    font-size: 0.95rem;
    color: #777;
    margin-left: 35px;
    line-height: 1.5;
}

.btn.main-button {
    background-color: #6c63ff;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1.1rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-top: 30px;
}

.btn.main-button:hover {
    background-color: #5a54d9;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    /* Tablet: 2 cards side by side, 3+ cards stack */
    .services-grid:has(.service-card:nth-child(2):last-child) {
        grid-template-columns: 1fr 1fr;
        max-width: 600px;
    }
    
    .services-grid:has(.service-card:nth-child(3):last-child),
    .services-grid:has(.service-card:nth-child(4):last-child) {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .services-grid:has(.service-card:nth-child(3):last-child) .service-card:nth-child(3) {
        grid-column: 1;
        max-width: 100%;
    }
    
    .comparison-container {
        flex-direction: column;
        align-items: center;
    }

    .comparison-card {
        max-width: 90%;
    }
}

/* Additional CSS from HTML - Mentors Section */
.mentors {
    background: #fef6e4;
}

.mentor-carousel-container {
    position: relative;
    margin-bottom: 4rem;
}

.mentor-carousel {
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

.mentor-track {
    display: flex;
    animation: scroll 30s linear infinite;
    gap: 2rem;
    padding: 1rem 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.33%);
    }
}

.mentor-carousel:hover .mentor-track {
    animation-play-state: paused;
}

.mentor-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-width: 300px;
    flex-shrink: 0;
    position: relative;
    scroll-snap-align: start;
}

.mentor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mentor-status-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 20;
    color: white;
    background: #22c55e;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.status-available {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
}

.status-limited {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.status-full {
    background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
}

.mentor-image {
    width: 300px;
    height: 350px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
    display: block;
    position: relative;
    z-index: 1;
}

.mentor-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mentor-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #374151;
    margin: 0;
    line-height: 1.3;
}

.mentor-university {
    font-size: 0.9rem;
    color: #dc143c;
    font-weight: 500;
    margin: 0;
}

.mentor-degree {
    font-size: 0.85rem;
    color: #6b7280;
    margin: 0;
}

.mentor-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.5rem;
}

.specialty-tag {
    background: #e0f2fe;
    color: #0369a1;
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 500;
    font-weight: 500;
}

.mentor-nav-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: all;
    z-index: 10;
}

.mentor-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 1;
    pointer-events: all;
    font-size: 1.2rem;
    color: #333;
    transition: all 0.3s ease;
    pointer-events: all;
}

.mentor-nav-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.mentor-nav-prev {
    left: -25px;
}

.mentor-nav-next {
    right: -25px;
}

.mentor-application-cta {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mentor-application-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.mentor-application-cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    background-color: #5cb85c;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #4cae4c;
}

/* Additional CSS from HTML - Testimonials Section */
.testimonials {
    padding: 60px 0;
    background-color: #f9f9f9;
    text-align: center;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.testimonials .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    overflow: hidden; /* Ensure container hides overflow */
}

/* Testimonials Container */
.testimonials-container {
    position: relative;
    margin-bottom: 40px;
}

.testimonials-wrapper {
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
    padding: 20px 0;
}

.testimonial-card {
    flex-shrink: 0;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 400px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0.05;
    z-index: 0;
}

.testimonial-card > * {
    position: relative;
    z-index: 1;
}

.testimonial-content {
    margin-bottom: 30px;
    flex-grow: 1;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f0f4ff;
    flex-shrink: 0;
}

.author-info h4 {
    font-weight: 700;
    margin-bottom: 5px;
    color: #333;
    font-size: 1.1rem;
}

.author-info p {
    color: #777;
    font-size: 0.9rem;
    margin: 0;
}

.testimonial-item::after {
    content: """;
    font-family: Arial, sans-serif;
    font-size: 10em;
    color: rgba(0, 0, 0, 0.05);
    position: absolute;
    bottom: -30px;
    right: 10px;
    z-index: 0;
    line-height: 1;
}

.testimonial-content {
    margin-bottom: 20px;
    flex-grow: 1;
    z-index: 1;
}

.testimonial-content p {
    font-size: 1.05em;
    color: #555;
    line-height: 1.6;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    margin-top: auto;
    z-index: 1;
}

.testimonial-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: none;
    padding: 3px;
    background: linear-gradient(to right, #a0d995, #c7e9b0) border-box;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: exclude;
}

.testimonial-info {
    text-align: left;
}

.testimonial-name {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
}

.testimonial-university,
.testimonial-program {
    font-size: 0.9em;
    color: #777;
    line-height: 1.2;
}

.testimonial-nav-controls {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 15px;
}

.testimonial-nav-btn {
    background-color: #ddd;
    color: #888;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2em;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.testimonial-nav-btn:hover {
    background-color: #ccc;
}

/* Responsive testimonials */
@media (max-width: 768px) {
    .testimonial-card {
        width: 280px;
        padding: 25px;
        min-height: 250px;
    }
    
    .testimonials-track {
        gap: 20px;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .testimonial-card {
        width: 350px;
        padding: 35px;
    }
}

@media (min-width: 1025px) {
    .testimonial-card {
        width: 400px;
        padding: 40px;
    }
}

.testimonial-cta {
    background-color: #f0f8ff;
    padding: 40px;
    border-radius: 15px;
    margin-top: 60px;
}

.testimonial-cta h3 {
    font-size: 2em;
    color: #333;
    margin-bottom: 15px;
}

.testimonial-cta p {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 20px;
}

.testimonial-cta .btn {
    background-color: #5cb85c;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.testimonial-cta .btn:hover {
    background-color: #4cae4c;
}

/* ================================ */
/* STATISTIKA SERVICES SECTION STYLES */
/* ================================ */
/* All classes prefixed with 'stat-' to avoid conflicts */

/* Services Section */
.stat-services-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, #fef6e4 0%, #f8f4e6 100%);
    min-height: auto;
    width: 100%;
}

.stat-services-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .stat-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-service-card {
    background: linear-gradient(to bottom right, #EFF6FF, #EDE9FE);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
}

.stat-service-icon-wrapper {
    background: linear-gradient(to right, #DC2626, #B91C1C);
    border-radius: 0.75rem;
    padding: 0.75rem;
    width: fit-content;
    margin: 0 auto 1rem;
}

.stat-service-icon {
    color: white;
}

.stat-service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.stat-service-card p {
    color: #4B5563;
    font-size: 0.875rem;
}

/* Programs Section */
.stat-programs-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, #fef6e4 0%, #f8f4e6 100%);
    min-height: auto;
    width: 100%;
}

.stat-packages-wrapper {
    margin-bottom: 2rem;
}

.stat-packages-title {
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
    color: #111827;
    margin-bottom: 3rem;
}

.stat-packages-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .stat-packages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Package Cards */
.stat-package-card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.stat-package-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
}

/* Package Headers */
.stat-package-header {
    padding: 1.5rem 2rem;
    position: relative;
}

.stat-package-header-basic {
    background: linear-gradient(to right, #38BDF8, #0EA5E9);
}

.stat-package-header-premium {
    background: linear-gradient(to right, #C4B5FD, #A78BFA);
}

.stat-package-header-vip {
    background: linear-gradient(to right, #FDE047, #F59E0B);
}

.stat-package-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

.stat-package-icon-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-package-icon-group h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-package-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 9999px;
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.stat-package-stats {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat-stat-box {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 0.75rem;
    padding: 0.75rem;
    text-align: center;
}

.stat-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.stat-stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Package Body */
.stat-package-body {
    padding: 2rem;
}

.stat-package-description {
    color: #4B5563;
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

/* University Strategy */
.stat-university-strategy {
    margin-bottom: 2rem;
}

.stat-university-strategy h4 {
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
    text-align: center;
}

.stat-strategy-grid {
    display: grid;
    gap: 0.75rem;
}

.stat-strategy-item {
    border-radius: 0.75rem;
    padding: 1rem;
    border-width: 2px;
}

.stat-strategy-dream {
    background: linear-gradient(to right, #FEF3C7, #FEF3C7);
    border-color: #FDE68A;
}

.stat-strategy-reach {
    background: linear-gradient(to right, #EFF6FF, #E0E7FF);
    border-color: #BFDBFE;
}

.stat-strategy-safe {
    background: linear-gradient(to right, #F0FDF4, #ECFDF5);
    border-color: #BBF7D0;
}

.stat-strategy-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stat-strategy-icon {
    display: flex;
    align-items: center;
}

.stat-strategy-number {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
}

.stat-strategy-number-dream {
    background: linear-gradient(to right, #F59E0B, #EA580C);
}

.stat-strategy-number-reach {
    background: linear-gradient(to right, #3B82F6, #6366F1);
}

.stat-strategy-number-safe {
    background: linear-gradient(to right, #10B981, #059669);
}

.stat-strategy-icon span {
    margin-left: 0.75rem;
    font-weight: 600;
    color: #1F2937;
}

.stat-strategy-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
}

.stat-strategy-badge-dream {
    background-color: #FDE68A;
    color: #92400E;
}

.stat-strategy-badge-reach {
    background-color: #BFDBFE;
    color: #1E3A8A;
}

.stat-strategy-badge-safe {
    background-color: #BBF7D0;
    color: #166534;
}

/* Features List */
.stat-features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.stat-features-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.stat-features-list svg {
    color: #10B981;
    margin-right: 0.75rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.stat-features-list span {
    color: #374151;
    font-size: 0.875rem;
}

/* Package Buttons */
.stat-package-button {
    width: 100%;
    padding: 1rem;
    border-radius: 1rem;
    font-weight: 600;
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.stat-package-button:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.stat-package-button svg {
    transition: transform 0.3s ease;
}

.stat-package-button:hover svg {
    transform: translateX(4px);
}

.stat-package-button-basic {
    background: linear-gradient(to right, #38BDF8, #0EA5E9);
}

.stat-package-button-premium {
    background: linear-gradient(to right, #C4B5FD, #A78BFA);
}

.stat-package-button-vip {
    background: linear-gradient(to right, #FDE047, #F59E0B);
}

/* TOP Packages Card */
.stat-top-packages-card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.stat-top-packages-header {
    margin-bottom: 2rem;
}

.stat-top-packages-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.stat-top-packages-subtitle {
    color: #1F2937;
    font-weight: 700;
    font-size: 1.125rem;
}

.stat-top-packages-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .stat-top-packages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-top-package-item {
    border: 2px solid #E5E7EB;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: border-color 0.3s ease;
}

.stat-top-package-item:hover {
    border-color: #EA580C;
}

.stat-top-package-header {
    border-radius: 0.75rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

.stat-top-package-header h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    text-align: center;
}

.stat-top-package-header-basic {
    background: linear-gradient(to right, #BAE6FD, #7DD3FC);
}

.stat-top-package-header-premium {
    background: linear-gradient(to right, #E9D5FF, #D8B4FE);
}

.stat-top-package-header-vip {
    background: linear-gradient(to right, #FDE68A, #FCD34D);
}

.stat-top-package-info {
    color: #4B5563;
    margin-bottom: 0.5rem;
}

.stat-top-package-description {
    color: #374151;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.stat-top-package-button {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.75rem;
    font-weight: 600;
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.stat-top-package-button:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.stat-top-package-button-basic {
    background: linear-gradient(to right, #BAE6FD, #7DD3FC);
}

.stat-top-package-button-premium {
    background: linear-gradient(to right, #E9D5FF, #D8B4FE);
}

.stat-top-package-button-vip {
    background: linear-gradient(to right, #FDE68A, #FCD34D);
}

/* TOP Features */
.stat-top-packages-features {
    padding: 1.5rem;
    background: linear-gradient(to right, #FEF3C7, #FEF3C7);
    border-radius: 1rem;
}

.stat-top-packages-features h4 {
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.stat-top-features-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .stat-top-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stat-top-features-column {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-top-feature-item {
    display: flex;
    align-items: center;
}

.stat-top-feature-item svg {
    color: #EA580C;
    margin-right: 0.5rem;
}

.stat-top-feature-item span {
    color: #374151;
    font-size: 0.875rem;
}

/* Mentorship Section */
.stat-mentorship-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, #fef6e4 0%, #f8f4e6 100%);
    min-height: auto;
    width: 100%;
}

.stat-mentorship-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .stat-mentorship-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .stat-mentorship-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-mentorship-card {
    background: linear-gradient(to bottom right, #EFF6FF, #EDE9FE);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.stat-mentorship-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.stat-mentorship-icon {
    background: linear-gradient(to right, #DC2626, #B91C1C);
    border-radius: 0.75rem;
    padding: 0.75rem;
    width: fit-content;
    margin-bottom: 1.5rem;
    color: white;
}

.stat-mentorship-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.stat-mentorship-card p {
    color: #4B5563;
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.stat-mentorship-features {
    list-style: none;
}

.stat-mentorship-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.stat-mentorship-features svg {
    color: #10B981;
    margin-right: 0.75rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.stat-mentorship-features span {
    color: #374151;
    font-size: 0.875rem;
}

/* Additional Services Section */
.stat-additional-services-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, #fef6e4 0%, #f8f4e6 100%);
    min-height: auto;
    width: 100%;
}

.stat-additional-services-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .stat-additional-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stat-additional-service-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    transition: all 0.3s ease;
}

.stat-additional-service-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.stat-additional-service-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.stat-additional-service-icon {
    background: linear-gradient(to right, #DC2626, #B91C1C);
    border-radius: 0.75rem;
    padding: 0.75rem;
    margin-right: 1rem;
    color: white;
}

.stat-additional-service-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
}

.stat-service-highlight {
    background: linear-gradient(to right, #FEF2F2, #FEF2F2);
    border-left: 4px solid #DC2626;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.stat-service-highlight p {
    font-size: 1.125rem;
    font-weight: 600;
    background: linear-gradient(to right, #DC2626, #B91C1C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-additional-service-card > p {
    color: #4B5563;
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.stat-document-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.stat-document-service-item {
    background: linear-gradient(to right, #EFF6FF, #EDE9FE);
    border-radius: 0.5rem;
    padding: 0.75rem;
    text-align: center;
    color: #1F2937;
    font-weight: 500;
    font-size: 0.875rem;
}

.stat-service-features {
    list-style: none;
}

.stat-service-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.stat-service-features svg {
    color: #10B981;
    margin-right: 0.75rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.stat-service-features span {
    color: #374151;
}

/* Statistics Section - Mentify Comparison Styles */
.comparison-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    text-align: center;
    font-family: 'Inter', sans-serif;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.comparison-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.comparison-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.comparison-subtitle {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.comparison-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    margin-bottom: 60px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

/* Panel Styles */
.panel {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mentify-panel {
    border: 1px solid #e0ffe0;
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.12);
}

.typical-panel {
    border: 1px solid #ffe0e0;
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.12);
}

.panel:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.mentify-panel:hover {
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.2);
    transform: translateY(-3px);
}

.typical-panel:hover {
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.2);
    transform: translateY(-3px);
}

/* Panel Headers */
.panel-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f3f4f6;
}

.panel-header h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-left: 15px;
    color: #1f2937;
}

.icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.shield-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.cross-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.icon i {
    font-size: 1.2rem;
}

/* Advantage Items */
.advantages-list, .disadvantages-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.advantage-item, .disadvantage-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.advantage-item {
    background-color: #f0fdf4;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.15);
    border-left: 4px solid #22c55e;
}

.advantage-item:hover {
    background-color: #dcfce7;
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.25);
    transform: translateX(5px);
}

.disadvantage-item {
    background-color: #fef2f2;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.15);
    border-left: 4px solid #ef4444;
}

.disadvantage-item:hover {
    background-color: #fee2e2;
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.25);
    transform: translateX(5px);
}

.advantage-icon, .disadvantage-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.advantage-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.disadvantage-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.advantage-icon i, .disadvantage-icon i {
    font-size: 1rem;
}

.advantage-content, .disadvantage-content {
    flex: 1;
}

.advantage-content h3, .disadvantage-content h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1f2937;
}

.advantage-content p, .disadvantage-content p {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.5;
}

/* Call to Action Section */
.cta-section {
    text-align: center;
}

.cta-button {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    color: white;
    border: none;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    text-transform: none;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.cta-button:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .comparison-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .panel {
        padding: 20px;
    }
    
    .panel-header h2 {
        font-size: 1.2rem;
    }
    
    .advantage-item, .disadvantage-item {
        padding: 12px;
        gap: 12px;
    }
    
    .advantage-content h3, .disadvantage-content h3 {
        font-size: 0.95rem;
    }
    
    .advantage-content p, .disadvantage-content p {
        font-size: 0.8rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

