/*=====================================
            GLOBAL
=====================================*/
body {
    font-family: 'Inter', sans-serif;
    /* background-color: #000000; */
    color: #000000;
    margin: 0;
    padding: 0;
}

/* Colors & Custom Buttons */
.text-custom-red {
    color: #dc0a25;
}
.btn-custom-red {
    background-color: #dc0a25;
    color: white;
    border-radius: 50px;
    font-weight: 700;
    padding: 10px 24px;
    border: none;
    font-size: 14px;
    transition: all 0.3s ease;
}
.btn-custom-red:hover {
    background-color: #b1081c;
    color: white;
}

/* Navbar Styling with Fixed Height */
.navbar-toggler{
    background-color: #b5061c;
}

/* --- Navbar Initial State (Top of the page) --- */
#mainNavbar {
    position: absolute; /* Shuruat me transparent layer ki tarah image ke upar rahega */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    /* background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%) !important; */
    padding: 20px 0;
    transition: all 0.4s ease-in-out; /* Smooth transition effect ke liye */
}

/* --- Navbar Scrolled State (Automatic Class via JS) --- */
#mainNavbar.scrolled {
    position: fixed; /* Scroll karte hi screen par fix ho jayega */
    background: #fff !important; /* Solid Dark Theme */
    backdrop-filter: blur(10px); /* Premium Glassmorphism blur effect */
    padding: 10px 0; /* Nav size chota ho jayega crisp feel ke liye */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); /* Niche halki shadow line */
    border-bottom: 1px solid rgba(220, 10, 37, 0.15); /* Sleek Red border line */
}

/* Logo Setup */
.logo-holder { display: flex; align-items: center; }
.site-icon { height: 45px; width: auto; object-fit: contain; }
.logo-holder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-icon {
    height: 45px;      /* Aap navbar ke hisab se height choti-badi kar sakte hain */
    width: auto;       /* Aspect ratio maintain rakhne ke liye */
    object-fit: contain;
}
.navbar {
    padding: 12px 0;
    background-color: #000000;
    height: 76px; /* Fixed height for calculations */
}
.brand-text h1 {
    font-size: 22px;
    color: #000000;;
    font-weight: 900;
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1.1;
}
.brand-text p {
    font-size: 11px;
    color: #a0a0a0;
    margin: 0;
}
.nav-link {
    color: #000000 !important;
    font-weight: 600;
    margin-right: 25px;
    font-size: 14px;
    position: relative;
}
.nav-link.active::after {
    content: '';
    position: absolute;
    width: 70%;
    height: 4px;
    background-color: #dc0a25;
    bottom: -10px;
    left: 15%;
}
/* --- Transparent Navbar Absolute Setup --- */
.fixed-top-merge {
    position: relative;
    top: 0;
    right: 0;
    left: 0;
    z-index: 10;
    background: #fff;
    /* background: linear-gradient(to bottom, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%) !important; */
    padding: 18px 0;
}
.logo-holder { display: flex; align-items: center; }
.site-icon { height: 45px; width: auto; object-fit: contain; }

/* --- Base Hero Setup --- */
.hero-section {
    position: relative;
    min-height: 100vh;
    background-color: #0d0d0d;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 80px;
}
.min-vh-custom {
    min-height: calc(100vh - 80px);
}

/* --- Advance Image Wrapper Layer --- */
.hero-image-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 62%;
    height: 100%;
    z-index: 1;
    /* CSS Clip path clip lagata hai jo left edge ko diagonal cut me badalta hai */
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-truck-img {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center left;
    background-size: cover;
    /* Blend Filters: Jo daylight ke extra saturation aur noise ko premium level pe metallic tone dega */
    filter: contrast(1.1) brightness(0.95) saturate(0.9);
}

/* Image ke upar dark layer jo right side ke elements ko zyada bhatkne nahi degi */
/* .image-dark-tint {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, rgba(0,0,0,0) 40%, rgba(13,13,13,0.95) 95%);
    pointer-events: none;
} */

/* --- Creative Tech Neon Divider Line --- */
.neon-divider-glow {
    position: absolute;
    top: 0;
    left: 42%;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #dc0a25, #ffffff, #dc0a25, transparent);
    transform: skewX(-9deg); /* Angle cut jo automatic image border ko chipayega */
    box-shadow: 0 0 20px rgba(220, 10, 37, 0.8), 0 0 40px rgba(220, 10, 37, 0.4);
    z-index: 2;
    opacity: 0.75;
}

/* --- Typography Content Layer --- */
.hero-content-area {
    position: relative;
    z-index: 3;
    padding-top: 30px;
}
.emergency-badge {
    background: linear-gradient(135deg, #dc0a25 0%, #910414 100%);
    color: white;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 11px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(220, 10, 37, 0.4);
    border: 1px solid rgba(255,255,255,0.1);
}
.animate-flicker {
    animation: pulseGlow 1.5s infinite;
}

.hero-title {
    color: #ffffff;
    font-size: clamp(38px, 5.5vw, 65px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -1.5px;
    margin-bottom: 18px;
    text-transform: uppercase;
}
.hero-subtitle {
    font-size: clamp(16px, 2.2vw, 24px);
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 22px;
    line-height: 1.2;
}
.features-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}
.features-list li {
    color: #ffffff;;
    font-size: clamp(14px, 1.6vw, 16px);
    font-weight: 500;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.features-list li i {
    color: #dc0a25;
    font-size: 18px;
    filter: drop-shadow(0 0 5px rgba(220,10,37,0.5));
}

/* Action Buttons Effects */
.action-btn {
    box-shadow: 0 5px 25px rgba(220, 10, 37, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(220, 10, 37, 0.6);
}
.view-btn {
    backdrop-filter: blur(5px);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}
.view-btn:hover {
    background: #ffffff;
    color: #000000 !important;
}

@keyframes pulseGlow {
    0% { opacity: 0.6; }
    50% { opacity: 1; filter: drop-shadow(0 0 8px #fff); }
    100% { opacity: 0.6; }
}

/* --- Responsive Layout for Mobile/Tablets --- */
@media (max-width: 991.98px) {
    .fixed-top-merge {
        position: relative;
        /* background-color: #0d0d0d !important; */
    }
    .hero-section, .min-vh-custom {
        min-height: auto;
        padding-top: 20px;
    }
    .hero-image-wrapper {
        width: 100%;
        clip-path: none;
        opacity: 0.25;
    }
    .image-dark-tint {
        background: linear-gradient(to bottom, rgba(13,13,13,0.8) 0%, #0d0d0d 100%);
    }
    .neon-divider-glow {
        display: none;
    }
    .text-layer {
        text-align: center;
        padding: 50px 15px;
    }
    .features-list {
        display: inline-block;
        text-align: left;
    }
}

/* Mobile View Setup */
@media (max-width: 991.98px) {
    .navbar {
        height: auto;
    }
    .hero-section {
        min-height: auto;
        background: linear-gradient(to bottom, rgba(0,0,0,0.95) 60%, rgba(0,0,0,0.6) 100%), 
                    url('images/hero.jpeg');
        text-align: center;
        padding: 50px 0;
    }
    .nav-link.active::after {
        display: none;
    }
    .features-list {
        display: inline-block;
        text-align: left;
    }
}

/*=====================================
            BUTTONS
=====================================*/

.btn-custom{

    background:#d90429;

    color:#ffffff;

    border:none;

    padding:14px 34px;

    border-radius:50px;

    font-weight:700;
}

.btn-custom:hover{

    background:#b00020;

    color:#ffffff;
}

/*=====================================
            Aboutabout-section py-5
=====================================*/
/* --- About Section Base Architecture --- */
.about-section {
    color: #000000;
    position: relative;
    overflow: hidden;
}

/* Typography & Heading Accent Line */
.about-title {
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.5px;
}
.title-line-accent {
    width: 80px;
    height: 4px;
    background-color: #dc0a25; /* Brand Red Color */
    border-radius: 4px;
}

.about-text {
    font-size: 16px;
    color: #000000; /* High contrast reading tone */
    line-height: 1.7;
}

/* --- Mini Highlights System --- */
.highlight-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: border-color 0.3s ease;
}
.highlight-item:hover {
    border-color: rgba(220, 10, 37, 0.3);
}
.highlight-icon {
    width: 45px;
    height: 45px;
    background: rgba(220, 10, 37, 0.1);
    color: #dc0a25;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.highlight-label {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
}
.highlight-desc {
    font-size: 13px;
    color: #888888;
    margin-bottom: 0;
}

/* ==========================================================================
   ADVANCED IMAGE FRAME EFFECTS (THE WOW FACTOR)
   ========================================================================== */
.about-image-wrapper {
    position: relative;
    padding: 20px;
    z-index: 1;
}

/* The Glow Frame that shifts behind the image on hover */
.about-glow-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 85%;
    height: 85%;
    border: 3px solid #dc0a25;
    border-radius: 20px;
    z-index: -1;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0.5;
}

/* Container for Image to wrap clipping masks properly */
.about-image-holder {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    transform: translate(20px, 20px); /* Pushes the image forward from the back glow line */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Floating Red Badge over Image Layer */
.experience-badge-floating {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: linear-gradient(135deg, #dc0a25 0%, #a30516 100%);
    padding: 15px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(220, 10, 37, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 2;
}
.exp-number {
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
}
.exp-text {
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

/* --- Active Hover Animations --- */
.about-image-wrapper:hover .about-glow-box {
    top: 30px;
    left: 30px;
    opacity: 1;
    box-shadow: 0 0 25px rgba(220, 10, 37, 0.4);
}

.about-image-wrapper:hover .about-image-holder {
    transform: translate(0px, 0px); /* Core picture matches up smoothly while glow shifts opposite */
}

.about-image-wrapper:hover .about-img {
    transform: scale(1.05); /* Slight magnification inside frame */
}

/* Responsive adjustment for small monitors / phones */
@media (max-width: 991.98px) {
    .about-image-wrapper {
        margin-top: 40px;
        padding: 10px;
    }
    .about-image-holder {
        transform: none;
    }
    .about-glow-box {
        display: none; /* Mobile screen templates par overlays avoid kiye jate hain elements overlaps bachane ke liye */
    }
    .about-title {
        text-align: center;
    }
    .title-line-accent {
        margin: 0 auto;
    }
}

/*=====================================
            Emergency Form
=====================================*/

.emergency-section{
    position:relative;
    background:url('../images/contact-bg.jpeg') center center/cover no-repeat;
    min-height:100vh;
    display:flex;
    align-items:center;
}

.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        rgba(0,0,0,0.80),
        rgba(10,10,10,0.88)
    );
}

.small-heading{
    color:#dc0a25;
    letter-spacing:3px;
    font-weight:700;
    text-transform:uppercase;
}

.glass-card{
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,0.15);
    padding:45px;
    border-radius:25px;
    box-shadow:0 20px 50px rgba(0,0,0,.35);
}

.glass-card label{
    color:#fff;
    margin-bottom:10px;
    font-weight:600;
}

.custom-input{
    background:rgba(255,255,255,.08)!important;
    border:1px solid rgba(255,255,255,.18)!important;
    color:#fff!important;
    padding:14px 18px;
    border-radius:12px;
}

.custom-input::placeholder{
    color:#ccc;
}

.custom-input:focus{
    box-shadow:none!important;
    border-color:#dc0a25!important;
    background:rgba(255,255,255,.12)!important;
}
.form-select.custom-input{
    background-color: rgba(255,255,255,0.08);
    color:#fff;
    border:1px solid #dc3545;
}

.form-select.custom-input option{
    background:#222;
    color:#fff;
}
.emergency-btn{
    background:#dc0a25;
    color:#fff;
    border:none;
    padding:16px 45px;
    border-radius:50px;
    font-weight:700;
    letter-spacing:1px;
    transition:.3s;
}

.emergency-btn:hover{
    background:#fff;
    color:#dc0a25;
    transform:translateY(-3px);
}
/*=====================================
            SERVICES
=====================================*/
.services-section {
    background-color: #080808; /* Rich dark background */
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* --- Premium Heading Design --- */
.small-badge {
    font-size: 18px;
    letter-spacing: 2px;
    display: inline-block;
}
.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    letter-spacing: -0.5px;
}
.title-line-animation {
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #dc0a25, #ffffff);
    border-radius: 10px;
    position: relative;
    margin-top: 15px;
}

/* --- Advance Service Cards Core Architecture --- */
.service-card-wrapper {
    position: relative;
    background: #111111; /* Solid premium metallic black */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px 30px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
}

/* Card inner alignment */
.service-card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* --- Icon Design & Effects --- */
.service-icon-box {
    width: 65px;
    height: 65px;
    background: rgba(220, 10, 37, 0.08); /* Soft red background blur */
    border: 1px solid rgba(220, 10, 37, 0.2);
    color: #dc0a25; /* Your custom brand red */
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

/* --- Card Typography --- */
.service-card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    transition: color 0.3s ease;
}
.service-card-text {
    font-size: 15px;
    color: #aaaaaa; /* High contrast text, easily readable */
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Read More Custom Link Style */
.card-arrow-link {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    opacity: 0.7;
}
.card-arrow-link i {
    transition: transform 0.3s ease;
}

/* ==========================================================================
   THE "WOW" HOVER EFFECTS EFFECTS
   ========================================================================== */

.service-card-wrapper:hover {
    transform: translateY(-8px); /* Card smoothly lifts up */
    border-color: rgba(220, 10, 37, 0.4);
    /* Neon Red Glow Backlight effect */
    box-shadow: 0 15px 35px rgba(220, 10, 37, 0.15), 0 5px 15px rgba(0, 0, 0, 0.5);
}

/* Hover par Icon completely shift aur fill hoga */
.service-card-wrapper:hover .service-icon-box {
    background: #dc0a25;
    color: #ffffff;
    transform: scale(1.05) rotate(3deg);
    box-shadow: 0 0 20px rgba(220, 10, 37, 0.4);
}

/* Hover par title text active brand color me badlega */
.service-card-wrapper:hover .service-card-title {
    color: #dc0a25;
}

/* Hover par button expand karke dynamic feel dega */
.service-card-wrapper:hover .card-arrow-link {
    opacity: 1;
    color: #dc0a25;
}
.service-card-wrapper:hover .card-arrow-link i {
    transform: translateX(6px); /* Arrow aage slide karega */
}

/* --- Custom Subtle Background Tech Lines to add texture --- */
.service-card-wrapper::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(220, 10, 37, 0.1) 0%, transparent 70%);
    z-index: -1;
    transition: all 0.4s ease;
}
.service-card-wrapper:hover::after {
    width: 160px;
    height: 160px;
}
/*=====================================
            GALLERY
=====================================*/

.gallery img{

    width:100%;

    height:320px;

    object-fit:cover;

    border-radius:25px;

    transition:.4s;
}

.gallery img:hover{

    transform:scale(1.04);
}

/*=====================================
            CTA SECTION
=====================================*/

    
    .emergency-call-section{
        background:#0f1117;
    }

    .emergency-box{
        background:#181c24;
        padding:50px;
        border-radius:25px;
        color:#fff;
        box-shadow:0 20px 50px rgba(0,0,0,.25);
    }

    .top-badge{
        background:#e60023;
        color:#fff;
        padding:8px 18px;
        border-radius:50px;
        font-size:13px;
        font-weight:700;
        letter-spacing:2px;
    }

    .main-title{
        font-size:42px;
        font-weight:800;
        margin:25px 0 15px;
    }

    .phone-number{
        display:block;
        color:#dc0a25;
        font-size:52px;
        font-weight:900;
        text-decoration:none;
    }

    .divider{
        width:80px;
        height:4px;
        background:#dc0a25;
        margin:25px 0;
        border-radius:20px;
    }

    .contact-info p{
        color:#ddd;
        margin-bottom:16px;
        font-size:17px;
    }

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

    .tagline{
        font-size:22px;
        color:#fff;
        margin:35px 0;
        font-weight:600;
    }

    .emergency-btn{
        display:inline-block;
        background:#dc0a25;
        color:#fff;
        padding:16px 34px;
        border-radius:50px;
        text-decoration:none;
        font-weight:700;
        transition:.3s;
    }

    .emergency-btn:hover{
        background:#fff;
        color:#dc0a25;
    }

    .map-box{
        overflow:hidden;
        border-radius:25px;
        min-height:100%;
        box-shadow:0 20px 50px rgba(0,0,0,.25);
    }

    .map-box iframe{
        width:100%;
        height:100%;
        min-height:520px;
        border:0;
        filter:grayscale(10%);
    }

    @media(max-width:768px){

    .main-title{
        font-size:32px;
    }

    .phone-number{
        font-size:38px;
    }

    .emergency-box{
        padding:35px;
    }

    }

/*=====================================
            FOOTER
=====================================*/

footer{

    background:#080808;

    padding:30px;

    text-align:center;

    color:#999999;
}