﻿
/* ===== HERO ===== */
.carousel-item {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: white;
    text-align: center;
}

/* ===== ABOUT ===== */
.about-bg {
    background: #f4f1ec;
}

.experience-box {
    border: 3px solid #b08d57;
    padding: 20px 30px;
}

/* ===== CARDS ===== */
.card-box {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: .3s;
    height: 100%;
}

    .card-box:hover {
        transform: translateY(-8px);
    }

/* ===== COUNTER ===== */
.counter {
    font-size: 42px;
    font-weight: 700;
    color: #b08d57;
}


/* ===== MODERN ABOUT SECTION ===== */

.about-modern {
    background: linear-gradient(135deg,#f4f1ec,#ffffff);
    position: relative;
    overflow: hidden;
}

.about-subtitle {
    letter-spacing: 3px;
    font-size: 13px;
    color: #f41917;
    font-weight: 600;
}

.about-title {
    font-size: 42px;
    font-weight: 700;
    margin: 15px 0 25px 0;
    line-height: 1.2;
}

.about-text {
    color: #111;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 15px;
    text-align: justify;
}

/* Images */

.about-images {
    min-height: 450px;
}

.main-img img {
    border-radius: 12px;
    width: 75%;
    transition: .4s;
}

.second-img {
    position: absolute;
    bottom: -40px;
    right: 0;
    width: 65%;
    border-radius: 12px;
    overflow: hidden;
    transition: .4s;
}

    .second-img img {
        width: 100%;
    }

.about-images:hover .main-img img {
    transform: scale(1.05);
}

.about-images:hover .second-img {
    transform: translateY(-10px);
}

/* Decorative Accent Box */

.accent-box {
    position: absolute;
    top: -20px;
    left: 55%;
    width: 80px;
    height: 80px;
    border: 6px solid #b08d57;
    z-index: -1;
}

/* Experience Box */

.experience-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    width: fit-content;
    transition: .3s;
}

    .experience-wrapper:hover {
        transform: translateY(-5px);
    }

.experience-number {
    font-size: 48px;
    font-weight: 700;
    color: #b08d57;
    line-height: 1;
}


/* ===== PREMIUM WHAT WE DO SECTION ===== */

.what-modern {
    background: linear-gradient(135deg,#ffffff,#f4f1ec);
    position: relative;
}

.section-subtitle {
    letter-spacing: 3px;
    font-size: 13px;
    color: #f41917;
    font-weight: 600;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    margin: 15px 0 20px;
}

.section-desc {
    max-width: 700px;
    margin: 0 auto;
    color: #111;
    line-height: 1.8;
}

/* Service Card */

.service-card-premium {
    background: white;
    padding: 45px 35px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transition: .4s;
    position: relative;
    overflow: hidden;
    height: 100%;
}

    .service-card-premium::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 0%;
        height: 4px;
        background: #f41917;
        transition: .4s;
    }

    .service-card-premium:hover::before {
        width: 100%;
    }

    .service-card-premium:hover {
        transform: translateY(-12px);
        box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    }

.icon-box {
    width: 65px;
    height: 65px;
    background: rgba(176,141,87,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 26px;
    color: #111;
    transition: .4s;
}

.service-card-premium:hover .icon-box {
    background: #f41917;
    color: white;
    transform: rotate(8deg) scale(1.1);
}

.service-card-premium h4 {
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card-premium p {
    color: #555;
    font-size: 14px;
    line-height: 1.7;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
    padding: 8px 20px;
    border: 2px solid #111;
    color: #111;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: .4s;
    position: relative;
    overflow: hidden;
}

    .service-btn i {
        transition: .4s;
    }

    .service-btn:hover {
        background: #f41917;
        border: 2px solid #f41917;
        color: white;
        box-shadow: 0 10px 25px rgba(176,141,87,0.4);
    }

        .service-btn:hover i {
            transform: translateX(5px);
        }

/* ===== PREMIUM ACCOMPLISHMENTS ===== */

.accomplishments-modern {
    background: linear-gradient(135deg, #f4f1ec, #ffffff);
    position: relative;
    color: black;
}

.section-subtitle {
    letter-spacing: 3px;
    font-size: 13px;
    color: #f41917;
    font-weight: 600;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    margin-top: 10px;
}

.section-desc {
    max-width: 600px;
    margin: 15px auto 0;
    color: #0f172a;
}

.stat-card {
    background: white;
    backdrop-filter: blur(10px);
    padding: 45px 25px;
    border-radius: 14px;
    transition: .4s;
    /*border: 3px solid rgba(255,255,255,0.1);*/
    border: 3px solid rgb(255 0 0);
}

    .stat-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    }

.stat-icon {
    width: 65px;
    height: 65px;
    background: rgba(176,141,87,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 26px;
    color: black;
    transition: .4s;
}

.stat-card:hover .stat-icon {
    background: #f41917;
    color: white;
    transform: scale(1.1);
}

.counter {
    font-size: 42px;
    font-weight: 700;
    color: red;
    margin-bottom: 10px;
}

.stat-card:hover .counter {
    color: black;
    transform: scale(1.1);
}

/* ===== PREMIUM TESTIMONIALS ===== */
/* ===== FIXED PREMIUM TESTIMONIALS ===== */
.testimonials-modern .carousel-item {
    height: 30vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.testimonials-modern {
    position: relative;
    padding: 70px 0; /* reduced clean padding */
    overflow: hidden;
    color: white;
}

/* PARALLAX BACKGROUND */
.parallax-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab') center/cover no-repeat;
    filter: brightness(0.35);
    z-index: 0;
}

/* PARTICLES */
#particles-js {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* CONTENT */
.testimonials-modern .container {
    position: relative;
    z-index: 2;
}

/* REMOVE EXTRA CAROUSEL HEIGHT */
.carousel-inner {
    height: auto !important;
}

/* REMOVE DEFAULT BOOTSTRAP MIN HEIGHT */
.carousel-item {
    min-height: auto !important;
}

    /* ALIGN ROW HEIGHT */
    .carousel-item .row {
        align-items: stretch;
    }

/* CARD */
.testimonial-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    padding: 30px 25px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.15);
    transition: .4s;
    height: 100%;
}

    .testimonial-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    }

/* BUTTONS */
.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px; /* reduced space */
}

.carousel-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid #b08d57;
    background: transparent;
    color: #b08d57;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

    .carousel-btn:hover {
        background: #b08d57;
        color: white;
    }


/* ===== PROJECT SECTION RED & BLACK THEME ===== */

.projects-modern {
    padding: 90px 0;
    background: #fdfdfc;
    color: black;
}

    .projects-modern .carousel-item {
        height: 70vh;
        background-size: cover;
        background-position: center;
        position: relative;
    }

.section-subtitle-red {
    letter-spacing: 3px;
    font-size: 13px;
    color: black;
    font-weight: 600;
}

.section-title-dark {
    font-size: 40px;
    font-weight: 700;
    margin-top: 10px;
}

.section-desc-dark {
    color: black;
    max-width: 600px;
    margin: 15px auto 0;
}

/* PROJECT CARD */

.project-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    transition: .4s;
    border: 1px solid black;
}

    .project-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    }

.project-img {
    position: relative;
    overflow: hidden;
}

    .project-img img {
        width: 100%;
        height: 240px;
        object-fit: cover;
        transition: .4s;
    }

.project-card:hover .project-img img {
    transform: scale(1.08);
}

/* CATEGORY BADGE */

.project-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #e10600;
    color: white;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
}

/* CONTENT */

.project-content {
    padding: 25px;
    text-align: left;
}

    .project-content h5 {
        margin-bottom: 10px;
    }

    .project-content p {
        font-size: 14px;
        color: #aaa;
        line-height: 1.6;
    }

/* BUTTON */

.project-btn {
    display: inline-flex;
    align-items: center;
    margin-top: 15px;
    padding: 8px 18px;
    border: 2px solid #e10600;
    color: #e10600;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

    .project-btn:hover {
        background: #e10600;
        color: white;
    }

/* SLIDER BUTTONS */

.project-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.carousel-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid #e10600;
    background: transparent;
    color: #e10600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

    .carousel-btn:hover {
        background: #e10600;
        color: white;
    }


/* ===== LEADERSHIP ENTERPRISE DESIGN ===== */

.section-subtitle-red {
    letter-spacing: 3px;
    font-size: 13px;
    color: #e10600;
    font-weight: 600;
}

.section-title-dark {
    font-size: 40px;
    font-weight: 700;
    margin-top: 10px;
    color: #111;
}

.section-desc-dark {
    max-width: 650px;
    margin: 15px auto 0;
    color: #555;
}

/* CARD */

.leader-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    transition: .4s;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    height: 100%;
}

    .leader-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 60px rgba(0,0,0,0.1);
    }

/* IMAGE */

.leader-img {
    overflow: hidden;
    height: 280px;
}

    .leader-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .4s;
    }

.leader-card:hover .leader-img img {
    transform: scale(1.08);
}

/* CONTENT */

.leader-content {
    padding: 25px;
}

    .leader-content h5 {
        margin-bottom: 5px;
        font-weight: 600;
    }

.leader-role {
    display: block;
    color: #e10600;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.leader-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* BUTTON */

.leader-btn {
    display: inline-flex;
    align-items: center;
    margin-top: 15px;
    padding: 8px 18px;
    border: 2px solid #e10600;
    color: #e10600;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

    .leader-btn:hover {
        background: #e10600;
        color: white;
    }

/* ===== CONTACT EXECUTIVE STYLE ===== */

.contact-modern {
    padding: 100px 0;
    background: #f8f9fa; /* keep light background */
}

/* CARD */

.contact-card,
.contact-info-card {
    background: white;
    border-radius: 14px;
    padding: 35px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    height: 100%;
}

/* INPUTS */

.contact-input {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 12px 15px;
    transition: .3s;
}

    .contact-input:focus {
        border-color: #e10600;
        box-shadow: 0 0 0 0.2rem rgba(225,6,0,0.1);
    }

/* BUTTON */

.contact-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 25px;
    border-radius: 30px;
    border: 2px solid #e10600;
    background: transparent;
    color: #e10600;
    font-weight: 600;
    transition: .3s;
}

    .contact-btn:hover {
        background: #e10600;
        color: white;
    }

/* MAP */

.contact-map iframe {
    width: 100%;
    height: 250px;
    border-radius: 10px;
    border: none;
}

/* DETAILS */

.contact-details {
    margin-top: 25px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

    .contact-item i {
        color: #e10600;
        font-size: 18px;
        margin-top: 5px;
    }

    .contact-item h6 {
        margin: 0;
        font-weight: 600;
    }

    .contact-item p {
        margin: 0;
        font-size: 14px;
        color: #666;
    }
