:root {
    --primary-red: #f9251a;
    --primary-red-hover: #c92a37;
    --dark-bg: #1a1a1a;
    --top-bar-bg: rgb(20 20 20 / 0%);
    --header-bg: rgba(255, 255, 255, 0.08);
    --text-light: #ffffff;
    --text-muted: #b8b8b8;
    --drawer-bg: #0f0f0f;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #2a2a2a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
}

a {
    text-decoration: none !important;
}

.main-para {
    width: 50%;
    margin: auto;
    margin-bottom: 20px;
}

.top-head {
    font-weight: 500;
    display: inline-block;
    font-size: 15px;
    text-transform: uppercase;
    line-height: 24px;
    margin-bottom: 20px;
    letter-spacing: 6px;
    font-family: "Montserrat", sans-serif;
    color: black;
    position: relative;
    padding: 6px 0 3px 0;
    /* text-align: center; */
    margin: auto;
    display: block;
    width: fit-content;


}

.top-head::after {
    height: 2px;
    width: 50%;
    background-color: var(--primary-red);
    content: "";
    left: 0;
    bottom: 0;
    position: absolute;

}

.top-head::before {
    height: 2px;
    width: 50%;
    background-color: var(--primary-red);
    content: "";
    right: 0;
    top: 0;
    position: absolute;

}


.squre-effect {
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.squre-effect::after {
  position: absolute;
  height: 200%;
  width: 0%;
  content: "";
  left: 47%;
  top: -45%;
  transition: all 0.5s ease;
  transform: rotate(45deg);
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.3);

}

.squre-effect:hover::after {
  width: 152%;
  left: -39%;
  top: -68%;
  opacity: 0;
}

/* btn-main start */
.btn-main {
    background-color: var(--primary-red);
    color: var(--text-light);
    border: none;
    padding: 12px 26px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-main:hover {
    background-color: var(--primary-red-hover);
    color: var(--text-light);
    transform: translateY(-1px);
}

/* btn-main end */

/* sec-btn start */
.sec-btn {
    background-color: var(--primary-red);
    color: white;
    border: none;
    padding: 12px 26px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border: 1px solid white;
    border-radius: 5px;
}

.sec-btn:hover {
    background-color: black;
    color: var(--text-light);
    transform: translateY(-1px);
}
/* sec-btn end */

/* btn-third start */
.btn-third {
    color: var(--primary-red);
    border: none;
    padding: 12px 26px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-third:hover {
    color: var(--primary-red-hover);
    transform: translateY(-1px);
}
.btn-third i{
    color: var(--primary-red);
}
/* btn-third end */
/* sec-btn end */

/* .heading {
    font-size: 40px;
    color: black;
    font-weight: bold;
    margin-bottom: 26px;
    position: relative;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 4px;
    margin-top: 20px;
} */

.heading {
    font-size: 40px;
    color: black;
    font-weight: bold;
    margin-bottom: 26px;
    position: relative;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 4px;
    margin-top: 20px;

    transform: translateY(80px);
    opacity: 0;
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Active Animation */
.heading.show {
    transform: translateY(0);
    opacity: 1;
}



/* Hero background to mimic the screenshot's car backdrop */
.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    transition: all 0.4s ease;
}

/* ===== TOP BAR ===== */


/* Hide topbar on scroll */
.header-wrapper.scrolled .top-bar {
    max-height: 0;
    padding: 0;
    opacity: 0;
    border: none;
}

.header-wrapper.scrolled {
    box-shadow: 1px 1px 5px gray;
}

/* ===== MAIN HEADER ===== */
.main-header {
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
    background-color: white;
}

/* ===== TOP BAR ===== */
.top-bar {
 background-color:rgb(189 20 11);
    color: var(--text-light);
    padding: 10px 0;
    font-size: 14px;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar .discount-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar .discount-text i {
    color: var(--text-light);
    font-size: 13px;
}

.top-bar .contact-info {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: flex-end;
}

.top-bar .contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-bar .contact-item:hover {
    color: var(--primary-red);
}

.top-bar .icon-circle {
    width: 26px;
    height: 26px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

/* ===== MAIN HEADER ===== */
.main-header {
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light) !important;
    font-size: 26px;
    font-weight: 700;
    text-decoration: none;
}

.navbar-brand .logo-icon {
    color: var(--primary-red);
    font-size: 30px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    color: black !important;
    text-decoration: none;
    padding: 8px 18px;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.header-wrapper.scrolled .nav-menu li a {
    color: black !important;

}
.drawer-toggle i{
color: black;
}

.header-wrapper.scrolled .drawer-toggle {
    color: black !important;
}

.nav-menu li a:hover {
    color: var(--primary-red);
}

.nav-menu li a .caret {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-menu li:hover>a .caret {
    transform: rotate(180deg);
}

/* ===== DROPDOWN MENU ===== */
.nav-menu li {
    position: relative;
}

.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: white;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 10px 0;
    margin-top: 18px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    z-index: 1000;
}

.dropdown-menu-custom::before {
    content: '';
    position: absolute;
    top: -18px;
    left: 0;
    right: 0;
    height: 18px;
}

.nav-menu li:hover>.dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu-custom li {
    padding: 0;
}

.dropdown-menu-custom li a {
    display: block;
    padding: 10px 20px;
    color: black !important;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.25s ease;
    border-left: 2px solid transparent;
}

.dropdown-menu-custom li a:hover {
    color: white !important;
    background: rgba(230, 57, 70, 0.1);
    background-color: var(--primary-red);
    padding-left: 26px;
}

/* Appointment button */


/* Drawer toggle (hamburger) */
.drawer-toggle {
    background: transparent;
    border: none;
    color: white;
    font-size: 28px;
    padding: 6px 10px;
    cursor: pointer;
    margin-left: 18px;
    transition: color 0.3s ease;
}

.drawer-toggle:hover {
    color: var(--primary-red);
}

/* ===== SIDE DRAWER ===== */
.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: 1040;
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.side-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 380px;
    max-width: 90vw;
    height: 100vh;
    background: var(--drawer-bg);
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.96)),
        url('https://images.unsplash.com/photo-1494976388531-d1058494cdd8?w=800&q=80');
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    padding: 30px 35px;
    overflow-y: auto;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1050;
    box-shadow: 4px 0 30px rgba(0, 0, 0, 0.5);
}

.side-drawer.active {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.drawer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-red);
}

.drawer-brand .logo-icon {
    color: var(--primary-red);
    font-size: 26px;
}

.drawer-close {
    background: transparent;
    border: none;
    color: black;
    font-size: 26px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

.drawer-close:hover {
    color: var(--primary-red);
    transform: rotate(90deg);
}

.drawer-section {
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.drawer-section:last-child {
    border-bottom: none;
}

.drawer-section h5 {
    font-size: 17px;
    font-weight: 600;
    color: black;
    margin-bottom: 18px;
}
.drawer-section a i{
    color: white;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    padding: 7px 0;
    color: black;
    font-size: 14px;
    transition: color 0.25s ease, padding-left 0.25s ease;
    cursor: pointer;
}

.service-list li:hover {
    color: var(--text-light);
    padding-left: 6px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    color: black;
    font-size: 14px;
}

.contact-list li i {
    color: black;
    margin-top: 4px;
    width: 16px;
    text-align: center;
}

.contact-list li strong {
    color: black;
    font-weight: 500;
}

.drawer-section .about-text {
    font-size: 13.5px;
    line-height: 1.7;
    color: black;
    margin-bottom: 20px;
}

.social {
    position: fixed;
    right: 25px;
    bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.social a {
    position: relative;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-size: 28px;
    overflow: visible;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
}

/* WhatsApp */
.social .whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

/* Phone */
.social .phone {
    background: linear-gradient(135deg, #ff6b35, #ff3d00);
}

/* Floating Animation */
.social a {
    animation: float 3s ease-in-out infinite;
}

.social .phone {
    animation-delay: 1.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Pulse Ring */
.social a::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Label */
.social a span {
    position: absolute;
    right: 80px;
    background: #111;
    color: #fff;
    padding: 10px 18px;
    border-radius: 30px;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: all .4s ease;
}

.social a:hover span {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.social a:hover {
    transform: scale(1.15);
}

.social a:hover i {
    transform: rotate(15deg);
}

.social a i {
    transition: .4s;
}


/* Mobile */
@media(max-width:768px) {
    .social {
        right: 15px;
        bottom: 15px;
    }

    .social a {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    .social a span {
        display: none;
    }
}

/* Demo content placeholder */
.demo-content {
    text-align: center;
    color: var(--text-light);
}

.demo-content .top-head {
    margin: unset;
    color: white;
    text-shadow: 0 2px 20px rgb(0 0 0);
}

.demo-content .heading {
    text-align: start;
    color: white;
    ;

}

.demo-content.demo-content-2 {
    display: none;
}

.demo-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgb(0, 0, 0);
}

.demo-content p {
    font-size: 18px;
    opacity: 0.9;
}

.carousel-caption {
    backdrop-filter: blur(2px);
}

.carousel-control-next-icon {
    background: var(--primary);
    border-radius: 50%;
}

.carousel-control-prev-icon {
    background: var(--primary);
    border-radius: 50%;
}

.carousel-indicators {
    display: none
}

#home-banner.home-banner-1 {
    display: block;
}

#home-banner.home-banner-2 {
    display: none;
}

#home-banner {
    position: relative;
}

.home-banner .carousel-inner .carousel-caption {
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
    height: fit-content;
}

.home-banner {
    background-image: url("img/banner.jpg");
    background-position: center;
    background-size: cover;
    height: 87vh;
    background-repeat: no-repeat;
    background-image: #172c59e3;
}

.home-banner-2 {
    background-image: url("img/banner-short.jpg");
    background-position: center;

}

.home-banner .main-box {
    justify-content: center;
}


.home-banner .carousel-inner .first .carousel-caption {
    text-align: end;

}

.home-banner .carousel-inner .second .carousel-caption {
    text-align: start;
}

.home-banner .left h1 {
    font-size: 60px;
    color: white;
    margin-bottom: 20px;
    font-family: popins;
    font-weight: bold;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.3s;
}

.home-banner .left p {
    font-size: 18px;
    color: var(--secondary);
    /* font-weight: 600; */
    color: white;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.6s;
}

.home-banner .left .sub-head {
    color: white;
    margin-bottom: 20px;
    font-weight: 400;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeDown 1s ease forwards;
}

.home-banner .left {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.home-banner .ban-box {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.9s;
}


/* .home-banner .carousel-inner .carousel-caption p span{
  color: #1a72dc;
} */

.home-banner .carousel-inner .first .carousel-caption p:nth-child(2) {
    font-size: 20px;
    font-weight: normal;
    color: white;
    margin-left: 30%;

}

.home-banner .carousel-inner .second .carousel-caption p:nth-child(2) {
    margin-right: 30%;
    margin-left: 0;
    margin-bottom: 25px;
}


.home-banner .carousel-inner .third .carousel-caption p:nth-child(2) {
    margin-left: 30%;
}

.home-banner .carousel-inner .carousel-caption .calling {
    background-color: white;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    margin-left: 10px;
    text-align: end;
}

.home-banner .carousel-inner .carousel-caption .calling a i {
    color: var(--primary);
}



/* Keyframes */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* home-banner section end */


/* about-sec start */
/* ========== ABOUT US SECTION ========== */
.about-section {
    position: relative;
    padding: 100px 0;
    /* REPLACE 'your-background-image.jpg' with your actual image path */
    /* background-color: #121212; */
}

.about-section .top-head {
    margin: unset;
}

/* Dark overlay over background image */
.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(10, 10, 10, 0.88); */
    z-index: 1;
}

.about-section .container {
    position: relative;
    z-index: 2;
}

/* ========== IMAGES SIDE ========== */
.about-images {
    position: relative;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.about-img-1,
.about-img-2 {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.about-img-1 {
    width: 55%;
    height: 480px;
}

.about-img-2 {
    width: 45%;
    height: 400px;
    margin-top: 60px;
}

.about-img-1 img,
.about-img-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-img-1:hover img,
.about-img-2:hover img {
    transform: scale(1.05);
}

/* ========== CONTENT SIDE ========== */
.about-content {
    padding-left: 30px;
}


.about-text {
    color: black;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.btn-read-more {
    display: inline-block;
    background-color: #e8202a;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: none;
}

.btn-read-more:hover {
    background-color: #c4181f;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(232, 32, 42, 0.3);
}

/* ========== STATS SECTION ========== */
.stats-section {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-box {
    text-align: center;
    color: #ffffff;
}

.stat-icon {
    font-size: 36px;
    color: #e8202a;
    margin-bottom: 15px;
}

.stat-number {
    font-family: "Bebas Neue", sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: black;
    margin-bottom: 8px;
    letter-spacing: 4px;
}

.stat-label {
    color: black;
    font-size: 15px;
    font-weight: 400;
}

/* about-sec end */

/* mid-banner start */
#mid-banner {
    background-image: url('img/mid-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
    padding: 100px 0 0 100px;
    height: 80vh;
    position: relative;

}

#mid-banner::after {
    background: linear-gradient(to bottom, #fdfdfd 0%, #ffffff 30%, rgb(223 223 223 / 0%) 100%);
    left: 0;
    top: 0;
    content: "";
    position: absolute;
    height: 20%;
    width: 100%;
}

#mid-banner::before {
    background: linear-gradient(to top, #ffffff 0%, #f9f9f9 30%, rgb(235 235 235 / 0%) 100%);

    left: 0;
    bottom: 0;
    content: "";
    position: absolute;
    height: 20%;
    width: 100%;
}

#mid-banner .box {
    position: absolute;
    height: 60%;
    width: 60%;
    left: -100%;
    opacity: 0;
}

/* Animation only runs when this class is added by JS */
#mid-banner .box.animate {
    animation-name: truck-ani;
    animation-duration: 2s;
    animation-timing-function: ease-out;
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
}

@keyframes truck-ani {
    0% {
        left: -100%;
    }

    100% {
        left: 50%;
        opacity: 1;
        transform: translateX(-50%);
    }
}

/* mid-banner end */

/* services-sec start */


/* mid-banner-2 start */
#mid-banner-2 {
    background-image: url('img/mid-banner-2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
    padding: 100px 0 0 100px;
    height: 80vh;
    position: relative;

}

#mid-banner-2::after {
    background: linear-gradient(to bottom, #fdfdfd 0%, #ffffff 30%, rgb(223 223 223 / 0%) 100%);

    left: 0;
    top: 0;
    content: "";
    position: absolute;
    height: 20%;
    width: 100%;
}

#mid-banner-2::before {
    background: linear-gradient(to top, #ffffff 0%, #f9f9f9 30%, rgb(235 235 235 / 0%) 100%);
    left: 0;
    bottom: 0;
    content: "";
    position: absolute;
    height: 20%;
    width: 100%;
}

#mid-banner-2 .box {
    position: absolute;
    height: 60%;
    width: 60%;
    left: -100%;
    opacity: 0;
}


/* mid-banner-2 end */
/* ========== SERVICES SECTION ========== */
#service-sec {
    background-color: white;
}

/* ========== SERVICE CARD ========== */
.service-card {
    position: relative;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

/* Background image */
.service-card .card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Dark overlay (always visible, darkens on hover) */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(0, 0, 0, 0.7) 100%); */
    z-index: 1;
    transition: background 0.4s ease;
}

.service-card:hover::before {
    background: rgba(0, 0, 0, 0.85);
}

.service-card:hover .card-img {
    transform: scale(1.1);
}

/* Service number (always visible at top) */
.card-number {
    position: absolute;
    top: 20px;
    left: 25px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    z-index: 3;
    transition: opacity 0.4s ease;
}

/* Title (visible by default at bottom, hides on hover) */
.card-title {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    font-family: 'Rajdhani', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    z-index: 3;
    margin: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.service-card:hover .card-title {
    opacity: 0;
    transform: translateY(20px);
}

/* Hover content (description + button) - hidden by default */
.card-hover-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    padding: 30px;
    text-align: center;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.4s ease 0.1s;
    pointer-events: none;
}

.service-card:hover .card-hover-content {
    opacity: 1;
    pointer-events: auto;
}

.card-description {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Active card (always shows hover state) */
.service-card.active::before {
    background: rgba(0, 0, 0, 0.85);
}

.service-card.active .card-img {
    transform: scale(1.1);
}

.service-card.active .card-title {
    opacity: 0;
    transform: translateY(20px);
}

.service-card.active .card-hover-content {
    opacity: 1;
    pointer-events: auto;
}

/* services-sec end */
#why-choose {
    background-color: #f1f1f1;
}

#why-choose .box {
    background-color: #222222;
    padding: 30px;
    border-radius: 10px;
    margin-top: 20px;
}

#why-choose .box h5 {
    font-family: "Montserrat", sans-serif;
}

#why-choose .box p {
    margin-bottom: 0;
}

/* why-choose start */


/* practice-section start */


.services-sec {
    /* background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)),
        url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f') right center/cover no-repeat; */
    padding: 80px 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #fbf8f2;
}

.services-sec .heading::after {
    left: 50%;
    transform: translateX(-50%);

}

#services-sec .card .card-title {
    font-weight: 600;
    font-size: 22px;
    font-family: "Playfair Display ";
}

#services-sec .card {
    border: 1px solid #7d7c7c36;
    overflow: hidden;
}

#services-sec .card:hover .card-img-top {
    transform: scale(1.1);
    transition: 0.8s;
}


/* services-sec end */


/* hero-section start */
.hero-section {
    position: relative;
    height: 450px;
    background: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Dark overlay */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(15deg, rgb(0 0 0 / 90%), rgb(0 0 0 / 70%));
}

/* Content */
.hero-section .hero-content {
    position: relative;
    color: #fff;
    max-width: 850px;
    z-index: 2;
}

.hero-section .hero-content h1 {
    font-size: 34px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 20px;
}

.hero-section .hero-content p {
    font-size: 18px;
    color: #ececec;
    margin-bottom: 25px;
    font-weight: normal;
}

/* Button */
.hero-section .hero-btn {
    background: #c8b38a;
    color: #000;
    padding: 14px 35px;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    transition: 0.3s;
}

.hero-section .hero-btn:hover {
    background: #a89268;
    color: #fff;
}



/* hero-section end */

/* testimonial start */
#testimonial {
    position: relative;
}

#testimonial::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 80%;
    background-color: #fbf8f2;
    z-index: -1;

}

#testimonial .heading::after {
    left: 50%;
    transform: translateX(-50%);
}

#testimonial .card-custom {
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    padding: 20px;
    background: #fff;
    max-width: 700px;
}

#testimonial .profile-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid #f1f1f1;
}

#testimonial .username {
    color: #6c757d;
    font-size: 14px;
}

#testimonial .card-text {
    font-size: 15px;
    color: #444;
}


/* testimonial end */

/* footer start */

.site-footer {
    background-color: #222222;
    color: #ffffff;
    padding: 70px 0 30px;
    font-size: 15px;
}

.footer-logo {
    font-size: 35px;
    font-weight: 700;
    font-family: "Playfair Display ";
    color: white;
}

.footer-logo span {
    display: block;
    font-size: 11px;
    letter-spacing: 4px;
    margin-top: -5px;
}

.footer-text {
    margin: 20px 0;
    line-height: 1.7;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
    text-decoration: none;
}

.footer-social a:hover {
    background: #ffffff;
    color: #896c26;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-red);
    ;
}

.footer-links a:hover {
    color: var(--primary-red);
    ;
    transition: 0.5s;
}

.footer-contact {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.footer-contact a {
    color: white;
}

.footer-contact a:hover {
    color: var(--primary-red);
    transition: 0.5s;
}

.footer-contact i {
    font-size: 20px;
    margin-right: 15px;
    margin-top: 4px;
    color: var(--primary-red);
}

.footer-contact p {
    margin: 5px 0 0;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.3);
    margin: 40px 0 20px;
}

.footer-bottom {
    font-size: 14px;
}

.footer-bottom a {
    color: white;
}

.bottom-footer a:hover {
    color: white;
}


/* footer end */

/* faq start */

/* .faq-section {
    background: #121212;
} */

.faq-section .top-head {
    margin: unset;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
}

.accordion-button {
    background: white !important;
    border-radius: 8px;
    font-weight: 600;
    color: black !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-button:not(.collapsed) {
    background: var(--primary) !important;
    color: black !important;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: black !important;
}

.accordion-button .icon {
    margin-left: auto;
    transition: 0.3s;
}

.accordion-button:not(.collapsed) .icon {
    transform: rotate(180deg);
    color: black;
}

.accordion-body {
    border-radius: 0 0 8px 8px;
    color: black;
    background-color: white;
}

.accordion-header {
    background-color: white;

}

.accordion-item {
    background-color: white !important;
    border-bottom: 1px solid rgb(0, 0, 0) !important;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
}

.accordion-button::after {
    display: none;
}


.accordion-button:focus {
    box-shadow: none !important;
}

.form-control {

    border: 1px solid #2f2f2f !important;
}

/* faq end */

/* contact-strip start */
#contact-strip {
    background-color: var(--primary-red);
    color: white;
}

#contact-strip p {
    margin-bottom: 0;
}

#contact-strip h5 {
    font-size: 30px;
}

/* fixed-social icon */
.social {
    width: 200px;
    position: fixed;
    display: flex;
    flex-direction: column;
    top: 80%;
    right: -160px;
    border-radius: 10px;
    z-index: 10;
    box-sizing: border-box;
    transform: translateY(-50%);
}


.social a {
    padding: .5rem;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff !important;
    margin-top: 0.2rem;
    transition: all 0.5 ease;
    border-radius: 5px;
    margin-right: 5px;
}

.social a:hover {
    transform: translateX(-100px);
    transition: 0.5s;
}

.social a svg {
    width: 24px;
    height: 24px;
    margin-right: 1rem;
    color: white;
}

.social a i {
    margin-right: 1rem;
    color: white;
    font-size: 20px;
}

.social a.facebook {
    background-color: #1877F2;
}

.social a.instagram {
    background-color: #E4405F;
}

.social a.youtube {
    background-color: #CD201F;
}

.social a.phone {
    background-color: #ff8433;
}

.social a.linkedin {
    background-color: #0A66C2;
}

.social a.whatsapp {
    background-color: #13bd2f
}

/* fixed-left end */

/* partner-sec start */
.partner-sec .main-card {
    padding: 20px;
}


/* breadcrumb start */
#breadcrumb {
    background-image: linear-gradient(rgba(0, 0, 0, 0.466), rgba(0, 0, 0, 0.466)), url('img/breadcrumb.png');
    background-position: center;
    background-size: cover;
    padding-top: 300px;
    padding-bottom: 200px;
}

.breadcrumb {
    justify-content: center;
}

.breadcrumb-item.active {
    color: white !important;
    font-size: 18px;
    text-decoration: none;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: white !important;
}

.breadcrumb-item a {
    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: 0.5s;
}

.breadcrumb-item a:hover {
    color: var(--primary-red-hover);
}

#breadcrumb h2 {
    font-weight: 600;
    color: white !important;
    font-size: 60px;
    font-family: popins;
    text-align: center;
    border-bottom: 1px solid rgb(77, 77, 77);
}

/* breadcrumb end */


/* Contact-page start*/
.crs-contact-form {
    background: #ffffff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.crs-contact-form h3 {
    font-weight: 700;
    margin-bottom: 8px;
    color: #0d1b2a;
}

.crs-contact-form p {
    font-size: 16px;
    margin-bottom: 20px;
}

/* Inputs */
.crs-contact-form .form-control {
    border-radius: 4px;
    padding: 12px;
    border: 1px solid #e5e5e5;
    transition: 0.3s;
    font-size: 16px;
    font-weight: 500;
}

.crs-contact-form .form-control:focus {
    box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, .15);
}


.contact-page .top-head {
    margin: unset;
}

.contact-page .form-control:focus{
    box-shadow: none !important;
}

.contact-page .content {
    background: fixed;
    background-image: linear-gradient(rgba(255, 255, 255, 0.849), rgba(255, 255, 255, 0.822)), url(https://www.scdl.net/_next/image?url=%2Fapi%2Ffetch-media%2F870705a4-4134-4a78-899e-b7eb791c08fd&w=1200&q=75);
    background-size: cover;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    height: 100%;
    background-position: right;
    border-radius: 10px;

}

.contact-page .row-first .main-box .icon {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    margin-right: 15px;
    background: #e1e0df;
    position: relative;

}

.contact-page .row-first .main-box .icon i {
    color: var(--primary-red);
    z-index: 2;
    font-size: 20px;
}

.contact-page .main-box:hover .icon::after {
    height: 100%;
    width: 100%;
    border-radius: 50%;
}

.contact-page .main-box .icon::after {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    content: "";
    background-color: black;
    height: 0%;
    width: 0%;
    transition: 0.5s;
    border-radius: 50%;

}

.contact-page .main-box a {
    color: black;
}

/* Mobile spacing */
@media(max-width:768px) {
    .crs-contact-form {
        padding: 25px;
    }
}

/* Contact-page end */


/* branch-section start */
/* Section */
.branch-section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-title h2 {
    font-weight: 800;
    color: #dc3545;
}

/* Branch List */
.branch-list {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.branch-item {
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    margin-bottom: 10px;
    border: 1px solid #eee;
    font-size: 20px;
}

.branch-item:hover {
    background: #dc3545;
    color: #fff;
}

/* Map */
#map {
    height: 500px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}


/* branch-section end */

/* vision-sec start  */
#vision-sec {
    background-color: black;
    color: white !important;

}

#vision-sec h4 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 26px;
    font-weight: 400;
}

#vision-sec .icon-box {
    background-color: var(--primary-red);
    color: white;
    border-radius: 50%;
    display: flex;
    JUSTIFY-CONTENT: CENTER;
    align-items: center;
    height: 40px;
    width: 40px;
    flex-shrink: 0;
    margin-right: 15px;
}

#vision-sec .text {
    margin-bottom: 10px;
}

#vision-sec .contnt {
    padding: 20px;
}

#vision-sec .left p {
    font-size: 20px;
}

/* vision-sec end  */

/* error-section start */

.error-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.error-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 0, 0, 0.08);
    border-radius: 50%;
    top: -150px;
    right: -150px;
    filter: blur(80px);
}

.error-section::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
    filter: blur(80px);
}

.error-content {
    position: relative;
    z-index: 2;
}

.error-code {
    font-size: 180px;
    font-weight: 900;
    line-height: 1;
    color: #ff1e1e;
    text-shadow: 0 0 30px rgba(255, 0, 0, 0.3);
}

.error-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.error-text {
    color: #bdbdbd;
    max-width: 650px;
    margin: auto;
    font-size: 18px;
}

.btn-home {
    background: #ff1e1e;
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    margin-top: 30px;
    transition: .4s;
    font-weight: 600;
}

.btn-home:hover {
    background: #fff;
    color: #111;
}

.truck-icon {
    font-size: 90px;
    color: #ff1e1e;
    margin-bottom: 20px;
}

@media(max-width:768px) {
    .error-code {
        font-size: 110px;
    }

    .error-title {
        font-size: 30px;
    }
}

/* error-section end */

/* services-page start */
#services-page .squre-effect:hover img{
    transform: scale(1.1);
    transition: 0.8s;

}
#domestic-logistics{
    scroll-margin-top: 100px;
}
#warehouse-storage{
    scroll-margin-top: 100px;
}
#loading-unloading
{
    scroll-margin-top: 100px;
}
#vehicle-transportation
{
    scroll-margin-top: 100px;
}
#office-relocation
{
    scroll-margin-top: 100px;
}
#household-shifting
{
    scroll-margin-top: 100px;
}

/* services-page end */