* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ffffff;
    --secondary-color: #9ca3af;
    --background-color: #000000;
    --surface-color: #1f2937;
    --border-color: #374151;
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


html,
body {
    width: 100%;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--background-color);
    color: var(--text-primary);
    line-height: 1.6;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Animations */
@keyframes float-slow {
    0%,
    100% {
        transform: translateY(0px) rotate(45deg);
    }
    50% {
        transform: translateY(-20px) rotate(45deg);
    }
}

@keyframes float-medium {
    0%,
    100% {
        transform: translateY(0px) rotate(12deg);
    }
    50% {
        transform: translateY(-15px) rotate(12deg);
    }
}

@keyframes float-fast {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes matrix-fall {
    0% {
        transform: translateY(-100vh);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes pulse-slow {
    0%,
    100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes text-reveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in-up {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Particles Background */
.particles-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
}

.particle-1 {
    top: 25%;
    left: 25%;
    width: 8px;
    height: 8px;
    transform: rotate(45deg);
    animation: float-slow 6s ease-in-out infinite;
}

.particle-2 {
    top: 33%;
    right: 25%;
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.05);
    transform: rotate(12deg);
    animation: float-medium 4s ease-in-out infinite;
}

.particle-3 {
    bottom: 25%;
    left: 33%;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    animation: float-fast 3s ease-in-out infinite;
}

.particle-4 {
    top: 66%;
    right: 33%;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    transform: rotate(45deg);
    animation: float-slow 5s ease-in-out infinite;
}

.matrix-line {
    position: absolute;
    top: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: matrix-fall 8s linear infinite;
}

.matrix-1 {
    left: 16.66%;
    animation-delay: 0s;
}

.matrix-2 {
    left: 33.33%;
    animation-delay: 2s;
    opacity: 0.5;
}

.matrix-3 {
    left: 50%;
    animation-delay: 1s;
    opacity: 0.8;
}

.matrix-4 {
    left: 66.66%;
    animation-delay: 3s;
    opacity: 0.6;
}

.matrix-5 {
    left: 83.33%;
    animation-delay: 1.5s;
    opacity: 0.4;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo img {
  height: 40px;
  width: auto;
}

.logo a {
    text-decoration: none;
    color: inherit;
}

.logo:hover .logo-main {
    color: var(--text-secondary);
}

.logo:hover .logo-sub {
    color: var(--text-primary);
}

.logo-main {
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.logo-sub {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    position: relative;
    color: var(--text-primary);
    text-decoration: none;
    padding: 0.5rem 0.25rem;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-secondary);
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--text-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.mobile-menu-btn:hover {
    transform: scale(1.1);
}

.mobile-menu {
    display: none;
    margin-top: 1rem;
    background: #000;
    padding: 20px;
    border-radius: 0 0 8px 8px;
    border-top: 1px solid var(--border-color);
    animation: slide-down 0.3s ease;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--text-secondary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.375rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: scale(1);
}

.btn:hover {
    transform: scale(1.05);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--background-color);
}

.btn-primary:hover {
    background: var(--text-secondary);
    box-shadow: 0 20px 25px -5px rgba(255, 255, 255, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    background: var(--surface-color);
    border-color: var(--text-primary);
    box-shadow: 0 10px 15px -3px rgba(255, 255, 255, 0.1);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1f2937 0%, #000000 50%, #1f2937 100%);
}

.hero-orb {
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    filter: blur(3rem);
    opacity: 0.5;
    animation: pulse-slow 4s ease-in-out infinite;
}

.hero-orb-1 {
    top: 25%;
    left: 25%;
    background: rgba(255, 255, 255, 0.05);
}

.hero-orb-2 {
    bottom: 25%;
    right: 25%;
    background: rgba(156, 163, 175, 0.1);
    animation-delay: 1s;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1.5rem;
    max-width: 72rem;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 6rem);
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-line {
    display: block;
    background: linear-gradient(to right, #ffffff, #d1d5db);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: text-reveal 1s ease forwards;
    opacity: 0;
}

.hero-line-1 {
    animation-delay: 0s;
}

.hero-line-2 {
    color: var(--text-secondary);
    animation-delay: 0.2s;
    transition: color 0.5s ease;
}

.hero-line-2:hover {
    color: var(--text-primary);
}

.hero-line-3 {
    animation-delay: 0.4s;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    animation: fade-in-up 1s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    animation: fade-in-up 1s ease forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

/* Projects Hero */
.projects-hero {
    padding: 6rem 0 3rem;
    text-align: center;
    background: rgba(31, 41, 55, 0.3);
}

.projects-hero-content {
    max-width: 48rem;
    margin: 0 auto;
}

.projects-controls {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
    align-items: center;
}

.search-container {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--text-primary);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

.filter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--background-color);
    border-color: var(--primary-color);
}

/* All Projects Section */
.all-projects-section {
    padding: 3rem 0;
}

.projects-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(31, 41, 55, 0.3);
    border-radius: 1rem;
}

.projects-stats .stat-item {
    text-align: center;
}

.projects-stats .stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.projects-stats .stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Stats Section */
.stats {
    padding: 3rem 0;
    background: rgba(31, 41, 55, 0.5);
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.stat-item {
    text-align: center;
    transition: all 0.7s ease;
    opacity: 0;
    transform: translateY(40px);
}

.stat-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    color: var(--text-primary);
    transform: scale(1.1);
}

.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: bold;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #ffffff, #d1d5db);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
}

.stat-label {
    color: var(--text-secondary);
    font-size: clamp(0.875rem, 2vw, 1rem);
    transition: color 0.3s ease;
}

.stat-item:hover .stat-label {
    color: var(--text-secondary);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease;
}

.section-header.animate {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: bold;
    margin-bottom: 1rem;
}

.text-gray {
    color: var(--text-secondary);
    transition: color 0.5s ease;
}

.text-gray:hover {
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 48rem;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 3rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.service-card {
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 1rem;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--text-muted);
    box-shadow: 0 25px 50px -12px rgba(255, 255, 255, 0.05);
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: shimmer 2s ease-in-out infinite;
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    color: var(--text-secondary);
}

.service-title {
    font-size: 1rem;
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: var(--text-secondary);
}

.service-description {
    color: var(--text-secondary);
    line-height: 1.6;
    flex-grow: 1;
    transition: color 0.3s ease;
    font-size: 0.875rem;
}

.service-card:hover .service-description {
    color: var(--text-secondary);
}

.service-arrow {
    margin-top: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: var(--text-primary);
}

.service-card:hover .service-arrow {
    opacity: 1;
    animation: float-fast 1s ease-in-out infinite;
}

/* About Section */
.about {
    padding: 3rem 0;
    background: rgba(31, 41, 55, 0.3);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-content {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.7s ease;
}

.about-content.animate {
    opacity: 1;
    transform: translateX(0);
}

.about-text {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.about-text-secondary {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(20px);
}

.about-feature.animate {
    opacity: 1;
    transform: translateY(0);
}

.about-feature:hover {
    background: rgba(55, 65, 81, 0.3);
    transform: translateY(-2px);
}

.about-feature i {
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.about-feature:hover i {
    color: var(--text-secondary);
    transform: scale(1.1);
}

.about-feature span {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.about-feature:hover span {
    color: var(--text-primary);
}

.about-visual {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.7s ease;
    transition-delay: 0.2s;
}

.about-visual.animate {
    opacity: 1;
    transform: translateX(0);
}

.about-card {
    background: linear-gradient(135deg, var(--border-color), var(--surface-color));
    padding: 2rem;
    border-radius: 1rem;
    transition: all 0.5s ease;
}

.about-card:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(255, 255, 255, 0.05);
}

.about-grid-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.about-item {
    background: rgba(0, 0, 0, 0.5);
    padding: 1.5rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.about-item:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.05);
}

.about-item i {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.about-item:hover i {
    transform: scale(1.1);
    color: var(--text-secondary);
}

.about-item h4 {
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.about-item:hover h4 {
    color: var(--text-secondary);
}

.about-item p {
    color: var(--text-muted);
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.about-item:hover p {
    color: var(--text-secondary);
}

/* Projects Section */
.projects {
    padding: 3rem 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.project-card {
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(40px);
}

.project-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.project-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--text-muted);
    box-shadow: 0 25px 50px -12px rgba(255, 255, 255, 0.05);
}

.project-image {
    height: 8rem;
    background: linear-gradient(135deg, var(--border-color), var(--surface-color));
    position: relative;
    overflow: hidden;
}

.project-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
}

.project-card:hover .project-image::before {
    background: rgba(0, 0, 0, 0.1);
}

.project-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: shimmer 2s ease-in-out infinite;
}

.project-card:hover .project-image::after {
    opacity: 1;
}

.project-category {
    position: absolute;
    bottom: 0.5rem;
    left: 1rem;
    background: rgba(31, 41, 55, 0.5);
    color: var(--text-primary);
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    backdrop-filter: blur(4px);
    transition: background 0.3s ease;
}

.project-card:hover .project-category {
    background: rgba(31, 41, 55, 0.5);
}

.project-icon {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: rgba(31, 41, 55, 0.5);
    animation: float-slow 3s ease-in-out infinite;
}

.project-card:hover .project-icon {
    opacity: 1;
}

.project-content {
    padding: 1rem;
}

.project-title {
    font-size: 1.125rem;
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.project-card:hover .project-title {
    color: var(--text-secondary);
}

.project-description {
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
    font-size: 0.875rem;
    line-height: 1.5;
}

.project-card:hover .project-description {
    color: var(--text-secondary);
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.tech-tag {
    background: var(--border-color);
    color: var(--text-secondary);
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    font-size: 0.625rem;
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: var(--text-muted);
    transform: scale(1.05);
}

.project-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.project-duration,
.project-team {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.project-duration::before {
    content: "⏱";
}

.project-team::before {
    content: "👥";
}

.project-link {
    background: none;
    border: none;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0;
    font-size: 0.875rem;
    text-decoration: none;
}

.project-link:hover {
    color: var(--text-secondary);
}

.project-link i {
    transition: transform 0.3s ease;
}

.project-link:hover i {
    transform: translateX(4px);
}

/* Load More */
.load-more-container {
    text-align: center;
    margin-top: 3rem;
}

/* Projects CTA */
.projects-cta {
    padding: 3rem 0;
    background: rgba(31, 41, 55, 0.5);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Section */
.contact {
    padding: 3rem 0;
    background: rgba(31, 41, 55, 0.5);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.7s ease;
}

.contact-info.animate {
    opacity: 1;
    transform: translateX(0);
}

.contact-text {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.contact-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.contact-item:hover {
    background: rgba(55, 65, 81, 0.3);
    transform: translateY(-2px) scale(1.02);
}

.contact-icon {
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.25rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    color: var(--text-primary);
    transform: scale(1.1);
}

.contact-content h4 {
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.contact-item:hover .contact-content h4 {
    color: var(--text-secondary);
}

.contact-content p {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.contact-item:hover .contact-content p {
    color: var(--text-secondary);
}

.contact-form-container {
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateX(40px);
}

.contact-form-container.animate {
    opacity: 1;
    transform: translateX(0);
}

.contact-form-container:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(255, 255, 255, 0.05);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    padding: 0.75rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    border-color: var(--text-muted);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* Footer */
.footer {
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-primary);
    transform: scale(1.05);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.footer-bottom:hover {
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .application-grid {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-content: center;
        align-items: center;
        gap: 3rem;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons a {
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .projects-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-grid-items {
        grid-template-columns: 1fr;
    }

    .projects-controls {
        gap: 1.5rem;
    }

    .filter-container {
        gap: 0.25rem;
    }

    .filter-btn {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .projects-stats {
        grid-template-columns: 1fr;
    }

    .application-grid {
        display: flex;
        flex-direction: column;
        gap: 3rem;
        align-items: start;
    }

    .overview-grid{
        display: flex;
        flex-direction: column;
    }
    .academy-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .filter-container {
        flex-direction: column;
        align-items: center;
    }
}

/* Utility Classes */
.animate {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.animate-delay-1 {
    animation-delay: 0.1s;
}

.animate-delay-2 {
    animation-delay: 0.2s;
}

.animate-delay-3 {
    animation-delay: 0.3s;
}

.animate-delay-4 {
    animation-delay: 0.4s;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* Project Details Page Styles */
.project-hero {
    padding: 6rem 0 3rem;
    background: rgba(31, 41, 55, 0.3);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--text-primary);
}

.breadcrumb i {
    font-size: 0.75rem;
}

.project-hero-content {
    max-width: 48rem;
}

.project-hero-image {
    margin-top: 2rem;
    border-radius: 0.5rem;
    width: 100%;
    max-width: 64rem;
}

.project-category-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
}

.project-title {
    font-size: clamp(2rem, 4vw, 0.6rem);
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #ffffff, #d1d5db);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.project-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
}

.meta-item i {
    color: var(--text-secondary);
}

.project-overview {
    padding: 3rem 0;
}

.overview-grid {
    display: flex;

    gap: 3rem;
    align-items: start;
}

.overview-content h2 {
    margin-bottom: 2rem;
}

.overview-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.challenge-section,
.solution-section {
    margin-bottom: 3rem;
}

.challenge-section h3,
.solution-section h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.challenge-list {
    list-style: none;
    padding: 0;
}

.challenge-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.challenge-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--text-primary);
    font-weight: bold;
}

.solution-section p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 1.5rem;
    width: 12rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(255, 255, 255, 0.1);
}

.stat-card .stat-icon {
    font-size: 2rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.stat-card .stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.tech-stack {
    padding: 3rem 0;
    background: rgba(31, 41, 55, 0.3);
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tech-category {
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.tech-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(255, 255, 255, 0.1);
}

.tech-category h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.tech-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: scale(1.02);
}

.tech-item i {
    font-size: 1.25rem;
    color: var(--text-secondary);
    width: 1.5rem;
    text-align: center;
}

.tech-item span {
    color: var(--text-primary);
    font-weight: 500;
}

.project-gallery {
    padding: 3rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.gallery-item {
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, var(--border-color), var(--surface-color));
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-item.main-image {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px -5px rgba(255, 255, 255, 0.1);
}

.gallery-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-secondary);
    text-align: center;
}

.gallery-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.gallery-placeholder span {
    font-weight: 500;
}

.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.lightbox-overlay img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 0.5rem;
}

.project-results {
    padding: 3rem 0;
    background: rgba(31, 41, 55, 0.3);
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.result-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(31, 41, 55, 0.5);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.result-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(255, 255, 255, 0.1);
}

.result-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.result-content h4 {
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.result-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.testimonial-card {
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(255, 255, 255, 0.1);
}

.testimonial-content .fas.fa-quote-left {
    font-size: 2rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    background: var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

.author-info h4 {
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.related-projects {
    padding: 3rem 0;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-cta {
    padding: 3rem 0;
    background: rgba(31, 41, 55, 0.5);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Careers Page Styles */
.careers-hero {
    padding: 6rem 0 3rem;
    text-align: center;
}

.careers-hero-content {
    max-width: 48rem;
    margin: 0 auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat .stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.hero-stat .stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.why-join {
    padding: 3rem 0;
    background: rgba(31, 41, 55, 0.3);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.benefit-card {
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(255, 255, 255, 0.1);
}

.benefit-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.25rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.benefit-card h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.open-positions {
    padding: 3rem 0;
}

.positions-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--background-color);
    border-color: var(--primary-color);
}

.positions-grid {
    display: grid;
    gap: 1.5rem;
}

.position-card {
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.position-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(255, 255, 255, 0.1);
}

.position-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.position-info h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.position-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.position-type,
.position-location,
.position-level {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
}

.position-salary {
    font-size: 1.125rem;
    font-weight: bold;
    color: var(--text-primary);
}

.position-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.position-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.skill-tag {
    background: var(--border-color);
    color: var(--text-secondary);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: var(--text-muted);
    transform: scale(1.05);
}

.position-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.position-apply-btn,
.position-details-btn {
    flex: 1;
    min-width: 120px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    backdrop-filter: blur(4px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fade-in-up 0.3s ease;
}

.modal-content {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slide-down 0.3s ease;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.application-form {
    padding: 1rem;
}

.file-upload {
    position: relative;
}

.file-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border: 2px dashed var(--border-color);
    border-radius: 0.375rem;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload-label:hover {
    border-color: var(--text-muted);
    background: rgba(0, 0, 0, 0.5);
}

.file-upload-label i {
    font-size: 2rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.file-upload-label span {
    color: var(--text-secondary);
    text-align: center;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.company-culture {
    padding: 3rem 0;
    background: rgba(31, 41, 55, 0.3);
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.culture-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(31, 41, 55, 0.5);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.culture-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(255, 255, 255, 0.1);
}

.culture-image {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.25rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.culture-item:hover .culture-image {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.culture-item h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.culture-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Academy Page Styles */
.academy-hero {
    padding: 6rem 0 3rem;
    text-align: center;
}

.academy-hero-content {
    max-width: 48rem;
    margin: 0 auto;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.hero-feature i {
    color: var(--text-primary);
}

.programs-overview {
    padding: 3rem 0;
    background: rgba(31, 41, 55, 0.3);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.program-card {
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(255, 255, 255, 0.1);
}

.program-card.featured {
    border-color: var(--text-primary);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.program-badge {
    position: absolute;
    top: -0.5rem;
    right: 1rem;
    background: var(--primary-color);
    color: var(--background-color);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.program-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.25rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.program-card:hover .program-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.program-card h3 {
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.program-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
    flex-grow: 1;
}

.program-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.program-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.program-detail i {
    color: var(--text-secondary);
}

.program-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.program-price {
    text-align: center;
    margin-bottom: 1.5rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-primary);
}

.price-period {
    color: var(--text-muted);
    font-size: 0.875rem;
    display: block;
}

.program-apply-btn {
    width: 100%;
    justify-content: center;
}

.why-academy {
    padding: 3rem 0;
}

.academy-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.academy-features {
    display: grid;
    gap: 1.5rem;
}

.academy-feature {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(31, 41, 55, 0.5);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.academy-feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(255, 255, 255, 0.1);
}

.feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-content h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.academy-stats {
    position: sticky;
    top: 2rem;
}

.stats-card {
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stats-card .stat-item {
    text-align: center;
}

.stats-card .stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.stats-card .stat-label {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.success-stories {
    padding: 3rem 0;
    background: rgba(31, 41, 55, 0.3);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.story-card {
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(255, 255, 255, 0.1);
}

.story-quote {
    margin-bottom: 2rem;
}

.story-quote i {
    font-size: 2rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.story-quote p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
    font-size: 1.125rem;
}

.story-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    background: var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

.author-info h4 {
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--text-muted);
    font-size: 0.875rem;
    display: block;
}

.author-program {
    color: var(--text-secondary);
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.academy-application {
    padding: 3rem 0;
}

.application-grid {
    display: flex;
    gap: 3rem;
    align-items: start;
}

.application-info {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.7s ease;
}

.application-info.animate {
    opacity: 1;
    transform: translateX(0);
}

.application-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.application-benefits {
    margin-bottom: 3rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.benefit-item i {
    color: var(--text-primary);
    width: 1rem;
}

.next-cohort {
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
}

.cohort-info h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.cohort-date {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.cohort-spots {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.application-form-container {
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateX(40px);
}

.application-form-container.animate {
    opacity: 1;
    transform: translateX(0);
}

.academy-application-form h3 {
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.5rem;
}

.checkbox-group {
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    color: var(--text-secondary);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 1.25rem;
    height: 1.25rem;
    border: 1px solid var(--border-color);
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: "✓";
    color: var(--background-color);
    font-size: 0.875rem;
    font-weight: bold;
}

.checkbox-label a {
    color: var(--text-primary);
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: var(--text-secondary);
}

.form-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: 1rem;
    font-style: italic;
}

.academy-faq {
    padding: 3rem 0;
    background: rgba(31, 41, 55, 0.3);
}

.faq-grid {
    display: grid;
    gap: 1rem;
    max-width: 48rem;
    margin: 0 auto;
}

.faq-item {
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px -3px rgba(255, 255, 255, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(55, 65, 81, 0.3);
}

.faq-question h4 {
    color: var(--text-primary);
    font-size: 1.125rem;
}

.faq-question i {
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

