﻿:root {
    --primary: #2dd4bf;
    --primary2: #22c55e;
}

/* ================= GLOBAL FIX (IMPORTANT) ================= */
html,
body {
    width: 100%;
    overflow-x: hidden; /* FIX: screen sliding stop */
}

* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

/* ================= BODY ================= */
body {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: #f4f6f7;
    margin: 0;
}

/* MAIN WRAPPER */
.hero-wrapper {
    margin: 20px auto;
    max-width: 98%;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

/* HERO SECTION */
.hero-section {
    min-height: 90vh;
    position: relative;
    padding: 22px 18px 0px 18px;
    overflow: hidden;
}

/* Background Layer */
.hero-bg {
    position: absolute;
    inset: 0;
    background: url("../images/bg.webp") center/cover no-repeat;
    transform: scale(1);
    transition: transform 0.7s ease;
    z-index: 0;
}

/* Zoom effect when menu open */
.hero-section.menu-open .hero-bg {
    transform: scale(1.08);
}

/* Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(0, 40, 40, 0.85) 0%, rgba(0, 40, 40, 0.55) 40%, rgba(0, 40, 40, 0.2) 65%, rgba(0, 40, 40, 0.1) 100% );
    z-index: 1;
}

/* ===================== NAVBAR ===================== */
.top-navbar {
    position: relative;
    z-index: 10;
    padding: 0 6px;
}

.nav-row {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: nowrap;
    min-width: 0; /* FIX overflow */
}

.nav-logo {
    font-size: 30px;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 26px;
    margin: 0;
    padding: 0;
    flex: 1;
    min-width: 0;
}

    .nav-menu a {
        color: #fff;
        text-decoration: none;
        font-weight: 600;
        font-size: 15px;
        transition: 0.2s;
    }

        .nav-menu a:hover,
        .nav-menu a.active {
            color: #ffffff;
        }

/* RIGHT SIDE */
.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* =====================
   PROFILE TRIGGER
===================== */

.nav-profile {
    position: relative;
}

.profile-trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    cursor: pointer;
    transition: .25s;
}

    .profile-trigger:hover {
        background: rgba(255,255,255,.08);
    }

    .profile-trigger img {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        object-fit: cover;
    }

.profile-email {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

.profile-trigger i {
    color: #fff;
    font-size: 12px;
    opacity: .8;
    transition: transform .25s;
}

.nav-phone {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
/* =====================
   DROPDOWN PANEL
===================== */

.profile-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 12px);
    width: 220px;
    background: #ffffff;
    border-radius: 18px;
    padding: 10px;
    box-shadow: 0 20px 50px rgba(0,0,0,.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .25s;
    z-index: 999;
}

/* show on hover */
.nav-profile:hover .profile-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-profile:hover .profile-trigger i {
    transform: rotate(180deg);
}

/* menu links */
.profile-dropdown a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: #1f2937;
    font-weight: 600;
    font-size: 14px;
    transition: .2s;
}

    .profile-dropdown a:hover {
        background: #f3f4f6;
    }

/* divider */
.drop-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 6px 0;
}

.profile-logout {
    min-width: 200px;
}

/* FORM RESET */
.logout-form {
    margin: 0;
}

/* LOGOUT BUTTON */
.profile-logout .logout-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: none;
    padding: 12px 16px;
    font-size: 14px;
    color: #ef4444;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.25s ease;
}

    .profile-logout .logout-btn:hover {
        background: #fee2e2;
    }

    /* ICON */
    .profile-logout .logout-btn i {
        font-size: 16px;
    }

/* 📱 MOBILE RESPONSIVE */
/* 📱 MOBILE CENTER */
@media (max-width: 576px) {
    .profile-logout {
        width: 100%;
        display: flex;
        justify-content: center; /* center horizontally */
        align-items: center;
    }

        .profile-logout .logout-form {
            width: 90%; /* thoda margin sides */
            max-width: 320px;
        }

        .profile-logout .logout-btn {
            justify-content: center; /* icon + text center */
            padding: 16px;
            font-size: 16px;
        }

            .profile-logout .logout-btn i {
                font-size: 18px;
            }
}


/* SUBMENU WRAPPER */
.drop-submenu {
    position: relative;
}

/* trigger button */
.submenu-trigger {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    color: #1f2937;
    transition: .2s;
}

    .submenu-trigger:hover {
        background: #f3f4f6;
    }

    /* arrow rotate */
    .submenu-trigger i {
        font-size: 12px;
        transition: transform .25s ease;
    }

/* PANEL */
.submenu-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
    padding-left: 10px;
}

/* open state */
.drop-submenu.open .submenu-panel {
    max-height: 160px;
}

/* rotate arrow */
.drop-submenu.open .submenu-trigger i {
    transform: rotate(90deg);
}

/* submenu links */
.submenu-panel a {
    display: block;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
    color: #374151;
    text-decoration: none;
}

    .submenu-panel a:hover {
        background: #f3f4f6;
    }


.nav-line {
    margin-top: 16px;
    height: 1px;
    background: rgba(255, 255, 255, 0.22);
    display: block;
}

@media (max-width: 991px) {
    .nav-line {
        display: none;
    }
}

/* Toggle button */
.nav-toggle {
    display: none; /* default hidden */
    margin-left: auto;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    place-items: center;
    transition: 0.25s;
}

    .nav-toggle:hover {
        background: rgba(255, 255, 255, 0.16);
    }

    /* Icon rotate animation */
    .nav-toggle i {
        transition: 0.25s ease;
        font-size: 18px;
    }

    .nav-toggle.active i {
        transform: rotate(180deg);
    }

/* ===================== MOBILE MENU ===================== */
.mobile-menu {
    margin-top: 14px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(0, 30, 30, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-10px);
    transition: .4s ease;
    width: 100%;
    /* ✅ FIX */
    text-align: center;
}

    .mobile-menu.show {
        max-height: 1000px; /* bigger so submenu fit ho */
        opacity: 1;
        transform: translateY(0);
    }

    /* main links */
    .mobile-menu > a {
        display: block;
        padding: 12px;
        border-radius: 10px;
        color: #fff;
        font-weight: 700;
        text-decoration: none;
    }

/* dropdown button */
.mobile-drop-btn {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-weight: 700;
    padding: 12px;
    border-radius: 10px;
    display: flex;
    justify-content: center; /* ✅ center */
    align-items: center;
    gap: 8px; /* space between text & icon */
}

/* submenu */
.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s ease;
}

/* open state */
.mobile-dropdown.open .mobile-submenu {
    max-height: 900px;
}

/* rotate arrow */
.mobile-dropdown.open i {
    transform: rotate(180deg);
}

/* submenu links */
.mobile-submenu a {
    display: block;
    padding: 8px 10px;
    font-size: 14px;
    color: rgba(255,255,255,.9);
    text-decoration: none;
}

/* headings */
.mobile-submenu h6 {
    margin: 10px 0 4px;
    font-size: 14px;
    font-weight: 800;
    opacity: .7;
    color: #69eb67;
}

/* bottom button center only */
.mobile-bottom {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.mobile-profile-phone {
    width: 100%;
    border: none;
    border-radius: 14px;
    padding: 10px 8px;
    background: rgba(255,255,255,.08);
    color: #fff;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center; /* center contents */
    text-align: center;
    font-weight: 600;
}
/* trigger */
.mobile-profile-trigger {
    width: 100%;
    border: none;
    border-radius: 14px;
    padding: 10px 8px;
    background: rgba(255,255,255,.08);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center; /* center contents */
    text-align: center;
    font-weight: 600;
}


.nav-mobile-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    margin-bottom: 8px;
    border-radius: 12px;
    background: rgba(255,255,255,.08);
    color: #e5e7eb;
    font-weight: 600;
    font-size: 14px;
}

    .nav-mobile-phone i {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        background: linear-gradient(135deg, #22c55e, #2dd4bf);
        color: #ffffff;
        font-size: 14px;
    }



/* avatar */
.mobile-profile-trigger img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    flex-shrink: 0;
    margin: 0;
}

/* panel */
.mobile-profile-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.mobile-profile.open .mobile-profile-panel {
    max-height: 800px; /* big enough */
}

/* links */
.mobile-profile-panel a {
    display: block;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    color: rgba(255, 255, 255, .9);
    font-weight: 700;
}

    .mobile-profile-panel a:hover {
        background: rgba(255,255,255,.1);
    }

.mobile-profile-panel .logout {
    color: #ef4444;
}

/* submenu */
.mobile-submenu-trigger {
    width: 100%;
    border: none;
    background: none;
    color: #e5e7eb;
    font-weight: 600;
    padding: 10px;
    display: flex;
    justify-content: space-between;
}

.mobile-submenu-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
    padding-left: 10px;
}

.mobile-submenu.open .mobile-submenu-panel {
    max-height: 160px;
}

.mobile-submenu-panel a {
    font-size: 13px;
    color: #cbd5f5;
}



/* ===== MEGA MENU ===== */

.mega-parent {
    position: static; /* important full width */
}

/* PANEL */
.mega-panel {
    position: absolute;
    left: 0;
    top: 70%;
    width: 100%;
    background: #ffffff;
    color: #111;
    border-radius: 18px;
    margin-top: 18px;
    padding: 28px 24px;
    box-shadow: 0 30px 70px rgba(0,0,0,.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: .35s ease;
    z-index: 999;
}

/* SHOW ON HOVER */
.mega-parent:hover .mega-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* COLUMN HEADINGS */
.mega-panel h6 {
    font-weight: 800;
    font-size: 13px;
    letter-spacing: .6px;
    margin-bottom: 14px;
}

/* LINKS */
.mega-panel a {
    display: block;
    color: #444;
    text-decoration: none;
    font-size: 14px;
    padding: 6px 0;
    font-weight: 600;
    transition: .2s;
}

    .mega-panel a:hover {
        color: #000;
        transform: translateX(3px);
    }

/* LEFT PROMO */
.mega-promo {
    border-right: 1px solid #eee;
    padding-right: 24px;
}

/* BOTTOM STRIP */
.mega-bottom-bar {
    border-top: 1px solid #eee;
    margin-top: 24px;
    padding-top: 14px;
    display: flex;
    gap: 32px;
    font-weight: 700;
    font-size: 14px;
}

    .mega-bottom-bar a {
        color: #222;
    }

.nav-menu a i {
    font-size: 12px;
    margin-left: 6px;
    transition: .25s ease;
}

/* rotate when mega open */
.mega-parent:hover > a i {
    transform: rotate(180deg);
}

/* ===================== HERO CONTENT ===================== */
.hero-content {
    position: relative;
    z-index: 5;
    padding: 95px 12px 30px 12px;
}

.hero-mini-title {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    letter-spacing: 1.2px;
    font-size: 12px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

    .hero-mini-title::before {
        content: "//";
        color: var(--primary);
        font-weight: 900;
    }

.hero-title {
    font-size: clamp(34px, 4vw, 64px);
    font-weight: 500;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 18px;
    word-wrap: break-word; /* FIX */
}

    .hero-title span {
        color: var(--primary);
    }

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.btn-pill {
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    text-decoration: none;
    transition: 0.2s;
}

.btn-touch {
    background: linear-gradient(90deg, var(--primary), var(--primary2));
    color: #fff;
}

    .btn-touch:hover {
        transform: translateY(-2px);
        
    }

.btn-explore {
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #000;
}

    .btn-explore:hover {
        transform: translateY(-2px);
    }

/* ===================== BOTTOM CATEGORIES ===================== */
.hero-bottom {
    position: relative;
    z-index: 5;
    margin-top: 30px;
    padding: 18px 10px 24px;
}

.bottom-line {
    height: 1px;
    background: rgba(255, 255, 255, 0.18);
    margin-bottom: 16px;
}

/* ITEM */
.cat-item {
    display: flex;
    flex-direction: column;
    align-items: first baseline;
    gap: 10px;
    text-align: center;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 8px;
    border-radius: 14px;
    transition: .25s;
    width: 100%;
}

    .cat-item:hover {
        background: rgba(255, 255, 255, 0.08);
        transform: translateY(-4px);
    }

    /* ICON BASE */
    .cat-item i {
        font-size: 22px;
        opacity: 0.95;
        transition: transform .3s ease, color .3s ease, text-shadow .3s ease;
    }

    /* hover glow */
    .cat-item:hover i {
        color: #4ade80;
        text-shadow: 0 0 12px rgba(74,222,128,.6);
        transform: scale(1.18);
    }

/* FLOAT */
@keyframes iconFloat {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

.ani-float {
    animation: iconFloat 3s ease-in-out infinite;
}

/* PULSE */
@keyframes iconPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.12);
    }

    100% {
        transform: scale(1);
    }
}

.ani-pulse {
    animation: iconPulse 2.2s ease-in-out infinite;
}

/* ROTATE MICRO */
@keyframes iconRotate {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(8deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.ani-rotate {
    animation: iconRotate 3s ease-in-out infinite;
}

/* BOUNCE SOFT */
@keyframes iconBounce {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.ani-bounce {
    animation: iconBounce 2s ease-in-out infinite;
}


/* ================= ABOUT SECTION ================= */
.about-section {
    background: #f6f4ef;
    overflow-x: hidden; /* FIX */
}

.about-left {
    position: relative;
    min-height: 550px;
    padding-left: 45px;
    overflow: visible;
}

/* Vertical Reviews Text */
.about-reviews {
    position: absolute;
    left: 12px;
    bottom: 45px;
    transform: rotate(-90deg);
    transform-origin: left bottom;
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 3px;
    color: #0b3b3b;
    text-transform: uppercase;
    z-index: 5;
    white-space: nowrap;
}

/* Big Image */
.about-img-big {
    width: 78%;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
    position: relative;
}

    .about-img-big img {
        width: 100%;
        height: 520px;
        object-fit: cover;
        display: block;
        transition: transform 0.6s ease; /* smooth zoom */
    }

    /* Hover Zoom Effect */
    .about-img-big:hover img {
        transform: scale(1.12);
    }


/* Experience Box */
.about-exp-box {
    position: absolute;
    left: 0px;
    top: 50px;
    width: 170px;
    height: 170px;
    border-radius: 18px;
    background: linear-gradient(135deg, #16a34a, #2dd4bf);
    color: #fff;
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 18px 35px rgba(34, 197, 94, 0.25);
    z-index: 4;
}

/* Prevent exp-box from causing overflow */
.about-exp-box,
.about-img-small {
    max-width: 100%;
}

.exp-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.18);
    display: grid;
    place-items: center;
    font-size: 18px;
}

.exp-text h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 900;
}

.exp-text p {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
}

/* Small Image */
.about-img-small {
    position: absolute;
    right: 0;
    bottom: -30px;
    width: 45%;
    border-radius: 22px;
    overflow: hidden;
    border: 10px solid #f6f4ef;
    z-index: 3;
}

    .about-img-small img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        display: block;
        transition: transform 0.6s ease, filter 0.4s ease;
    }

    /* Hover Effect */
    .about-img-small:hover img {
        transform: scale(1.15);
    }


/* RIGHT CONTENT */
.about-tag {
    font-weight: 500;
    letter-spacing: 2px;
    color: #0b3b3b;
    font-size: 13px;
    margin-bottom: 10px;
}

    .about-tag::before {
        content: "//";
        color: #22c55e;
        margin-right: 8px;
    }

.about-title {
    font-size: clamp(34px, 3.2vw, 56px);
    font-weight: 500;
    line-height: 1.05;
    color: #0b3b3b;
    margin-bottom: 16px;
}

    .about-title .highlight {
        color: #22c55e;
    }

.about-desc {
    color: #5c6b6b;
    font-size: 15.5px;
    line-height: 1.8;
    margin-bottom: 14px;
    max-width: 560px;
}

/* Avatars + Award */
.about-info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.clients-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.avatar-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

    .avatar-group img {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid #f6f4ef;
        margin-left: -10px;
    }

        .avatar-group img:first-child {
            margin-left: 0;
        }

.client-text {
    margin: 0;
    font-size: 14px;
    color: #5c6b6b;
}

.award-box {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 220px;
}

.award-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, #16a34a, #2dd4bf);
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 20px;
}

.award-box h5 {
    margin: 0;
    font-weight: 500;
    color: #0b3b3b;
    font-size: 18px;
}

.award-box p {
    margin: 0;
    font-size: 14px;
    color: #5c6b6b;
}

/* Divider line */
.about-line {
    margin: 26px 0;
    border-color: rgba(0, 0, 0, 0.08);
}

/* Button */
.about-btn {
    background: linear-gradient(90deg, #2dd4bf, #22c55e);
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.2s;
}

    .about-btn:hover {
        transform: translateY(-2px);
        color: #fff;
    }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 991px) {
    .nav-menu,
    .nav-right {
        display: none;
    }

    .nav-row {
        gap: 12px; /* FIX: overflow reduce */
    }

    .nav-toggle {
        display: grid;
    }

    .hero-content {
        padding-top: 75px;
    }

    /* ABOUT */
    .about-left {
        min-height: auto;
        padding-left: 0;
        padding-bottom: 55px;
    }

    .about-img-big {
        width: 100%;
    }

        .about-img-big img {
            height: 420px;
        }

    .about-img-small {
        width: 65%;
        right: 10px;
        bottom: -22px;
    }

    .about-exp-box {
        left: 12px;
        top: 20px;
    }

    .about-reviews {
        left: 8px;
        bottom: 18px;
        font-size: 11px;
        letter-spacing: 2px;
    }
}

@media (max-width: 576px) {
    .hero-wrapper {
        margin: 10px;
        max-width: calc(100% - 20px); /* FIX */
        border-radius: 18px;
    }

    .hero-section {
        min-height: auto;
        padding: 18px 14px 0px 14px;
    }

    .hero-content {
        padding: 70px 6px 20px 6px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.15;
    }

    .btn-pill {
        width: 100%;
        justify-content: center;
    }

    .hero-bottom {
        padding: 16px 6px 20px 6px;
    }

    /* ABOUT */
    .about-img-big {
        width: 95%;
        margin: 0 auto;
        border-radius: 22px;
    }

        .about-img-big img {
            height: 360px;
            border-radius: 22px;
        }

    .about-img-small {
        width: 72%;
        right: 6px;
        bottom: -18px;
        border-width: 8px;
        border-radius: 18px;
    }

        .about-img-small img {
            height: 190px;
        }

    .about-exp-box {
        width: 135px;
        height: 135px;
        top: 18px;
        left: 10px;
        padding: 14px;
    }

    .about-reviews {
        left: 6px;
        bottom: 18px;
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    /* right side content spacing */
    .about-info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .award-box {
        min-width: auto;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .about-img-big img {
        height: 330px;
    }

    .about-img-small {
        width: 78%;
        right: 4px;
        bottom: -14px;
        border-width: 7px;
    }

        .about-img-small img {
            height: 200px;
        }

    .about-exp-box {
        width: 120px;
        height: 120px;
        padding: 10px;
        top: 16px;
        left: 8px;
    }

    .exp-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        border-radius: 12px;
    }

    .about-reviews {
        font-size: 10px;
        bottom: 14px;
    }
}

/* ================= SERVICES SECTION ================= */
/* ================= SERVICE SECTION ================= */

.services-section {
    background: #062b2b;
    border-radius: 28px;
    margin: 20px;
    position: relative;
    overflow: hidden;
}

    /* BIG LEFT RING CIRCLE */
    .services-section::before {
        content: "";
        position: absolute;
        width: 620px;
        height: 620px;
        border-radius: 50%;
        border: 80px solid rgba(255, 255, 255, 0.04);
        left: -320px;
        bottom: -320px;
    }

/* CONTAINER */
.services-container {
    max-width: 1400px;
    margin: auto;
    padding: 80px 0 40px;
    position: relative;
    z-index: 2;
}

/* LEFT CONTENT */
.services-tag {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 16px;
    display: inline-block;
}

    .services-tag span {
        color: #2dd4bf;
    }

.services-title {
    font-size: clamp(36px, 4vw, 58px);
    font-weight: 500;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 18px;
}

    .services-title span {
        color: #2dd4bf;
    }

.services-desc {
    color: rgba(255, 255, 255, 0.75);
    max-width: 420px;
    line-height: 1.8;
    margin-bottom: 28px;
}

.services-btn {
    background: linear-gradient(90deg, #2dd4bf, #22c55e);
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    gap: 10px;
}

/* ================= GRID ================= */

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 80px;
    row-gap: 40px;
}

/* ======================
   SERVICE CARD BOX
====================== */

.service-item {
    max-width: 320px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    padding: 26px 22px;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease;
}

    /* soft glow bg */
    .service-item::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 10%, rgba(45,212,191,.18), transparent 60%);
        opacity: 0;
        transition: opacity .3s ease;
    }

    /* hover card */
    .service-item:hover {
        transform: translateY(-8px);
        background: rgba(255,255,255,0.10);
        border-color: rgba(45,212,191,.6);
        box-shadow: 0 22px 50px rgba(0,0,0,.35);
    }

        .service-item:hover::after {
            opacity: 1;
        }

    /* ======================
   TITLE
====================== */

    .service-item h6 {
        margin-top: 16px;
        font-size: 16px;
        font-weight: 600;
        line-height: 1.45;
    }

/* ======================
   ICON CIRCLE
====================== */

.icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2dd4bf, #22c55e);
    display: grid;
    place-items: center;
    font-size: 22px;
    box-shadow: 0 12px 26px rgba(34, 197, 94, 0.35);
    transition: transform .35s ease, box-shadow .35s ease, filter .35s ease;
}

/* ======================
   ICON ANIMATION ON HOVER
====================== */

/* rotate + pop */
.service-item:hover .icon-circle {
    transform: scale(1.12) rotate(8deg);
    box-shadow: 0 18px 36px rgba(34,197,94,.55);
    filter: brightness(1.15);
}

    /* icon bounce micro */
    .service-item:hover .icon-circle i {
        animation: svcBounce .6s ease;
    }

@keyframes svcBounce {
    0% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-6px);
    }

    70% {
        transform: translateY(2px);
    }

    100% {
        transform: translateY(0);
    }
}

/* ======================
   LAST ITEM POSITION
====================== */

.service-item.last {
    grid-column: 1 / 2;
}

/* ======================
   RESPONSIVE
====================== */

@media (max-width: 992px) {
    .services-grid {
        column-gap: 40px;
        row-gap: 28px;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-item {
        max-width: 100%;
    }
}

/* FOOTER */
.services-footer {
    margin-top: 60px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
}

.badge-free {
    background: linear-gradient(90deg, #2dd4bf, #22c55e);
    color: #003333;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 999px;
}

.services-footer a {
    color: #2dd4bf;
    font-weight: 700;
    text-decoration: none;
}
/* RIGHT COLUMN */
.services-right {
    display: flex;
    flex-direction: column;
}

/* FOOTER – SIDE POSITION */
.services-footer.side-footer {
    margin-top: 60px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    max-width: 520px; /* image jaisa width */
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .services-footer.side-footer {
        margin-top: 40px;
        max-width: 100%;
    }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
    .services-grid {
        margin-top: 40px;
        grid-template-columns: 1fr;
        row-gap: 40px;
    }

    .service-item.last {
        grid-column: auto;
    }

    .services-right {
        margin-top: 50px;
    }
}

@media (max-width: 576px) {
    .services-section {
        margin: 10px;
    }

    .services-title {
        font-size: 32px;
    }
}

/* ================= HOW WE WORK SECTION ================= */
.work-section {
    background: #f6f4ef;
    padding: 20px 0;
}

/* Same hero-wrapper style */
.work-wrapper {
    max-width: 98%;
    margin: 20px auto;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
}

/* Tag */
.work-tag {
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 13px;
    color: #0b3b3b;
    margin-bottom: 10px;
}

    .work-tag::before {
        content: "//";
        color: #22c55e;
        margin-right: 8px;
    }

/* Title */
.work-title {
    font-size: clamp(32px, 3.2vw, 54px);
    font-weight: 500;
    line-height: 1.1;
    color: #0b3b3b;
    margin: 0;
}

    .work-title span {
        color: #22c55e;
    }

/* Button */
.work-btn {
    background: linear-gradient(90deg, #2dd4bf, #22c55e);
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.2s;
    white-space: nowrap;
}

    .work-btn:hover {
        transform: translateY(-2px);
    }

/* Cards */
/* carousel item full height */
.work-carousel .item {
    padding: 10px 5px;
    height: 100%;
}

/* CARD FLEX LAYOUT */
.work-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 10px 0 0;
}

/* ICON */
.work-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #16a34a, #2dd4bf);
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 14px 25px rgba(34, 197, 94, 0.2);
    flex-shrink: 0;
}

/* LINE */
.work-line {
    margin: 18px 0 16px;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

/* TITLE */
.work-card h5 {
    font-size: 16px;
    font-weight: 700;
    color: #0b3b3b;
    margin-bottom: 10px;
    flex-shrink: 0;
}

/* TEXT — THIS MAKES ALIGNMENT WORK */
.work-card p {
    font-size: 14px;
    line-height: 1.8;
    color: #6b7a7a;
    margin-bottom: 18px;
    flex-grow: 1; /* key line */
}

/* =======================
   MORE BUTTON — FIXED
======================= */

.work-more-btn {
    margin-top: auto; /* stick to bottom */
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #16a34a, #2dd4bf);
    border: 1px solid rgba(45, 212, 191, 0.35);
    transition: all .25s ease;
}

    /* arrow anim */
    .work-more-btn i {
        font-size: 12px;
        transition: transform .25s ease;
    }

    /* hover */
    .work-more-btn:hover {
        border-color: transparent;
        box-shadow: 0 10px 22px rgba(45,212,191,.35);
    }

        .work-more-btn:hover i {
            transform: translateX(4px);
        }



/* ================= MARQUEE (INFINITY SCROLL) ================= */
.work-marquee {
    /* overflow: hidden; */
    width: 100%;
    padding-bottom: 10px;
}

/* Track */
.work-marquee-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: workMarquee 18s linear infinite;
}

/* Pause on hover */
.work-marquee:hover .work-marquee-track {
    animation-play-state: paused;
}

/* Outline Text Style */
.work-marquee-track span {
    font-size: clamp(46px, 6vw, 92px);
    font-weight: 900;
    letter-spacing: 1px;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 2px rgba(34, 197, 94, 0.55);
    white-space: nowrap;
}

/* Animation */
@keyframes workMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .work-card p {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .work-marquee-track {
        gap: 35px;
        animation-duration: 14s;
    }
}

/* ================= TESTIMONIAL ================= */

.testimonial-section {
    background: #073b39;
    border-radius: 28px;
    margin: 20px;
    overflow: hidden;
    position: relative;
}

    /* subtle globe line effect */
    .testimonial-section::before {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.08);
        left: -120px;
        top: -120px;
    }

.testimonial-container {
    max-width: 1400px;
    margin: auto;
    padding: 70px 0 50px;
    position: relative;
    z-index: 2;
}

/* LEFT */
.testi-tag {
    color: #fff;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 14px;
}

    .testi-tag span {
        color: #2dd4bf;
    }

.testi-title {
    font-size: clamp(34px, 4vw, 54px);
    color: #fff;
    line-height: 1.1;
    font-weight: 500;
}

    .testi-title span {
        color: #2dd4bf;
    }

/* IMAGE */
.testi-image {
    border-radius: 22px;
    overflow: hidden;
}

    .testi-image img {
        width: 100%;
        height: 420px;
        object-fit: cover;
        display: block;
    }

/* RIGHT CONTENT */
.testi-content {
    color: #fff;
    padding-left: 10px;
}

.testi-brand {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

    .testi-brand img {
        height: 36px;
        max-width: 160px;
        object-fit: contain;
    }

.testi-stars {
    color: #22c55e;
    font-size: 18px;
    margin-bottom: 16px;
}

.testi-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 18px;
}

.testi-user strong {
    display: block;
    font-size: 18px;
}

.testi-user span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
}

/* ARROWS */
.testi-arrows {
    margin-top: 18px;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

    .testi-arrows button {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        border: none;
        background: linear-gradient(135deg, #2dd4bf, #22c55e);
        color: #fff;
    }

/* REVIEW CARDS */
.review-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    padding: 26px;
    color: #fff;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease, background .35s ease;
}

    /* LOGO */
    .review-card img {
        height: 34px;
        max-width: 150px;
        object-fit: contain;
        margin-bottom: 14px;
        transition: transform .35s ease, filter .35s ease;
    }

    /* TEXT */
    .review-card p {
        margin: 0;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.75);
        transition: color .3s ease;
    }

        /* NUMBER */
        .review-card p span {
            color: #22c55e;
            font-weight: 700;
            transition: color .3s ease, text-shadow .3s ease;
        }

    /* =====================
   HOVER EFFECT — CLEAN
===================== */

    .review-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 20px 40px rgba(0,0,0,.35), 0 0 0 1px rgba(34,197,94,.35);
        border-color: rgba(34,197,94,.5);
        background: rgba(255, 255, 255, 0.09);
    }

        /* logo pop */
        .review-card:hover img {
            transform: scale(1.08);
            filter: brightness(1.15);
        }

        /* text brighten */
        .review-card:hover p {
            color: #ffffff;
        }

            /* number glow */
            .review-card:hover p span {
                color: #4ade80;
                text-shadow: 0 0 8px rgba(74,222,128,.6);
            }

/* MOBILE */
@media (max-width: 575px) {
    .review-card:hover {
        transform: translateY(-6px);
    }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
    .testi-image img {
        height: 360px;
    }

    .testi-content {
        padding-left: 0;
    }
}

@media (max-width: 576px) {
    .testimonial-section {
        margin: 10px;
    }

    .testi-title {
        font-size: 30px;
    }

    .testi-arrows {
        position: static;
        flex-direction: row;
        justify-content: flex-start;
        margin-top: 20px;
    }
}

/*=======faq section========*/


/* SECTION */
.faq-section {
    padding: 80px 40px;
    background: #f6f7f6;
}

/* LEFT SIDE */
.faq-mini {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
}

    .faq-mini span {
        color: #22c55e;
    }

.faq-title {
    font-size: 52px;
    margin: 15px 0 40px;
    font-weight: 600;
    line-height: 1.2;
    color: #0f172a;
}

    .faq-title span {
        color: #22c55e;
    }

/* HELP CARD */
.faq-help-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    max-width: 420px;
}

.faq-avatars img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    margin-right: -12px;
    border: 3px solid #fff;
}

.faq-help-card h5 {
    margin-top: 18px;
    font-weight: 600;
}

.faq-help-card p {
    color: #6b7280;
    margin-bottom: 10px;
}

.faq-phone {
    margin-top: 10px;
    color: #22c55e;
    font-weight: 600;
}

/* RIGHT SIDE ACCORDION */
.faq-accordion {
    max-width: 760px;
    margin-left: auto;
}

/* FAQ ITEM */
.faq-item {
    background: #ffffff;
    border-radius: 16px;
    margin-bottom: 18px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: 0.3s;
}

/* BUTTON */
.faq-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 24px;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #0f172a;
}

    .faq-btn i {
        font-size: 18px;
        transition: 0.35s ease;
    }

/* CONTENT */
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: 0.45s ease;
    padding: 0 24px;
    font-size: 15px;
    line-height: 1.7;
}

/* =========================
   ACTIVE STATE
========================= */

.faq-item.active {
    background: linear-gradient(135deg,#0f766e,#22c55e);
    border: none;
}

    /* white text */
    .faq-item.active .faq-btn {
        color: #ffffff;
        position: relative;
    }

        /* white icon + rotate */
        .faq-item.active .faq-btn i {
            color: #ffffff;
            transform: rotate(45deg);
        }

        /* ✅ divider line inside active */
        .faq-item.active .faq-btn::after {
            content: "";
            position: absolute;
            left: 24px;
            right: 24px;
            bottom: -2px;
            height: 1px;
            background: rgba(255,255,255,0.35);
        }

    /* show content */
    .faq-item.active .faq-content {
        padding: 18px 24px 24px;
        max-height: 260px;
        color: #ecfdf5;
    }

/* hover */
.faq-btn:hover {
    opacity: 0.92;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {
    .faq-title {
        font-size: 44px;
    }
}

@media (max-width: 992px) {
    .faq-section {
        padding: 70px 30px;
    }

    .faq-title {
        font-size: 38px;
    }

    .faq-accordion {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 18px;
    }

    .faq-title {
        font-size: 30px;
    }

    .faq-help-card {
        max-width: 100%;
    }

    .faq-btn {
        font-size: 16px;
        padding: 20px;
    }
}



/* ================= FOOTER ================= */
.footer-main {
    padding: 10px;
    background: #F6F7F6;
}

.footer-inner {
    border-radius: 24px;
    padding: 50px 60px;
    background: linear-gradient(135deg, #073b3a, #062d2c);
    position: relative;
    overflow: hidden;
}

    /* glow circles */
    .footer-inner::before,
    .footer-inner::after {
        content: "";
        position: absolute;
        width: 260px;
        height: 260px;
        border-radius: 50%;
        background: rgba(0, 255, 200, 0.06);
        filter: blur(40px);
    }

    .footer-inner::before {
        left: -80px;
        bottom: -80px;
    }

    .footer-inner::after {
        right: -60px;
        top: -60px;
    }

/* Title */
.footer-title {
    color: #fff;
    font-size: 44px;
    font-weight: 500;
    line-height: 1.2;
}

    .footer-title span {
        color: #33d6a6;
        font-weight: 600;
    }

/* Headings */
.footer-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-text {
    color: #b7c7c6;
    font-size: 15px;
}

.footer-phone {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
}

/* Social icons */
.footer-social {
    margin-top: 16px;
    display: flex;
    gap: 14px;
}

    .footer-social a {
        width: 44px;
        height: 44px;
        border: 1px solid #5a7f7e;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #e7f3f2;
        transition: 0.3s;
        text-decoration: none;
    }

        .footer-social a:hover {
            background: #33d6a6;
            border-color: #33d6a6;
            color: #062a2a;
        }

/* Divider */
.footer-line {
    margin: 40px 0 26px;
    height: 1px;
    background: rgba(255, 255, 255, 0.22);
}

/* Bottom menu */
.footer-menu {
    display: flex;
    gap: 34px;
    flex-wrap: wrap;
}

    .footer-menu a {
        color: #e6f2f1;
        text-decoration: none;
        font-size: 15px;
        font-weight: 500;
        position: relative;
    }

        .footer-menu a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -6px;
            width: 0;
            height: 2px;
            background: #33d6a6;
            transition: .25s;
        }

        .footer-menu a:hover::after {
            width: 100%;
        }

/* Copyright */
.copyright {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .footer-title {
        font-size: 32px;
    }

    .footer-inner {
        padding: 40px 30px;
    }
}

@media (max-width: 575px) {
    .footer-menu {
        justify-content: center;
        gap: 18px;
        margin-bottom: 10px;
    }
}
