* {
    box-sizing: border-box;
}

html, body {
    background-color: #000000;
    color: #e2e8f0;
    scroll-behavior: smooth;
}

.hero-background {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    margin: 16px 16px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.732);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 2;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    color: white;
    position: relative;
    z-index: 3;
}

/* Typing Animation Styles */
.typing-container {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    min-height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8),
                 0 1px 4px rgba(0, 0, 0, 0.6);
}

.typing-text {
    font-size: 2.5rem;
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 
                 0 2px 8px rgba(0, 0, 0, 0.6),
                 0 1px 4px rgba(0, 0, 0, 0.8);
    color: white;
}

.cursor {
    font-weight: 400;
    animation: blink 1s infinite;
    color: #66D68A;
    margin-left: 2px;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 400;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8),
                 0 1px 6px rgba(0, 0, 0, 0.6);
}

.hero-cta {
    display: flex;
    justify-content: center;
}

.cta-button {
    background: white;
    color: #2E8B57;
    font-weight: 600;
    font-size: 1.125rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    background: #F8FAFC;
}

.cta-button:active {
    transform: translateY(0);
}

.cta-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.cta-button:hover .cta-icon {
    transform: translateX(4px);
}

/* Responsive Hero Styles */
@media (max-width: 768px) {
    .hero-background {
        min-height: 400px;
        border-radius: 16px;
        margin: 8px 8px;
    }
    
    .hero-overlay {
        padding: 1.5rem;
    }
    
    .typing-container {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
        min-height: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
}

@media (max-width: 640px) {
    .hero-background {
        min-height: 350px;
        border-radius: 24px;
        margin: 8px 8px;
    }
    
    .typing-container {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        min-height: 1.75rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .cta-button {
        font-size: 0.95rem;
        padding: 0.75rem 1.25rem;
    }
}

/* Hero Section Animation */
@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: heroFadeIn 1s ease-out;
}

/* Partners Section Styles */
.partners-section {
    /* min-height: 100vh; */
    background: linear-gradient(180deg, #000000 10%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.partners-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
}

.partners-content {
    max-width: 800px;
}

.partners-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #50C878, #2E8B57);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(80, 200, 120, 0.3);
}

.partners-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: #f1f5f9;
    margin-bottom: 2rem;
}

.partners-text {
    margin-bottom: 3rem;
}

.partners-lead {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.partners-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #94a3b8;
    margin-bottom: 1rem;
}

.partners-description strong {
    color: #f1f5f9;
    font-weight: 700;
}

/* Stats Section */
.partners-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(71, 85, 105, 0.3);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    background: rgba(30, 41, 59, 0.7);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #50C878, #2E8B57);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: #f1f5f9;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: #cbd5e1;
    font-weight: 600;
}

/* CTA Buttons */
.partners-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.partners-cta-primary,
.partners-cta-secondary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.partners-cta-primary {
    background: linear-gradient(135deg, #50C878, #2E8B57);
    color: white;
    box-shadow: 0 4px 20px rgba(80, 200, 120, 0.3);
}

.partners-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(80, 200, 120, 0.4);
}

.partners-cta-secondary {
    background: white;
    color: #1e293b;
    border: 2px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.partners-cta-secondary:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

/* Visual Enhancement - Floating Cards */
.partners-visual {
    position: relative;
    width: 300px;
    height: 400px;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: #1e293b;
    animation: float 6s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.25rem;
    color: #50C878;
}

.card-1 {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.card-2 {
    top: 80px;
    right: 0;
    animation-delay: 1.5s;
}

.card-3 {
    top: 200px;
    left: 20px;
    animation-delay: 3s;
}

.card-4 {
    bottom: 0;
    right: 20px;
    animation-delay: 4.5s;
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .partners-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .partners-visual {
        margin: 0 auto;
        transform: scale(0.8);
    }
}

@media (max-width: 768px) {
    .partners-section {
        padding: 2rem 0;
    }
    
    .partners-container {
        padding: 0 1rem;
        min-height: auto;
    }
    
    .partners-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .partners-lead {
        font-size: 1.25rem;
    }
    
    .partners-description {
        font-size: 1rem;
    }
    
    .partners-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .partners-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .partners-cta-primary,
    .partners-cta-secondary {
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }
    
    .partners-visual {
        display: none;
    }
}

@media (max-width: 640px) {
    .partners-title {
        font-size: 2rem;
    }
    
    .partners-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
}

/* Why Work With Us Section */
.why-section {
    background: linear-gradient(180deg, #1e293b 10%, #000 100%);
    /* padding: 5rem 0; */
    position: relative;
}

.why-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.why-header {
    text-align: center;
    margin-bottom: 4rem;
}

.why-title {
    font-size: 3rem;
    font-weight: 900;
    color: #f1f5f9;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.why-subtitle {
    font-size: 1.25rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.why-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.why-column {
    background: rgba(30, 41, 59, 0.3);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(71, 85, 105, 0.3);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.why-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #50C878, #2E8B57);
}

.why-column:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(30, 41, 59, 0.5);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #50C878, #2E8B57);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(80, 200, 120, 0.3);
}

.why-column-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.why-column-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 2rem;
}

.why-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #94a3b8;
    padding: 0.5rem 0;
}

.highlight-item i {
    color: #22c55e;
    font-size: 1rem;
    flex-shrink: 0;
}

.highlight-item span {
    font-weight: 500;
}

/* Bottom CTA */
.why-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(30, 41, 59, 0.3);
    border-radius: 24px;
    border: 1px solid rgba(71, 85, 105, 0.3);
    backdrop-filter: blur(10px);
}

.why-cta-text {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    font-weight: 500;
}

.why-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #50C878, #2E8B57);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(80, 200, 120, 0.3);
}

.why-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(80, 200, 120, 0.4);
}

.why-cta-button i {
    transition: transform 0.3s ease;
}

.why-cta-button:hover i {
    transform: translateX(4px);
}

/* Responsive Design for Why Section */
@media (max-width: 1024px) {
    .why-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .why-column {
        padding: 2rem;
        text-align: left;
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 1.5rem;
        align-items: start;
    }
    
    .why-icon {
        margin: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        grid-row: 1 / 3;
    }
    
    .why-column-title {
        margin-bottom: 1rem;
        font-size: 1.375rem;
    }
    
    .why-column-text {
        grid-column: 2;
        margin-bottom: 1.5rem;
    }
    
    .why-highlights {
        grid-column: 2;
    }
}

@media (max-width: 768px) {
    .why-section {
        padding: 3rem 0;
    }
    
    .why-container {
        padding: 0 1rem;
    }
    
    .why-header {
        margin-bottom: 3rem;
    }
    
    .why-title {
        font-size: 2.25rem;
    }
    
    .why-subtitle {
        font-size: 1.125rem;
    }
    
    .why-column {
        display: block;
        text-align: center;
        padding: 1.5rem;
    }
    
    .why-icon {
        margin: 0 auto 1.5rem;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .why-column-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .why-column-text {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .why-highlights {
        gap: 0.5rem;
    }
    
    .highlight-item {
        justify-content: center;
        font-size: 0.8rem;
    }
    
    .why-cta {
        padding: 2rem 1rem;
        margin: 0 1rem;
        border-radius: 16px;
    }
    
    .why-cta-text {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
    }
    
    .why-cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .why-title {
        font-size: 1.875rem;
    }
    
    .why-columns {
        gap: 1.5rem;
    }
    
    .why-column {
        margin: 0 0.5rem;
    }
}

/* What We Do / Services Section */
.services-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 5rem 0;
    position: relative;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-title {
    font-size: 3rem;
    font-weight: 900;
    color: #f1f5f9;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.services-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: rgba(30, 41, 59, 0.3);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(71, 85, 105, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background: rgba(30, 41, 59, 0.5);
}

.service-icon-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #50C878, #2E8B57);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(80, 200, 120, 0.3);
    position: relative;
    z-index: 2;
}

.service-decoration {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(80, 200, 120, 0.1), rgba(46, 139, 87, 0.1));
    border-radius: 20px;
    z-index: 1;
}

.service-content {
    position: relative;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.service-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    background: rgba(71, 85, 105, 0.3);
    color: #cbd5e1;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(148, 163, 184, 0.3);
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: linear-gradient(135deg, #50C878, #2E8B57);
    color: white;
    transform: translateY(-2px);
}

/* Services CTA Section */
.services-cta {
    background: rgba(30, 41, 59, 0.3);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(71, 85, 105, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    backdrop-filter: blur(10px);
}

.services-cta-content {
    flex: 1;
}

.services-cta-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.services-cta-text {
    font-size: 1rem;
    color: #cbd5e1;
    line-height: 1.6;
}

.services-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.services-cta-primary,
.services-cta-secondary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.services-cta-primary {
    background: linear-gradient(135deg, #50C878, #2E8B57);
    color: white;
    box-shadow: 0 4px 20px rgba(80, 200, 120, 0.3);
}

.services-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(80, 200, 120, 0.4);
}

.services-cta-secondary {
    background: #f8fafc;
    color: #475569;
    border: 2px solid #e2e8f0;
}

.services-cta-secondary:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

/* Responsive Design for Services Section */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-cta {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .services-cta-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 3rem 0;
    }
    
    .services-container {
        padding: 0 1rem;
    }
    
    .services-header {
        margin-bottom: 3rem;
    }
    
    .services-title {
        font-size: 2.25rem;
    }
    
    .services-subtitle {
        font-size: 1.125rem;
    }
    
    .service-card {
        padding: 2rem;
        border-radius: 16px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-decoration {
        width: 60px;
        height: 60px;
    }
    
    .service-title {
        font-size: 1.375rem;
    }
    
    .service-description {
        font-size: 0.95rem;
    }
    
    .services-cta {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .services-cta-title {
        font-size: 1.5rem;
    }
    
    .services-cta-buttons {
        width: 100%;
    }
    
    .services-cta-primary,
    .services-cta-secondary {
        flex: 1;
        justify-content: center;
        min-width: 140px;
    }
}

@media (max-width: 640px) {
    .services-title {
        font-size: 1.875rem;
    }
    
    .service-card {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .services-cta-buttons {
        flex-direction: column;
    }
    
    .services-cta-primary,
    .services-cta-secondary {
        width: 100%;
        max-width: 280px;
    }
    
    .tech-tag {
        font-size: 0.8rem;
        padding: 0.25rem 0.5rem;
    }
}

/* Team Section */
.team-section {
    background: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
}

.team-content {
    max-width: 700px;
}

.team-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.team-title {
    font-size: 3rem;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.team-description {
    margin-bottom: 3rem;
}

.team-lead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.team-mission {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #64748b;
    font-style: italic;
    padding-left: 1rem;
    border-left: 4px solid #e2e8f0;
}

/* Team Values */
.team-values {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: translateX(8px);
}

.value-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #50C878, #2E8B57);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.value-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.value-text {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

/* Location Highlight */
.location-highlight {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #cbd5e1;
}

.location-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.location-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.location-text h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.location-text p {
    font-size: 0.95rem;
    color: #64748b;
}

.location-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.benefit-tag {
    background: white;
    color: #475569;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Team Visual */
.team-visual {
    position: relative;
    width: 300px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.map-container {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-pin {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
    z-index: 2;
    position: relative;
}

.map-pin i {
    transform: rotate(45deg);
}

.ripple-effect {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-radius: 50%;
    animation: ripple 3s infinite;
}

@keyframes ripple {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.team-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-circle {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #f1f5f9;
}

.stat-number {
    font-size: 1rem;
    font-weight: 900;
    color: #1e293b;
    line-height: 1;
}

.stat-label {
    font-size: 0.7rem;
    color: #64748b;
    text-align: center;
    font-weight: 600;
}

/* Team CTA */
.team-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 20px;
    border: 1px solid #cbd5e1;
}

.team-cta-content {
    flex: 1;
}

.team-cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.team-cta-text {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
}

.team-cta-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #50C878, #2E8B57);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(80, 200, 120, 0.3);
    flex-shrink: 0;
}

.team-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(80, 200, 120, 0.4);
}

/* Responsive Design for Team Section */
@media (max-width: 1024px) {
    .team-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .team-visual {
        margin: 0 auto;
        transform: scale(0.8);
    }
    
    .team-cta {
        flex-direction: column;
        text-align: center;
    }
    
    .team-cta-button {
        align-self: center;
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 3rem 0;
    }
    
    .team-container {
        padding: 0 1rem;
        gap: 2rem;
    }
    
    .team-title {
        font-size: 2.25rem;
    }
    
    .team-lead {
        font-size: 1.125rem;
    }
    
    .team-mission {
        font-size: 1rem;
        padding-left: 0.75rem;
    }
    
    .value-item {
        padding: 0.75rem;
    }
    
    .value-item:hover {
        transform: translateY(-4px);
    }
    
    .value-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .location-highlight {
        padding: 1.5rem;
    }
    
    .location-content {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .location-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .benefit-tag {
        font-size: 0.8rem;
        padding: 0.375rem 0.75rem;
    }
    
    .team-visual {
        display: none;
    }
    
    .team-cta {
        margin-top: 2rem;
        padding: 1.5rem;
    }
    
    .team-cta-title {
        font-size: 1.25rem;
    }
    
    .team-cta-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .team-title {
        font-size: 1.875rem;
    }
    
    .team-values {
        gap: 1rem;
    }
    
    .value-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .location-benefits {
        justify-content: center;
    }
}

/* Our Approach Section */
.approach-section {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    padding: 5rem 0;
    position: relative;
}

.approach-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.approach-header {
    text-align: center;
    margin-bottom: 4rem;
}

.approach-title {
    font-size: 3rem;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.approach-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    font-style: italic;
}

.approach-content {
    margin-bottom: 4rem;
}

.approach-description {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.approach-lead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.approach-details {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #64748b;
}

/* Sprint Process Visual */
.sprint-process {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.process-step {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 200px;
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #50C878, #2E8B57);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
}

.step-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 0.875rem;
    color: #64748b;
}

.process-arrow {
    font-size: 1.5rem;
    color: #cbd5e1;
    font-weight: bold;
}

/* Comparison Section */
.comparison-section {
    margin: 4rem 0;
}

.comparison-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 2rem;
}

.comparison-table {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-bottom: 1px solid #e2e8f0;
}

.header-us,
.header-them {
    padding: 1.5rem;
    text-align: center;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.our-badge {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
}

.traditional-badge {
    background: linear-gradient(135deg, #64748b, #475569);
    color: white;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid #f1f5f9;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-item {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: background-color 0.3s ease;
}

.us-item {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05), rgba(22, 163, 74, 0.05));
    border-right: 1px solid #f1f5f9;
}

.us-item:hover {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(22, 163, 74, 0.1));
}

.them-item {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.03), rgba(220, 38, 38, 0.03));
}

.them-item:hover {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.08), rgba(220, 38, 38, 0.08));
}

.check-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.cross-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.comparison-item span {
    font-size: 1rem;
    line-height: 1.5;
    color: #374151;
    font-weight: 500;
}

/* Approach CTA */
.approach-cta {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    text-align: center;
}

.approach-cta-content {
    margin-bottom: 2rem;
}

.approach-cta-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.approach-cta-text {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.approach-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.approach-cta-primary,
.approach-cta-secondary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.approach-cta-primary {
    background: linear-gradient(135deg, #50C878, #2E8B57);
    color: white;
    box-shadow: 0 4px 20px rgba(80, 200, 120, 0.3);
}

.approach-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(80, 200, 120, 0.4);
}

.approach-cta-secondary {
    background: #f8fafc;
    color: #475569;
    border: 2px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.approach-cta-secondary:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

/* Responsive Design for Approach Section */
@media (max-width: 1024px) {
    .sprint-process {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
    
    .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .us-item {
        border-right: none;
        border-bottom: 1px solid #f1f5f9;
    }
    
    .approach-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .approach-cta-primary,
    .approach-cta-secondary {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .approach-section {
        padding: 3rem 0;
    }
    
    .approach-container {
        padding: 0 1rem;
    }
    
    .approach-title {
        font-size: 2.25rem;
    }
    
    .approach-subtitle {
        font-size: 1.125rem;
    }
    
    .approach-lead {
        font-size: 1.125rem;
    }
    
    .approach-details {
        font-size: 1rem;
    }
    
    .sprint-process {
        gap: 1rem;
    }
    
    .process-step {
        padding: 1rem;
        min-width: 200px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .comparison-title {
        font-size: 1.5rem;
    }
    
    .comparison-header {
        grid-template-columns: 1fr;
    }
    
    .header-badge {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }
    
    .comparison-item {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .check-icon,
    .cross-icon {
        width: 25px;
        height: 25px;
        font-size: 0.75rem;
    }
    
    .approach-cta {
        padding: 2rem 1rem;
    }
    
    .approach-cta-title {
        font-size: 1.5rem;
    }
    
    .approach-cta-text {
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .approach-title {
        font-size: 1.875rem;
    }
    
    .process-step {
        min-width: 200px;
        padding: 0.75rem;
    }
    
    .step-content h4 {
        font-size: 1rem;
    }
    
    .step-content p {
        font-size: 0.8rem;
    }
    
    .comparison-item span {
        font-size: 0.875rem;
    }
    
    .approach-cta-buttons {
        gap: 0.75rem;
    }
}



/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 5rem 0;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-title {
    font-size: 3rem;
    font-weight: 900;
    color: #f1f5f9;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
}

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

.contact-form-wrapper {
    background: rgba(30, 41, 59, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(71, 85, 105, 0.3);
    backdrop-filter: blur(10px);
}

.contact-form {
    margin-bottom: 2rem;
}

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

.form-label {
    display: block;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid rgba(71, 85, 105, 0.5);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(15, 23, 42, 0.5);
    color: #f1f5f9;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #50C878;
    background: rgba(15, 23, 42, 0.8);
    box-shadow: 0 0 0 3px rgba(80, 200, 120, 0.2);
}

.form-input.error,
.form-textarea.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

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

.error-message {
    display: block;
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    min-height: 1.25rem;
}

.form-submit {
    width: 100%;
    background: linear-gradient(135deg, #50C878, #2E8B57);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 20px rgba(80, 200, 120, 0.3);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(80, 200, 120, 0.4);
}

.form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.contact-alternative {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(71, 85, 105, 0.3);
}

.contact-alternative p {
    color: #94a3b8;
    margin-bottom: 0.5rem;
}

.contact-email {
    color: #50C878;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.125rem;
}

.contact-email:hover {
    text-decoration: underline;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: rgba(30, 41, 59, 0.3);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(71, 85, 105, 0.3);
    text-align: center;
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
}

.info-card:hover {
    transform: translateY(-4px);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #50C878, #2E8B57);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.info-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 0.5rem;
}

.info-card p {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, #1e293b, #334155);
    padding: 4rem 0;
    color: white;
}

.final-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.final-cta-content {
    margin-bottom: 2.5rem;
}

.final-cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.final-cta-text {
    font-size: 1.25rem;
    opacity: 0.9;
    line-height: 1.6;
}

.final-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.final-cta-primary,
.final-cta-secondary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.final-cta-primary {
    background: linear-gradient(135deg, #50C878, #2E8B57);
    color: white;
    box-shadow: 0 4px 20px rgba(80, 200, 120, 0.3);
}

.final-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(80, 200, 120, 0.4);
}

.final-cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.final-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

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

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #50C878;
}

.footer-logo i {
    font-size: 1.75rem;
}

.footer-description {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

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

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

.footer-column a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #50C878;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 1.5rem;
}

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

.footer-bottom-content p {
    color: #94a3b8;
    font-size: 0.875rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #50C878;
}

/* Responsive Design for New Sections */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-title {
        font-size: 2.25rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .final-cta-title {
        font-size: 2rem;
    }
    
    .final-cta-text {
        font-size: 1.125rem;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .final-cta-primary,
    .final-cta-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    
    .contact-title {
        font-size: 1.875rem;
    }
    
    .contact-form-wrapper {
        padding: 1rem;
    }
    
    .final-cta-title {
        font-size: 1.75rem;
    }
    
    .final-cta-buttons {
        gap: 0.75rem;
    }
}

/* Custom focus styles for better accessibility */
a:focus,
button:focus {
    outline: 2px solid #50C878;
    outline-offset: 2px;
}

/* Navigation active link styles */
.nav-link-active {
    background-color: rgba(80, 200, 120, 0.2);
    color: #60a5fa;
}

/* Animation for mobile menu */
#mobile-menu {
    transition: all 0.3s ease-in-out;
}

/* Custom button hover effects */
.btn-primary {
    background: linear-gradient(135deg, #50C878, #2E8B57);
    box-shadow: 0 4px 15px rgba(80, 200, 120, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(80, 200, 120, 0.4);
    transform: translateY(-2px);
}

/* Logo animation */
.logo-animate:hover {
    transform: scale(1.05);
    transition: transform 0.2s ease-in-out;
}

/* Mobile menu slide animation */
.mobile-menu-enter {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.mobile-menu-enter-active {
    max-height: 300px;
}

/* Responsive text adjustments */
@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
}

/* Section padding adjustments */
/* section {
    padding-top: 1rem;
    padding-bottom: 1rem;
} */

@media (min-width: 768px) {
    /* section {
        padding-top: 2rem;
        padding-bottom: 2rem;
    } */
}

/* Navigation bar backdrop blur effect (modern browsers) */
@supports (backdrop-filter: blur(10px)) {
    nav {
        backdrop-filter: blur(10px);
        background-color: rgba(255, 255, 255, 0.9);
    }
}

/* Loading animation for interactive elements */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Dark mode support (optional enhancement) */
@media (prefers-color-scheme: dark) {
    /* This can be expanded later for dark mode support */
}

/* Projects Section Styles */
.projects-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
    position: relative;
    overflow: hidden;
}

.projects-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(80, 200, 120, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(147, 51, 234, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.projects-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.projects-header {
    text-align: center;
    margin-bottom: 4rem;
}

.projects-title {
    font-size: 3rem;
    font-weight: 700;
    color: #F8FAFC;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #F8FAFC 0%, #CBD5E1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.projects-subtitle {
    font-size: 1.25rem;
    color: #94A3B8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Project Showcase */
.project-showcase {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(51, 65, 85, 0.3);
    border-radius: 1rem;
    padding: 3rem;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.project-showcase:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(80, 200, 120, 0.3);
}

.project-info {
    margin-bottom: 3rem;
}

.project-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #50C878, #2E8B57);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.project-badge i {
    font-size: 1rem;
}

.project-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #F8FAFC;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #50C878, #66D68A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.project-url {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.project-url i {
    color: #50C878;
    font-size: 1rem;
}

.project-url a {
    color: #66D68A;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.125rem;
    transition: color 0.3s ease;
}

.project-url a:hover {
    color: #50C878;
    text-decoration: underline;
}

.project-description {
    margin-bottom: 2rem;
}

.project-lead {
    font-size: 1.25rem;
    color: #E2E8F0;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-details {
    font-size: 1rem;
    color: #94A3B8;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.project-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(51, 65, 85, 0.3);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(71, 85, 105, 0.3);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(80, 200, 120, 0.1);
    border-color: rgba(80, 200, 120, 0.3);
    transform: translateX(5px);
}

.feature-item i {
    color: #50C878;
    font-size: 1.125rem;
    min-width: 1.125rem;
}

.feature-item span {
    color: #E2E8F0;
    font-weight: 500;
}

/* Screenshot Gallery */
.project-gallery {
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 1rem;
    margin-bottom: 2rem;
}

.screenshot-main {
    grid-column: 1 / 8;
    grid-row: 1 / 3;
    min-height: 400px;
}

.screenshot-secondary:nth-of-type(2) {
    grid-column: 8 / 13;
    grid-row: 1 / 2;
    min-height: 195px;
}

.screenshot-secondary:nth-of-type(3) {
    grid-column: 8 / 13;
    grid-row: 2 / 3;
    min-height: 195px;
}

.screenshot-wide {
    grid-column: 1 / 13;
    grid-row: 3 / 4;
    min-height: 200px;
}

.screenshot-secondary:nth-of-type(5) {
    grid-column: 1 / 7;
    grid-row: 4 / 5;
    min-height: 200px;
}

.screenshot-secondary:nth-of-type(6) {
    grid-column: 7 / 13;
    grid-row: 4 / 5;
    min-height: 200px;
}

.screenshot-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.75rem;
    border: 2px solid rgba(71, 85, 105, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.screenshot-main,
.screenshot-secondary,
.screenshot-wide {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.screenshot-main:hover,
.screenshot-secondary:hover,
.screenshot-wide:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.screenshot-main:hover .screenshot-img,
.screenshot-secondary:hover .screenshot-img,
.screenshot-wide:hover .screenshot-img {
    border-color: rgba(80, 200, 120, 0.5);
}

.screenshot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 1.5rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    text-align: center;
}

.screenshot-main:hover .screenshot-overlay,
.screenshot-secondary:hover .screenshot-overlay,
.screenshot-wide:hover .screenshot-overlay {
    transform: translateY(0);
}

.screenshot-title {
    font-weight: 600;
    color: #F8FAFC;
    font-size: 1rem;
    display: block;
    margin-bottom: 0.25rem;
}

.screenshot-description {
    color: #CBD5E1;
    font-size: 0.875rem;
    line-height: 1.4;
    margin: 0;
}

/* Gallery Controls */
.gallery-controls {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(51, 65, 85, 0.6);
    border: 1px solid rgba(71, 85, 105, 0.5);
    color: #94A3B8;
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.gallery-btn:hover {
    background: rgba(80, 200, 120, 0.1);
    border-color: rgba(80, 200, 120, 0.3);
    color: #66D68A;
    transform: translateY(-2px);
}

.gallery-btn.active {
    background: linear-gradient(135deg, #50C878, #2E8B57);
    border-color: #50C878;
    color: white;
    box-shadow: 0 4px 12px rgba(80, 200, 120, 0.3);
}

.gallery-btn i {
    font-size: 1rem;
}

/* Tech Stack */
.project-tech {
    text-align: center;
}

.tech-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #E2E8F0;
    margin-bottom: 2rem;
}

.tech-stack {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: rgba(51, 65, 85, 0.4);
    padding: 1.5rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(71, 85, 105, 0.3);
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: rgba(80, 200, 120, 0.1);
    border-color: rgba(80, 200, 120, 0.3);
    transform: translateY(-5px);
}

.tech-item i {
    font-size: 2rem;
    color: #50C878;
}

.tech-item span {
    color: #E2E8F0;
    font-weight: 500;
    font-size: 0.875rem;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .projects-container {
        padding: 0 1.5rem;
    }
    
    .project-showcase {
        padding: 2rem;
    }
    
    .gallery-grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .screenshot-main,
    .screenshot-secondary,
    .screenshot-wide {
        width: 100%;
        min-height: 250px;
        grid-column: unset;
        grid-row: unset;
    }
}

@media (max-width: 768px) {
    .projects-section {
        padding: 3rem 0;
    }
    
    .projects-title {
        font-size: 2.25rem;
    }
    
    .projects-subtitle {
        font-size: 1.125rem;
    }
    
    .project-title {
        font-size: 2rem;
    }
    
    .project-features {
        grid-template-columns: 1fr;
    }
    
    .tech-stack {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-controls {
        gap: 0.5rem;
    }
    
    .gallery-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .gallery-grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .screenshot-main,
    .screenshot-secondary,
    .screenshot-wide {
        width: 100%;
        min-height: 200px;
        grid-column: unset;
        grid-row: unset;
    }
}

@media (max-width: 480px) {
    .project-showcase {
        padding: 1.5rem;
    }
    
    .tech-stack {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-controls {
        flex-direction: column;
        align-items: center;
    }
    
    .gallery-btn {
        width: 100%;
        justify-content: center;
        max-width: 200px;
    }
    
    .gallery-grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .screenshot-main,
    .screenshot-secondary,
    .screenshot-wide {
        width: 100%;
        min-height: 180px;
        grid-column: unset;
        grid-row: unset;
    }
}

/* Print styles */
@media print {
    nav, footer {
        display: none;
    }
    
    main {
        margin: 0;
        padding: 0;
    }
}


