/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-y: scroll;
    scrollbar-gutter: stable;
    height: 100%;
}

body {
    min-height: 100vh;
    width: 100%;
    background: #08090a;
    color: #fff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow-x: hidden;
    position: relative;
    margin: 0;
    padding: 0;
}

/* Fixed background elements */
.background,
.bubble-background,
.glass-depth,
.glass-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Content wrapper */
main {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.glass-section {
    width: 100%;
    max-width: 100%;
    margin: 2rem auto;
    box-sizing: border-box;
}

/* Glass Effect */
.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
}

/* Navigation */
.glass-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    margin: 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(to right, #fff, #4f46e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-group {
    display: flex;
    gap: 1rem;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.nav-item:hover,
.nav-item.active {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.nav-item i {
    font-size: 1.2rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .glass-nav {
        padding: 1rem;
        margin: 0.5rem;
    }
}

/* Home Section Styles */
.home-section {
    text-align: center;
    padding: 4rem 2rem;
}

.home-section h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff, #4f46e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.tagline {
    font-size: 1.75rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4rem;
    font-weight: 300;
}

/* Specialties Section */
.specialties {
    text-align: left;
    margin-top: 3rem;
}

.specialties h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.specialties h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #4f46e5, transparent);
}

.specialty-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.specialty-list li {
    margin-bottom: 2.5rem;
    padding-left: 2rem;
    position: relative;
}

.specialty-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 8px;
    height: 8px;
    background: #4f46e5;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(79, 70, 229, 0.5);
}

.specialty-list h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.75rem;
}

.specialty-list p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 1.1rem;
}

.cta {
    margin-top: 4rem;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design for Home Section */
@media (max-width: 768px) {
    .home-section {
        padding: 3rem 1.5rem;
    }

    .home-section h1 {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.25rem;
        margin-bottom: 3rem;
    }

    .specialties h2 {
        font-size: 1.75rem;
    }

    .specialty-list li {
        padding-left: 1.5rem;
    }

    .specialty-list h3 {
        font-size: 1.25rem;
    }

    .specialty-list p {
        font-size: 1rem;
    }

    .cta {
        font-size: 1.25rem;
        margin-top: 3rem;
    }
}

@media (max-width: 480px) {
    .home-section h1 {
        font-size: 2rem;
    }

    .specialties h2 {
        font-size: 1.5rem;
    }
}

/* Products Section Styles */
.product-showcase {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 3rem 0;
}

.product-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1.5rem;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.product-header h3 {
    font-size: 2rem;
    background: linear-gradient(135deg, #fff, #4f46e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(79, 70, 229, 0.1);
    border-radius: 0.75rem;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-link:hover {
    background: rgba(79, 70, 229, 0.2);
    transform: translateY(-2px);
}

.product-questions {
    margin-bottom: 2rem;
}

.product-questions p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.product-questions p::before {
    content: '?';
    position: absolute;
    left: 0;
    color: #4f46e5;
    font-weight: bold;
}

.product-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.product-features {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.product-features h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.product-features li {
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
}

.product-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4f46e5;
}

.products-footer {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

/* Responsive Design for Products */
@media (max-width: 768px) {
    .product-item {
        padding: 1.5rem;
    }

    .product-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .product-header h3 {
        font-size: 1.75rem;
    }

    .product-features ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .product-item {
        padding: 1.25rem;
    }

    .product-questions p {
        font-size: 1rem;
    }

    .product-link {
        width: 100%;
        justify-content: center;
    }
}

/* Clients Section Styles */
.section-intro {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.client-card {
    padding: 2rem;
    transition: transform 0.3s ease;
}

.client-card:hover {
    transform: translateY(-5px);
}

.client-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.client-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.client-info h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.client-info p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.client-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.client-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
}

.client-details i {
    color: #4f46e5;
}

.client-testimonial {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.client-testimonial blockquote {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    position: relative;
    padding: 0 1.5rem;
}

.client-testimonial blockquote::before,
.client-testimonial blockquote::after {
    content: '"';
    color: #4f46e5;
    font-size: 2rem;
    position: absolute;
}

.client-testimonial blockquote::before {
    left: 0;
    top: -0.5rem;
}

.client-testimonial blockquote::after {
    right: 0;
    bottom: -0.5rem;
}

/* Add Client Card */
.add-client {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1.5rem;
    min-height: 300px;
    border: 2px dashed rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.add-client i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
}

.add-client p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
}

/* Client Stats */
.client-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-item i {
    font-size: 2rem;
    color: #4f46e5;
    margin-bottom: 1rem;
}

.stat-item h4 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .clients-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .client-logo {
        width: 100px;
        height: 100px;
    }

    .client-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Career Section Enhanced Styles */
.career-header {
    text-align: center;
    padding: 3rem;
    margin-bottom: 4rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1.5rem;
}

.career-header h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff, #4f46e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.career-intro {
    max-width: 800px;
    margin: 0 auto;
}

.career-intro h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1rem;
}

.career-intro p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    line-height: 1.6;
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.position-card {
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.position-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.07);
}

.position-card i {
    font-size: 2.5rem;
    color: #4f46e5;
    background: rgba(79, 70, 229, 0.1);
    padding: 1.5rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.position-card:hover i {
    transform: scale(1.1);
    background: rgba(79, 70, 229, 0.2);
}

.position-card h4 {
    font-size: 1.5rem;
    color: #fff;
}

.position-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: #4f46e5;
    color: #fff;
    text-decoration: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.apply-btn:hover {
    background: #4338ca;
    transform: translateY(-2px);
}

.career-cta {
    text-align: center;
    padding: 3rem;
    margin: 4rem 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1.5rem;
}

.career-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* About Section Enhanced Styles */
.about-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff, #4f46e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
}

.team-member {
    padding: 3rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.member-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: rgba(79, 70, 229, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-avatar i {
    font-size: 2.5rem;
    color: #4f46e5;
}

.credential-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.credential-item i {
    color: #4f46e5;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 0.5rem 1rem;
    background: rgba(79, 70, 229, 0.1);
    border-radius: 2rem;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: rgba(79, 70, 229, 0.2);
    transform: translateY(-2px);
}

.glass-special {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
}

.contact-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-header i {
    font-size: 2rem;
    color: #4f46e5;
}

.map-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: #4f46e5;
    text-decoration: none;
    font-size: 0.9rem;
}

/* Enhanced Footer Styles */
.glass-footer {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 2rem 2rem;
    margin-top: 6rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    width: 60px;
    height: 60px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    color: #fff;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #4f46e5;
    transform: translateX(5px);
}

.footer-email {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-email:hover {
    color: #4f46e5;
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.social-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #4f46e5;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Contact Section Styles */
.contact-section {
    padding: 4rem 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

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

.contact-card {
    padding: 2rem;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.07);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: #4f46e5;
    background: rgba(79, 70, 229, 0.1);
    padding: 1rem;
    border-radius: 1rem;
}

.contact-details h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-details p,
.contact-details a {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #4f46e5;
}

/* Contact Form */
.contact-form {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-header {
    margin-bottom: 2rem;
    text-align: center;
}

.form-header h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1rem;
}

.form-header p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

.input-group label {
    display: block;
    color: #fff;
    margin-bottom: 0.5rem;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: #4f46e5;
    background: rgba(255, 255, 255, 0.08);
}

.input-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: #4f46e5;
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #4338ca;
    transform: translateY(-2px);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #4f46e5;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 1.5rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

/* Footer Styles */
.footer {
    margin-top: 6rem;
    padding: 4rem 2rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo img {
    width: 40px;
    height: 40px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-section h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #4f46e5;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: #4f46e5;
    transform: translateX(5px);
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
}

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

.footer-social a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: #4f46e5;
    transform: translateY(-3px);
}

/* Responsive Footer */
@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 3rem 1.5rem 1.5rem;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* About Us Section Styles */
.about-section {
    padding: 4rem 2rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin: 4rem 0;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-content h3 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #fff, #4f46e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.07);
}

.stat-card i {
    font-size: 2.5rem;
    color: #4f46e5;
    margin-bottom: 1rem;
}

.stat-card h4 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: rgba(255, 255, 255, 0.7);
}

/* Join Our Team Section */
.join-team {
    text-align: center;
    padding: 6rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 2rem;
    margin: 4rem 0;
}

.join-team h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff, #4f46e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.join-team p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.benefit-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1.5rem;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2rem;
    color: #4f46e5;
    margin-bottom: 1.5rem;
}

.benefit-card h4 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
}

.join-cta {
    margin-top: 4rem;
}

.join-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: #4f46e5;
    color: #fff;
    border: none;
    border-radius: 0.75rem;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.join-button:hover {
    background: #4338ca;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-content h3 {
        font-size: 2rem;
    }

    .join-team {
        padding: 4rem 1.5rem;
    }

    .join-team h3 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .about-stats {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .join-team p {
        font-size: 1.1rem;
    }
}

/* CV Upload Form Styles */
.cv-upload-section {
    max-width: 800px;
    margin: 4rem auto;
    padding: 3rem;
    text-align: center;
}

.cv-upload-section h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #fff, #4f46e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cv-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1.5rem;
}

.form-group {
    margin-bottom: 2rem;
    text-align: left;
}

.form-group label {
    display: block;
    color: #fff;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4f46e5;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.file-upload {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 2rem;
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.file-upload:hover {
    border-color: #4f46e5;
    background: rgba(79, 70, 229, 0.05);
}

.file-upload input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.upload-icon {
    font-size: 2.5rem;
    color: #4f46e5;
    margin-bottom: 1rem;
}

.upload-text {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    font-size: 1.1rem;
}

.file-name {
    margin-top: 1rem;
    color: #4f46e5;
    font-size: 0.9rem;
    display: none;
}

.upload-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem;
    background: #4f46e5;
    color: #fff;
    border: none;
    border-radius: 0.75rem;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-button:hover:not(:disabled) {
    background: #4338ca;
    transform: translateY(-2px);
}

.upload-button:disabled {
    background: rgba(79, 70, 229, 0.5);
    cursor: not-allowed;
}

.upload-button i {
    font-size: 1.2rem;
}

/* Form Validation Styles */
.form-group.error input,
.form-group.error textarea {
    border-color: #ef4444;
}

.error-message {
    color: #ef4444;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cv-upload-section {
        padding: 2rem 1.5rem;
    }

    .cv-form {
        padding: 1.5rem;
    }

    .file-upload {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .cv-upload-section h3 {
        font-size: 1.75rem;
    }

    .upload-button {
        font-size: 1rem;
    }
}

/* Enhanced Offices Section */
.offices-section {
    margin-top: 4rem;
    padding: 3rem;
}

.offices-header {
    text-align: center;
    margin-bottom: 3rem;
}

.offices-header i {
    font-size: 3rem;
    color: #4f46e5;
    margin-bottom: 1rem;
}

.offices-header h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.offices-header p {
    color: rgba(255, 255, 255, 0.7);
}

.office-locations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.office-card {
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.office-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.07);
}

.office-icon {
    font-size: 2rem;
    color: #4f46e5;
}

.office-details h4 {
    color: #fff;
    margin-bottom: 1rem;
}

.office-details p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.office-contact {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Enhanced Contact Section */
.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff, #4f46e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.contact-card {
    text-align: center;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.07);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(79, 70, 229, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    font-size: 2rem;
    color: #4f46e5;
}

.contact-card h4 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.contact-card a {
    color: #4f46e5;
    text-decoration: none;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #fff;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.chat-button {
    background: #4f46e5;
    color: #fff;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 2rem;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-button:hover {
    background: #4338ca;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .about-stats {
        grid-template-columns: 1fr;
    }

    .office-card {
        flex-direction: column;
        text-align: center;
    }

    .office-contact {
        justify-content: center;
    }
}

/* Team Member Cards */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.team-member {
    padding: 2rem;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.07);
}

.member-profile {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.member-avatar {
    width: 80px;
    height: 80px;
    background: rgba(79, 70, 229, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-avatar i {
    font-size: 2rem;
    color: #4f46e5;
}

.member-header {
    flex: 1;
}

.member-header h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.member-title {
    display: block;
    color: #4f46e5;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.department {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.member-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.education-section,
.experience-section {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1rem;
}

.education-section h4,
.experience-section h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.education-section i,
.experience-section i {
    color: #4f46e5;
}

.degree {
    margin-bottom: 1rem;
}

.degree-title {
    color: #fff;
    margin-bottom: 0.25rem;
}

.institution {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.experience-item .years {
    display: inline-block;
    background: rgba(79, 70, 229, 0.1);
    color: #4f46e5;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.experience-item ul {
    list-style: none;
    padding: 0;
    color: rgba(255, 255, 255, 0.8);
}

.experience-item li {
    margin-bottom: 0.5rem;
    padding-left: 1.25rem;
    position: relative;
}

.experience-item li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4f46e5;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #4f46e5;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background: #4338ca;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .team-member {
        padding: 1.5rem;
    }

    .member-profile {
        flex-direction: column;
        text-align: center;
    }

    .member-header {
        text-align: center;
    }
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    z-index: 1001;
    transition: right 0.3s ease;
    overflow-y: auto;
    padding: 2rem;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1002;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu .nav-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #4f46e5;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: #4338ca;
    transform: translateY(-3px);
}