
    body, html {
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            overflow-x: hidden;
        }

        /* --- Navbar --- */
        .custom-navbar {
            background: rgba(0, 0, 0, 0.15);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding: 18px 0;
            transition: background 0.3s;
        }

        .logo-img { height: 60px; }

        .nav-link {
            font-size: 13px;
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 1px;
            margin: 0 12px;
            color: rgba(255,255,255,0.9) !important;
        }


        /* --- Desktop Mega Menu --- */
@media (min-width: 992px) {
   .has-megamenu { position: static; }
    
    .megamenu {
        width: 100%;
        left: 0;
        right: 0;
        top: 100%;
        background: #fff !important;
        visibility: hidden; /* display:none ki jagah visibility use karein */
        opacity: 0;
        display: block !important; 
        transition: all 0.3s ease;
        pointer-events: none; /* Jab band ho toh click na ho */
    }

    .has-megamenu.show .megamenu {
        visibility: visible;
        opacity: 1;
        pointer-events: auto; /* Ab links click honge */
        transform: translateY(0);
    }
    /* Standard Hover for Projects */
    .nav-item.dropdown:hover > .dropdown-menu {
        display: block;
    }
    
    .dropend:hover > .dropdown-menu {
        display: block;
        position: absolute;
        left: 100%;
        top: 0;
    }
}

.mega-list-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    font-weight: 500;
    transition: 0.2s;
}

.mega-list-link:hover { color: #ff0000; padding-left: 5px; }

/* Social Icons in Menu */
.social-icon {
    width: 35px;
    height: 35px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    transition: 0.3s;
}
.social-icon:hover { background: #ff0000; color: #fff; border-color: #ff0000; }

/* Video Preview UI */
.video-preview-card { overflow: hidden; cursor: pointer;}
.play-btn-mini {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ff0000;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Mobile Styling --- */
.offcanvas { width: 85% !important; }
.accordion-button:not(.collapsed) { background: transparent; color: #ff0000; }

@keyframes slideDown {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Progress Bar */
.scroll-progress-container {
    position: fixed;
    top: 0;
    z-index: 2000;
    width: 100%;
    height: 4px;
    background: transparent;
}

.scroll-progress-bar {
    height: 4px;
    background: #ff0000;
    width: 0%;
}

/* Scrolled Navbar Style */
.custom-navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.custom-navbar.scrolled .nav-link, 
.custom-navbar.scrolled .navbar-brand h4,
.custom-navbar.scrolled .d-lg-flex {
    color: #333 !important;
}

.custom-navbar.scrolled .navbar-toggler-icon {
    filter: invert(1);
}

/* Nav Link Effects */
.hover-underline {
    position: relative;
}

.hover-underline::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #ff0000;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.hover-underline:hover::after {
    width: 80%;
}

/* Megamenu override - Click instead of Hover handled via JS */
@media (min-width: 992px) {
    .has-megamenu:hover .megamenu {
        display: none; /* Disable hover */
    }
    .has-megamenu.show .megamenu {
        display: block; /* Show on click class */
        animation: fadeInDown 0.4s ease forwards;
    }
}

.mobile-link {
    display: block;
    padding: 10px 0;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}



/* Scrolled Navbar mein logo size maintain karne ke liye */
.custom-navbar.scrolled .logo-img {
    height: 60px; /* Thoda chota scroll hone par */
 /* Agar logo white hai toh use black karne ke liye */
}
        /* --- Hero Section --- */
        .hero-section {
            position: relative;
            height: 100vh;
            width: 100%;
            background: #000;
        }

        #heroVideoCarousel, .carousel-inner, .carousel-item {
            height: 100vh;
        }

        .hero-video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translate(-50%, -50%);
            object-fit: cover;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(75deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
            z-index: 1;
        }

        /* --- Content --- */
        .hero-content {
            position: absolute;
            top: 45%;
            left: 5%;
            z-index: 10;
            pointer-events: none; /* Allows clicks to pass through to footer if needed */
        }
        
        .hero-content * { pointer-events: auto; }

        .display-3 {
            font-size: clamp(2rem, 5vw, 4rem);
            line-height: 1.1;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
        }

        .custom-btn {
            background-color: #ff0000;
            border: none;
            padding: 12px 45px;
            font-size: 14px;
            letter-spacing: 1px;
            transition: 0.3s ease;
        }

        .custom-btn:hover {
            background-color: #d10000;
            transform: translateY(-2px);
        }

        /* --- Hero Footer --- */
        .hero-footer {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            z-index: 15;
            padding-bottom: 20px;
        }

        .footer-nav-item {
            cursor: pointer;
            position: relative;
            padding-top: 15px;
            border-top: 1px solid rgba(255,255,255,0.3);
            transition: all 0.4s ease;
            opacity: 0.5;
        }

        .footer-nav-item.active {
            opacity: 1;
            border-top: 2px solid #ff0000;
        }

        .footer-nav-item small { font-size: 11px; letter-spacing: 1px; }
        .footer-nav-item span { font-size: 14px; display: block; }

        /* --- Responsive --- */
        @media (max-width: 991px) {
            .hero-content { left: 0; text-align: center; width: 100%; padding: 20px; }
            .custom-navbar { background: #000; padding: 10px 0; }
        }





/* --- Base Styles --- */
.sector-section {
    background: #000;
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.video-bg-container {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.video-bg-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-bg-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}

.project-info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    position: relative;
    z-index: 2;
    padding: 3rem;
}

/* Tabs Styling */
.sector-tab {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    padding-bottom: 10px;
    position: relative;
    transition: 0.3s;
    font-size: 14px;
}

.sector-tab.active {
    color: #ff0000;
}

.sector-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ff0000;
}

/* Thumbnail Box Styling */
.thumb-box {
    position: relative;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    height: 120px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.4s ease;
}

.thumb-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    display: flex;
    align-items: flex-end;
    padding: 12px;
}

.thumb-title {
    font-size: 11px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
}

/* --- MOBILE RESPONSIVE (Fixing Overlap & Layout) --- */
@media (max-width: 991px) {
    .sector-section {
        height: auto !important; /* Height auto ki taaki content overlap na ho */
        padding-top: 100px;
        padding-bottom: 50px;
    }

    .project-info-card {
        padding: 25px !important;
        margin-bottom: 40px; /* Card aur tabs ke beech gap */
    }

    /* Tabs ko Grid banaya: 2 Tabs per row */
    .sector-nav-container {
        position: relative !important; /* Screen bottom se hatakar section mein rakha */
        width: 100%;
        background: transparent;
        padding: 0 15px !important;
    }

    .sector-nav-container .d-flex {
        display: grid !important;
        grid-template-columns: 1fr 1fr; /* 2 column grid */
        gap: 20px;
        text-align: center;
    }

    .sector-tab {
        font-size: 12px;
        padding-bottom: 5px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
}

@media (max-width: 576px) {
    .thumb-box {
        height: 100px;
    }
    #projectTitle {
        font-size: 1.6rem;
    }
}







.services-section {
    position: relative;
    min-height: 100vh;
    background: #000;
    color: #fff;
    overflow: hidden;
}

.services-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.services-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.9) 100%);
}

.section-title {
    font-weight: 800;
    letter-spacing: 3px;
    font-size: 2.5rem;
}

/* Tabs Styling */
.services-tabs-nav .nav-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.s-tab {
    padding: 12px 30px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    transition: 0.4s;
    color: #bbb;
}

.s-tab.active {
    background: #ff0000;
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}

/* Content Pane Logic */
.service-pane {
    display: none;
    animation: fadeInUp 0.5s ease forwards;
}

.service-pane.active {
    display: block;
}

/* Glass Inner Cards */
.service-inner-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 25px;
    border-radius: 20px;
    height: 100%;
    transition: 0.3s;
}

.service-inner-card:hover {
    border-color: #ff0000;
    transform: translateY(-5px);
}

.service-inner-card h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 15px;
    border-left: 3px solid #ff0000;
    padding-left: 10px;
}

.service-inner-card ul {
    list-style: none;
    padding: 0;
    font-size: 13px;
    line-height: 1.8;
}

.service-inner-card ul li::before {
    content: "•";
    color: #ff0000;
    font-weight: bold;
    margin-right: 8px;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .services-tabs-nav .nav-wrapper {
        border-radius: 15px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .s-tab {
        padding: 10px;
        font-size: 12px;
        text-align: center;
    }
    .s-tab:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 576px) {
    .section-title { font-size: 1.8rem; }
    .service-inner-card { padding: 15px; }
}



/* --- Sustainability Base --- */
.sustainability-section {
    position: relative;
    background: #000;
}

/* Cinematic Video Overlay with Parallax Effect */
.esg-video-container {
    position: absolute; /* fixed ko absolute se replace kiya */
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.esg-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.esg-overlay {
    position: absolute;
    inset: 0;
    /* radial glow effect */
    background: radial-gradient(circle at center, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
}

.esg-content-wrapper {
    position: relative;
    z-index: 10;
}

/* Responsive Typography */
.esg-title {
    font-size: clamp(2.2rem, 6vw, 4rem); /* Chota mobile p bada desktop p */
    letter-spacing: 2px;
}
.esg-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.8rem);
    opacity: 0.8;
}

/* Glassmorphism Card Core */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.5s ease;
    overflow: hidden;
}

.card-img-top {
    height: 180px; /* Bada responsive height */
    object-fit: cover;
    padding: 15px 15px 0 15px; /* Thoda gap image ke around */
}

/* Card Body spacing mobile fix */
.glass-card .card-body {
    min-height: 180px; /* Text alignment same rakhne p */
}

.card-text-white-70 {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
}

/* Read Policy button style from your branding */
.btn-text-danger {
    color: #ff0000;
    text-decoration: none;
    transition: color 0.3s;
}
.btn-text-danger:hover {
    color: #fff;
}

/* Interactions */
.hover-grow:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 0, 0, 0.3); /* Company Red border glow */
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
}

/* --- MOBILE & TABLET RESPONSIVE (CRITICAL FIX) --- */
@media (max-width: 991px) {
    .sustainability-section {
        height: auto !important; /* height vh-100 hata di */
        padding-top: 120px; /* Section start space */
        padding-bottom: 50px;
    }

    .esg-title { text-align: center; }
    .esg-subtitle { text-align: center; margin-bottom: 3rem !important; }

    /* Cards stack horizontally and have space */
    .glass-card {
        margin: 15px auto;
        max-width: 450px; /* Kaafi badi mobile p */
    }
}

@media (max-width: 576px) {
    .glass-card .card-body {
        padding: 20px !important;
    }
    .card-img-top {
        height: 140px;
    }
}





.ditto-grid-section {
    position: relative;
    min-height: 100vh;
    background: #000;
}

.bg-video-main {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.7; /* Branded dimming */
}

/* Custom Row for exactditto alignment */
.masonry-row {
    display: flex;
    gap: 24px;
}

.col-left { width: 35%; } /* Exact balance as image */
.col-right-wrapper { width: 65%; }

/* Glass Card Core Style */
.glass-card-wison {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 25px;
    color: #fff;
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.glass-card-wison:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.12);
}

/* Newsroom (Long Column) specific */
.news-row {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.news-thumb {
    width: 100px;
    height: 65px;
    border-radius: 6px;
    object-fit: cover;
}
.news-text a {
    font-size: 0.85rem;
    margin-bottom: 4px;
    line-height: 1.3;
    text-decoration: none;
    color: #fff;

}
.news-date {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
}

/* Image Cards scaling */
.img-card, .career-card { height: 260px; padding: 0; }
.career-card img { transition: 0.5s; }
.career-card:hover img { transform: scale(1.05); }

/* Overlays Dittoo position */
.title-overlay {
    position: absolute;
    top: 25px; left: 25px;
    font-weight: 700;
}
.text-overlay {
    position: absolute;
    bottom: 25px; left: 25px;
}

/* Resources scaling */
.res-box { text-align: center; }
.res-box img { width: 110px; border-radius: 6px; margin-bottom: 8px; }

.learn-more-wison { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.8rem; text-transform: uppercase; }
.learn-more-wison:hover { color: #fff; }

/* Responsive Ditto Fix */
@media (max-width: 991px) {
    .masonry-row { flex-direction: column; }
    .col-left, .col-right-wrapper { width: 100%; }
}
@media (max-width: 576px) {
    .columnn { flex-direction: column; }
}



/* Container Fixes */
.ditto-grid-section {
    position: relative;
    overflow: hidden;
    background: #000;
}

.bg-video-main {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%; min-height: 100%;
    z-index: 0;
    object-fit: cover;
    opacity: 0.5; /* Proper contrast for text */
}

/* Custom Flex Grid */
.masonry-row {
    display: flex;
    gap: 24px;
    width: 100%;
}

.col-left { width: 33.33%; }
.col-right-wrapper { width: 66.66%; }

/* Glass Cards */
.glass-card-wison {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    color: #fff;
    transition: all 0.4s ease;
}

.news-row {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.news-thumb {
    width: 90px; height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.news-text p {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Overlays */
.title-overlay {
    position: absolute;
    top: 30px; left: 30px;
    font-size: 1.25rem;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.text-overlay {
    position: absolute;
    bottom: 30px; left: 30px;
}

.res-box img {
    width: 120px; height: 160px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.learn-more-wison {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 991px) {
    .masonry-row { flex-direction: column; }
    .col-left, .col-right-wrapper { width: 100%; }
    .img-card, .career-card { min-height: 250px; }
}




.premium-footer {
    background: #001F3F;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-family: 'Inter', sans-serif;
}

.footer-logo {
    font-weight: 800;
    letter-spacing: -1px;
    font-size: 1.8rem;
}

.footer-logo span {
    color: #ff3c3c; /* Red accent for luxury feel */
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: #ff3c3c;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ff3c3c;
    padding-left: 8px;
}

/* Social Icons Glass Effect */
.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transition: 0.4s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.social-icons a:hover {
    background: #ff3c3c;
    border-color: #ff3c3c;
    transform: translateY(-5px);
}

/* Location Styling */
.contact-info p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
}

.office-tag {
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-hr {
    background-color: rgba(255, 255, 255, 0.05);
    opacity: 1;
}

.copyright {
    font-size: 0.85rem;
    color: #fff;
}

/* Responsive Footer */
@media (max-width: 768px) {
    /*.premium-footer {
        text-align: center;
    }*/
    /*.footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }*/
   /* .social-icons {
        justify-content: center;
    }*/
    /*.regional-offices {
        justify-content: center;
    }*/
}





/* --- Cinematic Breadcrumb Section --- */
.contact-breadcrumb-area {
    position: relative;
    padding: 180px 0 100px 0; /* Navbar ke liye space */
    background-color: #000;
    background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070&auto=format&fit=crop'); 
    background-size: cover;
    background-position: center center;
    background-attachment: fixed; /* Parallax effect ke liye */
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Base Dark Overlay */
.breadcrumb-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

/* Bottom Smooth Blend - Ye niche ka gap khatam kar dega */
.breadcrumb-bottom-shade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, #000 0%, transparent 100%);
    z-index: 2;
}

.contact-breadcrumb-area .container {
    z-index: 3;
}

/* Typography Styling */
.breadcrumb-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.1;
    margin-top: 10px;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.breadcrumb-subtitle {
    font-size: 1.1rem;
    max-width: 500px;
}

/* Breadcrumb Navigation */
.breadcrumb-item, .breadcrumb-item a {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    transition: 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #ff0000;
}

.breadcrumb-item.active {
    color: #ff0000 !important;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.3);
    content: "|"; /* Slash ki jagah Pipe symbol for premium feel */
    font-weight: 300;
}

/* Icon Box for Desktop */
.breadcrumb-icon-box {
    font-size: 4rem;
    opacity: 0.2;
    transform: rotate(-15deg);
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
    .contact-breadcrumb-area {
        padding: 140px 0 70px 0;
    }
}

@media (max-width: 767px) {
    .contact-breadcrumb-area {
        text-align: center;
        padding: 120px 0 60px 0;
    }
    .breadcrumb {
        justify-content: center;
    }
    .breadcrumb-subtitle {
        margin: 10px auto;
    }
}


/*contact page */
:root {
    --primary-red: #ff0000;
    --deep-dark: #0a1128;
    --soft-bg: #f8f9fa;
}

/* Contact Wrapper Styles */
.contact-form-wrapper {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.05);
}

.custom-input {
    background: #f1f3f5;
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 14px 20px;
    font-weight: 500;
    transition: 0.3s;
}

.custom-input:focus {
    background: #fff;
    border-color: var(--primary-red);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.05);
    outline: none;
}

/* Red Button Style */
.btn-modern-red {
    background: var(--primary-red);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: 0.4s;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
}

.btn-modern-red:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 0, 0, 0.4);
    filter: brightness(1.1);
}

/* HQ Dark Card */
.hq-card {
    background: var(--deep-dark);
    border-radius: 24px;
    color: white;
}

.social-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.social-circle:hover {
    background: var(--primary-red);
    transform: scale(1.1);
}

/* Office Cards */
.office-card {
    background: white;
    border-radius: 20px;
    transition: 0.4s;
    border-top: 4px solid transparent;
}

.office-card:hover {
    transform: translateY(-10px);
    border-top-color: var(--primary-red);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
}

.letter-spacing-2 { letter-spacing: 2px; }




/*career page */
.careers-hero {
    background: linear-gradient(135deg, #fff 60%, #fff5f5 100%);
}

.careers-image-wrapper {
    position: relative;
    border: 1px solid rgba(255, 0, 0, 0.1);
    border-radius: 30px;
}

.red-line {
    width: 60px;
    height: 4px;
    background: #ff0000;
    margin-top: 15px;
}

#commitment .glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid #dee2e6;
}

.job-card {
    background: #ffffff;
    border-radius: 18px;
    transition: 0.3s all ease;
}

.job-card:hover {
    transform: translateX(10px);
    border-color: #ff0000 !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important;
}

.job-icon-box {
    width: 50px;
    height: 50px;
    background: #fff5f5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.btn-modern-red {
    background: #ff0000;
    color: white;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.2);
    transition: 0.3s;
}

.btn-modern-red:hover {
    background: #d40000;
    transform: translateY(-2px);
}





/*job page */
/* Light Theme Card for Job Details */
.glass-card-light {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid #dee2e6;
    border-radius: 20px;
    padding: 30px;
    color: #333;
    transition: 0.4s ease;
    overflow: hidden;
    position: relative;
}

/* Application Form - Miatharv branding */
/*.glass-card-wison {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
}*/

.custom-input {
    background: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 14px 18px;
    color: #333;
    transition: 0.3s all;
}

.custom-input:focus {
    background: #fff;
    border-color: #ff0000;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.05);
    color: #000;
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .display-4 { font-size: 2.2rem; }
    /*.job-content-section { text-align: center; }*/
    /*.job-description .d-flex { justify-content: center; }*/
    .glass-card-wison { margin-top: 40px; }
}




/*QHSE page */
/* QHSE Specific Breadcrumb Background */
.qhse-breadcrumb-bg {
    background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=2070') !important;
    background-position: center;
}

/* QHSE Pillar Cards */
.qhse-card {
    border-radius: 20px;
    transition: 0.4s ease;
    border: 1px solid #f1f1f1;
}

.qhse-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
}

/* Icon Box Styling */
.qhse-icon-box {
    width: 60px;
    height: 60px;
    background: #fff5f5;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.qhse-card.bg-dark .qhse-icon-box {
    background: #ff0000; /* Safety box highlight */
}

/* Utility Class */
.letter-spacing-2 {
    letter-spacing: 2px;
}

.QHSE p{
  text-align: justify;
}




/*Ongoing Page*/
/* Project Breadcrumb Background */
.projects-breadcrumb-bg {
    background-image: url('https://i.pinimg.com/1200x/06/36/e9/0636e92f17434db8b86577093ab40460.jpg') !important;
    background-position: center;
    background-size: cover;
}

/* Image Wrapper with Status Badge */
.project-main-img-wrapper {
    position: relative;
    padding: 15px;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.status-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: #ff0000;
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    z-index: 5;
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
}

.specs-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    z-index: 5;
}

/* Scrollable Scope List for long content */
.scope-list {
    max-height: 450px;
    overflow-y: auto;
    padding-right: 15px;
}

/* Custom Scrollbar */
.scroll-custom::-webkit-scrollbar {
    width: 4px;
}
.scroll-custom::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.scroll-custom::-webkit-scrollbar-thumb {
    background: #ff0000;
    border-radius: 10px;
}

/* Disclaimer Styling */
.disclaimer-box {
    border-style: dashed !important;
    background-color: #fdfdfd !important;
}

/* Responsive */
@media (max-width: 991px) {
    .project-main-img-wrapper { margin-bottom: 40px; }
    .specs-card { position: relative; bottom: 0; left: 0; margin-top: 20px; }
}




.related-card {
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.related-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12) !important;
    border-color: #ff0000;
}

.card-img-box {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.related-card:hover .card-img-box img {
    transform: scale(1.1);
}

.card-tag {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
}

.mini-stats-grid {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.m-stat {
    background: #fff5f5;
    border-radius: 10px;
    padding: 8px 12px;
    flex: 1;
    text-align: center;
}

.m-stat strong {
    display: block;
    color: #ff0000;
    font-size: 14px;
}

.m-stat small {
    font-size: 10px;
    color: #666;
    text-transform: uppercase;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more-btn {
    letter-spacing: 1px;
    transition: 0.3s;
}

.read-more-btn:hover {
    padding-left: 8px;
    color: #000 !important;
}


/* Landmark Section Core Styling */
.landmark-section .red-line {
    width: 50px;
    height: 3px;
    background: #ff0000;
    margin-top: 15px;
}

.landmark-card {
    border-radius: 24px;
    overflow: hidden;
    height: 380px;
    position: relative;
    cursor: pointer;
    border: none;
}

.landmark-img-wrapper {
    width: 100%;
    height: 100%;
}

.landmark-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Glass Overlay Effect */
.landmark-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 10%, rgba(0,0,0,0.2) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 35px;
    transition: 0.4s ease;
}

.landmark-content {
    color: #fff;
    transform: translateY(40px);
    transition: 0.5s ease;
}

.landmark-icon {
    font-size: 2.5rem;
    color: #ff0000;
    margin-bottom: 15px;
    opacity: 0;
    transition: 0.4s;
}

.landmark-link {
    color: #ff0000;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transition: 0.4s;
}

/* Hover Effects */
.landmark-card:hover .landmark-img-wrapper img {
    transform: scale(1.15);
}

.landmark-card:hover .landmark-content {
    transform: translateY(0);
}

.landmark-card:hover .landmark-icon, 
.landmark-card:hover .landmark-link {
    opacity: 1;
}

.landmark-card:hover .landmark-overlay {
    background: linear-gradient(to top, rgba(255,0,0,0.3) 0%, rgba(0,0,0,0.8) 80%);
}

/* Responsive */
@media (max-width: 991px) {
    .landmark-card { height: 320px; }
}