/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Modern font stack: Inter, Helvetica, Arial */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background-image: url('./Asset/Header Text.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #000000;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Styles */
.header {
    position: relative;
    background-color: transparent;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    max-width: none;
    margin: 0 2rem;
    position: relative;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    margin-left: 0;
}

.logo-img {
    height: 220px;
    width: 220px;
    object-fit: contain;
    display: block;
}

/* Navigation Right Side */
.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* Button Styles */
.btn-outline {
    background: transparent;
    border: 1px solid #000000;
    color: #000000;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    font-family: inherit;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-outline:hover {
    background-color: #000000;
    color: #ffffff;
    transform: translateY(-1px);
}

.btn-primary {
    background-color: #87CEEB;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    font-family: inherit;
    margin-top: 2rem;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    background-color: #4682B4;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(135, 206, 235, 0.3);
}

/* Hamburger Menu Toggle */
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background-color: #000000;
    transition: all 0.3s ease;
}

/* Full-Screen Overlay Menu */
.overlay-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(240, 240, 240, 0.95);
    backdrop-filter: blur(10px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay-menu.active {
    opacity: 1;
    visibility: visible;
}

/* Background text */
.menu-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.background-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
    letter-spacing: 0.1em;
    z-index: 1;
}

/* Close button */
.close-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    z-index: 3;
    transition: transform 0.3s ease;
}

.close-btn:hover {
    transform: scale(1.1);
}

.close-icon {
    display: block;
    font-weight: 300;
}

/* Main menu content */
.menu-content {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b69 100%);
    border-radius: 20px;
    padding: 4rem;
    max-width: 90%;
    width: 1000px;
    max-height: 80vh;
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    margin: auto;
}

/* Left Column - Navigation */
.menu-left {
    display: flex;
    flex-direction: column;
}

.menu-heading {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.menu-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 400;
    transition: all 0.3s ease;
    display: block;
    padding: 0.5rem 0;
}

.menu-link:hover {
    color: #87CEEB;
    transform: translateX(10px);
}

/* Right Column - Contact Info */
.menu-right {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-heading {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.arrow {
    font-size: 1rem;
    color: #87CEEB;
}

.contact-info {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 400;
    margin: 0;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icon {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #87CEEB;
    border-color: #87CEEB;
    transform: scale(1.1);
}

/* Start A Project Button */
.start-project-btn {
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    font-family: inherit;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.start-project-btn:hover {
    background-color: #ffffff;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* Main Content */
.main-content {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Hero Section */
.hero-section {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0;
    padding-top: 0;
    min-height: 100vh;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    margin-top: 2rem;
}

/* Two-tone heading */
.hero-heading {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    margin-top: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.hero-heading:hover {
    transform: scale(1.02);
}

.text-black {
    color: #000000;
}

.text-gradient {
    background: linear-gradient(135deg, #000000 0%, #666666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hidden text that appears on hover */
.hidden-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.1rem;
    font-weight: 400;
    color: #333333;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem 2.5rem;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    max-width: 500px;
    text-align: center;
    line-height: 1.5;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

.hero-heading:hover .hidden-text {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Subheading */
.hero-subheading {
    font-size: 1.2rem;
    color: #333333;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto 1rem;
    line-height: 1.7;
}

/* Clients Section */
.clients-section {
    padding: 3rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.clients-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.client-logo {
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.client-logo:hover {
    opacity: 1;
}

.logo-placeholder {
    font-size: 0.9rem;
    color: #666666;
    font-weight: 500;
    /* Replace with actual client logos */
}


/* Left Side Scroll Indicator */
.scroll-indicator {
    position: fixed;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.scroll-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 0.9rem;
    color: #666666;
    font-weight: 400;
    letter-spacing: 0.1em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .header .container {
        padding: 1rem 0;
        margin: 0 1rem;
    }
    
    .logo-img {
        height: 30px;
    }
    
    .nav-right {
        gap: 1rem;
    }
    
    .btn-outline {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .hero-heading {
        font-size: 2.5rem;
    }
    
    .hero-subheading {
        font-size: 1rem;
    }
    
    .clients-grid {
        gap: 2rem;
    }
    
    .scroll-indicator {
        left: 1rem;
    }
    
    .scroll-text {
        font-size: 0.8rem;
    }
    
    /* Overlay menu responsive */
    .menu-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
        max-width: 95%;
    }
    
    .background-text {
        font-size: 8rem;
    }
    
    .menu-link {
        font-size: 1.5rem;
    }
    
    .close-btn {
        top: 1rem;
        right: 1rem;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: 2rem;
    }
    
    .hero-subheading {
        font-size: 0.9rem;
    }
    
    .clients-grid {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-outline {
        display: none; /* Hide on very small screens */
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
button:focus,
.menu-link:focus {
    outline: 2px solid #000000;
    outline-offset: 2px;
}

/* Services Page Styles */
.services-hero {
    position: relative;
    padding: 6rem 0 4rem;
    text-align: center;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) contrast(1.2);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(30, 30, 60, 0.8) 100%);
    z-index: 2;
}

.services-hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

.services-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #ffffff 0%, #a0a0ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 3rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #87CEEB;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.services-grid-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
    position: relative;
}

.services-grid-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,0,0,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.services-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    min-height: 400px;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.card-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.1);
    transition: all 0.4s ease;
}

.service-card:hover .card-bg-img {
    filter: brightness(0.6) contrast(1.2);
    transform: scale(1.05);
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    backdrop-filter: blur(10px);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-description {
    font-size: 1rem;
    color: #4a4a6e;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    color: #2c2c54;
    font-size: 0.9rem;
    padding: 0.4rem 0;
    position: relative;
    padding-left: 1.8rem;
    transition: all 0.3s ease;
}

.service-features li:hover {
    color: #87CEEB;
    transform: translateX(5px);
}

.service-features li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: #87CEEB;
    font-weight: bold;
    font-size: 1rem;
}

/* Special styling for cards without background images */
.service-card:not(.marketing-card):not(.content-card):not(.social-card):not(.webdev-card) {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 255, 0.95) 100%);
    border: 2px solid transparent;
    background-clip: padding-box;
}

.service-card:not(.marketing-card):not(.content-card):not(.social-card):not(.webdev-card)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #87CEEB, #B0E0E6, #E0F6FF);
    border-radius: 20px;
    padding: 2px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    color: white;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #87CEEB 0%, #4682B4 100%);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    box-shadow: 0 8px 25px rgba(135, 206, 235, 0.3);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(135, 206, 235, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    backdrop-filter: blur(10px);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
}

/* Animation for page load */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeIn 0.8s ease-out;
}

.service-card {
    animation: fadeIn 0.8s ease-out;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }
.service-card:nth-child(7) { animation-delay: 0.7s; }

/* Work Page Styles */
.work-hero {
    padding: 8rem 0 4rem;
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
}

.work-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.work-title {
    font-size: 4rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.work-subtitle {
    font-size: 2rem;
    font-weight: 500;
    color: #87CEEB;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.work-description {
    font-size: 1.2rem;
    color: #4a4a6e;
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.work-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Agency Page Styles */
.agency-hero {
    padding: 8rem 0 4rem;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
}

.agency-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.agency-title {
    font-size: 4rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.agency-subtitle {
    font-size: 2rem;
    font-weight: 500;
    color: #87CEEB;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Scroll Animation Base */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* About Section - Card Layout */
.about-section {
    padding: 6rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 49%, rgba(135, 206, 235, 0.05) 50%, transparent 51%);
    background-size: 20px 20px;
    pointer-events: none;
}

.mission-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
    position: relative;
}

.team-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
    position: relative;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content, .mission-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.about-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(135, 206, 235, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(135, 206, 235, 0.1), transparent);
    transition: left 0.6s ease;
}

.about-card:hover::before {
    left: 100%;
}

.about-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(135, 206, 235, 0.2);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #87CEEB 0%, #4682B4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.about-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-icon .icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 1rem;
    text-align: center;
}

.card-text {
    font-size: 1rem;
    color: #4a4a6e;
    line-height: 1.6;
    text-align: center;
}

/* Mission Section - Feature Cards Layout */
.mission-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.mission-intro-text {
    font-size: 1.3rem;
    color: #4a4a6e;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

.mission-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(135, 206, 235, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #87CEEB, #4682B4);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(135, 206, 235, 0.2);
}

.feature-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #87CEEB 0%, #4682B4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon .icon {
    font-size: 3rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.feature-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.feature-description {
    font-size: 1rem;
    color: #4a4a6e;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.feature-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.2) 0%, rgba(70, 130, 180, 0.2) 100%);
    border-radius: 15px;
    border: 2px solid rgba(135, 206, 235, 0.4);
    box-shadow: 0 4px 15px rgba(135, 206, 235, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-label {
    font-size: 0.9rem;
    color: #4a4a6e;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.mission-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(135, 206, 235, 0.2);
}

.cta-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.1rem;
    color: #4a4a6e;
    margin-bottom: 2rem;
}

/* Journey Timeline Section */
.journey-section {
    padding: 6rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.journey-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 49%, rgba(135, 206, 235, 0.03) 50%, transparent 51%);
    background-size: 30px 30px;
    pointer-events: none;
}

.journey-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.timeline-container {
    position: relative;
    margin-top: 4rem;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #87CEEB, #4682B4, #87CEEB);
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(135, 206, 235, 0.3);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    flex: 0 0 120px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #87CEEB;
    background: linear-gradient(135deg, #87CEEB 0%, #4682B4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 1rem;
    border-radius: 10px;
    background-color: rgba(135, 206, 235, 0.1);
    border: 2px solid rgba(135, 206, 235, 0.2);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-year {
    transform: scale(1.05);
    background-color: rgba(135, 206, 235, 0.2);
    box-shadow: 0 8px 25px rgba(135, 206, 235, 0.2);
}

.timeline-marker {
    position: relative;
    z-index: 2;
    margin: 0 2rem;
}

.marker-dot {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #87CEEB 0%, #4682B4 100%);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.9), 0 0 20px rgba(135, 206, 235, 0.4);
    transition: all 0.3s ease;
}

.marker-dot.future {
    background: linear-gradient(135deg, #4682B4 0%, #1a1a2e 100%);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.9), 0 0 20px rgba(70, 130, 180, 0.4);
}

.timeline-item:hover .marker-dot {
    transform: scale(1.3);
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.9), 0 0 30px rgba(135, 206, 235, 0.6);
}

.timeline-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(135, 206, 235, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #87CEEB, #4682B4);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.timeline-item:hover .timeline-content::before {
    transform: scaleX(1);
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 25px 60px rgba(135, 206, 235, 0.2);
}

.timeline-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.timeline-description {
    font-size: 1rem;
    color: #4a4a6e;
    line-height: 1.7;
}

/* Work Page Styles */
.work-hero {
    padding: 8rem 0 4rem;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
}

.work-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.work-title {
    font-size: 4rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.work-subtitle {
    font-size: 1.5rem;
    color: #4a4a6e;
    font-weight: 400;
}

/* Coming Soon Section */
.coming-soon-section {
    padding: 6rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.coming-soon-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 49%, rgba(135, 206, 235, 0.05) 50%, transparent 51%);
    background-size: 20px 20px;
    pointer-events: none;
}

.coming-soon-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.coming-soon-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #87CEEB 0%, #4682B4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
}

.coming-soon-icon .icon {
    font-size: 4rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.coming-soon-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coming-soon-text {
    font-size: 1.2rem;
    color: #4a4a6e;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.coming-soon-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(135, 206, 235, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(135, 206, 235, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.feature-text {
    font-size: 1rem;
    color: #4a4a6e;
    font-weight: 500;
    text-align: center;
}

/* What We Do Section */
.what-we-do-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(135, 206, 235, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #87CEEB, #4682B4);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(135, 206, 235, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #87CEEB 0%, #4682B4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon .icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1rem;
    color: #4a4a6e;
    line-height: 1.6;
}

/* Interviews Page Styles */
.interviews-hero {
    padding: 8rem 0 4rem;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
}

.interviews-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.interviews-title {
    font-size: 4rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.interviews-subtitle {
    font-size: 1.5rem;
    color: #4a4a6e;
    font-weight: 400;
}

/* Interviews Coming Soon Section */
.interviews-coming-soon {
    padding: 6rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.interviews-coming-soon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 49%, rgba(135, 206, 235, 0.05) 50%, transparent 51%);
    background-size: 20px 20px;
    pointer-events: none;
}

.interview-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.type-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(135, 206, 235, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #87CEEB, #4682B4);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.type-card:hover::before {
    transform: scaleX(1);
}

.type-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(135, 206, 235, 0.2);
}

.type-icon {
    font-size: 3rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    margin-bottom: 1rem;
    display: block;
}

.type-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.type-description {
    font-size: 1rem;
    color: #4a4a6e;
    line-height: 1.6;
}

/* What to Expect Section */
.expect-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
}

.expect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.expect-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(135, 206, 235, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.expect-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #87CEEB, #4682B4);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.expect-card:hover::before {
    transform: scaleX(1);
}

.expect-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(135, 206, 235, 0.2);
}

.expect-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #87CEEB 0%, #4682B4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.expect-card:hover .expect-icon {
    transform: scale(1.1) rotate(5deg);
}

.expect-icon .icon {
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.expect-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.expect-description {
    font-size: 0.95rem;
    color: #4a4a6e;
    line-height: 1.6;
}

/* Featured Topics Section */
.topics-section {
    padding: 6rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.topics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 49%, rgba(135, 206, 235, 0.03) 50%, transparent 51%);
    background-size: 30px 30px;
    pointer-events: none;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.topic-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(135, 206, 235, 0.2);
    transition: all 0.3s ease;
}

.topic-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(135, 206, 235, 0.2);
}

.topic-icon {
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.topic-text {
    font-size: 0.9rem;
    color: #4a4a6e;
    font-weight: 500;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* Enhanced Team Section */
.team-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #87CEEB, #4682B4);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.team-card:hover::before {
    transform: scaleX(1);
}

.team-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(135, 206, 235, 0.2);
}

.team-image {
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.team-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #87CEEB;
    box-shadow: 0 10px 30px rgba(135, 206, 235, 0.3);
    transition: all 0.3s ease;
}

.team-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, #87CEEB 0%, #4682B4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(135, 206, 235, 0.3);
    transition: all 0.3s ease;
}

.team-card:hover .team-img,
.team-card:hover .team-placeholder {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(135, 206, 235, 0.4);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(135, 206, 235, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-link {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.placeholder-icon {
    font-size: 4rem;
    color: white;
}

.team-name {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.team-role {
    font-size: 1.1rem;
    color: #87CEEB;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.team-description {
    font-size: 1rem;
    color: #4a4a6e;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 1.5rem;
}

.team-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.skill-tag {
    background: linear-gradient(135deg, #87CEEB 0%, #4682B4 100%);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.skill-tag:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(135, 206, 235, 0.3);
}