/* ========================= */
/* ==== FOCUS AREAS ======== */
/* ========================= */
.focus-areas-section {
    background: var(--primary-gradient);
    padding: 120px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 50m-40 0a40 40 0 1 1 80 0a40 40 0 1 1 -80 0' stroke='rgba(255,255,255,0.1)' stroke-width='1' fill='none' /%3E%3C/svg%3E") repeat;
    animation: backgroundMove 20s linear infinite;
    opacity: 0.3;
    z-index: 0;
}

@keyframes backgroundMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

.focus-areas-section .container {
    position: relative;
    z-index: 1;
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Gelica', sans-serif;
    font-weight: 300;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.focus-area {
    padding: 1rem;
}

.focus-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 3rem 2rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.focus-card:hover .card-background {
    opacity: 1;
}

.focus-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.focus-icon {
    margin-bottom: 2rem;
    text-align: center;
}

.icon-wrapper {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.focus-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(10deg);
    background: rgba(255, 255, 255, 0.25);
}

.icon-wrapper i {
    font-size: 2.5rem;
    color: white;
}

.focus-card h4 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
    text-align: center;
}

.focus-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 2rem;
}

.focus-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: auto;
}

.tag {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.focus-card:hover .tag {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* ========================= */
/* ===== GLOBAL STYLES ===== */
/* ========================= */
* {
    scroll-behavior: smooth;
}

/* Particles Background */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
}

/* ========================= */
/* ===== HERO SECTION ====== */
/* ========================= */
#tech-landing-title, #tech-landing-subtext, #tech-landing-button {
    opacity: 0;
    position: relative;
    top: 50px;
    transition: opacity 1s ease-out, top 1s ease-out;
}

.landing-container {
    position: relative;
    width: 100%;
    height: 100vh;
    background: linear-gradient(200deg, #2c204866, #e471ab88), url("/static/images/office-1.c1e281791f00.jpg") no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.landing-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.717) 100%);
    z-index: 1;
}

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

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
}

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

.overlay {
    position: relative;
    width: 90%;
    max-width: 1100px;
    z-index: 2;
    padding: 2rem;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 2rem;
    animation: slideDown 1s ease-out;
}

.badge-text {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

.overlay h1 {
    font-family: 'Gelica', sans-serif !important;
    font-weight: 300 !important;
    font-size: 4rem;
    line-height: 1.2;
    color: white;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.gradient-text {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 400;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.overlay p {
    font-family: "Neue Montreal", sans-serif !important;
    font-size: 1.3rem;
    max-width: 900px;
    margin: 0 auto 3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.btn-hero-primary {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 2px solid var(--glass-border);
    color: white;
    padding: 1rem 2rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-hero-primary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    color: white;
    text-decoration: none;
}

.btn-hero-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1rem 2rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    color: white;
    text-decoration: none;
}

/* Responsive Adjustments for Hero Section */
@media (max-width: 992px) {
    .overlay h1 {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .description-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .overlay {
        width: 95%;
        padding: 1rem;
    }
    
    .overlay h1 {
        font-size: 2.5rem;
        line-height: 1.3;
    }
    
    .overlay p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 80%;
        max-width: 300px;
        justify-content: center;
    }
    
    .description-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .focus-areas-section {
        padding: 80px 20px;
    }
    
    .focus-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .team-section {
        padding: 80px 20px;
    }
    
    .team-card {
        padding: 2rem 1rem;
    }
    
    .team-image-wrapper img {
        width: 120px;
        height: 120px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .card-glow {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .overlay h1 {
        font-size: 2rem;
    }
    
    .overlay p {
        font-size: 1rem;
    }
    
    .hero-badge {
        margin-bottom: 1.5rem;
    }
    
    .badge-text {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
    
    .description-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .feature-item {
        padding: 0.8rem;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .focus-card {
        padding: 1.5rem 1rem;
    }
    
    .icon-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .icon-wrapper i {
        font-size: 2rem;
    }
    
    .team-card {
        padding: 1.5rem 1rem;
    }
    
    .team-image-wrapper img {
        width: 100px;
        height: 100px;
    }
}

/* ========================= */
/* ===== ANIMATIONS ======== */
/* ========================= */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Smooth scroll */

/* Loading states */
.loading-shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

/* Enhanced focus states for accessibility */
.focus-card:focus,
.team-card:focus,
.btn-hero-primary:focus,
.btn-hero-secondary:focus {
    outline: 3px solid rgba(102, 126, 234, 0.5);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .hero-particles,
    .background-animation,
    #particles-js {
        display: none;
    }
    
    .landing-container {
        background: none !important;
        color: black !important;
    }
    
    .overlay h1,
    .overlay p {
        color: black !important;
    }
}

/* ========================= */
/* ===== ABOUT SECTION ===== */
/* ========================= */
.description-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
    position: relative;
    overflow: hidden;
}

.description-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23667eea' fill-opacity='0.03'%3E%3Cpath d='m36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    opacity: 0.5;
    z-index: 0;
}

.description-content {
    position: relative;
    z-index: 1;
}

.section-badge {
    display: inline-block;
    background: var(--primary-gradient);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.description-title {
    font-family: 'Gelica', sans-serif;
    font-weight: 300;
    font-size: 3.5rem;
    line-height: 1.2;
    color: #1a202c;
    margin-bottom: 2rem;
}

.highlight-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 400;
}

.image-container {
    position: relative;
    display: inline-block;
}

@keyframes floatAround {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(5deg); }
    66% { transform: translateY(10px) rotate(-5deg); }
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

/* ========================= */
/* ==== MISSION/VISION ===== */
/* ========================= */
.mission-vision {
    margin-top: 6rem;
}

.about-card {
    margin: 1rem;
    height: 100%;
}

.card-glow {
    background: white;
    border-radius: 25px;
    padding: 2.5rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-light);
}

.card-glow::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.card-glow:hover::before {
    opacity: 0.05;
}

.card-glow:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.about-card-header {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 1.5rem;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: transform 0.3s ease;
}

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

.about-card-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a202c;
    margin: 0;
}

.card-glow p {
    position: relative;
    z-index: 1;
    color: #4a5568;
    line-height: 1.7;
    font-size: 1rem;
}

/* ========================= */
/* === COMMITMENT SECTION === */
/* ========================= */
.commitment-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background-color: #f8f9fa;
    color: black;
    transition: background 0.3s ease-in-out;
}

.commitment-stats {
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 0;
}

.commitment-section .benefits-section-text {
    font-size: 1.2rem;
    max-width: 85%;
    margin: 10px auto;
    line-height: 1.6;
    text-align: center;
}

.commitment-section a {
    color: white;
    font-weight: bold;
    text-decoration: none;
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    font-size: 1rem;
    display: inline-block;
    margin-top: 15px;
    border: none;
}

.commitment-section a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    text-decoration: none;
    color: white;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .commitment-section {
        padding: 40px 15px;
    }

    .commitment-section .benefits-section-text {
        font-size: 1rem;
        max-width: 95%;
    }

    .commitment-section a {
        font-size: 0.9rem;
        padding: 10px 20px;
        margin-top: 10px;
        text-align: center;
        display: inline-block;
    }

    .focus-areas-section {
        padding: 60px 15px;
    }

    .focus-areas-section h2 {
        font-size: 2rem;
    }

    .focus-card {
        padding: 20px;
        margin-bottom: 20px;
    }

    .focus-icon {
        font-size: 2.5rem;
    }

    .team-member img {
        width: 150px;
        height: 150px;
    }

    .stat-number {
        font-size: 2rem;
    }
}

.team-section {
    background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
    padding: 120px 0;
    position: relative;
}

.team-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.team-section .container {
    position: relative;
    z-index: 1;
}

.team-section .section-title {
    color: #1a202c;
    margin-bottom: 1rem;
}

.team-section .section-subtitle {
    color: #4a5568;
    margin-bottom: 4rem;
}

.team-member {
    padding: 1rem;
    margin-bottom: 2rem;
}

.team-card {
    background: white;
    border-radius: 30px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.team-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.team-card:hover::before {
    opacity: 0.03;
}

.team-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(102, 126, 234, 0.2);
}

.team-image-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
    z-index: 1;
}

.team-image-wrapper img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid transparent;
    background: var(--primary-gradient);
    padding: 4px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.team-image-wrapper:hover .team-overlay {
    opacity: 0.9;
}

.team-social {
    display: flex;
    gap: 1rem;
}

.team-social a {
    color: white;
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.team-social a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.team-info {
    position: relative;
    z-index: 1;
}

.team-info h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.team-info .role {
    font-size: 1rem;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-description {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

.social-icon-color:hover {
    color: #764ba2;
}

.description-section {
    padding-bottom: 80px; /* Prevents overlap */
    display: flex;
    flex-direction: column;
}

.description-section .container {
    display: flex;
    flex-direction: column;
}

.description-title {
    font-family: 'Gelica', sans-serif;
    font-weight: 300;
    font-size: 45px;
    line-height: 56px;
    color: rgb(27, 31, 32);
    margin-top: 20px;
}

@media (max-width: 768px) {
    .description-section {
        text-align: center;
        padding: 50px 20px;
    }
}



