﻿
:root {
    --color-prime: #082c50;
    --color-prime-dark: #1b3958;
    --color-prime-light: #346293;
    --color-secondary: #a37034;
    --color-secondary-dark: #845927;
    --color-surface: #f8f9fa;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #4a5568;
    background-color: var(--color-surface);
    scroll-behavior: smooth;
}

h1, h2, h3, h4, .font-serif {
    font-family: 'Playfair Display', "Georgia", "Times New Roman", serif;
}

/* Utility Theme Mappings */
.bg-prime {
    background-color: var(--color-prime) !important;
}

.bg-white {
    background: #fff;
}

.text-prime {
    color: var(--color-prime) !important;
}

.text-secondary-custom {
    color: var(--color-secondary) !important;
}




/*===============nav==============*/
/* Active Nav */
.nav-link.active-nav,
.nav-link.active {
    color: var(--color-secondary) !important;
    font-weight: 600;
}

.active-nav {
    color: var(--color-secondary);
    font-weight: 600;
}

.nav-link.active-nav {
    color: var(--color-secondary);
}

/* Hover Effect */
.nav-link:hover {
    color: var(--color-secondary) !important;
    transition: color 0.3s ease;
}

/* Logo */
.navbar-logo {
    height: 50px;
    width: auto;
}

/* Navbar spacing */
.navbar {
    min-height: auto;
}


/* ================= NEW DROPDOWN BEAUTIFICATION & ICONS ================= */


.dropdown-toggle::after {
    display: none !important;
}

.dropdown-arrow {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
    opacity: 0.8;
}


.dropdown-menu {
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px; 
    padding: 0.75rem 0.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08); 
}


.dropdown-item {
    padding: 0.6rem 1.2rem;
    border-radius: 8px; 
    color: #4a5568;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
}

    .dropdown-item i {
        color: var(--color-secondary);
        transition: color 0.25s ease;
        width: 25px; 
        text-align: left;
    }

    .dropdown-item:hover {
        background-color: var(--color-secondary) !important;
        color: #ffffff !important;
        transform: translateX(4px); 
    }

        .dropdown-item:hover i {
            color: #ffffff !important;
        }


/* ================= DESKTOP STYLES (Hover + Slide Up Animation) ================= */
@media (min-width: 992px) {

    .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(15px); 
        transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s;
    }

    /* Desktop hover states trigger */
    .nav-item.dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0); 
    }

   
    .nav-item.dropdown:hover .dropdown-arrow {
        transform: rotate(180deg);
    }
}


/* ================= MOBILE STYLES (Your Original Layout Fixes Retained) ================= */
@media (max-width: 991px) {

    .navbar .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .navbar-logo {
        height: 40px;
    }

    .navbar-toggler {
        margin-left: auto;
    }

    
    .dropdown-menu {
        display: none;
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        padding-left: 1rem;
        background-color: rgba(0, 0, 0, 0.02); 
        border-radius: 8px;
        margin-top: 0.5rem;
    }

   
    .dropdown.show .dropdown-menu {
        display: block !important;
    }

    
    .dropdown.show .dropdown-arrow {
        transform: rotate(180deg);
    }

    
    .dropdown-item:hover {
        transform: none;
    }
}


/*===============nav-end==============*/


.btn-secondary-custom {
    background-color: var(--color-secondary) !important;
    color: #ffffff !important;
    font-weight: 600;
    border-radius: 2px;
    border: 1px solid var(--color-secondary) !important;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

    .btn-secondary-custom:hover {
        background-color: var(--color-secondary-dark) !important;
        border-color: var(--color-secondary-dark) !important;
        color: #ffffff !important;
    }

.btn-outline-white {
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    color: #ffffff !important;
    border-radius: 2px;
    transition: all 0.3s ease;
    background: transparent;
    text-decoration: none;
    display: inline-block;
}

    .btn-outline-white:hover {
        border-color: var(--color-secondary) !important;
        color: var(--color-secondary) !important;
        background: rgba(255, 255, 255, 0.05) !important;
    }


/* Background images */
.hero-bg-1 {
    background-image: url('../images/banner-1.jpg');
}

.hero-bg-2 {
    background-image: url('../images/banner-2.jpg');
}

.hero-bg-3 {
    background-image: url('../images/banner-3.jpg');
}

/* Badge */
.hero-badge {
    font-size: 0.85rem;
    letter-spacing: 2px;
    background: #000;
    color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    padding: 5px 12px;
    border-radius: 4px;
    display: inline-block;
}

/* Subtitle */
.hero-subtitle {
    font-size: 0.8rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 1rem;
}

/* Paragraph width */
.hero-text {
    max-width: 600px;
}

/* Premium Hero Slider Layer Setup */
.carousel-item-hero {
    height: 80vh;
    min-height: 500px;
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
}

.slider-overlay {
    background: linear-gradient(rgba(39, 80, 122, 0.85), rgba(27, 57, 88, 0.4));
    width: 100%;
    height: 100%;
}

/* Premium Infinite Marquee Track Setup */
.marquee-wrapper {
    overflow: hidden;
    background-color: #11273e;
    border-top: 1px solid rgba(163, 112, 52, 0.3);
    border-bottom: 1px solid rgba(163, 112, 52, 0.3);
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.marquee-container {
    display: inline-flex;
    animation: marqueeLinear 25s linear infinite;
}

.marquee-wrapper:hover .marquee-container {
    animation-play-state: paused;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    padding: 0 2.5rem;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.marquee-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-secondary);
    border-radius: 50%;
    margin-right: 1.5rem;
    display: inline-block;
}

@keyframes marqueeLinear {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* Standardized Component Micro-interactions */
.service-card, .blog-card, .team-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

    .service-card:hover, .blog-card:hover, .team-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 24px rgba(39, 80, 122, 0.08);
        border-color: var(--color-secondary);
    }

.team-card {
    cursor: pointer;
}

.service-card .icon-box svg {
    fill: var(--color-secondary);
    width: 36px;
    height: 36px;
}

.read-more {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: var(--color-secondary);
    text-decoration: none;
    transition: color 0.3s;
    background: none;
    border: none;
    padding: 0;
}

    .service-card:hover .read-more, .blog-card:hover .read-more, .read-more:hover {
        color: var(--color-prime);
    }

.hover-secondary:hover {
    color: var(--color-secondary) !important;
}

/* Custom styling for Carousel controls */
.custom-carousel-control {
    width: 45px;
    height: 45px;
    background-color: var(--color-prime);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.85;
    transition: all 0.3s ease;
    z-index: 10;
}

    .custom-carousel-control:hover {
        background-color: var(--color-secondary);
        opacity: 1;
    }

/* Bulletproof Multi-Card Carousel Config */
.blog-slider-container .carousel-item {
    transition: transform 0.6s ease-in-out;
}

/* Desktop Config */
@media (max-width: 768px) {
    .taxation-intro-sec {
        
        padding: 20px !important;
      
    }
}
    @media (min-width: 768px) {
        .blog-slider-container .blog-cards-row {
            display: flex !important;
            flex-direction: row !important;
            flex-wrap: nowrap !important;
            gap: 24px;
            width: 100%;
        }

        .blog-slider-container .blog-card-wrapper {
            flex: 0 0 calc(33.3333% - 16px) !important;
            max-width: calc(33.3333% - 16px) !important;
            box-sizing: border-box;
        }
    }

    /* Mobile Config Stacked */
    @media (max-width: 767.98px) {
        .blog-slider-container .blog-cards-row {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
    }

    .xhidden {
        overflow: hidden;
    }
    /* Contacts Icon Container Alignments */
    .contact-item-icon {
        color: var(--color-secondary);
        flex-shrink: 0;
        margin-top: 3px;
    }

    /* Social Icons Branding */
    .social-link-linkedin {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
        border-radius: 4px;
        transition: all 0.3s ease;
        text-decoration: none;
    }

        .social-link-linkedin:hover {
            background: #0077b5;
            color: #fff;
            transform: translateY(-2px);
        }



    .stat-text {
        font-size: 0.7rem;
        font-weight: 600;
    }

    .about-quote-box {
        border-color: var(--color-secondary) !important;
    }

    .about-text {
        line-height: 1.8;
    }

    .about-more-text {
        line-height: 1.8;
        border-top: 1px dashed #e2e8f0;
        padding-top: 1rem; /* pt-3 equivalent */
    }

    .services-section {
        background-color: var(--color-surface);
    }

    .services-header {
        max-width: 700px;
    }

    .services-divider {
        width: 50px;
        height: 2px;
        opacity: 1;
        background-color: var(--color-secondary);
    }

    .team-header {
        max-width: 700px;
    }

    .team-divider {
        width: 50px;
        height: 2px;
        opacity: 1;
        background-color: var(--color-secondary);
    }

    .team-slider {
        max-width: 900px;
        margin: 0 auto;
    }

    .team-card-width {
        max-width: 750px;
    }

    .team-img-box {
        height: 320px;
        background: #e2e8f0;
    }

    .team-role {
        font-size: 0.75rem;
        font-weight: 600;
    }

    .team-control-icon {
        width: 20px;
        height: 20px;
    }

    .modal-img-box {
        min-height: 350px;
    }

    .modal-text {
        line-height: 1.7;
    }


    .bg-surface {
        background-color: var(--color-surface);
    }

    .blog-header {
        max-width: 700px;
    }

    .blog-divider {
        width: 50px;
        height: 2px;
        opacity: 1;
        background-color: var(--color-secondary);
    }

    .blog-img {
        height: 200px;
    }

    .blog-tag {
        font-size: 0.7rem;
        font-weight: 600;
    }

    .blog-prev {
        left: -25px;
    }

    .blog-next {
        right: -25px;
    }

    .blog-icon {
        width: 20px;
        height: 20px;
    }


    .contact-label {
        font-size: 0.75rem;
    }

    .contact-address {
        max-width: 380px;
    }

    .contact-map {
        height: 380px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .map-frame {
        border: 0;
    }


    /*======breadcumb=======*/
    .team_top {
        background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/team_top.jpg');
        background-size: cover;
        background-position: center;
    }

    .blog_top {
        background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/blog_top.jpg');
        background-size: cover;
        background-position: center;
    }

    .contact_top {
        background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/contact_top.jpg');
        background-size: cover;
        background-position: center;
    }

    .about_top {
        background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/about_top.jpg');
        background-size: cover;
        background-position: center;
    }

    .services_top {
        background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/services_top.jpg');
        background-size: cover;
        background-position: center;
    }

    .taxation_top {
        background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/taxation_top.jpg');
        background-size: cover;
        background-position: center;
    }

.NRI_top {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/NRI_top.jpg');
    background-size: cover;
    background-position: center;
}

.Audit_top {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/Audit_top.jpg');
    background-size: cover;
    background-position: center;
}

.Business_top {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/Business_top.jpg');
    background-size: cover;
    background-position: center;
}

.Virtual_top {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/Virtual_top.jpg');
    background-size: cover;
    background-position: center;
}

.Compliance_top {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/Compliance_top.jpg');
    background-size: cover;
    background-position: center;
}

.NGOs_top {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/NGOs_top.jpg');
    background-size: cover;
    background-position: center;
}

.Estate_top {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/Estate_top.jpg');
    background-size: cover;
    background-position: center;
}

    .hero {
        height: 40vh;
        display: flex;
        align-items: center;
        color: white;
        text-align: center;
    }




    /*======blogs=======*/
.text-gold{color:var(--color-secondary);}
.blogs .leading-relaxed {
    line-height: 1.85 !important;
}

    .blogs .leading-snug {
        line-height: 1.4 !important;
    }

    .blogs .tracking-tight {
        tracking: -0.025em;
    }

    .blogs .article-rich-text-container p {
        font-size: 1.05rem;
        color: #2b2b2b;
        line-height: 1.85;
    }

    .blogs .hover-secondary-link {
        transition: color 0.2s ease;
    }

        .blogs .hover-secondary-link:hover {
            color: var(--color-secondary, #0077b5) !important;
        }

    /* Responsive rules for sidebar positioning */
    @media (min-width: 992px) {
        .blogs .sticky-top-sidebar {
            position: sticky !important;
            top: 4rem !important;
            z-index: 10;
        }
    }

    /* Elegant blockquote decoration override */
    .blogs .border-secondary-custom {
        border-color: var(--color-secondary, #333) !important;
    }

    .blogs .text-secondary-custom {
        color: var(--color-secondary, #0077b5) !important;
    }


    /*======about=======*/
    .about_all_surface {
        background-color: var(--color-surface);
    }

    .about_all_bg_prime {
        background-color: var(--color-prime);
    }

    .about_all_bg_secondary {
        background-color: var(--color-secondary);
    }

    .about_all_text_prime {
        color: var(--color-prime);
    }

    .about_all_text_secondary {
        color: var(--color-secondary);
    }

    .about_all_border_prime {
        border-color: var(--color-prime) !important;
    }

    .about_all_badge {
        color: var(--color-prime-light);
    }

    /* Element Background & Transitions */
    .about_all_image_wrapper {
        background-color: rgba(8, 44, 80, 0.07);
    }

    .about_all_hover_top {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

        .about_all_hover_top:hover {
            transform: translateY(-5px);
            box-shadow: 0 .5rem 1.5rem rgba(8, 44, 80, 0.08) !important;
        }

    .about_all_text_prime {
        color: var(--color-prime);
    }

    .about_all_image_wrapper {
        background-color: rgba(8, 44, 80, 0.07);
    }

    .about_all_icon_box {
        width: 54px;
        height: 54px;
        flex-shrink: 0;
    }

    .about_all_img_fit {
        max-height: 100%;
        max-width: 100%;
    }

    .about_all_hover_top {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

        .about_all_hover_top:hover {
            transform: translateY(-5px);
            box-shadow: 0 .5rem 1.5rem rgba(8, 44, 80, 0.08) !important;
        }

    .about_all_text_prime {
        color: var(--color-prime);
    }

    .about_all_icon_wrapper {
        background-color: rgba(8, 44, 80, 0.07);
    }

    .about_all_icon_box {
        width: 54px;
        height: 54px;
        flex-shrink: 0;
    }


    /*======taxation=======*/

    /* Direct Tax Intro Section Class Styles */
    .taxation-intro-sec {
        background-color: #ffffff;
        padding: 50px;
        border-radius: 10px;
    }

    .taxation-heading-main {
        color: var(--color-prime);
        letter-spacing: -0.02em;
    }

    .taxation-text-lead {
        color: var(--color-prime-dark);
        font-size: 1.15rem;
        line-height: 1.6;
        font-weight: 500;
    }

    .taxation-text-body {
        font-size: 1rem;
        line-height: 1.65;
    }

    .taxation-img-container {
        background: rgba(8, 44, 80, 0.03);
        border: 1px solid rgba(8, 44, 80, 0.08);
    }

    .taxation-img-asset {
        max-height: 400px;
        min-height: 350px;
    }

    .taxation-accent-line-top {
        width: 64px;
        height: 4px;
        background-color: var(--color-secondary);
    }

    .taxation-accent-line-side {
        width: 4px;
        height: 64px;
        background-color: var(--color-prime-light);
    }


    /* Minimalist Pointer Path Styles */
    .compliance-section-clean {
        background-color: var(--color-surface);
    }

    .compliance-label-clean {
        color: var(--color-secondary) !important;
        letter-spacing: 0.05em;
    }

    .compliance-heading-clean {
        color: var(--color-prime);
        letter-spacing: -0.02em;
    }

    .compliance-lead-clean {
        color: var(--color-prime-dark);
        font-weight: 600;
    }

    /* Vertical Pointer Track */
    .pointer-track-list {
        position: relative;
        padding-left: 32px;
        border-left: 2px solid rgba(8, 44, 80, 0.1);
    }

    .pointer-node-item {
        position: relative;
    }

        /* Custom Pointer Dot using exact brand colors */
        .pointer-node-item::before {
            content: "";
            position: absolute;
            left: -43px;
            top: 4px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background-color: #ffffff;
            border: 4px solid var(--color-secondary);
            box-shadow: 0 0 0 4px rgba(163, 112, 52, 0.15);
            z-index: 2;
            transition: all 0.3s ease;
        }

        .pointer-node-item:hover::before {
            background-color: var(--color-prime);
            border-color: var(--color-prime-light);
        }

    .pointer-node-title {
        color: var(--color-prime);
        font-weight: 700;
        font-size: 1.05rem;
    }

    .pointer-node-text {
        font-size: 0.925rem;
        line-height: 1.5;
    }

    /* Minimalist Callout Line Accent */
    .compliance-accent-callout {
        border-left: 3px solid var(--color-secondary);
        padding-left: 1.25rem;
    }

    .compliance-media-frame {
        background: rgba(8, 44, 80, 0.03);
        border: 1px solid rgba(8, 44, 80, 0.08);
    }

    .compliance-media-img {
        max-height: 520px;
        object-fit: cover;
    }

    .tab-content > .tab-pane {
        display: none;
    }

    .tab-content > .active {
        display: block !important;
    }
    /* Custom Tracking Pointers (Clean Layout styles) */
    .pointer-node-title {
        font-weight: 600;
        color: #212529;
    }

    .compliance-section-clean {
        padding-bottom: 2rem;
    }



/*======audit=======*/

/* Utility & Typography Classes */
.alstn .fw-black {
    font-weight: 900;
}

.alstn .fw-extrabold {
    font-weight: 800;
}

.alstn .text-dark-emphasis {
    color: #212529 !important;
}


/* Font Sizing Extensions */
.alstn .fs-xs {
    font-size: 0.65rem;
    letter-spacing: 1px;
}

.alstn .fs-badge {
    font-size: 0.6rem;
    letter-spacing: 0.5px;
}

/* Layout Sizing Extensions */
.alstn .p-bento {
    padding: 0.95rem 1.25rem !important;
}

.alstn .bento-hero-lead {
    font-size: 1rem;
    max-width: 420px;
}

.alstn .bento-icon-badge {
    width: 38px;
    height: 38px;
}

.alstn .bento-pointer-wrapper {
    width: 24px;
    height: 24px;
}

/* Visual Effects & Background Assets */
.alstn .backdrop-filter-blur {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.alstn .bento-bg-radial-primary {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.05) 0%, transparent 70%);
}

.alstn .bento-bg-radial-secondary {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(108, 117, 125, 0.08) 0%, transparent 70%);
}

.alstn .bento-grid-overlay {
    background-image: linear-gradient(#fff 1px, transparent 1px), linear-gradient(90deg, #fff 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Interactive Component Modules */
.alstn .bento-node {
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.01);
}

.alstn .transition-bento {
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

    /* Micro-Interactions */
    .alstn .transition-bento:hover {
        transform: translateX(6px);
        background-color: #ffffff !important;
        border-color: rgba(13, 110, 253, 0.25) !important;
        box-shadow: 0 10px 25px rgba(13, 110, 253, 0.04) !important;
    }

        .alstn .transition-bento:hover .node-pointer {
            transform: scale(1.15);
            color: #000000 !important;
        }

/* Grid Equalization Overrides */
@media (min-width: 992px) {
    .alstn .match-height-grid {
        display: flex;
        align-items: stretch;
    }
}

.he_sub {
    font-size: 21px;
    color: var(--color-secondary);
}

/*=======vertual===========*/
.vertual-section {
    padding: 3rem 0;
    overflow: hidden;
}

.vertual-title {
    color: var(--color-prime);
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

    .vertual-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background-color: var(--color-secondary);
    }

.vertual-card {
    background: #ffffff;
    border: none;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(8, 44, 80, 0.04);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
}

    .vertual-card:hover {
        transform: translateY(-7px);
        box-shadow: 0 15px 30px rgba(8, 44, 80, 0.12);
    }

.vertual-icon-box {
    width: 60px;
    height: 60px;
    background-color: rgba(163, 112, 52, 0.1);
    color: var(--color-secondary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 22px;
    transition: all 0.3s ease;
}

.vertual-card:hover .vertual-icon-box {
    background-color: var(--color-prime);
    color: #ffffff;
}

.vertual-card-title {
    color: var(--color-prime);
    font-weight: 600;
    font-size: 1.25rem;
}

.vertual-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

    .vertual-list li {
        position: relative;
        padding-left: 25px;
        margin-bottom: 12px;
        color: var(--color-prime-dark);
        font-size: 0.95rem;
        line-height: 1.5;
    }

        .vertual-list li::before {
            content: "\f00c"; /* FontAwesome Checkmark */
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 2px;
            color: var(--color-secondary);
            font-size: 0.85rem;
        }

/* Custom accent styling for the featured strategy card */
.vertual-card-featured {
    border-top: 4px solid var(--color-secondary) !important;
}

/*=========compliance=========*/
.compliance-section-wrapper {
    background-color: var(--color-surface);
}

.compliance-title-main {
    color: var(--color-prime);
    font-weight: 700;
}

.compliance-text-muted {
    color: #5f666d;
}

/* Full Width Row Card Style */
.compliance-full-row-card {
    border: none;
    border-radius: 12px;
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(8, 44, 80, 0.05);
    transition: all 0.3s ease-in-out;
}

    .compliance-full-row-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 25px rgba(8, 44, 80, 0.1);
    }

/* Left side layout with Icon Box */
.compliance-left-block {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.compliance-icon-container {
    width: 55px;
    height: 55px;
    background-color: rgba(8, 44, 80, 0.08);
    color: var(--color-prime);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Service List Styles for Right Column */
.compliance-service-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
}

    .compliance-service-list li {
        position: relative;
        padding-left: 1.75rem;
        margin-bottom: 0.6rem;
    }

        .compliance-service-list li::before {
            content: "\f00c"; /* Font Awesome 'check' unicode */
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--color-secondary);
        }

.compliance-note-box {
    border-top: 1px solid rgba(8, 44, 80, 0.1);
}

/*========ngos========*/
