:root {
    --blue-color: #0c3d7d; /* Vibrant Logo Corporate Navy Blue */
    --cyan-color: #f9a01b; /* Bright Logo Golden Yellow Accent */
    --white-color: #ffffff;
    --black-color: #0f172a; /* Deep slate-900 for maximum readability and visibility */
    --dark-premium: #051a37; /* Even darker shade of logo navy blue for footers/cards */
    --glass-bg: rgba(255, 255, 255, 0.85); /* Slightly less transparent for better readability */
    --glass-border: rgba(255, 255, 255, 0.45);
    --glass-shadow: 0 8px 32px 0 rgba(12, 61, 125, 0.08);
}


a {
    text-decoration: none !important;
}

body,
html {
    width: 100vw;
    overflow-x: hidden;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--black-color);
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: #0f172a !important; /* Force high contrast dark color on light bg */
    font-weight: 700;
}

/* Ensure headings on dark backgrounds remain white */
.bg-dark-premium h1, .bg-dark-premium h2, .bg-dark-premium h3, .bg-dark-premium h4, .bg-dark-premium h5, .bg-dark-premium h6,
.footer h1, .footer h2, .footer h3, .footer h4, .footer h5, .footer h6,
.breadcrumb-banner h1, .breadcrumb-banner h2, .breadcrumb-banner h3, .breadcrumb-banner h4, .breadcrumb-banner h5, .breadcrumb-banner h6,
.text-white, .navbar-brand.text-white {
    color: #ffffff !important;
}

.pairagraph {
    font-size: 16px;
    font-weight: 400;
    color: #334155; /* Slate-700 for soft but highly readable body text */
    line-height: 28px; /* High legibility spacing */
    letter-spacing: 0.015em;
}

.text_justify {
    text-align: justify;
}

.pt-100 {
    padding: 95px 0px;
}

.padding_left{
    padding-left: 30px;
}

.sociol_media_side {
    position: absolute;
    left: 13px;
    top: 287px;
}

.sociol_media_side li {
    margin-top: 16px;
}

.sociol_media_side li a:hover i {
    animation: toTopFromBottom 0.3s forwards;
}

@keyframes toTopFromBottom {
    49% {
        transform: translateY(-100%);
    }

    50% {
        opacity: 0;
        transform: translateY(100%);
    }

    51% {
        opacity: 1;
    }
}

#mdiv {
    background-color: black;
    height: 100vh;
    position: relative;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 10000000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rot {
    position: absolute;
    width: 170px;
    height: 170px;
    border: 4px solid rgba(255, 255, 255, 0.08);
    border-right: 4px solid var(--cyan-color); /* Golden Yellow rotating segment */
    border-top: 4px solid var(--blue-color); /* Navy Blue segment */
    border-radius: 50%;
    animation: pre 1.5s linear infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(249, 160, 27, 0.2);
}

@keyframes pre {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loader .cdiv {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lh img {
    width: 100px !important;
    height: 100px !important;
    max-width: 100px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    display: block !important;
    border: 3px solid #ffffff !important; /* Thick white frame to stand out on dark backdrop */
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.45), 0 0 15px var(--cyan-color) !important; /* Premium dual-tone glow */
}


/* sideebar start */

.overlay {
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.285);
    z-index: 1001;
}

.sidebar {
    overflow-y: auto;
    position: fixed;
    top: 0px;
    left: -250px;
    width: 250px;
    height: 100%;
    color: #fff;
    background-color: #fff;
    transition: all 0.3s ease;
    opacity: 0.9;
    z-index: 1002;
    padding-bottom: 25px;
    padding: 10px;
    z-index: 100000;
}

.sidebar.open {
    left: 0px;
    box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.275);
    opacity: 1;
}

.menu {
    justify-content: end;
    display: none;
    width: fit-content;
    cursor: pointer;
}

.menu i {
    font-size: 26px !important;
    color: var(--blue-color) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    transition: all 0.3s ease !important;
}

.menu i:hover {
    color: var(--cyan-color) !important;
}

.footer_logo .navbar-brand img {
    width: 200px;
}

/* sideebar end */


/* responsive start */


@media(max-width:1200px) {

    .Home_content h1 br {
        display: none;
    }

    .hero_img {
        height: 100% !important;
        display: flex;
        justify-content: center;
    }

    .hero_img img {
        width: 100%;
        height: 100%;
        max-width: 500px;
        object-fit: inherit;
    }

    .main_box {
        position: absolute;
        top: 65px;
        left: 0;
        right: 0;
        height: 100vh;
        z-index: -1;
    }

    .letstalk {
        display: none !important;
    }

    .dot_element img {
        display: none;
    }

}


@media(max-width:991px) {

    header .navbar .container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .menu {
        display: flex !important;
        position: static !important;
        z-index: 10000000;
        align-items: center !important;
    }

    header .navbar-nav {
        display: none;
    }

    .hero_content h1 {
        font-size: 45px;
        font-weight: 600;
    }

    .home_section .home_content h1 {
        font-size: 35px;
    }

    .home_section .home_content h1 br {
        display: none;
    }

    .main_heading {
        font-size: 34px;
        font-weight: 600;
        line-height: 46px;
    }

    .about_img {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .about_img img {
        width: 80%;
        animation: none;
        transform: translateY(0);
    }

    .about_content {
        padding-left: 0 !important;
    }
    
    .count_style {
        margin-top: 40px !important;
    }

    .why_choose_us {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .why_choose_content {
        padding-left: 0 !important;
    }

    .list_number li i {
        width: 63px;
        height: 40px;
        background-color: #097afd14;
        color: #4c69ca;
        border-radius: 0px 11px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-slider img {
        display: block;
        width: 100%;
        height: 630px;
        object-fit: cover;
    }

    .slider_section .swiper-slide::before {
        content: '';
        position: absolute;
        right: 0;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, #000000, #0e112008);
        z-index: 1;
    }


}

@media(max-width:768px) {

    .hero_content h1 {
        font-size: 35px;
        font-weight: 600;
    }

    .main_heading {
        font-size: 30px;
        font-weight: 600;
        line-height: 37px;
    }

    .home_element2 img {
        position: absolute;
        top: 40px;
        left: 18px;
        width: 50px;
        height: 50px;
        opacity: 8;
        animation: rotate-animation 10s infinite linear;
    }

    .pt-100 {
        padding: 80px 0px;
    }

    .padding_left{
        padding-left: 0px;
    }

    .pairagraph br {
        display: none;
    }

    .sociol_media_side {
        position: absolute;
        left: 13px;
        top: 287px;
        display: none;
    }

    .learn-heading {
        font-size: 30px;
        font-weight: 500;
        text-align: center;
    }

    .about_img img {
        width: 95%;
        animation: none;
        transform: translateY(0);
    }

    .about_content button {
        display: flex;
        margin: auto;
    }

    .our_costomer {
        padding: 25px;
        position: relative;
    }

    .main_heading br {
        display: none;
    }

    .carousel-control-prev {
        position: absolute;
        left: 0px;
        background: #ffffff4f;
        width: 55px;
        height: 60px;
        top: 77%;
    }

    .carousel-control-next {
        position: absolute;
        right: 0px;
        background: #ffffff4f;
        width: 55px;
        height: 60px;
        top: 77%;
        z-index: 100;
    }

    .child_heading {
        font-size: 16px;
        color: var(--black-color);
        letter-spacing: 3px;
        margin: 0;
    }

    .Home_content p br {
        display: none;
    }

    
.Home_slider {
    position: relative;
    height: 105vh;
    overflow: hidden;
    z-index: 10;
    margin-top: 78px;
}
.carousel-item .slider_img {
    width: 100%;
    height: 105vh;
    object-fit: cover;
}


}


@media(max-width:425px) {

    .home_section .home_content h1 {
        font-size: 30px;
    }

    .counter_style::before {
        content: '';
        position: absolute;
        bottom: 50px;
        left: 130px;
        height: 10px;
        width: 100px;
        background-image: url(../images/blue-line-2.png);
        background-size: cover;
    }

    .counter_style {
        background: 0 0;
        border-right: none;
        margin-top: 30px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-around;
        flex-flow: column;
        border: 1px solid #4c69ca5e;
        padding: 10px;
    }

    .our_costomer::before {
        content: '';
        position: absolute;
        background-size: cover;
        height: 28px;
        width: 28px;
        top: 0;
        left: 0;
        z-index: 100;
    }

    .our_costomer::after {
        content: '';
        position: absolute;
        background-size: cover;
        height: 30px;
        width: 35px;
        bottom: 5px;
        right: 19px;
        z-index: 100;
    }

    .main_btn {
        padding: 10px 20px;
        border: none;
        outline: none;
        background-color: var(--blue-color);
        border-top-left-radius: 10px;
        border-bottom-right-radius: 10px;
        box-shadow: -4px 3px 0px 2px #4c69ca78;
        transition: all linear 0.5s;
    }

    .hero_content h1 {
        font-size: 30px;
        font-weight: 600;
    }

    .Home_content p {
        font-size: 15px !important;
        line-height: 25px;
    }

    .next_btn {
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 60px;
        margin-top: 30px;
    }

    .talk_form_box {
        background-color: #e5e8f3;
        padding: 15px;
    }

    .why_choose_content ul li {
        list-style: none;
        display: flex;
        align-items: center;
    }

    .our_team_section .btn-dark {
        padding: 10px 14px;
        border-radius: 0px 10px;
    }

    .Home_content {
        position: absolute;
        top: 12%;
        left: 5%;
        width: 93%;
    }

    .Home_content h1 br {
        display: none;
    }

    .pairagraph {
        font-size: 15px;
        font-weight: 400;
        color: var(--black-color);
        line-height: 26px;
    }

    .our_costomer {
        padding: 20px 10px;
        position: relative;
    }

    .blog_box {
        position: relative;
        margin-top: 25px;
        transition: all linear 0.4s;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
        background: #fff;
    }

    .slider_section {
        margin-top: 65px;
        position: relative;
    }

    .swiper-button-next2 {
        height: 43px !important;
        width: 43px !important;
        background: white;
        border-radius: 50px;
        color: var(--blue-color);
        position: absolute;
        right: 35px !important;
        top: 517px !important;
    }

    .swiper-button-prev2 {
        height: 43px !important;
        width: 43px !important;
        background: white;
        border-radius: 50px;
        color: var(--blue-color);
        position: absolute;
        top: 517px !important;
        left: 218px !important;
    }

    .faq_box .accordion .top .text {
        display: flex;
    }

    .carousel-item img {
        width: 80%;
    }
}

/* --- High-Contrast Header Navigation & Mega Menu Visibility Overrides --- */
header .navbar-nav .nav-link {
    color: #1e293b !important; /* Rich slate-800 for high text visibility */
    font-weight: 600 !important;
    font-size: 15px !important;
    padding: 10px 18px !important;
    transition: all 0.3s ease;
}

header .navbar-nav .nav-link:hover,
header .navbar-nav .nav-link.active {
    color: var(--blue-color) !important;
}

.mega-menu {
    border-top: 4px solid var(--blue-color) !important;
}

.mega-menu-column h5 {
    color: var(--blue-color) !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    margin-bottom: 12px;
}

.mega-menu-column ul li a {
    color: #475569 !important; /* Clear Slate-600 */
    font-weight: 500 !important;
    font-size: 14.5px !important;
    padding: 6px 0 !important;
    display: inline-block;
    transition: all 0.2s ease;
}

.mega-menu-column ul li a:hover {
    color: var(--blue-color) !important;
    transform: translateX(3px);
}

/* ==========================================================================
   PREMIUM CUSTOM ANIMATIONS & INTERACTIVE VISUAL EFFECTS
   ========================================================================== */

/* 1. Gradient Text Styling */
.text-gradient, .gradient-text {
    background: linear-gradient(135deg, var(--blue-color) 0%, #0088cc 60%, var(--cyan-color) 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    display: inline-block;
}

/* 2. Interactive Card Lift & Border Glow */
.glass-card, 
.subservice-card, 
.gallery-box, 
.blog-card, 
.contact-card-box, 
.serv_box, 
.about-story-p,
.faq_box .glass-card {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                border-color 0.4s ease !important;
}

.glass-card:hover, 
.subservice-card:hover, 
.gallery-box:hover, 
.blog-card:hover, 
.contact-card-box:hover, 
.serv_box:hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 0 20px 40px rgba(11, 65, 205, 0.12) !important;
    border-color: var(--cyan-color) !important;
}

/* 3. Glowing Pulse Animation for CTA Widgets */
@keyframes pulse-glow-blue {
    0% {
        box-shadow: 0 0 0 0 rgba(11, 65, 205, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(11, 65, 205, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(11, 65, 205, 0);
    }
}

@keyframes pulse-glow-green {
    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);
    }
}

/* Apply pulse glow to floating CTA buttons */
.call-float {
    animation: pulse-glow-blue 2s infinite !important;
}

.whatsapp-float {
    animation: pulse-glow-green 2s infinite !important;
}

/* 4. Button Light Shimmer Sweep Hover Effect */
.btn-blue, .btn-cyan, .btn-submit {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-blue::after, .btn-cyan::after, .btn-submit::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: 0.75s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
    opacity: 0;
}

.btn-blue:hover::after, .btn-cyan:hover::after, .btn-submit:hover::after {
    left: 125%;
    opacity: 1;
}

/* 5. Smooth Entrance Transition classes */
.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

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

/* ==========================================================================
   BUTTON & INTERACTIVE ELEMENT LOGO COLOR THEME OVERRIDES
   ========================================================================== */

.btn-blue, .btn-submit {
    background-color: var(--blue-color) !important;
    color: #ffffff !important;
    border: 2px solid var(--blue-color) !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
}

.btn-blue:hover, .btn-submit:hover {
    background-color: var(--cyan-color) !important;
    border-color: var(--cyan-color) !important;
    color: #ffffff !important;
}

.btn-cyan {
    background-color: var(--cyan-color) !important;
    color: #ffffff !important;
    border: 2px solid var(--cyan-color) !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
}

.btn-cyan:hover {
    background-color: var(--blue-color) !important;
    border-color: var(--blue-color) !important;
    color: #ffffff !important;
}

/* Accent details for section tags and checkmarks */
.section-tag {
    color: var(--cyan-color) !important; /* Golden Orange for highlights */
}

.fa-circle-check, .text-success {
    color: var(--cyan-color) !important; /* Checkmarks in logo golden orange */
}

/* Smooth gradient updates for text and cards */
.text-gradient, .gradient-text {
    background: linear-gradient(135deg, var(--blue-color) 0%, #104595 50%, var(--cyan-color) 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

/* Clean footer overrides */
.footer {
    padding-top: 50px !important;
    padding-bottom: 20px !important; /* Reduce bottom padding */
    background-image: none !important; /* Remove background gradient */
    background-color: var(--dark-premium) !important; /* Flat solid dark premium color */
}

footer::before, footer:before {
    display: none !important; /* Remove the background image pattern overlay completely */
}

.copyright {
    padding-top: 12px !important;
    padding-bottom: 12px !important; /* Tighten copyright section padding */
    margin-top: 0 !important;
}

/* Hide double lines under QUICK LINKS and other footer headings */
.footer_quick_links h5::before,
.footer_quick_links h5::after,
.footer_contact h5::before,
.footer_contact h5::after {
    display: none !important;
}

/* Increase footer text and link visibility */
.footer .text-muted, 
.footer a.text-muted,
.footer p.text-muted,
.footer_quick_links ul li a,
.footer_contact ul li,
.footer_contact ul li a {
    color: #cbd5e1 !important; /* Silver/Light Grey for high text visibility on dark background */
    transition: all 0.3s ease;
}

.footer a.text-muted:hover,
.footer_quick_links ul li a:hover,
.footer_contact ul li a:hover {
    color: var(--cyan-color) !important; /* Glows golden-yellow on hover */
    text-decoration: none;
}

/* Scale hero section title size on small screen devices */
@media (max-width: 767px) {
    .premium-hero h1 {
        font-size: 30px !important;
        line-height: 1.25 !important;
    }
}

/* Align mega menu dropdown: perfectly centered relative to the container and touching the header bottom */
header .navbar-nav .features_list {
    position: static !important;
}

header .navbar-nav .features_list .sub_menu.mega-menu {
    left: 50% !important;
    right: auto !important;
    top: 100% !important; /* Touch header bottom exactly */
    transform: translateX(-50%) scaleY(0) !important;
    transform-origin: top center !important;
    transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease !important;
}

header .navbar-nav .features_list:hover .sub_menu.mega-menu {
    transform: translateX(-50%) scaleY(1) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Increase text visibility on all service subpages and details sections */
.subservice-card p,
.subservice-card .text-muted,
.about_section p,
.about-story-p,
.service-details-content p,
.details-para {
    color: #334155 !important; /* Slate-700 for high-contrast, comfortable body text reading */
    font-size: 15px !important;
    line-height: 26px !important;
}

.subservice-card h5 {
    color: var(--blue-color) !important; /* Ensure headings use the solid corporate blue */
    font-weight: 700 !important;
}

/* Remove gradient background from breadcrumb banners on service/inner pages */
.breadcrumb-banner {
    background: #051a37 !important; /* Solid premium dark navy background instead of linear-gradient */
    border-bottom: 3px solid var(--cyan-color) !important; /* Elegant golden yellow bottom border */
    padding: 140px 0 90px 0 !important; /* Spacious and balanced top/bottom padding */
}

/* Premium Sidebar Related Services Links */
.sidebar-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.sidebar-links li {
    margin-bottom: 12px !important;
}

.sidebar-links li a {
    background: #f8fafc !important; /* Soft grey background for high contrast */
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important; /* Rounded corners */
    color: #1e293b !important; /* Slate-800 for high-contrast dark text */
    padding: 18px 24px !important; /* Taller and larger button box (Perfectly balanced left & right) */
    font-size: 16px !important; /* Increased text size */
    font-weight: 700 !important; /* Bold, premium weight */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.01) !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Sidebar Links hover state - forced high specificity to prevent text turning white */
.glass-card .sidebar-links li a:hover,
.sidebar-links li a:hover {
    background: #ffffff !important;
    border-color: var(--cyan-color) !important;
    border-left: 5px solid var(--cyan-color) !important; /* Elegant golden yellow left accent border */
    color: var(--blue-color) !important; /* Force deep blue color on hover, never white! */
    padding: 18px 24px !important; /* Balanced left & right padding */
    box-shadow: 0 8px 20px rgba(12, 61, 125, 0.06) !important;
}

/* Sidebar active link styling */
.glass-card .sidebar-links li a.active,
.sidebar-links li a.active {
    background: var(--blue-color) !important;
    border-color: var(--blue-color) !important;
    border-left: 5px solid var(--cyan-color) !important; /* Gold border accent */
    color: #ffffff !important; /* Active text color stays solid white */
    box-shadow: 0 10px 25px rgba(12, 61, 125, 0.18) !important;
    padding: 18px 24px !important; /* Balanced left & right padding */
}

/* Arrow icon rotation & translation animation inside sidebar links */
.sidebar-links li a i {
    transition: all 0.4s ease !important;
    color: var(--cyan-color) !important; /* Gold arrow */
}

.sidebar-links li a:hover i {
    transform: translateX(5px) !important;
    color: var(--blue-color) !important;
}

.sidebar-links li a.active i {
    color: #ffffff !important;
    transform: translateX(5px) !important;
}

/* CTA Buttons width formatting to fill available container space */
.process_section .btn-blue,
.process_section .btn-cyan,
.instant-help-section .btn-cyan {
    width: 100% !important;
    max-width: 380px !important;
    text-align: center !important;
    justify-content: center !important;
    display: inline-flex !important;
    align-items: center !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

/* Mobile Header Logo & Toggle Centering Adjustments */
@media(max-width: 575px) {
    header .navbar-brand img {
        max-width: 145px !important;
        height: auto !important;
    }
    .menu i {
        font-size: 22px !important;
        width: 32px !important;
        height: 32px !important;
    }
    header .navbar {
        padding-top: 12px !important;
        padding-bottom: 12px !important;
    }
}

/* --- Mobile Sidebar Navigation Visibility & Contrast Enhancements --- */
.sidebar {
    background-color: #ffffff !important;
    opacity: 1 !important;
    padding: 20px 15px !important;
}

.sidebar .navbar-nav .nav-link {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #051a37 !important; /* Premium deep navy for maximum contrast */
    padding: 10px 12px !important;
    border-bottom: 1px solid #e2e8f0 !important;
    display: block !important;
    transition: all 0.3s ease !important;
}

.sidebar .navbar-nav .nav-link:hover,
.sidebar .navbar-nav .nav-link:focus {
    color: var(--blue-color) !important;
    background-color: #f8fafc !important;
    border-radius: 8px !important;
}

.sidebar details {
    border-bottom: 1px solid #e2e8f0 !important;
    margin-bottom: 5px !important;
    padding: 10px 12px !important;
}

.sidebar details summary {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #051a37 !important;
    cursor: pointer !important;
    outline: none !important;
    list-style: none !important;
}

.sidebar details summary::-webkit-details-marker {
    display: none !important;
}

.sidebar details ul {
    padding-left: 15px !important;
    margin-top: 8px !important;
}

.sidebar details ul li {
    padding: 6px 0 !important;
}

.sidebar details ul li a {
    font-size: 15px !important;
    color: #475569 !important; /* High contrast Slate-600 sublinks */
    font-weight: 600 !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    transition: all 0.3s ease !important;
}

.sidebar details ul li a:hover {
    color: var(--blue-color) !important;
    padding-left: 5px !important;
}

/* Mobile Sidebar contact box & long email wrapping */
.sidebar .navbar-nav li.mt-4.p-3 {
    background-color: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    margin-top: 25px !important;
    padding: 15px !important;
}

.sidebar .navbar-nav li.mt-4.p-3 p {
    font-size: 13px !important;
    color: #334155 !important;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
}

.sidebar .navbar-nav li.mt-4.p-3 p:last-child {
    font-size: 11.5px !important;
    color: #475569 !important;
    margin-bottom: 0 !important;
    word-break: break-all !important; /* Prevent long email overflow */
}

/* Symmetrical and separate small floating WhatsApp and Call buttons on mobile */
@media(max-width: 767px) {
    /* Completely hide the bottom sticky CTA bar so the screen bottom is 100% clear */
    .sticky-cta-mobile {
        display: none !important;
    }
    
    /* Show and style both floating buttons as small, separate circles on mobile */
    .call-float, 
    .whatsapp-float {
        display: flex !important;
        position: fixed !important;
        right: 20px !important;
        width: 48px !important;
        height: 48px !important;
        border-radius: 50% !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2) !important;
        z-index: 99999 !important;
        transition: transform 0.3s ease !important;
        border: none !important;
    }
    
    /* Distinct vertical positions so they are stacked and separate */
    .whatsapp-float {
        bottom: 20px !important;
        background-color: #25d366 !important; /* Solid classic WhatsApp Green */
        background: #25d366 !important;
        color: #ffffff !important;
        font-size: 24px !important;
    }
    
    .whatsapp-float:hover {
        background-color: #20ba5a !important;
        background: #20ba5a !important;
    }
    
    .call-float {
        bottom: 80px !important;
        background-color: var(--blue-color) !important; /* Solid corporate Blue */
        background: var(--blue-color) !important;
        color: #ffffff !important;
        font-size: 20px !important;
    }
    
    .call-float:hover {
        background-color: #092e62 !important;
        background: #092e62 !important;
    }
    
    /* Ensure only icons are present (no text) */
    .call-float i,
    .whatsapp-float i {
        margin: 0 !important;
        color: #ffffff !important;
    }
}

























