 

        :root {
            --lime: #B1CC45;
            --blue: #347ABE;
            --dark: #0f172a;
            --glass: rgba(15, 23, 42, 0.03);
            --soft-blue: rgba(52, 122, 190, 0.08);
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: #ffffff;
            color: var(--dark);
            overflow-x: hidden;
        }

        /* --- THE DEPTH TEXT --- */
        .bg-depth-text {
             position: absolute;
            font-size: 28vw;
            font-weight: 800;
            color: rgba(52, 122, 190, 0.05);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            white-space: nowrap;
            z-index: 0;
            pointer-events: none;
            letter-spacing: -1.5vw;
        }
    

        /* --- NAVBAR --- */
        .navbar {
            padding: 1.5rem 0;
            z-index: 1000;
        }
        
        .nav-pill-container {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(0,0,0,0.05);
            border-radius: 100px;
            padding: 10px 25px;
            width: 100%;
        }

        /* .navbar-brand { font-weight: 800; color: var(--blue) !important; font-size: 2.6rem; } */
                .navbar-brand img { width: 80px; }
                .nav-link { font-weight: 600; color: var(--dark) !important; font-size: 0.9rem; margin: 0 10px; }

        /* --- HERO SECTION --- */
        .hero-wrap {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-wrap {
    position: relative;
}


        .main-headline {
            font-size: clamp(2.5rem, 6vw, 5.5rem);
            font-weight: 800;
            line-height: 1;
            letter-spacing: -4px;
            margin-bottom: 2rem;
        }

        .text-lime-strike { color: var(--lime); }

        .hero-desc {
            font-size: 1.25rem;
            color: #64748b;
            max-width: 650px;
            border-left: 3px solid var(--blue);
            padding-left: 25px;
            margin-bottom: 3rem;
        }

        /* --- SHARED ACHIEVEMENT SECTION STYLES --- */
       
        /* Mobile Adjustments */
        @media (max-width: 991px) {
            .nav-pill-container { border-radius: 25px; }
            .main-headline { letter-spacing: -2px; }
       
        }

        .corner-accent {
            position: absolute;
            bottom: 10%;
            right: 10%;
            text-align: right;
        }



        
        /* The Main Blue Section */
        .achievement-section {
            background-color: var(--blue);
            background-image: 
                radial-gradient(at 0% 0%, rgba(177, 204, 69, 0.15) 0px, transparent 50%),
                radial-gradient(at 100% 100%, rgba(15, 23, 42, 0.3) 0px, transparent 50%);
            padding: 80px 0;
            color: #ffffff;
            border-radius: 40px 40px 0 0;
            overflow: hidden;
        }

        /* Modern Typography */
        .display-heading {
            font-weight: 800;
            letter-spacing: -1.5px;
            line-height: 1.1;
            font-size: 3rem;
        }

        .lime-text { color: var(--lime); }

        /* Blue Bento Card Design */
        .bento-card {
            background: var(--glass-bg);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--glass-border);
            border-radius: 32px;
            padding: 40px;
            height: 100%;
            transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
            position: relative;
            z-index: 1;
        }

        .bento-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--lime);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
        }

        /* Stat Styling */
        .stat-val {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1;
            margin-bottom: 8px;
            letter-spacing: -2px;
            color: #ffffff;
        }

        .stat-label {
            font-weight: 700;
            color: var(--lime);
            text-transform: uppercase;
            font-size: 0.75rem;
            letter-spacing: 2px;
            display: block;
            margin-bottom: 5px;
        }

        /* Industry Tags for Blue Theme */
        .industry-tag {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 8px 20px;
            border-radius: 100px;
            font-weight: 600;
            font-size: 0.85rem;
            margin: 5px;
            display: inline-block;
            transition: 0.3s;
            color: rgba(255, 255, 255, 0.9);
        }

        .industry-tag:hover {
            background: var(--lime);
            color: var(--deep-navy);
            transform: translateY(-3px);
            border-color: var(--lime);
        }

        .dot-accent {
            height: 8px;
            width: 8px;
            background-color: var(--lime);
            border-radius: 50%;
            display: inline-block;
            margin-right: 12px;
        }

        .text-opacity { opacity: 0.8; }


        /* about us css */

        
/* Section Typography */
.fw-800 { font-weight: 800; }

/* Image Grid Styling */
.image-box {
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.6s ease;
}

.image-box:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.stats-floating-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    z-index: 5;
    min-width: 180px;
    text-align: center;
}

.decor-circle {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 150px;
    height: 150px;
    background: var(--soft-blue);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.5;
}

/* Button Styling */
.btn-blue-standard {
    background-color: var(--blue);
    color: white;
    box-shadow: 0 10px 20px rgba(52, 122, 190, 0.2);
    transition: 0.3s;
}

.btn-blue-standard:hover {
    background-color: var(--dark);
    color: white;
    transform: translateY(-3px);
}

/* Feature Icon Colors */
.bg-lime { background-color: var(--lime); }
.bg-blue { background-color: var(--blue); }


/*----------- REVIEW SECTION---------- */










/* REVIEWS SECTION END */

/* --------- wHY SECTION --------- */
  

/* --------- wHY SECTION DARK UPDATE --------- */
.why-section {
    padding: 80px 0;
    /* Deep dark background instead of white */
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
}

/* Sticky Side Title */
.sticky-box {
    position: sticky;
    top: 200px;
    height: fit-content;
}

.reason-card {
    /* Glassmorphism effect on dark bg */
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    padding: 50px;
    margin-bottom: 30px;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.reason-card:hover {
    /* Slightly lighter on hover to look interactive */
    background: rgba(52, 122, 190, 0.08);
    border-color: var(--blue);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    transform: translateY(-10px) scale(1.02);
}

/* Animated Number Background */
.big-num {
    position: absolute;
    right: -20px;
    top: -20px;
    font-size: 10rem;
    font-weight: 900;
    color: var(--blue);
    opacity: 0.1; /* Slightly more visible on dark */
    transition: 0.5s;
}

.reason-card:hover .big-num {
    opacity: 0.2;
    transform: translateY(20px) scale(1.1);
    color: var(--lime);
}

.reason-tag {
    display: inline-block;
    padding: 6px 18px;
    background: var(--blue);
    color: #fff;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.reason-card:hover .reason-tag {
    background: var(--lime);
    color: #003ac1; /* Dark text on lime badge */
}

.reason-card h3 {
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: #ffffff;
}

.reason-card p {
    color: #cfd8e4; /* Soft blue-grey for readability on dark */
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.reason-card p strong {
    color: var(--lime); /* Highlighting key points with Lime */
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .sticky-box {
        position: relative;
        top: 0;
        margin-bottom: 50px;
        text-align: center;
    }
    .reason-card { padding: 35px; }
    .big-num { font-size: 6rem; }
}




/* WHY SECTION END */

/* review testimonial csss--------- */


    #iceico-reviews-section-wrap {
        /* Changed from Dark Gradient to Solid White with a subtle tint */
        background: #ffffff;
        padding: 100px 0;
        font-family: 'Plus Jakarta Sans', sans-serif !important;
        position: relative;
        overflow: hidden;
    }

    /* Subtle background decoration for the white theme */
    #iceico-reviews-section-wrap::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
        background-size: 40px 40px;
        opacity: 0.3;
        pointer-events: none;
    }

    #iceico-reviews-section-wrap .text-blue { color: #347aba; }
    #iceico-reviews-section-wrap .text-lime { color: #84cc16; letter-spacing: 2px; font-size: 0.8rem; }

    #iceico-reviews-section-wrap .header-line {
        width: 60px;
        height: 4px;
        background: #84cc16;
        margin-top: 15px;
        border-radius: 10px;
    }

    /* Adjusted Glassmorphism for Light Background */
    #iceico-reviews-section-wrap .review-glass-card {
        background: #ffffff;
        backdrop-filter: blur(15px);
        padding: 40px;
        border-radius: 35px;
        border: 1px solid #f1f5f9;
        height: 100%;
        transition: all 0.4s ease;
        position: relative;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03); /* Softer shadow */
        z-index: 2;
    }

    #iceico-reviews-section-wrap .review-glass-card:hover {
        transform: translateY(-10px);
        background: #ffffff;
        border-color: #347aba;
        box-shadow: 0 25px 50px rgba(52, 122, 190, 0.1);
    }

    /* Active Glow for Center Card (Light Version) */
    #iceico-reviews-section-wrap .active-glow {
        border-color: rgba(52, 122, 190, 0.2);
        box-shadow: 0 15px 35px rgba(52, 122, 190, 0.08);
    }

    #iceico-reviews-section-wrap .quote-icon {
        font-size: 3rem;
        color: #347aba;
        opacity: 0.1;
        position: absolute;
        top: 20px;
        right: 30px;
    }

    #iceico-reviews-section-wrap .review-text {
        color: #475569; /* Darker text for readability on white */
        font-style: italic;
        font-size: 1.05rem;
        line-height: 1.8;
        margin-bottom: 30px;
        position: relative;
        z-index: 1;
    }

    #iceico-reviews-section-wrap .client-info {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 20px;
    }

    #iceico-reviews-section-wrap .client-img-circle {
        width: 50px;
        height: 50px;
        background: #347aba;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-weight: 800;
        font-size: 0.9rem;
    }

    #iceico-reviews-section-wrap .client-name {
        color: #1e293b; /* Darker heading */
        font-weight: 700;
        margin-bottom: 2px;
    }

    #iceico-reviews-section-wrap .client-role {
        color: #65a30d; /* Slightly darker lime for contrast */
        font-size: 0.8rem;
        font-weight: 600;
    }

    #iceico-reviews-section-wrap .rating-stars {
        color: #ffc107;
        font-size: 0.85rem;
    }

    /* Decorative Orb for White Theme */
    #iceico-reviews-section-wrap::before {
        content: '';
        position: absolute;
        top: -10%; left: -5%;
        width: 400px; height: 400px;
        background: radial-gradient(circle, rgba(52, 122, 190, 0.05) 0%, transparent 70%);
        z-index: 1;
    }






/*--------WHAT WE DO--------  */


    /* --- New Premium Heading Style --- */
    .heading-container {
        max-width: 800px;
        margin: 0 auto 60px auto;
        position: relative;
    }

    .sub-title {
        color: var(--blue);
        font-weight: 800;
        letter-spacing: 4px;
        text-transform: uppercase;
        font-size: 0.85rem;
        display: block;
        margin-bottom: 10px;
    }

    .main-title {
        font-size: 3.5rem;
        font-weight: 800;
        line-height: 1.1;
        letter-spacing: -2px;
        color: var(--dark);
    }

    .main-title span {
        color: var(--blue); /* Dual tone effect */
    }

    .title-accent {
        width: 80px;
        height: 6px;
        background: var(--lime);
        margin: 25px auto 0 auto;
        border-radius: 10px;
        position: relative;
    }

    .title-accent::after {
        content: '';
        position: absolute;
        width: 15px;
        height: 6px;
        background: var(--blue);
        right: -25px;
        border-radius: 10px;
    }

    /* --- Service Panels (Responsive) --- */
    .service-wrapper {
        display: flex;
        flex-direction: row;
        height: 550px;
        width: 100%;
        gap: 15px;
    }


    .panel {
        flex: 1;
        height: 90%;
        background: var(--soft-blue);
        border-radius: 40px;
        position: relative;
        overflow: hidden;
        /* transition: all 0.7s cubic-bezier(0.25, 1, 0.3, 1); */
        transition: all 0.7s cubic-bezier(0.25, 1, 0.3, 1);
        cursor: pointer;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 20px;
        border: 1px solid rgba(15, 23, 42, 0.05);
    }

    @media (min-width: 992px) {
        .panel:hover {
            flex: 2.8;
            background: #ffffff;
            border-color: var(--blue);
            box-shadow: 0 40px 80px rgba(52, 122, 190, 0.15);
            
        }
    }

    /* Mobile Responsive */
    @media (max-width: 991px) {
        .main-title { font-size: 2.5rem; }
        .service-wrapper { flex-direction: column; height: auto; gap: 20px; }
        .panel { height: 220px; flex: none; width: 100%; padding: 30px; }
        .panel:hover, .panel:active { height: 400px; background: #ffffff; }
        .panel-tag { transform: rotate(0) !important; margin-bottom: 15px !important; }
        .panel-number { font-size: 4rem !important; }
    }

    .panel-number {
        position: absolute;
        top: 40px;
        left: 40px;
        font-size: 6rem;
        font-weight: 800;
        color: var(--blue);
        opacity: 0.08;
        transition: 0.5s;
    }

    .panel:hover .panel-number {
        opacity: 0.15;
        color: var(--lime);
        transform: translateY(-10px);
    }

    .panel-title {
        font-weight: 800;
        font-size: 1.8rem;
        margin-bottom: 10px;
        transition: 0.4s;
    }

    .panel:hover .panel-title { color: var(--blue); }

    .panel-desc {
        opacity: 0;
        max-height: 0;
        transition: all 0.5s ease;
        color: #64748b;
        font-size: 1.1rem;
    }

    .panel:hover .panel-desc {
        opacity: 1;
        max-height: 200px;
        margin-top: 15px;
    }

    .panel-tag {
        display: inline-block;
        padding: 6px 16px;
        border-radius: 50px;
        background: var(--blue);
        color: #fff;
        font-size: 0.7rem;
        font-weight: 800;
        margin-bottom: 25px;
        transform: rotate(-90deg);
        transform-origin: left bottom;
        transition: 0.4s;
    }

    .panel:hover .panel-tag {
        transform: rotate(0);
        background: var(--lime);
        color: var(--dark);
    }

/* WHAT WE DO END */


/*-------- FOOTER CSS ------*/

/* Scoped Variables and Styles to prevent Conflict */
    #iceico-deep-midnight-footer-wrap {
        --d-blue: #347ABE;
        --d-lime: #B1CC45;
        --d-bg-start: #0f172a; /* Deep Navy Blue */
        --d-bg-end: #020617;   /* Midnight Black */
        --d-text: rgba(255, 255, 255, 0.6);
        
        /* Deep Dark Gradient Background */
        background: linear-gradient(180deg, var(--d-bg-start) 0%, var(--d-bg-end) 100%);
        padding-top: 100px;
        color: #ffffff;
        font-family: 'Plus Jakarta Sans', sans-serif !important;
        position: relative;
        overflow: hidden;
    }

    /* Subtle Animated Glow in Background */
    #iceico-deep-midnight-footer-wrap::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(52, 122, 190, 0.1) 0%, transparent 70%);
        z-index: 0;
    }

    #iceico-deep-midnight-footer-wrap .f-logo {
        font-weight: 800;
        font-size: 2rem;
        letter-spacing: -1px;
        margin-bottom: 20px;
    }

    #iceico-deep-midnight-footer-wrap .f-logo span {
        color: var(--d-lime); /* Lime Dot for contrast */
    }

    #iceico-deep-midnight-footer-wrap .f-about-text {
        color: var(--d-text);
        font-size: 0.95rem;
        line-height: 1.8;
        margin-bottom: 30px;
    }

    #iceico-deep-midnight-footer-wrap .f-title {
        font-weight: 800;
        text-transform: uppercase;
        font-size: 0.85rem;
        letter-spacing: 2px;
        color: var(--d-blue); /* Blue Titles pop on dark */
        margin-bottom: 30px;
    }

    #iceico-deep-midnight-footer-wrap .f-nav-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    #iceico-deep-midnight-footer-wrap .f-nav-links li {
        margin-bottom: 15px;
    }

    #iceico-deep-midnight-footer-wrap .f-nav-links a {
        text-decoration: none;
        color: rgba(255, 255, 255, 0.5);
        font-size: 0.95rem;
        transition: 0.3s;
    }

    #iceico-deep-midnight-footer-wrap .f-nav-links a:hover {
        color: #ffffff;
        padding-left: 8px;
    }

    /* Newsletter Card with Depth */
    #iceico-deep-midnight-footer-wrap .f-newsletter-card {
        background: rgba(255, 255, 255, 0.03);
        padding: 40px;
        border-radius: 25px;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    #iceico-deep-midnight-footer-wrap .f-form input {
        width: 100%;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 12px 15px;
        border-radius: 12px;
        color: #fff;
        margin-bottom: 15px;
        outline: none;
    }

    #iceico-deep-midnight-footer-wrap .f-form button {
        width: 100%;
        background: var(--d-blue);
        color: #fff;
        border: none;
        padding: 12px;
        border-radius: 12px;
        font-weight: 700;
        transition: 0.3s;
    }

    #iceico-deep-midnight-footer-wrap .f-form button:hover {
        background: var(--d-lime);
        color: var(--d-bg-end);
        transform: translateY(-3px);
    }

    /* Contact Strip */
    #iceico-deep-midnight-footer-wrap .f-contact-strip .support-label {
        display: block;
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.3);
        text-transform: uppercase;
        margin-bottom: 5px;
    }

    #iceico-deep-midnight-footer-wrap .f-contact-strip a {
        color: var(--d-lime); /* Lime color for support link */
        text-decoration: none;
        font-weight: 700;
        font-size: 1rem;
    }

    /* Bottom Bar */
    #iceico-deep-midnight-footer-wrap .f-bottom-bar {
        margin-top: 80px;
        padding: 30px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    #iceico-deep-midnight-footer-wrap .copyright {
        color: rgba(255, 255, 255, 0.3);
        font-size: 0.85rem;
    }

    #iceico-deep-midnight-footer-wrap .f-legal-links a {
        color: rgba(255, 255, 255, 0.3);
        text-decoration: none;
        font-size: 0.85rem;
        margin-left: 20px;
        transition: 0.3s;
    }

    #iceico-deep-midnight-footer-wrap .f-legal-links a:hover {
        color: var(--d-blue);
    }

    @media (max-width: 991px) {
        #iceico-deep-midnight-footer-wrap .f-newsletter-card { margin-top: 20px; }
    }
    /* END FOOTER */