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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Top Bar Styles */
.top-bar {
    background-color: #7ca74b;
    color: white;
    font-size: 14px;
    padding: 8px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 15px;
}

.social-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 5px;
    border-radius: 3px;
}

.social-link:hover {
    color: #EB1C22;
    background-color: rgba(255, 255, 255, 0.1);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #EB1C22;
}

.divider {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

/* Main Header Styles */
.main-header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: -5px 0;
}

.logo-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Logo Image Styles */
.logo-image {
    width: 90px;
    height: 90px;
    object-fit: contain;
    border-radius: 15px;
}

.hero-logo-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.footer-logo .logo-icon {
    width: 160px;
    height: 100px;
    border-radius: 30px;
    overflow: hidden;
    background: white;
    padding: 10px;
}

.footer-logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
    filter: brightness(1.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* House Icon Styles */
.house-icon {
    position: relative;
    width: 50px;
    height: 40px;
}

.house-icon.large {
    width: 100px;
    height: 80px;
}

.roof {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 20px solid #EB1C22;
}

.house-icon.large .roof {
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 40px solid #EB1C22;
}

.house-body {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 25px;
    background-color: #FFFFFF;
    border: 3px solid #EB1C22;
}

.house-icon.large .house-body {
    width: 80px;
    height: 50px;
    border: 5px solid #EB1C22;
}

.chimney {
    position: absolute;
    top: 5px;
    right: 8px;
    width: 8px;
    height: 15px;
    background-color: #7ca74b;
}

.house-icon.large .chimney {
    top: 10px;
    right: 15px;
    width: 15px;
    height: 30px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.a-letter {
    font-size: 36px;
    font-weight: 800;
    color: #7ca74b;
    letter-spacing: -2px;
}

.plus-sign {
    font-size: 24px;
    font-weight: 700;
    color: #EB1C22;
    margin-left: -3px;
}

.logo-sub {
    font-size: 16px;
    font-weight: 700;
    color: #7ca74b;
    letter-spacing: 2px;
    margin-top: -2px;
}

.logo-slogan {
    font-size: 10px;
    font-weight: 500;
    color: #EB1C22;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* Navigation Styles */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-link {
    color: #7ca74b;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover {
    color: #EB1C22;
}

.nav-link.active {
    color: #EB1C22;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #EB1C22, #7ca74b);
    border-radius: 2px;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    border: 2px solid #7ca74b;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #7ca74b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #7ca74b;
    color: white;
}

/* Student Login Button */
.student-login {
    margin-left: 20px;
}

.login-btn {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(44, 62, 80, 0.3);
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.4);
    background: linear-gradient(135deg, #34495e, #2c3e50);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    color: #7ca74b;
    cursor: pointer;
    padding: 10px;
}

/* Main Content Styles */
.main-content {
    padding: 0;
    background: transparent;
    position: relative;
    min-height: 100vh;
    z-index: 1;
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: block;
    visibility: visible;
    background: #f0f0f0; /* Debug background */
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    background: #f8f9fa; /* fallback background */
}

.slide.active {
    opacity: 1 !important;
    z-index: 2;
    display: flex !important;
    background: rgba(255,0,0,0.3); /* Debug: kırmızı transparant background */
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(45deg, #7ca74b, #EB1C22); /* Debug background */
}

.slide-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(31, 140, 111, 0.8), 
        rgba(235, 28, 34, 0.3),
        rgba(0, 0, 0, 0.4)
    );
}

.slide-content {
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    height: 100%;
    padding: 0 20px;
    opacity: 1 !important;
    visibility: visible !important;
}

.slide-content.centered {
    justify-content: center;
    text-align: center;
}

/* Slide Text */
.slide-text {
    flex: 1;
    color: white;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 15;
    position: relative;
}

.slide-text h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-text h2 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #7ca74b;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-text p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #f8f9fa;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #7ca74b, #EB1C22);
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(31, 140, 111, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(31, 140, 111, 0.6);
}

/* Education Grid */
.education-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    flex: 1;
    max-width: 600px;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 15;
    position: relative;
}

.edu-card {
    position: relative;
    height: 120px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.edu-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.4s ease;
}

/* Card Color Overlays */
.card-overlay.red {
    background: linear-gradient(135deg, #EB1C22, #c0392b);
}

.card-overlay.teal {
    background: linear-gradient(135deg, #7ca74b, #16a085);
}

.card-overlay.green {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
}

.card-overlay.blue {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.card-overlay.yellow {
    background: linear-gradient(135deg, #f1c40f, #f39c12);
}

.card-overlay.gray {
    background: linear-gradient(135deg, #95a5a6, #7f8c8d);
}

.card-overlay.dark {
    background: linear-gradient(135deg, #2c3e50, #34495e);
}

.card-overlay.orange {
    background: linear-gradient(135deg, #e67e22, #d35400);
}

.card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: white;
    text-align: center;
    padding: 20px;
}

.card-content i {
    font-size: 32px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.card-content h3 {
    font-size: 14px;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.nav-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(31, 140, 111, 0.8);
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    backdrop-filter: blur(10px);
}

.nav-btn:hover {
    background: rgba(31, 140, 111, 1);
    transform: scale(1.1);
}

/* Slider Pagination */
.slider-pagination {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 15px;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-dot.active,
.pagination-dot:hover {
    background: #7ca74b;
    transform: scale(1.3);
}

/* Welcome Section */
.welcome-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    position: relative;
    display: flex;
    align-items: center;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
    width: 100%;
}

/* Welcome section için özel container - tam genişlik */
.welcome-section .container {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0 40px;
}

.welcome-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(31, 140, 111, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(235, 28, 34, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(31, 140, 111, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    color: #2c3e50;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-description {
    font-size: 20px;
    color: #495057;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.7;
    text-align: center;
}

.features-section-title {
    font-size: 36px;
    font-weight: 800;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 20px 0 30px;
    position: relative;
    text-align: center;
}

.features-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #7ca74b, #EB1C22);
    border-radius: 2px;
}

/* Welcome Features */
.welcome-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
    width: 100%;
    max-width: 1000px;
    justify-items: center;
}

.welcome-feature {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(31, 140, 111, 0.1);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 280px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.welcome-feature:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 1);
    border-color: #7ca74b;
    box-shadow: 0 15px 35px rgba(31, 140, 111, 0.15);
}

.welcome-feature i {
    font-size: 40px;
    color: #7ca74b;
    background: rgba(31, 140, 111, 0.1);
    padding: 18px;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: all 0.3s ease;
}

.welcome-feature:hover i {
    background: #7ca74b;
    color: white;
    transform: scale(1.1);
}

.welcome-feature h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
    line-height: 1.3;
}

.welcome-feature p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.5;
}

/* Welcome CTA Buttons */
.welcome-cta {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.welcome-btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.welcome-btn.primary {
    background: linear-gradient(135deg, #7ca74b, #EB1C22);
    color: white;
    box-shadow: 0 5px 20px rgba(31, 140, 111, 0.4);
}

.welcome-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(31, 140, 111, 0.6);
}

.welcome-btn.secondary {
    background: transparent;
    color: #7ca74b;
    border: 2px solid #7ca74b;
    box-shadow: 0 5px 20px rgba(31, 140, 111, 0.2);
}

.welcome-btn.secondary:hover {
    background: #7ca74b;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(31, 140, 111, 0.4);
}

/* Hero Logo Styles */
.hero-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero-icon {
    margin-bottom: 20px;
}

.hero-text h1 {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.hero-text h1 .a-letter {
    font-size: 120px;
    font-weight: 800;
    color: white;
    letter-spacing: -5px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
}

.hero-text h1 .plus-sign {
    font-size: 80px;
    font-weight: 700;
    color: #EB1C22;
    margin-left: -10px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
}

.hero-text h2 {
    font-size: 48px;
    font-weight: 700;
    color: white;
    letter-spacing: 8px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-slogan {
    font-size: 18px;
    font-weight: 600;
    color: #7ca74b;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 20px;
    text-shadow: none;
}

/* Hero Slider Responsive */
@media (max-width: 1024px) {
    .slide-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .education-grid {
        max-width: 500px;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 15px;
    }
    
    .edu-card {
        height: 100px;
    }
    
    .slide-text h1 {
        font-size: 48px;
    }
    
    .slide-text h2 {
        font-size: 36px;
    }
    
    .features {
        gap: 25px;
    }
    
    .feature-item {
        min-width: 100px;
    }
    
    .feature-item i {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    /* Welcome Section Responsive */
    .welcome-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin: 30px 0;
        max-width: 600px;
    }
    
    .welcome-feature {
        padding: 25px 20px;
        max-width: 280px;
    }
    
    .welcome-feature i {
        font-size: 36px;
        width: 60px;
        height: 60px;
        padding: 15px;
        margin: 0 auto 15px;
    }
    
    .welcome-feature h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .welcome-feature p {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 100vh;
    }
    
    .slide-content {
        padding: 20px 0;
    }
    
    .education-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
        max-width: 300px;
        gap: 12px;
    }
    
    .edu-card {
        height: 80px;
    }
    
    .card-content i {
        font-size: 24px;
        margin-bottom: 5px;
    }
    
    .card-content h3 {
        font-size: 12px;
    }
    
    .slide-text h1 {
        font-size: 36px;
    }
    
    .slide-text h2 {
        font-size: 28px;
    }
    
    .slide-text p {
        font-size: 16px;
    }
    
    .features {
        gap: 20px;
        margin: 20px 0;
    }
    
    .feature-item {
        min-width: 80px;
    }
    
    .feature-item i {
        width: 45px;
        height: 45px;
        font-size: 20px;
        padding: 10px;
    }
    
    .feature-item span {
        font-size: 12px;
    }
    
    .nav-btn {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
    
    .slider-nav {
        padding: 0 20px;
    }
    
    .hero-text h1 .a-letter {
        font-size: 80px;
    }

    .hero-text h1 .plus-sign {
        font-size: 60px;
    }

    .hero-text h2 {
        font-size: 32px;
        letter-spacing: 4px;
    }

    .hero-slogan {
        font-size: 14px;
    }

    .hero-description {
        font-size: 16px;
        padding: 0 20px;
    }

    .top-bar .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .top-bar-right {
        flex-direction: column;
        gap: 5px;
    }

    .header-content {
        flex-wrap: wrap;
        gap: 20px;
    }

    .main-nav {
        display: none;
        width: 100%;
        order: 3;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .logo {
        gap: 10px;
    }

    .a-letter {
        font-size: 28px;
    }

    .plus-sign {
        font-size: 20px;
    }

    .logo-sub {
        font-size: 14px;
    }

    .logo-slogan {
        font-size: 8px;
    }

    /* Welcome Section Mobile */
    .welcome-section {
        padding: 60px 0;
    }
    
    /* Welcome section container küçük mobil için */
    .welcome-section .container {
        padding: 0 15px;
    }
    
    .features-section-title {
        font-size: 24px;
        letter-spacing: 1px;
    }
    
    .hero-description {
        font-size: 18px;
        padding: 0 20px;
    }
    
    .welcome-features {
        grid-template-columns: 1fr;
        gap: 25px;
        margin: 30px 0;
        max-width: 320px;
    }
    
    .welcome-feature {
        padding: 20px 15px;
        max-width: 300px;
    }
    
    .welcome-feature i {
        font-size: 32px;
        width: 55px;
        height: 55px;
        padding: 12px;
        margin: 0 auto 12px;
    }
    
    .welcome-feature h3 {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    .welcome-feature p {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .welcome-cta {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 300px;
    }
    
    .welcome-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .education-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 250px;
        gap: 10px;
    }
    
    .edu-card {
        height: 70px;
    }
    
    .card-content i {
        font-size: 20px;
    }
    
    .card-content h3 {
        font-size: 10px;
    }
    
    .slide-text h1 {
        font-size: 28px;
    }
    
    .slide-text h2 {
        font-size: 22px;
    }
    
    .slide-text p {
        font-size: 14px;
    }
    
    .features {
        gap: 15px;
        flex-direction: column;
        align-items: center;
    }
    
    .feature-item {
        min-width: 70px;
    }
    
    .feature-item i {
        width: 40px;
        height: 40px;
        font-size: 18px;
        padding: 8px;
    }
    
    .feature-item span {
        font-size: 11px;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 16px;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .slider-nav {
        padding: 0 15px;
    }
    
    .hero-text h1 .a-letter {
        font-size: 60px;
    }

    .hero-text h1 .plus-sign {
        font-size: 45px;
    }

    .hero-text h2 {
        font-size: 24px;
        letter-spacing: 2px;
    }

    .hero-slogan {
        font-size: 12px;
    }

    .main-header {
        padding: 0;
    }

    .logo {
        gap: 8px;
        margin: -3px 0;
    }

    .logo-icon {
        width: 72px;
        height: 72px;
    }

    .logo-image {
        width: 67px;
        height: 67px;
    }

    .hero-logo-image {
        width: 80px;
        height: 80px;
    }

    .footer-logo .logo-icon {
        width: 100px;
        height: 60px;
        border-radius: 20px;
        overflow: hidden;
        background: white;
        padding: 6px;
    }

    .footer-logo-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 14px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    }

    .a-letter {
        font-size: 24px;
    }

    .plus-sign {
        font-size: 18px;
    }

    .logo-sub {
        font-size: 12px;
    }

    .contact-link {
        font-size: 12px;
    }

    .welcome-section {
        padding: 60px 0;
    }
    
    .features-section-title {
        font-size: 24px;
        letter-spacing: 1px;
    }
    
    .hero-description {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .welcome-features {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 25px 0;
        max-width: 320px;
    }
    
    .welcome-feature {
        padding: 20px 15px;
        max-width: 300px;
    }
    
    .welcome-feature i {
        font-size: 32px;
        width: 55px;
        height: 55px;
        padding: 12px;
        margin: 0 auto 12px;
    }
    
    .welcome-feature h3 {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    .welcome-feature p {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .welcome-cta {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 300px;
    }
    
    .welcome-btn {
        width: 100%;
        text-align: center;
    }
}

/* Footer Styles */
.main-footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 60px 0 0;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

/* Footer Left - Logo & Stats */
.footer-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

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

.footer-logo .logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo .logo-text .logo-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.footer-logo .logo-text .logo-main .a-letter,
.footer-logo .logo-text .logo-main .plus-sign {
    color: white;
}

.footer-logo .logo-text .logo-slogan {
    color: #7ca74b;
    text-align: center;
    margin-top: 5px;
}

.footer-stats {
    text-align: center;
    padding: 20px;
    background: rgba(31, 140, 111, 0.1);
    border-radius: 15px;
    border: 2px solid #7ca74b;
    min-width: 200px;
}

.about-main .stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #7ca74b;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-text {
    font-size: 14px;
    color: #EB1C22;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer About Section */
.footer-about {
    padding: 0 15px;
}

.footer-about h3 {
    font-size: 18px;
    font-weight: 700;
    color: #7ca74b;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #7ca74b;
    padding-bottom: 10px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.8;
    color: #bdc3c7;
    text-align: justify;
}

/* Footer Sitemap Section */
.footer-sitemap {
    padding: 0 15px;
}

.footer-sitemap h3 {
    font-size: 18px;
    font-weight: 700;
    color: #7ca74b;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #7ca74b;
    padding-bottom: 10px;
}

/* Site Map Styles */
.site-map {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.map-column h4 {
    font-size: 14px;
    font-weight: 600;
    color: #EB1C22;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.map-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.map-column li {
    margin-bottom: 8px;
}

.map-column a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
    display: block;
    padding: 2px 0;
}

.map-column a:hover {
    color: #7ca74b;
    padding-left: 5px;
    transform: translateX(5px);
}

/* Footer Right - Social & Contact */
.footer-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-social h3,
.footer-contact h3 {
    font-size: 16px;
    font-weight: 700;
    color: #7ca74b;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #7ca74b;
    padding-bottom: 8px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.social-icon.facebook:hover {
    background: #3b5998;
}

.social-icon.twitter:hover {
    background: #1da1f2;
}

.social-icon.youtube:hover {
    background: #ff0000;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #bdc3c7;
}

.contact-item i {
    color: #EB1C22;
    font-size: 16px;
    margin-top: 2px;
    min-width: 16px;
}

.contact-item span {
    line-height: 1.6;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    font-size: 13px;
    color: #95a5a6;
    margin: 0;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-link {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #7ca74b;
}

.separator {
    color: #7f8c8d;
    font-size: 12px;
}

/* Footer Responsive */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-left {
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    
    .footer-stats {
        min-width: 180px;
    }
    
    .site-map {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 40px 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-left {
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    
    .footer-logo .logo-icon {
        width: 140px;
        height: 85px;
        border-radius: 26px;
        overflow: hidden;
        background: white;
        padding: 8px;
    }

    .footer-logo-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 18px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .footer-about {
        text-align: center;
        padding: 0;
    }
    
    .footer-about p {
        text-align: left;
    }
    
    .footer-sitemap {
        text-align: center;
        padding: 0;
    }
    
    .site-map {
        flex-direction: row;
        gap: 25px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .map-column {
        text-align: center;
        min-width: 120px;
    }
    
    .footer-right {
        text-align: center;
        gap: 30px;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .contact-info {
        align-items: center;
    }
    
    .contact-item {
        justify-content: center;
        text-align: center;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .footer-left {
        gap: 15px;
    }
    
    .footer-logo {
        gap: 12px;
    }
    
    .footer-logo .logo-icon {
        width: 120px;
        height: 75px;
        border-radius: 24px;
        overflow: hidden;
        background: white;
        padding: 7px;
    }

    .footer-logo-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 17px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    }
    
    .footer-stats {
        min-width: 160px;
        padding: 15px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .social-icons {
        gap: 8px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .site-map {
        flex-direction: column;
        gap: 20px;
    }
    
    .map-column {
        min-width: 100px;
    }
    
    .map-column h4 {
        font-size: 12px;
    }
    
    .map-column a {
        font-size: 11px;
    }
    
    .footer-about p {
        font-size: 13px;
    }
    
    .contact-item {
        font-size: 13px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 5px;
    }
    
    .separator {
        display: none;
    }
}

/* Features Section */
.features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    min-width: 120px;
}

.feature-item i {
    font-size: 28px;
    color: #7ca74b;
    background: rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.feature-item span {
    font-size: 14px;
    font-weight: 600;
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* YKS Countdown Section */
.yks-countdown-section {
    position: relative;
    min-height: 100vh;
    background: #ffffff;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.countdown-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.countdown-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 2;
}

.students-image {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 60%;
    height: 120%;
    opacity: 0.3;
    z-index: 1;
}

.students-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50% 0 0 50%;
    filter: brightness(1.2) contrast(1.1);
}

.countdown-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 80px 0;
}

.countdown-text {
    max-width: 600px;
    color: #2c3e50;
    margin: 0 auto;
    text-align: center;
}

/* Countdown Title Styles */
.countdown-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: none;
}

.yks-text {
    display: inline-block;
    background: linear-gradient(45deg, #7ca74b, #16a085);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 80px;
    font-weight: 900;
    letter-spacing: 8px;
    text-shadow: none;
    filter: none;
}

.countdown-highlight {
    color: #2c3e50;
    text-decoration: underline;
    text-decoration-color: #EB1C22;
    text-decoration-thickness: 4px;
    text-underline-offset: 8px;
}

.countdown-action {
    color: #ffffff;
    background: linear-gradient(45deg, #EB1C22, #c0392b);
    padding: 5px 15px;
    border-radius: 25px;
    margin-left: 10px;
    font-size: 48px;
    text-shadow: none;
    box-shadow: 0 5px 15px rgba(235, 28, 34, 0.3);
}

.countdown-subtitle {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 40px;
    color: #2c3e50;
    text-shadow: none;
}

.target-highlight {
    color: #ffffff;
    background: linear-gradient(45deg, #7ca74b, #16a085);
    padding: 2px 12px;
    border-radius: 20px;
    box-shadow: 0 3px 10px rgba(31, 140, 111, 0.4);
}

/* Countdown Timer */
.countdown-timer {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.timer-item {
    background: linear-gradient(135deg, #7ca74b, #16a085);
    padding: 25px 20px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(31, 140, 111, 0.3);
    min-width: 100px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(31, 140, 111, 0.2);
}

.timer-item:hover {
    transform: translateY(-5px) scale(1.05);
    background: linear-gradient(135deg, #16a085, #7ca74b);
    box-shadow: 0 10px 30px rgba(31, 140, 111, 0.4);
}

.timer-number {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 5px;
}

.timer-label {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.95);
    padding: 5px 10px;
    border-radius: 10px;
    text-shadow: none;
}

/* Countdown Actions */
.countdown-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.countdown-btn {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    min-width: 180px;
}

.countdown-btn.primary {
    background: linear-gradient(45deg, #7ca74b, #16a085);
    color: white;
    box-shadow: 0 8px 25px rgba(31, 140, 111, 0.3);
}

.countdown-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(31, 140, 111, 0.5);
    background: linear-gradient(45deg, #16a085, #7ca74b);
}

.countdown-btn.secondary {
    background: transparent;
    color: #EB1C22;
    border: 3px solid #EB1C22;
    box-shadow: 0 8px 25px rgba(235, 28, 34, 0.2);
}

.countdown-btn.secondary:hover {
    background: #EB1C22;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(235, 28, 34, 0.4);
}

/* Wave Decoration - Hidden */
.wave-decoration {
    display: none;
}

/* Countdown Responsive */
@media (max-width: 1024px) {
    .countdown-title {
        font-size: 48px;
    }
    
    .yks-text {
        font-size: 64px;
        letter-spacing: 4px;
    }
    
    .countdown-action {
        font-size: 36px;
        margin-left: 5px;
    }
    
    .countdown-subtitle {
        font-size: 28px;
    }
    
    .students-image {
        right: -20%;
        width: 70%;
    }
    
    .countdown-timer {
        gap: 20px;
        justify-content: center;
    }
    
    .timer-number {
        font-size: 36px;
    }
    
    .timer-item {
        padding: 20px 15px;
        min-width: 80px;
    }
    
    .countdown-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .yks-countdown-section {
        min-height: 80vh;
    }
    
    .countdown-content {
        padding: 60px 0;
        text-align: center;
    }
    
    .countdown-title {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .yks-text {
        font-size: 48px;
        letter-spacing: 2px;
        display: block;
        margin-bottom: 10px;
    }
    
    .countdown-action {
        font-size: 28px;
        margin-left: 0;
        display: block;
        margin-top: 10px;
        padding: 8px 20px;
    }
    
    .countdown-subtitle {
        font-size: 22px;
        margin-bottom: 30px;
    }
    
    .students-image {
        right: -30%;
        width: 80%;
        opacity: 0.2;
    }
    
    .countdown-timer {
        justify-content: center;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .timer-item {
        padding: 15px 12px;
        min-width: 70px;
    }
    
    .timer-number {
        font-size: 28px;
    }
    
    .timer-label {
        font-size: 14px;
        padding: 3px 8px;
    }
    
    .countdown-actions {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .countdown-btn {
        width: 100%;
        max-width: 280px;
        padding: 15px 30px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .countdown-title {
        font-size: 28px;
    }
    
    .yks-text {
        font-size: 36px;
    }
    
    .countdown-action {
        font-size: 22px;
        padding: 5px 15px;
    }
    
    .countdown-subtitle {
        font-size: 18px;
    }
    
    .countdown-timer {
        gap: 10px;
        justify-content: center;
    }
    
    .timer-item {
        padding: 12px 8px;
        min-width: 60px;
    }
    
    .timer-number {
        font-size: 24px;
    }
    
    .timer-label {
        font-size: 12px;
    }
    
    .students-image {
        display: none;
    }
    
    .countdown-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .countdown-actions {
        justify-content: center;
    }
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 400px 1fr;
    gap: 60px;
    align-items: center;
    min-height: 600px;
}

/* Feature Items */
.features-left,
.features-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.features-left {
    text-align: left;
}

.features-right {
    text-align: right;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border-left: 4px solid transparent;
    backdrop-filter: blur(10px);
}

.features-left .feature-item {
    flex-direction: row;
    border-left: 4px solid transparent;
}

.features-right .feature-item {
    flex-direction: row-reverse;
    border-left: none;
    border-right: 4px solid transparent;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(31, 140, 111, 0.15);
}

.features-left .feature-item:hover {
    border-left-color: #7ca74b;
}

.features-right .feature-item:hover {
    border-right-color: #7ca74b;
}

/* Feature Icons */
.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7ca74b, #16a085);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(31, 140, 111, 0.3);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(31, 140, 111, 0.5);
}

/* Feature Text */
.feature-text h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    line-height: 1.4;
}

/* Center Image */
.features-center {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.center-image-container {
    position: relative;
    width: 100%;
    max-width: 350px;
    height: 500px;
    perspective: 1000px;
}

.center-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
    transform-style: preserve-3d;
}

.center-image-wrapper:hover {
    transform: rotateY(5deg) rotateX(5deg);
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}

.center-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.center-image-wrapper:hover .center-image {
    transform: scale(1.05);
}

/* Image Overlay */
.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 30px 25px 25px;
    color: white;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.center-image-wrapper:hover .image-overlay {
    transform: translateY(0);
}

.academy-logo {
    margin-bottom: 15px;
}

.overlay-logo {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    object-fit: contain;
    background: rgba(255,255,255,0.1);
    padding: 8px;
    backdrop-filter: blur(10px);
}

.overlay-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #7ca74b;
}

.overlay-content p {
    font-size: 14px;
    color: #f8f9fa;
    margin: 0;
}

/* Decorative Elements */
.features-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(31, 140, 111, 0.1), rgba(235, 28, 34, 0.1));
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.features-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, rgba(235, 28, 34, 0.1), rgba(31, 140, 111, 0.1));
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Responsive Features Section */
@media (max-width: 1024px) {
    .features-content {
        grid-template-columns: 1fr 300px 1fr;
        gap: 40px;
    }
    
    .center-image-container {
        max-width: 280px;
        height: 400px;
    }
    
    .feature-item {
        padding: 20px;
        gap: 15px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .feature-text h3 {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 60px 0;
    }
    
    .features-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .features-left,
    .features-right {
        gap: 25px;
    }
    
    .features-left {
        text-align: center;
    }
    
    .features-left .feature-item {
        flex-direction: row;
        border-right: none;
        border-left: 4px solid transparent;
    }
    
    .features-left .feature-item:hover {
        border-left-color: #7ca74b;
        border-right-color: transparent;
    }
    
    .center-image-container {
        max-width: 250px;
        height: 350px;
        margin: 0 auto;
    }
    
    .feature-item {
        padding: 18px;
        margin: 0 auto;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .features-content {
        gap: 30px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
        gap: 12px;
    }
    
    .features-left .feature-item {
        flex-direction: column;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .feature-text h3 {
        font-size: 15px;
    }
    
    .center-image-container {
        max-width: 200px;
        height: 280px;
    }
    
    .image-overlay {
        padding: 20px 15px 15px;
    }
    
    .overlay-logo {
        width: 40px;
        height: 40px;
    }
    
    .overlay-content h4 {
        font-size: 16px;
    }
    
    .overlay-content p {
        font-size: 12px;
    }
}

/* Universities Section */
.universities-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-top: 1px solid #e9ecef;
    overflow-x: hidden;
}

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

.universities-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
}

.universities-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #7ca74b, #EB1C22);
    border-radius: 2px;
}

.universities-header p {
    font-size: 18px;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Carousel Container */
.universities-carousel {
    position: relative;
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.universities-wrapper {
    flex: 1;
    overflow: hidden;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.5);
    padding: 20px 0;
}

.universities-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    padding: 0 20px;
}

/* University Items */
.university-item {
    flex: 0 0 auto;
    width: 180px;
    text-align: center;
}

.university-logo {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #e9ecef;
    padding: 15px;
    overflow: hidden;
}

.university-logo:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(31, 140, 111, 0.2);
    border-color: #7ca74b;
}

.university-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    border-radius: 0;
}

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

.university-name {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.3;
    margin-top: 10px;
}

/* Carousel Navigation */
.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7ca74b, #16a085);
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(31, 140, 111, 0.3);
    z-index: 2;
}

.carousel-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(31, 140, 111, 0.5);
    background: linear-gradient(135deg, #16a085, #7ca74b);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-btn.prev {
    order: -1;
}

.carousel-btn.next {
    order: 1;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

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

.indicator.active,
.indicator:hover {
    background: #7ca74b;
    transform: scale(1.2);
}

/* Auto-scroll animation */
@keyframes scroll-universities {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.universities-track.auto-scroll {
    animation: scroll-universities 20s linear infinite;
}

/* Responsive Universities Section */
@media (max-width: 1024px) {
    .universities-header h2 {
        font-size: 36px;
    }
    
    .universities-header p {
        font-size: 16px;
    }
    
    .university-item {
        width: 160px;
    }
    
    .university-logo {
        width: 100px;
        height: 100px;
        padding: 12px;
    }
    
    .university-name {
        font-size: 13px;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .universities-section {
        padding: 60px 0;
        overflow-x: hidden;
    }
    
    .universities-header {
        margin-bottom: 40px;
    }
    
    .universities-header h2 {
        font-size: 28px;
    }
    
    .universities-header p {
        font-size: 14px;
        padding: 0 20px;
    }
    
    .carousel-container {
        flex-direction: row;
        gap: 15px;
        overflow-x: hidden;
        align-items: center;
    }
    
    .universities-wrapper {
        flex: 1;
        margin: 0 -10px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .universities-wrapper::-webkit-scrollbar {
        display: none;
    }
    
    .carousel-btn {
        position: static;
        width: 35px;
        height: 35px;
        font-size: 12px;
        flex-shrink: 0;
    }
    
    .carousel-container .carousel-btn.prev {
        order: -1;
    }
    
    .carousel-container .carousel-btn.next {
        order: 1;
    }
    
    .carousel-navigation {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .university-item {
        width: 140px;
        flex-shrink: 0;
    }
    
    .university-logo {
        width: 90px;
        height: 90px;
        padding: 10px;
    }
    
    .university-name {
        font-size: 12px;
    }
    
    .universities-track {
        gap: 20px;
        padding: 0 15px;
        display: flex;
        min-width: max-content;
    }
}

@media (max-width: 480px) {
    .universities-header h2 {
        font-size: 24px;
    }
    
    .university-item {
        width: 120px;
        flex-shrink: 0;
    }
    
    .university-logo {
        width: 80px;
        height: 80px;
        margin: 0 auto 10px;
        padding: 8px;
    }
    
    .university-name {
        font-size: 11px;
        line-height: 1.2;
    }
    
    .universities-track {
        gap: 15px;
        padding: 0 10px;
        display: flex;
        min-width: max-content;
    }
    
    .universities-wrapper {
        margin: 0 -15px;
        padding: 0 15px;
    }
    
    .carousel-indicators {
        gap: 8px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

/* Contact Page Styles */
.contact-main {
    padding-top: 0;
}

/* Contact Info Section */
.contact-info-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Contact Details */
.contact-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid rgba(31, 140, 111, 0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(31, 140, 111, 0.15);
    border-color: #7ca74b;
}

.contact-card-header {
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 2px solid #f8f9fa;
    padding-bottom: 20px;
}

.contact-card-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.contact-description {
    font-size: 18px;
    color: #7ca74b;
    font-weight: 600;
    margin: 0;
    background: rgba(31, 140, 111, 0.1);
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
}

.contact-info-grid {
    display: grid;
    gap: 25px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    border-radius: 15px;
    background: rgba(31, 140, 111, 0.05);
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(31, 140, 111, 0.1);
    transform: translateX(5px);
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7ca74b, #16a085);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(31, 140, 111, 0.3);
}

.info-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.info-content p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.info-content a {
    color: #7ca74b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: #EB1C22;
    text-decoration: underline;
}

/* Contact Form */
.contact-form-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid rgba(31, 140, 111, 0.1);
    transition: all 0.3s ease;
}

.contact-form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(31, 140, 111, 0.15);
    border-color: #7ca74b;
}

.contact-form-card h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 2px solid #f8f9fa;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7ca74b;
    background: white;
    box-shadow: 0 0 0 3px rgba(31, 140, 111, 0.1);
}

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

.submit-btn {
    background: linear-gradient(135deg, #7ca74b, #16a085);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    box-shadow: 0 5px 15px rgba(31, 140, 111, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(31, 140, 111, 0.5);
    background: linear-gradient(135deg, #16a085, #7ca74b);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: white;
}

.map-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.map-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.directions-btn {
    background: linear-gradient(135deg, #EB1C22, #c0392b);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(235, 28, 34, 0.3);
}

.directions-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(235, 28, 34, 0.5);
    background: linear-gradient(135deg, #c0392b, #EB1C22);
}

.directions-btn:active {
    transform: translateY(0);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 3px solid #e9ecef;
    transition: all 0.3s ease;
}

.map-container:hover {
    border-color: #7ca74b;
    box-shadow: 0 20px 40px rgba(31, 140, 111, 0.15);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* Contact Page Responsive */
@media (max-width: 1024px) {
    .contact-grid {
        gap: 40px;
    }
    
    .contact-card,
    .contact-form-card,
    .map-card {
        padding: 30px;
    }
    
    .map-card .map-header h2 {
        font-size: 28px;
    }
    
    .map-header {
        flex-direction: column;
        text-align: center;
    }
    
    .map-header h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .contact-info-section {
        padding: 60px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-card,
    .contact-form-card,
    .map-card {
        padding: 25px;
    }
    
    .contact-card-header h2,
    .contact-form-card h2 {
        font-size: 24px;
    }
    
    .map-card .map-header h2 {
        font-size: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .info-icon {
        margin: 0 auto;
    }
    
    .contact-form-section {
        padding: 60px 0;
    }
    
    .map-card .map-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .directions-btn {
        width: 100%;
        justify-content: center;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .map-header h2 {
        font-size: 28px;
    }
    
    .map-container iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .contact-info-section {
        padding: 40px 0;
    }
    
    .contact-card,
    .contact-form-card,
    .map-card {
        padding: 20px;
        border-radius: 15px;
    }
    
    .contact-card-header,
    .contact-form-card h2 {
        margin-bottom: 20px;
    }
    
    .contact-card-header h2,
    .contact-form-card h2 {
        font-size: 20px;
    }
    
    .map-card .map-header h2 {
        font-size: 20px;
    }
    
    .contact-description {
        font-size: 14px;
        padding: 8px 16px;
    }
    
    .info-item {
        padding: 15px;
        border-radius: 10px;
    }
    
    .info-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .info-content h3 {
        font-size: 16px;
    }
    
    .info-content p {
        font-size: 13px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .submit-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .contact-form-section {
        padding: 40px 0;
    }
    
    .map-card .map-header {
        margin-bottom: 15px;
    }
    
    .directions-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .map-container {
        border-radius: 15px;
        border-width: 2px;
    }
    
    .map-container iframe {
        height: 250px;
    }
    
    .map-header h2 {
        font-size: 24px;
    }
    
    .map-container iframe {
        height: 250px;
    }
}

/* Map in Grid */
.map-container-wrapper {
    display: flex;
    align-items: start;
}

.map-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid rgba(31, 140, 111, 0.1);
    transition: all 0.3s ease;
    width: 100%;
}

.map-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(31, 140, 111, 0.15);
    border-color: #7ca74b;
}

.map-card .map-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.map-card .map-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: white;
}

.contact-form-section .contact-form-container {
    max-width: 800px;
    margin: 0 auto;
}

/* About Page Styles */
.about-main {
    padding-top: 0;
}

/* About Hero Section */
.about-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #7ca74b 0%, #16a085 100%);
    color: white;
}

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

.about-hero-text h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    color: white;
}

.about-hero-text h2 {
    font-size: 24px;
    font-weight: 600;
    color: #EB1C22;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
}

.about-hero-text p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.about-hero-image {
    text-align: center;
}

.hero-img {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    background: white;
    padding: 20px;
}

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

/* About Story Section */
.about-story {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.story-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
}

.story-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #7ca74b, #EB1C22);
    border-radius: 2px;
}

.story-header p {
    font-size: 18px;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.story-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.story-text {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(31, 140, 111, 0.1);
}

.story-text h3 {
    font-size: 28px;
    font-weight: 700;
    color: #7ca74b;
    margin-bottom: 20px;
}

.story-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 20px;
}

.story-text p:last-child {
    margin-bottom: 0;
}

.story-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.stat-item {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(31, 140, 111, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: #7ca74b;
    box-shadow: 0 15px 35px rgba(31, 140, 111, 0.2);
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #7ca74b;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mission Vision Section */
.mission-vision {
    padding: 100px 0;
    background: white;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mission-card,
.vision-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(31, 140, 111, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #7ca74b, #EB1C22);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(31, 140, 111, 0.2);
    border-color: #7ca74b;
}

.mv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #7ca74b, #16a085);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow: 0 8px 25px rgba(31, 140, 111, 0.3);
}

.mission-card h3,
.vision-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.mission-card p,
.vision-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.values-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
}

.values-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #7ca74b, #EB1C22);
    border-radius: 2px;
}

.values-header p {
    font-size: 18px;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

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

.value-item {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(31, 140, 111, 0.1);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-8px);
    border-color: #7ca74b;
    box-shadow: 0 15px 35px rgba(31, 140, 111, 0.2);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #7ca74b, #16a085);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(31, 140, 111, 0.3);
    transition: transform 0.3s ease;
}

.value-item:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.value-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #6c757d;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background: white;
}

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

.why-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
}

.why-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #7ca74b, #EB1C22);
    border-radius: 2px;
}

.why-header p {
    font-size: 18px;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

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

.why-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(31, 140, 111, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.why-item:hover {
    transform: translateY(-8px);
    border-color: #7ca74b;
    box-shadow: 0 15px 35px rgba(31, 140, 111, 0.2);
}

.why-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #EB1C22, #c0392b);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(235, 28, 34, 0.3);
}

.why-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 20px 0 15px;
}

.why-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #6c757d;
}

/* About Page Responsive */
@media (max-width: 1024px) {
    .about-hero-content {
        gap: 40px;
    }
    
    .about-hero-text h1 {
        font-size: 42px;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 60px 0;
    }
    
    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .about-hero-text h1 {
        font-size: 36px;
    }
    
    .about-hero-text h2 {
        font-size: 20px;
    }
    
    .about-hero-text p {
        font-size: 16px;
    }
    
    .hero-img {
        max-width: 300px;
        height: 250px;
        object-fit: contain;
        padding: 15px;
    }
    
    .about-story,
    .mission-vision,
    .values-section,
    .why-choose-us {
        padding: 60px 0;
    }
    
    .story-header h2,
    .values-header h2,
    .why-header h2 {
        font-size: 32px;
    }
    
    .story-header p,
    .values-header p,
    .why-header p {
        font-size: 16px;
    }
    
    .story-text {
        padding: 30px;
    }
    
    .story-text h3 {
        font-size: 24px;
    }
    
    .story-text p {
        font-size: 15px;
    }
    
    .story-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mission-card,
    .vision-card {
        padding: 30px;
    }
    
    .mission-card h3,
    .vision-card h3 {
        font-size: 20px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 40px 0;
    }
    
    .about-hero-text h1 {
        font-size: 28px;
    }
    
    .about-hero-text h2 {
        font-size: 18px;
    }
    
    .hero-img {
        max-width: 250px;
        height: 200px;
        object-fit: contain;
        padding: 12px;
    }
    
    .about-story,
    .mission-vision,
    .values-section,
    .why-choose-us {
        padding: 40px 0;
    }
    
    .story-header h2,
    .values-header h2,
    .why-header h2 {
        font-size: 24px;
    }
    
    .story-header p,
    .values-header p,
    .why-header p {
        font-size: 14px;
    }
    
    .story-text {
        padding: 20px;
    }
    
    .story-text h3 {
        font-size: 20px;
    }
    
    .story-text p {
        font-size: 14px;
    }
    
    .story-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .about-main .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .mission-card,
    .vision-card {
        padding: 25px 20px;
    }
    
    .mv-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .mission-card h3,
    .vision-card h3 {
        font-size: 18px;
    }
    
    .mission-card p,
    .vision-card p {
        font-size: 14px;
    }
    
    .value-item,
    .why-item {
        padding: 20px 15px;
    }
    
    .value-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .value-item h4,
    .why-item h4 {
        font-size: 16px;
    }
    
    .value-item p,
    .why-item p {
        font-size: 13px;
    }
    
    .why-number {
        width: 35px;
        height: 35px;
        font-size: 14px;
        top: -17px;
    }
}
.educations-main {
    padding-top: 0;
}

.educations-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(31, 140, 111, 0.8) 0%, rgba(235, 28, 34, 0.6) 100%);
}

.educations-hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    color: white;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-text h2 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-text p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* Education Categories */
.education-categories {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

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

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #7ca74b, #EB1C22);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

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

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

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #7ca74b, #EB1C22);
}

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

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.category-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.5rem;
    color: white;
}

.category-icon.red { background: linear-gradient(135deg, #EB1C22, #ff4757); }
.category-icon.teal { background: linear-gradient(135deg, #00b894, #00cec9); }
.category-icon.green { background: linear-gradient(135deg, #7ca74b, #00b894); }
.category-icon.blue { background: linear-gradient(135deg, #0984e3, #74b9ff); }
.category-icon.yellow { background: linear-gradient(135deg, #fdcb6e, #f39c12); }
.category-icon.gray { background: linear-gradient(135deg, #636e72, #2d3436); }
.category-icon.dark { background: linear-gradient(135deg, #2d3436, #636e72); }
.category-icon.orange { background: linear-gradient(135deg, #e17055, #fd79a8); }

.category-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.category-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.program-list {
    list-style: none;
    margin-bottom: 25px;
}

.program-list li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: #555;
}

.program-list li i {
    color: #7ca74b;
    margin-right: 10px;
    font-size: 0.9rem;
}

.category-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.feature-badge {
    background: rgba(31, 140, 111, 0.1);
    color: #7ca74b;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.category-btn {
    display: inline-block;
    background: linear-gradient(135deg, #7ca74b, #00b894);
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
}

.category-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(31, 140, 111, 0.3);
}

/* Success Stories */
.success-stories {
    padding: 80px 0;
    background: white;
}

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

.story-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

.story-image {
    height: 200px;
    overflow: hidden;
}

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

.story-card:hover .story-image img {
    transform: scale(1.05);
}

.story-content {
    padding: 25px;
}

.story-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.story-achievement {
    color: #7ca74b;
    font-weight: 500;
    margin-bottom: 15px;
}

.story-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.story-score {
    text-align: right;
}

.score {
    background: linear-gradient(135deg, #7ca74b, #00b894);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* CTA Section */
.education-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #7ca74b 0%, #EB1C22 100%);
    color: white;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.cta-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

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

.cta-btn.primary {
    background: white;
    color: #7ca74b;
}

.cta-btn.primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

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

.cta-btn.secondary:hover {
    background: white;
    color: #7ca74b;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .educations-hero {
        height: 300px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text h2 {
        font-size: 1.2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .education-categories {
        padding: 60px 0;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-card {
        padding: 25px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .cta-text h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .educations-hero {
        height: 250px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-text h2 {
        font-size: 1rem;
    }
    
    .category-card {
        padding: 20px;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .category-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .program-list li {
        font-size: 0.9rem;
    }
    
    .story-content {
        padding: 20px;
    }
    
    .cta-text h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* ===========================
   TEAM PAGE STYLES
=========================== */

.team-main {
    background: #ffffff;
}

/* Team Hero Section */
.team-hero {
    background: linear-gradient(rgba(31, 140, 111, 0.8), rgba(22, 160, 133, 0.8)), url('ogretmenler.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.team-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.03)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.team-hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.team-hero-text {
    flex: 1;
}

.team-hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.team-hero-text h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 20px;
    opacity: 0.9;
}

.team-hero-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 600px;
}

.team-hero-stats {
    display: flex;
    gap: 30px;
    flex-direction: column;
}

.hero-stat {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 30px 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.hero-stat:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: #ffffff;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Team Members Section */
.team-members {
    padding: 80px 0;
    background: #f8faf9;
}

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

.team-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #7ca74b;
    margin-bottom: 15px;
}

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

.team-category {
    margin-bottom: 80px;
}

.team-category:last-child {
    margin-bottom: 0;
}

.team-category h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.team-category h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #7ca74b, #16a085);
    border-radius: 2px;
}

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

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

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #7ca74b, #16a085);
}

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

.member-image {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #7ca74b;
    background: white;
    padding: 10px;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(31, 140, 111, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.member-image:hover .member-overlay {
    opacity: 1;
}

.member-image:hover img {
    transform: scale(1.1);
}

.member-social {
    display: flex;
    gap: 15px;
}

.member-social .social-link {
    width: 40px;
    height: 40px;
    background: white;
    color: #7ca74b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.member-social .social-link:hover {
    background: #EB1C22;
    color: white;
    transform: scale(1.1);
}

.member-info {
    text-align: center;
}

.member-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.member-title {
    font-size: 1rem;
    font-weight: 600;
    color: #7ca74b;
    margin-bottom: 5px;
}

.member-specialty {
    font-size: 0.9rem;
    color: #EB1C22;
    font-weight: 500;
    margin-bottom: 15px;
}

.member-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Team Photo Section */
.team-photo-section {
    padding: 80px 0;
    background: #f8faf9;
    position: relative;
    overflow: hidden;
}

.team-photo-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.team-photo-image {
    max-width: 1000px;
    width: 100%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.team-photo-image:hover {
    transform: translateY(-10px);
}

.team-photo {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(31, 140, 111, 0.9));
    padding: 40px 30px 30px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.team-photo-image:hover .photo-overlay {
    transform: translateY(0);
}

.overlay-content {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

.overlay-content i {
    font-size: 1.5rem;
}

/* Team Values Section */
.team-values {
    padding: 80px 0;
    background: white;
}

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

.values-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #7ca74b;
    margin-bottom: 15px;
}

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

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.value-card {
    background: #f8faf9;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: #7ca74b;
    background: white;
    box-shadow: 0 15px 35px rgba(31, 140, 111, 0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #7ca74b, #16a085);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

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

.value-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .team-hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .team-hero-stats {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }
    
    .hero-stat {
        padding: 25px 20px;
    }
}

@media (max-width: 768px) {
    .team-photo-section {
        padding: 60px 0;
    }
    
    .team-photo-image {
        max-width: 100%;
    }
    
    .team-photo {
        height: 300px;
    }
    
    .team-hero {
        padding: 100px 0 60px;
    }
    
    .team-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .team-hero-text h2 {
        font-size: 1.5rem;
    }
    
    .team-hero-text p {
        font-size: 1.1rem;
    }
    
    .team-hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-stat {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .team-members {
        padding: 60px 0;
    }
    
    .team-header h2 {
        font-size: 2rem;
    }
    
    .team-category h3 {
        font-size: 1.5rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .team-member {
        padding: 25px;
    }
    
    .member-image {
        width: 100px;
        height: 100px;
        padding: 8px;
    }
    
    .team-values {
        padding: 60px 0;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .value-card {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .team-photo {
        height: 250px;
    }
    
    .team-hero-text h1 {
        font-size: 2rem;
    }
    
    .team-hero-text h2 {
        font-size: 1.3rem;
    }
    
    .team-hero-text p {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .team-header h2 {
        font-size: 1.8rem;
    }
    
    .values-header h2 {
        font-size: 1.8rem;
    }
}