@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --bs-primary: #f68a0a;
    --bs-dark: #0d1b2a;
    --bs-light: #f8f9fa;
    --bs-white: #ffffff;
    --header-bg: #ffffff;
    --text-main: #333333;
    --text-muted: #666666;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden !important;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: #ffffff;
    scroll-behavior: smooth;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    transition: all 0.3s ease;
    text-decoration: none;
}

a:hover {
    color: var(--bs-primary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--bs-dark);
}

/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 40px;
    height: 40px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-xl-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
    border: none;
    backface-visibility: hidden;
    will-change: transform;
}

.btn.btn-primary:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
    transform: translateY(-2px);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
}

/*** Navbar Start ***/
/* .header-top .topbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--bs-primary);
}

.header-top .topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    padding-top: 12px;
    border: 0;
    transition: .5s;
    opacity: 1;
}

.header-top {
    height: 125px;
    position: relative;
}

.header-top::after {
    content: "";
    position: absolute;
    overflow: hidden;
    width: 50%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--bs-dark);
    z-index: 1;
}

.header-top .container {
    position: relative;
    z-index: 999;
}

@media (min-width: 992px) {
    .header-top::before {
        content: "";
        position: absolute;
        overflow: hidden;
        width: 100%;
        height: 45px;
        top: 0;
        right: 0;
        background: var(--bs-dark);
        z-index: -1;
    }

    .navbar-brand-2 {
        display: none;
    }
}

@media (max-width: 991px) {
    .header-top {
        max-height: 80px;
    }

    .navbar {
        justify-content: space-between;
    }

    .header-top .container {
        max-height: 80px;
    }

    .navbar-brand {
        display: none;
    }

    .navbar-brand-2 {
        position: relative;
        overflow: hidden;
        width: 200px;
        height: 100%;
        padding: 0;
        display: flex;
        align-items: center;
        z-index: 99;
    }

    .navbar-brand-2::before {
        content: "";
        position: absolute;
        overflow: hidden;
        width: 100%;
        height: 600px;
        top: -200px;
        right: 18px;
        background: var(--bs-dark);
        transform: rotate(-18deg);
        z-index: -1;
    }

    .navbar-brand-2::after {
        content: "";
        position: absolute;
        overflow: hidden;
        width: 5px;
        height: 600px;
        top: -200px;
        right: 18px;
        background: var(--bs-primary);
        transform: rotate(-18deg);
        z-index: -1;
    }

    .navbar.navbar-light {
        height: 100%;
        padding: 0;
    }

    .navbar .navbar-collapse {
        margin-top: -20px;
    }

}

.nav-bar .navbar {
    height: 100%;
    background: var(--bs-white);
    position: relative;
    z-index: 9;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.nav-bar .navbar-light .navbar-brand img {
    max-height: 50px;
}

.navbar .navbar-nav .nav-item .nav-link {
    padding: 0;
}

.navbar .navbar-nav .nav-item {
    display: flex;
    align-items: center;
    padding: 0;
    margin-right: 20px;
    white-space: nowrap;
}

.navbar-light .navbar-nav .nav-item:hover,
.navbar-light .navbar-nav .nav-item.active,
.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-light .navbar-nav .nav-item.active .nav-link {
    color: var(--bs-primary);
}

@media (max-width: 991px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .navbar-nav .nav-link {
        padding: 0;
    }

    .navbar .navbar-nav .nav-item {
        display: flex;
        padding: 12px;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        justify-content: start;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        margin-top: 20px;
        padding-bottom: 20px;
        margin-left: 50px;
        background: var(--bs-light);
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        flex-direction: column;
    }

    .navbar .navbar-nav .nav-btn a.btn {
        margin-right: 15px;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu .dropdown-item:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .nav-bar .navbar::before {
        position: absolute;
        content: "";
        width: 50px;
        height: 100%;
        top: 0;
        left: -49px;
        background: var(--bs-white);
    }

    .navbar .nav-btn {
        display: flex;
        align-items: center;
        justify-content: end;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar .navbar-nav .nav-btn {
        width: 100%;
        display: flex;
        margin-left: auto;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        margin-top: 19px;
        background: var(--bs-white);
        transition: .5s;
        opacity: 1;
    }

    .header-top .navbar-brand {
        position: relative;
        overflow: hidden;
        padding: 10px 50px 40px 0;
        z-index: 99;
    }
 
    a.navbar-brand img {
    width: 40%;
}
    .navbar-brand::before {
        content: "";
        position: absolute;
        overflow: hidden;
        width: 300px;
        height: 600px;
        top: -200px;
        right: 18px;
        background: var(--bs-dark);
        transform: rotate(-18deg);
        z-index: -1;
    }
    
    .navbar-brand::after {
        content: "";
        position: absolute;
        overflow: hidden;
        width: 5px;
        height: 600px;
        top: -200px;
        right: 18px;
        background: var(--bs-primary);
        transform: rotate(-18deg);
        z-index: -1;
    }
} */
/*** Navbar End ***/


/*** Carousel Hero Header Start ***/
.hero-section {
    background-image: url(../img/bg-banner.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 700px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-bg-half-1 {
    background-image: url(../img/header-2.jpg);
    clip-path: polygon(37% 0%, 100% 0%, 100% 100%, 0% 100%);
    filter: grayscale(10%);
    transform: scale(100% - 50%);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    width: 58%;
    height: 100%;
    right: 0;
    top: 0;
}

.hero-bg-half-2 {
    background-image: url(../img/header-1.jpg);
    clip-path: polygon(37% 0%, 100% 0%, 100% 100%, 0% 100%);
    filter: grayscale(10%);
    transform: scale(100% - 50%);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    width: 58%;
    height: 100%;
    right: 0;
    top: 0;
}

.hero-shape-1 {
    background-color: var(--bs-primary);
    width: 150px;
    height: 50%;
    position: absolute;
    left: 54%;
    top: 0;
    transform: translateY(-50%) skew(-26deg, 0deg);
    position: relative;
}

.hero-shape-1:before {
    background-color: var(--bs-dark);
    content: "";
    width: 50%;
    height: 80%;
    position: absolute;
    right: 0;
    top: 0;
}

.hero-shape-2 {
    background-color: var(--bs-dark);
    width: 150px;
    height: 50%;
    position: absolute;
    right: -43%;
    bottom: 0;
    transform: translateY(50%) skew(-25deg, 0deg);
    position: relative;
    z-index: 1;
}

.hero-shape-2::after {
    background-color: var(--bs-primary);
    content: "";
    width: 75px;
    height: 80%;
    position: absolute;
    right: 0;
    bottom: 0;
}

/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item {
    height: 700px;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--bs-white);
    color: var(--bs-primary);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev {
    bottom: 30px;
    left: 0;
}

.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    right: 0;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 0 0 65px 0 var(--bs-primary);
    color: var(--bs-dark);
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .2);
    display: flex;
    align-items: center;
    z-index: 9;
}

@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }

    .header-carousel.owl-carousel,
    .header-carousel .header-carousel-item {
        height: 700px;
    }
}

/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../img/header-1.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

/*** Single Page Hero Header End ***/

/*** Service Start ***/
.service .nav .nav-item {
    width: 75%;
    border: 1px solid var(--bs-primary);
    background: var(--bs-light);
}

.service .nav .nav-item a {
    display: flex;
    justify-content: center;
}


.owl-stage-outer {
    margin-right: -1px;
}

.service .nav-item a.active {
    background: var(--bs-primary);
}

.service .nav-item a span {
    color: var(--bs-dark);
}

.service .nav-item a.active span {
    color: var(--bs-white);
}

.service-carousel .owl-nav .owl-prev,
.service-carousel .owl-nav .owl-next {
    position: absolute;
    padding: 10px 35px;
    border: 1px solid var(--bs-primary);
    color: var(--bs-dark);
    background: var(--bs-light);
    transition: 0.5s;
}

.service-carousel .owl-nav .owl-prev:hover,
.service-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .service-carousel .owl-nav .owl-prev {
        top: 0;
        left: -115px;
    }

    .service-carousel .owl-nav .owl-next {
        bottom: 0;
        left: -115px;
    }
}

@media (max-width: 991px) {
    .owl-stage-outer {
        margin-bottom: 0px;
    }

    .township-title {
        font-weight: 800;
        color: #0d1b2a;
        font-size: 2.3rem !important;
        margin-bottom: 20px;
        letter-spacing: -0.02em;
    }

    .team-img {
        width: 100%;
        height: auto !important;
        overflow: hidden;
        border-bottom: 0;
    }

    .team-img img {
        width: 100%;
        height: auto !important;
        object-fit: cover;
        transition: 0.4s ease;
    }

    .service-carousel .owl-nav .owl-prev {
        bottom: -70px;
        left: 0;
    }

    .service-carousel .owl-nav .owl-next {
        bottom: -70px;
        right: 0;
    }

    .service .nav {
        display: flex;
        justify-content: center;
    }
}

/*** Service End ***/

/*** Team Start ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
}

.team .team-item .team-img img {
    transition: 0.5s;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: 20px;
    right: -100%;
    z-index: 9;
    transition: 0.5s;
}

.team .team-item:hover .team-img .team-icon {
    right: 25px;
}

/* .team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: rgba(246, 138, 10, .2);
    transition: 0.5s;
    z-index: 1;
} */

.team .team-item:hover .team-img::after {
    height: 100%;
}

.team .team-item .team-content {
    transition: 0.5s;
}

/* Equal Image Height for All Team Cards */
.team-img {
    width: 100%;
    height: 300px;
    /*👇 yahan height adjust kar sakte ho */
    overflow: hidden;
    border-bottom: 0;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* image ko crop karke perfect fit karega */
    transition: 0.4s ease;
}

/* .team .team-item:hover .team-content {
    box-shadow: 0 0 20px rgba(0, 0, 0, .2);
} */
/*** Team End ***/

/*** Testimonial Start ***/
/* .testimonial-carousel .owl-stage-outer {
    margin-right: -1px;
}

.testimonial .testimonial-item {
    position: relative;
    margin-top: 35px;
}

.testimonial .testimonial-item .customer-text {
    border: 1px solid var(--bs-primary);
    border-top: none;
}

.testimonial .testimonial-item .testimonial-quote {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 0;
    right: 25px;
    transform: translateY(-50%);
    color: var(--bs-dark);
    background: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-item .testimonial-inner {
    display: flex;
    align-items: center;
    background: var(--bs-white);
}

.testimonial .testimonial-item .testimonial-inner img {
    width: 100px; 
    height: 100px;
    border: 2px solid var(--bs-primary);
}

.testimonial-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 30px;
    height: 30px;
    margin: 30px 10px 0 10px;
    background: var(--bs-white);
    transition: 0.5s;
}

@media (max-width: 991px) {
    .testimonial-carousel .owl-dots .owl-dot {
        margin: 0 10px 0 10px;
    }
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 30px;
    height: 30px;
    background: var(--bs-primary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    margin-right: -1px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot.active span::after {
    background: var(--bs-white);
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-primary);
    transition: 0.5s;
} */

/* TESTIMONIAL SECTION UNIQUE DESIGN */
.testimonial {
    background: linear-gradient(135deg, #ffffff 0%, #f3f7ff 100%);
}

.testimonial-item {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgb(254 242 226);
    transition: 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    height: 310px;
}

.testimonial-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgb(254 242 226);
    border-color: #f68a0a;
}

/* Quote Icon */
.testimonial-quote {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #ff8800;
    opacity: 0.4;
    transition: 0.3s;
}

.testimonial-item:hover .testimonial-quote {
    opacity: 1;
    transform: scale(1.1);
}

/* Inner Box – Image + Text */
.testimonial-inner {
    display: flex;
    align-items: center;
    padding-bottom: 0;
}

.testimonial-inner img {
    width: 70px !important;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #ff8800;
    padding: 3px;
    background: #fff;
    transition: 0.3s;
}

.testimonial-item:hover img {
    border-color: #ffaa33;
    transform: scale(1.03);
}

/* Reviewer Name */
.testimonial-inner h4 {
    font-weight: 700;
    margin-bottom: 3px;
}

/* Reviewer Role */
.testimonial-inner p {
    margin-bottom: 2px;
    color: #8e8e8e;
}

/* Stars */
.testimonial-inner .fa-star {
    color: #ff9800 !important;
    margin-right: 3px;
}

/* Customer Review Text */
.customer-text {
    margin-top: 10px;
    border-top: 1px solid #eee;
}

.customer-text p {
    font-size: 15.5px;
    line-height: 1.7;
    color: #444;
}

/* Smooth Slide Animation for Owl */


/* Button */
.testimonial .btn-dark {
    background: linear-gradient(45deg, #262626, #000000);
    border-radius: 50px;
    padding: 12px 40px;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: none;
}

.testimonial .btn-dark:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.testimonial-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 30px;
    height: 30px;
    margin: 30px 10px 0 10px;
    background: var(--bs-white);
    transition: 0.5s;
}

@media (max-width: 991px) {
    .testimonial-carousel .owl-dots .owl-dot {
        margin: 0 10px 0 10px;
    }

    .testimonial-carousel .owl-dots {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding-top: 15px;
    }
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 30px;
    height: 30px;
    background: var(--bs-primary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    margin-right: -1px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot.active span::after {
    background: var(--bs-white);
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-primary);
    transition: 0.5s;
}

/*** Testimonial End ***/

/*** Footer Start ***/
/* .footer {
    background: var(--bs-dark);
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-white);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover {
    color: var(--bs-primary);
} */
/*** Footer End ***/

.footer {
    background: linear-gradient(135deg, #0d1b2af2, #0d1b2af2, #2c5364);
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.footer a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: #f5991d;
    text-decoration: none;
}

.footer-logo {
    filter: brightness(1.2);
}

.footer-title {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 18px;
    position: relative;
    color: #f5991d;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 50px;
    height: 2px;
    background: #f5991d;
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 10px;
    color: #f5991d;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: #f68a0a;
    color: #fff;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #1659a0;
    color: #fff;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .footer .row>div {
        margin-bottom: 20px;
    }

    .wm-cta-btn-outline {
        background: transparent;
        border: 2px solid #f68a0a;
        color: #f68a0a !important;
        padding: 10px 20px !important;
        border-radius: 50px;
        font-weight: 700;
        font-size: 10px !important;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        transition: all 0.3s ease;
        text-decoration: none !important;
    }

    .wm-cta-btn {
        background: linear-gradient(135deg, #f68a0a 0%, #ff9e30 60%, #e67c00 100%);
        background-size: 200% 200%;
        color: #fff !important;
        padding: 12px 20px !important;
        border-radius: 50px;
        font-weight: 700;
        font-size: 10px !important;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        white-space: nowrap;
        letter-spacing: 0.03em;
        text-transform: uppercase;
        box-shadow: 0 8px 25px rgba(246, 138, 10, 0.4);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        text-decoration: none !important;
        border: none;
        cursor: pointer;
    }
}

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #1a2735;
}

/*** copyright end ***/



a.navbar-brand-2 img {
    width: 35%;
}

.partners-section {
    background: #f5991d21;
    overflow: hidden;
}

.partners-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.partners-track {
    display: flex;
    width: calc(250px * 10);
    animation: scroll 25s linear infinite;
}

/* Hover par animation stop */
.partners-slider:hover .partners-track {
    animation-play-state: paused;
}

.partner-item {
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.partner-item img {
    width: 160px;
    /* filter: grayscale(100%); */
    /* opacity: 0.7; */
    transition: 0.3s;
}

/* .partner-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0 0 15px #ffffff55;
} */

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.all-team-btn {
    display: inline-block;
    padding: 14px 32px;
    color: #fff;
    background: #f68a0a;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: 0.4s;
}

.all-team-btn::before {
    content: "";
    position: absolute;
    width: 180%;
    height: 180%;
    background: linear-gradient(45deg, #b66a10, #e98815, #c6720e);
    top: -40%;
    left: -40%;
    opacity: 0.3;
    animation: rotateGlow 4s linear infinite;
}

@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.all-team-btn:hover {
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(0, 153, 255, 0.6);
}

.bg-light {
    background-color: #ffffff !important;
}

.testimonial {
    background: #f5991d21 !important;
}

/* Team Card Unique Design */
.team-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    height: 100%;
}

/* Content Box */
.team-content {
    border-top: 1px solid #eee;
    padding: 25px;
    transition: 0.3s ease;
}

.team-item:hover .team-content {
    background: #f8f9fa;
}

.team-content h4 {
    font-size: 20px;
    font-weight: 700;
}

.team-content p {
    color: #666;
    font-size: 15px;
    margin: 0;
}

/* =============================================
   WINMORE HEADER – PROFESSIONAL PREMIUM DESIGN
   ============================================= */

/* HEADER BASE */
.wm-header-main {
    position: sticky;
    top: 0;
    z-index: 1050;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

/* Scrolled State – clean white with subtle shadow */
.wm-header-main.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.10);
}

/* ── TOP INFO STRIP ── */
.wm-top-strip {
    background: linear-gradient(90deg, #0d1b2a 0%, #192735 50%, #1a3045 100%);
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    font-weight: 500;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    letter-spacing: 0.01em;
}

.wm-top-left {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.wm-top-left span {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-right: 20px;
    color: rgba(255, 255, 255, 0.82);
}

.wm-top-left i {
    color: #f68a0a;
    font-size: 12px;
}

/* Social Icons – top right */
.wm-top-right {
    display: flex;
    align-items: center;
    gap: 4px;
}

.wm-top-right a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.75) !important;
    margin-left: 0;
    margin-right: 0;
    font-size: 12px;
    transition: all 0.25s ease;
    border: 1px solid rgba(255, 255, 255, 0.10);
    text-decoration: none;
}

.wm-top-right a:hover {
    background: #f68a0a;
    color: #fff !important;
    transform: translateY(-2px);
    border-color: transparent;
}

/* ── MAIN HEADER WRAP ── */
.wm-header-wrap {
    background: transparent;
    padding: 12px 0;
    transition: padding 0.35s ease;
}

.wm-header-main.scrolled .wm-header-wrap {
    padding: 8px 0;
}

/* ── INNER ROW ── */
.wm-header-inner {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* ── LOGO BOX ── */
/* .wm-logo-box {
    background: linear-gradient(145deg, #0d1b2a, #192735);
    padding: 12px 24px;
    border-radius: 16px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.06) inset;
    flex-shrink: 0;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
} */

/* Subtle animated accent line on logo box */
.wm-logo-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #f68a0a, #ffcc44, #f68a0a);
    background-size: 200% 100%;
    animation: logoAccent 3s linear infinite;
}

@keyframes logoAccent {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

.wm-logo-box img {
    height: 64px;
    display: block;
    /* transition: transform 0.35s ease; */
}

/* .wm-logo-box:hover img {
    transform: scale(1.04);
} */

/* ── PILL NAVIGATION BAR ── */
.wm-nav-pill {
    flex: 1;
    /* background: #ffffff;
    border-radius: 60px;
    padding: 8px 16px;
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.09),
        0 0 0 1px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease; */
}

/* .wm-header-main.scrolled .wm-nav-pill {
    box-shadow:
        0 2px 16px rgba(0, 0, 0, 0.07),
        0 0 0 1px rgba(0, 0, 0, 0.04);
} */

/* ── NAV LINKS ── */
.wm-nav-pill .navbar-nav {
    gap: 4px;
}

.wm-nav-pill .nav-link {
    font-weight: 600;
    font-size: 14.5px;
    color: #2a2a2a;
    padding: 9px 15px;
    border-radius: 40px;
    position: relative;
    letter-spacing: 0.01em;
    transition: color 0.25s ease, background 0.25s ease;
    white-space: nowrap;
}

/* Hover pill highlight */
.wm-nav-pill .nav-link:hover {
    color: #f68a0a;
    /* background: rgba(246, 138, 10, 0.08); */
}

/* Active link */
.wm-nav-pill .nav-link.active {
    color: #f68a0a;
    /* background: rgba(246, 138, 10, 0.10); */
}

/* Hover underline dot indicator */
.wm-nav-pill .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 3px;
    background: #f68a0a;
    border-radius: 3px;
    transition: transform 0.25s ease;
}

.wm-nav-pill .nav-link:hover::after,
.wm-nav-pill .nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* ── UNIFIED CTA BUTTON ── */
.wm-cta-btn {
    background: linear-gradient(135deg, #f68a0a 0%, #ff9e30 60%, #e67c00 100%);
    background-size: 200% 200%;
    color: #fff !important;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(246, 138, 10, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none !important;
    border: none;
    cursor: pointer;
}

.wm-cta-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(246, 138, 10, 0.55);
    color: #fff !important;
}

.wm-cta-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.wm-cta-btn:hover i {
    transform: translateX(5px);
}

.wm-cta-btn-outline {
    background: transparent;
    border: 2px solid #f68a0a;
    color: #f68a0a !important;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.wm-cta-btn-outline:hover {
    background: #f68a0a;
    color: #fff !important;
    transform: translateY(-3px);
}

/* ── GAININ LOGIN BUTTON ── */
.wm-login-btn {
    background: linear-gradient(135deg, #f68a0a 0%, #ff9e30 60%, #e67c00 100%);
    background-size: 200% 200%;
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 14px;
    margin-left: 6px;
    white-space: nowrap;
    letter-spacing: 0.02em;
    box-shadow:
        0 6px 22px rgba(246, 138, 10, 0.45),
        0 0 0 1px rgba(246, 138, 10, 0.2) inset;
    transition: all 0.3s ease;
    text-decoration: none !important;
    animation: pulseBtn 3s ease-in-out infinite;
}

/* Navbar Toggler Styling */
.wm-nav-pill .navbar-toggler {
    border: 2px solid rgba(246, 138, 10, 0.4);
    padding: 6px 12px;
    border-radius: 10px;
    color: #f68a0a;
    background: rgba(246, 138, 10, 0.05);
    transition: all 0.25s ease;
}

.wm-nav-pill .navbar-toggler:hover {
    background: #f68a0a;
    color: #fff;
    border-color: #f68a0a;
}

.wm-nav-pill .navbar-toggler .fa-bars {
    font-size: 18px;
}

/* ── MOBILE RESPONSIVE ── */
@media (max-width: 991px) {
    .wm-header-main {
        background: #fff;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    }

    .wm-header-wrap {
        padding: 8px 0;
    }

    .wm-header-inner {
        flex-direction: row;
        align-items: center;
        flex-wrap: nowrap;
        gap: 12px;
        justify-content: space-between;
    }

    .wm-logo-box {
        padding: 5px 0;
    }

    .wm-logo-box img {
        height: 50px;
    }

    .wm-nav-pill {
        padding: 0;
        position: static;
    }

    .wm-nav-pill .navbar-toggler {
        border: none;
        background: rgba(246, 138, 10, 0.1);
        border-radius: 8px;
        padding: 8px 12px;
        margin-left: auto;
    }

    .wm-nav-pill .navbar-toggler:focus {
        box-shadow: 0 0 0 3px rgba(246, 138, 10, 0.2);
    }

    .wm-nav-pill .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background: #fff;
        border-radius: 0 0 20px 20px;
        margin-top: 0;
        padding: 15px 20px 25px 20px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        z-index: 1050;
    }

    .wm-nav-pill .navbar-nav {
        flex-direction: column;
        gap: 6px;
    }

    .wm-nav-pill .nav-link {
        padding: 12px 18px;
        border-radius: 8px;
        font-size: 15px;
        font-weight: 600;
        color: #333;
        background: #f9f9f9;
        transition: all 0.3s ease;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .wm-nav-pill .nav-link:hover,
    .wm-nav-pill .nav-link.active {
        background: #fff4e6;
        color: #f68a0a;
    }

    .wm-nav-pill .nav-link::after {
        content: '❯';
        position: static;
        transform: none;
        width: auto;
        height: auto;
        background: none;
        font-size: 12px;
        color: inherit;
        opacity: 0.4;
    }

    .wm-login-btn {
        margin-top: 12px;
        margin-left: 0;
        width: 100%;
        text-align: center;
        padding: 14px;
        font-size: 15px;
        border-radius: 10px;
    }

    .wm-top-left span {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .wm-logo-box img {
        height: 42px;
    }

    .wm-top-strip {
        font-size: 11.5px;
    }

    .hero-actions,
    .srv-detail-hero .d-flex,
    .srv-cta-section .d-flex {
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
    }

    .hero-actions .wm-cta-btn,
    .hero-actions .wm-cta-btn-outline,
    .srv-detail-hero .wm-cta-btn,
    .srv-detail-hero .wm-cta-btn-outline,
    .srv-cta-section .wm-cta-btn,
    .srv-cta-section .wm-cta-btn-outline {
        width: 100% !important;
        margin: 0 !important;
    }
}


/* ── CONTACT PHONE STRIP ── */
.wm-contact-strip {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    background: linear-gradient(180deg, #f68a0a 0%, #e07c08 100%);
    padding: 14px 8px;
    border-radius: 12px 0 0 12px;
    z-index: 1049;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #fff;
    box-shadow: -4px 0 20px rgba(246, 138, 10, 0.35);
    white-space: nowrap;
    letter-spacing: 0.03em;
    font-weight: 600;
    transition: all 0.3s ease;
}

.wm-contact-strip:hover {
    padding: 14px 12px;
    box-shadow: -6px 0 28px rgba(246, 138, 10, 0.5);
}

.wm-contact-title {
    font-weight: 700;
    opacity: 1;
}

.wm-contact-strip a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s;
}

.wm-contact-strip a:hover {
    opacity: 0.85;
}

.wm-sep {
    opacity: 0.5;
}

/* MOBILE – contact strip becomes bottom bar */
@media (max-width: 991px) {
    .wm-contact-strip {
        position: fixed;
        top: auto;
        bottom: 70px;
        right: 0;
        transform: none;
        writing-mode: vertical-rl;
        border-radius: 12px 0 0 12px;
        padding: 12px 7px;
        font-size: 11px;
    }

    @media (max-width: 576px) {
        .wm-contact-strip {
            display: none !important;
        }
    }
}

.header-area {
    position: relative;
}

/* Floating WhatsApp Button – LEFT SIDE (Stacked) */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    /* Shifted up to avoid overlap */
    left: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    text-align: center;
    font-size: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px #25D366;
    animation: blink-whatsapp 2s infinite;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #20b358;
    transform: scale(1.1);
    color: #fff;
}

@keyframes blink-whatsapp {

    0%,
    100% {
        box-shadow: 0 0 8px #25D366;
    }

    50% {
        box-shadow: 0 0 30px #25D366, 0 0 60px rgba(37, 211, 102, 0.4);
    }
}

/* Floating Call Button – LEFT SIDE */
.call-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #f68a0a;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    text-align: center;
    font-size: 26px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px #f68a0a;
    animation: blink-call 2s infinite;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}

.call-float:hover {
    background-color: #e07c08;
    transform: scale(1.1);
    color: #fff;
}

@keyframes blink-call {

    0%,
    100% {
        box-shadow: 0 0 8px #f68a0a;
    }

    50% {
        box-shadow: 0 0 30px #f68a0a, 0 0 60px rgba(246, 138, 10, 0.4);
    }
}

/* ── PREMIUM TOWNSHIP SECTION ── */
.township-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e6ebf0 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Background aesthetic shapes */
.township-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(246, 138, 10, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.township-section .container {
    position: relative;
    z-index: 1;
}

.township-title {
    font-weight: 800;
    color: #0d1b2a;
    font-size: 2.8rem;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.township-title span {
    color: #f68a0a;
    position: relative;
}

.township-title span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 4px;
    background: #f68a0a;
    border-radius: 2px;
    opacity: 0.3;
}

.township-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

/* Card Accent Line */
.township-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #f68a0a, #ff9e30);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.township-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 45px rgba(246, 138, 10, 0.12);
}

.township-card:hover::before {
    transform: scaleX(1);
}

.township-card h4 {
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    padding-bottom: 15px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.township-card h4 i {
    color: #fff;
    background: #f68a0a;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(246, 138, 10, 0.3);
}

.township-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.township-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: #444;
    font-size: 15.5px;
    font-weight: 500;
    transition: transform 0.2s ease;
}

.township-list li:hover {
    transform: translateX(5px);
    color: #f68a0a;
}

.township-list li i {
    color: #25D366;
    font-size: 18px;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 50%;
}

.township-highlight {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    color: #d67a08;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 700;
    margin-top: 25px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    border: 1px solid rgba(246, 138, 10, 0.2);
    box-shadow: 0 4px 15px rgba(246, 138, 10, 0.1);
    animation: gentlePulse 3s infinite alternate;
}

@keyframes gentlePulse {
    0% {
        box-shadow: 0 4px 15px rgba(246, 138, 10, 0.1);
    }

    100% {
        box-shadow: 0 6px 20px rgba(246, 138, 10, 0.25);
    }
}

/* ── PREMIUM SERVICES PAGE ── */
.wm-services-page {
    background-color: #fcfdfe;
}

.tracking-wider {
    letter-spacing: 0.1em;
}

.wm-service-card-premium {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.wm-service-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(246, 138, 10, 0.15);
}

.card-img-wrap {
    position: relative;
    height: 220px;
    overflow: visible;
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.wm-service-card-premium:hover .card-img-wrap img {
    transform: scale(1.1);
}

.card-icon-float {
    position: absolute;
    bottom: -25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #f68a0a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 4px solid #fff;
    z-index: 2;
    transition: transform 0.4s ease;
}

.wm-service-card-premium:hover .card-icon-float {
    transform: scale(1.1) rotate(10deg);
}

.card-body-content {
    padding: 40px 30px 30px;
}

.card-body-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0d1b2a;
    margin-bottom: 15px;
}

.card-body-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.srv-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.srv-list li {
    font-size: 0.9rem;
    color: #444;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.srv-list li i {
    color: #25D366;
    font-size: 13px;
}

/* Service Detail Button */
.srv-detail-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: #f68a0a;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
}

.srv-detail-btn:hover {
    color: #d67a08;
    gap: 14px;
    border-bottom-color: #f68a0a;
}

.srv-detail-btn i {
    transition: transform 0.3s ease;
}

.srv-detail-btn:hover i {
    transform: translateX(4px);
}

/* ── SERVICE DETAIL PAGE ── */
.srv-detail-hero {
    background: linear-gradient(135deg, #0d1b2a 0%, #1a3045 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.srv-detail-hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(246, 138, 10, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.srv-detail-badge {
    display: inline-block;
    background: rgba(246, 138, 10, 0.15);
    color: #f68a0a;
    border: 1px solid rgba(246, 138, 10, 0.3);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.srv-detail-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.srv-detail-title span {
    color: #f68a0a;
}

.srv-detail-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 580px;
}

.srv-detail-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.srv-detail-img img {
    width: 100%;
    /* height: 380px; */
    object-fit: cover;
    display: block;
}

/* Features Grid */
.srv-features-section {
    background: #fff;
    padding: 90px 0;
}

.srv-feature-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 35px 30px;
    height: 100%;
    transition: all 0.35s ease;
    border-bottom: 4px solid transparent;
}

.srv-feature-card:hover {
    background: #fff;
    box-shadow: 0 15px 40px rgba(246, 138, 10, 0.1);
    border-bottom-color: #f68a0a;
    transform: translateY(-6px);
}

.srv-feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    margin-bottom: 20px;
}

.srv-feature-card h4 {
    font-weight: 700;
    color: #0d1b2a;
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.srv-feature-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}

/* Why Choose Section */
.srv-why-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8edf2 100%);
    padding: 90px 0;
}

.srv-why-point {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
}

.srv-why-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f68a0a, #ff9e30);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
    color: #fff;
    box-shadow: 0 5px 15px rgba(246, 138, 10, 0.3);
}

.srv-why-text h5 {
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 6px;
}

.srv-why-text p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* CTA Section */
.srv-cta-section {
    background: linear-gradient(135deg, #0d1b2a 0%, #1a3045 100%);
    padding: 80px 0;
    text-align: center;
}

.srv-cta-section h2 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.srv-cta-section p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ── GALLERY FILTERS ── */
.gallery-filters {
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid #f68a0a;
    background: transparent;
    color: #0d1b2a;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 5px;
}

.filter-btn:hover,
.filter-btn.active {
    background: #f68a0a;
    color: #fff;
    box-shadow: 0 5px 15px rgba(246, 138, 10, 0.3);
}

.gallery-item {
    transition: all 0.5s ease;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.fadeInScale {
    animation: fadeInScale 0.5s ease forwards;
}

/* ==========================================================================
   BHARAT CITY TOWNSHIP - SITE DIRECTORY STYLES
   ========================================================================== */
.township-board-header {
    background: #f68a0a;
    color: #fff;
    padding: 15px 25px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.township-row {
    transition: background 0.3s ease;
}

.township-row:hover {
    background: #fffcf8;
}

.township-state {
    background: #fdfdfd;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.township-state h5 {
    color: #101924;
    font-weight: 700;
    margin-bottom: 5px;
}

.city-list li {
    font-size: 15px;
    color: #555;
    margin-bottom: 8px;
}

.city-list li i {
    color: #f68a0a;
    font-size: 10px;
}

/* Media Panel Styles */
.media-preview-container {
    overflow: hidden;
    position: relative;
    height: 350px;
    /* Main Image Height */
}

.media-preview-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    z-index: 2;
}

/* Thumbnail Grid Fix */
.township-thumb-grid .thumb-item {
    height: 120px;
    /* Fixed height for all thumbs */
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.township-thumb-grid .thumb-item:hover {
    transform: scale(1.05);
}

.view-all-box {
    height: 120px;
    /* Match Thumb Height */
    background: rgba(255, 255, 255, 0.05);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.view-all-box:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #f68a0a;
}

.city-list li:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .township-state {
        border-right: none !important;
        border-bottom: 1px solid #eee;
        padding: 20px 15px;
    }

    .township-cities {
        padding: 20px !important;
    }

    .media-preview-container {
        height: 300px;
    }

    .township-board-header {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .media-preview-container {
        height: 250px;
    }

    .township-title {
        font-size: 2rem;
    }
}

/* ==========================================================================
   GALLERY PREMIUM STYLES
   ========================================================================== */
.gallery-box {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #fff;
    line-height: 0;
    /* Prevents gaps below image */
}

.gallery-box img {
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(16, 25, 36, 0.85);
    /* Professional Dark Overlay */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    padding: 30px;
    z-index: 5;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    visibility: visible;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.overlay-text h5 {
    color: #f68a0a;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 8px;
    transform: translateY(30px);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.overlay-text p {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    transform: translateY(30px);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1) 0.1s;
}

.gallery-item:hover .overlay-text h5,
.gallery-item:hover .overlay-text p {
    transform: translateY(0);
}




.filter-btn {
    border: none;
    background: #f8f9fa;
    padding: 10px 25px;
    border-radius: 50px;
    margin: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #555;
}

.filter-btn.active,
.filter-btn:hover {
    background: #f68a0a;
    color: #fff;
}

/* Video Play Icon Main */
.video-icon-main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: #f68a0a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 4;
    box-shadow: 0 0 0 0 rgba(246, 138, 10, 0.4);
    animation: pulse-orange-gallery 2s infinite;
    pointer-events: none;
    /* Allows hover on the box below */
    transition: all 0.3s ease;
}

.gallery-item:hover .video-icon-main {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
}

@keyframes pulse-orange-gallery {
    0% {
        box-shadow: 0 0 0 0 rgba(246, 138, 10, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(246, 138, 10, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(246, 138, 10, 0);
    }
}

/* Hide default GLightbox play button overlay over videos */
.gvideo-play-btn,
button.gvideo-play,
.gvideo-wrapper .gvideo-play {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}