@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

:root {
    --lightgrey: #cbcbcb;
    --lgrey:#eaeaea;
    --white: #ffffff;
    --black: #000;
    --footerblack: #1a1a1a;
    --grey:#808080;
    --socialicon: #353535;
    --fontgrey: #8d8d8d;
    --lillight:#f8f8f8;
    --red: #ff0000;
    --purple: #ad68ff;
    --blue: #0080ff;
    --olive: #00deff;
    --orange: #ffb100;
    --green: #567C04;
    --lightred: #ff00009e;
    --lightpurple: #9d00ff9e;
    --lightgreen: #00ff6f9e;
    --lightgreenback: #00ff0824;
    --lightblue: #0016ff9e;
    --blue: #003dc6;
    --cardpadding: 20px;
    --globalshadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    --w100: 100%;
    --mt50: 50px;
    --themecolor: #025082 !important;
    --lightthemecolor:#0066a7;
    --navy: #000080;
    --darknavy: #000048;
  }
a, ::placeholder, p, strong, h1, h2, h3, h4, h5, h6, li, label, input, span, button, div{
    font-family: "Montserrat", sans-serif !important;
}


.hero-section{
    min-height:auto;
    position:relative;
    background:radial-gradient(circle at 80% 20%, rgb(110 206 255 / 26%), transparent 25%), linear-gradient(135deg, #0d1224 0%, #151d35 100%);
    overflow:hidden;
    padding-bottom: 100px;
    border-radius: 0px 0px 100px 100px;
}
.main-header{
position:absolute;
top:25px;
left:0;
width:100%;
z-index:9999;
transition:all .35s ease;
}
.main-header.sticky{
position:fixed;
top:0;
background: #fff;
backdrop-filter:blur(16px);
padding:12px 0;
box-shadow:0 10px 40px rgba(0,0,0,.25);
animation:slideDown .35s ease;
}
@keyframes slideDown{
from{transform:translateY(-100%);}
to{transform:translateY(0);}
}
.custom-navbar{
/* background:rgba(255,255,255,.06); */
background: #fff;
border:1px solid rgba(255,255,255,.08);
backdrop-filter:blur(18px);
border-radius:24px;
padding:5px 15px;
}
.main-header.sticky .custom-navbar{
background:transparent;
border:none;
padding:0;
border-radius:0;
}
.navbar-brand{
color:#fff!important;
font-size:30px;
font-weight:600;
display:flex;
align-items:center;
gap:10px;
}

.navbar-nav{
gap:6px;
}
.nav-link{
color:#1f2124;
font-weight: 500;
padding:14px 16px!important;
}
.nav-link:hover{
color:var(--themecolor)!important;
}
.search-btn{
width:40px;
height:40px;
border-radius:25px;
border:1px solid rgba(255,255,255,.08);
background:rgb(141 140 140 / 8%);
color:var(--black);
}
.contact-btn{
    border: none;
    padding: 10px 30px;
    border-radius: 39px;
    font-weight: 500;
    background: var(--themecolor);
    color: #fff;
}
.header-actions{
display:flex;
align-items:center;
gap:14px;
}
.mega-dropdown{
position:relative;
}
.mega-menu{
position:absolute;
top:115%;
left:50%;
transform:translateX(-50%);
width:1100px;
background:#fff;
padding:40px;
border-radius:24px;
box-shadow:0 30px 80px rgba(0,0,0,.18);
opacity:0;
visibility:hidden;
pointer-events:none;
transition:.3s ease;
z-index:999;
}
.mega-dropdown:hover .mega-menu{
opacity:1;
visibility:visible;
pointer-events:auto;
top:105%;
}
.mega-menu h6{
font-weight:600;
margin-bottom:20px;
color:#111827;
}
.mega-menu a{
display:block;
text-decoration:none;
padding:8px 0;
color:#6b7280;
font-weight:500;
}
.mega-menu a:hover{
color:#5f6bff;
}
.promo-card{
background:linear-gradient(135deg,#eef2ff,#f5f7ff);
padding:24px;
border-radius:20px;
height:100%;
}
.promo-card h5{
font-weight:600;
margin-bottom:12px;
}
.promo-card p{
color:#6b7280;
margin-bottom:18px;
}
.promo-card button{
border:none;
background:#5f6bff;
color:#fff;
padding:12px 18px;
border-radius:12px;
font-weight:600;
}
.hero-content{
padding-top:180px;
color:#fff;
}
.hero-badge{
display:inline-flex;
align-items:center;
gap:8px;
background:rgba(255,255,255,.08);
padding:12px 18px;
border-radius:50px;
margin-bottom:28px;
font-size:14px;
}
.hero-title{
font-size:72px;
font-weight:600;
line-height:1.08;
max-width:650px;
}
.hero-text{
margin-top:28px;
max-width:580px;
font-size:18px;
line-height:1.8;
color:rgba(255,255,255,.72);
}
.hero-buttons{
margin-top:35px;
display:flex;
gap:16px;
flex-wrap:wrap;
}
.primary-btn{
    border:none;
    padding:14px 28px;
    text-decoration: none;
    border-radius:32px;
    font-weight: 600;
    font-size: 16px;
    background:linear-gradient(135deg, #025082, #7b4dff)    ;
    color:#fff;
}
.secondary-btn{
border:1px solid rgba(255,255,255,.1);
padding:14px 28px;
border-radius:32px;
font-weight:700;
background:rgb(236 247 255);
color:var(--themecolor);
}
.img25{
        position: absolute;
    right: -38px;
    max-width: 600px;
    opacity: 0.5;
    top: 80px;
}
.hero-image-wrapper{
position:relative;
padding-top:140px;
}
.hero-image{
position:relative;
z-index:3;
}

.hero-image img{
    width:100%;
    max-width:360px;
    border-radius:26px;
    object-fit:cover;
}

.stat-card{
position:absolute;
background:#fff;
border-radius:20px;
padding:15px;
box-shadow:0 25px 60px rgba(0,0,0,.18);
z-index:4;
}
.stat-top{
top:130px;
left:-40px;
width:220px;
}
.stat-bottom{
bottom:60px;
left:-60px;
width:260px;
}
.stat-icon{
width:50px;
height:50px;
border-radius:15px;
background:#eef2ff;
color:#5f6bff;
display:flex;
align-items:center;
justify-content:center;
font-size:22px;
}
.circle{
position:absolute;
border-radius:50%;
border:1px solid rgba(255,255,255,.06);
}
.circle1{
width:720px;
height:720px;
right:-120px;
top:-100px;
}
.circle2{
width:520px;
height:520px;
right:0;
top:20px;
}
.circle3{
width:320px;
height:320px;
right:110px;
top:130px;
}
.navbar-toggler{
border:none;
background:rgba(255,255,255,.12);
padding:10px;
border-radius:12px;
}
.navbar-toggler-icon{
filter:brightness(0) invert(1);
}

 .client-section {
            padding: 80px 0;
            overflow: hidden;
            background: #fff;
        }

        .section-title {
            text-align: center;
            font-size: 17px;
            font-weight: 500;
            margin-bottom: 15px;
            color: #111827;
        }

        .logo-slider {
            overflow: hidden;
            position: relative;
            width: 100%;
        }

        .logo-track {
            display: flex;
            width: calc(200px * 12);
            animation: scroll 25s linear infinite;
        }

        .logo-slider:hover .logo-track {
            animation-play-state: paused;
        }

        .logo-item {
            width: 200px;
            flex-shrink: 0;
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-item img {
            max-width: 140px;
            max-height: 60px;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .logo-item img:hover {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.08);
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-200px * 6));
            }
        }

        
.challenge-section {
    padding: 0px 0px 90px 0;
    /* background: #f5f5f5; */
}

.left-content h2 {
    font-size: 2.75rem;
    font-weight: 600;
    color: #0A192F;
    line-height: 1.2;
    margin-bottom: 35px;
}

.left-content h2 span {
    color: var(--themecolor);
}

.left-content p {
    font-size: 20px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 28px;
    max-width: 620px;
}

.challenge-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #025082, #0b354f);
    color: #fff;
    padding: 18px 36px;
    border-radius: 60px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    transition: 0.3s;
}

.challenge-btn:hover {
    color: #fff;
    transform: translateY(-2px);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.challenge-card {
    background: #fff;
    border-radius: 22px;
    min-height: 320px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    padding: 40px 34px;
    display: flex;
    align-items: flex-end;
}

.challenge-card h4 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.35;
    color: #1f1f1f;
    margin: 0;
    position: relative;
    z-index: 3;
}

.top-strip {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 74px;
    background: #f4f4f4;
}

.corner-ring {
    position: absolute;
    top: -45px;
    right: -40px;
    width: 125px;
    height: 125px;
    border: 20px solid;
    border-radius: 50%;
    border-left-color: transparent !important;
    border-bottom-color: transparent !important;
    transform: rotate(180deg);
    z-index: 2;
}

.ring-pink { border-color: #cc1766; }
.ring-orange { border-color: #f58d19; }
.ring-yellow { border-color: #e7cb00; }
.ring-navy { border-color: #00184d; }

.bg-icon {
       position: absolute;
    top: 0px;
    left: 38%;
    transform: translateX(-50%);
    font-size: 130px;
    opacity: 0.06;
    z-index: 1;
}

.icon-pink { color: #cc1766; }
.icon-orange { color: #f58d19; }
.icon-yellow { color: #d8c200; }
.icon-navy { color: #00184d; }

.number-overlay {
    position: absolute;
    top: 55px;
    left: 40px;
    font-size: 80px;
    font-weight: 700;
    color: rgba(204, 23, 102, 0.07);
    z-index: 1;
}

 /* --- Main Card Container --- */
        .card {
            border: none;
            position: relative;
            width: 100%;
            height: 260px;
            background-color: #ffffff;
            border-radius: 50px;
            padding: 32px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
            display: flex;
            align-items: flex-start;
            gap: 24px;
        }

        
        /* Right Side Content */
        .card-content {
            padding-left: 8px;
        }

        .card-title {
            font-size: 24px;
            font-weight: 600;
            color: #09090E;
            line-height: 1.15;
            letter-spacing: -0.02em;
        }

        .card-author {
            font-size: 16px;
            color: #A3A6B4;
            font-weight: 700;
            margin-top: 6px;
        }


        .status-text {
            color: #09090E;
        }

        .percentage-text {
            color: #A3A6B4;
        }

        .percentage-text strong {
            color: #09090E;
            font-weight: 600;
        }

        .list-inline-item i{
            color: var(--orange);
        }

        .rating .list-unstyled li{
            margin-right: 1px;
        }

        /* --- Pixel-Perfect Cutout (Dink) --- */
        .cutout-wrapper {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 174px;
            height: 84px;
            background-color: #F4F5F7; /* Matches body background exactly */
            border-top-left-radius: 40px;
            display: flex;
            align-items: flex-end;
            justify-content: flex-end;
        }


        /* --- Button & Smooth Hover Effect --- */
        .start-learning-btn {
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 150px;
            height: 56px;
            background-color: #ffffff;
            color: #09090E;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 15px;
            font-weight: 700;
            border: none;
            border-radius: 24px;
            cursor: pointer;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .start-learning-btn:hover {
            background-color: var(--themecolor);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(84, 73, 246, 0.25);
        }

        .course-wrapper .row.fpp-bg{
            background: radial-gradient(32.41% 76.45% at -11.64% 7.54%, #025082 0%, rgba(5, 14, 36, 0.00) 100%), radial-gradient(46.84% 148.29% at 90% 4.66%, #025082 0%, #050E24 80%);
            padding: 100px;
            border-radius: 50px;
        }

        .course-wrapper .nav-link.active h3{
            color: var(--themecolor);
        }

        .course-wrapper .nav-link h3{
            font-size: 18px;
            color: var(--white);
        }

        .price-p{
            font-size: 22px;
            position: absolute;
            bottom: 0px;
        }

        .price-p span{
            font-weight: 600;
            color: var(--themecolor);
        }

        /* #card41220 .card-content{
            border-left: 5px solid var(--red);
        }

        #card41221 .card-content{
            border-left: 5px solid var(--lightpurple);
        }

        #card41222 .card-content{
            border-left: 5px solid var(--green);
        }

        #card41223 .card-content{
            border-left: 5px solid var(--olive);
        } */

        /* Main Wrapper Card */
        .ui-main-card {
            background: #F4F7F9;
            border-radius: 40px;
            box-shadow: 0 30px 70px rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.7);
        }

        /* Left-Bottom Green Abstract Background Curve */
        .curve-green {
            position: absolute;
            bottom: -120px;
            left: -80px;
            width: 320px;
            height: 320px;
            background: transparent;
            border: 55px solid #43B956;
            border-radius: 50%;
            z-index: 1;
            opacity: 0.9;
        }

        /* Right-Bottom Magenta Abstract Background Curve */
        .curve-magenta {
            position: absolute;
            bottom: -150px;
            right: -60px;
            width: 340px;
            height: 340px;
            background: transparent;
            border: 55px solid #BC2B6A;
            border-radius: 50%;
            z-index: 1;
            opacity: 0.9;
        }

        .my-10{
            margin-top: 100px;
            margin-bottom: 100px;
        }

        /* Top Hero Image Container */
        .hero-img-container {
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
        }

        .hero-img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Typography Styling */
        .main-heading {
            font-size: 2.75rem;
            font-weight: 600;
            color: #0A192F;
            line-height: 1.2;
            letter-spacing: -0.03em;
        }

        .sub-description {
            font-size: 1.05rem;
            color: #3A4756;
            font-weight: 500;
            line-height: 1.5;
        }

        /* Glassmorphic Metric Cards */
        .metric-card {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.6);
            border-radius: 20px;
            padding: 24px 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
            z-index: 2; /* Keeps them above background vector curves */
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .metric-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
            background: rgba(255, 255, 255, 0.95);
        }

        .metric-number {
            font-size: 2.2rem;
            font-weight: 600;
            line-height: 1;
            letter-spacing: -0.02em;
        }

        /* Specific Number Colors from Design */
        .text-green-accent { color: #2D7A3A; }
        .text-teal-accent { color: #256F53; }
        .text-darkgreen-accent { color: #1B4D3E; }
        .text-vibrant-green { color: #3BB155; }

        .metric-text {
            font-size: 0.88rem;
            color: #1E252D;
            font-weight: 600;
            line-height: 1.3;
        }


         /* --- Main Parent Container Canvas --- */
        .domain-main-wrapper {
            background-color: #050c1a;
            border-radius: 28px;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
            width: 100%;
            padding: 64px 54px;
        }

        /* --- Geometric Top Accent Circles --- */
        .geo-circle-pink {
            position: absolute;
            top: -100px;
            left: -100px;
            width: 260px;
            height: 260px;
            background: #b11b58;
            border-radius: 50%;
            opacity: 0.7;
            filter: blur(8px);
            z-index: 1;
        }
        .geo-circle-grey {
            position: absolute;
            top: -150px;
            left: 90px;
            width: 280px;
            height: 280px;
            background: transparent;
            border: 45px solid rgba(255, 255, 255, 0.08);
            border-radius: 50%;
            z-index: 1;
        }
        .geo-circle-yellow {
            position: absolute;
            top: -200px;
            left: 260px;
            width: 280px;
            height: 280px;
            background: transparent;
            border: 42px solid #e5b600;
            border-radius: 50%;
            z-index: 1;
        }

        /* --- Left Layout Typography --- */
        .tag-line {
            font-size: 0.82rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            color: #00e5ff;
            text-transform: uppercase;
        }
        .domain-main-wrapper .hero-title {
            font-size: 3.2rem;
            font-weight: 600;
            color: #ffffff;
            line-height: 1.12;
            letter-spacing: -0.02em;
        }
        .domain-main-wrapper .hero-title span {
            color: #00a4cc;
        }
        .accent-bar {
            width: 64px;
            height: 4px;
            background: linear-gradient(90deg, #00e5ff, #b11b58);
            border-radius: 2px;
        }
        .paragraph-text {
            color: #8493a8;
            font-size: 1.02rem;
            line-height: 1.55;
            font-weight: 400;
            max-width: 480px;
        }

        /* --- Left Bottom CTA Row Elements --- */
        .expert-btn {
            background: linear-gradient(135deg, #025082, #7b4dff);
            color: #ffffff;
            border: none;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.95rem;
            transition: all 0.25s ease;
        }
        .expert-btn:hover {
            transform: translateY(-1px);
            opacity: 0.95;
            color: #ffffff;
        }
        .user-avatars img {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            border: 2px solid #050c1a;
            margin-right: -10px;
            object-fit: cover;
        }
        .avatar-count-plus {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: #0a8487;
            color: #ffffff;
            font-size: 0.85rem;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 2px solid #050c1a;
        }
        .social-proof-lbl {
            color: #54647a;
            font-size: 0.85rem;
            font-weight: 600;
            line-height: 1.3;
            max-width: 140px;
        }

        /* --- Left Side Compact Grid Boxes --- */
        .compact-stat-grid {
            max-width: 440px;
        }
        .grid-item-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.04);
            border-radius: 12px;
            padding: 16px 10px;
            text-align: center;
        }
        .card-icon-frame {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 12px auto;
            font-size: 1.1rem;
        }
        .card-big-num {
            font-size: 1.6rem;
            font-weight: 600;
            line-height: 1;
            margin-bottom: 4px;
        }
        .card-small-lbl {
            font-size: 0.78rem;
            color: #64748b;
            font-weight: 600;
            line-height: 1.2;
        }

        /* Accent Palette Mapping */
        .clr-frame-1 { background: rgba(0, 229, 255, 0.08); color: #00e5ff; }
        .num-color-1 { color: #00e5ff; }
        
        .clr-frame-2 { background: rgba(177, 27, 88, 0.08); color: #b11b58; }
        .num-color-2 { color: #b11b58; }
        
        .clr-frame-3 { background: rgba(229, 184, 0, 0.08); color: #e5b600; }
        .num-color-3 { color: #e5b600; }
        
        .clr-frame-4 { background: rgba(59, 130, 246, 0.08); color: #3b82f6; }
        .num-color-4 { color: #3b82f6; }

        /* --- Right Column Layout & Infinite Scroll Area --- */
        .right-layout-panel {
            position: relative;
        }
        .scrollable-list-box {
            max-height: 610px;
            overflow-y: auto;
            padding-right: 24px;
        }

        /* Accurate Custom Scrollbar Visual Track */
        .scrollable-list-box::-webkit-scrollbar {
            width: 4px;
        }
        .scrollable-list-box::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.01);
            border-radius: 10px;
        }
        .scrollable-list-box::-webkit-scrollbar-thumb {
            background: #00b4d8;
            border-radius: 10px;
        }

        /* List Items Core */
        .list-row-container {
            background: rgba(255, 255, 255, 0.01);
            border: 1px solid rgba(255, 255, 255, 0.03);
            border-radius: 14px;
            padding: 22px;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            text-decoration: none;
            transition: all 0.2s ease-in-out;
        }
        .list-row-container:hover {
            background: rgba(255, 255, 255, 0.03);
            border-color: rgba(255, 255, 255, 0.07);
        }
        .list-item-icon {
            width: 48px;
            height: 48px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.35rem;
            flex-shrink: 0;
        }
        .list-item-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 4px;
        }
        .list-item-desc {
            font-size: 0.9rem;
            color: #64748b;
            margin-bottom: 0;
            font-weight: 400;
            line-height: 1.35;
        }
        .chevron-link-arrow {
            color: #475569;
            font-size: 1.1rem;
            transition: color 0.2s;
        }
        .list-row-container:hover .chevron-link-arrow {
            color: #ffffff;
        }

        /* Right List View Context Icons background */
        .bg-icon-ai { background: rgba(13, 148, 136, 0.12); color: #0d9488; }
        .bg-icon-devops { background: rgba(219, 39, 119, 0.12); color: #db2777; }
        .bg-icon-cyber { background: rgba(217, 119, 6, 0.12); color: #d97706; }
        .bg-icon-data { background: rgba(37, 99, 235, 0.12); color: #2563eb; }
        .bg-icon-digital { background: rgba(13, 148, 136, 0.12); color: #0d9488; }

        .sub-badge {
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 2px;
            color: var(--lightthemecolor);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .sub-badge::before, .sub-badge::after {
            content: '';
            display: inline-block;
            width: 30px;
            height: 2px;
            background-color: var(--lightthemecolor);
        }
        .sub-badge::before { border-radius: 0 5px 5px 0; }
        .sub-badge::after { border-radius: 5px 0 0 5px; }

        .main-title {
            font-weight: 600;
            color: #0f172a;
            font-size: 2.75rem;
        }
        .main-title span {
            color: var(--lightthemecolor);
        }
        .subtitle {
            color: #64748b;
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.05rem;
            line-height: 1.6;
        }
        .title-divider {
            width: 50px;
            height: 4px;
            background: linear-gradient(90deg, #2563eb, #7c3aed);
            margin: 20px auto 0;
            border-radius: 2px;
        }

        /* Logo Containers */
        .logo-wrapper {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            background: #ffffff;
            box-shadow: inset 0 2px 8px rgba(0,0,0,0.02), 0 4px 12px rgba(0,0,0,0.03);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 12px;
            flex-shrink: 0;
        }
        .logo-wrapper img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        /* Card Details */
        .brand-name {
            font-weight: 700;
            font-size: 1.25rem;
            color: #0f172a;
            margin-bottom: 4px;
        }
        .color-dash {
            width: 20px;
            height: 3px;
            border-radius: 2px;
            margin-bottom: 12px;
        }
        .brand-desc {
            font-size: 0.85rem;
            color: #64748b;
            line-height: 1.5;
            margin-bottom: 0;
        }

        /* Brand Specific Colors for the Dashes */
        .dash-microsoft { background-color: #f25022; }
        .dash-salesforce { background-color: #00a1e0; }
        .dash-cisco { background-color: #049fd9; }
        .dash-sap { background-color: #008fd3; }
        .dash-axelos { background-color: #e11d48; }
        .dash-ibm { background-color: #006699; }
        .dash-aws { background-color: #ff9900; }
        .dash-oracle { background-color: #f60000; }
        .dash-comptia { background-color: #ff6600; }
        .dash-autodesk { background-color: #06b6d4; }
        .dash-pmi { background-color: #ec4899; }
        .dash-redhat { background-color: #cc0000; }

        /* Top Badge */
        .top-badge {
            background-color: #e2f4ff;
            color: var(--themecolor);
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 8px 16px;
            border-radius: 8px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 24px;
        }

        /* Typography */

        .consulting-wrapper .hero-title {
            font-weight: 600;
            font-size: 2.75rem;
            line-height: 1.2;
            color: #0f172a;
            margin-bottom: 20px;
        }
      
        .consulting-wrapper .hero-title span {
            color: var(--themecolor); /* Purple emphasis */
        }
        .consulting-wrapper .hero-desc {
            color: #64748b;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 35px;
        }

        /* Feature Pillars */
        .consulting-wrapper .feature-item {
            display: flex;
            align-items: start;
            margin-bottom: 24px;
        }
        .consulting-wrapper .icon-box {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            flex-shrink: 0;
            margin-right: 16px;
        }
        .icon-purple { background-color: #f3e8ff; color: #7c3aed; }
        .icon-green { background-color: #dcfce7; color: #16a34a; }
        .icon-blue { background-color: #e0f2fe; color: #0284c7; }
        .icon-orange { background-color: #ffedd5; color: #ea580c; }

        .consulting-wrapper .feature-title {
            font-weight: 700;
            font-size: 0.95rem;
            color: #0f172a;
            margin-bottom: 2px;
        }
        .consulting-wrapper .feature-desc {
            font-size: 0.85rem;
            color: #64748b;
            margin-bottom: 0;
        }

       
        /* Image Showcase Container */
        .image-showcase-container {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.06);
            height: 100%;
            min-height: 400px;
        }
        .showcase-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
        }
        .purple-overlay-panel {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            width: 30%;
            background: linear-gradient(180deg, #6d28d9 0%, #4c1d95 100%);
            opacity: 0.85;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        /* Decorative Dot Matrix Over Overlay */
        .overlay-dots {
            width: 25px;
            height: 120px;
            background-image: radial-gradient(rgba(255,255,255,0.4) 1.5px, transparent 1.5px);
            background-size: 8px 12px;
        }


         /* Ambient Dynamic Background */
        .bg-gradient-wrapper {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            z-index: -1;
            pointer-events: none;
            background: 
                radial-gradient(circle at 10% 15%, rgba(99, 102, 241, 0.04) 0%, transparent 30%),
                radial-gradient(circle at 90% 85%, rgba(219, 39, 119, 0.04) 0%, transparent 30%);
        }
        
        .dot-pattern {
            position: absolute;
            width: 50px;
            height: 50px;
            background-image: radial-gradient(#cbd5e1 1.5px, transparent 1.5px);
            background-size: 8px 8px;
            opacity: 0.5;
        }
        .dots-top-right { top: 30px; right: 40px; }
        .dots-bottom-left { bottom: 30px; left: 40px; }

        /* Header Style */
        .resources-badge {
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 2px;
            color: #4f46e5;
            display: inline-flex;
            align-items: center;
            gap: 15px;
            text-transform: uppercase;
        }
        .resources-badge::before, .resources-badge::after {
            content: '';
            display: inline-block;
            width: 40px;
            height: 1px;
            background-color: #cbd5e1;
        }

        #resource-wrapper{
            position: relative;
            padding: 100px 0px;
        }
        
        .text-learn { color: #2563eb; }
        .text-know { color: #7c3aed; }
        .text-show { color: #db2777; }

        .sub-heading {
            color: #64748b;
            font-size: 1.15rem;
            font-weight: 500;
        }

        /* Custom Resource Cards */
        .resource-card {
            background: #ffffff;
            border: none;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
            height: 100%;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .resource-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
        }

        /* Card Image Cover & Color Accents */
        .card-img-wrapper {
            position: relative;
            height: 240px;
            overflow: hidden;
        }
        .card-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* Card Tints */
        .tint-orange::after { content: ''; position: absolute; top:0; left:0; right:0; bottom:0; background: linear-gradient(180deg, transparent 40%, rgba(234, 88, 12, 0.15)); }
        .tint-blue::after { content: ''; position: absolute; top:0; left:0; right:0; bottom:0; background: linear-gradient(180deg, transparent 40%, rgba(37, 99, 235, 0.15)); }
        .tint-pink::after { content: ''; position: absolute; top:0; left:0; right:0; bottom:0; background: linear-gradient(180deg, transparent 40%, rgba(219, 39, 119, 0.15)); }

        /* Floating Circular Icons */
        .floating-icon {
            position: absolute;
            bottom: -25px;
            left: 24px;
            width: 54px;
            height: 54px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.35rem;
            z-index: 2;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        .icon-orange { background-color: #fff7ed; color: #ea580c; border: 2px solid #ffedd5; }
        .icon-blue { background-color: #eff6ff; color: #2563eb; border: 2px solid #dbeafe; }
        .icon-pink { background-color: #fdf2f8; color: #db2777; border: 2px solid #fce7f3; }

        /* Card Body Content */
        .card-content-block {
            padding: 45px 28px 24px 28px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }
        
        .card-main-title {
            font-size: 1.15rem;
            font-weight: 700;
            color: #0f172a;
            letter-spacing: 0.3px;
            margin-bottom: 12px;
            text-transform: uppercase;
        }

        .accent-dash {
            width: 35px;
            height: 3px;
            border-radius: 2px;
            margin-bottom: 20px;
        }
        .dash-orange { background-color: #ea580c; }
        .dash-blue { background-color: #2563eb; }
        .dash-pink { background-color: #db2777; }

        .card-description {
            font-size: 0.9rem;
            color: #64748b;
            line-height: 1.6;
            margin-bottom: 35px;
            flex-grow: 1;
        }

        /* Action Link Footer */
        .card-action-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 18px;
            border-top: 1px solid #f1f5f9;
        }
        
        .action-link {
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            text-decoration: none;
            transition: opacity 0.2s;
        }
        .link-orange { color: #ea580c; }
        .link-blue { color: #2563eb; }
        .link-pink { color: #db2777; }
        .action-link:hover { opacity: 0.8; }

        .arrow-circle {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            transition: transform 0.2s ease;
        }
        .arrow-orange { border: 1px solid #ea580c; color: #ea580c; }
        .arrow-blue { border: 1px solid #2563eb; color: #2563eb; }
        .arrow-pink { border: 1px solid #db2777; color: #db2777; }
        
        .resource-card:hover .arrow-circle {
            transform: translateX(3px);
        }

        /* Corner Dot Grids Inside Cards */
        .card-corner-dots {
            position: absolute;
            top: 15px; left: 15px;
            width: 35px; height: 35px;
            background-image: radial-gradient(rgba(255,255,255,0.4) 1.5px, transparent 1.5px);
            background-size: 6px 6px;
            z-index: 1;
        }

        @media (max-width: 768px) {
            .main-heading { font-size: 2.25rem; }
        }

       
        @media (max-width: 991px) {
            .image-showcase-container { min-height: 350px; margin-top: 40px; }
            .hero-title { font-size: 2.2rem; }
        }





        @media (max-width: 768px) {
            .main-title { font-size: 2rem; }
            .card-body-content { margin-left: 0 !important; margin-top: 15px; display: flex; flex-direction: column; align-items: center; }
        }



        /* Responsive UI Optimization */
        @media (max-width: 991px) {
            .domain-main-wrapper { padding: 40px 24px; }
            .hero-title { font-size: 2.5rem; }
            .geo-circle-pink, .geo-circle-grey, .geo-circle-yellow { display: none; }
            .scrollable-list-box { max-height: none; overflow-y: visible; padding-right: 0; }
        }



        /* Responsive Fixes */
        @media (max-width: 991px) {
            .main-heading { font-size: 2rem; }
            .curve-green, .curve-magenta { display: none; } /* Clean layout on smaller screens */
        }













        /****************************** media query start****************************** */

        @media (max-width: 1400px) {
            .left-content h2 {
                font-size: 62px;
            }

            .challenge-card h4 {
                font-size: 24px;
            }
        }



         @media(max-width:1199px){

                .cards-grid {
                margin-top: 50px;
            }

            .left-content h2 {
                font-size: 52px;
            }
           
         .hero-title{
         font-size:52px;
         }
         .navbar-collapse{
         background:#111827;
         padding:20px;
         border-radius:20px;
         margin-top:20px;
         }
         .mega-menu{
         position:static;
         transform:none;
         width:100%;
         opacity:1;
         visibility:visible;
         pointer-events:auto;
         display:none;
         box-shadow:none;
         margin-top:15px;
         padding:25px;
         }
         .mega-dropdown.active .mega-menu{
         display:block;
         }
         .header-actions{
         margin-top:20px;
         flex-direction:column;
         width:100%;
         }
         .search-btn,
         .contact-btn{
         width:100%;
         }
         .hero-image-wrapper{
         padding-top:60px;
         }
         .stat-top,
         .stat-bottom{
         position:static;
         width:100%;
         margin-top:20px;
         }
         }


         @media(max-width:768px){

               .cards-grid {
                    grid-template-columns: 1fr;
                }

                .left-content h2 {
                    font-size: 42px;
                    line-height: 1.05;
                }

                .left-content p {
                    font-size: 17px;
                }

                .challenge-card {
                    min-height: 280px;
                }

                .challenge-card h4 {
                    font-size: 22px;
                }

                .logo-item {
                width: 140px;
            }

            .logo-item img {
                max-width: 100px;
            }

            .logo-track {
                width: calc(140px * 12);
            }

            @keyframes scroll {
                100% {
                    transform: translateX(calc(-140px * 6));
                }
            }

         .hero-content{
         padding-top:140px;
         }
         .hero-title{
         font-size:40px;
         }
         .hero-text{
         font-size:16px;
         }
         .hero-buttons{
         flex-direction:column;
         }
         .primary-btn,
         .secondary-btn{
         width:100%;
         }
         .hero-image img{
         max-width:100%;
         }
         }