/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
}

.chevron-left, .chevron-right {
    color: #00d4ff;
    font-size: 1.5rem;
    font-weight: 900;
}

.logo-text {
    color: #1f2937;
    font-size: 0.9rem;
    line-height: 1.2;
    font-weight: 600;
}

.main-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.main-logo .logo-text {
    display: flex;
    flex-direction: column;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
}

.main-logo .chevron-left,
.main-logo .chevron-right {
    color: #00d4ff;
    font-size: 2rem;
    font-weight: 900;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-text {
    color: #f9fafb;
    font-size: 0.9rem;
    line-height: 1.2;
    font-weight: 600;
}

.footer-logo .chevron-left,
.footer-logo .chevron-right {
    color: #00d4ff;
    font-size: 1.2rem;
    font-weight: 900;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

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

.nav-logo-img {
    height: 40px;
    width: auto;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.nav-logo-img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-item {
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    white-space: nowrap;
}

.nav-link:hover {
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
}

.language-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.language-toggle:hover {
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
}

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

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #00d4ff 100%);
    color: white;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    padding-bottom: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #00d4ff 100%);
    z-index: -1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title .highlight {
    color: #fff !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    background-clip: initial !important;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-width: 120px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(0, 212, 255, 0.1) 0%, 
        rgba(102, 126, 234, 0.1) 25%, 
        rgba(255, 255, 255, 0) 50%, 
        rgba(0, 212, 255, 0.05) 75%, 
        rgba(102, 126, 234, 0.1) 100%);
    border-radius: 12px;
    z-index: 1;
}

.stat::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #00d4ff 20%, 
        #667eea 50%, 
        #00d4ff 80%, 
        transparent 100%);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.stat:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.stat:hover::before {
    background: linear-gradient(45deg, 
        rgba(0, 212, 255, 0.15) 0%, 
        rgba(102, 126, 234, 0.15) 25%, 
        rgba(255, 255, 255, 0.05) 50%, 
        rgba(0, 212, 255, 0.1) 75%, 
        rgba(102, 126, 234, 0.15) 100%);
}

.stat:hover::after {
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.8);
    height: 3px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #667eea;
    display: inline-block;
    margin-bottom: 0.1rem;
    position: relative;
    z-index: 2;
}

.stat-percent {
    font-size: 1rem;
    color: #667eea;
    font-weight: 700;
    display: inline-block;
    margin-left: 0.2rem;
    position: relative;
    z-index: 2;
}

.stat-label {
    font-size: 0.7rem;
    color: #6b7280;
    font-weight: 500;
    margin-top: 0.15rem;
    display: block;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #00d4ff;
    color: white;
}

.btn-primary:hover {
    background: #00b8e6;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.section-header p {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: #f8fafc;
}



.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.about-text p {
    margin-bottom: 2rem;
    color: #4b5563;
    line-height: 1.7;
}

.about-features-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1f2937;
}

.about-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

.feature-card {
    background: white;
    padding: 0.8rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.feature-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #667eea, #00d4ff);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    flex-shrink: 0;
}

.feature-content {
    flex: 1;
}

.feature-card h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.2rem;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.3;
    margin: 0;
    font-size: 0.75rem;
}

.feature-card {
    background: white;
    padding: 0.8rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #667eea);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #667eea, #00d4ff);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.6rem;
}

.feature-icon i {
    font-size: 0.85rem;
    color: white;
}

.feature-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.4rem;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.4;
    margin: 0;
    font-size: 0.8rem;
}

.about-text ul {
    list-style: none;
    margin-top: 1rem;
}

.about-text li {
    padding: 0.5rem 0;
    color: #4b5563;
    position: relative;
    padding-left: 1.5rem;
}

.about-text li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: bold;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #6b7280;
    font-weight: 500;
}

/* Unique Opportunities Section */
.opportunities {
    padding: 6rem 0;
    background: white;
}

.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.opportunity-card {
    padding: 2.5rem;
    background: #f8fafc;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.opportunity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
    border-color: #00d4ff;
}

.opportunity-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #00d4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.opportunity-icon i {
    font-size: 2rem;
    color: white;
}

.opportunity-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.opportunity-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Method Section */
.method {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f7fa 100%);
}

.method-content {
    display: flex;
    justify-content: center;
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    width: 100%;
}

.method-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #00d4ff);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.method-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.method-card:hover::before {
    opacity: 1;
}

.method-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea, #00d4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
}

.method-icon i {
    font-size: 1.8rem;
    color: white;
}

.method-number {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #00d4ff, #667eea);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 3;
}

.method-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.method-card p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Results Section */
.results {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.results .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.results .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.results .section-subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
}

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

.results-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.result-stat {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-circle {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
}

.stat-percent {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-left: 5px;
}

.result-stat p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.4;
}

.results-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.student-showcase {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.student-showcase:hover {
    transform: translateY(-5px);
}

.showcase-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.showcase-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 20px 20px;
}

.showcase-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.showcase-info p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Students Section */
.students {
    padding: 80px 0;
    background: #f8fafc;
    display: none; /* Временно скрыто */
}

.students .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.students .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1f2937;
}

.students .section-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
}

.students-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.student-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.student-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(0, 212, 255, 0.05) 0%, 
        rgba(102, 126, 234, 0.05) 25%, 
        rgba(255, 255, 255, 0) 50%, 
        rgba(0, 212, 255, 0.03) 75%, 
        rgba(102, 126, 234, 0.05) 100%);
    border-radius: 20px;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.student-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #00d4ff 20%, 
        #667eea 50%, 
        #00d4ff 80%, 
        transparent 100%);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.student-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.student-card:hover::before {
    opacity: 1;
    background: linear-gradient(45deg, 
        rgba(0, 212, 255, 0.1) 0%, 
        rgba(102, 126, 234, 0.1) 25%, 
        rgba(255, 255, 255, 0.02) 50%, 
        rgba(0, 212, 255, 0.08) 75%, 
        rgba(102, 126, 234, 0.1) 100%);
}

.student-card:hover::after {
    opacity: 1;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
    height: 4px;
}

.student-photo {
    position: relative;
    height: 250px;
    overflow: hidden;
    z-index: 2;
}

.student-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.student-card:hover .student-photo img {
    transform: scale(1.05);
}

.student-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8), rgba(0, 212, 255, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.student-card:hover .student-overlay {
    opacity: 1;
}

.student-overlay i {
    font-size: 3rem;
    color: white;
}

.student-info {
    padding: 30px;
    position: relative;
    z-index: 2;
}

.student-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
}

.student-info p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

.student-achievements {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.achievement {
    background: linear-gradient(135deg, #667eea, #00d4ff);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Hero Image Styles */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-photo {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-student-img {
    width: 400px;
    height: 300px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 30px 20px 20px;
    text-align: center;
}

.hero-photo-overlay i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.hero-photo-overlay span {
    font-size: 1rem;
    font-weight: 500;
}

/* About Image Styles */
.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about-student-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.about-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(102, 126, 234, 0.8));
    color: white;
    padding: 30px 20px 20px;
    text-align: center;
}

.about-image-overlay i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.about-image-overlay span {
    font-size: 1rem;
    font-weight: 500;
}

/* Method Image Styles */
.method-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.method-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 30px 20px 20px;
    text-align: center;
}

.method-overlay i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.method-overlay span {
    font-size: 1rem;
    font-weight: 500;
}

/* Placeholder Images */
.placeholder-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #00d4ff);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    position: relative;
}

.placeholder-img i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.8;
}

.placeholder-img span {
    font-size: 1rem;
    opacity: 0.9;
}

.hero-student-img.placeholder-img {
    width: 400px;
    height: 300px;
}

.about-student-img.placeholder-img {
    width: 100%;
    height: 350px;
}

.method-img.placeholder-img {
    width: 100%;
    height: 400px;
}

.showcase-img.placeholder-img {
    width: 100%;
    height: 250px;
}

.student-photo .placeholder-img {
    width: 100%;
    height: 250px;
}

/* Partners Section */
.partners {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f7fa 100%);
}

.partners-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: #00d4ff;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.carousel-btn i {
    font-size: 1.2rem;
    color: #333;
    transition: color 0.3s ease;
}

.carousel-btn:hover i {
    color: white;
}

.prev-btn {
    left: -25px;
}

.next-btn {
    right: -25px;
}

.carousel-container {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease;
    width: 100%;
}

.partner-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    min-width: 280px;
    max-width: 320px;
    flex: 1;
    flex-shrink: 0;
}

.partner-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.partner-logo {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #667eea, #00d4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.partner-logo i {
    font-size: 1.8rem;
    color: white;
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    padding: 8px;
    background: white;
}

.partner-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.partner-card p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #00d4ff;
    transform: scale(1.2);
}

.dot:hover {
    background: #00d4ff;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1f2937;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: #00d4ff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.contact-item p {
    color: #4b5563;
}

.contact-form {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #f9fafb;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #00d4ff;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #00d4ff;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-logo-img {
        height: 35px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

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

    .hamburger {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-features-grid {
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1.2rem;
    }

    .about-stats {
        flex-direction: row;
        justify-content: space-around;
    }

    .opportunities-grid {
        grid-template-columns: 1fr;
    }

    .method-content {
        padding: 0 1rem;
    }
    
    .method-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .method-card {
        padding: 1.5rem;
    }

    .results-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .main-logo {
        flex-direction: column;
        gap: 0.5rem;
    }

    .main-logo .logo-text {
        font-size: 1rem;
    }

    .method-item {
        flex-direction: column;
        text-align: center;
    }

    .result-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .about-stats {
        flex-direction: column;
    }

    .opportunity-card {
        padding: 1.5rem;
    }

    .logo-text {
        font-size: 0.8rem;
    }
}

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

.hero-content,
.opportunity-card,
.partner-card,
.method-item,
.result-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
} 