@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

:root {
    --thm-font: "Outfit", sans-serif;
    --font-two: Arial, Helvetica, sans-serif;
    --thm-gray: #333333;
    --thm-gray-rgb: 115, 115, 115;
    --thm-primary: #fe8f4b;
    --thm-secondry: #36274c;
    --text-gray: #dce3ed;
    --thm-primary-rgb: 250, 64, 27;
    --thm-black: #111111;
    --thm-white: #ffffff;
    --thm-black-rgb: 24, 21, 44;
    --font-sm: 15px;
    --font-md: 16px;
    --font-20: 20px;
    --font-Emd: 25px;
    --font-mob: 28px;
    --font-lg: 35px;
    --font-xl: 50px;
    --font-xxl: 60px;
}

html {
    scroll-behavior: auto;
}

.topbar {
    background: var(--thm-primary);
    color: #a9b8c8;
    font-size: 0.82rem;
    padding: 8px 0;
}

.tb-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.tb-left {
    display: flex;
    gap: 24px;
}

.tb-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.topbar a {
    color: var(--thm-white);
    text-decoration: none;
    transition: color 0.2s;
    font-size: var(--font-sm);
    font-weight: 500;
}

    .topbar a:hover {
        color: var(--thm-black);
    }

.topbar i {
    margin-right: 5px;
    color: var(--thm-white);
}

.cart-wrap {
    position: relative;
}

    .cart-wrap .badge {
        position: absolute;
        top: -6px;
        right: -8px;
        background: var(--thm-primary);
        color: #fff;
        font-size: 0.6rem;
        width: 15px;
        height: 15px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }


.header {
    background: black;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: margin 0.3s ease;
    will-change: transform;
}

    .header.active {
        margin: 0;
    }

.hdr-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-txt {
    font-family: var(--thm-font);
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.5px;
}

    .logo-txt span {
        color: var(--thm-primary);
    }

    .logo-txt img {
        height: 70px;
        width: 100%;
    }

nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 14px;
    font-size: var(--font-md);
    font-weight: 500;
    color: var(--thm-white);
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
    font-family: var(--thm-font);
}

    .nav-link i.arr {
        font-size: 0.65rem;
        transition: transform 0.25s;
    }

.nav-item:hover .nav-link {
    color: var(--thm-primary);
}

    .nav-item:hover .nav-link i.arr {
        transform: rotate(180deg);
    }

.nav-link.active {
    color: var(--thm-primary);
}

    .nav-link.active::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 14px;
        right: 14px;
        height: 2px;
        background: var(--thm-primary);
        border-radius: 2px;
    }

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-top: 3px solid var(--thm-primary);
    z-index: 2000;
    animation: fadeDown 0.2s ease;
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-item:hover .dropdown {
    display: block;
}

.dropdown a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: var(--font-sm);
    padding: 8px 18px;
    font-weight: 500;
    color: var(--thm-black);
    text-decoration: none;
    border-bottom: 1px solid #e3e3e3;
    transition: background 0.15s, color 0.15s;
    font-family: var(--thm-font);
}

    .dropdown a:hover {
        background: var(--thm-primary);
        color: white;
    }

    .dropdown a:last-child {
        border-bottom: none;
    }

    .dropdown a i {
        font-size: 0.65rem;
        color: var(--thm-primary);
    }

.has-sub {
    position: relative;
}

.sub-dropdown {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 200px;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-top: 3px solid var(--thm-primary);
    z-index: 2001;
}

.has-sub:hover .sub-dropdown {
    display: block;
}

.hdr-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.hdr-icons {
    display: none;
}

.call-block {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ph-icon {
    width: 42px;
    height: 42px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-primary);
    font-size: 1rem;
}

.call-label {
    font-size: 0.7rem;
    color: var(--thm-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.call-num {
    font-size: var(--font-md);
    font-weight: 600;
    font-family: var(--thm-font);
    color: var(--thm-white);
}

    .call-num a {
        text-decoration: none;
        color: white
    }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
}

    .hamburger span {
        display: block;
        width: 26px;
        height: 2.5px;
        background: var(--thm-white);
        border-radius: 2px;
        transition: transform 0.3s, opacity 0.3s;
    }

    .hamburger.open span:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg);
    }

    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.open span:nth-child(3) {
        transform: translateY(-7.5px) rotate(-45deg);
    }

.mob-nav {
    position: fixed;
    inset: 0;
    background: var(--thm-black);
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    overflow-y: auto;
    padding: 24px 28px 40px;
    display: flex;
    flex-direction: column;
}

    .mob-nav.open {
        transform: translateX(0);
    }

.mob-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}

.mob-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.mob-links {
    list-style: none;
}

    .mob-links li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

.mob-item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .mob-item-row > a {
        flex: 1;
        padding: 10px 0;
        color: #fff;
        font-size: var(--font-md);
        font-weight: 600;
        text-decoration: none;
        transition: color 0.2s;
    }

        .mob-item-row > a:hover {
            color: var(--thm-primary);
        }

.mob-arrow {
    width: 34px;
    height: 34px;
    background: var(--thm-primary);
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    flex-shrink: 0;
}

    .mob-arrow.rotated i {
        transform: rotate(90deg);
    }

.mob-sub {
    display: none;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    margin: 0 0 8px;
    overflow: hidden;
}

    .mob-sub.open {
        display: block;
    }

    .mob-sub a {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 11px 16px;
        color: #c5d0dd;
        font-size: var(--font-md);
        font-weight: 500;
        text-decoration: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        transition: color 0.2s;
    }

        .mob-sub a:hover {
            color: var(--thm-primary);
        }

        .mob-sub a:last-child {
            border-bottom: none;
        }

        .mob-sub a i {
            font-size: 0.7rem;
            color: var(--thm-primary);
        }

.mob-contact {
    margin-top: 28px;
}

.mob-ci {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #a9b8c8;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

    .mob-ci .ico {
        width: 34px;
        height: 34px;
        background: var(--thm-primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 0.8rem;
        flex-shrink: 0;
    }

.mob-social {
    display: flex;
    gap: 14px;
    margin-top: 20px;
}

    .mob-social a {
        color: #a9b8c8;
        font-size: 1.1rem;
        transition: color 0.2s;
    }

        .mob-social a:hover {
            color: var(--thm-primary);
        }

/************** hero section  *************/
.hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #1b2a3b !important;
}

.hero-watermark {
    position: absolute;
    font-family: var(--thm-font);
    font-size: clamp(80px, 16vw, 260px);
    font-weight: 800;
    color: rgba(0, 0, 0, 0.18);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0px auto;
    padding: 20px 10px;
    text-align: center;
}

.hero-eyebrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-bottom: 15px;
}

.hero-line {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
}

.hero-tag {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--thm-primary);
}

.hero-title {
    font-size: var(--font-xxl);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px;
    font-family: var(--thm-font);
}

.hero-desc {
    font-size: clamp(var(--font-md), 2vw, 1.08rem);
    color: rgb(215, 215, 215);
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--thm-primary);
    color: #fff;
    font-family: var(--thm-font);
    font-size: var(--font-sm);
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 30px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    position: relative;
    margin-bottom: 40px;
}

    .hero-btn::before {
        content: "";
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        width: 6px;
        height: 6px;
        background: rgba(255, 255, 255, 0.45);
    }

    .hero-btn:hover {
        background: var(--thm-primary);
        transform: translateY(-2px);
    }

.hero-button {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.why-block {
    padding: 30px 0 40px 0;
    background: #fff;
}

.why-inr {
    padding: 0 70px;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 20px;
}

.why-card {
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s;
    background: #0d1526;
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .why-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--thm-primary);
        transform: scaleX(0);
        transition: transform 0.4s;
    }

    .why-card:hover::before {
        transform: scaleX(1);
    }

    .why-card:hover {
        box-shadow: 0 15px 45px rgba(0,0,0,0.08);
        transform: translateY(-6px);
    }

.why-icon {
    width: 72px;
    height: 72px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 28px;
    color: var(--thm-primary);
    transition: all 0.4s;
}

.why-card:hover .why-icon {
    background: var(--thm-primary);
    color: var(--thm-white);
    transform: rotateY(180deg);
}

.why-card h5 {
    font-family: var(--thm-font);
    font-size: var(--font-Emd);
    font-weight: 600;
    color: var(--thm-white);
    letter-spacing: 0.4px;
    margin: 0;
    line-height: 1.2;
}

.why-card p {
    color: #ccc;
    line-height: 1.6;
    margin: 1rem 0;
}

    .why-card p a {
        color: #666;
        text-decoration: none;
    }

.section-heading {
    font-family: var(--thm-font);
    font-size: clamp(var(--font-sm), 5.5vw, var(--font-lg));
    font-weight: 600;
    color: var(--thm-black);
    line-height: 1.08;
    text-align: center;
    margin-bottom: 20px;
}

.slide-arr {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 3;
}

    .slide-arr:hover {
        background: var(--thm-primary);
    }

    .slide-arr.prev {
        left: 20px;
    }

    .slide-arr.next {
        right: 20px;
    }

.hero-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

    .dot.active {
        background: var(--thm-primary);
        transform: scale(1.3);
    }

@media (max-width: 1024px) {
    .topbar {
        display: none;
    }

    .logo {
        gap: 10px;
        width: 60%;
        display: flex;
        margin: 0 13% 0 25%;
        align-items: center;
        text-decoration: none;
    }

    nav,
    .hdr-right .call-block {
        display: none;
    }

    .hamburger {
        display: flex;
        position: absolute;
    }

    .hdr-icons {
        gap: 10px;
        display: flex;
        align-items: center;
    }

    .hic {
        color: #fff;
        font-size: 25px;
    }

    .search-btn {
        display: none;
    }

    .hero-line {
        height: 30px;
    }

    .hero-eyebrow {
        margin-bottom: 10px;
        gap: 5px;
    }
}

@media (max-width: 992px) {
    .hero-inner {
        padding: 10px 20px 60px 20px;
    }

    .slide-arr {
        top: 40%;
    }
}

.mob-item-row > a {
    font-family: var(--thm-font) !important;
    font-size: var(--font-md) !important;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.mob-sub a {
    font-family: var(--thm-font) !important;
    font-size: var(--font-sm);
    font-weight: 400;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 0.6s ease, opacity 0.6s ease;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /*background: linear-gradient( 135deg, rgba(0, 0, 0, 0.605) 100% );*/
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
}

.slide-arr {
    z-index: 4;
}

.hero-dots {
    z-index: 4;
}

@media (max-width: 992px) {
    .slide-arr {
        display: flex !important;
        width: 38px;
        height: 38px;
        font-size: 0.8rem;
    }

        .slide-arr.prev {
            left: 10px;
        }

        .slide-arr.next {
            right: 10px;
        }

    .header {
        margin: 0px;
    }

    .hero {
        min-height: 37vh;
    }

    .hero-title {
        font-size: var(--font-mob);
        margin-bottom: 10px;
    }

    .hero-btn {
        padding: 10px 30px;
        margin-bottom: 0;
    }

    .hero-desc {
        margin-bottom: 25px;
        line-height: 1.4;
    }

    .why-inr {
        padding: 0;
        margin: 0;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 12px 20px;
    }

    .why-block {
        padding: 30px 0 20px 0;
    }

    .why-card h5 {
        font-size: 20px;
    }
}

.mob-links {
    padding: 0;
    margin: 0;
}

/************ about us ***************/

.about-section {
    padding: 20px 0 50px;
}

.row {
    margin: 0;
    padding: 0 70px;
}

.about-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.eyebrow-lines {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

    .eyebrow-lines span {
        display: block;
        height: 2.5px;
        background: var(--thm-primary);
        border-radius: 2px;
    }

        .eyebrow-lines span:first-child {
            width: 30px;
        }

        .eyebrow-lines span:last-child {
            width: 18px;
        }

.eyebrow-label {
    font-family: var(--thm-font);
    font-size: var(--font-sm);
    font-weight: 500;
    color: var(--thm-primary);
}

.about-heading {
    font-family: var(--thm-font);
    font-size: clamp(var(--font-sm), 5.5vw, var(--font-lg));
    font-weight: 600;
    color: var(--thm-black);
    line-height: 1.08;
    margin-bottom: 20px;
}

.about-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 30px;
}

.abt-tab {
    font-family: var(--thm-font);
    font-size: var(--font-md);
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding: 14px 30px;
    border: 2px solid #d6d6d6;
    background: #fff;
    color: var(--thm-black);
    cursor: pointer;
    margin-right: -2px;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    position: relative;
}

    .abt-tab.active,
    .abt-tab:hover {
        background: var(--thm-primary);
        color: #fff;
        border-color: var(--thm-primary);
        z-index: 1;
    }

.abt-pane {
    display: none;
}

    .abt-pane.active {
        display: block;
    }

    .abt-pane p {
        font-family: var(--font-two);
        font-size: var(--font-md);
        font-weight: 400;
        color: var(--thm-black);
    }

.about-skills {
    margin-top: 38px;
}




.btn-quote {
    display: inline-block;
    font-family: var(--thm-font);
    font-size: var(--font-sm);
    font-weight: 600;
    text-transform: uppercase;
    background: var(--thm-primary);
    color: #fff;
    border: none;
    padding: 10px 30px;
    text-decoration: none;
    margin-top: 20px;
    transition: background 0.2s, transform 0.15s;
    cursor: pointer;
}

    .btn-quote:hover {
        background: var(--thm-black);
        color: #fff;
        transform: translateY(-2px);
    }

.about-img-col {
    position: relative;
}

.img-top {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.img-bottom {
    width: 50%;
    height: 240px;
    object-fit: cover;
    display: block;
    margin-top: 6px;
}

.about-img-two {
    display: flex;
    gap: 4px;
}

.exp-badge {
    position: absolute;
    top: 220px;
    left: 0;
    background: var(--thm-primary);
    color: #fff;
    padding: 15px 26px;
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: fit-content;
    z-index: 2;
}

.exp-num {
    font-family: var(--thm-font);
    font-size: var(--font-Emd);
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

    .exp-num sup {
        font-size: 20px;
        /* vertical-align: super; */
        font-weight: 900;
    }

.exp-text {
    font-family: var(--thm-font);
    font-size: var(--font-md);
    font-weight: 700;
    line-height: 1.3;
}

.about-points {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.point-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.point-icon {
    width: 40px;
    height: 40px;
    min-width: 30px;
    background: var(--thm-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    margin-top: 6px;
}

.point-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.point-title {
    font-family: var(--font-two);
    font-size: var(--font-md);
    font-weight: 600;
    color: var(--thm-black);
}

.point-desc {
    font-family: var(--font-two);
    font-size: var(--font-md);
    font-weight: 400;
    color: var(--thm-gray);
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .about-img-col {
        margin-top: 30px;
    }

    .img-top {
        height: 260px;
    }

    .img-bottom {
        height: 200px;
    }

    .exp-badge {
        top: 228px;
        min-width: fit-content;
        padding: 14px 20px;
    }

    .exp-num {
        font-size: var(--font-20);
    }

    .row {
        margin: 0;
        padding: 0 10px;
    }

    .abt-pane p {
        font-family: var(--font-two);
        font-size: var(--font-md);
        font-weight: 400;
        color: var(--thm-black);
        text-align: justify;
        hyphens: auto;
    }

    .about-eyebrow {
        justify-content: center;
    }

    .about-section {
        padding: 20px 0;
    }

    .about-heading {
        font-size: var(--font-mob)
    }

    .abt-tab {
        padding: 11px 18px;
        font-size: 16px;
    }

    .img-top {
        height: 200px;
    }

    .img-bottom {
        width: 50%;
        height: 100px;
    }

    .exp-badge {
        top: 160px;
        min-width: 210px;
        padding: 12px 16px;
    }
}


/******** why to choose us  ********/

.wcu-section {
    background: #f5f5f5;
    padding: 50px 0;
}

.wcu-inner {
    padding: 0 70px;
}

.wcu-eyebrow {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
}

.wcu-header {
    text-align: center;
    margin-bottom: 20px;
}

.wcu-eyebrow {
    font-family: var(--thm-font);
    font-size: var(--font-sm);
    text-transform: uppercase;
    color: var(--thm-primary);
    margin-bottom: 10px;
}

.wcu-heading {
    font-family: var(--thm-font);
    font-size: clamp(var(--font-sm), 5.5vw, var(--font-lg));
    font-weight: 600;
    color: var(--thm-black);
    line-height: 1.08;
    margin-bottom: 0;
}

.wcu-dot {
    color: var(--thm-primary);
}

.wcu-cards-row {
    padding: 0;
}

.wcu-card {
    background: #fff;
    border: 1.5px solid #e8e8e8;
    padding: 30px 28px 28px;
    height: 100%;
    transition: box-shadow 0.25s, border-color 0.25s;
}

    .wcu-card:hover {
        box-shadow: 0 6px 28px rgba(232,64,10,0.10);
        border-color: var(--thm-primary);
    }


.wcu-icon-title {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.wcu-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    color: var(--thm-primary);
}

.wcu-card-title {
    font-family: var(--thm-font);
    font-size: var(--font-Emd);
    font-weight: 600;
    color: var(--thm-black);
    letter-spacing: 0.4px;
    margin: 0;
    line-height: 1.2;
}


.wcu-card-text {
    font-family: var(--font-two);
    font-size: var(--font-md);
    font-weight: 400;
    color: var(--thm-gray);
    line-height: 1.6;
    margin: 0;
    text-align: justify;
    hyphens: auto;
}

@media (max-width: 992px) {
    .wcu-inner {
        padding: 0 10px;
    }

    .wcu-section {
        padding: 30px 0;
    }

    .wcu-heading {
        font-size: var(--font-mob)
    }

    .wcu-card {
        padding: 20px 16px;
    }

    .wcu-icon {
        width: 42px;
        height: 42px;
    }

    .wcu-card-title {
        font-size: var(--font-20);
    }

    .wcu-header {
        margin-bottom: 0;
    }

    .wcu-icon-title {
        font-size: 16px;
        gap: 5px;
        margin-bottom: 5px;
    }

    .wcu-card-wrap {
        padding: 0;
    }
}

@media (max-width: 576px) {
    .wcu-card-wrap {
        padding: 0;
    }

    .wcu-icon {
        width: 36px;
        height: 36px;
    }
}


/************ our service section ***************/
.srv-section {
    padding: 30px 0;
}

.srv-header {
    text-align: center;
    margin-bottom: 40px;
}

.srv-heading {
    font-family: var(--thm-font);
    font-size: clamp(var(--font-sm), 5.5vw, var(--font-lg));
    font-weight: 600;
    color: var(--thm-black);
    line-height: 1.08;
    margin-bottom: 0;
}

.srv-underline {
    width: 50px;
    height: 3px;
    background: var(--thm-primary);
    margin: 0 auto 16px;
    border-radius: 2px;
}

.srv-subtext {
    font-family: var(--thm-font);
    font-size: var(--font-md);
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

.srv-card-wrap {
    margin-bottom: 28px;
}

.srv-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    transition: box-shadow 0.25s, transform 0.25s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .srv-card:hover {
        box-shadow: 0 8px 32px rgba(0,0,0,0.13);
        transform: translateY(-4px);
    }

.srv-img-wrap {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.srv-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.srv-card:hover .srv-img {
    transform: scale(1.04);
}

.srv-body {
    padding: 24px 22px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.srv-title {
    font-family: var(--thm-font);
    color: var(--thm-black);
    margin-bottom: 10px;
    letter-spacing: 0.4px;
    font-size: var(--font-Emd);
    font-weight: 600;
}

.srv-desc {
    font-family: var(--font-two);
    font-size: var(--font-md);
    font-weight: 400;
    color: var(--thm-gray);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 16px;
}

.srv-link {
    font-family: var(--thm-font);
    font-size: var(--font-sm);
    font-weight: 400;
    color: var(--thm-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s, color 0.2s;
}

    .srv-link:hover {
        color: var(--thm-secondry);
        gap: 10px;
    }


@media (max-width: 992px) {
    .srv-section {
        padding: 30px 0;
    }

    .srv-img-wrap {
        height: 180px;
    }

    .srv-heading {
        font-size: var(--font-mob);
    }

    .srv-card-wrap {
        padding: 0;
    }

    .srv-header {
        margin-bottom: 22px;
    }

    .srv-title {
        font-size: 22px;
        ;
    }

    .srv-desc {
        hyphens: auto;
        text-align: justify;
    }
}



/******** How We Work ********/

.hww-section {
    position: relative;
    background-image: url('../assets/img/exhuast.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 50px 0;
    overflow: hidden;
}

.hww-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 12, 18, 0.70);
    z-index: 0;
}

.hww-inner {
    position: relative;
    z-index: 1;
    padding: 0 70px;
}

.hww-header {
    text-align: center;
    margin-bottom: 40px;
}



.hww-heading {
    font-family: var(--thm-font);
    font-size: clamp(var(--font-mob), 5.5vw, var(--font-lg));
    font-weight: 600;
    color: var(--thm-white);
    margin: 0;
    line-height: 1.08;
}

.hww-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.hww-card {
    background: rgba(25, 28, 38, 0.88);
    border: 1px solid rgba(255,255,255,0.07);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
}

    .hww-card:hover {
        background: rgba(40, 44, 56, 0.97);
    }

.hww-num {
    font-family: var(--thm-font);
    font-size: var(--font-lg);
    font-weight: 800;
    color: var(--thm-primary);
    line-height: 1;
    margin-bottom: 16px;
    display: block;
}

.hww-card-title {
    font-family: var(--thm-font);
    font-size: var(--font-Emd);
    font-weight: 600;
    color: var(--thm-white);
    margin-bottom: 14px;
    line-height: 1.25;
}

.hww-card-text {
    font-family: var(--font-two);
    font-size: var(--font-md);
    color: #aab3c2;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 0;
}




@media (max-width: 992px) {
    .hww-inner {
        padding: 0 10px;
    }

    .hww-section {
        background-attachment: scroll;
    }

    .hww-cards {
        grid-template-columns: repeat(1, 1fr);
    }

    .hww-heading {
        font-size: var(--font-mob);
    }

    .hww-num {
        font-size: var(--font-mob);
    }

    .hww-card {
        padding: 24px 16px;
    }

    .hww-card-title {
        font-size: var(--font-20);
    }
}

/************ testimonial section ********/


.tst-section {
    background: var(--thm-white);
    padding: 50px 0;
    overflow: hidden;
}

.tst-inner {
    padding: 0 70px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0;
}

.tst-left {
    padding-right: 60px;
}




.tst-heading {
    font-family: var(--thm-font);
    font-size: clamp(var(--font-mob), 5.5vw, var(--font-lg));
    font-weight: 600;
    color: var(--thm-black);
    margin-bottom: 28px;
    line-height: 1.15;
}

.tst-slide {
    display: none;
    flex-direction: column;
}

    .tst-slide.active {
        display: flex;
        animation: tstFadeIn 0.4s ease;
    }

@keyframes tstFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tst-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

    .tst-stars i {
        color: var(--thm-primary);
        font-size: 18px;
    }


.tst-text {
    font-family: var(--font-two);
    font-size: var(--font-md);
    color: var(--thm-gray);
    line-height: 1.6;
    margin-bottom: 28px;
    font-weight: 400;
}


.tst-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.tst-avatar-wrap {
    position: relative;
    flex-shrink: 0;
}

.tst-avatar {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--thm-secondry);
    color: var(--thm-white);
    font-family: var(--thm-font);
    font-size: var(--font-md);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #eee;
}

.tst-quote-icon {
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 22px;
    height: 22px;
    background: var(--thm-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-white);
    font-size: 9px;
}

.tst-author-info {
    flex: 1;
}

.tst-name {
    font-family: var(--thm-font);
    font-size: var(--font-Emd);
    font-weight: 700;
    color: var(--thm-black);
    margin: 0 0 3px;
}

.tst-role {
    font-family: var(--thm-font);
    font-size: var(--font-sm);
    color: var(--thm-primary);
    margin: 0;
}

.tst-arrows {
    display: flex;
    gap: 10px;
    margin-left: auto;
}

.tst-btn {
    width: 44px;
    height: 44px;
    border: 1.5px solid #d0d0d0;
    background: var(--thm-white);
    color: var(--thm-black);
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

    .tst-btn:hover {
        background: var(--thm-primary);
        border-color: var(--thm-primary);
        color: var(--thm-white);
    }

.tst-right {
    position: relative;
    background: linear-gradient(135deg, #f5f5f5 60%, #ececec 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.tst-mechanic-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}


@media (max-width: 992px) {
    .tst-inner {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }

    .tst-left {
        padding-right: 0;
    }

    .tst-right {
        margin-top: 30px;
    }

    .tst-heading {
        font-size: var(--font-mob);
        text-align: center;
    }

    .tst-stars {
        justify-content: center;
    }

    .tst-text {
        hyphens: auto;
        text-align: justify;
    }

    .tst-section {
        padding: 30px 0;
    }

    .tst-name {
        font-size: var(--font-md);
    }

    .tst-arrows {
        margin-left: 0;
    }

    .tst-author {
        flex-wrap: wrap;
    }
}

/********** google map  ********/
.map-right {
    border-radius: 4px;
    overflow: hidden;
    min-height: 460px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}

    .map-right iframe {
        display: block;
        width: 100%;
        height: 100%;
        min-height: 460px;
    }

@media(max-width:992px) {

    .map-right, .map-right iframe {
        min-height: 300px;
    }
}
/*********** footer section *************/
.ftr-cta {
    background: var(--thm-primary);
    border-top: 1px solid rgba(255,255,255,0.06);
}

.ftr-cta-inner {
    margin: 0 auto;
    padding: 10px 70px;
    display: flex;
    align-items: center;
    gap: 50px;
}

.ftr-cta-logo {
    flex-shrink: 0;
    background: black;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

    .ftr-cta-logo img {
        height: 80px;
        width: auto;
        display: block;
    }

.ftr-cta-text {
    font-family: var(--thm-font);
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 700;
    color: var(--thm-white);
    margin: 0;
    flex: 1;
}

.ftr-cta-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--thm-black);
    color: var(--thm-white);
    font-family: var(--thm-font);
    font-size: var(--font-sm);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    padding: 16px 28px;
    text-transform: uppercase;
    transition: background 0.2s, color 0.2s;
}

    .ftr-cta-btn:hover {
        background: var(--thm-white);
        color: var(--thm-primary);
    }


/********** quick booking section **********/

.booking-section {
    background: #f4f4f4;
    padding: 50px 0 50px;
}

.booking-inner {
    margin: 0 auto;
    padding: 0 70px;
}

.booking-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 14px;
}

.eyebrow-lines {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

    .eyebrow-lines span {
        display: block;
        height: 2.5px;
        background: var(--thm-primary);
        border-radius: 2px;
    }

        .eyebrow-lines span:first-child {
            width: 30px;
        }

        .eyebrow-lines span:last-child {
            width: 18px;
        }

.eyebrow-label {
    font-family: var(--thm-font);
    font-size: var(--font-sm);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--thm-primary);
}

.booking-heading {
    font-family: var(--thm-font);
    font-size: clamp(var(--font-sm), 5.5vw, var(--font-lg));
    font-weight: 600;
    color: var(--thm-black);
    line-height: 1.08;
    text-align: center;
    margin-bottom: 20px;
}


.booking-form {
    display: flex;
}

.form-group {
    position: relative;
}

    .form-group i {
        position: absolute;
        left: 10px;
        top: 35%;
        color: rgba(0, 0, 0, 0.415);
    }

    .form-group.full {
        grid-column: 1 / -1;
    }

    .form-group label {
        display: block;
        font-family: var(--thm-font);
        font-size: var(--font-sm);
        font-weight: 600;
        color: var(--thm-black);
        margin-bottom: 8px;
    }


    .form-group input,
    .form-group textarea {
        width: 100%;
        background: #ffffff;
        ;
        border: 1.5px solid #2a2a2a4a;
        color: var(--thm-black);
        font-family: var(--thm-font);
        font-size: var(--font-md);
        padding: 14px 0 14px 30px;
        outline: none;
        border-radius: 0;
        transition: border-color 0.2s, box-shadow 0.2s;
    }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(0, 0, 0, 0.415);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--thm-primary);
            box-shadow: 0 0 0 2px rgba(254, 143, 75, 0.15);
            color: var(--thm-black);
        }

    .form-group textarea {
        resize: vertical;
        min-height: 130px;
    }

.btn-submit-booking {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--thm-primary);
    color: #fff;
    font-family: var(--thm-font);
    font-size: var(--font-sm);
    font-weight: 600;
    text-transform: uppercase;
    width: 250px;
    padding: 16px 38px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}

    .btn-submit-booking:hover {
        background: var(--thm-black);
        transform: translateY(-2px);
    }

@media (max-width: 992px) {
    .booking-inner {
        padding: 0 10px;
    }

    .booking-section {
        padding: 40px 0 50px;
    }

    .booking-heading {
        font-size: 28px;
    }

    .booking-form {
        flex-direction: column;
        gap: 15px;
        justify-content: center;
    }

    .form-group input,
    .form-group textarea {
        padding: 5px 16px;
    }

    .btn-submit-booking {
        padding: 10px 12px;
        width: 190px;
        margin: 0 auto;
        margin-top: 10px;
    }

    .bf-text-title {
        font-size: var(--font-md);
    }

    .vehicle-row {
        flex-direction: column;
        border: none;
        gap: 12px;
    }

    .vehicle-select {
        border-right: none;
        border: 1.5px solid #e8e8e8;
    }

    .booking-features {
        flex-direction: column;
        gap: 20px;
    }
}

.booking-features {
    /*display: flex;*/
    display: none;
    gap: 30px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1.5px solid #e8e8e8;
}

.bf-item {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    justify-content: center;
}

.bf-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: var(--thm-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.bf-text-title {
    font-family: var(--thm-font);
    font-size: var(--font-20);
    font-weight: 600;
    color: var(--thm-black);
}

.bf-text-desc {
    font-family: var(--font-two);
    font-size: var(--font-md);
    color: var(--thm-gray);
    font-weight: 400;
}


@media (max-width: 992px) {
    .booking-inner {
        padding: 0 10px;
    }

    .booking-section {
        padding: 30px 0;
    }

    .booking-heading {
        font-size: 28px;
    }

    .booking-form {
        flex-direction: column;
        gap: 15px;
        justify-content: center;
    }

    .form-group input,
    .form-group textarea {
        padding: 5px 30px;
    }

    .btn-submit-booking {
        padding: 10px 12px;
        width: 190px;
        margin: 0 auto;
        margin-top: 10px;
    }

    .bf-text-title {
        font-size: var(--font-md);
    }

    .vehicle-row {
        flex-direction: column;
        border: none;
        gap: 12px;
    }

    .vehicle-select {
        border-right: none;
        border: 1.5px solid #e8e8e8;
    }

    .booking-features {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .bf-text-desc {
        font-family: var(--font-two);
        font-size: var(--font-md);
        font-weight: 400;
    }

    .form-group i {
        left: 10px;
        top: 30%;
    }
}


/********* contact us section ************/
.contact-form {
    background-color: rgb(244, 244, 244);
    padding: 20px 30px;
}

    .contact-form .form-heading {
        font-size: clamp(var(--font-sm), 5.5vw, var(--font-lg));
        font-weight: 600;
        color: var(--thm-black);
        margin-bottom: 20px;
        line-height: 1.08;
        text-align: center;
    }

.contact-us {
    padding: 30px 0 50px;
}

.contact-inner {
    padding-bottom: 25px;
}

.contact-left {
    padding: 0
}

.input-field-one {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px
}

    .input-field-one input, textarea {
        padding: 10px;
        width: 100%;
        border-radius: 0%;
        border: 1.5px solid #979797;
    }

        .input-field-one input:focus,
        textarea:focus {
            border-radius: 0%;
            outline: none;
            border: 1.5px solid var(--thm-primary) !important;
        }

.input-field-two {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-bottom: 15px
}

    .input-field-two textarea {
        width: 100%;
        height: 140px;
    }

    .input-field-two button {
        width: fit-content;
        display: flex;
        align-items: center;
        gap: 10px;
        background: var(--thm-primary);
        color: #fff;
        font-family: var(--thm-font);
        font-size: var(--font-sm);
        font-weight: 600;
        padding: 10px 38px;
        border: none;
        cursor: pointer;
        transition: background 0.2s, transform 0.15s;
    }

.contact-right {
    padding: 20px 30px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-content .contact-heading {
    font-size: clamp(var(--font-sm), 5.5vw, var(--font-lg));
    font-weight: 600;
    color: var(--thm-black);
    margin-bottom: 20px;
    line-height: 1.08;
}

.contact-content .contact-para {
    font-family: var(--font-two);
    font-size: var(--font-md);
    color: var(--thm-gray);
    line-height: 1.6;
    margin: 0;
    text-align: justify;
    hyphens: auto;
    padding-bottom: 20px;
}

.info-heading {
    display: flex;
    align-items: left;
    gap: 16px;
    flex: 1;
    justify-content: left;
}

    .info-heading .info-head-left i {
        width: 52px;
        height: 52px;
        background: var(--thm-primary);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
    }

    .info-heading .info-head-right {
        display: flex;
        flex-direction: column;
        justify-content: left;
        text-align: left;
    }

        .info-heading .info-head-right h2 {
            font-family: var(--thm-font);
            font-size: var(--font-20);
            font-weight: 500;
            color: var(--thm-black);
            margin: 0
        }

        .info-heading .info-head-right p {
            font-family: var(--font-two);
            font-size: var(--font-md);
            font-weight: 400;
            color: var(--thm-gray);
            margin: 0
        }

        .info-heading .info-head-right a {
            font-family: var(--font-two);
            font-size: var(--font-md);
            font-weight: 400;
            color: var(--thm-gray);
            margin: 0;
            text-decoration: none;
        }

.socials-media {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--thm-primary);
    color: var(--thm-primary);
    font-size: 15px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

    .social-btn:hover {
        background: var(--thm-primary);
        border-color: var(--thm-primary);
        color: #fff;
    }


@media(max-width:992px) {

    .contact-us {
        padding: 30px 0;
    }

    .contact-form {
        padding: 20px;
    }

        .contact-form .form-heading {
            font-size: var(--font-Emd)
        }

    .input-field-one {
        flex-direction: column;
    }

        .input-field-one input {
            padding: 5px 10px;
        }

    .contact-right {
        padding: 30px 0px 0px 0px;
    }

    .contact-content .contact-heading {
        font-size: var(--font-Emd);
        text-align: center;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .info-heading .info-head-left i {
        width: 40px;
        height: 40px;
    }

    .info-heading {
        align-items: center;
    }
}

/******** about us section *****/

.breadcrumb-wrap {
    background: linear-gradient(to right, rgb(0 0 0), rgb(0 0 0 / 47%)), url(/assets/img/service_img_1.jpg) center / cover no-repeat;
    padding: 90px 70px;
    display: flex;
    align-items: center;
}

.breadcrumb-inner {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

.breadcrumb-title {
    font-family: var(--thm-font);
    font-size: var(--font-lg);
    font-weight: 700;
    color: var(--thm-white);
    margin-bottom: 10px;
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    margin: 0;
}

    .breadcrumb-list li {
        font-family: var(--thm-font);
        font-size: var(--font-sm);
        color: rgba(255,255,255,0.7);
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .breadcrumb-list li::after {
            content: "/";
            color: var(--thm-primary);
        }

        .breadcrumb-list li:last-child::after {
            display: none;
        }

        .breadcrumb-list li a {
            color: var(--thm-white);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s;
        }

            .breadcrumb-list li a:hover {
                color: var(--thm-primary);
            }

        .breadcrumb-list li span {
            color: var(--thm-primary);
            font-weight: 600;
        }


.achievement-section {
    background: linear-gradient(rgba(0,0,0,0.60), rgba(0,0,0,0.60)), url('/assets/img/tyres.jpg') center/cover no-repeat fixed;
    padding: 70px 0;
}

.achievement-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.achievement-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ach-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--thm-white);
    margin-bottom: 22px;
    transition: border-color 0.3s, transform 0.3s;
}

.achievement-item:hover .ach-icon {
    border-color: var(--thm-primary);
    transform: scale(1.08);
}


.ach-number {
    font-family: var(--thm-font);
    font-size: var(--font-Emd);
    font-weight: 600;
    color: var(--thm-primary);
    line-height: 1;
    margin-bottom: 10px;
}

.ach-label {
    font-family: var(--font-two);
    font-size: var(--font-md);
    font-weight: 400;
    color: var(--thm-white);
}


@media (max-width: 992px) {
    .breadcrumb-wrap {
        padding: 60px 20px;
    }

    .breadcrumb-title {
        font-size: 28px;
    }

    .achievement-inner {
        flex-wrap: wrap;
        padding: 0 20px;
        gap: 40px;
    }

    .achievement-item {
        flex: 1 1 45%;
    }
}

@media (max-width: 992px) {
    .achievement-item {
        flex: 1 1 100%;
    }

    .ach-number {
        font-size: var(--font-Emd)
    }

    .ach-icon {
        width: 70px;
        height: 70px;
        font-size: 25px;
    }

    .ach-label {
        padding: 0;
    }
}


/* ---- Main Footer ---- */
.ftr {
    background: #0d1526;
    padding: 60px 0 40px;
}

.ftr-inner {
    margin: 0 auto;
    padding: 0 70px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 48px;
}


.ftr-col-title {
    font-family: var(--thm-font);
    font-size: 22px;
    font-weight: 700;
    color: var(--thm-white);
    margin-bottom: 12px;
}

.ftr-title-line {
    display: flex;
    gap: 5px;
    margin-bottom: 24px;
}

    .ftr-title-line::before {
        content: '';
        display: block;
        width: 36px;
        height: 3px;
        background: var(--thm-primary);
        border-radius: 2px;
    }

    .ftr-title-line::after {
        content: '';
        display: block;
        width: 10px;
        height: 3px;
        background: var(--thm-primary);
        border-radius: 2px;
        opacity: 0.45;
    }


.ftr-about-text {
    font-family: var(--thm-font);
    font-size: var(--font-sm);
    color: #dce3ed;
    line-height: 1.7;
    margin-bottom: 24px;
}

.ftr-socials {
    display: flex;
    gap: 10px;
}


.ftr-social-btn {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(255,255,255,0.15);
    color: #8a9bb5;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

    .ftr-social-btn:hover {
        background: var(--thm-primary);
        border-color: var(--thm-primary);
        color: #fff;
    }


.ftr-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .ftr-links li a {
        font-family: var(--thm-font);
        font-size: var(--font-sm);
        color: #dce3ed;
        ;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: color 0.2s, gap 0.2s;
    }

        .ftr-links li a i {
            font-size: 12px;
            color: var(--thm-primary);
            flex-shrink: 0;
        }

        .ftr-links li a:hover {
            color: var(--thm-white);
            gap: 14px;
        }


.ftr-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

    .ftr-contact-list li {
        display: flex;
        align-items: flex-start;
        gap: 14px;
    }

.ftr-contact-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-primary);
    font-size: 14px;
    border-radius: 4px;
}

.ftr-contact-list li span,
.ftr-contact-list li a {
    font-family: var(--thm-font);
    font-size: var(--font-sm);
    color: var(--text-gray);
    text-decoration: none;
    line-height: 1.5;
    padding-top: 6px;
    transition: color 0.2s;
}

    .ftr-contact-list li a:hover {
        color: var(--thm-white);
    }

.ftr-hours {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .ftr-hours li {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
    }

.ftr-day {
    font-family: var(--thm-font);
    font-size: var(--font-sm);
    color: var(--thm-white);
    font-weight: 500;
}

.ftr-time {
    font-family: var(--thm-font);
    font-size: var(--font-sm);
    color: #8a9bb5;
}

.ftr-closed {
    color: var(--thm-primary);
    font-weight: 600;
}


.ftr-bar {
    background: #090e1a;
    padding: 18px 70px;
    text-align: center;
}

    .ftr-bar p {
        font-family: var(--thm-font);
        font-size: var(--font-sm);
        color: var(--text-gray);
        margin: 0;
    }

    .ftr-bar a {
        color: var(--thm-primary);
        text-decoration: none;
        font-weight: 600;
    }

        .ftr-bar a:hover {
            color: var(--thm-white);
        }


@media (max-width: 1100px) {
    .ftr-inner {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 992px) {
    .ftr-cta-inner {
        flex-direction: column;
        padding: 0;
        text-align: center;
        gap: 0;
    }

    .ftr-cta-logo {
        display: none;
        padding: 16px;
    }

    .ftr-cta-text {
        padding: 15px 0px 20px 0px;
        font-size: var(--font-20);
    }

    .ftr-cta-btn {
        justify-content: center;
        padding: 10px;
    }

    .ftr-inner {
        grid-template-columns: 1fr;
        padding: 0 24px;
        gap: 32px;
    }

    .ftr-bar {
        padding: 16px 24px;
    }

    .ftr-cta-inner {
        padding: 15px 10px;
    }

    .ftr-col-title {
        font-size: var(--font-20);
    }
}


/********* sticky icons section *******/
.sticky-contact {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 998;
}

.sticky-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    transition: width 0.3s ease, padding 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .sticky-btn::before {
        content: attr(title);
        position: absolute;
        right: 48px;
        background: inherit;
        color: #fff;
        font-family: var(--thm-font);
        font-size: 13px;
        font-weight: 600;
        white-space: nowrap;
        padding: 0 14px;
        height: 100%;
        display: flex;
        align-items: center;
        opacity: 0;
        transform: translateX(10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        pointer-events: none;
    }

    .sticky-btn:hover::before {
        opacity: 1;
        transform: translateX(0);
    }

.sticky-phone {
    background: var(--thm-primary);
}

.sticky-sms {
    background: #36274c;
}

.sticky-whatsapp {
    background: #25d366;
}


@media(max-width:992px) {
    .sticky-contact {
        top: 80%;
    }
}

/********** service css ************/

.service-detail-section {
    padding: 30px 0;
    background: #f5f5f5;
}

.service-detail-inner {
    display: grid;
    margin: 0 auto;
    padding: 0 70px;
    max-width: 1280px;
    align-items: start;
}

.sd-image {
    width: 100%;
    overflow: hidden;
    margin-bottom: 32px;
}

    .sd-image img {
        width: 100%;
        height: 350px;
        display: block;
        object-fit: cover;
    }

.sd-image-inr {
    position: absolute;
    margin: 80px 0 0 0;
    padding: 20px 50px 20px 30px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    background-color: rgba(0,0,0,.7);
}

.sd-image-title {
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--thm-white);
    font-size: var(--font-lg);
    font-family: var(--thm-font);
}

.sd-image-list {
    gap: 8px;
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

    .sd-image-list li {
        gap: 8px;
        display: flex;
        align-items: center;
        font-size: var(--font-sm);
        font-family: var(--thm-font);
        color: rgba(255,255,255,0.7);
    }

        .sd-image-list li::after {
            content: "/";
            color: var(--thm-primary);
        }

        .sd-image-list li:last-child::after {
            display: none;
        }

        .sd-image-list li a {
            font-weight: 500;
            text-decoration: none;
            transition: color 0.2s;
            color: var(--thm-white);
        }

            .sd-image-list li a:hover {
                color: var(--thm-primary);
                color: var(--thm-primary);
            }

        .sd-image-list li span {
            font-weight: 600;
            color: var(--thm-primary);
        }

.srv-img-inr {
    position: absolute;
    margin: 250px 0 0 0;
    padding: 10px 30px 10px 30px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    background-color: rgba(0,0,0,.7);
}

.srv-img-ttl {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--thm-white);
    font-size: var(--font-Emd);
    font-family: var(--thm-font);
}

    .srv-img-inr span {
        color: var(--thm-primary);
    }

.sd-title {
    font-family: var(--thm-font);
    font-size: clamp(var(--font-sm), 5.5vw, var(--font-lg));
    font-weight: 600;
    color: var(--thm-black);
    line-height: 1.08;
    margin-bottom: 20px;
}

.sd-subtitle {
    font-family: var(--thm-font);
    font-size: var(--font-Emd);
    font-weight: 600;
    color: var(--thm-black);
    margin: 30px 0 12px;
    padding-left: 14px;
    border-left: 4px solid var(--thm-primary);
}

.sd-para {
    font-family: var(--font-two);
    font-size: var(--font-md);
    color: var(--thm-gray);
    line-height: 1.6;
    font-weight: 400;
    margin: 0
}

.sd-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
}

    .sd-list li {
        font-family: var(--thm-font);
        font-size: var(--font-sm);
        font-weight: 500;
        color: var(--thm-black);
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .sd-list li i {
            color: var(--thm-primary);
            font-size: 16px;
            flex-shrink: 0;
        }

.sd-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 16px 0 10px;
}

.sd-benefit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--thm-black);
    color: var(--thm-white);
    font-family: var(--thm-font);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border: 2px solid var(--thm-black);
    transition: background 0.2s, color 0.2s;
    cursor: default;
}

    .sd-benefit-btn i {
        color: var(--thm-primary);
        font-size: 15px;
    }

    .sd-benefit-btn:hover {
        background: var(--thm-primary);
        border-color: var(--thm-primary);
        color: #fff;
    }

        .sd-benefit-btn:hover i {
            color: #fff;
        }

.sd-cta {
    display: flex;
    gap: 16px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.btn-sd-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--thm-primary);
    color: #fff;
    font-family: var(--thm-font);
    font-size: var(--font-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 14px 34px;
    border: 2px solid var(--thm-primary);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

    .btn-sd-primary:hover {
        background: var(--thm-black);
        border-color: var(--thm-black);
    }

.btn-sd-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--thm-black);
    font-family: var(--thm-font);
    font-size: var(--font-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 14px 34px;
    border: 2px solid var(--thm-black);
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

    .btn-sd-outline:hover {
        background: var(--thm-primary);
        border-color: var(--thm-primary);
        color: #fff;
    }

.sd-widget {
    background: #fff;
    padding: 28px 24px;
    border-top: 4px solid var(--thm-primary);
}



@media (max-width: 992px) {
    .sd-image-inr {
        margin: 50px 0 0 0;
        padding: 15px 30px 15px 20px;
        background-color: rgba(0,0,0,.6);
        position: absolute;
        border-top-right-radius: 20px;
        border-bottom-right-radius: 20px;
    }

    .sd-image-title {
        font-size: 28px;
        margin-bottom: 5px;
    }

    .srv-img-inr {
        margin: 180px 0 0 0;
        padding: 10px 30px 10px 15px;
        border-top-right-radius: 20px;
        border-bottom-right-radius: 20px;
    }

    .srv-img-ttl {
        font-size: var(--font-15);
    }

    .service-detail-section {
        padding: 20px 0;
    }

    .sd-title {
        font-family: var(--thm-font);
        font-size: var(--font-Emd);
        font-weight: 600;
        color: var(--thm-black);
        margin-bottom: 5px;
        line-height: 1.2;
    }

    .service-detail-inner {
        grid-template-columns: 1fr;
        padding: 10px 20px;
    }

    .sd-subtitle {
        font-family: var(--thm-font);
        font-size: var(--font-20);
        font-weight: 600;
        color: var(--thm-black);
        margin: 25px 0 12px;
        line-height: 1.2;
    }

    .sd-list {
        grid-template-columns: 1fr;
        margin: 10px 0 10px;
    }

    .sd-para {
        font-family: var(--font-two);
        font-size: var(--font-md);
        font-weight: 400;
        color: var(--thm-black);
        text-align: justify;
        hyphens: auto;
        margin-bottom: 0px;
    }

    .sd-image img {
        width: 100%;
        height: 230px;
    }
}

/******* gallery section *******/

.gallery {
    padding: 50px 0 50px;
}

.gallery-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    max-height: 300px;
    ;
}

.gallery-inner {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    padding: 0;
    margin: 0;
}

@media(max-width:992px) {
    .gallery-inner {
        grid-template-columns: repeat(1,1fr);
    }

    .gallery {
        padding: 20px 0;
    }

    .gallery-img img {
        max-height: 200px;
    }
}
