/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.animate {
    opacity: 1;
    transform: translateY(0);
}

.slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.slide-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.slide-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease;
}

.scale-in.animate {
    opacity: 1;
    transform: scale(1);
}

.stagger-animation {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.stagger-animation.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #fffef7;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: none;
    margin: 0;
    z-index: 1000;
    padding: 20px 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border-radius: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.header.scrolled {
    top: 20px;
    left: 50%;
    right: auto;
    width: 80%;
    max-width: 1200px;
    transform: translateX(-50%);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .header.scrolled {
        width: 95%;
    }
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    position: relative;
    width: 40px;
    height: 40px;
}

.logo-square {
    width: 100%;
    height: 100%;
    background: #333;
    border-radius: 8px;
    position: relative;
}

.logo-square::after {
    content: 'EK';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.logo-text h2 {
    color: #333;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 2px;
}

.logo-text p {
    color: #666;
    font-size: 13px;
    font-weight: 500;
}

.navigation ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.navigation a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.navigation a:hover {
    color: #111;
}

.navigation a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #333;
    transition: width 0.3s ease;
}

.navigation a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle:hover span {
    background: #111;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    height: 170vh;
    background: linear-gradient(180deg, #fff7d6 0%, #fffcef 20%, #fffffb 100%);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    padding: 200px 20px 0 20px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.hero-name {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 800;
    color: #2d2d2d;
    margin: 0;
    line-height: 1.1;
    font-family: "Playfair Display", serif;
    letter-spacing: -0.02em;
}

.hero-title {
    font-size: clamp(1.2rem, 4vw, 1.2rem);
    font-weight: 400;
    color: #666;
    margin: 0;
    margin-top: -40px;
    opacity: 0;
    transform: translateY(-30px);
    animation: slideDown 1s ease 2s forwards;
    font-style: italic;
}

/* Typing Effect */
#typing-text::after {
    content: '|';
    animation: blink 1s infinite;
    color: #2d2d2d;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

@keyframes slideDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Profile Card */
.profile-card {
    background-image: url('images/christian-buehner-DItYlc26zVI-unsplash.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.08);
    max-width: 90%;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
    animation: cardSlideUp 1s ease 0.5s forwards;
    display: flex;
    align-items: flex-end;
    position: relative;
    min-height: 650px;
    overflow: hidden;
    aspect-ratio: 2/1;
}

.profile-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

@keyframes cardSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-image-container {
    display: none;
}

.card-profile-image {
    display: none;
}

.profile-card:hover .card-profile-image {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.profile-info {
    text-align: left;
    padding: 15px 40px 14px 40px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: #333333;
    width: 100%;
    max-width: none;
    min-height: 210px;
}

.profile-name {
    font-size: 1.8rem;
    font-weight: 900;
    color: #333333;
    margin: 0 0 8px 0;
    font-family: "Inter", serif;
    text-shadow: none;
}

.profile-profession {
    font-size: 1.1rem;
    color: #444444;
    margin: 0 0 4px 0;
    font-weight: 500;
    text-shadow: none;
}

.profile-experience {
    font-size: 0.95rem;
    color: #555555;
    margin: 0 0 15px 0;
    font-weight: 400;
    text-shadow: none;
}

.profile-description {
    font-size: 0.9rem;
    color: #444444;
    line-height: 1.5;
    margin: 0 0 20px 0;
    font-weight: 400;
    text-shadow: none;
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero {
        height: 150vh;
        padding: 180px 30px 0 30px;
    }
    
    .hero-content {
        gap: 50px;
    }
    
    .profile-card {
        max-width: 85%;
        min-height: 550px;
        aspect-ratio: 1.8/1;
    }
    
    .profile-info {
        padding: 20px 35px 50px 35px;
        min-height: 250px;
    }
    
    .profile-name {
        font-size: 1.6rem;
    }
    
    .profile-profession {
        font-size: 1rem;
    }
    
    .profile-experience {
        font-size: 0.9rem;
    }
    
    .profile-description {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .stat-number {
        font-size: 1.1rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 140px 15px 0 15px;
        height: 180vh;
    }
    
    .hero-content {
        gap: 80px;
    }
    
    .hero-name {
        font-size: clamp(1.8rem, 8vw, 2.2rem);
    }
    
    .hero-title {
        font-size: clamp(1.4rem, 6vw, 1.8rem);
        margin-top: -20px;
    }
    
    .profile-card {
        background-image: url('images/christian-buehner-DItYlc26zVI-unsplash.webp');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        border-radius: 20px;
        padding: 0;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(0, 0, 0, 0.08);
        max-width: 85%;
        width: 85%;
        margin: 0 auto;
        text-align: left;
        min-height: 500px;
        height: 500px;
        display: flex;
        align-items: flex-end;
        position: relative;
        overflow: hidden;
    }
    
    .profile-image-container {
        display: none;
    }
    
    .card-profile-image {
        display: none;
    }
    
    .profile-info {
        text-align: left;
        padding: 20px 25px 30px 25px;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 3;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        color: #333333;
        width: 100%;
        max-width: none;
        min-height: 200px;
    }
    
    .profile-name {
        color: #333333;
        text-shadow: none;
        font-size: 1.4rem;
        margin-bottom: 8px;
        font-family: "Inter", serif;
    }
    
    .profile-profession {
        color: #444444;
        text-shadow: none;
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .profile-experience {
        color: #555555;
        text-shadow: none;
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .profile-description {
        color: #444444;
        text-shadow: none;
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 15px;
    }
    
    .stat-number {
        color: #333333;
        text-shadow: none;
        font-size: 1.1rem;
    }
    
    .stat-label {
        color: #555555;
        text-shadow: none;
        font-size: 0.75rem;
    }
    
    .profile-stats {
        justify-content: flex-start;
        gap: 20px;
        border-top: 1px solid rgba(0, 0, 0, 0.2);
        padding-top: 15px;
        margin-top: 15px;
    }
    
    .stat {
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 140vh;
        padding: 120px 10px 0 10px;
    }
    
    .hero-content {
        gap: 70px;
    }
    
    .hero-name {
        font-size: clamp(1.4rem, 7vw, 1.6rem);
    }
    
    .hero-title {
        font-size: clamp(1.2rem, 5vw, 1.6rem);
    }
    
    .profile-card {
        background-image: url('images/christian-buehner-DItYlc26zVI-unsplash.webp');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        border-radius: 16px;
        padding: 0;
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
        border: 1px solid rgba(0, 0, 0, 0.08);
        max-width: 80%;
        width: 80%;
        min-width: 280px;
        margin: 0 auto;
        text-align: left;
        min-height: 700px;
        height: 700px;
        display: flex;
        align-items: flex-end;
        position: relative;
        overflow: hidden;
    }
    
    .profile-info {
        text-align: left;
        padding: 18px 20px 25px 20px;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 3;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        color: #333333;
        width: 100%;
        max-width: none;
        min-height: 180px;
    }
    
    .profile-name {
        font-size: 1.2rem;
        margin-bottom: 6px;
        color: #333333;
        font-family: "Inter", serif;
    }
    
    .profile-profession {
        font-size: 0.9rem;
        margin-bottom: 4px;
        color: #444444;
    }
    
    .profile-experience {
        font-size: 0.8rem;
        margin-bottom: 12px;
        color: #555555;
    }
    
    .profile-description {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-bottom: 12px;
        color: #444444;
    }
    
    .profile-stats {
        gap: 15px;
        padding-top: 12px;
        margin-top: 12px;
        justify-content: flex-start;
        border-top: 1px solid rgba(0, 0, 0, 0.2);
    }
    
    .stat {
        align-items: flex-start;
    }
    
    .stat-number {
        font-size: 1rem;
        color: #333333;
    }
    
    .stat-label {
        font-size: 0.7rem;
        color: #555555;
    }
}

/* Main Content */
.main-content {
    background: #f7fafc;
}

/* Career Timeline */
.career-timeline {
    background: #ffffff;
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 80px;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #333 0%, #666 50%, #333 100%);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    width: 100%;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 30px;
    width: 20px;
    height: 20px;
    background: #333;
    border: 4px solid #ffffff;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.timeline-item.left::before {
    right: -11px;
}

.timeline-item.right::before {
    left: -11px;
}

.timeline-content {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.timeline-item.left .timeline-content {
    margin-right: 60px;
    text-align: right;
}

.timeline-item.right .timeline-content {
    margin-left: 60px;
    text-align: left;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 35px;
    width: 0;
    height: 0;
    border: 12px solid transparent;
}

.timeline-item.left .timeline-content::before {
    right: -24px;
    border-left-color: #ffffff;
}

.timeline-item.right .timeline-content::before {
    left: -24px;
    border-right-color: #ffffff;
}

.timeline-date {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
    margin: 0;
}

.section {
    padding: 80px 0;
}

.section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.section p {
    font-size: 18px;
    color: #555;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section Styles */
.about-section {
    background: #ffffff;
    padding: 100px 0;
    position: relative;
}

.about-section .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.about-section .section-title {
    color: #1a202c;
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.about-section .section-divider {
    width: 60px;
    height: 3px;
    background: #334155;
    margin: 0 auto;
    border-radius: 2px;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-intro {
    text-align: center;
    margin-bottom: 80px;
    padding: 0 20px;
}

.intro-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #374151;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
    text-align: justify !important;
}

.about-services {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-explanation {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.explanation-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 0;
    border: 1px solid rgba(203, 213, 225, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    min-height: 280px;
}

/* Görsel Kısmı */
.card-visual {
    flex: 0 0 200px;
    position: relative;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.explanation-card:hover .card-image {
    transform: scale(1.05);
}

/* Metin İçerik Kısmı */
.card-text-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.explanation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e2e8f0 0%, #cbd5e0 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.explanation-card:hover::before {
    transform: scaleX(1);
}

.explanation-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    background: #ffffff;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(203, 213, 225, 0.4);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.card-icon i {
    font-size: 28px;
    color: #475569;
    transition: all 0.3s ease;
}

.explanation-card:hover .card-icon {
    transform: scale(1.05);
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
}

.card-header h3 {
    color: #1a202c;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: -0.01em;
}

.card-content {
    flex: 1;
    padding: 0;
}

.card-content p {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 16px;
    text-align: left;
    max-width: none;
}

.card-content p:last-child {
    margin-bottom: 0;
}

/* Mobile Responsive for About Section */
@media (max-width: 768px) {
    .about-section {
        padding: 80px 0;
    }
    
    .about-section .section-title {
        font-size: 2.2rem;
    }
    
    .intro-text {
        font-size: 1.1rem;
        padding: 0 10px;
        text-align: justify;
    }
    
    .explanation-card {
        flex-direction: column;
        min-height: auto;
    }
    
    .card-visual {
        flex: 0 0 180px;
        width: 100%;
    }
    
    .card-text-content {
        padding: 30px 25px;
    }
    
    .card-header {
        flex-direction: row;
        text-align: left;
        gap: 16px;
    }
    
    .card-header h3 {
        font-size: 1.3rem;
    }
    
    .card-content {
        text-align: left;
    }
    
    .card-content p {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .about-section .section-title {
        font-size: 1.8rem;
    }
    
    .intro-text {
        font-size: 1rem;
        text-align: justify;
    }
    
    .explanation-card {
        margin: 0 10px;
    }
    
    .card-visual {
        flex: 0 0 150px;
    }
    
    .card-text-content {
        padding: 25px 20px;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
    }
    
    .card-icon i {
        font-size: 24px;
    }
    
    .card-header h3 {
        font-size: 1.2rem;
    }
}

/* Prestijedu Section */
.prestijedu-section {
    height: 70vh;
    min-height: 500px;
    background-image: url('images/ChatGPT\ Image\ 28\ Ağu\ 2025\ 12_16_44.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.prestijedu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.prestijedu-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.prestijedu-content {
    max-width: 600px;
    text-align: left;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.prestijedu-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    font-family: "Questrial";
}

.prestijedu-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.4;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-weight: 300;
    font-family: "Questrial";
}

.prestijedu-btn {
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.485);
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.1s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    font-family: "Questrial";
    text-decoration: none;
    border-radius: 50px;
}

.prestijedu-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.prestijedu-btn:hover::before {
    left: 100%;
}

.prestijedu-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(232, 232, 232, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    background-color: white;
    color: #111;
}

.prestijedu-btn:active {
    transform: translateY(-1px) scale(1.02);
}

/* Mobile Responsive for Prestijedu Section */
@media (max-width: 768px) {
    .prestijedu-section {
        height: 60vh;
        min-height: 450px;
        background-attachment: scroll;
        background-image: url('./images/logoyatay.jpeg');
        background-size: cover;
        background-position: center;
        justify-content: center;
    }
    
    .prestijedu-section::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.4) 100%);
        z-index: 1;
    }
    
    .prestijedu-section .container {
        position: relative;
        z-index: 2;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .prestijedu-content {
        padding-left: 20px;
        padding-right: 20px;
        text-align: center;
        align-items: center;
        max-width: 100%;
    }
    
    .prestijedu-title {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
    }
    
    .prestijedu-subtitle {
        font-size: clamp(1rem, 4vw, 1.3rem);
        margin-bottom: 30px;
    }
    
    .prestijedu-btn {
        padding: 16px 35px;
        font-size: 1rem;
        margin-top: 80px;
    }
}

@media (max-width: 480px) {
    .prestijedu-section {
        height: 50vh;
        min-height: 400px;
        background-image: url('./images/logoyatay.jpeg');
        background-size: cover;
        background-position: center;
        justify-content: center;
    }
    
    .prestijedu-section::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.5) 100%);
        z-index: 1;
    }
    
    .prestijedu-section .container {
        position: relative;
        z-index: 2;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .prestijedu-content {
        padding-left: 15px;
        padding-right: 15px;
        text-align: center;
        align-items: center;
        max-width: 100%;
    }
    
    .prestijedu-title {
        font-size: clamp(2rem, 10vw, 3rem);
        margin-bottom: 15px;
    }
    
    .prestijedu-subtitle {
        font-size: clamp(0.9rem, 5vw, 1.1rem);
        margin-bottom: 25px;
    }
    
    .prestijedu-btn {
        padding: 14px 30px;
        font-size: 0.9rem;
        margin-top: 80px;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    min-height: 450px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Service Card Background Images */
.service-card:nth-child(1) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url('./images/languageEducation.webp');
    color: white;
}

.service-card:nth-child(2) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url('./images/abroadEducation.webp');
    color: white;
}

.service-card:nth-child(3) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url('./images/educationHelp.webp');
    color: white;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.premium {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(255, 215, 0, 0.6);
}

.service-card.premium::after {
    content: 'ÖNERILEN';
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #333;
    padding: 8px 40px;
    font-size: 12px;
    font-weight: bold;
    transform: rotate(45deg);
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
    z-index: 10;
    pointer-events: auto;
}



.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.service-card:hover::before {
    opacity: 0.8;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}



.service-icon svg {
    width: 35px;
    height: 35px;
    color: white;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 35px;
    color: white;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(180deg) scale(1.1);
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.service-card p {
    color: white;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 15px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    text-align: left;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: white;
    opacity: 0.95;
    font-size: 14px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 16px;
}



.service-btn {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.service-btn:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    text-shadow: none;
}



.premium-btn {
    background: linear-gradient(45deg, #ffd700, #ffed4e) !important;
    color: #333 !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.premium-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4) !important;
}

/* Contact Section Styles */
.contact-section {
    background: #f8fafc;
    padding: 120px 0;
    position: relative;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

.contact-section .section-header {
    text-align: center;
    margin-bottom: 80px;
    color: #334155;
}

.contact-section .section-title {
    color: #1e293b;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.contact-section .section-subtitle {
    color: #64748b;
    font-size: 1.2rem;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: #334155;
    margin: 0 auto;
    border-radius: 2px;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
    width: 100%;
    max-width: none;
}

.contact-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: #ffffff;
    border-radius: 20px;
    padding: 50px;
    border: 1px solid rgba(203, 213, 225, 0.3);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
}

.contact-hero-text h3 {
    color: #1e293b;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.contact-hero-text p {
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.7;
}

.contact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.stat-item {
    text-align: center;
    background: #f8fafc;
    padding: 25px 15px;
    border-radius: 15px;
    border: 1px solid rgba(203, 213, 225, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    color: #334155;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
    max-width: none;
}

.contact-card {
    background: #ffffff;
    padding: 28px 24px;
    border-radius: 16px;
    border: 1px solid rgba(203, 213, 225, 0.3);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e2e8f0 0%, #cbd5e0 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border-color: rgba(148, 163, 184, 0.4);
}

.contact-card.primary {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    border: 1px solid #475569;
}

.contact-card.primary::before {
    background: linear-gradient(90deg, #60a5fa 0%, #3b82f6 100%);
}

.contact-card.primary:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(30, 41, 59, 0.25);
}

.contact-card.premium {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
    border: 1px solid #10b981;
}

.contact-card.premium::before {
    background: linear-gradient(90deg, #34d399 0%, #10b981 100%);
}

.contact-card.premium:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(5, 150, 105, 0.25);
}

.contact-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(203, 213, 225, 0.4);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.contact-card.primary .contact-icon {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-card.premium .contact-icon {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-card:hover .contact-icon {
    transform: scale(1.08) rotate(5deg);
}

.contact-icon i {
    font-size: 26px;
    color: #475569;
    transition: all 0.3s ease;
}

.contact-card.primary .contact-icon i {
    color: #ffffff;
}

.contact-card.premium .contact-icon i {
    color: #ffffff;
}

.contact-info {
    text-align: center;
    margin-bottom: 25px;
}

.contact-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #334155;
}

.contact-card.primary .contact-info h3,
.contact-card.premium .contact-info h3 {
    color: white;
}

.contact-value {
    font-size: 1rem;
    font-weight: 500;
    color: #475569;
    margin-bottom: 8px;
}

.contact-card.primary .contact-value,
.contact-card.premium .contact-value {
    color: rgba(255, 255, 255, 0.95);
}

.contact-detail {
    font-size: 0.85rem;
    color: #64748b;
    font-style: italic;
}

.contact-card.primary .contact-detail,
.contact-card.premium .contact-detail {
    color: rgba(255, 255, 255, 0.8);
}

.contact-action {
    text-align: center;
}

.contact-btn {
    display: inline-block;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 1px solid #cbd5e0;
    color: #475569;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.contact-btn:hover {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
    border-color: #94a3b8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-card.primary .contact-btn {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.contact-card.primary .contact-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.contact-card.premium .contact-btn {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.contact-card.premium .contact-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.contact-cta {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    border: 1px solid rgba(203, 213, 225, 0.2);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
}

.cta-content h3 {
    color: #1e293b;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.cta-content p {
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button.premium {
    background: #1e293b;
    color: white;
    border: none;
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.cta-button.premium:hover {
    transform: translateY(-2px);
    background: #0f172a;
    box-shadow: 0 8px 25px rgba(30, 41, 59, 0.3);
}



/* Responsive Design */
@media (min-width: 600px) {
    .contact-info {
        grid-template-columns: repeat(2, 1fr) !important;
        max-width: 800px;
        margin: 0 auto;
    }
}

@media (min-width: 900px) {
    .contact-info {
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }

    .header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
        padding: 0;
    }

    .navigation {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        z-index: 999;
        padding-top: 100px;
    }
    
    .navigation.active {
        display: block;
    }

    .navigation ul {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    .navigation a {
        font-size: 20px;
        font-weight: 600;
        color: #333;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 1000;
    }

    .hero {
        position: relative;
    }

    .hero::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1;
        pointer-events: none;
    }


    .hero-text-overlay {
        left: 20px;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        max-width: calc(100% - 40px);
        text-align: center;
    }

    .hero-name {
        font-size: clamp(3.5rem, 8vw, 4rem);
        margin-bottom: 10px;
    }

    .hero-title {
        font-size: clamp(1.2rem, 4vw, 1.8rem);
        text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
        margin-left: 0;
    }
    
    .hero-image {
        width: 100%;
        height: 100vh;
        position: relative;
    }
    
    .profile-image {
        width: 100%;
        height: 100vh;
        object-fit: cover;
        object-position: center top;
    }
    
    /* Timeline Mobile */
    .career-timeline {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 50px;
    }
    
    .timeline::before {
        left: 30px;
        transform: none;
    }
    
    .timeline-item {
        margin-bottom: 40px;
    }
    
    .timeline-item::before {
        left: 21px !important;
        right: auto !important;
    }
    
    .timeline-item.left .timeline-content,
    .timeline-item.right .timeline-content {
        margin-left: 70px;
        margin-right: 0;
        text-align: left;
    }
    
    .timeline-item.left .timeline-content::before,
    .timeline-item.right .timeline-content::before {
        left: -24px;
        right: auto;
        border-right-color: #ffffff;
        border-left-color: transparent;
    }
    
    .timeline-content {
        padding: 25px 20px;
    }
    
    .timeline-content h3 {
        font-size: 1.3rem;
    }
    
    .timeline-content p {
        font-size: 15px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .service-card {
        padding: 30px 20px;
        min-height: 400px;
    }
    
    .service-card.premium {
        transform: none;
        border: 2px solid rgba(255, 215, 0, 0.6);
    }
    
    .service-card.premium::after {
        top: 10px;
        right: -20px;
        padding: 5px 25px;
        font-size: 10px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .service-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .service-price {
        font-size: 1.8rem;
    }
    
    /* Contact Section Mobile */
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-section .section-title {
        font-size: 2.2rem;
    }
    
    .contact-section .section-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-hero {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 30px;
    }
    
    .contact-hero-text h3 {
        font-size: 2rem;
    }
    
    .contact-hero-text p {
        font-size: 1.1rem;
    }
    
    .contact-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-item {
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
@media (max-width: 599px) {
    .contact-info {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .contact-card {
        padding: 24px 20px;
    }
}
    
    .contact-cta {
        padding: 40px 25px;
    }
    
    .cta-content h3 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-button.premium {
        padding: 16px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .navigation ul {
        flex-wrap: wrap;
        gap: 15px;
    }

    .navigation a {
        font-size: 18px;
    }
    
    .hero::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
        pointer-events: none;
    }

    .hero-text-overlay {
        z-index: 2;
    }
    
    .hero-text-overlay {
        left: 15px;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        max-width: calc(100% - 30px);
        text-align: center;
    }
    
    .hero-name {
        font-size: clamp(3.5rem, 8vw, 3rem);
        margin-bottom: 8px;
        line-height: 1.1;
    }
    
    .hero-title {
        font-size: clamp(1rem, 4vw, 1.4rem);
        margin-left: 0;
    }
    
    .header {
        padding: 12px 15px;
    }
    
    .logo-text h2 {
        font-size: 16px;
    }
    
    .logo-text p {
        font-size: 11px;
    }
    
    .mobile-menu-toggle span {
        width: 22px;
        height: 2px;
    }
    
    /* Contact Section 480px */
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-section .section-title {
        font-size: 1.8rem;
    }
    
    .contact-hero {
        padding: 30px 20px;
    }
    
    .contact-hero-text h3 {
        font-size: 1.6rem;
    }
    
    .contact-hero-text p {
        font-size: 1rem;
    }
    
    .contact-card {
        padding: 30px 20px;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-icon i {
        font-size: 26px;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-button.premium {
        padding: 14px 25px;
        font-size: 0.9rem;
    }
}

/* Scroll Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.animate {
    opacity: 1;
    transform: translateY(0);
}

.slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.slide-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.slide-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s ease;
}

.scale-in.animate {
    opacity: 1;
    transform: scale(1);
}

.stagger-animation {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.stagger-animation.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Animation delays for staggered effects */
.stagger-animation:nth-child(1) {
    transition-delay: 0.1s;
}

.stagger-animation:nth-child(2) {
    transition-delay: 0.2s;
}

.stagger-animation:nth-child(3) {
    transition-delay: 0.3s;
}

.stagger-animation:nth-child(4) {
    transition-delay: 0.4s;
}

.stagger-animation:nth-child(5) {
    transition-delay: 0.5s;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}


/* Hero loading animation */
.hero-name,
.hero-title {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

body.loaded .hero-name,
body.loaded .hero-title {
    opacity: 1;
    transform: translateY(0);
}

/* Service card hover animations */
.service-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card .service-icon {
    transition: all 0.3s ease;
}

/* Contact card hover animations */
.contact-icon {
    transition: all 0.3s ease;
}

/* Timeline smooth animations */
.timeline-item {
    opacity: 0;
    transition: all 0.8s ease;
}

.timeline-item.left {
    transform: translateX(-50px);
}

.timeline-item.right {
    transform: translateX(50px);
}

.timeline-item.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Intersection Observer support check */
@supports not ((-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px))) {
    .header.scrolled {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: none;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .fade-in,
    .slide-left,
    .slide-right,
    .scale-in,
    .stagger-animation {
        opacity: 1;
        transform: none;
    }
}