﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: #ffffff;
    color: #0f172a;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

/* NAVBAR */
.hero-section {
    min-height: 100vh;
    background: #ffffff;
    position: relative;
}

.navbar {
    padding: 20px 0;
    background: white;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 65px;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

    .nav-links a {
        color: #64748b;
        font-weight: 600;
        transition: 0.3s;
        position: relative;
    }

        .nav-links a:hover,
        .nav-links .active {
            color: #2563eb;
        }

            .nav-links .active::after {
                content: "";
                position: absolute;
                width: 100%;
                height: 2px;
                background: #2563eb;
                bottom: -8px;
                left: 0;
            }

.btn-primary {
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    color: white;
    padding: 14px 30px;
    border-radius: 14px;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

    .btn-primary:hover {
        transform: translateY(-3px);
    }

.btn-outline {
    border: 1px solid #d1d5db;
    color: #0f172a;
    padding: 14px 30px;
    border-radius: 14px;
    transition: 0.3s;
    font-weight: 600;
    background: white;
}

    .btn-outline:hover {
        border-color: #2563eb;
        color: #2563eb;
    }

/* HERO */
.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 0 60px;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.tagline {
    display: inline-block;
    color: #2563eb;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 14px;
}

.hero-text h1 {
    font-size: 72px;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
    color: #0f172a;
}

    .hero-text h1 span {
        color: #2563eb;
    }

.hero-text p {
    color: #64748b;
    font-size: 18px;
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    text-align: center;
}

    .hero-image img {
        width: 100%;
        max-width: 500px;
    }

/* STATS */
.stats {
    padding: 40px 0 80px;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.stat-card {
    background: white;
    padding: 28px;
    border-radius: 16px;
    display: flex;
    gap: 18px;
    align-items: center;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    transition: 0.3s;
}

    .stat-card:hover {
        transform: translateY(-6px);
    }

.icon {
    width: 60px;
    height: 60px;
    background: #eff6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 24px;
}

.stat-card h3 {
    font-size: 30px;
    color: #0f172a;
    margin-bottom: 4px;
}

.stat-card p {
    color: #64748b;
    font-size: 14px;
}

/* SECTIONS */
.services,
.projects {
    padding: 90px 0;
    background: white;
}

.section-tag {
    color: #2563eb;
    font-weight: 700;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 12px;
    text-align: center;
    font-size: 14px;
}

.services h2,
.projects h2 {
    font-size: 48px;
    margin-bottom: 50px;
    text-align: center;
    color: #0f172a;
}

/* SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card {
    background: white;
    padding: 35px;
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    transition: 0.3s;
}

    .service-card:hover {
        transform: translateY(-8px);
    }

.service-icon {
    width: 55px;
    height: 55px;
    background: #eff6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 22px;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 22px;
    color: #0f172a;
}

.service-card p {
    color: #64748b;
    line-height: 1.7;
}

/* PROJECTS */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.project-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    transition: 0.3s;
}

    .project-card:hover {
        transform: translateY(-8px);
    }

    .project-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

.project-content {
    padding: 22px;
}

    .project-content h3 {
        font-size: 20px;
        margin-bottom: 12px;
        color: #0f172a;
    }

    .project-content p {
        color: #64748b;
        line-height: 1.7;
        margin-bottom: 18px;
        font-size: 14px;
    }

    .project-content a {
        color: #2563eb;
        font-weight: 700;
    }

/* RESPONSIVE */
@media (max-width: 1200px) {
    .services-grid,
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-text h1 {
        font-size: 56px;
    }
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text p {
        margin: auto auto 35px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-text h1 {
        font-size: 46px;
    }
}

@media (max-width: 600px) {
    .services-grid,
    .projects-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .services h2,
    .projects h2 {
        font-size: 32px;
    }

    .btn-primary {
        display: none;
    }
}
.about-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

/* HERO */
.about-hero {
    padding: 90px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
}

.about-header {
    text-align: center;
    margin-bottom: 70px;
}

.about-tagline {
    display: inline-block;
    color: #2563eb;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 14px;
    margin-bottom: 18px;
}

.about-title {
    font-size: 72px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    text-align: left;
}

    .about-title::after {
        content: "";
        display: block;
        width: 100%;
        height: 2px;
        background: #2563eb;
        border-radius: 10px;
        margin-top: 18px;
    }

.about-main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 70px;
}
    .about-main h1 {
        color: #2563eb;
    }

    .about-left {
        flex: 1;
    }

.about-company-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #0f172a;
}

.about-description {
    font-size: 18px;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 20px;
}

.about-mission-vision {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-info-card {
    background: white;
    border-radius: 20px;
    padding: 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    border: 1px solid #e2e8f0;
}

.about-icon {
    width: 60px;
    height: 60px;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.about-info-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #0f172a;
}

.about-info-card p {
    color: #64748b;
    line-height: 1.7;
}

.about-right {
    flex: 1;
}

    .about-right img {
        width: 100%;
        border-radius: 24px;
        box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
    }

/* VALUES */
.about-values-section {
    padding: 100px 0;
    background: white;
}

.about-small-title {
    display: block;
    text-align: center;
    color: #2563eb;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.about-section-title {
    text-align: center;
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 60px;
    color: #0f172a;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.about-value-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    transition: 0.3s;
}

    .about-value-card:hover {
        transform: translateY(-8px);
    }

.about-value-icon {
    width: 70px;
    height: 70px;
    margin: auto auto 20px;
    border-radius: 50%;
    background: #eff6ff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.about-value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #0f172a;
}

.about-value-card p {
    color: #64748b;
    line-height: 1.7;
}

/* WHY US */
.about-why-section {
    padding: 100px 0;
    background: #f8fbff;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.about-feature-item {
    background: white;
    padding: 28px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
    transition: 0.3s;
}

    .about-feature-item:hover {
        transform: translateY(-8px);
    }

.about-feature-icon {
    width: 60px;
    height: 60px;
    margin: auto auto 20px;
    border-radius: 50%;
    background: #eff6ff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.about-feature-item h3 {
    font-size: 20px;
    margin-bottom: 14px;
    color: #0f172a;
}

.about-feature-item p {
    color: #64748b;
    line-height: 1.7;
    font-size: 15px;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .about-main {
        flex-direction: column;
    }

    .about-title {
        font-size: 42px;
    }

    .about-company-title {
        font-size: 32px;
    }
}

@media (max-width: 600px) {
    .about-values-grid,
    .about-features-grid {
        grid-template-columns: 1fr;
    }

    .about-title {
        font-size: 34px;
    }

    .about-section-title {
        font-size: 30px;
    }

    .about-description {
        font-size: 16px;
    }
}


.services-page {
    padding: 80px 0 100px;
    background: #ffffff;
    overflow-x: hidden;
}

.services-page-hero {
    text-align: center;
    margin-bottom: 70px;
}

    .services-page-hero h1 {
        font-size: 52px;
        font-weight: 800;
        color: #0b1b4d;
        margin-bottom: 20px;
        line-height: 1.3;
    }

.services-page-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 18px;
    flex-wrap: wrap;
}

    .services-page-breadcrumb a {
        text-decoration: none;
        color: #2563eb;
        font-weight: 600;
    }

    .services-page-breadcrumb span {
        color: #64748b;
    }

.services-page-hero p {
    max-width: 750px;
    margin: auto;
    font-size: 19px;
    line-height: 1.9;
    color: #64748b;
}

.services-page-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
}

.services-page-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 35px 28px;
    transition: all 0.3s ease;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

    .services-page-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    }

.services-page-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #eef4ff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
}

.services-page-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: #0b1b4d;
    margin-bottom: 18px;
    line-height: 1.5;
}

.services-page-card p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 20px;
}

.services-page-card a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 700;
}

    .services-page-card a:hover {
        color: #1d4ed8;
    }

/* Tablet */
@media (max-width: 1200px) {
    .services-page-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Mobile */
@media (max-width: 768px) {

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .services-page {
        padding: 50px 0 70px;
    }

    .services-page-hero {
        margin-bottom: 40px;
    }

        .services-page-hero h1 {
            font-size: 32px;
        }

        .services-page-hero p {
            font-size: 15px;
            line-height: 1.8;
            max-width: 100%;
        }

    .services-page-breadcrumb {
        font-size: 14px;
        gap: 6px;
    }

    .services-page-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-page-card {
        padding: 24px 18px;
        border-radius: 18px;
    }

    .services-page-icon {
        width: 60px;
        height: 60px;
        font-size: 22px;
        margin-bottom: 18px;
    }

    .services-page-card h3 {
        font-size: 20px;
    }

    .services-page-card p {
        font-size: 14px;
    }
}

.technologies-page {
    padding: 80px 0 100px;
    background: #ffffff;
    overflow-x: hidden;
}

.technologies-page-hero {
    text-align: center;
    margin-bottom: 70px;
}

    .technologies-page-hero h1 {
        font-size: 52px;
        font-weight: 800;
        color: #0b1b4d;
        margin-bottom: 20px;
    }

.technologies-page-breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

    .technologies-page-breadcrumb a {
        color: #2563eb;
        text-decoration: none;
        font-weight: 600;
    }

    .technologies-page-breadcrumb span {
        color: #64748b;
    }

.technologies-page-hero p {
    max-width: 700px;
    margin: auto;
    font-size: 18px;
    line-height: 1.9;
    color: #64748b;
}

.technologies-page-section {
    margin-bottom: 70px;
}

    .technologies-page-section h2 {
        font-size: 32px;
        font-weight: 800;
        color: #0b1b4d;
        margin-bottom: 35px;
    }

.technologies-page-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.technologies-page-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 35px 20px;
    text-align: center;
    transition: 0.3s;
}

    .technologies-page-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    }

.technologies-page-icon {
    width: 72px;
    height: 72px;
    background: #eef4ff;
    color: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
}

.technologies-page-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0b1b4d;
}

@media (max-width: 1200px) {
    .technologies-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .technologies-page {
        padding: 50px 0 70px;
    }

    .technologies-page-hero h1 {
        font-size: 34px;
    }

    .technologies-page-hero p {
        font-size: 15px;
        padding: 0 15px;
    }

    .technologies-page-section h2 {
        font-size: 24px;
        text-align: center;
    }

    .technologies-page-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .technologies-page-card {
        padding: 28px 18px;
    }

    .technologies-page-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

.contact-page {
    padding: 80px 0 120px;
    background: #ffffff;
    overflow-x: hidden;
    max-width: 100%;
}

.contact-page-hero {
    text-align: center;
    margin-bottom: 70px;
}

    .contact-page-hero h1 {
        font-size: 52px;
        font-weight: 800;
        color: #0b1b4d;
        margin-bottom: 20px;
        line-height: 1.3;
    }

.contact-page-breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

    .contact-page-breadcrumb a {
        color: #2563eb;
        text-decoration: none;
        font-weight: 600;
    }

    .contact-page-breadcrumb span {
        color: #64748b;
    }

.contact-page-hero p {
    max-width: 700px;
    margin: auto;
    font-size: 18px;
    line-height: 1.9;
    color: #64748b;
}

/* LAYOUT */

.contact-page-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

/* INFO */

.contact-page-info h2,
.contact-page-form-box h2 {
    font-size: 34px;
    font-weight: 800;
    color: #0b1b4d;
    margin-bottom: 15px;
}

.contact-page-info > p,
.contact-page-form-box > p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-page-info-card {
    display: flex;
    gap: 20px;
    align-items: center;
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 20px;
    border-radius: 18px;
    margin-bottom: 20px;
}

.contact-page-info-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: #eef4ff;
    color: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.contact-page-info-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0b1b4d;
    margin-bottom: 6px;
}

.contact-page-info-card p,
.contact-page-info-card span {
    color: #64748b;
    margin: 0;
    word-break: break-word;
}

/* FORM */

.contact-page-form-box {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    overflow: hidden;
}

.contact-page-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-page-form-group {
    margin-bottom: 20px;
}

    .contact-page-form-group label {
        display: block;
        font-weight: 600;
        color: #0b1b4d;
        margin-bottom: 10px;
    }

.contact-page-input,
.contact-page-textarea {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 16px;
    outline: none;
    box-sizing: border-box;
    transition: 0.3s;
}

    .contact-page-input:focus,
    .contact-page-textarea:focus {
        border-color: #2563eb;
    }

.contact-page-textarea {
    min-height: 160px;
    resize: vertical;
}

.contact-page-btn {
    background: #2563eb;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 14px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

    .contact-page-btn:hover {
        background: #1d4ed8;
    }

.text-danger {
    color: #dc2626;
    font-size: 14px;
}

/* ALERTS */

.contact-success-message {
    background: #dcfce7;
    color: #166534;
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-error-message {
    background: #fee2e2;
    color: #991b1b;
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-weight: 600;
}

/* RECAPTCHA */

.g-recaptcha {
    transform-origin: center;
}

/* TABLET */

@media (max-width: 992px) {
    .contact-page-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-page-info {
        order: 2;
    }

    .contact-page-form-box {
        order: 1;
    }
}

/* MOBILE */

@media (max-width: 768px) {

    .contact-page {
        padding: 50px 0 120px;
    }

    .contact-page-hero {
        margin-bottom: 40px;
        padding: 0 15px;
    }

        .contact-page-hero h1 {
            font-size: 32px;
        }

        .contact-page-hero p {
            font-size: 15px;
            line-height: 1.7;
        }

    .contact-page-form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-page-form-box {
        padding: 20px;
        border-radius: 20px;
    }

        .contact-page-info h2,
        .contact-page-form-box h2 {
            font-size: 24px;
        }

    .contact-page-info-card {
        padding: 16px;
        gap: 14px;
    }

    .contact-page-info-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 18px;
    }

    .contact-page-info-card h3 {
        font-size: 17px;
    }

    .contact-page-input,
    .contact-page-textarea {
        font-size: 15px;
        padding: 13px 14px;
    }

    .contact-page-btn {
        width: 100%;
        padding: 16px;
    }

    .g-recaptcha {
        transform: scale(0.85);
    }
}

/* SMALL MOBILE */

@media (max-width: 420px) {

    .contact-page-hero h1 {
        font-size: 26px;
    }

    .contact-page-form-box {
        padding: 16px;
    }

    .g-recaptcha {
        transform: scale(0.76);
    }
}

.site-footer {
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    padding: 70px 0 25px;
    margin-top: 80px;
}

.site-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 40px;
}

.site-footer-brand img {
    width: 180px;
    margin-bottom: 20px;
}

.site-footer-brand p {
    color: #64748b;
    line-height: 1.9;
    margin-bottom: 25px;
}

.site-footer-social {
    display: flex;
    gap: 14px;
}

    .site-footer-social a {
        width: 42px;
        height: 42px;
        background: #eef4ff;
        color: #2563eb;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: 0.3s;
    }

        .site-footer-social a:hover {
            background: #2563eb;
            color: white;
        }

.site-footer h3 {
    font-size: 22px;
    color: #0b1b4d;
    margin-bottom: 20px;
    font-weight: 800;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .site-footer ul li {
        margin-bottom: 14px;
        color: #64748b;
    }

        .site-footer ul li a {
            text-decoration: none;
            color: #64748b;
            transition: 0.3s;
        }

            .site-footer ul li a:hover {
                color: #2563eb;
            }

.site-footer-contact li {
    display: flex;
    gap: 12px;
    align-items: center;
}

.site-footer-contact i {
    color: #2563eb;
}

.site-footer-bottom {
    text-align: center;
    border-top: 1px solid #e5e7eb;
    margin-top: 50px;
    padding-top: 25px;
}

    .site-footer-bottom p {
        color: #64748b;
        margin: 0;
    }

@media (max-width: 992px) {
    .site-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 50px 0 20px;
    }

    .site-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .site-footer-social {
        justify-content: center;
    }

    .site-footer-contact li {
        justify-content: center;
    }
}

.footer-ltr {
    direction: ltr;
    unicode-bidi: bidi-override;
    display: inline-block;
}

.web-development-page {
    overflow-x: hidden;
}

.web-development-hero {
    background: linear-gradient(135deg, #eef4ff, #ffffff);
    padding: 100px 0;
    text-align: center;
}

.web-development-breadcrumb {
    margin-bottom: 20px;
    color: #64748b;
}

    .web-development-breadcrumb a {
        color: #2563eb;
        text-decoration: none;
        font-weight: 600;
    }

.web-development-hero h1 {
    font-size: 56px;
    font-weight: 800;
    color: #0b1b4d;
    margin-bottom: 20px;
}

.web-development-hero p {
    max-width: 750px;
    margin: auto;
    font-size: 20px;
    line-height: 1.9;
    color: #64748b;
}

.web-development-btn {
    display: inline-block;
    margin-top: 30px;
    background: #2563eb;
    color: white;
    padding: 15px 32px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
}

.web-development-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 90px 0;
}

.web-development-image {
    background: #eef4ff;
    height: 320px;
    border-radius: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .web-development-image i {
        font-size: 120px;
        color: #2563eb;
    }

.web-development-about h2,
.web-development-features h2,
.web-development-tech h2,
.web-development-process h2 {
    font-size: 40px;
    font-weight: 800;
    color: #0b1b4d;
    margin-bottom: 30px;
}

.web-development-about p {
    color: #64748b;
    line-height: 2;
    font-size: 17px;
}

.web-development-features {
    padding: 80px 0;
    background: #f8fbff;
}

.web-development-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.web-development-card {
    background: white;
    padding: 35px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid #e5e7eb;
}

    .web-development-card i {
        font-size: 36px;
        color: #2563eb;
        margin-bottom: 20px;
    }

.web-development-tech {
    padding: 80px 0;
    text-align: center;
}

.web-development-tech-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

    .web-development-tech-list span {
        background: #eef4ff;
        color: #2563eb;
        padding: 14px 22px;
        border-radius: 40px;
        font-weight: 700;
    }

.web-development-process {
    padding: 80px 0;
    background: #ffffff;
}

.web-development-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

    .web-development-process-grid div {
        background: #f8fbff;
        padding: 30px;
        border-radius: 24px;
        text-align: center;
    }

    .web-development-process-grid span {
        font-size: 36px;
        font-weight: 800;
        color: #2563eb;
    }

.web-development-cta {
    background: #0b1b4d;
    color: white;
    padding: 90px 0;
    text-align: center;
}

    .web-development-cta h2 {
        font-size: 42px;
        margin-bottom: 15px;
    }

    .web-development-cta p {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .web-development-cta a {
        background: white;
        color: #0b1b4d;
        padding: 14px 30px;
        border-radius: 14px;
        text-decoration: none;
        font-weight: 700;
    }

@media (max-width: 992px) {
    .web-development-grid,
    .web-development-cards,
    .web-development-process-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .web-development-hero h1 {
        font-size: 34px;
    }

    .web-development-hero p {
        font-size: 15px;
    }

    .web-development-about h2,
    .web-development-features h2,
    .web-development-tech h2,
    .web-development-process h2 {
        font-size: 28px;
        text-align: center;
    }
}

.business-systems-page {
    overflow-x: hidden;
}

.business-systems-hero {
    background: linear-gradient(135deg, #eef4ff, #ffffff);
    padding: 100px 0;
    text-align: center;
}

.business-systems-breadcrumb {
    margin-bottom: 20px;
    color: #64748b;
}

    .business-systems-breadcrumb a {
        color: #2563eb;
        text-decoration: none;
        font-weight: 600;
    }

.business-systems-hero h1 {
    font-size: 56px;
    font-weight: 800;
    color: #0b1b4d;
    margin-bottom: 20px;
}

.business-systems-hero p {
    max-width: 750px;
    margin: auto;
    font-size: 20px;
    line-height: 1.9;
    color: #64748b;
}

.business-systems-btn {
    display: inline-block;
    margin-top: 30px;
    background: #2563eb;
    color: white;
    padding: 15px 32px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

    .business-systems-btn:hover {
        background: #1d4ed8;
        color: white;
    }

.business-systems-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 90px 0;
}

.business-systems-image {
    background: #eef4ff;
    height: 320px;
    border-radius: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .business-systems-image i {
        font-size: 120px;
        color: #2563eb;
    }

.business-systems-about h2,
.business-systems-features h2,
.business-systems-tech h2,
.business-systems-process h2 {
    font-size: 40px;
    font-weight: 800;
    color: #0b1b4d;
    margin-bottom: 30px;
}

.business-systems-about p {
    color: #64748b;
    line-height: 2;
    font-size: 17px;
}

.business-systems-features {
    padding: 80px 0;
    background: #f8fbff;
}

.business-systems-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.business-systems-card {
    background: white;
    padding: 35px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: 0.3s;
}

    .business-systems-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    }

    .business-systems-card i {
        font-size: 36px;
        color: #2563eb;
        margin-bottom: 20px;
    }

    .business-systems-card h3 {
        font-size: 22px;
        font-weight: 700;
        color: #0b1b4d;
        margin-bottom: 12px;
    }

    .business-systems-card p {
        color: #64748b;
        line-height: 1.8;
    }

.business-systems-tech {
    padding: 80px 0;
    text-align: center;
}

.business-systems-tech-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

    .business-systems-tech-list span {
        background: #eef4ff;
        color: #2563eb;
        padding: 14px 22px;
        border-radius: 40px;
        font-weight: 700;
    }

.business-systems-process {
    padding: 80px 0;
    background: #ffffff;
}

.business-systems-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

    .business-systems-process-grid div {
        background: #f8fbff;
        padding: 30px;
        border-radius: 24px;
        text-align: center;
        transition: 0.3s;
    }

        .business-systems-process-grid div:hover {
            transform: translateY(-6px);
        }

    .business-systems-process-grid span {
        font-size: 36px;
        font-weight: 800;
        color: #2563eb;
        display: block;
        margin-bottom: 15px;
    }

    .business-systems-process-grid h3 {
        font-size: 20px;
        color: #0b1b4d;
        font-weight: 700;
    }

.business-systems-cta {
    background: #0b1b4d;
    color: white;
    padding: 90px 0;
    text-align: center;
}

    .business-systems-cta h2 {
        font-size: 42px;
        margin-bottom: 15px;
        font-weight: 800;
    }

    .business-systems-cta p {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .business-systems-cta a {
        background: white;
        color: #0b1b4d;
        padding: 14px 30px;
        border-radius: 14px;
        text-decoration: none;
        font-weight: 700;
        transition: 0.3s;
    }

        .business-systems-cta a:hover {
            background: #eef4ff;
        }

/* Tablet */
@media (max-width: 992px) {
    .business-systems-grid,
    .business-systems-cards,
    .business-systems-process-grid {
        grid-template-columns: 1fr;
    }

    .business-systems-grid {
        gap: 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .business-systems-hero {
        padding: 70px 0;
    }

        .business-systems-hero h1 {
            font-size: 34px;
        }

        .business-systems-hero p {
            font-size: 15px;
        }

    .business-systems-about h2,
    .business-systems-features h2,
    .business-systems-tech h2,
    .business-systems-process h2 {
        font-size: 28px;
        text-align: center;
    }

    .business-systems-image {
        height: 220px;
    }

        .business-systems-image i {
            font-size: 80px;
        }

    .business-systems-card {
        padding: 24px;
    }

    .business-systems-cta h2 {
        font-size: 30px;
    }

    .business-systems-cta p {
        font-size: 15px;
    }
}

.ui-ux-page {
    overflow-x: hidden;
}

.ui-ux-hero {
    background: linear-gradient(135deg, #eef4ff, #ffffff);
    padding: 100px 0;
    text-align: center;
}

.ui-ux-breadcrumb {
    margin-bottom: 20px;
    color: #64748b;
}

    .ui-ux-breadcrumb a {
        color: #2563eb;
        text-decoration: none;
        font-weight: 600;
    }

.ui-ux-hero h1 {
    font-size: 56px;
    font-weight: 800;
    color: #0b1b4d;
    margin-bottom: 20px;
}

.ui-ux-hero p {
    max-width: 750px;
    margin: auto;
    font-size: 20px;
    line-height: 1.9;
    color: #64748b;
}

.ui-ux-btn {
    display: inline-block;
    margin-top: 30px;
    background: #2563eb;
    color: white;
    padding: 15px 32px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
}

.ui-ux-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 90px 0;
}

.ui-ux-image {
    background: #eef4ff;
    height: 320px;
    border-radius: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .ui-ux-image i {
        font-size: 120px;
        color: #2563eb;
    }

.ui-ux-about h2,
.ui-ux-features h2,
.ui-ux-tools h2,
.ui-ux-process h2 {
    font-size: 40px;
    font-weight: 800;
    color: #0b1b4d;
    margin-bottom: 30px;
}

.ui-ux-about p {
    color: #64748b;
    line-height: 2;
    font-size: 17px;
}

.ui-ux-features {
    padding: 80px 0;
    background: #f8fbff;
}

.ui-ux-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.ui-ux-card {
    background: white;
    padding: 35px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid #e5e7eb;
}

    .ui-ux-card i {
        font-size: 36px;
        color: #2563eb;
        margin-bottom: 20px;
    }

.ui-ux-tools {
    padding: 80px 0;
    text-align: center;
}

.ui-ux-tools-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

    .ui-ux-tools-list span {
        background: #eef4ff;
        color: #2563eb;
        padding: 14px 22px;
        border-radius: 40px;
        font-weight: 700;
    }

.ui-ux-process {
    padding: 80px 0;
}

.ui-ux-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

    .ui-ux-process-grid div {
        background: #f8fbff;
        padding: 30px;
        border-radius: 24px;
        text-align: center;
    }

    .ui-ux-process-grid span {
        font-size: 36px;
        font-weight: 800;
        color: #2563eb;
    }

.ui-ux-cta {
    background: #0b1b4d;
    color: white;
    padding: 90px 0;
    text-align: center;
}

    .ui-ux-cta h2 {
        font-size: 42px;
        margin-bottom: 15px;
    }

    .ui-ux-cta p {
        margin-bottom: 30px;
    }

    .ui-ux-cta a {
        background: white;
        color: #0b1b4d;
        padding: 14px 30px;
        border-radius: 14px;
        text-decoration: none;
        font-weight: 700;
    }

@media (max-width: 992px) {
    .ui-ux-grid,
    .ui-ux-cards,
    .ui-ux-process-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .ui-ux-hero h1 {
        font-size: 34px;
    }

    .ui-ux-hero p {
        font-size: 15px;
    }

    .ui-ux-about h2,
    .ui-ux-features h2,
    .ui-ux-tools h2,
    .ui-ux-process h2 {
        font-size: 28px;
        text-align: center;
    }
}

.api-development-page {
    overflow-x: hidden;
}

.api-development-hero {
    background: linear-gradient(135deg, #eef4ff, #ffffff);
    padding: 100px 0;
    text-align: center;
}

.api-development-breadcrumb {
    margin-bottom: 20px;
    color: #64748b;
}

    .api-development-breadcrumb a {
        color: #2563eb;
        text-decoration: none;
        font-weight: 600;
    }

.api-development-hero h1 {
    font-size: 56px;
    font-weight: 800;
    color: #0b1b4d;
    margin-bottom: 20px;
}

.api-development-hero p {
    max-width: 750px;
    margin: auto;
    font-size: 20px;
    line-height: 1.9;
    color: #64748b;
}

.api-development-btn {
    display: inline-block;
    margin-top: 30px;
    background: #2563eb;
    color: white;
    padding: 15px 32px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
}

.api-development-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 90px 0;
}

.api-development-image {
    background: #eef4ff;
    height: 320px;
    border-radius: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .api-development-image i {
        font-size: 120px;
        color: #2563eb;
    }

.api-development-about h2,
.api-development-features h2,
.api-development-tech h2,
.api-development-process h2 {
    font-size: 40px;
    font-weight: 800;
    color: #0b1b4d;
    margin-bottom: 30px;
}

.api-development-about p {
    color: #64748b;
    line-height: 2;
    font-size: 17px;
}

.api-development-features {
    padding: 80px 0;
    background: #f8fbff;
}

.api-development-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.api-development-card {
    background: white;
    padding: 35px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid #e5e7eb;
}

    .api-development-card i {
        font-size: 36px;
        color: #2563eb;
        margin-bottom: 20px;
    }

.api-development-tech {
    padding: 80px 0;
    text-align: center;
}

.api-development-tech-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

    .api-development-tech-list span {
        background: #eef4ff;
        color: #2563eb;
        padding: 14px 22px;
        border-radius: 40px;
        font-weight: 700;
    }

.api-development-process {
    padding: 80px 0;
}

.api-development-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

    .api-development-process-grid div {
        background: #f8fbff;
        padding: 30px;
        border-radius: 24px;
        text-align: center;
    }

    .api-development-process-grid span {
        font-size: 36px;
        font-weight: 800;
        color: #2563eb;
    }

.api-development-cta {
    background: #0b1b4d;
    color: white;
    padding: 90px 0;
    text-align: center;
}

    .api-development-cta h2 {
        font-size: 42px;
        margin-bottom: 15px;
    }

    .api-development-cta a {
        background: white;
        color: #0b1b4d;
        padding: 14px 30px;
        border-radius: 14px;
        text-decoration: none;
        font-weight: 700;
    }

@media (max-width: 992px) {
    .api-development-grid,
    .api-development-cards,
    .api-development-process-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .api-development-hero h1 {
        font-size: 34px;
    }

    .api-development-hero p {
        font-size: 15px;
    }

    .api-development-about h2,
    .api-development-features h2,
    .api-development-tech h2,
    .api-development-process h2 {
        font-size: 28px;
        text-align: center;
    }
}

.maintenance-support-page {
    overflow-x: hidden;
}

.maintenance-support-hero {
    background: linear-gradient(135deg, #eef4ff, #ffffff);
    padding: 100px 0;
    text-align: center;
}

.maintenance-support-breadcrumb {
    margin-bottom: 20px;
    color: #64748b;
}

    .maintenance-support-breadcrumb a {
        color: #2563eb;
        text-decoration: none;
        font-weight: 600;
    }

.maintenance-support-hero h1 {
    font-size: 56px;
    font-weight: 800;
    color: #0b1b4d;
    margin-bottom: 20px;
}

.maintenance-support-hero p {
    max-width: 750px;
    margin: auto;
    font-size: 20px;
    line-height: 1.9;
    color: #64748b;
}

.maintenance-support-btn {
    display: inline-block;
    margin-top: 30px;
    background: #2563eb;
    color: white;
    padding: 15px 32px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
}

.maintenance-support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 90px 0;
}

.maintenance-support-image {
    background: #eef4ff;
    height: 320px;
    border-radius: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .maintenance-support-image i {
        font-size: 120px;
        color: #2563eb;
    }

.maintenance-support-about h2,
.maintenance-support-features h2,
.maintenance-support-tech h2,
.maintenance-support-process h2 {
    font-size: 40px;
    font-weight: 800;
    color: #0b1b4d;
    margin-bottom: 30px;
}

.maintenance-support-about p {
    color: #64748b;
    line-height: 2;
    font-size: 17px;
}

.maintenance-support-features {
    padding: 80px 0;
    background: #f8fbff;
}

.maintenance-support-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.maintenance-support-card {
    background: white;
    padding: 35px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid #e5e7eb;
}

    .maintenance-support-card i {
        font-size: 36px;
        color: #2563eb;
        margin-bottom: 20px;
    }

.maintenance-support-tech {
    padding: 80px 0;
    text-align: center;
}

.maintenance-support-tech-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

    .maintenance-support-tech-list span {
        background: #eef4ff;
        color: #2563eb;
        padding: 14px 22px;
        border-radius: 40px;
        font-weight: 700;
    }

.maintenance-support-process {
    padding: 80px 0;
}

.maintenance-support-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

    .maintenance-support-process-grid div {
        background: #f8fbff;
        padding: 30px;
        border-radius: 24px;
        text-align: center;
    }

    .maintenance-support-process-grid span {
        font-size: 36px;
        font-weight: 800;
        color: #2563eb;
    }

.maintenance-support-cta {
    background: #0b1b4d;
    color: white;
    padding: 90px 0;
    text-align: center;
}

    .maintenance-support-cta h2 {
        font-size: 42px;
        margin-bottom: 15px;
    }

    .maintenance-support-cta a {
        background: white;
        color: #0b1b4d;
        padding: 14px 30px;
        border-radius: 14px;
        text-decoration: none;
        font-weight: 700;
    }

@media (max-width: 992px) {
    .maintenance-support-grid,
    .maintenance-support-cards,
    .maintenance-support-process-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .maintenance-support-hero h1 {
        font-size: 34px;
    }

    .maintenance-support-hero p {
        font-size: 15px;
    }

    .maintenance-support-about h2,
    .maintenance-support-features h2,
    .maintenance-support-tech h2,
    .maintenance-support-process h2 {
        font-size: 28px;
        text-align: center;
    }
}

.cloud-hosting-page {
    overflow-x: hidden;
}

.cloud-hosting-hero {
    background: linear-gradient(135deg, #eef4ff, #ffffff);
    padding: 100px 0;
    text-align: center;
}

.cloud-hosting-breadcrumb {
    margin-bottom: 20px;
    color: #64748b;
}

    .cloud-hosting-breadcrumb a {
        color: #2563eb;
        text-decoration: none;
        font-weight: 600;
    }

.cloud-hosting-hero h1 {
    font-size: 56px;
    font-weight: 800;
    color: #0b1b4d;
    margin-bottom: 20px;
}

.cloud-hosting-hero p {
    max-width: 750px;
    margin: auto;
    font-size: 20px;
    line-height: 1.9;
    color: #64748b;
}

.cloud-hosting-btn {
    display: inline-block;
    margin-top: 30px;
    background: #2563eb;
    color: white;
    padding: 15px 32px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
}

.cloud-hosting-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 90px 0;
}

.cloud-hosting-image {
    background: #eef4ff;
    height: 320px;
    border-radius: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .cloud-hosting-image i {
        font-size: 120px;
        color: #2563eb;
    }

.cloud-hosting-about h2,
.cloud-hosting-features h2,
.cloud-hosting-tech h2,
.cloud-hosting-process h2 {
    font-size: 40px;
    font-weight: 800;
    color: #0b1b4d;
    margin-bottom: 30px;
}

.cloud-hosting-about p {
    color: #64748b;
    line-height: 2;
    font-size: 17px;
}

.cloud-hosting-features {
    padding: 80px 0;
    background: #f8fbff;
}

.cloud-hosting-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.cloud-hosting-card {
    background: white;
    padding: 35px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid #e5e7eb;
}

    .cloud-hosting-card i {
        font-size: 36px;
        color: #2563eb;
        margin-bottom: 20px;
    }

.cloud-hosting-tech {
    padding: 80px 0;
    text-align: center;
}

.cloud-hosting-tech-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

    .cloud-hosting-tech-list span {
        background: #eef4ff;
        color: #2563eb;
        padding: 14px 22px;
        border-radius: 40px;
        font-weight: 700;
    }

.cloud-hosting-process {
    padding: 80px 0;
}

.cloud-hosting-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

    .cloud-hosting-process-grid div {
        background: #f8fbff;
        padding: 30px;
        border-radius: 24px;
        text-align: center;
    }

    .cloud-hosting-process-grid span {
        font-size: 36px;
        font-weight: 800;
        color: #2563eb;
    }

.cloud-hosting-cta {
    background: #0b1b4d;
    color: white;
    padding: 90px 0;
    text-align: center;
}

    .cloud-hosting-cta h2 {
        font-size: 42px;
        margin-bottom: 15px;
    }

    .cloud-hosting-cta a {
        background: white;
        color: #0b1b4d;
        padding: 14px 30px;
        border-radius: 14px;
        text-decoration: none;
        font-weight: 700;
    }

@media (max-width: 992px) {
    .cloud-hosting-grid,
    .cloud-hosting-cards,
    .cloud-hosting-process-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cloud-hosting-hero h1 {
        font-size: 34px;
    }

    .cloud-hosting-hero p {
        font-size: 15px;
    }

    .cloud-hosting-about h2,
    .cloud-hosting-features h2,
    .cloud-hosting-tech h2,
    .cloud-hosting-process h2 {
        font-size: 28px;
        text-align: center;
    }
}

.performance-page {
    overflow-x: hidden;
}

.performance-hero {
    background: linear-gradient(135deg, #eef4ff, #ffffff);
    padding: 100px 0;
    text-align: center;
}

.performance-breadcrumb {
    margin-bottom: 20px;
    color: #64748b;
}

    .performance-breadcrumb a {
        color: #2563eb;
        text-decoration: none;
        font-weight: 600;
    }

.performance-hero h1 {
    font-size: 56px;
    font-weight: 800;
    color: #0b1b4d;
    margin-bottom: 20px;
}

.performance-hero p {
    max-width: 750px;
    margin: auto;
    font-size: 20px;
    line-height: 1.9;
    color: #64748b;
}

.performance-btn {
    display: inline-block;
    margin-top: 30px;
    background: #2563eb;
    color: white;
    padding: 15px 32px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

    .performance-btn:hover {
        background: #1d4ed8;
        color: white;
    }

.performance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 90px 0;
}

.performance-image {
    background: #eef4ff;
    height: 320px;
    border-radius: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .performance-image i {
        font-size: 120px;
        color: #2563eb;
    }

.performance-about h2,
.performance-features h2,
.performance-tech h2,
.performance-process h2 {
    font-size: 40px;
    font-weight: 800;
    color: #0b1b4d;
    margin-bottom: 30px;
}

.performance-about p {
    color: #64748b;
    line-height: 2;
    font-size: 17px;
}

.performance-features {
    padding: 80px 0;
    background: #f8fbff;
}

.performance-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.performance-card {
    background: white;
    padding: 35px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: 0.3s;
}

    .performance-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    }

    .performance-card i {
        font-size: 36px;
        color: #2563eb;
        margin-bottom: 20px;
    }

    .performance-card h3 {
        font-size: 22px;
        font-weight: 700;
        color: #0b1b4d;
        margin-bottom: 12px;
    }

    .performance-card p {
        color: #64748b;
        line-height: 1.8;
    }

.performance-tech {
    padding: 80px 0;
    text-align: center;
}

.performance-tech-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

    .performance-tech-list span {
        background: #eef4ff;
        color: #2563eb;
        padding: 14px 22px;
        border-radius: 40px;
        font-weight: 700;
    }

.performance-process {
    padding: 80px 0;
    background: #ffffff;
}

.performance-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

    .performance-process-grid div {
        background: #f8fbff;
        padding: 30px;
        border-radius: 24px;
        text-align: center;
        transition: 0.3s;
    }

        .performance-process-grid div:hover {
            transform: translateY(-6px);
        }

    .performance-process-grid span {
        font-size: 36px;
        font-weight: 800;
        color: #2563eb;
        display: block;
        margin-bottom: 15px;
    }

    .performance-process-grid h3 {
        font-size: 20px;
        color: #0b1b4d;
        font-weight: 700;
    }

.performance-cta {
    background: #0b1b4d;
    color: white;
    padding: 90px 0;
    text-align: center;
}

    .performance-cta h2 {
        font-size: 42px;
        margin-bottom: 15px;
        font-weight: 800;
    }

    .performance-cta p {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .performance-cta a {
        background: white;
        color: #0b1b4d;
        padding: 14px 30px;
        border-radius: 14px;
        text-decoration: none;
        font-weight: 700;
        transition: 0.3s;
    }

        .performance-cta a:hover {
            background: #eef4ff;
        }

@media (max-width: 992px) {
    .performance-grid,
    .performance-cards,
    .performance-process-grid {
        grid-template-columns: 1fr;
    }

    .performance-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .performance-hero {
        padding: 70px 0;
    }

        .performance-hero h1 {
            font-size: 34px;
        }

        .performance-hero p {
            font-size: 15px;
        }

    .performance-about h2,
    .performance-features h2,
    .performance-tech h2,
    .performance-process h2 {
        font-size: 28px;
        text-align: center;
    }

    .performance-image {
        height: 220px;
    }

        .performance-image i {
            font-size: 80px;
        }

    .performance-card {
        padding: 24px;
    }

    .performance-cta h2 {
        font-size: 30px;
    }

    .performance-cta p {
        font-size: 15px;
    }
}

.cyber-security-page {
    overflow-x: hidden;
}

.cyber-security-hero {
    background: linear-gradient(135deg, #eef4ff, #ffffff);
    padding: 100px 0;
    text-align: center;
}

.cyber-security-breadcrumb {
    margin-bottom: 20px;
    color: #64748b;
}

    .cyber-security-breadcrumb a {
        color: #2563eb;
        text-decoration: none;
        font-weight: 600;
    }

.cyber-security-hero h1 {
    font-size: 56px;
    font-weight: 800;
    color: #0b1b4d;
    margin-bottom: 20px;
}

.cyber-security-hero p {
    max-width: 750px;
    margin: auto;
    font-size: 20px;
    line-height: 1.9;
    color: #64748b;
}

.cyber-security-btn {
    display: inline-block;
    margin-top: 30px;
    background: #2563eb;
    color: white;
    padding: 15px 32px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

    .cyber-security-btn:hover {
        background: #1d4ed8;
        color: white;
    }

.cyber-security-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 90px 0;
}

.cyber-security-image {
    background: #eef4ff;
    height: 320px;
    border-radius: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .cyber-security-image i {
        font-size: 120px;
        color: #2563eb;
    }

.cyber-security-about h2,
.cyber-security-features h2,
.cyber-security-tech h2,
.cyber-security-process h2 {
    font-size: 40px;
    font-weight: 800;
    color: #0b1b4d;
    margin-bottom: 30px;
}

.cyber-security-about p {
    color: #64748b;
    line-height: 2;
    font-size: 17px;
}

.cyber-security-features {
    padding: 80px 0;
    background: #f8fbff;
}

.cyber-security-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.cyber-security-card {
    background: white;
    padding: 35px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: 0.3s;
}

    .cyber-security-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    }

    .cyber-security-card i {
        font-size: 36px;
        color: #2563eb;
        margin-bottom: 20px;
    }

.cyber-security-tech {
    padding: 80px 0;
    text-align: center;
}

.cyber-security-tech-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

    .cyber-security-tech-list span {
        background: #eef4ff;
        color: #2563eb;
        padding: 14px 22px;
        border-radius: 40px;
        font-weight: 700;
    }

.cyber-security-process {
    padding: 80px 0;
}

.cyber-security-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

    .cyber-security-process-grid div {
        background: #f8fbff;
        padding: 30px;
        border-radius: 24px;
        text-align: center;
        transition: 0.3s;
    }

        .cyber-security-process-grid div:hover {
            transform: translateY(-6px);
        }

    .cyber-security-process-grid span {
        font-size: 36px;
        font-weight: 800;
        color: #2563eb;
        display: block;
        margin-bottom: 15px;
    }

.cyber-security-cta {
    background: #0b1b4d;
    color: white;
    padding: 90px 0;
    text-align: center;
}

    .cyber-security-cta h2 {
        font-size: 42px;
        margin-bottom: 15px;
        font-weight: 800;
    }

    .cyber-security-cta p {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .cyber-security-cta a {
        background: white;
        color: #0b1b4d;
        padding: 14px 30px;
        border-radius: 14px;
        text-decoration: none;
        font-weight: 700;
    }

        .cyber-security-cta a:hover {
            background: #eef4ff;
        }

@media (max-width: 992px) {
    .cyber-security-grid,
    .cyber-security-cards,
    .cyber-security-process-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cyber-security-hero h1 {
        font-size: 34px;
    }

    .cyber-security-hero p {
        font-size: 15px;
    }

    .cyber-security-about h2,
    .cyber-security-features h2,
    .cyber-security-tech h2,
    .cyber-security-process h2 {
        font-size: 28px;
        text-align: center;
    }
}

/* =========================================
   PROJECT ESTIMATOR
========================================= */

.project-estimator-page {
    padding-bottom: 120px;
    overflow-x: hidden;
    max-width: 100%;
}

.project-estimator-hero {
    background: linear-gradient(135deg, #eef4ff, #ffffff);
    padding: 90px 0;
    text-align: center;
}

    .project-estimator-hero h1 {
        font-size: 56px;
        font-weight: 800;
        color: #0b1b4d;
        margin-bottom: 20px;
    }

    .project-estimator-hero p {
        max-width: 700px;
        margin: auto;
        color: #64748b;
        font-size: 20px;
        line-height: 1.9;
    }

.project-estimator-success {
    background: #dcfce7;
    color: #166534;
    padding: 18px;
    border-radius: 14px;
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
}

.project-estimator-wrapper {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 35px;
    align-items: start;
    margin-top: 50px;
}

/* LEFT */

.project-estimator-main {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 30px;
    padding: 40px;
    overflow: hidden;
}

/* PROGRESS */

.project-estimator-progress {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.project-step {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    transition: 0.3s;
}

    .project-step.active {
        background: #2563eb;
        color: white;
        transform: scale(1.08);
    }

/* STEPS */

.estimator-step {
    display: none;
}

    .estimator-step.active {
        display: block;
    }

    .estimator-step h2 {
        font-size: 34px;
        font-weight: 800;
        color: #0b1b4d;
        margin-bottom: 35px;
        text-align: center;
    }

/* CARDS */

.project-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.project-option-card,
.feature-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}

    .project-option-card:hover,
    .feature-card:hover {
        transform: translateY(-6px);
        border-color: #2563eb;
        box-shadow: 0 18px 40px rgba(37, 99, 235, 0.08);
    }

    .project-option-card.active,
    .feature-card.active {
        border-color: #2563eb;
        background: #eef4ff;
    }

    .project-option-card i {
        font-size: 42px;
        color: #2563eb;
        margin-bottom: 18px;
    }

    .project-option-card h3,
    .feature-card {
        font-size: 20px;
        font-weight: 700;
        color: #0b1b4d;
    }

/* FORM */

.project-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

    .project-form-grid input,
    .estimator-step textarea {
        width: 100%;
        border: 1px solid #dbe2ea;
        border-radius: 16px;
        padding: 16px 18px;
        outline: none;
        font-size: 15px;
        transition: 0.3s;
        box-sizing: border-box;
    }

        .project-form-grid input:focus,
        .estimator-step textarea:focus {
            border-color: #2563eb;
        }

.estimator-step textarea {
    min-height: 160px;
    resize: none;
    margin-bottom: 25px;
}

/* RECAPTCHA */

.g-recaptcha {
    transform-origin: center;
}

/* BUTTON */

.project-submit-btn {
    width: 100%;
    background: #2563eb;
    color: white;
    border: none;
    padding: 18px;
    border-radius: 18px;
    font-size: 17px;
    font-weight: 700;
    transition: 0.3s;
}

    .project-submit-btn:hover {
        background: #1d4ed8;
    }

/* NAVIGATION */

.project-navigation {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 45px;
}

    .project-navigation button {
        flex: 1;
        border: none;
        background: #2563eb;
        color: white;
        padding: 14px 28px;
        border-radius: 14px;
        font-weight: 700;
    }

#prevBtn {
    background: #e2e8f0;
    color: #0b1b4d;
}

/* SUMMARY */

.project-estimator-summary {
    background: #0b1b4d;
    color: white;
    border-radius: 30px;
    padding: 35px;
    position: sticky;
    top: 120px;
}

    .project-estimator-summary h3 {
        font-size: 28px;
        margin-bottom: 25px;
        font-weight: 800;
    }

.project-price span {
    font-size: 58px;
    font-weight: 800;
}

#projectSummaryList {
    list-style: none;
    padding: 0;
    margin: 0;
}

    #projectSummaryList li {
        display: flex;
        justify-content: space-between;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

/* WHATSAPP */

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 65px;
    height: 65px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    z-index: 9999;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

/* TABLET */

@media (max-width: 1200px) {
    .project-estimator-wrapper {
        grid-template-columns: 1fr;
    }

    .project-estimator-summary {
        position: relative;
        top: auto;
    }
}

/* MOBILE */

@media (max-width: 768px) {

    .project-estimator-page {
        padding-bottom: 140px;
    }

    .project-estimator-hero {
        padding: 50px 15px;
    }

        .project-estimator-hero h1 {
            font-size: 28px;
            line-height: 1.4;
        }

        .project-estimator-hero p {
            font-size: 14px;
        }

    .project-estimator-main {
        padding: 18px;
        border-radius: 20px;
    }

    .project-estimator-progress {
        gap: 8px;
        margin-bottom: 25px;
    }

    .project-step {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 14px;
    }

    .estimator-step h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .project-card-grid,
    .project-form-grid {
        grid-template-columns: 1fr;
    }

    .project-option-card,
    .feature-card {
        padding: 20px;
        border-radius: 18px;
    }

        .project-option-card h3,
        .feature-card {
            font-size: 16px;
        }

    .project-navigation {
        flex-direction: column;
    }

        .project-navigation button {
            width: 100%;
        }

    .project-estimator-summary {
        padding: 20px;
        border-radius: 20px;
    }

    .project-price span {
        font-size: 36px;
    }

    .g-recaptcha {
        transform: scale(0.85);
    }

    .whatsapp-float {
        width: 56px;
        height: 56px;
        font-size: 28px;
        bottom: 15px;
        left: 15px;
    }
}

/* SMALL MOBILE */

@media (max-width: 420px) {
    .g-recaptcha {
        transform: scale(0.76);
    }

    .project-step {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 13px;
    }
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.navbar-toggler {
    display: none;
    border: none;
    background: transparent;
    font-size: 28px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.navbar-toggler-icon {
    width: 30px;
    height: 30px;
}

@media (max-width: 991px) {

    .navbar-toggler {
        display: block;
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        border-radius: 18px;
        box-shadow: 0 12px 30px rgba(0,0,0,0.12);
        z-index: 999;
    }

    .nav-links {
        flex-direction: column;
        gap: 18px;
        margin-bottom: 20px;
    }

    .nav-estimator-btn {
        width: 100%;
        text-align: center;
    }
}

.custom-navbar {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 9999;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 55px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

    .nav-links .nav-link {
        color: #0d1b4c;
        font-weight: 600;
        font-size: 16px;
        transition: 0.3s;
    }

        .nav-links .nav-link:hover {
            color: #2563eb;
        }

.nav-estimator-btn {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 12px 22px;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

    .nav-estimator-btn:hover {
        color: white;
        transform: translateY(-2px);
    }

.navbar-toggler {
    border: none;
    box-shadow: none !important;
    font-size: 28px;
    color: #0d1b4c;
}

@media (max-width: 991px) {

    .navbar-collapse {
        background: white;
        margin-top: 20px;
        padding: 20px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .nav-links {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        margin-bottom: 20px;
    }

    .nav-estimator-btn {
        width: 100%;
        text-align: center;
    }

    .logo img {
        height: 45px;
    }
}


.project-type-badge {
    display: inline-block;
    background: #eef4ff;
    color: #2563eb;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
}

.project-demo-link {
    display: inline-block;
    margin-top: 14px;
    color: #2563eb;
    font-weight: 700;
    text-decoration: none;
}

    .project-demo-link:hover {
        text-decoration: underline;
    }

.project-images {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

    .project-images img {
        width: 200px;
        height: 150px;
        object-fit: cover;
        border-radius: 10px;
    }

.project-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
    border-radius: 20px 20px 0 0;
}

.project-carousel {
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.project-slider-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.carousel-control-prev,
.carousel-control-next {
    width: 40px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 70%;
}