/********** Template CSS **********/

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f5f5f5;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--bs-primary), #8b7308);
    border-radius: 50px;
    border: 3px solid #f5f5f5;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #dfae0d, #c4a109);
}

::selection {
    background: var(--bs-primary);
    color: white;
}

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

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

html {
    scroll-behavior: smooth;
}

.back-to-top {
    position: fixed !important;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/*** Fonts ***/
.font-work-sans {
    font-family: "Work Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.font-playfair-display {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.font-dancing-script {
    font-family: "Dancing Script", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

/*** Button ***/
.btn {
    position: relative;
    transition: 0.5s;
}

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

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

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

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

.btn-dark,
.btn-primary {
    margin: 10px;
}

.btn-primary::before,
.btn-primary::after {
    position: absolute;
    content: "";
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    top: -5px;
    left: -5px;
}

.btn-primary::before {
    top: -10px;
    height: calc(100% + 20px);
    border-left: 2px solid var(--bs-primary);
    border-right: 2px solid var(--bs-primary);
}

.btn-primary::after {
    left: -10px;
    width: calc(100% + 20px);
    border-top: 2px solid var(--bs-primary);
    border-bottom: 2px solid var(--bs-primary);
}

.btn-dark::before,
.btn-dark::after {
    position: absolute;
    content: "";
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    top: -5px;
    left: -5px;
}

.btn-dark::before {
    top: -10px;
    height: calc(100% + 20px);
    border-left: 2px solid var(--bs-dark);
    border-right: 2px solid var(--bs-dark);
}

.btn-dark::after {
    left: -10px;
    width: calc(100% + 20px);
    border-top: 2px solid var(--bs-dark);
    border-bottom: 2px solid var(--bs-dark);
}

/*** Navbar ***/
.sticky-top {
    top: -150px;
    transition: 0.5s;
}
.navbar {
    position: relative;
    min-height: 90px;
    background: #fff;
}

.navbar .navbar-nav .nav-link {
    margin: 0 12px;
    padding: 0;
    outline: none;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--bs-dark);
    position: relative;
    transition: 0.35s;
}

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

.navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 3px;
    background: var(--bs-primary);
    transition: 0.35s;
}

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

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    width: 100%;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

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

/* Floating Logo */
.logo-wrapper {
    position: absolute;
    left: 40px;
    top: 2%; /* Half outside navbar */
    z-index: 1000;
    padding: 0;
    margin: 0;
    padding: 10px;
    background: #fff;
    border-radius: 0 0 15px 15px;
}

.navbar-logo {
    width: 180px; /* Change this freely */
    height: auto;
    display: block;
}

/* Right Button */
.navbar-btn {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
}

.navbar-nav .nav-link {
    padding: 25px 15px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: 0.5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: 0.5s;
        opacity: 1;
    }

    .navbar-nav .nav-item {
        margin: 0 12px;
    }

    .navbar-nav .nav-link {
        padding: 25px 12px;
    }

    .navbar-collapse {
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 991.98px) {
    .logo-wrapper {
        position: static; /* Normal position */
        transform: none;
        background: transparent;
        border-radius: 0;
        padding: 10px 15px;
    }

    .navbar-logo {
        width: 120px; /* Smaller logo */
    }

    .navbar-btn {
        display: none;
    }

    .navbar-collapse {
        margin: 0;
        padding: 15px;
    }
}

.navbar .btn-primary {
    border-width: 2px;
    background: var(--bs-light);
}

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

/*** Hero Header ***/
.hero-header {
    position: relative;
    background: url("../img/img39.jpg") center center no-repeat;
    background-size: cover;
    overflow: hidden;
}

.hero-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.082); /* White overlay */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1;
}

/* Keep content above the overlay */
.hero-header > * {
    position: relative;
    z-index: 2;
}

@media (min-width: 992px) {
    .hero-header .container {
        max-width: 100% !important;
    }

    .hero-header .hero-header-text {
        padding-left: calc(((100% - 960px) / 2) + 0.75rem);
    }
}

@media (min-width: 1200px) {
    .hero-header .hero-header-text {
        padding-left: calc(((100% - 1140px) / 2) + 0.75rem);
    }
}

@media (min-width: 1400px) {
    .hero-header .hero-header-text {
        padding-left: calc(((100% - 1320px) / 2) + 0.75rem);
    }
}

.header-carousel .owl-nav {
    position: absolute;
    right: 0;
    bottom: 0;
    text-align: center;
    display: flex;
    justify-content: center;
}

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

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

.page-header {
    background: url(../img/page-header.jpg) center center no-repeat;
    background-size: contain;
}

.about-img-wrapper {
    overflow: hidden;
    cursor: pointer;
    border-radius: 12px;
    transition: box-shadow 0.4s ease;
}

.about-img {
    transition: transform 0.6s ease;
}

.about-img-wrapper:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
}

.about-img-wrapper:hover .about-img {
    transform: scale(1.08);
}

/*** Service ***/
@media (max-width: 768px) {
    .service .service-item {
        border: none !important;
        box-shadow: 0 0 45px rgba(0, 0, 0, 0.05);
    }
}

@media (min-width: 992px) {
    .service .service-item.border-lg-end {
        border-right: 1px solid #dee2e6;
    }

    .service .service-item.border-lg-end-0 {
        border-right: none !important;
    }

    .service .service-item.border-lg-bottom-0 {
        border-bottom: none !important;
    }
}

.service .service-item .btn-primary {
    border-width: 2px;
    background: var(--bs-white);
}

.service .service-item .btn-primary:hover {
    background: var(--bs-primary);
}

.service .service-item img {
    width: 70px;
    margin-bottom: 20px;
}

.carousel-img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 991.98px) {
    .carousel-img {
        height: 350px;
    }
}

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

/*** Pricing ***/
.price .price-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.05);
}

/*** Blog ***/
.blog .btn-dark {
    border-width: 2px;
    background: var(--bs-primary);
    color: var(--bs-dark);
}

.blog .btn-dark:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

/*** Gallery ***/
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 280px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

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

.gallery-icon {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    transition: 0.4s;
}

.gallery-item:hover .gallery-icon {
    opacity: 1;
}

.gallery .gallery-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    transition: 0.5s;
    z-index: 1;
}

.gallery .gallery-item:hover .gallery-icon {
    width: 100%;
    height: 100%;
}

.gallery .gallery-icon .btn {
    opacity: 0;
    transition: 0.5s;
}

.gallery .gallery-item:hover .gallery-icon .btn {
    opacity: 1;
    transition-delay: 0.5s;
}

/*** Team ***/
.team {
    position: relative;
}

.team::before {
    position: absolute;
    content: "";
    width: 200%;
    height: 200px;
    top: 50%;
    left: -50%;
    transform: translateY(-50%);
    margin-top: 1rem;
    background: var(--bs-primary);
}

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

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

.team-overlay {
    position: absolute;
    padding: 30px;
    right: 30px;
    bottom: 30px;
    left: 30px;
    text-align: center;
    background: rgba(255, 255, 255, 0.5);
    transition: 0.5s;
    z-index: 1;
}

.team-item:hover .team-overlay {
    background: rgba(255, 255, 255, 0.9);
}

.team-overlay p {
    letter-spacing: 1px;
}

.team-overlay .btn-dark {
    border-width: 2px;
    color: var(--bs-dark);
    background: transparent;
}

.team-overlay .btn-dark:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

/*** Testimonial ***/
.testimonial-carousel .owl-item {
    position: relative;
}

.testimonial-carousel .owl-item::before {
    position: absolute;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
}

.testimonial-carousel .owl-item img {
    position: relative;
    width: 100px;
    height: 100px;
    z-index: 1;
}

.testimonial-carousel .owl-item,
.testimonial-carousel .owl-item * {
    transition: 0.5s;
}

.testimonial-carousel .owl-item span {
    letter-spacing: 2px;
}

.testimonial-carousel .owl-item.center .bg-light {
    background: var(--bs-primary) !important;
}

.testimonial-carousel .owl-item.center .bg-light * {
    color: var(--bs-white) !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--bs-white);
    background: var(--bs-primary);
    transition: 0.5s;
}

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

/*** Footer ***/

.footer {
    background:
        linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.85),
            rgba(0, 0, 0, 0.7),
            rgba(0, 0, 0, 0.85)
        ),
        url("../img/footer-bg.jpg") center center/cover no-repeat;
}

.footer p,
.footer a,
.footer h6 {
    font-family: "Poppins", sans-serif;
}

.footer-logo {
    width: 180px;
}

.footer p {
    color: #e1e1e1;
}

.footer::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    top: 0;
    left: 50%;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #e1e1e1;
    font-weight: normal;
    text-transform: capitalize;
    transition: 0.3s;
}

.footer .btn.btn-link:hover {
    color: var(--bs-white);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: rgba(255, 255, 255, 0.5);
    margin-right: 10px;
}

.instagram-qr {
    width: 180px;
    max-width: 100%;
    padding: 10px;
    background: #fff;
    border-radius: 12px;
    transition: 0.35s ease;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.instagram-qr:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.copyright {
    font-family: "Poppins", sans-serif;
}

.expanding-gallery {
    display: flex;
    gap: 12px;
    height: 450px;
}

.gallery-card {
    position: relative;
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
    transition: 0.6s ease;
    cursor: pointer;
}

.gallery-card a {
    display: block;
    width: 100%;
    height: 100%;
}

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

.expanding-gallery:hover .gallery-card {
    flex: 0.8;
}

.expanding-gallery .gallery-card:hover {
    flex: 3;
}

.gallery-card:hover a img {
    transform: scale(1.08);
}

.gallery-content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 25px;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
    transform: translateY(100%);
    transition: 0.5s ease;
}

.gallery-card:hover .gallery-content {
    transform: translateY(0);
}

.gallery-content h4 {
    color: #fff;
    margin: 0;
    font-weight: 600;
}

@media (max-width: 991.98px) {
    .expanding-gallery {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        height: auto;
    }

    .expanding-gallery:hover .gallery-card,
    .expanding-gallery .gallery-card:hover {
        flex: unset;
    }

    .gallery-card {
        height: 260px;
        border-radius: 16px;
        overflow: hidden;
        cursor: default;
    }

    .gallery-card img {
        transform: none !important;
        transition: none;
    }

    /* Always visible content */
    .gallery-content {
        transform: translateY(0);
        opacity: 1;
        padding: 18px;
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.8),
            rgba(0, 0, 0, 0.45),
            transparent
        );
    }

    .gallery-content h4 {
        font-size: 17px;
        color: #fff;
        font-weight: 600;
        margin: 0;
    }
}

/* ==========================
   Mobile
========================== */

@media (max-width: 575.98px) {
    .expanding-gallery {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .gallery-card {
        height: 300px;
    }

    .gallery-content {
        padding: 20px;
    }

    .gallery-content h4 {
        font-size: 18px;
    }
}

.bg-dark {
    background-color: #1c1c1c !important;
}

/* Floating Social */

.floating-social {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Important */
    gap: 12px;
}

.social-item {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    color: #fff;
    text-decoration: none;
    border-radius: 30px 0 0 30px;
    overflow: hidden;
    transition:
        width 0.45s ease,
        transform 0.45s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    animation: floatIcon 3s ease-in-out infinite;
}

.social-item i {
    min-width: 55px;
    text-align: center;
    font-size: 20px;
}

.social-item span {
    white-space: nowrap;
    opacity: 0;
    width: 0;
    overflow: hidden;
    transition: 0.35s;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}

/* Desktop Hover */

.social-item:hover {
    width: 180px;
    transform: translateX(-8px);
    color: white;
}

.social-item:hover span {
    width: 110px;
    opacity: 1;
}

/* Colors */

.call {
    background: #007bff;
}

.whatsapp {
    background: #25d366;
}

.instagram {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.youtube {
    background: #ff0000;
}

/* Floating Animation */

@keyframes floatIcon {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@media (max-width: 991.98px) {
    .floating-social {
        gap: 10px;
    }

    .social-item {
        width: 50px;
        height: 50px;
    }

    .social-item i {
        min-width: 50px;
        font-size: 18px;
    }

    /* Never expand on mobile */
    .social-item:hover {
        width: 50px;
    }

    .social-item span {
        display: none;
    }

    .social-item:hover span {
        display: none;
        width: 0;
        opacity: 0;
    }

    .lead {
        font-size: 1rem !important;
    }
}

.flag-icon {
    width: 20px; /* adjust size */
    height: auto;
    margin-right: 5px; /* spacing between flag and +91 */
    border-radius: 3px; /* optional: rounded flag */
}

@media(min-width: 992px){
    .cursor-dot {
        position: fixed;
        width: 8px;
        height: 8px;
        background: var(--bs-primary);
        border-radius: 50%;
        pointer-events: none;
        z-index: 99999;
        transform: translate(-50%, -50%);
    }
    
    .cursor-follower {
        position: fixed;
        width: 35px;
        height: 35px;
        border: 2px solid var(--bs-primary);
        border-radius: 50%;
        pointer-events: none;
        z-index: 99998;
    
        transform: translate(-50%, -50%);
    
        transition:
            width 0.3s ease,
            height 0.3s ease,
            border-color 0.3s ease;
    }
}

/* =========================================
   SERVICE AREAS
========================================= */

.service-areas-section {
    width: 100%;
    background: #fff;
    overflow: hidden;
}

/* =========================================
   MAIN CREATIVE LAYOUT
========================================= */

.service-area-layout {
    display: grid;

    grid-template-columns: 1fr 1.4fr 1fr;

    grid-template-rows: auto auto auto;

    gap: 20px;

    align-items: center;
}

/* =========================================
   VIDEO
========================================= */

.service-video-card {
    grid-column: 2;
    grid-row: 1 / 4;

    position: relative;

    width: 100%;
    height: 400px;

    overflow: hidden;

    border-radius: 30px;

    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
}

.service-areas-video {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

}

/* =========================================
   VIDEO BADGE
========================================= */

.video-location-badge {
    position: absolute;

    left: 25px;
    bottom: 25px;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 12px 20px;

    border-radius: 50px;

    background: rgba(0, 0, 0, 0.65);

    color: #fff;

    font-size: 14px;

    backdrop-filter: blur(10px);

    -webkit-backdrop-filter: blur(10px);
}

.video-location-badge i {
    color: var(--bs-primary);
}

/* =========================================
   LOCATION POSITIONS
========================================= */

.location-jaipur {
    grid-column: 1;
    grid-row: 1;
}

.location-delhi {
    grid-column: 3;
    grid-row: 1;
}

.location-chandigarh {
    grid-column: 1;
    grid-row: 2;
}

.location-up {
    grid-column: 3;
    grid-row: 2;
}

.location-mp {
    grid-column: 1;
    grid-row: 3;
}

.location-haryana {
    grid-column: 3;
    grid-row: 3;
}

/* =========================================
   LOCATION CARD
========================================= */

.location-card {
    display: flex;

    align-items: center;

    gap: 15px;

    padding: 14px;

    background: #fff;

    border: 1px solid #eee;

    border-radius: 18px;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

/* Hover */

.location-card:hover {
    transform: translateY(-6px);

    border-color: var(--bs-primary);

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* =========================================
   LOCATION IMAGE
========================================= */

.location-image {
    width: 95px;

    height: 85px;

    flex-shrink: 0;

    overflow: hidden;

    border-radius: 14px;
}

.location-image img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.location-card:hover .location-image img {
    transform: scale(1.08);
}

/* =========================================
   LOCATION INFO
========================================= */

.location-info {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    flex: 1;
}

.location-number {
    font-size: 12px;

    font-weight: 700;

    color: var(--bs-primary);

    padding-top: 3px;
}

/* =========================================
   LOCATION TITLE
========================================= */

.location-info h4 {
    margin: 0 0 3px;

    font-size: 19px;

    font-weight: 600;
}

.location-tag {
    display: inline-block;

    font-size: 10px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 0.8px;

    color: var(--bs-primary);

    margin-bottom: 5px;
}

.location-info p {
    margin: 0;

    font-size: 12px;

    line-height: 1.5;

    color: #777;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {
    .service-area-layout {
        grid-template-columns: 1fr 1fr;

        grid-template-rows: auto auto auto auto;
    }

    .service-video-card {
        grid-column: 1 / 3;

        grid-row: 1;

        height: 500px;

        order: -1;
    }

    .location-jaipur {
        grid-column: 1;
        grid-row: 2;
    }

    .location-delhi {
        grid-column: 2;
        grid-row: 2;
    }

    .location-chandigarh {
        grid-column: 1;
        grid-row: 3;
    }

    .location-up {
        grid-column: 2;
        grid-row: 3;
    }

    .location-mp {
        grid-column: 1;
        grid-row: 4;
    }

    .location-haryana {
        grid-column: 2;
        grid-row: 4;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 575.98px) {
    .service-areas-section .container-fluid {
        padding-top: 40px !important;

        padding-bottom: 40px !important;
    }

    .service-area-layout {
        display: flex;

        flex-direction: column;

        gap: 15px;
    }

    /* Video first */

    .service-video-card {
        width: 100%;

        height: 380px;

        border-radius: 20px;

        order: -1;

        margin-bottom: 10px;
    }

    .video-location-badge {
        left: 15px;

        bottom: 15px;

        padding: 10px 15px;

        font-size: 12px;
    }

    /* Cards */

    .location-card {
        width: 100%;

        padding: 10px;

        border-radius: 14px;

        gap: 12px;
    }

    .location-image {
        width: 80px;

        height: 75px;

        border-radius: 12px;
    }

    .location-info {
        gap: 8px;
    }

    .location-number {
        display: none;
    }

    .location-info h4 {
        font-size: 17px;
    }

    .location-tag {
        font-size: 9px;
    }

    .location-info p {
        font-size: 11px;
    }

    .location-card:hover {
        transform: translateY(-3px);
    }
}

.lb-number {
    display: none !important;
}
