/* ============================= */
/* HERO SECTION */
/* ============================= */
.hero-three {
    display: flex;
    position: relative;
    min-height: 60vh;
    overflow: hidden;
}

.hero-left {
    flex: 1;
    background: linear-gradient(135deg, #111, #202123);
}

/* CENTER CONTENT */
.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    text-align: center;
    color: #fff;
    z-index: 2;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.1rem;
    max-width: 600px;
    opacity: 0.9;
}

.btn-main {
    background: var(--primary);
    padding: 12px 30px;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
}

.btn-main:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

/* ============================= */
/* ABOUT SECTION */
/* ============================= */
.about-section {
    padding: 90px 0;
    background: #f5f7fa;
}

.content-row {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.text-col {
    flex: 1;
}

.image-col {
    flex: 1;
}

.about-img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.section-overline {
    color: #0077b6;
    font-weight: 600;
    letter-spacing: 1px;
}

.section-heading {
    font-size: 2.5rem;
    color: var(--primary);
    margin: 15px 0;
}

.text-col p {
    margin-bottom: 12px;
    color: #333;
}

/* TRUST TEXT */
.trusted {
    margin-top: 40px;
    font-size: 1.5rem;
    font-weight: 600;
    border-left: 5px solid var(--primary);
    padding-left: 15px;
}

/* ============================= */
/* FEATURES - ICON VERSION */
/* ============================= */

.features {
    background: #f8fafc;
}

.features .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* CARD */
.feature-box {
    background: #fff;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    transition: 0.35s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

/* ICON CIRCLE */
.feature-box .icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0077b6, #00b4d8);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* FONT AWESOME ICON */
.feature-box .icon i {
    font-size: 28px;
    color: #fff;
}

/* TITLE */
.feature-box h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #111;
}

/* DESCRIPTION */
.feature-box p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* HOVER */
.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

und: #f9fbfd;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--primary);
}

/* ROW */
.milestone-row {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 60px;
}

/* REVERSE LAYOUT */
.milestone-row.reverse {
    flex-direction: row-reverse;
}

/* IMAGE */
.milestone-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* CONTENT */
.milestone-content {
    flex: 1;
}

/* ICON */
.milestone-content .icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #0077b6, #00b4d8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.milestone-content .icon i {
    color: #fff;
    font-size: 22px;
}

/* TITLE */
.milestone-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

/* TEXT */
.milestone-content p {
    color: #444;
    line-height: 1.6;
}

/* LIST */
.milestone-content ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.milestone-content ul li {
    margin-bottom: 10px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* CHECK ICON */
.milestone-content ul li i {
    color: #00b894;
}


/* ============================= */
/* TESTIMONIALS */
/* ============================= */
.testimonials {
    position: relative;
    padding: 90px 0;
    background: url("/img/about/testimonel.jpg") center/cover no-repeat;
    text-align: center;
    color: #fff;
}

.testimonials .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
}

.testimonial-slider {
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s ease;
}

.testimonial {
    min-width: 100%;
    padding: 20px;
}

.testimonial p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* ============================= */
/* CTA */
/* ============================= */
.cta {
    position: relative;
    padding: 90px 0;
    background: url("/img/thanks.jpg") center/cover no-repeat;
    text-align: center;
    color: #fff;
}

.cta .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.cta-box {
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-size: 2.3rem;
}

.cta p {
    margin: 15px 0;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */
@media (max-width: 1024px) {
    .features .container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .milestone-row {
        flex-direction: column;
        text-align: center;
    }

    .milestone-row.reverse {
        flex-direction: column;
    }

    .milestone-content .icon {
        margin: 0 auto 15px;
    }
}

@media (max-width: 768px) {

    /* HERO STACK */
    .hero-three {
        flex-direction: column;
        min-height: 70vh;
    }

    .hero-left,
    .hero-right {
        width: 100%;
        height: 50%;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    /* ABOUT */
    .content-row {
        flex-direction: column;
    }

    .section-heading {
        font-size: 2rem;
    }

    /* FEATURES */
    .features .container {
        grid-template-columns: 1fr;
    }

    /* MILESTONE */
    .flex-row {
        flex-direction: column;
    }

    .cta h2 {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .milestone-content h3 {
        font-size: 1.5rem;
    }
}