:root {
    /* ── Brand Core ── */
    --color-navy: #0d1b2e;
    /* darkest – footer bg */
    --color-navy-mid: #112240;
    /* footer body panels */
    --color-primary: #1e4d8c;
    /* primary brand blue */
    --color-accent: #2979d4;
    /* bright blue – CTA / join btn */
    --color-accent-hover: #1e65bb;
    /* accent hover */
    --color-light: #5ba3e8;
    /* light blue – link hover */
    --color-ice: #a8d4f5;
    /* pale blue – subtle tints */
    --color-white: #ffffff;

    /* ── Text  */
    --text-primary: #ffffff;
    --text-secondary: #cbd5e1;
    /* footer body text */
    --text-muted: #7a8fa6;
    /* muted / meta text */
    --text-accent: #2979d4;
    --text-link: #8bb8e8;
    /* footer links */
    --text-link-hover: #ffffff;

    /* ── Headings ── */
    --heading-h1: #ffffff;
    --heading-h2: #e2eaf5;
    --heading-h3: #2979d4;
    --heading-footer: #ffffff;
    /* footer column headings */

    /* ── Backgrounds ── */
    --bg-footer: #0d1b2e;
    /* main footer bg */
    --bg-footer-bottom: #091525;
    /* copyright bar */
    --bg-footer-divider: rgba(255, 255, 255, 0.07);

    /* ─ Buttons – Primary ── */
    --btn-primary-bg: #2979d4;
    --btn-primary-text: #ffffff;
    --btn-primary-hover-bg: #1e65bb;

    /* ── Inputs ─ */
    --input-bg: rgba(255, 255, 255, 0.06);
    --input-border: rgba(255, 255, 255, 0.12);
    --input-border-focus: #2979d4;
    --input-text: #ffffff;
    --input-placeholder: #5a728a;
    --input-shadow-focus: 0 0 0 3px rgba(41, 121, 212, 0.22);

    /* ── Logo Icon ─ */
    --logo-icon-bg: #2979d4;
    --logo-icon-border: rgba(91, 163, 232, 0.4);

    /* ── Borders & Dividers ─ */
    --border-footer: rgba(255, 255, 255, 0.07);
    --border-accent: #2979d4;

    /* ── Gradients ── */
    --gradient-footer-top: linear-gradient(180deg, rgba(41, 121, 212, 0.05) 0%, transparent 60px);

    /* ── Shadows ─ */
    --shadow-btn: 0 4px 20px rgba(41, 121, 212, 0.35);
    --shadow-btn-hover: 0 6px 28px rgba(41, 121, 212, 0.50);

    /* ─ Transitions ─ */
    --transition-base: 220ms ease;
    --transition-fast: 140ms ease;

    /* ─ Spacing ── */
    --footer-pt: 72px;
    --footer-pb: 48px;

    /* ─ Typography  */
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-display: 'Plus Jakarta Sans', sans-serif;
    --font-size-xs: 0.72rem;
    --font-size-sm: 0.85rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.1rem;

    /* ── Border Radius ── */
    --radius-sm: 5px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-pill: 9999px;
}


*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--text-secondary);
}

/* --- Headings Hierarchy --- */
h1,
.display-h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: var(--font-size-5xl);
    font-weight: var(--font-black);
    color: var(--heading-h1);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
}

h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: var(--font-size-3xl);
    font-weight: var(--font-bold);
    color: var(--heading-h2);
    margin-bottom: var(--space-md);
}

h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: var(--font-size-2xl);
    font-weight: var(--font-semibold);
    color: var(--heading-h3);
}

/* Captions and Muted Text */
small,
.text-muted {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}






/* footer code start */


.main-footer {
    background: var(--bg-footer);
    position: relative;
    overflow: hidden;
}

/* Subtle top gradient accent */
.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(41, 121, 212, 0.6) 30%,
            rgba(91, 163, 232, 0.8) 50%,
            rgba(41, 121, 212, 0.6) 70%,
            transparent 100%);
}

/* Very subtle radial glow from top-left */
.main-footer::after {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 460px;
    height: 360px;
    background: radial-gradient(ellipse, rgba(41, 121, 212, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.footer-inner {
    padding: var(--footer-pt) 0 var(--footer-pb);
    position: relative;
    z-index: 1;
}

/* ─ Logo Block ─ */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    text-decoration: none;
}

.footer-logo-icon {
    width: 38px;
    height: 38px;
    background: var(--logo-icon-bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--logo-icon-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 16px rgba(41, 121, 212, 0.30);
}

.footer-logo-icon svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.footer-brand-name {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--text-primary);
    line-height: 1;
}

/* ── Tagline text ─ */
.footer-tagline {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.65;
    max-width: 295px;
    font-weight: 400;
}

/* ── Stay Updated ── */
.footer-newsletter-label {
    font-family: var(--font-display);
    font-size: var(--font-size-xs);
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--text-primary);
    text-transform: uppercase;
    margin-bottom: 14px;
    margin-top: 30px;
    display: block;
}

.footer-newsletter-form {
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 320px;
}

.footer-email-input {
    flex: 1;
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    border-right: none;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    padding: 11px 16px;
    color: var(--input-text);
    font-family: var(--font-body);
    font-size: var(--font-size-sm);
    outline: none;
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
    height: 44px;
}

.footer-email-input::placeholder {
    color: var(--input-placeholder);
}

.footer-email-input:focus {
    border-color: var(--input-border-focus);
    box-shadow: var(--input-shadow-focus);
    background: rgba(255, 255, 255, 0.09);
}

.footer-join-btn {
    background: var(--btn-primary-bg);
    color: var(--btn-primary-text);
    border: none;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 0 22px;
    font-family: var(--font-body);
    font-size: var(--font-size-sm);
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    height: 44px;
    transition: background var(--transition-base), box-shadow var(--transition-base);
    white-space: nowrap;
    box-shadow: var(--shadow-btn);
}

.footer-join-btn:hover {
    background: var(--btn-primary-hover-bg);
    box-shadow: var(--shadow-btn-hover);
}

/*  Column Headings ─ */
.footer-heading {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--heading-footer);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 77px;
    height: 2px;
    background: var(--border-accent);
    border-radius: 2px;
}

/* ── Footer Links  */
.footer-link {
    display: block;
    color: var(--text-link);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 13px;
    transition: color var(--transition-fast), transform var(--transition-fast);
    letter-spacing: 0.01em;
}

.footer-link:hover {
    color: var(--text-link-hover);
    transform: translateX(3px);
}

.footer-link:last-child {
    margin-bottom: 0;
}

/* ── Divider ── */
.footer-divider {
    border: none;
    border-top: 1px solid var(--border-footer);
    margin: 0;
}

/*  Footer Bottom Bar ─ */
.footer-bottom {
    background: var(--bg-footer-bottom);
    padding: 18px 0;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: var(--font-size-xs);
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0;
}

.footer-legal-links {
    display: flex;
    gap: 28px;
    align-items: center;
}

.footer-legal-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: var(--font-size-xs);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color var(--transition-fast);
}

.footer-legal-link:hover {
    color: var(--text-link-hover);
}

/* ── Responsive ─ */
@media (max-width: 991.98px) {
    :root {
        --footer-pt: 52px;
        --footer-pb: 36px;
    }

    .footer-heading {
        margin-top: 8px;
    }
}

@media (max-width: 767.98px) {
    :root {
        --footer-pt: 44px;
        --footer-pb: 28px;
    }

    .footer-tagline {
        max-width: 100%;
    }

    .footer-newsletter-form {
        max-width: 100%;
    }

    .footer-bottom .container>div {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }

    .footer-legal-links {
        gap: 18px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .footer-newsletter-form {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .footer-email-input {
        border-right: 1px solid var(--input-border);
        border-radius: var(--radius-md);
    }

    .footer-join-btn {
        border-radius: var(--radius-md);
        width: 100%;
    }
}

/* footer code end */




/* header start */
/* header start */
/* ─ Main Header ─ */
.main-header {
    background: var(--header-bg);
    border-bottom: 1px solid var(--header-border);
    box-shadow: var(--header-shadow);
    transition: all var(--transition-base);
    z-index: 1050;
}

/* ── Navigation Links ─ */
.navbar-nav .nav-link {
    font-size: 17px;
    font-weight: 600;
    color: var(--nav-link-color) !important;
    padding: 10px 15px !important;
    position: relative;
    transition: color var(--transition-fast);
}

/* Hover & Active Underline Effect */
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 15px;
    right: 15px;
    height: 2px;
    background: var(--color-accent);
    transform: scaleX(0);
    transition: transform var(--transition-base);
    
    border-top: 0px !important;
}

/* Ensure dropdown toggle also gets the underline */
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after,
.navbar-nav .show > .nav-link::after {
    transform: scaleX(1);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active,
.navbar-nav .show > .nav-link {
    color: var(--color-accent) !important;
}

/* ── Dropdown Customization (Desktop)  */
@media (min-width: 1200px) {
    .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
        border: none;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border-top: 3px solid var(--color-accent);
    }

    .dropdown:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.dropdown-item {
    font-weight: 500;
    padding: 0.6rem 1.5rem;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: #f8fafc;
    color: var(--color-accent);
    padding-left: 1.8rem;
        background-color: #f8fafc;
    color: var(--color-accent) !important;
}

/*  Mobile Toggler ── */
.navbar-toggler {
    box-shadow: none !important;
    border: none;
}

.navbar-toggler .bi-list {
    color: var(--color-accent);
    font-size: 1.8rem;
}

/* ── Offcanvas Customization (Mobile Only) ─ */
@media (max-width: 1199px) {
    .offcanvas {
        width: 300px !important;
        background-color: #0d1b2e !important;
    }

    .offcanvas .nav-link {
        color: #fff !important;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 15px 15px !important;
    }

    /* Fix dropdown text color and indentation on mobile */
    .offcanvas .dropdown-menu {
        background: rgba(255,255,255,0.05);
        border: none;
        margin: 0;
    }

    .offcanvas .dropdown-item {
        color: rgba(255,255,255,0.8);
        padding: 12px 30px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .offcanvas .nav-link::after {
        display: none;
    }
    
    .offcanvas-body {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
}

/*  Button & Phone Styling ─ */
.btn-primary {
    background-color: #2563eb;
    border: none;
    font-weight: 600;
    transition: transform 0.2s;
    font-size: 20px;
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
}
/* header end */

/* header end */

.light-subheading{
        font-size: 18px;
    color: rgb(108 117 125);

}
.content-p{
    font-size: 16px;
}



/* home page start */

/* ─ Hero Styles ─ */
.hero-section {
    background-image: url('https://brocushomesecurity.com/img/banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top:115px;
    padding-bottom: 100px;
}

/* Light washed overlay matching your layout */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
       background: linear-gradient(to bottom, rgb(255 255 255 / 94%) 0%, rgb(21 50 80 / 64%) 100%);
}
.banner-hover-btn:hover{
    color:#0d6efd ;
}

/* Z-index utility to keep text above overlay */
.z-1 { z-index: 1; }

/* ─ Mobile Tweaks ─ */
@media (max-width: 576px) {
    .display-2 { font-size: 2.5rem; }
    .hero-section { height: auto !important; padding: 120px 0 80px; }
}




/* Ensure all images in cards have the exact same height and focal point */
.card-img-top {
    object-fit: cover;
    object-position: center;
}

/* Updated Fade Overlay to be more subtle at the top */
.image-fade-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px; /* Precise height for the fade transition */
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
}

/* Consistent rounding across components */
.rounded-4 { border-radius: 1.25rem !important; }

/* Flex alignment for card content */
.card-body {
    display: flex;
    flex-direction: column;
}






/* Card Hover Mechanics */
.shadow-hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.shadow-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* Product Showcase Box */
.product-showcase {
    background: #f8f9fa; /* Matches bg-light in standard layout */
    height: 260px;
    position: relative;
    z-index: 1;
}

.product-img {
    height: 85%;
    width: 85%;
    object-fit: cover; /* Changed to cover for full-frame professional look */
    border-radius: 12px;
    transition: transform 0.5s ease;
    z-index: 2;
}

.card:hover .product-img {
    transform: scale(1.08);
}

/* Subtle Inner Radial Glow */
.product-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
}

/* Typography & Links */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 40px;
}

.btn-link-modern {
    color: #0d6efd;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.btn-link-modern:hover {
    gap: 12px;
    color: #0a58ca;
}

.rounded-4 { border-radius: 1.25rem !important; }




/* Card Core Structure */
.service-card-v2 {
    min-height: 405px;
    /* background: #0f172a; */
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #4848488c !important;
}

/* Image Visibility Correction */
.v2-img-container {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}

.v2-card-img {
    width: 100%; height: 100%;
    object-fit: cover;
    /* opacity: 0.4;
    filter: saturate(1.2) brightness(0.8); */
    transition: transform 0.8s ease;
}

/* The "Anti-Washing" Gradient */
.v2-overlay {
    position: absolute;
    inset: 0;
    /* This creates clear separation between the image and icons */
    background: linear-gradient(
        to bottom, 
        rgba(6, 9, 18, 0.1) 0%, 
        rgba(6, 9, 18, 0.7) 50%, 
        rgba(6, 9, 18, 1) 100%
    );
}

/* Precise Icon Sizing */
.v2-icon-box {
    width: 52px;
    height: 52px;
    background: rgba(37, 99, 235, 0.2);
    border: 1px solid rgba(37, 99, 235, 0.4);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 1.4rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Typography */
.v2-text-muted {
    color: #94a3b8;
    line-height: 1.7;
    font-size: 16px;
}

/* Production Hover Effects */
.service-card-v2:hover {
    transform: translateY(-10px);
}

.service-card-v2:hover .v2-card-img {
    transform: scale(1.1);
    opacity: 0.6; /* Brightens on hover for visual feedback */
}

.service-card-v2:hover .v2-icon-box {
    background: #2563eb;
    color: white;
    border-color: #3b82f6;
}




/* Avatar Group with Initials */
.avatar-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: #495057;
    text-transform: uppercase;
}

/* Feature Icon Styling */
.check-icon-circle {
    width: 26px;
    height: 27px;
    border-radius: 50%;
    flex-shrink: 0;
    background-color: #d0ffad !important;
}

.check-icon-circle i {
    font-size: 20px;
        color: darkgreen;
}

/* Layout Offsets */
.mb-n4 {
    margin-bottom: -1.5rem !important;
}

/* Responsive Scaling */
@media (max-width: 991px) {
    .translate-middle-x {
        bottom: -20px !important;
    }
    .display-6 {
        font-size: 1.75rem;
    }
}

@media (max-width: 767px) {
    .avatar-group {
        display: none !important; /* Clean up on very small screens */
    }
}





/* Custom Input Depth */
.custom-input {
    background-color: #f1f5f9 !important; /* Subtle Gray */
    border: 1px solid #001fff63 !important;
    border-radius: 12px !important;
    padding: 12px 18px !important;
    font-size: 1rem;
    transition: all 0.2s ease-in-out;
}

.custom-input:focus {
    background-color: #ffffff !important;
    border-color: #3b82f6 !important;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.08) !important;
}

/* Button Refinement */
.btn-primary.transition-all:hover {
    transform: translateY(-2px);
    background-color: #1d4ed8 !important;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2) !important;
}

/* Checkmark Box Refinement */
.check-icon-box {
    flex-shrink: 0;
}

/* Responsive Padding Fix */
@media (max-width: 991px) {
    .col-lg-6 {
        padding: 3rem 1.5rem !important;
    }
    
    /* Ensure one input per row on mobile */
    .col-md-6 {
        width: 100% !important;
    }
}




/* Exact Blue Gradient from Design */
.featured-tech-card {
    background: radial-gradient(circle at 100% 100%, #2b6df5 0%, #2563eb 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Production-Ready Rounded Corners */
.rounded-5 {
    border-radius: 2.5rem !important; /* Approx 40px as per image */
}

/* Button Refinement */
.tech-cta-btn {
    color: #2563eb !important;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.tech-cta-btn:hover {
    transform: scale(1.05);
    background-color: #f8fafc;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15) !important;
}

/* Responsive Padding for Mobile */
@media (max-width: 768px) {
    .display-5 {
        font-size: 2rem;
    }
    .featured-tech-card {
        text-align: center;
    }
    .featured-tech-card .d-flex {
        justify-content: center;
    }
}



/* FAQ Component Polish */
.accordion-item {
    transition: all 0.25s ease-in-out;
}

/* Subtle elevation on hover */
.accordion-item:hover {
    border-color: #3b82f6 !important;
    transform: translateY(-2px);
}

.accordion-button {
    background-color: #ffffff !important;
    box-shadow: none !important;
    color: #1e293b;
}

/* Active State */
.accordion-button:not(.collapsed) {
    color: #2563eb;
    background-color: #f8fafc !important;
}

/* Custom Icon Color */
.accordion-button::after {
    filter: grayscale(1) opacity(0.5);
}

.accordion-button:not(.collapsed)::after {
    filter: none;
}

/* home page end */



























/* --- Sticky Header Logic --- */
.main-header {
    height: var(--header-height);
    background: white;
    transition: all 0.3s ease-in-out;
    z-index: 1050;
    display: flex;
    align-items: center;
}

/* Glassmorphism on Scroll */
.main-header.scrolled {
    height: 75px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* --- Navigation Links --- */
.nav-link {
  
    font-weight: 600;
    font-size: 15px;
    color: var(--brocus-navy) !important;
    padding: 0 15px !important;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--brocus-blue) !important;
}

/* --- Right Side Actions --- */
.phone-link {
    font-weight: 700;
    color: var(--brocus-blue);
    text-decoration: none;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-quote {
    background-color: var(--brocus-blue);
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 28px;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-quote:hover {
    background-color: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
    color: #fff;
}

/* --- Mobile Menu Fixes --- */
.hamburger-icon {
    font-size: 2rem;
    color: var(--brocus-blue);
}




/*footer sticky floating cta start*/

    /* 1. Container Positioning */
    .fixed-call-wrapper {
        position: fixed;
        bottom: 30px;
        /* right: 30px; */
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* 2. The Main Button */
    .floating-call-btn {
        background:#2563eb; /* Matches your Secondary Orange */
        color: #fff;
        text-decoration: none;
        padding: 15px 25px;
        border-radius: 50px;
        display: flex;
        align-items: center;
        gap: 12px;
        font-weight: 800;
        font-family: 'Rajdhani', sans-serif;
        font-size: 1.1rem;
        box-shadow: 0 10px 25px rgba(232, 93, 4, 0.4);
        transition: all 0.3s ease;
        position: relative;
        z-index: 10;
    }

    .floating-call-btn i {
        font-size: 1.3rem;
        animation: phone-shake 2s infinite;
    }

    .floating-call-btn:hover {
        transform: scale(1.05) translateY(-5px);
        background: #fff;
        color: #0d6efd;
        box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    }

    /* 3. The Pulse Rings */
    .pulse-ring, .pulse-ring-delayed {
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50px;
        background:#0d6efd;
        opacity: 0.6;
        z-index: 5;
        animation: pulse-expand 3s ease-out infinite;
    }

    .pulse-ring-delayed {
        animation-delay: 1.5s;
    }

    /* 4. Animations */
    @keyframes pulse-expand {
        0% { transform: scale(1); opacity: 0.6; }
        100% { transform: scale(1.5, 2); opacity: 0; }
    }

    @keyframes phone-shake {
        0%, 90%, 100% { transform: rotate(0); }
        92% { transform: rotate(15deg); }
        94% { transform: rotate(-15deg); }
        96% { transform: rotate(10deg); }
        98% { transform: rotate(-10deg); }
    }

    /* 5. Mobile Responsiveness */
    @media (max-width: 768px) {
        .fixed-call-wrapper {
            bottom: 20px;
            /* right: 20px; */
        }
        .call-text {
            display: none; /* Shows icon only on mobile for cleaner UI */
        }
        .floating-call-btn {
            padding: 18px;
            border-radius: 50%;
        }
    }
    
/* Below XL */
@media (max-width: 1199.98px) {
    .dropdown-text-wrap {
        white-space: normal;
        word-break: break-word;
        overflow-wrap: break-word;
    }
}

/* XL and Above */
@media (min-width: 1200px) {
    .dropdown-text-wrap {
        white-space: nowrap;
        word-break: normal;
        overflow-wrap: normal;
    }
} }
}