﻿/* =========================
   WEB HERO SECTION
========================= */

.web-hero-section {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: url('../img/services/web/CustomerWeb.jpg') center center/cover no-repeat;
}

/* OVERLAY */

.web-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.68) 35%, rgba(0,0,0,0.35) 65%, rgba(0,0,0,0.15) 100%);
}

/* CONTENT */

.web-hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding-top: 80px;
}

    /* TITLE */

    .web-hero-content h1 {
        font-size: 38px;
        font-weight: 800;
        line-height: 1.2;
        color: #fff;
        margin-bottom: 28px;
    }

    /* TEXT */

    .web-hero-content p {
        font-size: 18px;
        line-height: 1.9;
        color: rgba(255,255,255,0.92);
        margin-bottom: 42px;
    }

/* BUTTON */

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 30px;
    border: 2px solid #ff7a18;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    transition: 0.4s ease;
    background: transparent;
}

    .hero-btn:hover {
        background: #ff7a18;
        color: #fff;
        transform: translateY(-4px);
    }

/* RESPONSIVE */

@@media(max-width:991px) {

    .web-hero-section {
        min-height: 80vh;
        background-position: center;
    }

    .web-hero-content {
        padding-top: 100px;
    }

        .web-hero-content h1 {
            font-size: 42px;
        }

        .web-hero-content p {
            font-size: 17px;
            line-height: 1.8;
        }

    .hero-btn {
        height: 56px;
        padding: 0 28px;
        font-size: 16px;
    }
}


/* =========================
   TRUSTED WEB SECTION
========================= */

.trusted-web-section {
    padding: 50px 0;
    background: #fff;
}

/* TOP */

.trusted-web-top {
    margin-bottom: 55px;
}

/* TITLE */

.trusted-web-title {
    margin: auto;
    font-size: 34px;
    line-height: 1.5;
    font-weight: 600;
    color: #ff6a00;
    letter-spacing: -1px;
}

/* LINE */

.trusted-line {
    width: 100%;
    height: 2px;
    background: #d8d8d8;
    margin: 25px auto 0;
}

/* CONTENT */

.trusted-web-content {
    max-width: 1220px;
    margin: auto;
}

    /* PARAGRAPH */

    .trusted-web-content p {
        font-size: 18px;
        line-height: 2;
        color: #333;
        margin-bottom: 12px;
        text-align: justify;
    }

/* RESPONSIVE */

@@media(max-width:991px) {

    .trusted-web-section {
        padding: 80px 0;
    }

    .trusted-web-title {
        font-size: 36px;
        line-height: 1.4;
    }

    .trusted-line {
        width: 100%;
        margin-top: 28px;
    }

    .trusted-web-content p {
        font-size: 17px;
        line-height: 1.9;
        margin-bottom: 28px;
        text-align: left;
    }
}

/* =========================
   TECH TIMELINE SECTION
========================= */

.tech-timeline-section {
    padding: 50px 0;
    background: #f8fafc;
    overflow: hidden;
    position: relative;
}

/* =========================
   TOP CONTENT
========================= */

.tech-timeline-title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.5;
    color: #111;
    margin-bottom: 15px;
}

.tech-timeline-desc {
    margin: auto;
    font-size: 18px;
    line-height: 1.9;
    color: #666;
}

/* =========================
   WRAPPER
========================= */

.tech-timeline-wrapper {
    position: relative;
    max-width: 1200px;
    margin: auto;
    padding-top: 50px;
}

/* =========================
   CENTER LINE
========================= */

.tech-main-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: linear-gradient(180deg, #ff8b2c, #ff6a00);
    transform: translateX(-50%);
    border-radius: 50px;
}

/* =========================
   TIMELINE ITEM
========================= */

.tech-item {
    position: relative;
    width: 50%;
    padding: 20px 60px;
    margin-bottom: 10px;
}

    /* LEFT */

    .tech-item.left {
        left: 0;
        text-align: right;
    }

    /* RIGHT */

    .tech-item.right {
        left: 50%;
        text-align: left;
    }

/* =========================
   ICON
========================= */

.tech-icon {
    position: absolute;
    top: 15px;
    width: 95px;
    height: 95px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    border: 5px solid #fff;
}

/* LEFT ICON */

.tech-item.left .tech-icon {
    right: -47px;
}

/* RIGHT ICON */

.tech-item.right .tech-icon {
    left: -47px;
}

/* =========================
   IMAGE
========================= */

.tech-icon img {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

/* =========================
   CONTENT BOX
========================= */

.tech-content {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    max-width: 500px;
}

/* ALIGNMENT */

.tech-item.left .tech-content {
    margin-left: auto;
}

.tech-item.right .tech-content {
    margin-right: auto;
}

/* HOVER */

.tech-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* =========================
   TITLE
========================= */

.tech-content h3 {
    font-size: 30px;
    font-weight: 700;
    color: #ff6a00;
    margin-bottom: 18px;
    line-height: 1.3;
}

/* =========================
   DESCRIPTION
========================= */

.tech-content p {
    font-size: 18px;
    line-height: 1.9;
    color: #555;
    margin: 0;
}

/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .tech-timeline-section {
        padding: 80px 0;
    }

    .tech-timeline-title {
        font-size: 40px;
    }

    .tech-timeline-desc {
        font-size: 17px;
        line-height: 1.8;
    }

    .tech-main-line {
        left: 35px;
    }

    .tech-item {
        width: 100%;
        padding: 20px 0 20px 95px;
        margin-bottom: 60px;
    }

        .tech-item.left,
        .tech-item.right {
            left: 0;
            text-align: left;
        }

            .tech-item.left .tech-icon,
            .tech-item.right .tech-icon {
                left: -12px;
                right: auto;
            }

    .tech-content {
        width: 100%;
        max-width: 100%;
        padding: 28px;
    }

    .tech-item.left .tech-content,
    .tech-item.right .tech-content {
        margin: 0;
    }

    .tech-content h3 {
        font-size: 24px;
    }

    .tech-content p {
        font-size: 16px;
        line-height: 1.8;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 576px) {

    .tech-timeline-title {
        font-size: 30px;
    }

    .tech-timeline-desc {
        font-size: 15px;
        max-width: 100%;
    }

    .tech-item {
        padding-left: 75px;
    }

    .tech-icon {
        width: 72px;
        height: 72px;
    }

        .tech-icon img {
            width: 40px;
            height: 40px;
        }

    .tech-content {
        padding: 22px;
        border-radius: 18px;
    }

        .tech-content h3 {
            font-size: 21px;
        }

        .tech-content p {
            font-size: 15px;
            line-height: 1.7;
        }
}