/* =====================================
   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;
    object-position: top;
}

/* 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: 400px;
    }

    .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;
}

/* Existing Image Style */
.achievement-image img {
    max-width: 100px;
    max-height: 100px;
    height: 100%;
    transition: .4s ease;
}

.achievement-card:hover img {
    transform: scale(1.1);
}

/* New Icon Style */
.achievement-image i {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: var(--primary);
    background: rgba(20, 175, 195, .08);
    border: 2px solid rgba(20, 175, 195, .15);
    border-radius: 50%;
    transition: .4s ease;
}

/* Hover */
.achievement-card:hover i {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: scale(1.1) rotate(8deg);
}

.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-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    z-index: 1;
}

/* Animated Border */
.client-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(90deg,
            transparent,
            var(--primary),
            transparent);
    animation: borderRotate 4.1s linear infinite;
    z-index: -2;
}

/* White Inner Background */
.client-card::after {
    content: "";
    position: absolute;
    inset: 2px;
    background: #fff;
    border-radius: calc(var(--radius-lg) - 2px);
    z-index: -1;
}

@keyframes borderRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.client-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.client-card img {
    max-width: 180px;
    max-height: 180px;
    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;
}

/*==================================
FAQ READ MORE
==================================*/
.faq-hidden {
    display: none;
}

.faq-hidden.show {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.faq-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 34px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.faq-read-btn:hover {
    background: var(--secondary);
}

.faq-read-btn i {
    transition: .35s;
}

.faq-read-btn.active i {
    transform: rotate(180deg);
}

/*==================================
FAQ READ MORE
==================================*/
.faq-hidden {
    display: none;
}

.faq-hidden .faq-item {
    margin-top: 20px;
}

.faq-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 34px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.faq-read-btn:hover {
    background: var(--secondary);
}

.faq-read-btn i {
    transition: .35s;
}

/*  */
/* ==================================
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 {
    display: flex;
    flex-direction: column;
    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 {
    display: flex;
    flex-direction: column;
    flex: 1;
    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: 767px) {
    .blog-section .section-heading {
        padding-bottom: 15px;
    }
}

@media(max-width:575px) {
    .blog-image img {
        height: 200px;
    }

    .blog-content {
        padding: 20px;
    }
}

/* ==================================
GLOBAL PRESENCE
================================== */
.global-section {
    background: linear-gradient(180deg,
            var(--primary),
            var(--primary-dark));
    overflow: hidden;
}

.global-section .section-subtitle,
.global-section h2,
.global-section p {
    color: #fff;
}

.global-section .section-subtitle::before {
    background: #fff;
}

/* Map */
.world-map {
    position: relative;
    max-width: 1200px;
    margin: auto;
}

.world-map img {
    width: 100%;
    display: block;
}

/* Pin */
.map-pin {
    position: absolute;
    transform: translate(-50%, -50%);
}

/* Red Dot */
.pin {
    width: 16px;
    height: 16px;
    background: #ff2f2f;
    border-radius: 50%;
    display: block;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

/* Pulse */
.pin::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: rgba(255, 47, 47, .3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    from {
        transform: scale(1);
        opacity: 1;
    }

    to {
        transform: scale(2);
        opacity: 0;
    }
}

/* Card */
.location-card {
    position: absolute;
    top: -30px;
    left: 35px;
    width: 260px;
    padding: 22px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .35s;
}

.location-card h5 {
    margin-bottom: 10px;
}

.location-card p {
    color: var(--text);
    margin: 0;
}

/* Hover */
.map-pin:hover .location-card {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Pin Positions */
.india {
    left: 68.6%;
    top: 60%;
}

.usa {
    left: 27.8%;
    top: 36%;
}

.dubai {
    left: 58.5%;
    top: 40%;
}

.location-card.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ==================================
GLOBAL MAP RESPONSIVE
================================== */
@media (max-width: 991px) {
    .world-map {
        margin-top: 40px;
    }

    .location-card {
        width: 220px;
        padding: 18px;
    }
}

@media (max-width: 767px) {
    .world-map {
        overflow: visible;
    }

    .pin {
        width: 14px;
        height: 14px;
    }

    .location-card {
        width: 190px;
        left: 50%;
        top: -15px;
        transform: translate(-50%, -100%) scale(.95);
        padding: 16px;
        border-radius: 12px;
    }

    .map-pin:hover .location-card,
    .location-card.show {
        transform: translate(-50%, -100%) scale(1);
    }

    .location-card::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: -8px;
        transform: translateX(-50%);
        width: 16px;
        height: 16px;
        background: #fff;
        rotate: 45deg;
    }

    .location-card h5 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .location-card p {
        font-size: 13px;
        line-height: 1.5;
    }
}

/* ==================================
TEAM SECTION
================================== */
.team-section {
    background: var(--white);
    overflow: hidden;
}

/* Navigation */
.team-nav {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.team-prev,
.team-next {
    width: 55px;
    height: 55px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary);
    transition: var(--transition);
}

.team-prev:hover,
.team-next:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

/* Card */
.team-card {
    position: relative;
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

/* Accent */
.team-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: .4s;
    z-index: 5;
}

.team-card:hover::before {
    transform: scaleX(1);
}

/* Image */
.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: .6s;
}

.team-card:hover .team-image img {
    transform: scale(1.08);
}

/* Overlay */
.team-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(15, 23, 32, .75),
            transparent 60%);
    opacity: 0;
    transition: .4s;
    z-index: 1;
}

.team-card:hover .team-image::before {
    opacity: 1;
}

/* Social */
.team-social {
    position: absolute;
    left: 20px;
    bottom: 20px;
    display: flex;
    gap: 10px;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: .4s;
}

.team-card:hover .team-social {
    opacity: 1;
    transform: translateY(0);
}

.team-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: .3s;
}

.team-social a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-4px);
}

/* Content */
.team-content {
    padding: 25px;
    text-align: center;
}

.team-content h4 {
    margin-bottom: 8px;
}

.team-content span {
    display: inline-block;
    color: var(--primary);
    font-weight: 500;
}

/* ==================================
RESPONSIVE
================================== */
@media(max-width:1199px) {
    .team-image img {
        height: 340px;
    }
}

@media(max-width:991px) {
    .team-nav {
        justify-content: flex-start;
        margin-top: 25px;
    }
}

@media(max-width:767px) {
    .team-section .section-heading {
        text-align: center;
    }

    .team-nav {
        justify-content: center;
    }

    .team-prev,
    .team-next {
        width: 48px;
        height: 48px;
    }

    .team-image img {
        height: 320px;
    }

    .team-content {
        padding: 20px;
    }
}

@media(max-width:575px) {
    .team-image img {
        height: 300px;
    }

    .team-content {
        padding: 18px;
    }

    .team-content h4 {
        font-size: 20px;
    }

    .team-social {
        left: 15px;
        bottom: 15px;
    }

    .team-social a {
        width: 38px;
        height: 38px;
    }
}

/*  */
/* ==================================
FEATURED SOLUTION
================================== */
.feature-section {
    background: var(--white);
    overflow: hidden;
}

/* ==================================
HEADER
================================== */
.feature-nav {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.feature-prev,
.feature-next {
    width: 55px;
    height: 55px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary);
    transition: var(--transition);
}

.feature-prev:hover,
.feature-next:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-4px);
}

/* ==================================
SWIPER
================================== */
.featureSwiper {
    overflow: hidden;
}

.featureSwiper .swiper-slide {
    opacity: 0 !important;
    transition: opacity .5s ease;
}

.featureSwiper .swiper-slide-active {
    opacity: 1 !important;
}

/* ==================================
FEATURE CARD
================================== */
.feature-card {
    position: relative;
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    padding: 30px;
}

/* Top Accent */
.feature-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: .4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

/* ==================================
ROW
================================== */
.feature-card .row {
    align-items: stretch;
}

/* ==================================
IMAGE
================================== */
.feature-image {
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.feature-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    transition: 8s ease;
}

.featureSwiper .swiper-slide-active .feature-image img {
    transform: scale(1.08);
}

/* Overlay */
.feature-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .25),
            transparent 60%);
    z-index: 1;
    opacity: 0;
    transition: .4s;
}

.feature-card:hover .feature-image::before {
    opacity: 1;
}

/* ==================================
CONTENT
================================== */
.feature-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-left: 40px;
}

/* Counter */
.feature-count {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    color: var(--primary);
    font-size: 32px;
    font-weight: 700;
}

.feature-count span {
    color: #9ca3af;
    font-size: 24px;
    font-weight: 500;
}

/* Title */
.feature-content h3 {
    position: relative;
    margin-bottom: 25px;
    padding-bottom: 20px;
}

.feature-content h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 90px;
    height: 4px;
    background: var(--primary);
    border-radius: 30px;
}

/* Paragraph */
.feature-content p {
    color: var(--text);
    line-height: 1.9;
    margin-bottom: 25px;
}

/* ==================================
FEATURE LIST
================================== */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-weight: 500;
    color: var(--secondary);
}

.feature-list li:last-child {
    margin-bottom: 0;
}

.feature-list i {
    color: var(--primary);
    font-size: 18px;
}

/* ==================================
BUTTON
================================== */
.feature-content .btn-theme {
    margin-top: auto;
    align-self: flex-start;
}

/* ==================================
FEATURE ANIMATIONS
================================== */
/* Hide Elements */
.feature-count,
.feature-content h3,
.feature-content p,
.feature-list,
.feature-content .btn-theme {
    opacity: 0;
    transform: translateY(40px);
}

/* Active Slide Animation */
.featureSwiper .swiper-slide-active .feature-count {
    animation: featureFade .7s .1s forwards;
}

.featureSwiper .swiper-slide-active h3 {
    animation: featureFade .7s .25s forwards;
}

.featureSwiper .swiper-slide-active p {
    animation: featureFade .7s .4s forwards;
}

.featureSwiper .swiper-slide-active .feature-list {
    animation: featureFade .7s .55s forwards;
}

.featureSwiper .swiper-slide-active .btn-theme {
    animation: featureFade .7s .7s forwards;
}

/* Keyframe */
@keyframes featureFade {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================================
HOVER EFFECTS
================================== */
.feature-card {
    transition: var(--transition);
}

.feature-card:hover {
    box-shadow: 0 30px 70px rgba(0, 0, 0, .12);
}

.feature-card:hover .feature-image img {
    transform: scale(1.1);
}

.feature-card:hover h3::after {
    width: 120px;
}

.feature-content h3::after {
    transition: .4s;
}

/* ==================================
RESPONSIVE
================================== */
/* Large Desktop */
@media (max-width:1399px) {
    .feature-image {
        min-height: 480px;
    }
}

/* Laptop */
@media (max-width:1199px) {
    .feature-card {
        padding: 25px;
    }

    .feature-image {
        min-height: 440px;
    }

    .feature-content {
        padding-left: 30px;
    }
}

/* Tablet */
@media (max-width:991px) {
    .feature-nav {
        justify-content: flex-start;
        margin-top: 25px;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-content {
        padding-left: 0;
        padding-top: 35px;
    }

    .feature-image {
        min-height: 400px;
    }

    .feature-content .btn-theme {
        margin-top: 10px;
    }
}

/* Mobile */
@media (max-width:767px) {
    .feature-section .section-heading {
        text-align: center;
    }

    .feature-nav {
        justify-content: center;
    }

    .feature-prev,
    .feature-next {
        width: 48px;
        height: 48px;
    }

    .feature-card {
        padding: 15px;
    }

    .feature-image {
        min-height: 280px;
    }

    .feature-content {
        text-align: center;
        padding-top: 30px;
    }

    .feature-count {
        justify-content: center;
        font-size: 26px;
    }

    .feature-count span {
        font-size: 18px;
    }

    .feature-content h3 {
        padding-bottom: 18px;
    }

    .feature-content h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .feature-list {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .feature-list li {
        justify-content: center;
    }

    .feature-content .btn-theme {
        align-self: center;
    }
}

/* Small Mobile */
@media (max-width:575px) {
    .feature-card {
        border-radius: var(--radius);
    }

    .feature-image {
        min-height: 230px;
    }

    .feature-content {
        padding-top: 25px;
    }

    .feature-content p {
        line-height: 1.8;
    }

    .feature-list li {
        font-size: 15px;
    }

    .feature-content .btn-theme {
        width: 100%;
        justify-content: center;
    }
}

/*==================================
SIMPLE LIST
==================================*/
.simple-list {
    list-style: none;
    margin: 35px 10px 0;
    padding: 0;
}

.simple-list li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 16px;
    color: var(--dark);
    line-height: 1.8;
}

.simple-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 5px rgba(20, 175, 195, .15);
}

.simple-list li strong {
    color: var(--dark);
    font-weight: 600;
}

@media(max-width:767px) {
    .simple-list li {
        padding-left: 28px;
        margin-bottom: 14px;
    }

    .simple-list li::before {
        width: 8px;
        height: 8px;
        top: 11px;
    }
}