        :root {
            --gold: #D4AF37;
            --navy-dark: #0A192F;
            --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        body { font-family: 'Inter', sans-serif; background-color: #f8f9fa; color: #333; overflow-x: hidden; }
            

        .parajust{
            text-align: justify;
        }
        /* --- Navbar Upgrade --- */
        .custom-nav {
        padding: 20px 0;
            transition: var(--transition);
            background: transparent;
            z-index: 999;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            
        }
        /* Animated Divider Effect */
        
        .custom-nav.scrolled {
            padding: 10px 0;
            background: rgba(10, 25, 47, 0.98);
            backdrop-filter: blur(15px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        }
        
        .custom-nav::after {
          content: "";
          position: absolute;
          bottom: 0;
          left: -200px;
          width: 200px;
          height: 1px;
          background: linear-gradient(90deg, transparent, #fff, transparent);
          animation: moveLine 6s linear infinite;
        }
        @keyframes moveLine {
          0% { left: -200px; }
          100% { left: 100%; }
        }
        .custom-nav.scrolled::after {
          content: "";
          position: absolute;
          bottom: 0;
          left: -200px;
          width: 200px;
          height: 1px;
          background: linear-gradient(90deg, transparent, #ffd369, transparent);
          animation: moveLine 4s linear infinite;
        }
        @keyframes moveLine {
          0% { left: -200px; }
          100% { left: 100%; }
        }
        .navbar-brand { 
            display: flex; 
            align-items: center; 
            font-size: clamp(1.2rem, 5vw, 1.6rem); 
            color: #fff !important; 
            font-weight: 800; 
        }
        .logo-img {
            height: 45px; /* Aap isse bada ya chota kar sakte hain */
            width: auto;
            margin-right: 12px;
            transition: var(--transition);
        }
        .logo-light { font-weight: 300; color: var(--gold); }

        /* --- Nav Items & After Effect --- */
        .nav-link { 
            color: rgba(255, 255, 255, 0.85) !important; 
            margin: 0 10px; 
            font-weight: 500; 
            font-size: 0.95rem;
            position: relative;
            padding: 6px 0 !important;
            transition: var(--transition);
        }

        .nav-link::after {
       content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 50%;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            transition: var(--transition);
            transform: translateX(-50%);
            box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
        }

        .nav-link:hover::after { width: 100%; }
        .nav-link:hover { color: #fff !important; 
            transform: translateY(-1px);}

        .btn-premium {
           background: var(--gold);
            color: #000 !important;
            padding: 7px 20px !important;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.85rem;
            border: 1.5px solid var(--gold);
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-left: 15px;
        }

        .btn-premium:hover {
           background: transparent;
            color: var(--gold) !important;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
            transform: scale(1.05);
        }

        /* --- Hero Slider & Zoom --- */
        .hero-slider { position: relative; height: 100vh; width: 100%; overflow: hidden; }
        .carousel-item { height: 100vh; }

        .zoom-bg {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-size: cover;
            background-position: center;
            animation: kenburns 20s infinite alternate ease-in-out;
            z-index: 1;
        }

        @keyframes kenburns {
            0% { transform: scale(1); }
            100% { transform: scale(1.25); }
        }

        .overlay {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(75deg, rgba(10, 25, 47, 0.95) 20%, rgba(10, 25, 47, 0.4) 100%);
            z-index: 2;
        }

        /* --- Content Container Fixes --- */
        .hero-content-wrapper {
            position: absolute;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
            width: 100%;
            z-index: 10;
            padding: 0 15px;
        }

        .hero-animate {
            animation: fadeInUp 1.2s ease-out forwards;
            opacity: 0;
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Responsive Text */
        .display-3 { 
            font-size: clamp(2rem, 6vw, 4rem); 
            line-height: 1.1;
        }
        
        .text-gold { color: var(--gold); letter-spacing: 2px; font-weight: 600; font-size: clamp(0.75rem, 3vw, 0.9rem); }
        
        .text-gradient {
            background: linear-gradient(90deg, #fff, var(--gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .lead { 
            font-size: clamp(0.95rem, 3vw, 1.2rem);
            max-width: 600px; 
            opacity: 0.85; 
        }

        /* Button Refinement */
        .btn-custom {
            padding: clamp(10px, 2.5vw, 15px) clamp(25px, 5vw, 45px);
            font-weight: 700;
            border-radius: 50px;
            transition: var(--transition);
            display: inline-block;
            text-decoration: none;
            font-size: clamp(0.85rem, 2.5vw, 1rem);
        }

        .btn-primary-gold {
            background: var(--gold);
            border: 2px solid var(--gold);
            color: #000;
        }

        .btn-primary-gold:hover {
            background: transparent;
            color: var(--gold);
            transform: translateY(-3px);
        }

        .btn-outline-white {
            border: 2px solid #fff;
            color: #fff;
        }

        .btn-outline-white:hover {
            background: #fff;
            color: #000;
            transform: translateY(-3px);
        }

        /* --- Mobile Specific Fixes --- */
        @media (max-width: 991px) {
            .navbar-collapse {
                background: var(--navy-dark);
                padding: 25px;
                border-radius: 20px;
                margin-top: 15px;
                box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            }
            .nav-link { margin: 10px 0; text-align: center; }
            .nav-link::after { bottom: -2px; }
            
            .hero-content-wrapper { text-align: center; top: 55%; }
            .lead { margin-left: auto; margin-right: auto; }
            
            .hero-btns {
                display: flex;
                flex-direction: column;
                gap: 12px;
                width: 100%;
                max-width: 300px;
                margin: 0 auto;
            }
            .btn-custom { width: 100%; margin: 0 !important; }
            .btn-premium{
                width: fit-content;
            }
        }


        /* about  */
/* Premium Styling - Overriding nothing, adding brilliance */
    .fw-800 { font-weight: 800; }
    .fw-300 { font-weight: 300; }
    .bg-navy { background-color: #0A192F !important; }

    /* Custom Animations */
    @keyframes float {
        0%, 100% { transform: translate(-50%, -50%); }
        50% { transform: translate(-50%, -60%); }
    }
    .animate-float { animation: float 5s ease-in-out infinite; }

    @keyframes rotateSlow {
        from { transform: translate(30%, 30%) rotate(0deg); }
        to { transform: translate(30%, 30%) rotate(360deg); }
    }
    /* Note: Rotate removed from experience circle to keep text readable, using static shadow pulse instead */

    /* Feature Card Styles */
    .feature-card-modern {
        padding: 20px;
        border-radius: 15px;
        background: #fdfdfd;
        transition: all 0.4s ease;
        border: 1px solid #f1f1f1;
    }
    .feature-card-modern:hover {
        background: #fff;
        box-shadow: 0 15px 30px rgba(0,0,0,0.05);
        transform: translateY(-5px);
        border-color: var(--gold);
    }
    .f-icon-wrap {
        width: 45px; height: 45px;
        background: rgba(212, 175, 55, 0.1);
        color: var(--gold);
        display: flex; align-items: center; justify-content: center;
        border-radius: 10px; font-size: 1.2rem;
    }

    /* Industry Pills */
    .industry-pill {
        background: #fff;
        border: 1px solid #eee;
        padding: 8px 20px;
        border-radius: 50px;
        font-size: 0.85rem;
        font-weight: 600;
        color: #0A192F;
        transition: all 0.3s ease;
    }
    .industry-pill:hover {
        background: #0A192F;
        color: #fff;
        border-color: #0A192F;
        transform: scale(1.05);
    }

    /* Main Image Wrapper */
    .main-image-wrapper {
        position: relative;
        transition: all 0.6s ease;
    }
    .main-image-wrapper:hover {
        transform: scale(1.02);
    }

    @media (max-width: 991px) {
        .main-image-wrapper { border-radius: 30px !important; margin-bottom: 30px;}
        .main-image-wrapper img { border-radius: 20px !important; min-height: 350px !important;}
        .display-4 { font-size: 2.5rem; }
        .experience-circle { width: 100px; height: 100px; transform: translate(10%, 10%); }
    }


    /* mission  */
   /* MISSION SECTION CUSTOM CSS */
.mission-section-wrapper {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: #fcfcfc;
}

.mission-container-spacer {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.mission-main-box {
    background-color: #ffffff;
    border-radius: 2rem; /* Matches your rounded-5 */
    overflow: hidden;
}

/* Image & Overlay Styles */
.mission-image-col {
    position: relative;
    min-height: 50vh;
}

.mission-img-fixed {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 350px;
}

.mission-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10,25,47,0.2), rgba(10,25,47,0.7));
}

/* Typography & Content Styles */
.mission-subtitle-spacing {
    letter-spacing: 2px;
}

.mission-description-line {
    line-height: 1.8;
}

.fw-800 { font-weight: 800; }
.text-navy-dark { color: #0A192F; }

.text-underline {
    border-bottom: 4px solid #D4AF37; /* Assumed gold color */
    padding-bottom: 5px;
}

.icon-circle-small {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1rem;
}

.bg-navy { background-color: #0A192F; }

.btn-navy-gold {
    background: #0A192F;
    color: #D4AF37;
    border: 2px solid #0A192F;
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn-navy-gold:hover {
    background: transparent;
    color: #0A192F;
}

/* Item Hover Stability */
.mission-item {
    padding: 10px;
    border-radius: 12px;
    transition: background 0.3s ease;
}

.mission-item:hover {
    background: #f8f9fa;
}

/* RESPONSIVE OVERRIDES */
@media (max-width: 991px) {
    .mission-main-box {
        border-radius: 20px !important;
    }
    .display-5 {
        font-size: 2rem;
    }
}


/* WHY CHOOSE US CUSTOM STYLES */
/* --- NEW WHY CHOOSE US LAYOUT --- */
.why-section-new {
    padding: 100px 0;
    background-color: #fff;
}

.ls-3 { letter-spacing: 3px; }

/* Slat Card Design */
.slat-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    border-left: 6px solid #0A192F;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.slat-card:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-left-color: #D4AF37; /* Change to gold on hover */
}

/* Icon Box inside Slat */
.slat-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #D4AF37;
    margin-right: 30px;
}

.bg-navy { background-color: #0A192F; }
.bg-gold-fade { background-color: rgba(212, 175, 55, 0.15); }

/* Content Section */
.slat-content {
    flex-grow: 1;
}

/* Floating Tag */
.slat-tag {
    background: #f1f1f1;
    color: #0A192F;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Responsive Mobile Fixes */
@media (max-width: 767px) {
    .slat-card {
        text-align: center;
        padding: 40px 20px;
    }
    .slat-icon {
        margin: 0 auto 20px auto;
    }
    .why-section-new {
        padding: 60px 0;
    }
}



/* --- DUAL FOCUS SECTION STYLES --- */
.solutions-section {
    background-color: #0A192F;
}

.solution-panel {
    padding: 80px 10%;
    position: relative;
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
}

/* Employers Side Styling */
.employer-panel {
    background: linear-gradient(rgba(10, 25, 47, 0.9), rgba(10, 25, 47, 0.9)), 
                url('https://images.unsplash.com/photo-1497366216548-37526070297c?q=80&w=1000');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

/* Workers Side Styling */
.worker-panel {
    background: #ffffff;
    color: #0A192F;
}

.panel-content {
    max-width: 500px;
}

.panel-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.icon-gold {
    color: #D4AF37;
}

.panel-subtitle {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.panel-heading {
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.panel-text {
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Feature List */
.panel-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
}

.panel-list li {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.panel-list i {
    margin-right: 10px;
    color: #D4AF37;
}

.list-gold i {
    color: #0A192F;
}

/* Buttons */
.panel-btn {
    padding: 12px 30px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn-gold {
    background-color: #0A192F;
    color: #D4AF37;
    border: none;
}

.btn-gold:hover {
    background-color: #D4AF37;
    color: #0A192F;
}

/* Responsive Fix */
@media (max-width: 991px) {
    .solution-panel {
        padding: 60px 5%;
        border-right: none;
    }
    .employer-panel {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
}


/* --- MAIN FOOTER STYLES --- */
/* --- FOOTER GLOBAL STYLES --- */
.main-footer {
    background-color: #0A192F;
    color: #ffffff;
    padding-top: 80px;
    border-top: 4px solid #D4AF37;
    font-family: 'Inter', sans-serif; /* Clean professional font */
}

.footer-top {
    padding-bottom: 60px;
}

.footer-logo {
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.text-gold { color: #D4AF37; }

.footer-about {
    color: #a8b2d1;
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.footer-title {
    color: #D4AF37;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.8rem;
    font-size: 0.9rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: #D4AF37;
}

/* Links List */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #a8b2d1;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(8px);
}

/* Contact Details */
.footer-contact .contact-item {
    display: flex;
    margin-bottom: 20px;
}

.footer-contact i {
    color: #D4AF37;
    margin-top: 5px;
    margin-right: 15px;
    font-size: 1.1rem;
}

.footer-contact p {
    color: #a8b2d1;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Social Media Icons */
.footer-socials a {
    display: inline-flex;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    color: #D4AF37;
    align-items: center;
    justify-content: center;
    border-radius: 8px; /* Slightly squared for corporate look */
    margin-right: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-socials a:hover {
    background: #D4AF37;
    color: #0A192F;
    transform: translateY(-5px);
}

/* Copyright Bar */
.footer-bottom {
    background-color: #071224;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    color: #8892b0;
}

.footer-legal-links a {
    color: #8892b0;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #D4AF37;
}

/* Responsive Tweaks */
@media (max-width: 991px) {
    .main-footer { padding-top: 60px; }
    .footer-title { margin-top: 1rem; }
}

@media (max-width: 767px) {
    .footer-brand-box, .footer-links, .footer-contact {
        text-align: center;
    }
    .footer-title::after { left: 50%; transform: translateX(-50%); }
    .footer-contact .contact-item { justify-content: center; }
    .footer-legal-links { margin-top: 15px; }
    .footer-legal-links a { margin: 0 10px; }
}





/* about page  */
    /* --- ABOUT HERO STYLES --- */
.about-hero {
    min-height: 80vh;
    background: linear-gradient(rgba(10, 25, 47, 0.8), rgba(10, 25, 47, 0.8)), 
                url('https://i.pinimg.com/1200x/26/17/58/261758a3f00c23f2e4d4992b01513775.jpg'); /* Professional Architecture/Business BG */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax Effect */
    padding-top: 100px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

.breadcrumb-item, .breadcrumb-item a {
    color: #D4AF37 !important;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.breadcrumb-item.active {
    color: rgba(255,255,255,0.6) !important;
}

.hero-shape {
    position: absolute;
    right: -100px;
    bottom: -100px;
    width: 500px;
    height: 500px;
    background: rgba(212, 175, 55, 0.03);
    border-radius: 50%;
    z-index: 1;
}

.ls-1 { letter-spacing: 1px; }
.lead{
    text-align: justify;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .about-hero { min-height: 60vh; padding-top: 120px; padding-bottom: 60px; }
    .display-3 { font-size: 2.8rem; }
}


/* about corporate  */
/* --- ABOUT CORPORATE STYLES --- */
.img-border-frame {
    position: relative;
    padding: 15px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
}

.img-border-frame::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-top: 5px solid #D4AF37;
    border-left: 5px solid #D4AF37;
    z-index: -1;
}

.experience-card {
    position: absolute;
    bottom: -30px;
    right: -20px;
    border-radius: 15px;
    min-width: 160px;
    border-bottom: 5px solid #D4AF37;
}

.ls-3 { letter-spacing: 3px; }

@media (max-width: 991px) {
    .experience-card {
        bottom: 20px;
        right: 20px;
    }
    .display-5 { font-size: 2.3rem; }
}

/* group legacy  */
/* --- LEGACY SECTION STYLES --- */
#group-legacy {
    background-color: #0A192F; 
    position: relative;
}

.legacy-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border-radius: 12px;
    font-size: 1.8rem;
    color: #D4AF37;
    transition: all 0.3s ease;
}

.legacy-icon-box:hover {
    background: #D4AF37;
    color: #0A192F;
    transform: translateY(-5px);
}

.legacy-stat-card {
    /* Image background with overlay */
    background: linear-gradient(rgba(10, 25, 47, 0.5), rgba(10, 25, 47, 0.5)), 
                url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?q=80&w=1000'); 
    background-size: cover;
    background-position: center;
    backdrop-filter: blur(2px);
    transition: transform 0.4s ease;
}

.legacy-stat-card:hover {
    transform: scale(1.02);
}

.border-gold-subtle {
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
}

.fw-900 { font-weight: 900; }

@media (max-width: 991px) {
    .legacy-stat-card { text-align: center; margin-top: 2rem; }
}



/* --- CORPORATE VISION STYLES --- */
.vision-img-wrapper {
    position: relative;
    padding: 20px;
}

.vision-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #0A192F;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.vision-text-box {
    border-radius: 0 15px 15px 0;
}

.vision-bg-shape {
    position: absolute;
    top: 50%;
    left: -100px;
    width: 400px;
    height: 400px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.fw-600 { font-weight: 600; }
.ls-3 { letter-spacing: 3px; }

@media (max-width: 991px) {
    .display-5 { font-size: 2.5rem; }
    .vision-badge { width: 60px; height: 60px; }
}


/* --- GOVERNANCE SECTION STYLES --- */
.compliance-card {
    background: #ffffff;
    border-top: 5px solid #D4AF37;
    transition: transform 0.3s ease;
    z-index: 2;
    position: relative;
}

.compliance-card:hover {
    transform: translateY(-10px);
}

.shield-icon-box {
    width: 120px;
    height: 120px;
    background: rgba(212, 175, 55, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.dot-pattern {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(#D4AF37 2px, transparent 2px);
    background-size: 15px 15px;
    z-index: 1;
}

.border-gold { border-color: #D4AF37 !important; }



/* --- GLOBAL NETWORK STYLES --- */
.network-map-wrapper {
    padding: 20px;
}

.source-node {
    position: absolute;
    z-index: 3;
}

.sn-1 { top: 20%; left: 10%; } /* Mimicking India/Asia position */
.sn-2 { bottom: 30%; right: 15%; } /* Mimicking Europe position */

.bg-navy { background-color: #0A192F !important; color: white; }

.network-map-wrapper img {
    filter: grayscale(40%) contrast(110%);
    transition: filter 0.5s ease;
}

.network-map-wrapper:hover img {
    filter: grayscale(0%) contrast(100%);
}

.ls-3 { letter-spacing: 3px; }




/* service page   */

/* --- SERVICES INTRO STYLES --- */
.service-process-card {
    background: #0A192F;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: transform 0.4s ease;
}

.service-process-card:hover {
    transform: translateY(-10px);
}

.rotate-anim {
    animation: rotateSlow 15s linear infinite;
    display: inline-block;
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.fw-600 { font-weight: 600; }
.ls-3 { letter-spacing: 3px; }


.icon-circle-small {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    flex-shrink: 0;
}


/* --- PAYROLL SECTION STYLES --- */
.payroll-visual-box {
    border-bottom: 6px solid #D4AF37;
}

.icon-circle-lg {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
}

.payroll-bg-img {
    background-size: cover;
    background-position: center;
}

.ls-3 { letter-spacing: 3px; }


/* --- ONBOARDING STYLES --- */
.step-num {
    min-width: 40px;
    height: 40px;
    border-bottom: 2px solid #D4AF37;
    line-height: 40px;
}

.integration-card {
    position: absolute;
    bottom: -30px;
    left: 40px;
    /* min-width: 220px; */
}

.icon-box-sm {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

@media (max-width: 576px) {
    .integration-card p,h6,i{
        font-size: 12px
    }
  
}


/* --- TRAINING SECTION STYLES --- */
.training-visual img {
    border-right: 8px solid #D4AF37;
}

.skill-badge-card {
    position: absolute;
    top: -20px;
    right: -20px;
    max-width: 250px;
    border-bottom: 4px solid #D4AF37;
}

@media (max-width: 991px) {
    .skill-badge-card {
        position: relative;
        top: 0;
        right: 0;
        margin-top: 20px;
        max-width: 100%;
    }
}






