/* =====================================
   HERO SLIDER
===================================== */

.hero-slider {
    position: relative;
}

.heroSwiper {
    height: calc(100vh - 132px);
    min-height: 900px;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
}

.hero-slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.15);
    transition: transform 8s ease;
}

.swiper-slide-active .hero-slide-bg img {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, .80) 0%,
            rgba(0, 0, 0, .55) 40%,
            rgba(0, 0, 0, .25) 100%);
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 750px;
    padding-top: 180px;

    opacity: 0;
    transform: translateY(50px);
    transition: all .8s ease;
}

.swiper-slide-active .hero-content {
    opacity: 1;
    transform: translateY(0);
}

.hero-subtitle {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(20, 175, 195, .15);
    border: 1px solid rgba(20, 175, 195, .35);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero-content h1,
.hero-content h2 {
    color: #fff;
    font-size: clamp(42px, 6vw, 88px);
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 25px;
}

.hero-content p {
    color: rgba(255, 255, 255, .85);
    font-size: 18px;
    line-height: 1.8;
    max-width: 650px;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.video-btn {
    width: 70px;
    height: 70px;
    background: #fff;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: .3s;
}

.video-btn:hover {
    background: var(--primary);
    color: #fff;
}

.hero-prev,
.hero-next {
    position: absolute;
    right: 60px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    color: #fff;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(10px);
    transition: .3s;
}

.hero-prev {
    top: 50%;
    transform: translateY(-120%);
}

.hero-next {
    top: 50%;
    transform: translateY(20%);
}

.hero-prev:hover,
.hero-next:hover {
    background: var(--primary);
}

.swiper-pagination {
    bottom: 40px !important;
}

.swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: #fff;
    opacity: .5;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
    opacity: 1;
}

@media(max-width:991px) {

    .heroSwiper {
        min-height: 650px;
        height: 85vh;
    }

    .hero-content {
        padding-top: 120px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-prev,
    .hero-next {
        display: none;
    }

}

@media(max-width:767px) {

    .heroSwiper {
        min-height: 600px;
    }

    .hero-content {
        text-align: center;
        padding-top: 100px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-content h1 {
        line-height: 1.15;
    }

}

/* ======================================
ABOUT
====================================== */

.about-section {
    position: relative;
    overflow: hidden;
}

.about-media {
    position: relative;
    padding-right: 80px;
}

.about-image {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.about-image img {
    width: 100%;
    height: 650px;
    object-fit: cover;
}

/* Experience */

.about-experience {
    position: absolute;
    left: -20px;
    bottom: 40px;

    width: 180px;

    padding: 30px;

    background: var(--primary);

    color: var(--white);

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-md);
}

.about-experience h3 {
    margin: 0;
    font-size: 48px;
    color: var(--white);
}

.about-experience span {
    display: block;
    margin-top: 8px;
    font-size: 14px;
}

/* Projects */

.about-projects {
    position: absolute;
    top: 50px;
    right: 0;

    display: flex;
    align-items: center;
    gap: 15px;

    padding: 20px;

    background: var(--white);

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-md);
}

.about-project-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 175, 195, .1);
    color: var(--primary);
    border-radius: 50%;
    font-size: 22px;
}

.about-projects h5 {
    margin: 0;
}

.about-projects p {
    margin: 0;
    font-size: 14px;
    color: var(--text);
}

/* Features */

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 18px;

    background: var(--light);

    border-radius: var(--radius);
}

.about-feature i {
    color: var(--primary);
}

.about-feature span {
    font-weight: 600;
}

/* ======================================
RESPONSIVE
====================================== */

@media(max-width:991px) {

    .about-media {
        padding-right: 0;
    }

    .about-image img {
        height: 550px;
    }

    .about-projects {
        right: 20px;
    }

    .about-experience {
        left: 20px;
    }

}

@media(max-width:767px) {

    .about-image img {
        height: 400px;
    }

    .about-projects {
        position: relative;
        top: auto;
        right: auto;
        margin-top: 20px;
        width: 100%;
    }

    .about-experience {
        position: relative;
        left: auto;
        bottom: auto;
        margin-top: 20px;
        width: 100%;
    }

    .about-experience h3 {
        font-size: 36px;
    }

}

@media(max-width:575px) {

    .about-image img {
        height: 320px;
    }

    .about-feature {
        padding: 15px;
    }

}

.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;

    margin-bottom: 15px;
}

.section-subtitle::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--primary);
}

/* 3rd section  */
/* ====================================
CAPABILITIES
==================================== */
.capabilities-section .capability-image {
    padding: 10px;
}

.capability-card {
    display: block;
    overflow: hidden;
    background: rgb(from var(--primary) r g b / 50%);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.capability-image {
    overflow: hidden;
    position: relative;
}

.capability-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: 1s ease;
    border-radius: var(--radius-lg);
}

.capability-content {
    padding: 20px 25px;
    background: var(--primary);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.capability-content h5 {
    margin: 0;
    color: #fff;
}

.capability-arrow {
    width: 42px;
    height: 42px;

    background: #fff;

    color: var(--primary);

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: var(--transition);
}

/* Hover */

.capability-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.capability-card:hover img {
    transform: scale(1.08);
}

.capability-card:hover .capability-arrow {
    transform: rotate(-45deg);
    background: var(--dark);
    color: #fff;
}

/* ----------------------------------------------------------------------- */
.reveal-left {
    opacity: 0;
    transform: translateX(-80px);

    transition:
        opacity .8s ease,
        transform .8s cubic-bezier(.16, 1, .3, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

/* ==================================
ACHIEVEMENTS
================================== */

.achievement-section {
    background: var(--primary);
    overflow: hidden;
}

/* Header */

.achievement-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 60px;
}

.achievement-section .section-heading {
    max-width: 700px;
}

.achievement-section .section-subtitle,
.achievement-section .h3 {
    color: var(--white);
}

.achievement-section .section-subtitle::before {
    background: var(--white);
}

/* Navigation */

.achievement-nav {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.achievement-prev,
.achievement-next {

    width: 55px;
    height: 55px;

    border: 2px solid rgba(255, 255, 255, .7);

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    color: var(--white);

    transition: var(--transition);
}

.achievement-prev:hover,
.achievement-next:hover {

    background: var(--white);

    color: var(--primary);

    transform: translateY(-3px);
}

/* Cards */

.achievement-slider-wrap {
    padding-bottom: 10px;
}

.achievement-card {
    height: 100%;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.achievement-image {

    height: 120px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;
}

.achievement-image img {

    max-width: 70px;
    max-height: 70px;

    transition: .4s ease;
}

.achievement-card:hover img {
    transform: scale(1.1);
}

.achievement-content h5 {

    margin-bottom: 15px;

    font-weight: 600;

    line-height: 1.4;
}

.achievement-content p {

    color: var(--text);

    margin-bottom: 0;

    line-height: 1.8;
}

/* ==================================
RESPONSIVE
================================== */

@media(max-width:1199px) {

    .achievement-header {
        margin-bottom: 50px;
    }

    .achievement-card {
        padding: 30px 25px;
    }

}

@media(max-width:991px) {

    .achievement-header {

        flex-direction: column;

        align-items: flex-start;

        margin-bottom: 40px;
    }

    .achievement-nav {
        justify-content: flex-start;
    }

    .achievement-card {
        padding: 25px 20px;
    }

}

@media(max-width:767px) {

    .achievement-header {

        align-items: center;

        text-align: center;
    }

    .achievement-section .section-heading {

        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .achievement-nav {

        justify-content: center;

        width: 100%;
    }

    .achievement-prev,
    .achievement-next {

        width: 48px;
        height: 48px;
    }

    .achievement-card {

        padding: 25px 18px;
    }

    .achievement-image {

        height: 90px;
        margin-bottom: 15px;
    }

    .achievement-image img {

        max-width: 60px;
        max-height: 60px;
    }

}

@media(max-width:575px) {

    .achievement-section .section-subtitle {
        flex-direction: column;
    }

    .achievement-header {
        margin-bottom: 30px;
    }

    .achievement-card {
        padding: 20px 15px;
        border-radius: var(--radius);
    }

    .achievement-content h5 {
        font-size: 16px;
    }

    .achievement-content p {
        font-size: 14px;
    }

}

/* ===================================
INDUSTRIES
=================================== */

.industries-section {
    background: var(--white);
}

.industry-card {

    height: 100%;

    background: #fff;

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);

    padding: 40px 25px;

    text-align: center;

    transition: var(--transition);

    position: relative;

    overflow: hidden;
}

.industry-card::before {

    content: '';

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 4px;

    background: var(--primary);

    transform: scaleX(0);

    transition: .4s ease;
}

.industry-card:hover {

    transform: translateY(-10px);

    box-shadow: var(--shadow-md);

    border-color: transparent;
}

.industry-card:hover::before {

    transform: scaleX(1);
}

.industry-icon {

    width: 90px;
    height: 90px;

    margin: 0 auto 25px;

    border-radius: 50%;

    background: rgba(20, 175, 195, .08);

    color: var(--primary);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 38px;

    transition: .4s ease;
}

.industry-card:hover .industry-icon {

    background: var(--primary);

    color: #fff;

    transform: rotateY(180deg);
}

.industry-card h5 {

    margin-bottom: 0;

    line-height: 1.5;
}

@media(max-width:991px) {

    .industry-card {
        padding: 35px 20px;
    }

    .industry-icon {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }

}

@media(max-width:575px) {

    .industry-card {
        padding: 30px 20px;
    }

    .industry-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

}

/* ==================================
COUNTER SECTION
================================== */

.counter-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

/* Video */

.counter-video {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 1;
}

/* Overlay */

.counter-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(15, 23, 32, .92),
            rgba(15, 23, 32, .82));

    z-index: 2;
}

/* Content */

.counter-section .container {
    position: relative;
    z-index: 3;
}

/* Heading */

.counter-heading {
    margin-bottom: 30px;
}

.counter-heading h2 {
    color: var(--white);
    margin-top: 15px;
}

.counter-heading p {
    max-width: 700px;
    margin: auto;
}

/* Cards */

.counter-box {

    position: relative;

    height: 100%;

    text-align: center;

    padding: 40px 25px;

    background:
        rgba(255, 255, 255, .06);

    backdrop-filter: blur(12px);

    border:
        1px solid rgba(255, 255, 255, .08);

    border-radius: var(--radius-lg);

    transition: var(--transition);

    overflow: hidden;
}

/* Top Accent */

.counter-box::before {

    content: '';

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 4px;

    background: var(--primary);

    transform: scaleX(0);

    transition: .4s ease;
}

.counter-box:hover::before {
    transform: scaleX(1);
}

.counter-box:hover {

    transform: translateY(-10px);

    background:
        rgba(20, 175, 195, .12);

    box-shadow: var(--shadow-lg);
}

/* Icon */

.counter-icon {

    width: 90px;
    height: 90px;

    margin: 0 auto 25px;

    border-radius: 50%;

    background:
        rgba(20, 175, 195, .15);

    color: var(--primary);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 36px;

    transition: var(--transition);
}

.counter-box:hover .counter-icon {

    background: var(--primary);

    color: #fff;

    transform: rotateY(180deg);
}

/* Number */

.counter-number {

    color: #fff;

    font-weight: 800;

    margin-bottom: 10px;

    line-height: 1;
}

/* Label */

.counter-box h6 {

    color:
        rgba(255, 255, 255, .85);

    margin: 0;

    font-weight: 500;
}

/* ==================================
RESPONSIVE
================================== */

@media(max-width:1199px) {

    .counter-section {
        padding: 100px 0;
    }

    .counter-box {
        padding: 35px 20px;
    }

}

@media(max-width:991px) {

    .counter-section {
        padding: 90px 0;
    }

    .counter-icon {

        width: 80px;
        height: 80px;

        font-size: 30px;
    }

    .counter-box {
        padding: 30px 20px;
    }

}

@media(max-width:767px) {

    .counter-section {
        padding: 80px 0;
    }

    .counter-heading {
        margin-bottom: 20px;
    }

    .counter-icon {

        width: 70px;
        height: 70px;

        font-size: 28px;

        margin-bottom: 20px;
    }

    .counter-box {

        padding: 25px 20px;
    }

    .counter-number {
        margin-bottom: 8px;
    }

}

@media(max-width:575px) {

    .counter-section {
        padding: 70px 0;
    }

    .counter-box {

        padding: 25px 15px;

        border-radius: var(--radius);
    }

    .counter-icon {

        width: 65px;
        height: 65px;

        font-size: 24px;
    }

}

/* ==================================
CLIENTS
================================== */

.clients-section {
    background: var(--white);
    overflow: hidden;
}

.client-slider-wrap {
    margin-top: 20px;
}

.client-card {

    position: relative;

    height: 180px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;

    transition: var(--transition);

    overflow: hidden;

    box-shadow: var(--shadow-sm);
}

/* Top Accent */

.client-card::before {

    content: '';

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: var(--primary);

    transform: scaleX(0);

    transition: .4s ease;
}

.client-card:hover::before {
    transform: scaleX(1);
}

.client-card:hover {

    transform: translateY(-10px);

    box-shadow: var(--shadow-lg);

    border-color: transparent;
}

.client-card img {

    max-width: 140px;
    max-height: 70px;

    object-fit: contain;

    transition: .4s ease;

    filter: grayscale(100%);
}

.client-card:hover img {

    filter: none;

    transform: scale(1.05);
}

/*  */
/* ==================================
CONTENT SECTION
================================== */

.content-section {
    position: relative;
    overflow: hidden;
    background: var(--light-bg);
}

/* Background Shapes */

.content-section::before {
    content: '';
    position: absolute;
    top: -250px;
    right: -250px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background:
        rgba(20, 175, 195, .1);
}

.content-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background:
        rgba(20, 175, 195, .1);
}

.content-editor {
    position: relative;
    z-index: 2;
}

/* Heading */

.content-editor h2 {
    margin-top: 20px;
    margin-bottom: 30px;
}

/* Content */

.content-editor p {
    margin-bottom: 20px;
}

.content-editor h3 {

    position: relative;

    padding-left: 20px;

    margin-top: 50px;
    margin-bottom: 20px;
}

.content-editor h3::before {

    content: '';

    position: absolute;

    left: 0;
    top: 50%;

    width: 4px;
    height: 30px;

    background: var(--primary);

    transform: translateY(-50%);

    border-radius: 20px;
}

.content-highlight {

    position: relative;

    margin: 50px 0;

    padding: 40px 40px 40px 80px;

    background:
        linear-gradient(135deg,
            rgba(20, 175, 195, .08),
            rgba(20, 175, 195, .02));

    border-left: 4px solid var(--primary);

    border-radius: var(--radius-lg);
}

.highlight-icon {

    position: absolute;

    left: 25px;
    top: 30px;

    color: var(--primary);

    font-size: 28px;
}

.content-collapse {

    max-height: 250px;

    overflow: hidden;

    transition: .6s ease;
}

.content-collapse.active {

    max-height: 3000px;
}

.content-toggle {

    margin-top: 30px;

    background: none;
    border: none;

    color: var(--primary);

    display: flex;
    align-items: center;
    gap: 10px;

    font-weight: 600;
}

.content-toggle i {
    transition: .3s;
}

.content-toggle.active i {
    transform: rotate(180deg);
}

/* ==================================
FAQ
================================== */

.faq-section {
    background: var(--light);
}

.faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Item */

.faq-item {

    background: #fff;

    border-radius: var(--radius-lg);

    border: 1px solid var(--border);

    overflow: hidden;

    transition: var(--transition);
}

.faq-item:hover {

    box-shadow: var(--shadow-sm);
}

/* Active Top Border */

.faq-item.active {

    border-color: rgba(20, 175, 195, .25);
}

.faq-item.active::before {

    content: '';

    display: block;

    height: 4px;

    background: var(--primary);
}

/* Header */

.faq-header {

    padding: 28px 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    cursor: pointer;
}

.faq-header h5 {

    margin: 0;

    padding-right: 20px;
}

/* Custom Plus */

.faq-icon {

    width: 48px;
    height: 48px;

    border-radius: 50%;

    background:
        rgba(20, 175, 195, .08);

    position: relative;

    flex-shrink: 0;

    transition: var(--transition);
}

.faq-icon::before,
.faq-icon::after {

    content: '';

    position: absolute;

    background: var(--primary);

    left: 50%;
    top: 50%;

    transition: var(--transition);
}

.faq-icon::before {

    width: 18px;
    height: 2px;

    transform:
        translate(-50%, -50%);
}

.faq-icon::after {

    width: 2px;
    height: 18px;

    transform:
        translate(-50%, -50%);
}

/* Body */

.faq-body {

    max-height: 0;

    overflow: hidden;

    transition: .5s ease;

    padding: 0 30px;
}

.faq-body p {

    margin: 0;

    padding-bottom: 30px;
}

/* Active */

.faq-item.active .faq-body {

    max-height: 400px;
}

.faq-item.active .faq-icon {

    background: var(--primary);
}

.faq-item.active .faq-icon::before {

    background: #fff;
}

.faq-item.active .faq-icon::after {

    opacity: 0;
}

/*  */

/* ==================================
GOOGLE REVIEWS
================================== */

.review-section {
    background: var(--primary);
    overflow: hidden;
}

/* Header */

.review-header {

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 40px;
}

.review-section .section-subtitle,
.review-section .h3 {
    color: var(--white);
}

.review-section .section-subtitle::before {
    background: var(--white);
}

/* Navigation */

.review-nav {
    display: flex;
    gap: 12px;
}

.review-prev,
.review-next {

    width: 55px;
    height: 55px;

    border: 2px solid rgba(255, 255, 255, .7);

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    color: var(--white);

    transition: var(--transition);
}

.review-prev:hover,
.review-next:hover {

    background: var(--white);

    color: var(--primary);

    transform: translateY(-3px);
}

/* Rating Summary */

.google-rating {

    display: inline-flex;

    align-items: center;

    gap: 20px;

    margin-bottom: 50px;

    padding: 20px 30px;

    background: rgba(255, 255, 255, .08);

    backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, .15);

    border-radius: 100px;
}

.google-rating-logo {

    width: 70px;
    height: 70px;

    border-radius: 50%;

    background: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #4285F4;

    font-size: 34px;

    flex-shrink: 0;
}

.google-rating h3 {
    color: #fff;
    margin: 0;
}

.google-rating span {
    color: rgba(255, 255, 255, .8);
}

.google-stars {

    display: flex;
    gap: 4px;

    margin: 5px 0;

    color: #fbbc05;
}

/* ==================================
REVIEW CARD
================================== */

.google-review-card {

    position: relative;

    background: #fff;

    border-radius: 28px;

    padding: 30px;

    height: 100%;

    overflow: hidden;

    box-shadow: var(--shadow-sm);

    transition: var(--transition);
}

/* Accent Line */

.google-review-card::before {

    content: '';

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 5px;

    background: var(--primary);

    transform: scaleX(0);

    transition: .4s ease;
}

.google-review-card:hover::before {
    transform: scaleX(1);
}

/* Quote Background */

.google-review-card::after {

    content: '❝';

    position: absolute;

    top: 10px;
    right: 20px;

    font-size: 70px;

    color: rgba(20, 175, 195, .06);

    font-weight: 700;

    pointer-events: none;
}

.google-review-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 25px 50px rgba(0, 0, 0, .12);
}

/* Header */

.review-header-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 15px;
}

.review-user {

    display: flex;

    align-items: center;

    gap: 15px;
}

/* Avatar */

.review-avatar {

    width: 50px;
    height: 50px;

    border-radius: 50%;

    overflow: hidden;

    flex-shrink: 0;

    background: var(--primary);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    font-weight: 600;
}

.review-avatar img {

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.review-user h6 {

    margin: 0 0 2px;
}

.review-user span {

    color: var(--text);

    font-size: 14px;
}

/* Google Icon */

.review-google {

    font-size: 22px;

    color: #4285F4;

    flex-shrink: 0;
}

/* Stars */

.review-stars {

    display: flex;

    gap: 4px;

    color: #fbbc05;

    margin-bottom: 20px;
}

/* Content */

.google-review-card p {

    color: var(--text);

    line-height: 1.9;

    margin-bottom: 25px;
}

/* Verified Badge */

.verified-review {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 8px 14px;

    background: rgba(20, 175, 195, .08);

    border-radius: 50px;

    color: var(--primary);

    font-size: 14px;

    font-weight: 500;
}

.verified-review i {
    font-size: 15px;
}

/* ==================================
RESPONSIVE
================================== */

@media(max-width:991px) {

    .review-header {

        flex-direction: column;

        align-items: flex-start;
    }

    .google-rating {

        margin-bottom: 40px;
    }

}

@media(max-width:767px) {

    .review-header {

        align-items: center;

        text-align: center;
    }

    .review-section .section-heading {

        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .review-nav {

        justify-content: center;

        width: 100%;
    }

    .review-prev,
    .review-next {

        width: 48px;
        height: 48px;
    }

    .google-rating {

        width: 100%;

        border-radius: 24px;

        justify-content: center;

        flex-wrap: wrap;

        text-align: center;

        padding: 18px;
    }

    .google-review-card {

        padding: 25px;
    }

    .review-avatar {

        width: 46px;
        height: 46px;

        font-size: 16px;
    }

    .review-google {
        font-size: 20px;
    }

}

@media(max-width:575px) {

    .google-review-card {

        padding: 22px;

        border-radius: 22px;
    }

    .review-header-top {

        align-items: flex-start;
    }

    .review-user {

        gap: 12px;
    }

    .google-review-card p {

        line-height: 1.8;
    }

    .verified-review {

        font-size: 13px;

        padding: 7px 12px;
    }

    .google-rating-logo {

        width: 60px;
        height: 60px;

        font-size: 28px;
    }

}

/* ==================================
BLOG SECTION
================================== */

.blog-section {
    background: var(--white);
}

/* Card */

.blog-card {

    height: 100%;

    background: #fff;

    border-radius: var(--radius-lg);

    overflow: hidden;

    box-shadow: var(--shadow-sm);

    transition: var(--transition);

    position: relative;
}

.blog-card:hover {

    transform: translateY(-10px);

    box-shadow: var(--shadow-md);
}

/* Top Accent */

.blog-card::before {

    content: '';

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: var(--primary);

    transform: scaleX(0);

    transition: .4s ease;

    z-index: 2;
}

.blog-card:hover::before {
    transform: scaleX(1);
}

/* Image */

.blog-image {

    position: relative;

    overflow: hidden;
}

.blog-image img {

    width: 100%;
    height: 280px;

    object-fit: cover;

    transition: .6s ease;
}

.blog-card:hover .blog-image img {

    transform: scale(1.08);
}

/* Category */

.blog-category {

    position: absolute;

    left: 20px;
    bottom: 20px;

    background: var(--primary);

    color: #fff;

    padding: 8px 14px;

    border-radius: 50px;
}

/* Content */

.blog-content {
    padding: 30px;
}

/* Meta */

.blog-meta {

    margin-bottom: 15px;
}

.blog-meta span {

    color: var(--text);

    display: flex;
    align-items: center;
    gap: 8px;
}

/* Title */

.blog-content h4 {

    margin-bottom: 15px;
}

.blog-content h4 a {

    color: var(--secondary);

    text-decoration: none;

    transition: var(--transition);
}

.blog-card:hover h4 a {

    color: var(--primary);
}

/* Text */

.blog-content p {

    margin-bottom: 20px;

    color: var(--text);
}

/* Link */

.blog-link {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--primary);

    text-decoration: none;

    font-weight: 600;
}

.blog-link i {

    transition: .3s;
}

.blog-card:hover .blog-link i {

    transform: translateX(5px);
}

@media(max-width:991px) {

    .blog-image img {
        height: 240px;
    }

}

@media(max-width:767px) {

    .blog-content {
        padding: 25px;
    }

    .blog-image img {
        height: 220px;
    }

}

@media(max-width:575px) {

    .blog-image img {
        height: 200px;
    }

    .blog-content {
        padding: 20px;
    }

}