﻿/* ================= GLOBAL ================= */
html, body {
    background: #ffffff;
    overflow-x: hidden;
}

/* ================= HERO SLIDER ================= */
.hero-slider {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 520px;
    max-height: 820px;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1.2s ease-in-out, transform 6s ease-in-out;
    z-index: 1;
}

    .slide.active {
        opacity: 1;
        transform: scale(1.03);
    }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 35, 0.35);
    z-index: 2;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 3;
    color: #fff;
    max-width: 600px;
    width: calc(100% - 20%);
}

.hero-subtitle {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 18px;
}

.hero-line {
    width: 4px;
    height: 26px;
    background: #e60023;
    flex-shrink: 0;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.15;
    font-weight: 600;
    margin-bottom: 18px;
}

.hero-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.92);
    max-width: 560px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ================= BUTTONS ================= */
.btn-primary,
.btn-secondary {
    text-decoration: none;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.3s;
}

.btn-primary {
    background: #e60023;
    color: #fff;
    border: 2px solid #e60023;
}

    .btn-primary:hover {
        background: #c4001e;
        border-color: #c4001e;
    }

.btn-secondary {
    border: 2px solid #e60023;
    color: #fff;
    background: transparent;
}

    .btn-secondary:hover {
        background: #e60023;
        border-color: #e60023;
    }

/* ================= HERO ANIMATION ================= */
.animate-left,
.animate-fade {
    opacity: 0;
    animation-fill-mode: forwards;
}

.animate-left {
    transform: translateX(-50px);
    animation: slideInLeft 1s ease forwards;
}

.animate-fade {
    transform: translateY(18px);
    animation: fadeInUp 1.2s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.5s;
}

.delay-3 {
    animation-delay: 1s;
}

.delay-4 {
    animation-delay: 1.4s;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= CLIENT LOGO ================= */
.client-showcase {
    background: #ffffff;
    padding: 45px 0;
    overflow: hidden;
    width: 100%;
}

.client-showcase-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: scrollClients 22s linear infinite;
    will-change: transform;
}

.client-logo-item {
    flex: 0 0 220px;
    width: 220px;
    text-align: center;
    padding: 0 18px;
}

    .client-logo-item img {
        width: 100%;
        max-width: 150px;
        height: 70px;
        object-fit: contain;
        display: block;
        margin: 0 auto;
    }

@keyframes scrollClients {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

/* ================= ABOUT SECTION ================= */
.about-section {
    position: relative;
    background: #ffffff;
    padding: 70px 50px;
    overflow: hidden;
}

    .about-section::before {
        content: "";
        position: absolute;
        top: 25px;
        left: 55px;
        width: 63%;
        height: 88%;
        background-image: radial-gradient(#d8d8d8 0.8px, transparent 0.8px);
        background-size: 6px 6px;
        opacity: 0.75;
        z-index: 0;
        pointer-events: none;
    }

.about-container {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 0.88fr;
    gap: 55px;
    align-items: start;
}

.about-left {
    padding: 34px 10px 20px 0;
}

.about-subtitle {
    font-size: 12px;
    letter-spacing: 3px;
    color: #24344d;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.about-left h2 {
    font-size: 38px;
    line-height: 1.08;
    color: #12284c;
    font-weight: 700;
    margin-bottom: 24px;
    max-width: 620px;
}

.about-quote {
    font-size: 16px;
    line-height: 1.55;
    color: #1f1f1f;
    margin-bottom: 28px;
    max-width: 620px;
}

.about-description {
    font-size: 14px;
    line-height: 1.75;
    color: #666666;
    margin-bottom: 32px;
    max-width: 640px;
}

.about-btn {
    display: inline-block;
    background: #e60023;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 24px;
    transition: 0.3s ease;
}

    .about-btn:hover {
        background: #c4001e;
    }

.about-right {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 18px;
}

.about-right-panel {
    background: #e7e7e7;
    width: 100%;
    max-width: 560px;
    padding: 18px 18px 24px;
    position: relative;
}

.about-image-card {
    background: #ffffff;
    padding: 14px;
    width: 100%;
}

    .about-image-card img {
        display: block;
        width: 100%;
        height: auto;
        background: #fff;
    }

.about-details-block {
    padding-top: 18px;
}

    .about-details-block h3 {
        font-size: 44px;
        line-height: 1.06;
        color: #12284c;
        font-weight: 700;
        margin-bottom: 16px;
    }

    .about-details-block p {
        font-size: 14px;
        line-height: 1.7;
        color: #666666;
        margin-bottom: 6px;
    }

    .about-details-block strong {
        color: #4b4b4b;
        font-weight: 700;
    }

/* ================= ABOUT SCROLL ANIMATION ================= */
.about-fade-left,
.about-fade-right {
    opacity: 0;
    transition: all 1s ease;
}

.about-fade-left {
    transform: translateX(-60px);
}

.about-fade-right {
    transform: translateX(70px);
}

    .about-show,
    .about-fade-left.is-visible,
    .about-fade-right.is-visible {
        opacity: 1;
        transform: translateX(0);
    }

/* ================= PROJECT SECTION ================= */
.project-section {
    padding: 70px 50px 90px;
    overflow: hidden;
}

.project-container {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    min-height: 470px;
}

.project-image {
    position: relative;
    width: 100%;
    max-width: 1150px;
}

    .project-image img {
        width: 100%;
        height: 395px;
        object-fit: cover;
        object-position: center;
        display: block;
        filter: brightness(0.72) contrast(1.02) saturate(0.92);
    }

.project-image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(12, 22, 38, 0.14);
    pointer-events: none;
}

.project-card {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-46%);
    background: #ffffff;
    padding: 44px 46px;
    width: 100%;
    max-width: 610px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.10);
    z-index: 2;
}

.project-subtitle {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    letter-spacing: 2.5px;
    color: #43506b;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.project-line {
    width: 4px;
    height: 24px;
    background: #e60023;
    flex-shrink: 0;
}

.project-card h2 {
    font-size: 42px;
    line-height: 1.15;
    color: #12284c;
    font-weight: 700;
    margin-bottom: 24px;
}

.project-description {
    font-size: 15px;
    line-height: 1.85;
    color: #666666;
    margin-bottom: 32px;
    max-width: 500px;
}

.project-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e60023;
    color: #fff;
    padding: 14px 26px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: 0.3s ease;
}

    .project-btn:hover {
        background: #c4001e;
    }

.project-animate {
    opacity: 0;
    transform: translate(70px, -46%);
    transition: all 1s ease;
}

    .project-show,
    .project-animate.is-visible {
        opacity: 1;
        transform: translate(0, -46%);
    }

/* ================= SERVICES SECTION ================= */
.services-section {
    background: #ffffff;
    padding: 46px 36px 38px;
    overflow: hidden;
}

.services-container {
    max-width: 1160px;
    margin: 0 auto;
}

.services-header {
    margin-bottom: 18px;
}

.services-subtitle {
    font-size: 11px;
    letter-spacing: 3px;
    color: #24344d;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.services-title-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

    .services-title-row h2 {
        font-size: 34px;
        line-height: 1.08;
        color: #12284c;
        font-weight: 700;
        white-space: nowrap;
    }

.services-line {
    flex: 1;
    height: 2px;
    background: #dddddd;
    display: block;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.service-card {
    position: relative;
    background: #ffffff;
    padding: 18px 18px 16px;
    min-height: 250px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

    .service-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
    }

.service-accent {
    display: block;
    width: 22px;
    height: 28px;
    background: #e60023;
    margin-bottom: 14px;
}

.service-card h3 {
    font-size: 19px;
    line-height: 1.15;
    color: #12284c;
    font-weight: 700;
    margin-bottom: 10px;
    max-width: 100%;
}

.service-card p {
    font-size: 13px;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 16px;
    max-width: 100%;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #e60023;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid #e60023;
    padding-bottom: 3px;
    transition: 0.3s ease;
    width: fit-content;
}

    .service-link:hover {
        color: #b8001c;
        border-bottom-color: #b8001c;
    }

.service-card-featured {
    background: #e60023;
}

    .service-card-featured .service-accent {
        background: #ffffff;
    }

    .service-card-featured h3,
    .service-card-featured p,
    .service-card-featured .service-link {
        color: #ffffff;
    }

    .service-card-featured .service-link {
        border-bottom-color: #ffffff;
    }

        .service-card-featured .service-link:hover {
            color: #ffe5e8;
            border-bottom-color: #ffe5e8;
        }

.services-button-wrap {
    margin-top: 22px;
    text-align: center;
}

.services-main-btn {
    display: inline-block;
    text-decoration: none;
    color: #12284c;
    background: #ffffff;
    border: 2px solid #e60023;
    padding: 12px 26px;
    font-size: 14px;
    font-weight: 700;
    transition: 0.3s ease;
}

    .services-main-btn:hover {
        background: #e60023;
        color: #ffffff;
    }

.services-animate {
    opacity: 0;
    transition: all 0.8s ease;
}

.services-animate-left {
    transform: translateX(-40px);
}

.services-animate-right {
    transform: translateX(40px);
}

.services-animate-up {
    transform: translateY(30px);
}

.services-show,
.services-animate.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* ================= EXPERTISE SECTION ================= */
.expertise-section {
    position: relative;
    background-image: url('../../Images/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 90px 0;
    overflow: hidden;
}

.expertise-overlay {
    background: rgba(18, 40, 76, 0.28);
    padding: 0 40px;
}

.expertise-container {
    max-width: 980px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.88);
    padding: 48px 46px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(2px);
}

    .expertise-container h2 {
        font-size: 34px;
        line-height: 1.15;
        color: #12284c;
        font-weight: 700;
        margin-bottom: 20px;
    }

.expertise-dot {
    color: #e60023;
}

.expertise-intro {
    font-size: 15px;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 30px;
    max-width: 860px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 36px;
}

.expertise-item h3 {
    font-size: 20px;
    line-height: 1.25;
    color: #12284c;
    font-weight: 700;
    margin-bottom: 10px;
}

.expertise-arrow {
    color: #e60023;
    margin-right: 8px;
    font-weight: 700;
}

.expertise-item p {
    font-size: 14px;
    line-height: 1.7;
    color: #666666;
}

.expertise-animate {
    opacity: 0;
    transform: translateY(45px);
    transition: all 1s ease;
}

    .expertise-show,
    .expertise-animate.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

/* ================= CURRENT PROJECTS ================= */
.current-projects-section {
    background: #ffffff;
    padding: 60px 40px;
    overflow: hidden;
}

.current-projects-container {
    max-width: 1200px;
    margin: 0 auto;
}

.current-projects-top {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 24px;
}

.current-projects-subtitle {
    font-size: 11px;
    letter-spacing: 2px;
    color: #24344d;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.current-projects-left h2 {
    font-size: 36px;
    line-height: 1.2;
    color: #12284c;
    font-weight: 700;
    margin-bottom: 16px;
}

.current-projects-btn {
    display: inline-block;
    text-decoration: none;
    color: #12284c;
    background: #ffffff;
    border: 2px solid #e60023;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 700;
    transition: 0.3s ease;
}

    .current-projects-btn:hover {
        background: #e60023;
        color: #ffffff;
    }

.current-projects-right p {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 16px;
}

.current-projects-line {
    display: block;
    width: 70px;
    height: 4px;
    background: #e60023;
}

.current-projects-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.current-projects-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
}

    .current-projects-table thead th {
        background: #e60023;
        color: #ffffff;
        font-size: 13px;
        font-weight: 700;
        padding: 14px 16px;
        text-align: center;
    }

    .current-projects-table tbody td {
        background: #f0f0f0;
        font-size: 13px;
        padding: 12px 14px;
        color: #333;
        border-top: 1px solid #ffffff;
        text-align: center;
    }

    .current-projects-table tbody tr:hover td {
        background: #e6e6e6;
    }

    .current-projects-table th:first-child,
    .current-projects-table td:first-child {
        width: 100px;
    }

    .current-projects-table th:last-child,
    .current-projects-table td:last-child {
        width: 180px;
    }

.current-projects-animate {
    opacity: 0;
    transition: all 0.9s ease;
}

.current-projects-left-animate {
    transform: translateX(-55px);
}

.current-projects-right-animate {
    transform: translateX(55px);
}

.current-projects-table-animate {
    transform: translateY(45px);
}

.current-projects-show,
.current-projects-animate.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

.current-projects-table tbody tr {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease, background 0.3s ease;
}

    .current-projects-table tbody tr.current-projects-row-show {
        opacity: 1;
        transform: translateY(0);
    }

/* ================= TESTIMONIALS SECTION ================= */
.testimonials-section {
    background: #f5f5f5;
    padding: 60px 40px;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    border: 10px solid #efefef;
}

.testimonials-box {
    background: #ffffff;
    padding: 26px 30px;
}

.testimonials-subtitle {
    font-size: 11px;
    letter-spacing: 2px;
    color: #24344d;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.testimonials-box h2 {
    font-size: 36px;
    line-height: 1.2;
    color: #12284c;
    font-weight: 700;
    margin-bottom: 18px;
}

.testimonials-quote {
    font-size: 16px;
    line-height: 1.6;
    color: #5a5a5a;
    font-style: italic;
    margin-bottom: 22px;
    max-width: 900px;
}

.testimonials-author h3 {
    font-size: 18px;
    color: #12284c;
    font-weight: 700;
    margin-bottom: 2px;
}

.testimonials-author p {
    font-size: 13px;
    color: #e60023;
}

.testimonials-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

    .testimonials-show,
    .testimonials-animate.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

/* ================= STRENGTHS SECTION ================= */
.strengths-section {
    background: #ffffff;
    padding: 70px 40px 32px;
    margin-bottom: 0;
}

.strengths-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.strengths-left-wrap {
    background: #e60023;
    padding: 18px 0 18px 18px;
    display: flex;
    height: 100%;
}

.strengths-left {
    background: #ffffff;
    padding: 40px 36px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .strengths-left h2 {
        font-size: 40px;
        line-height: 1.2;
        color: #12284c;
        font-weight: 700;
        margin-bottom: 18px;
    }

.strengths-intro {
    font-size: 15px;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 26px;
}

.strength-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    margin-bottom: 22px;
}

    .strength-item:last-child {
        margin-bottom: 0;
    }

.strength-icon {
    width: 44px;
    height: 44px;
    background: #e60023;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.strength-text h3 {
    font-size: 20px;
    line-height: 1.2;
    color: #12284c;
    font-weight: 700;
    margin-bottom: 6px;
}

.strength-text p {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
}

.strengths-right {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 100%;
}

    .strengths-right img {
        width: 100%;
        height: 100%;
        min-height: 100%;
        object-fit: cover;
        display: block;
    }

.strengths-overlay-text {
    position: absolute;
    left: 34px;
    bottom: 28px;
    max-width: 360px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    z-index: 2;
}

.strengths-overlay-line {
    width: 4px;
    min-width: 4px;
    height: 150px;
    background: #e60023;
    display: block;
}

.strengths-overlay-text p {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.strengths-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

    .strengths-show,
    .strengths-animate.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

/* ================= FAQ SECTION ================= */
.faq-section {
    width: 100%;
    background: #f3f3f3;
    padding: 32px 20px 80px;
    margin-top: 0;
    overflow-x: hidden;
    position: relative;
}

.faq-shell {
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 22px;
}

    .faq-header h2 {
        font-size: 38px;
        line-height: 1.15;
        color: #1f1f1f;
        font-weight: 700;
        margin: 0;
    }

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .faq-item:hover {
        transform: translateY(-1px);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    }

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    text-align: left;
    cursor: pointer;
    color: #1f1f1f;
    font-size: 17px;
    font-weight: 700;
    font-family: inherit;
}

    .faq-question span:first-child {
        flex: 1;
        min-width: 0;
        line-height: 1.45;
    }

.faq-icon {
    flex-shrink: 0;
    font-size: 20px;
    line-height: 1;
    color: #6f6f6f;
    transition: color 0.25s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 22px;
    transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.25s ease;
}

    .faq-answer p {
        font-size: 14px;
        line-height: 1.75;
        color: #6b6b6b;
        margin: 0;
        padding: 0 0 18px;
    }

.faq-item.active .faq-answer {
    max-height: 260px;
    opacity: 1;
}

.faq-item.active .faq-question {
    padding-bottom: 10px;
}

.faq-item.active .faq-icon {
    color: #1f1f1f;
}

.faq-animate {
    opacity: 0;
    transform: translateY(28px);
    transition: all 0.8s ease;
}

    .faq-show,
    .faq-animate.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .hero-slider {
        height: 52vh;
        min-height: 300px;
        max-height: 420px;
    }

    .hero-content {
        left: 6%;
        right: 6%;
        width: auto;
        max-width: 520px;
    }

        .hero-content h1 {
            font-size: 34px;
            line-height: 1.16;
        }

    .hero-description {
        font-size: 13px;
        line-height: 1.52;
        max-width: 92%;
    }

    .hero-subtitle {
        font-size: 12px;
        line-height: 1.35;
        margin-bottom: 12px;
    }

    .hero-line {
        height: 20px;
        width: 3px;
    }

    .hero-buttons {
        gap: 8px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 10px 16px;
        font-size: 12px;
    }

    .client-logo-item {
        flex: 0 0 180px;
        width: 180px;
    }

    .about-section {
        padding: 60px 25px;
    }

        .about-section::before {
            width: 90%;
            height: 60%;
            left: 5%;
            top: 20px;
        }

    .about-container {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-left {
        padding: 0;
    }

    .about-right {
        padding-top: 0;
    }

    .about-left h2 {
        font-size: 34px;
    }

    .about-details-block h3 {
        font-size: 34px;
    }

    .about-quote {
        font-size: 16px;
    }

    .about-description,
    .about-details-block p {
        font-size: 14px;
    }

    .about-right-panel {
        max-width: 100%;
        padding: 18px;
    }

    .about-image-card {
        padding: 12px;
    }

    .about-details-block {
        padding-top: 18px;
    }

    .expertise-section {
        background-attachment: scroll;
        padding: 70px 0;
    }

    .expertise-overlay {
        padding: 0 20px;
    }

    .expertise-container {
        padding: 30px 24px;
    }

        .expertise-container h2 {
            font-size: 28px;
        }

    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .current-projects-top {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .current-projects-left h2 {
        font-size: 28px;
    }

    .strengths-section {
        padding: 50px 18px 10px;
    }

    .strengths-container {
        grid-template-columns: 1fr;
    }

    .strengths-left-wrap {
        padding: 14px 0 0 14px;
    }

    .strengths-left {
        padding: 28px 22px;
    }

        .strengths-left h2 {
            font-size: 30px;
        }

    .strengths-right {
        min-height: 380px;
    }

        .strengths-right img {
            min-height: 380px;
        }

    .strengths-overlay-text {
        left: 20px;
        right: 20px;
        bottom: 18px;
        max-width: none;
    }

    .strengths-overlay-line {
        height: 100px;
    }

    .strengths-overlay-text p {
        font-size: 13px;
    }

    .faq-section {
        padding: 18px 16px 65px;
    }

    .faq-header h2 {
        font-size: 31px;
    }

    .faq-question {
        font-size: 16px;
        padding: 17px 18px;
    }

    .faq-answer {
        padding: 0 18px;
    }

        .faq-answer p {
            font-size: 13px;
            line-height: 1.7;
            padding-bottom: 16px;
        }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 42vh;
        min-height: 260px;
        max-height: 340px;
    }

    .hero-content {
        top: 50%;
        left: 5%;
        right: 5%;
        width: auto;
        max-width: none;
        transform: translateY(-50%);
    }

        .hero-content h1 {
            font-size: 24px;
            line-height: 1.15;
            margin-bottom: 10px;
        }

    .hero-description {
        font-size: 12px;
        line-height: 1.5;
        margin-bottom: 14px;
        max-width: 92%;
    }

    .hero-subtitle {
        font-size: 11px;
        line-height: 1.35;
        margin-bottom: 10px;
    }

    .hero-line {
        height: 20px;
        width: 3px;
    }

    .hero-buttons {
        gap: 8px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 9px 14px;
        font-size: 12px;
    }

    .services-section {
        padding: 38px 18px 34px;
    }

    .services-title-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

        .services-title-row h2 {
            font-size: 26px;
            white-space: normal;
        }

    .services-line {
        width: 100%;
        flex: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;
        padding: 16px;
    }

        .service-card h3 {
            font-size: 18px;
        }

        .service-card p {
            font-size: 13px;
        }

    .faq-section {
        padding: 16px 12px 55px;
    }

    .faq-shell {
        max-width: 100%;
    }

    .faq-header {
        margin-bottom: 18px;
    }

        .faq-header h2 {
            font-size: 26px;
        }

    .faq-list {
        gap: 10px;
    }

    .faq-item {
        border-radius: 12px;
    }

    .faq-question {
        font-size: 15px;
        padding: 15px 16px;
        gap: 12px;
        align-items: flex-start;
    }

    .faq-icon {
        font-size: 18px;
        margin-top: 1px;
    }

    .faq-answer {
        padding: 0 16px;
    }

        .faq-answer p {
            font-size: 13px;
            line-height: 1.65;
            padding-bottom: 15px;
        }

    .faq-item.active .faq-answer {
        max-height: 300px;
    }
}

@media (max-width: 600px) {
    .hero-slider {
        height: 38vh;
        min-height: 230px;
        max-height: 300px;
    }

    .hero-content {
        left: 5%;
        right: 5%;
        top: 50%;
        max-width: none;
    }

        .hero-content h1 {
            font-size: 22px;
            line-height: 1.14;
            margin-bottom: 8px;
        }

    .hero-subtitle {
        font-size: 10px;
        line-height: 1.3;
        gap: 8px;
        margin-bottom: 8px;
    }

    .hero-line {
        height: 16px;
        width: 3px;
    }

    .hero-description {
        font-size: 11px;
        line-height: 1.42;
        margin-bottom: 12px;
        max-width: 95%;
    }

    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 8px 12px;
        font-size: 11px;
    }

    .client-showcase {
        padding: 24px 0;
    }

    .client-logo-item {
        flex: 0 0 130px;
        width: 130px;
        padding: 0 10px;
    }

        .client-logo-item img {
            max-width: 95px;
            height: 46px;
        }

    .about-left h2 {
        font-size: 30px;
    }

    .about-details-block h3 {
        font-size: 30px;
    }

    .about-subtitle {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .about-quote {
        font-size: 15px;
    }

    .about-description,
    .about-details-block p {
        font-size: 13px;
        line-height: 1.7;
    }

    .about-btn {
        font-size: 15px;
        padding: 13px 22px;
    }

    .project-section {
        padding: 50px 18px 70px;
    }

    .project-image img {
        height: 240px;
    }

    .project-card {
        max-width: 100%;
        padding: 24px 22px;
        margin-top: -30px;
    }

    .project-subtitle {
        font-size: 11px;
        letter-spacing: 2px;
        margin-bottom: 18px;
    }

    .project-line {
        height: 20px;
    }

    .project-card h2 {
        font-size: 26px;
        margin-bottom: 18px;
    }

    .project-description {
        font-size: 13px;
        margin-bottom: 24px;
    }

    .project-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .expertise-container h2 {
        font-size: 24px;
    }

    .expertise-intro {
        font-size: 14px;
    }

    .expertise-item h3 {
        font-size: 18px;
    }

    .expertise-item p {
        font-size: 13px;
    }

    .faq-section {
        padding: 14px 10px 50px;
    }

    .faq-header h2 {
        font-size: 23px;
    }

    .faq-question {
        font-size: 14px;
        padding: 14px 14px;
    }

    .faq-answer {
        padding: 0 14px;
    }

        .faq-answer p {
            font-size: 12.5px;
            line-height: 1.6;
            padding-bottom: 14px;
        }
}

@media (max-width: 420px) {
    .hero-slider {
        height: 34vh;
        min-height: 210px;
        max-height: 270px;
    }

    .hero-content {
        left: 4.5%;
        right: 4.5%;
    }

        .hero-content h1 {
            font-size: 20px;
            line-height: 1.12;
            margin-bottom: 6px;
        }

    .hero-description {
        font-size: 10px;
        line-height: 1.35;
        margin-bottom: 10px;
        max-width: 96%;
    }

    .hero-subtitle {
        font-size: 9px;
        line-height: 1.25;
        margin-bottom: 7px;
    }

    .hero-line {
        height: 14px;
        width: 3px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 7px 10px;
        font-size: 10px;
    }

    .faq-section {
        padding: 12px 10px 45px;
    }

    .faq-header h2 {
        font-size: 22px;
    }

    .faq-question {
        font-size: 14px;
        gap: 10px;
    }

    .faq-answer p {
        font-size: 12px;
        line-height: 1.6;
    }
}