:root {
    --primary-maroon: #8a151b;
    --text-dark: #222;
}

body {
    font-family: 'Arial', sans-serif;
}

/* Navbar & Text Colors */
.text-maroon {
    color: var(--primary-maroon) !important;
}

.bg-maroon {
    background-color: var(--primary-maroon) !important;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-maroon);
}

/* Desktop Active Tab Underline */
@media (min-width: 992px) {
    .nav-link.active {
        position: relative;
    }

    .nav-link.active::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -5px;
        width: 100%;
        height: 3px;
        background-color: var(--primary-maroon);
    }
}

/* Helpline Button */
.helpline-box {
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s;
}

.helpline-box:hover {
    background-color: #690f14 !important;
}

/* =========================================
           CUSTOM MOBILE MENU CSS (LEFT SLIDE)
           ========================================= */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -320px;
    /* By default bahar rakha hai */
    width: 300px;
    height: 100vh;
    background-color: #fff;
    z-index: 1050;
    transition: left 0.3s ease-in-out;
    /* Smooth sliding */
    overflow-y: auto;
}

/* Jab JS ye class add karegi, menu andar aayega */
.mobile-sidebar.show-menu {
    left: 0;
}

/* Background blur/dark effect (optional but looks good) */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    display: none;
}

.menu-overlay.show-overlay {
    display: block;
}







.hero-section {

    background-color: #0f0f0f;
    background-image: url('../img/hero\ img.png');
    background-size: cover;
    background-position: center top;
    position: relative;
    padding: 100px 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Thoda dark effect */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Typography Customization */
.text-gold {
    color: #e6b34a;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-title-red {
    color: #9d1c25;
}

/* Checkmark List */
.hero-list li {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Buttons */
.btn-hero-red {
    background-color: #9d1c25;
    color: #fff;
    font-size: 0.85rem;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-hero-red:hover {
    background-color: #7a151c;
    color: #fff;
}

.btn-hero-outline {
    background-color: transparent;
    color: #fff;
    font-size: 0.85rem;
    padding: 12px 24px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 4px;
    transition: 0.3s;
}

.btn-hero-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: #fff;
}

/* Right Side Glass Cards */
.glass-card {
    background: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.3s;
}

.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

















.trusted-strip {
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    transition: 0.3s;
}

.trust-icon {
    width: 30px;
    height: 30px;
    stroke: #8a151b;
    stroke-width: 1.5;
}

/* 
.trust-text {
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.2;
    color: #333;
} */

.trusted {
    color: #8a151b;
    font-size: 15px;
    font-weight: 800;
    line-height: 0.6;
}








.services-section {
    background-color: #f8f9fa;
}

.service-card {
    border: none;
    border-radius: 8px;
    padding: 30px;
    height: 100%;
    transition: 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 20px;
}

.read-more {
    color: #8a151b;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
}

.read-more:hover {
    color: #000;
}




















.why-choose-us {
    background-color: #0c0c0c;
    color: #fff;
    padding: 80px 0;
}

.feature-box {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    stroke: #9d1c25;
    stroke-width: 1.5;
    flex-shrink: 0;
}

.video-placeholder {
    background: #222;
    border-radius: 12px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.play-btn {
    font-size: 50px;
    color: #fff;
    cursor: pointer;
    opacity: 0.8;
    transition: 0.3s;
}

.play-btn:hover {
    opacity: 1;
    transform: scale(1.1);
}













.process-section { padding: 60px 0; background-color: #fcfcfc; }
.process-container { position: relative; }
/* Dotted line */
.process-line-connect {
    position: absolute; top: 40px; left: 15%; width: 70%;
    height: 2px; border-top: 2px dashed #9d1c25; z-index: 0;
}
.step-circle {
    width: 80px; height: 80px; background: #9d1c25; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    position: relative; z-index: 1; margin: 0 auto 20px;
}
.step-number {
    position: absolute; top: 0; left: 0; width: 25px; height: 25px;
    background: #000; color: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; font-weight: bold;
}























.case-study-card { border: none; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.card-img-top { height: 200px; object-fit: cover; }
.circle-icon-wrapper { 
    margin-top: -30px; /* Overlap effect ke liye */
    display: flex; justify-content: center;
}
.circle-icon { 
    width: 60px; height: 60px; background: #9d1c25; 
    border-radius: 50%; display: flex; align-items: center; justify-content: center; 
    border: 4px solid #fff; color: #fff;
}
.case-text { padding: 0 20px 20px; text-align: center; }







.testimonial-section { background-color: #0c0c0c; color: #fff; padding: 60px 0; }
.testimonial-card { 
    background-color: #1a1a1a; 
    border-radius: 12px; 
    padding: 30px; 
    display: flex; 
    align-items: center; 
    gap: 20px;
}
.client-img { width: 80px; height: 80px; border-radius: 50%; border: 3px solid #9d1c25; }
.star-rating { color: #f39c12; font-size: 1.2rem; }
.nav-arrow { 
    width: 50px; height: 50px; border-radius: 50%; border: 1px solid #444; 
    display: flex; align-items: center; justify-content: center; 
    cursor: pointer; transition: 0.3s;
}
.nav-arrow:hover { background: #9d1c25; border-color: #9d1c25; }











.cta-banner { background-color: #8a151b; padding: 30px 0; color: #fff; }
.cta-logo { width: 60px; height: 60px; border-radius: 50%; background: #fff; padding: 5px; }
.btn-light-custom { background: #fff; color: #8a151b; font-weight: 700; border: none; padding: 12px 25px; transition: 0.3s; }
.btn-outline-light-custom { background: transparent; color: #fff; border: 1px solid #fff; font-weight: 700; padding: 12px 25px; transition: 0.3s; }
.btn-light-custom:hover { background: #f0f0f0; }
.btn-outline-light-custom:hover { background: #fff; color: #8a151b; }












.main-footer { background-color: #050505; color: #a1a1a1; padding: 60px 0 20px; }
.footer-heading { color: #fff; font-weight: 700; margin-bottom: 20px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { text-decoration: none; color: #a1a1a1; transition: 0.3s; }
.footer-links a:hover { color: #9d1c25; }
.social-icon { background: #1a1a1a; width: 35px; height: 35px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; color: #fff; margin-right: 10px; text-decoration: none; }
.newsletter-input { background: #1a1a1a; border: none; padding: 10px; width: 100%; color: #fff; }
.newsletter-btn { background: #9d1c25; border: none; padding: 10px 15px; color: #fff; }


















/* Floating Contact Buttons Container */
.floating-contact-buttons {
    position: fixed;
    right: 25px; /* Screen ki right side se gap */
    bottom: 30px; /* Screen ki bottom se gap */
    display: flex;
    flex-direction: column;
    gap: 15px; /* Dono buttons ke beech ka space */
    z-index: 9999; /* Isse buttons hamesha upar dikhenge */
}

/* Individual Button Style */
.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease-in-out;
}

.float-btn:hover {
    transform: scale(1.1); /* Hover karne par halka bada hoga */
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    color: #ffffff;
}

/* Colors for respective buttons */
.float-whatsapp {
    background-color: #25D366; /* WhatsApp Green */
}

.float-phone {
    background-color: #9d1c25; /* Theme Gold Color (Ya aap #007bff for blue de sakte hain) */
}

/* Mobile Screen ke liye thoda adjust karein */
@media (max-width: 768px) {
    .floating-contact-buttons {
        right: 15px;
        bottom: 20px;
        gap: 10px;
    }
    
    .float-btn {
        width: 50px;
        height: 50px;
    }

    .float-btn svg {
        width: 24px;
        height: 24px;
    }
}