/* ================================
   GLOBAL CONTAINER & BODY
================================ */
:root {
    --accent: #ffc300;
    --blue: #55bce9;
    --gray-dark: #3a4049;
    --bg-light: rgba(54, 130, 182, 0.4);
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    background: #fff;
    color: #000 !important;
}

.container {
    width: 85%;
    margin: 0 auto;
    padding: 20px;
}


/* ================================
   ABOUT SECTION
================================ */
.about-hero {
    /* padding: 56px 0 64px; */
    background: #fff;
    color: #000 !important;
    line-height: 1.75;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin: 40px 0 15px;
    color: #000 !important;
    text-align: left;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 34px;
    align-items: start;
    margin-bottom: 15px !important;
}


.about-extra {
    color: #000 !important;
}




/* ================================
   READ MORE BUTTON
================================ */
.read-more-btn {
    background: #3b3f48;
    color: white;
    padding: 12px 28px;
    border: 2px solid #fff;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    letter-spacing: 1px;
    margin-top: 40px;
}

.read-more-btn:hover {
    background: #2f333a;
}


/* ================================
   TEAM CARD
================================ */
.team-box {
    width: 80%;
    margin: 0 auto 60px;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.team-card {
    width: 400px;
    position: relative;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
}

.team-card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.info {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 30px 5px;
    transition: 0.35s ease;
}

.info h3 {
    margin: 0;
    font-size: 20px;
    font-weight: bold;
}

.info p {
    margin: 5px 0;
    font-size: 14px;
}

.yellow {
    background: #f1c40f;
    color: #000 !important;
}

.gray {
    background: #4b5563;
    color: #fff;
    opacity: 0;
    transform: translateY(100%);
}

.team-card:hover .gray {
    opacity: 1;
    transform: translateY(0);
}

.team-card:hover .yellow {
    opacity: 0;
}

.icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    transition: 0.3s;
}

.team-card:hover .icons {
    opacity: 1;
}

.icons i {
    margin: 0 8px;
    font-size: 18px;
    opacity: 0.8;
    transition: 0.2s;
}

.icons i:hover {
    opacity: 1;
    transform: translateY(-3px);
}


/* ================================
   COUNTER SECTION
================================ */
.counter-line {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 100px 0 40px;
}

.counter-line .line {
    width: 70%;
    height: 3px;
    background: #f0f0f0;
}

.counter-line .dot {
    width: 15px;
    height: 15px;
    background: #f0f0f0;
    border-radius: 50%;
    margin: 0 10px;
}

.counter-section {
    width: 85%;
    margin: 100px auto;
    display: flex;
    justify-content: center;
    gap: 70px;
}

.counter-box {
    text-align: center;
}

.counter {
    font-size: 80px;
    font-weight: 700;
    color: var(--gray-dark);
}

.label {
    background: var(--blue);
    color: #fff;
    padding: 10px 18px;
    font-size: 16px;
    font-weight: 700;
    margin-top: 15px;
    display: inline-block;
}


/* ================================
   TESTIMONIAL SLIDER
================================ */
.testimonial-section {
    background: var(--bg-light);
    padding: 150px 150px 100px;
    color: #fff;
}

.testimonial-section h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 40px;
}

.testimonial-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-slider {
    overflow: hidden;
}

.slide {
    display: none;
    gap: 40px;
    align-items: center;
    padding: 20px 0;
}

.slide.active {
    display: flex;
}

.left img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 10px solid #fff;
    object-fit: cover;
}

.right .text {
    font-size: 18px;
    line-height: 1.6;
}

.icons .icon {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.name {
    font-size: 28px;
    font-weight: 800;
    margin-top: 18px;
}

.pos {
    font-size: 14px;
    opacity: 0.95;
}

.nav-buttons {
    margin-top: 30px;
    margin-left: 220px;
}

.nav {
    background: transparent;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid var(--accent);
    color: var(--accent);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    cursor: pointer;
    transition: 0.2s;
}

.nav:hover {
    background: var(--accent);
    color: #fff;
}


/* ================================
   SKILL BARS
================================ */
.content-chart {
    margin-top: 40px;
}

.service {
    text-align: center;
    margin-bottom: 40px;
}

.service .icon {
    font-size: 40px;
    color: #f1c40f;
    margin-bottom: 30px;
    margin-right: 35px;
}

.bar {
    background-color: #e0e0e0;
    margin: 10px 0;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    transition: width 1s ease;
}

.bar span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    font-weight: bold;
    color: white;
}

.service:hover .bar {
    background-color: #e67e22;
}


/* ================================
   REACH SECTION
================================ */
.reach-section {
    background: #4e6171;
    text-align: center;
    padding: 60px 20px;
    color: white;
    margin: 50px 0;
}

.reach-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 15px;
}

.reach-subtitle {
    font-size: 17px;
    margin-bottom: 30px;
}

.reach-btn {
    display: inline-block;
    padding: 12px 35px;
    border: 2px solid #e4a400;
    color: #e4a400;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.reach-btn:hover {
    background: #e4a400;
    color: #fff;
}


/* ================================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        margin-bottom: 0px !important;
    }
}

@media (max-width: 900px) {
    .slide {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .content-chart {
        flex-direction: column;
        gap: 20px;
    }

    .reach-title {
        font-size: 28px;
        
    }

    

    
}

@media (max-width: 576px) {
    .about-text p,
    .about-extra p {
        font-size: 15px;
    }

    .testimonial-section {
        padding: 25px 30px;
    }

    .name {
        font-size: 22px;
    }
}
