body {
    font-family: 'Montserrat', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f7fa;
    color: #222;
}

header {
    background: rgba(24, 28, 47, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-container i {
    font-size: 2rem;
    color: #00c6ff;
    animation: pulse 2s infinite;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    background: linear-gradient(120deg, #fff, #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a i {
    font-size: 1rem;
    opacity: 0.8;
}

.nav-links a:hover {
    color: #00c6ff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.nav-links a.active {
    background: linear-gradient(120deg, #00c6ff, #0072ff);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 198, 255, 0.3);
}

.nav-links a.contact-btn {
    background: #00c6ff;
    color: #181c2f;
    font-weight: 600;
}

.nav-links a.contact-btn:hover {
    background: #fff;
    color: #181c2f;
    transform: translateY(-2px) scale(1.05);
}

.contact-info {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.contact-info a i {
    color: #00c6ff;
}

.contact-info a:hover {
    color: #00c6ff;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 5% 40px;
    overflow: hidden;
    background: linear-gradient(135deg, #0b132b 0%, #1c2541 100%);
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1920&q=80') center/cover;
    opacity: 0.15;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(45deg, rgba(0,198,255,0.1) 0%, rgba(0,114,255,0.1) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
    margin-right: 40px;
}

.hero-text-content {
    animation: fadeInUp 1s ease-out;
}

.animated-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #fff 30%, #00c6ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glowText 3s ease-in-out infinite;
}

.animated-title span {
    background: linear-gradient(45deg, #00c6ff 0%, #0072ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s ease-in-out infinite;
}

.typed-container {
    height: 60px;
    margin-bottom: 20px;
}

.typed-text {
    font-size: 1.5rem;
    color: #00c6ff;
    font-weight: 500;
}

.cursor {
    display: inline-block;
    width: 3px;
    background-color: #00c6ff;
    margin-left: 4px;
    animation: blink 1s infinite;
}

.hero-description {
    font-size: 1.2rem;
    color: #a8b2d1;
    line-height: 1.6;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.hero-cta-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.primary-cta {
    background: linear-gradient(45deg, #00c6ff 0%, #0072ff 100%);
    color: #fff;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,198,255,0.3);
}

.primary-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0,198,255,0.4);
}

.secondary-cta {
    background: linear-gradient(45deg, #00c6ff 0%, #0072ff 100%);
    color: #fff;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 198, 255, 0.3);
}

.secondary-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 198, 255, 0.4);
    background: linear-gradient(45deg, #0072ff 0%, #00c6ff 100%);
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    animation: fadeInUp 1s ease-out 0.9s backwards;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #a8b2d1;
    font-size: 1rem;
}

.feature i {
    color: #00c6ff;
    font-size: 1.2rem;
}

.hero-image {
    position: relative;
    z-index: 3;
    max-width: 500px;
    animation: floatImage 3s ease-in-out infinite;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.floating-tech-stack {
    position: absolute;
    display: flex;
    gap: 20px;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

.floating-tech-stack i {
    font-size: 2rem;
    color: #00c6ff;
    animation: bounce 2s infinite;
}

.floating-tech-stack i:nth-child(2) { animation-delay: 0.2s; }
.floating-tech-stack i:nth-child(3) { animation-delay: 0.4s; }
.floating-tech-stack i:nth-child(4) { animation-delay: 0.6s; }
.floating-tech-stack i:nth-child(5) { animation-delay: 0.8s; }

/* Custom Flutter Icon */
.icon-flutter {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%2300c6ff' d='M14.314 0L2.3 12 6 15.7 21.684.012h-7.357zm.014 11.072l-6.471 6.457 6.47 6.47H21.7l-6.46-6.468 6.46-6.46h-7.371z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.floating-tech-stack .icon-flutter {
    width: 32px;
    height: 32px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glowText {
    0%, 100% { filter: brightness(100%); }
    50% { filter: brightness(120%); }
}

@keyframes shimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 120px 20px 60px;
    }

    .hero-content {
        margin-right: 0;
        margin-bottom: 40px;
    }

    .hero-cta-buttons {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-image {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .animated-title {
        font-size: 2.5rem;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .floating-tech-stack {
        padding: 10px 20px;
    }

    .floating-tech-stack i {
        font-size: 1.5rem;
    }
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 32px;
}
.tab-btn {
    background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 10px 28px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 2px 12px rgba(0,198,255,0.18), 0 1.5px 0 #fff inset;
    cursor: pointer;
    transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
    position: relative;
    overflow: hidden;
}
.tab-btn.active, .tab-btn:hover {
    background: linear-gradient(135deg, #fff 0%, #00c6ff 100%);
    color: #181c2f;
    box-shadow: 0 4px 18px rgba(0,198,255,0.25), 0 2px 0 #fff inset;
    transform: translateY(-2px) scale(1.04);
}
.tab-btn::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(90deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0.05) 100%);
    border-radius: 24px 24px 0 0;
    pointer-events: none;
}

.services-section {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.services-section h2 {
    margin-bottom: 40px;
    font-size: 2.8rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    background: linear-gradient(135deg, #181c2f 0%, #0072ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.services-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
    flex-wrap: wrap;
    padding: 0 20px;
}

.services-tabs .tab-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    background: #ffffff;
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.services-tabs .tab-btn.active,
.services-tabs .tab-btn:hover {
    background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 198, 255, 0.2);
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 198, 255, 0.15);
}

.card-header {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.card-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .card-header img {
    transform: scale(1.05);
}

.card-content {
    padding: 30px;
    position: relative;
    flex: 1;
    background: #ffffff;
}

.service-icon {
    font-size: 2.5rem;
    color: #00c6ff;
    margin-bottom: 20px;
    position: relative;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.service-card h3 {
    font-size: 1.8rem;
    color: #181c2f;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
}

.service-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
    position: relative;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    position: relative;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #444;
    font-size: 1rem;
    padding: 8px 0;
}

.features-list li i {
    color: #00c6ff;
    font-size: 1.2rem;
}

.card-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    position: relative;
    padding: 15px;
    border-left: 3px solid #00c6ff;
    background: rgba(0, 198, 255, 0.03);
    border-radius: 0 8px 8px 0;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
    color: #fff;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 198, 255, 0.2);
}

@media (max-width: 768px) {
    .services-list {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .service-card {
        padding: 25px;
    }

    .service-icon {
        font-size: 2rem;
    }

    .service-card h3 {
        font-size: 1.5rem;
    }
}

/* Contact Form Improvements */
.contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 6rem 0;
    text-align: center;
}

.contact-section .section-title {
    margin-bottom: 2rem;
    font-size: 2.8rem;
    font-weight: 600;
    color: #181c2f;
    text-align: center;
}

.contact-content {
    max-width: 500px;
    margin: 0 auto;
}

#contactForm {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.input-wrapper label {
    color: #181c2f;
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

#contactForm input,
#contactForm textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #eef1f6;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

#contactForm textarea {
    min-height: 120px;
    resize: vertical;
}

#contactForm input:focus,
#contactForm textarea:focus {
    border-color: #00c6ff;
    background: #ffffff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 198, 255, 0.1);
}

.submit-btn {
    background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 198, 255, 0.2);
    margin: 0 auto;
    width: auto;
    min-width: 180px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 198, 255, 0.3);
    background: linear-gradient(135deg, #0072ff 0%, #00c6ff 100%);
}

.submit-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    #contactForm {
        padding: 1.5rem;
    }

    .submit-btn {
        width: 100%;
        padding: 0.8rem 1.5rem;
    }

    .service-card p {
        max-width: 100%;
    }
}

/* About section improvements */
.about-section {
    position: relative;
    padding: 100px 0;
    background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1920&q=80') no-repeat center fixed;
    background-size: cover;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.about-section .container {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.about-section .section-title {
    color: #fff;
    font-size: 2.8rem;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.about-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    border-radius: 2px;
}

.about-text {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.about-section .highlight-text {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #fff;
    line-height: 1.4;
}

.company-name {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.about-section .lead-text {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #a8b2d1;
    line-height: 1.8;
}

.about-section .specialties {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.about-section .specialties li {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.about-section .specialties li:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px rgba(0, 198, 255, 0.15);
}

.about-section .specialties i {
    color: #00c6ff;
    font-size: 1.4rem;
}

.about-section .industry-text {
    font-size: 1.1rem;
    color: #a8b2d1;
    margin-top: 40px;
    line-height: 1.8;
}

.highlight {
    color: #00c6ff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.highlight:hover {
    color: #0072ff;
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }

    .about-text {
        padding: 30px 20px;
    }

    .about-section .highlight-text {
        font-size: 1.8rem;
    }

    .about-section .specialties {
        flex-direction: column;
        gap: 20px;
    }

    .about-section .specialties li {
        width: 100%;
        justify-content: center;
    }
}

.process-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.process-tabs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-tabs .tab {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.process-tabs .tab:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.process-tabs .tab i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.process-tabs .tab h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.5rem;
}

.process-tabs .tab p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.process-tabs .tab.active {
    border-bottom: 3px solid var(--primary-color);
}

@media (max-width: 768px) {
    .process-tabs {
        grid-template-columns: 1fr;
    }
}

.faq-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
}

.faq-section .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-section .section-title {
    text-align: center;
    margin-bottom: 50px;
    color: #181c2f;
    font-size: 2.5rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: #ffffff;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    color: #181c2f;
    font-weight: 500;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question i {
    font-size: 1rem;
    color: #00c6ff;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #f8f9fa;
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 20px 25px;
    max-height: 300px;
}

.stats-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 100px 0;
    text-align: center;
}

.stats-section .container {
    max-width: 1200px;
    margin: 2;
    padding: 0 40px;
}

.stats-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    justify-content: center;
    max-width: 720px;
    margin: 0 auto;
}

.stat {
    background: #ffffff;
    padding: 40px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 198, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 198, 255, 0.2);
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
}

.stat-icon {
    margin-bottom: 20px;
}

.stat-icon i {
    font-size: 2.5rem;
    color: #00c6ff;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #181c2f;
    margin: 10px 0;
    display: block;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    display: block;
    margin-top: 5px;
}

@media (max-width: 992px) {
    .stats-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .stat {
        padding: 30px 15px;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .stats-list {
        grid-template-columns: 1fr;
        max-width: 350px;
    }

    .stat {
        padding: 30px 20px;
    }
}

/* Updated Footer Styles */
.site-footer {
    background: #181c2f;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info .footer-logo {
    font-size: 1.8rem;
    margin-bottom: 15px;
    background: linear-gradient(120deg, #fff, #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-info .footer-description {
    color: #a8b2d1;
    font-size: 1rem;
    line-height: 1.6;
}

.footer-links h4,
.footer-social h4,
.footer-contact h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #a8b2d1;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #00c6ff;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #a8b2d1;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #00c6ff;
    transform: translateY(-3px);
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #a8b2d1;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-contact a i {
    color: #00c6ff;
}

.footer-contact a:hover {
    color: #00c6ff;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: #a8b2d1;
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .faq-section .section-title {
        font-size: 2rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }

    .faq-answer {
        font-size: 0.95rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-info, .footer-links, .footer-social, .footer-contact {
        text-align: center;
    }

    .footer-links nav {
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-contact a {
        justify-content: center;
    }
}
