:root {
    --primary-yellow: #e6b12d;
    --dark-bg: #161b22;
    --dark-section: #0d1117;
}

body { font-family: 'Inter', sans-serif; overflow-x: hidden; color: #333; }
h1{
    font-family: 'Raleway';
}

/* Preloader Main Overlay home page*/
#site-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #0c1a30; /* Premium Dark Blue theme background */
    z-index: 99999; /* Sabse upar rakhne ke liye */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
}

/* Loader Content Align */
.loader-content {
    text-align: center;
}

/* Construction Icon Styling */
.construction-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.helmet-icon {
    font-size: 4rem;
    color: #ffb703; /* Construction Yellow/Warning Color */
    animation: bounceHelmet 2s infinite ease-in-out;
}

/* Building Blocks Animation Effect */
.building-bars {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 15px;
}

.building-bars span {
    width: 8px;
    background: #ffffff;
    border-radius: 4px;
    animation: growBars 1.5s infinite ease-in-out;
}

.building-bars .bar1 { height: 20px; animation-delay: 0.1s; }
.building-bars .bar2 { height: 35px; animation-delay: 0.3s; }
.building-bars .bar3 { height: 25px; animation-delay: 0.5s; }

/* Text Animations */
.loader-text {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin: 10px 0 5px 0;
}

.loader-subtext {
    color: #a0aec0;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Premium Progress Line */
.progress-line {
    width: 150px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    margin: 15px auto 0 auto;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.progress-line::after {
    content: '';
    position: absolute;
    left: -50%;
    width: 50%;
    height: 100%;
    background: #ffb703;
    animation: loadingBar 1.5s infinite linear;
}

/* Keyframes for Smooth Animations */
@keyframes bounceHelmet {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

@keyframes growBars {
    0%, 100% { transform: scaleY(0.3); background-color: #ffb703; }
    50% { transform: scaleY(1); background-color: #ffffff; }
}

@keyframes loadingBar {
    0% { left: -50%; }
    100% { left: 100%; }
}

/* Jab website load ho jayegi toh ye class hum JS se lagayenge */
#site-preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

/* --- Navbar & Top Bar --- */
.header-top {
    padding: 3px !important;
}
.navbar-brand {
    padding-left: 5px;
    margin-top: 1px;
}
.navbar-brand img{
    width: 152px;
    height: 55px;
}
.footer-brand img{
    width: 200px;
    height: 100px;
}
h6,h5{
        font-size: 24px !important; 
    }
.navbar { background-color: var(--dark-bg); padding: 15px 0; }
.logo-box { width: 35px; height: 35px; background: var(--primary-yellow); border-radius: 4px; }
.logo-text { color: white; font-weight: 800; line-height: 1; font-size: 1.1rem; }
.btn-quote {background: #21262d8c;color: #fff;border: 1px solid #30363d;font-weight: 600;padding: 10px 20px;transition: 0.3s;border-radius: 0;}
.btn-quote:hover { background: var(--primary-yellow); color: #000; }

/* --- Modern Navbar Styling --- */
/* Navbar ka smooth behavior maintain karne ke liye */
/* 1. Normal State (Jab page bilkul upar ho - Transparent) */
.modern-nav {
    width: 100%;
    position: fixed;
    top: 0;
    background: transparent; /* !important hata diya taaki scrolled class isko override kar sake */
    backdrop-filter: blur(0px);
    padding: 15px 0; /* Shuruat mein thoda padding achha lagta hai */
    transition: transform 0.4s ease-in-out, background-color 0.3s ease, padding 0.3s ease;
    z-index: 1050;
}

/* 2. Sticky/Scrolled State (Jab user niche scroll karega - Solid Blue) */
.modern-nav.scrolled {
    background-color: #1e293b !important; /* Yahan apna exact Blue Hex code daal dena */
    padding: 0px 0px; /* Niche scroll hone par nav thoda patla (sleek) ho jayega */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Halka sa shadow premium look ke liye */
}

/* 3. Smart Hide Logic (Jo pehle kiya tha - Niche scroll par hide) */
.modern-nav.nav-hidden {
    transform: translateY(-100%);
}
.sticky-logo{
    display: none;
}
.modern-nav.scrolled .sticky-logo{
    display: block;
}
.modern-nav.scrolled .main-logo{
    display: none;
}
/* Nav Links Hover Effect */
.modern-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
    padding: 10px 15px !important;
    position: relative;
    transition: 0.3s;
}

.modern-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 15px;
    background: var(--primary-yellow);
    transition: 0.3s;
}

.modern-nav .nav-link:hover::after,
.modern-nav .nav-link.active::after {
    width: calc(100% - 30px);
}

.modern-nav .nav-link:hover {
    color: var(--primary-yellow) !important;
}

/* Dropdown Menu Styling */
.dropdown-menu {
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid var(--primary-yellow);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    padding: 10px 0;
    border-radius: 0 0 8px 8px;
}

.dropdown-item {
    color: rgba(255,255,255,0.8) !important;
    padding: 10px 25px;
    font-size: 0.9rem;
    transition: 0.3s;
}

.dropdown-item:hover {
    background: rgba(230, 177, 45, 0.1);
    color: var(--primary-yellow) !important;
    padding-left: 30px; /* Slide effect on hover */
}
/* Bootstrap ka default arrow hide karein */
.dropdown-toggle::after {
    display: none !important;
}

/* Custom Arrow Design */
.dropdown-arrow {
    font-size: 0.75rem; /* Chota aur clean look */
    transition: transform 0.3s ease;
    color: inherit;
    opacity: 0.8;
}

/* Dropdown khulne par arrow rotate ho jaye */
.dropdown:hover .dropdown-arrow,
.dropdown.show .dropdown-arrow {
    transform: rotate(180deg);
    color: var(--primary-yellow);
}
/* --- Dropdown Hover Fix --- */
@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0; /* Smooth alignment */
        opacity: 1;
        visibility: visible;
        animation: fadeInUp 0.3s ease-in-out;
    }
}

/* Optional Animation for smooth entrance */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Desktop par spacing fix */
@media (min-width: 992px) {
    .modern-nav .nav-link {
        display: flex;
        align-items: center;
        gap: 8px; /* Text aur arrow ke beech ka gap */
    }
}

/* Mobile par arrow ko right side mein push karne ke liye */
@media (max-width: 991px) {
    .dropdown-toggle {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}
/* Quote Button Styling */
.btn-quote {
    border-radius: 4px;
    transition: 0.3s;
    border: 2px solid transparent;
}

.btn-quote:hover {
    background: transparent;
    border-color: var(--primary-yellow);
    color: var(--primary-yellow) !important;
    transform: translateY(-2px);
}

/* --- Responsive Toggle (Burger Icon Custom) --- */
.custom-toggler { border: none; padding: 0; }
.toggler-icon {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    margin: 6px 0;
    transition: 0.3s;
}

/* --- Slider --- */
/* --- Modern Hero Slider --- */
.hero-slider {
    position: relative;
    height: 90vh;
    background: #000;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: visibility 0s 1s, opacity 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    transition: visibility 0s 0s, opacity 1s ease-in-out;
    z-index: 2;
}

/* Background Ken Burns Effect (Zoom) */
.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 8s linear;
    transform: scale(1);
    opacity: 0.8;
}
.slide.active .slide-bg {
    transform: scale(1.15); /* Zoom effect start */
}

/* Hero Content Animations */
.hero-video-wrapper {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    background: #000; /* Background black rakhein taaki koi flickering na ho */
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    z-index: 1;
    
    /* Chrome/Edge ke glitch aur lag ko fix karne ke liye performance boosters: */
    will-change: opacity;
    backface-visibility: hidden;
}

/* Jo video active hogi sirf wahi dikhegi */
.hero-bg-video.active {
    opacity: 1;
    z-index: 2;
}

/* Active Slide Text Animation Trigger */
.slide.active .hero-badge { animation: fadeInUp 0.8s forwards 0.3s; }
.slide.active .hero-title { animation: fadeInUp 0.8s forwards 0.5s; }
.slide.active .hero-desc { animation: fadeInUp 0.8s forwards 0.7s; }
.slide.active .hero-btns { animation: fadeInUp 0.8s forwards 0.9s; }

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Controls & Progress */
.carousel-item {
    position: absolute;
    top: 0;
}

/* --- About Section --- */
.experience-badge { position: absolute; bottom: -20px; right: 20px; background: var(--primary-yellow); padding: 25px 35px; text-align: center; z-index: 2; }
section.about-section .experience-badge {
    background: #e6b12d !important;
}
.experience-badge h2 { font-weight: 800; font-size: 3.5rem; margin: 0; }
.call-icon-circle { width: 50px; height: 50px; border: 2px solid var(--primary-yellow); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary-yellow); }
.call-icon-circle:hover {
    background: #ffc107;
    color: #000;
}

/* --- Checkered Feature Bar Section --- */

/* Defining backgrounds based on image colors */
section.features-checkered-bar.py-0 {
    margin-top: 100vh;
}
.dark-blue-bg { background-color: #1e293b; } /* Deep dark blue/black */
.primary-yellow-bg { background-color: #e6b12d; } /* Main brand yellow */

.feature-item {
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

/* Feature Icon Style (Yellow on Dark) */
.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    border: 2px dotted rgba(230, 177, 45, 0.4); /* Faint dotted yellow */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

/* Dark Icon Style (Dark on Yellow) */
.feature-icon-wrapper.bordered-dark {
    border: 2px dotted rgba(0, 0, 0, 0.4); /* Faint dotted dark */
}

/* Feature Text Control */
.feature-text-content {
    max-width: 250px;
	text-align: left !important;
}

/* --- Attractive Interactions & Hovers --- */
.feature-item:hover {
    cursor: pointer;
}

/* Hover effects for Dark sections */
.dark-blue-bg:hover {
    background-color: #1a1d24; /* Subtle lighten */
}

.dark-blue-bg:hover .feature-icon-wrapper {
    transform: rotateY(360deg); /* Icon flips */
    border-color: #e6b12d; /* Border illuminates */
}

/* Hover effects for Yellow section */
.primary-yellow-bg:hover {
    background-color: #e6b12d;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.1);
}

.primary-yellow-bg:hover .feature-icon-wrapper.bordered-dark {
    transform: rotateY(360deg);
    border-color: #000;
}
/* --- Service Cards (Refined) --- */

.service-card { border-radius: 0; overflow: hidden; transition: 0.3s; border: none; background: #fff; }
.service-img { position: relative; height: 160px; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.service-card:hover .service-img img { transform: scale(1.1); }
.service-card:hover .service-body {
    background: #e6b12d;
}
.service-card:hover .read-more{
    background: #1e293b;
    padding: 7px;
}
.service-icon { position: absolute; top: 20px; left: 20px; background: var(--primary-yellow); width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; border-radius: 4px; color: #000; z-index: 3; font-size: 1.2rem; }
.read-more { color: var(--primary-yellow); text-decoration: none; font-weight: 700; font-size: 0.8rem; letter-spacing: 1px; }
.btn-dark-custom { background: #1a1d24; color: #fff; border: none; padding: 12px 30px; border-radius: 0; transition: 0.3s; }
.btn-dark-custom:hover { background: var(--primary-yellow); color: #000; }

/* --- Process Section Refined --- */
.process-section {
    background-color: #1e293b;
    position: relative;
    overflow: hidden;
}

.process-item-modern {
    padding: 30px 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 20px;
    position: relative;
    z-index: 2;
}
.text-secondary{
    color: #cecece !important;
}
.process-icon-box {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-yellow);
    font-size: 2.5rem;
    border: 2px dashed rgba(230, 177, 45, 0.3);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.5s ease;
}

/* Step Number Badge */
.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary-yellow);
    color: #000;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: 0.3s;
}

/* --- Hover Effects --- */

.process-item-modern:hover {
    transform: translateY(-15px);
}

.process-item-modern:hover .process-icon-box {
    background: var(--primary-yellow);
    color: #000;
    border-style: solid;
    box-shadow: 0 0 30px rgba(230, 177, 45, 0.4);
    transform: scale(1.1);
}

.process-item-modern:hover .step-number {
    background: #fff;
    transform: scale(1.2);
}

.process-item-modern h5 {
    transition: 0.3s;
}

.process-item-modern:hover h5 {
    color: var(--primary-yellow) !important;
    letter-spacing: 1px;
}

/* Floating Animation for icons */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.process-icon-box {
    animation: float 4s ease-in-out infinite;
}

/* Desktop only: Connecting Dots (Optional but Stylish) */
@media (min-width: 992px) {
    .process-row {
        position: relative;
    }
    /* Simple divider line logic can be added here if needed */
}
/* --- Portfolio --- */
.project-card { position: relative; height: 420px; border-radius: 12px; overflow: hidden; background: #000; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; opacity: 0.7; }
.project-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(0,0,0,0.9) 10%, transparent 60%); padding: 25px; display: flex; flex-direction: column; justify-content: space-between; }
.project-hover-info { max-height: 0; opacity: 0; overflow: hidden; transition: all 0.4s ease; }
.project-card:hover .project-hover-info { max-height: 100px; opacity: 1; }
.project-card:hover img { transform: scale(1.1); opacity: 0.5; }
.badge-status { align-self: flex-start; padding: 6px 16px; border-radius: 50px; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.status-ongoing { background: var(--primary-yellow); color: #000; }
.status-completed { background: #28a745; color: #fff; }

/* --- Values Section --- */
.vision-card, .mission-card { background: #fff; border-radius: 15px; position: relative; border: 1px solid #eee; }
.accent-line { position: absolute; left: 0; top: 0; bottom: 0; width: 6px; }
.modern-value-card { background: #fff; padding: 40px 30px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); border: 1px solid rgba(0,0,0,0.05); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); height: 100%; }
.modern-value-card .icon-box { width: 60px; height: 60px; background: #f8f9fa; border-radius: 15px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 25px; color: #333; transition: 0.3s; }
.modern-value-card:hover { transform: scale(1.05) translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); background-color: #1e293b; color: #fff; }
.modern-value-card:hover .icon-box { background: var(--primary-yellow); color: #000; transform: rotateY(360deg); }
.modern-value-card:hover p { color: rgba(255,255,255,0.7) !important; }
/* --- Stats Section --- */
.stats-section {
    background: linear-gradient(rgba(13, 17, 23, 0.92), rgba(13, 17, 23, 0.92)), 
                url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?q=80&w=2000');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-top: 3px solid var(--primary-yellow);
}

.stat-card {
    padding: 30px 15px;
    transition: all 0.4s ease;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.stat-icon-bg {
    font-size: 2.5rem;
    color: rgba(230, 177, 45, 0.2);
    margin-bottom: 10px;
    transition: 0.4s;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-yellow);
    margin: 0;
}

.stat-label {
    color: #ffffff;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
}

/* --- Stats Hover Effect --- */
.stat-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-10px);
}

.stat-card:hover .stat-icon-bg {
    color: var(--primary-yellow);
    transform: scale(1.2);
}

/* --- Testimonial Section --- */
.testimonial-section { background: #fcfcfc; }
/* Slider Container */
.testimonial-slider-container {
    overflow: hidden;
    width: 100%;
}

.testimonial-track {
    display: flex; /* Sabhi slides ko ek row mein lane ke liye */
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
    will-change: transform;
}

.testimonial-slide {
    min-width: 100%; /* Ek slide poori width legi */
    transition: 0.6s;
}

/* Updated Testimonial Card */
.testimonial-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #333;
    font-weight: 500;
}

.slider-control {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.client-avatar {
    width: 50px;
    height: 50px;
    background: #161b22;
    color: #e6b12d;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 15px;
    font-weight: bold;
    border: 2px solid #e6b12d;
}
/* Testimonial Track smooth movement */
#testimonialTrack {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
    will-change: transform;
}

/* Card fade effect jab wo screen par aaye */
.testimonial-slide {
    opacity: 0.5;
    transform: scale(0.9);
    transition: all 0.6s ease;
}

/* Active slide full bright aur normal size mein rahegi */
#testimonialTrack .testimonial-slide {
    /* JavaScript logic handles center positioning, 
       if you want current slide to pop: */
    opacity: 1;
    transform: scale(1);
}

/* FAQ Section */
.faq-section {
    background-color: #f8f9fa;
}

.custom-faq .accordion-item {
    border-radius: 12px !important;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect on the whole card */
.custom-faq .accordion-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05) !important;
}

.custom-faq .accordion-button {
    padding: 25px;
    font-size: 1.1rem;
    color: #161b22;
    background-color: #fff;
    transition: all 0.3s ease;
}

/* When the question is open */
.custom-faq .accordion-button:not(.collapsed) {
    background-color: #1e293b;
    color: #ffffff;
    box-shadow: none;
}

/* Rotating the arrow icon */
.custom-faq .accordion-button::after {
    background-size: 1rem;
    transition: transform 0.3s ease;
}

.custom-faq .accordion-body {
    padding: 0 25px 25px 25px;
    line-height: 1.8;
}

/* Sidebar Contact Card */
.faq-contact-card {
    background-color: #1e293b !important;
}

/* --- Team - Split-Panel Section --- */
.team-split-section {background: #1e293b !important;}

/* A: Showcase Display (Left) */
.profile-slide {
    display: none; /* All slides hidden by default */
}

.profile-slide.active-show {
    display: block; /* Show only active slide */
    animation: slideInLeftFade 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

.member-image-frame {
    width: 140px; height: 140px;
    border-radius: 50%; padding: 5px;
    background: linear-gradient(to right, var(--primary-yellow) 0%, transparent 100%);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.member-image-frame img {
    width: 100%; height: 100%; object-fit: cover;
    border-radius: 50%;
}

.social-links-team a {
    width: 35px; height: 35px;
    background: #161b22; color: var(--primary-yellow);
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%; text-decoration: none; font-size: 0.9rem;
    transition: 0.3s;
}

.social-links-team a:hover {
    background: var(--primary-yellow); color: #000;
}

.member-bio { font-size: 1.1rem; line-height: 1.7; }
.specialties-icons { font-size: 1.3rem; margin-top: 15px; }

/* B: Thumb-Track Navigation (Right) */
.team-thumb-track {
    counter-reset: team-thumb-counter; /* Creates numbers 01, 02... */
}

.thumb-selector {
    background: none; border: none; color: white-50;
    text-align: right; position: relative;
    cursor: pointer; transition: 0.3s;
}

/* Creating the counter numbers */
.thumb-selector::before {
    counter-increment: team-thumb-counter;
    content: "0" counter(team-thumb-counter);
    position: absolute; left: 0;
    font-size: 0.8rem; font-weight: 800; color: #333;
}

/* Active State: Active text turns Yellow */
.thumb-selector.active-tab {
    color: var(--primary-yellow) !important;
}

.thumb-selector.active-tab .thumb-name { font-size: 1.5rem; color: var(--primary-yellow) !important;}
.thumb-selector.active-tab::before { color: var(--primary-yellow); }

.thumb-name { font-size: 1.25rem; color: #fff;}

/* Small Thumb image */
.thumb-img-small {
    width: 60px; height: 60px;
    border-radius: 12px; overflow: hidden;
    opacity: 0.3; transition: 0.3s;
}

.thumb-img-small img { width: 100%; height: 100%; object-fit: cover; }

/* Interaction on track */
.thumb-selector:hover { color: white; }
.thumb-selector.active-tab .thumb-img-small,
.thumb-selector:hover .thumb-img-small {
    opacity: 1; transform: scale(1.1);
}

/* Loop Controls */
.team-loop-btn { cursor: pointer; opacity: 0.4; transition: 0.3s; }
.team-loop-btn:hover { opacity: 1; transform: scale(1.2); }

/* Animation Effect */
@keyframes slideInLeftFade {
    0% { opacity: 0; transform: translateX(-50px); }
    100% { opacity: 1; transform: translateX(0); }
}

/* --- Statistics Counter Section --- */
.stats-item {
    transition: all 0.4s ease;
    cursor: default;
}

.counter-value {
    font-size: 3rem;
    line-height: 1;
}

.stats-icon {
    font-size: 2.5rem;
    color: var(--primary-yellow);
    opacity: 0.8;
    transition: 0.3s;
}

/* Hover Effects */
.stats-item:hover {
    transform: translateY(-5px);
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.dark-blue-bg:hover { background-color: #161b22; }
.primary-yellow-bg:hover { background-color: #f0b92d; }

.stats-item:hover .stats-icon {
    transform: scale(1.2) rotate(-10deg);
    opacity: 1;
}
/* --- Contact Section --- */
.bg-light {background-color: #ffffff !important;}

.info-icon-box {
    width: 45px;
    height: 45px;
    background: rgba(230, 177, 45, 0.1);
    color: var(--primary-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Form Styling */
.custom-input {
    background-color: #fcfcfc;
    border: 1px solid #e0e0e0;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 15px;
}
.custom-input:focus {
    box-shadow: none;
    border-color: #ffc107;
    background-color: #fff;
}
.btn-dark {
    background-color: #1a1f26;
    border: none;
    border-radius: 8px;
    letter-spacing: 1px;
}

/* --- Footer Styling --- */
.footer-section {
    background-color: #1a222c; /* Deep dark blue */
    color: white;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-left: 15px;
}

/* The Yellow Accent Line on titles */
.footer-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    height: 18px;
    width: 3px;
    background-color: var(--primary-yellow);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
    display: inline-block;
}

.footer-links a::before {
    content: '*';
    margin-right: 8px;
    font-size: 0.8rem;
    opacity: 0.5;
}

.footer-links a:hover {
    color: var(--primary-yellow);
    transform: translateX(5px);
}

/* Social Buttons */
.footer-socials a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.9rem;
}

.footer-socials a:hover {
    background: var(--primary-yellow);
    color: #000;
    transform: translateY(-3px);
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sub-footer-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.8rem;
    margin-left: 20px;
    transition: 0.3s;
}

.sub-footer-links a:hover {
    color: white;
}
/* --- Action CTA Section --- */
.action-cta-section {
    background-color: #ffc107; /* Matches the vibrant MCR Yellow */
    position: relative;
    overflow: hidden;
}

/* Subtle background circles like in the image */
.action-cta-section::before,
.action-cta-section::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.action-cta-section::before { width: 300px; height: 300px; left: -100px; bottom: -100px; }
.action-cta-section::after { width: 200px; height: 200px; right: -50px; top: -50px; }

.btn-action {
    border-radius: 8px;
    font-weight: 800;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dark Blue Call Button */
.btn-dark-blue {
    background-color: #1e293b;
    color: white;
}

.btn-dark-blue:hover {
    background-color: #000;
    color: white;
    transform: translateY(-3px);
}

/* WhatsApp Green Button */
.btn-whatsapp {
    background-color: #25d366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    color: white;
    transform: translateY(-3px);
}

.text-dark-50 {
    color: rgba(0, 0, 0, 0.6) !important;
}

/* --- Partners Section --- */
.partners-section {
    border-top: 1px solid #eee;
    overflow: hidden;
}

.partners-slider {
    background: #fff;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    box-shadow: revert !important;
}

.partner-track {
    display: flex;
    width: calc(300px * 10); /* Logo width * total logos */
    animation: scrollLogos 20s linear infinite;
}

.partner-logo {
    width: 300px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* filter: grayscale(100%); */ /* Elegant B&W look */
    opacity: 0.6;
    transition: 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%); /* Hover par original color */
    opacity: 1;
    transform: scale(1.1);
}

.partner-logo img {
    max-width: 100%;
    height: auto;
}

/* Infinite Scroll Animation */
@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-200px * 5)); } /* Move half way */
}


/* inner pages code >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */


/* start project page code */

section#project-listing {
    background: #0000000f !important;
}
.project-list-header {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 0.5fr;
    background: var(--mcr-dark);
    color: white;
    padding: 15px 20px;
    font-weight: bold;
    border-radius: 8px 8px 0 0;
}

.project-item {
    background: white;
    border: 1px solid #ddd;
    border-left: 5px solid #1e293b;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.project-summary-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 0.5fr;
    padding: 20px;
    cursor: pointer;
    transition: background 0.3s;
    align-items: center;
}

.project-summary-row:hover {background: #ffc107;}

.project-summary-row i {
    transition: transform 0.4s ease;
}

.project-item.active .project-summary-row i {
    transform: rotate(180deg);
}

/* Expand Animation */
.project-details-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease-out, padding 0.6s;
    background: #fff;
}

.project-item.active .project-details-content {
    max-height: 1000px; /* High enough to fit content */
    border-top: 2px solid var(--mcr-yellow);
}

/* Image Slider */
.project-slider {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 10px;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.slider-wrapper img {
    min-width: 100%;
    object-fit: cover;
    cursor: pointer;
}
.p-name {
    font-size: 24px;
    color: #1f3a68;
}
.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
}

.slider-nav button {
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 50%;
    cursor: pointer;
}

/* 1. Arrow Bouncing Animation */
@keyframes arrowBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

/* Sirf un items ke arrow par animation jo active nahi hain */
.project-item:not(.active) .p-arrow i {
        animation: arrowBounce 1.5s infinite;
		color: var(--mcr-yellow);
		width: 30px;
		height: 31px;
		background: #ffc107;
		border-radius: 50px;
		text-align: center;
		line-height: 31px;
}

/* Jab active ho jaye toh animation band aur rotate */
.project-item.active .p-arrow i {
    animation: none;
    transform: rotate(180deg);
}

/* Transition smooth karne ke liye details content update */
.project-details-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
}

.project-item.active .project-details-content {
    max-height: 1200px; /* Thoda zyada rakhein taaki content cut na ho */
    border: 2px solid #d2d2d2; /* Bootstrap warning color or your yellow */
}
.project-item.active
	 {
		background:  #ffc107;
	}
/* Zoom Effect */
.zoomable {
    transition: transform 0.3s;
}
.zoomable:hover {
    transform: scale(1.05);
}
/* our team page start here--------------------------------------------------------------------- */

/* --- Machinery Card with Icons --- */
.machinery-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.m-icon-box {
    width: 70px;
    height: 70px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 2rem; /* Big Icons */
    color: #161b22;
    transition: all 0.3s ease;
}

.m-info h5 {
    font-size: 1.1rem; /* Increased size */
    font-weight: 700;
    margin-bottom: 8px;
    color: #161b22;
}

.m-count {
    font-size: 0.9rem; /* Increased size */
    color: var(--primary-yellow);
    font-weight: 800;
    display: block;
    background: rgba(230, 177, 45, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
}

/* Hover State */
.machinery-card:hover {
    transform: translateY(-8px);
    background: #161b22;
    border-color: var(--primary-yellow);
}

.machinery-card:hover .m-icon-box {
    background: var(--primary-yellow);
    color: #161b22;
    transform: rotateY(180deg);
}

.machinery-card:hover h5 {
    color: #fff;
}

.machinery-card:hover .m-count {
    background: var(--primary-yellow);
    color: #161b22;
}

/* Category Title Styling */
.category-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #161b22;
    border-left: 6px solid var(--primary-yellow);
    padding-left: 15px;
    margin-top: 50px !important;
}



/* --- Team Roster Styles (Bold & Animated) --- */
.team-roster-section {
    overflow: hidden;
    padding: 80px 0;
    background: #f8fafc;
}

.member-card {
    background: #fff;
    border-radius: 20px; /* Thoda zyada rounded modern look ke liye */
    padding: 30px 20px;
    text-align: center;
    border-left: 6px solid #1e293b; /* Bold border */
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    z-index: 1;
}

/* Image Wrapper with Shine Animation */
.member-img-wrapper {
    width: 120px; /* Size increased */
    height: 120px;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
}
.member-img-wrapper2{
    width: 200px; /* Size increased */
    height: 200px;
}
.member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.5s ease;
    /* filter: grayscale(100%); */
}

.member-exp {
    position: absolute;
    bottom: 5px;
    right: -5px;
    background: #161b22;
    color: #ffc107;
    font-size: 12px; /* Increased */
    font-weight: 900; /* Extra Bold */
    padding: 6px 14px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
    z-index: 3;
    transition: 0.3s;
}

/* Text Bold & Size Increase */
.member-info h5 {
    font-size: 1.6rem; /* Bada size */
    font-weight: 800; /* Extra Bold */
    color: #161b22;
    margin: 20px 0 8px;
    letter-spacing: -0.5px;
}

.member-info p {
    font-size: 0.9rem; /* Bada size */
    color: #2c2c2c;
    font-weight: 600; /* Bolder */
    text-transform: capitalize;
    letter-spacing: 0.5px;
}
.member-info h5+p {
    color: #ffc107;
    font-size: 18px;
}
span.badge.bg-warning.text-dark.mb-2.px-3.py-2 {
    font-size: 26px;
}
/* --- New Animations & Hover Effects --- */

.member-card:hover {
    transform: translateY(-15px); /* Stronger lift */
    border-color: #1e293b;
	background: #1e293b;
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}
.member-card:hover .member-info p, .member-card:hover .member-info h5 {
    color: #fff;
}
/* Profile Image Hover */
.member-card:hover .member-img {
    filter: grayscale(0%);
    transform: scale(1.15) rotate(5deg); /* Slight rotate for dynamic feel */
    border-color: #ffc107;
}

/* Exp Tag Hover */
.member-card:hover .member-exp {
    background: #ffc107;
    color: #161b22;
    transform: scale(1.1);
}

/* Background Animated Circle (Secret Detail) */
.member-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 0;
    background: linear-gradient(180deg, rgba(255,193,7,0.05) 0%, rgba(255,255,255,0) 100%);
    transition: all 0.5s ease;
    border-radius: 18px;
    z-index: -1;
}

.member-card:hover::before {
    height: 100%;
}

.priority-section,.container {
    padding-top: 0px !important;
}
.priority-card {
    background: #1e293b;
    border-radius: 15px;
    padding: 60px 30px 40px 30px; /* Top padding zyada rakhi hai icon ke liye */
    text-align: left; /* Image reference ki tarah left align */
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Icon fixed at Top-Left */
.card-icon-top {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 1.8rem;
    color: #ffc107;
    opacity: 0.8;
    transition: all 0.4s ease;
}

.priority-card .m-info h5 {
    font-size: 1.25rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.5;
    margin: 0;
	padding-top: 20px;
}

/* Hover Effects */
.priority-card:hover {
    transform: translateY(-10px);
    background: #1c222a;
    border-color: #ffc107;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.priority-card:hover .card-icon-top {
    transform: scale(1.2);
    opacity: 1;
    color: #fff;
}


/* --- Service Detail Page CSS --- */
.service-hero {
        border-bottom: 3px solid #ffc107;
        padding-top: 123px !important;
}

.service-main-img img {
    width: 100%;
    transition: transform 0.5s ease;
}

.service-main-img:hover img {
    transform: scale(1.05);
}

/* Sidebar List Styling */
.service-sidebar-links {
    padding-left: 0;
    list-style: none;
}

.service-sidebar-links li {
    margin-bottom: 15px; /* mb-3 gap */
}

.service-sidebar-links li a {
    display: block;
    padding: 12px 15px;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 6px;
    border-left: 4px solid transparent; /* Default hidden border */
    position: relative;
}

/* Hover Effect: Text moves right and border appears */
.service-sidebar-links li a:hover {
    padding-left: 25px;
    background-color: #f8f9fa; /* Light grey background */
    color: #ffc107 !important; /* MCR Yellow */
    border-left: 4px solid #ffc107;
}

/* Active State: Jab PHP se 'text-warning' class aayegi */
.service-sidebar-links li a.text-warning {
    background-color: #1a222c; /* Light yellow background */
    border-left: 4px solid #ffc107; /* Bold yellow indicator */
    padding-left: 25px; /* Keep it aligned with hover state */
    font-weight: 800 !important; /* Extra bold for active page */
    font-size: 1.05rem;
}

/* Optional: Chota arrow icon on hover */
.service-sidebar-links li a::after {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 15px;
    opacity: 0;
    transition: 0.3s;
}

.service-sidebar-links li a:hover::after,
.service-sidebar-links li a.text-warning::after {
    opacity: 1;
    right: 10px;
}

/* Feature Checklist */
.feature-checklist li {
    padding: 12px 15px;
    background: #f8f9fa;
    margin-bottom: 10px;
    border-radius: 10px;
    font-weight: 700;
    color: #161b22;
    transition: 0.3s;
}

.feature-checklist li:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transform: translateX(5px);
}

/* Breadcrumb Styling */
.breadcrumb-item + .breadcrumb-item::before {
    color: #fff;
}

/* Career Page Specific Styles */
.hero-badge {
    background: rgb(30 41 59);
    color: #ffc107;
    padding: 8px 20px;
    border-radius: 2px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.apply-box {
    transition: all 0.3s ease;
}

.apply-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

.career-img-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.experience-badge {
    min-width: 150px;
    backdrop-filter: blur(5px);
    background: rgba(22, 27, 34, 0.9) !important;
}

/* Email link hover */
.apply-box a:hover {
    color: #ffc107 !important;
}

/* 1. Global Overflow Fix - Sabse pehle ise check karo */


/* Purane sections wale overflow-x hata kar ye add karein */
html, body {
    max-width: 100%;
    overflow-x: clip; /* Ye scroll ko rokega aur sticky ko kharab nahi karega */
    /* position: relative; */
}



/* Thank You Section Styles ****************************/
.thank-you-section {
    padding: 100px 0;
    background: #f8f9fa;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thank-you-card {
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    max-width: 700px;
    margin: 0 auto;
}

/* Success Icon Animation */
.success-icon {
    margin-bottom: 30px;
}

.check-container {
    width: 80px;
    height: 80px;
    background: #28a745;
    color: white;
    font-size: 40px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 15px rgba(40, 167, 69, 0.1);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.4); }
    70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(40, 167, 69, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(40, 167, 69, 0); }
}

.divider {
    height: 2px;
    width: 50px;
    background: #007bff;
    margin: 0 auto;
}

.thank-you-card h1 {
    color: #333;
    letter-spacing: -1px;
}

.thank-you-card p.lead {
    color: #666;
}

/* Buttons Hover Effects */
.btn-lg {
    border-radius: 30px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
}

@media (max-width: 576px) {
    .thank-you-section { padding: 60px 15px; }
    .thank-you-card { padding: 40px 20px; }
}


/* Floating Container */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 25px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Base Button Style */
.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 4px 15px rgb(0 0 0 / 40%);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}
.floating-contact2{
    bottom: 95px;
}
/* WhatsApp Colors */
.whatsapp {
    background-color: #25d366;
}

/* Call Colors */
.call {
    background-color: #1f3a68;
}

/* Hover Effect: Expansion */
.float-btn:hover {
    width: 150px;
    transform: translateY(-5px);
}

/* Text inside button (Hidden by default) */
.btn-text {
    font-size: 16px;
    font-weight: 600;
    margin-left: 10px;
    display: none;
    white-space: nowrap;
}

.float-btn:hover .btn-text {
    display: inline-block;
}

/* Animation: Subtle Pulse */
.whatsapp,.call {
    animation: pulse-wa 2s infinite;
}

@keyframes pulse-wa {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Hover Color Tweak */
.whatsapp:hover { background-color: #1eb956; color: #fff; }
.call:hover { background-color: #0056b3; color: #fff; }



/* Back to Top Button Styling */
.back-to-top {
    position: fixed;
    bottom: 20px;
    left: 47%;
    width: 42px;
    height: 43px;
    background-color: #ffffff; /* Brand Yellow/Gold */
    color: #1f3a68;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: none; /* Starting mein hidden rahega */
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bounce effect */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    border: 1px solid #d629296e;
}

.back-to-top:hover {
    background-color: #000;
    color: #ffc107;
    transform: translateY(-10px) scale(1.1); /* Floating animation */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Optional: Subtle Pulse Animation */
@keyframes pulse-gold {
    0% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 193, 7, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0); }
}

.back-to-top {
    animation: pulse-gold 2s infinite;
}



/* home slider video section*******************************************************************/
.hero-video-wrapper {
    position: relative;
    width: 100%;
    height: 100vh; /* Aap apne hisaab se height 100vh (full screen) ya kam rakh sakte hain */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

/* Video ke upar halka sa black overlay taaki white text saaf dikhe */
.hero-video-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(58 58 58 / 0%); /* 0.4 ko badha kar dark kar sakte ho */
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3; /* Text video aur overlay dono ke upar rahega */
}