.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;

}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/assests/clientbg.png');
    background-size: contain;
    background-repeat: repeat;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(28, 0, 43, 0.9), rgba(28, 0, 43, 0.2));
    z-index: -1;
}

.hero-content {
    width: 100vw;
}

.hero-content h6 {
    font-weight: 600;
    font-family: var(--font-poppins);
    letter-spacing: 1px;
    font-size: 24px;
    color: #94a3b8;
    margin-bottom: 12px;
}

.hero-content h1 {
    font-size: 62px;
    font-family: var(--font-poppins);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 23px;
}

.hero-btn {
    margin-top: 20px;
    font-weight: 800;
    border-radius: 50px;
    padding: 12px 25px;
    color: #fff !important;
    text-decoration: inherit;
    border: 2px solid #ff007a !important;
    border: none;
    font-family: var(--font-poppins);
    transition: 0.3s;
    font-size: 1rem;
}

.hero-btn:hover {
    background: #e6006e;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 1.9rem;
    }

    .hero-content h6 {
        color: #94a3b8;
        font-size: 0.9rem;
    }

    .hero-btn {
        padding: 10px 22px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content {
        width: auto;
    }


    .container-nav {
        width: 100% !important;
        padding: 0%;
    }

    .navbar-nav {
        padding: 10px;
    }

    .nav-item {
        padding: 10px;
    }

    .btn-call {
        padding: 6px 14px;
        font-size: 0.8rem;
    }
}

.clients-wrapper {
    position: relative;
    /* box-shadow: inset 0 10px 10px -10px #d4d4d4; */
}

.lines {
    position: absolute;
    top: -180px;

    @media (max-width: 744px) {
        display: none;
    }
}

.clients-container {
    text-align: center;
}

.section-title {
    font-weight: 700;
    font-size: 3rem;
    margin: 0 auto;
    max-width: 80%;
    text-align: center;
}

.section-title h1 {
    font-size: 51px;
    margin-bottom: 15px;
    color: #0b0c10;
    font-weight: 700;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .section-title h1 {
        font-size: 40px;
    }
}


.section-title p {
    color: #0F172A;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .section-title p {
        font-size: 1rem;
    }
}

/* Clients layout */
.clients-logos {
    display: flex;
    justify-content: center;
    gap: 9rem;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.logo-column {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.clients-logos img {
    width: 140px;
    height: 100px;
    object-fit: contain;
    transition: all 0.3s ease;
    margin-bottom: 16px;
    filter: grayscale(100%);
    opacity: 0.7;
}

/* Hover effect only for screens above 768px */
@media (min-width: 768px) {
    .clients-logos img:hover {
        filter: grayscale(0%);
        opacity: 1;
        transform: scale(1.05);
    }
}

/* Mobile only elements */
.mobile-only {
    display: none;
}

/* Desktop only column */
.desktop-only {
    display: none;
}

/* Mobile screens (less than 480px) */
@media (max-width: 766px) {
    .clients-logos {
        gap: 3rem;
    }

    .clients-logos img {
        width: 130px;
    }

    .mobile-only {
        display: block;
    }
}

/* Tablet screens (481px to 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .clients-logos img {
        max-width: 120px;
        max-height: 45px;
        margin: 1.1rem 0;
    }
}

/* Desktop screens (768px and above) */
@media (min-width: 768px) {
    .desktop-only {
        display: flex;
    }

    .mobile-only {
        display: none;
    }
}

:root {
    --card-bg: #fff;
    --card-radius: 14px;
    --transition: 0.35s cubic-bezier(0.2, 0.9, 0.3, 1);
}

.sectionClass {
    position: relative;
    display: block;
    background-color: #e6e6e5;
    margin-bottom: 25px;
}

.fullWidth {
    width: 100% !important;
    display: table;
    float: none;
    padding: 0;
    height: 100%;
    position: relative;
}

.sectiontitle {
    background-position: center;
    margin: 30px 0 0px;
    text-align: center;
    min-height: 20px;
}

.sectiontitle h2 {
    font-size: 30px;
    color: #222;
    margin-bottom: 0px;
    padding-right: 10px;
    padding-left: 10px;
}

.headerLine {
    width: 160px;
    height: 2px;
    display: inline-block;
    background: #101f2e;
}

.projectFactsWrap {
    display: flex;
    margin-top: 30px;
    margin-bottom: 30px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

#projectFacts .fullWidth {
    padding: 0;
}

.projectFactsWrap .item {
    width: 25%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.projectFactsWrap .item p.number {
    font-size: 40px;
    padding: 0;
    font-family: "Raleway", sans-serif;
    font-weight: bold;
}

.projectFactsWrap .item p {
    color: rgba(4, 4, 4, 0.8);
    font-size: 18px;
    margin: 0;
    padding: 10px;
    font-family: "Raleway", sans-serif;
}

.projectFactsWrap .item span {
    width: 60px;
    /* background: rgba(255, 255, 255, 0.8); */
    height: 2px;
    display: block;
    margin: 0 auto;
}

.projectFactsWrap .item i {
    vertical-align: middle;
    font-size: 50px;
    color: #111;
}

.projectFactsWrap .item p.plus {
    font-size: 24px;
}

.projectFactsWrap .item:hover i,
.projectFactsWrap .item:hover p {
    color: #ff007a;
}

.projectFactsWrap .item:hover span {
    background: white;
}

@media (max-width: 786px) {
    .projectFactsWrap .item {
        flex: 0 0 33%;
        display: flex;
        flex-direction: column;
    }

    .projectFactsWrap .item p {
        font-size: 14px;
        padding: 0;
    }

    .projectFactsWrap .item p.number {
        font-size: 16px;
    }

    .projectFactsWrap .item p.plus {
        font-size: 16px;
    }
}

body {
    font-family: "Poppins", sans-serif;
    background-color: #f8f9fb;
    color: #222;
}

/* ====== MAIN REVIEW ====== */
.main-review {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    overflow: hidden;
}

.main-review .text {
    flex: 1 1 400px;
    padding: 50px;
}

.main-review h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.main-review p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.main-review .author {
    display: flex;
    align-items: center;
    margin-top: 25px;
}

.main-review .author img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-right: 10px;
}

.main-review .author h6 {
    margin: 0;
    font-weight: 600;
}

.main-review .author span {
    font-size: 13px;
    color: #888;
}

.main-review .read-more {
    display: inline-block;
    color: #e6007e;
    font-weight: 600;
    margin-top: 15px;
    text-decoration: none;
}

.main-review .video {
    flex: 1 1 350px;
    position: relative;
}

.main-review .video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    background: #e6007e;
    color: #fff;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

/* ====== GRID CARDS ====== */
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 25px;
}

.review-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 330px) {
    .review-card {
        max-width: 87%;
    }
}

.review-card.pink {
    background: #fff3f8;
}

.review-card .card-video {
    position: relative;
}

.review-card .card-video img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.review-card .card-body {
    padding: 25px;
}

.review-card h5 {
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 10px;
    color: #111;
}

.review-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.review-card .author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.review-card .author img {
    width: 35px;
    height: 37px;
    border-radius: 50%;
    margin-right: 10px;
}

.review-card .author h6 {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.review-card .author span {
    font-size: 13px;
    color: #777;
}

.review-card .read-more {
    color: #e6007e;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
    .main-review {
        flex-direction: column;
    }

    .main-review .text,
    .main-review .video {
        width: 100%;
    }

    .main-review .text {
        padding: 30px;
    }

    .main-review .video img {
        height: 250px;
    }
}