/* Google Fonts DM Sans */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root {
    --primary: #083199;
    --primary-dark: #052066;
    --accent: #ff6b35;
    --accent-hover: #e0531e;
    --dark: #0f172a;
    --light-bg: #f8fafc;
    --border: #e2e8f0;
    --text-heading: #1e293b;
    --text-para: #64748b;
    --white: #ffffff;
    --font-main: 'DM Sans', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
}

body {
    background-color: var(--white);
    color: var(--text-heading);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 92%;
    max-width: 1240px;
    margin: 0 auto;
}

/* ================= TOP CONTACT BAR ================= */
.top-bar {
    background-color: var(--dark);
    color: #94a3b8;
    font-size: 0.85rem;
    padding: 8px 0;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-left span {
    margin-right: 20px;
}
.top-left i {
    color: var(--accent);
    margin-right: 6px;
}
.top-right a {
    margin-left: 15px;
    color: #cbd5e1;
    transition: var(--transition);
}
.top-right a:hover {
    color: var(--accent);
}

/* ================= HEADER / NAVBAR ================= */
header {
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}
.logo {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}
.logo span {
    color: var(--accent);
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 26px;
    align-items: center;
}
.nav-menu li a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark);
    transition: var(--transition);
}
.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary);
}
.btn-talk {
    background: var(--primary);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.btn-talk:hover {
    background: var(--accent);
    transform: translateY(-2px);
}
.menu-toggle {
    display: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--dark);
}

/* ================= HERO SLIDER ================= */
.hero-slider {
    position: relative;
    height: 80vh;
    min-height: 520px;
    overflow: hidden;
    background: #000;
}
.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
}
.slide.active {
    opacity: 1;
    visibility: visible;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 49, 153, 0.9) 0%, rgba(5, 32, 102, 0.65) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 680px;
}
.hero-tag {
    display: inline-block;
    background: rgba(255, 107, 53, 0.2);
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.hero-content h1 {
    font-size: 3.1rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
}
.hero-content p {
    font-size: 1.1rem;
    color: #e2e8f0;
    margin-bottom: 28px;
}
.hero-btns {
    display: flex;
    gap: 15px;
}
.btn {
    padding: 13px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.btn-primary {
    background: var(--accent);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--accent-hover);
}
.btn-white-outline {
    border: 2px solid var(--white);
    color: var(--white);
}
.btn-white-outline:hover {
    background: var(--white);
    color: var(--primary);
}
.slider-ctrls {
    position: absolute;
    bottom: 30px;
    right: 5%;
    z-index: 10;
    display: flex;
    gap: 12px;
}
.ctrl-btn {
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.ctrl-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
}

/* ================= PARTNER STRIP ================= */
.partner-strip {
    background: #f1f5f9;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}
.partner-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.partner-title {
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    color: var(--text-para);
    text-transform: uppercase;
}
.partner-badges {
    display: flex;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}
.badge-item {
    font-weight: 700;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}
.badge-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* ================= COLORFUL STATS & SERVICES SECTION ================= */
.digitally-wrapper {
    background-color: var(--light-bg);
    padding: 50px 0 80px 0;
    position: relative;
}

/* Floating Stats Bar */
.top-stats-card {
    background: var(--white);
    border-radius: 20px;
    padding: 24px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    margin-bottom: 50px;
}
.stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
}
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: #e2e8f0;
}
.stat-icon {
    font-size: 2.1rem;
}
.stat-item.one .stat-icon { color: #0284c7; }
.stat-item.two .stat-icon { color: #eab308; }
.stat-item.three .stat-icon { color: #7c3aed; }
.stat-item.four .stat-icon { color: #10b981; }

.stat-details h3 {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
}
.stat-item.one .stat-details h3 { color: #0284c7; }
.stat-item.two .stat-details h3 { color: #eab308; }
.stat-item.three .stat-details h3 { color: #7c3aed; }
.stat-item.four .stat-details h3 { color: #10b981; }

.stat-details p {
    font-size: 0.85rem;
    color: var(--text-para);
    font-weight: 500;
    margin: 3px 0 0 0;
}

/* Colorful Service Cards */
.services-color-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.custom-service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px 24px 26px;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: var(--transition);
    border: 1.5px solid transparent;
}
.custom-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.07);
}
.card-badge {
    position: absolute;
    top: -12px;
    left: 28px;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.card-icon-box {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: inset 0 2px 5px rgba(255,255,255,0.7), 0 5px 12px rgba(0,0,0,0.04);
}
.card-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-heading);
    margin: 0 0 8px 0;
    line-height: 1.35;
}
.card-content p {
    font-size: 0.88rem;
    color: var(--text-para);
    line-height: 1.5;
    margin: 0;
}

/* Card Themes */
.theme-yellow { border-top: 3px solid #f59e0b; border-left: 3px solid #f59e0b; }
.theme-yellow .card-badge { background: #fef3c7; color: #d97706; }
.theme-yellow .card-icon-box { background: #f8fafc; border: 1px solid #e2e8f0; color: #1e293b; }

.theme-green { border-top: 3px solid #10b981; border-left: 3px solid #10b981; }
.theme-green .card-badge { background: #d1fae5; color: #059669; }
.theme-green .card-icon-box { background: #f0fdf4; border: 1px solid #bbf7d0; color: #10b981; }

.theme-blue { border-top: 3px solid #0284c7; border-left: 3px solid #0284c7; }
.theme-blue .card-badge { background: #e0f2fe; color: #0284c7; }
.theme-blue .card-icon-box { background: #f0f9ff; border: 1px solid #bae6fd; }

.theme-purple { border-top: 3px solid #a855f7; border-left: 3px solid #a855f7; }
.theme-purple .card-badge { background: #f3e8ff; color: #9333ea; }
.theme-purple .card-icon-box { background: #faf5ff; border: 1px solid #e9d5ff; color: #9333ea; }

.theme-pink { border-top: 3px solid #ec4899; border-left: 3px solid #ec4899; }
.theme-pink .card-badge { background: #fce7f3; color: #db2777; }
.theme-pink .card-icon-box { background: #fdf2f8; border: 1px solid #fbcfe8; display: flex; flex-wrap: wrap; gap: 6px; font-size: 1.3rem; }

.theme-orange { border-top: 3px solid #f97316; border-left: 3px solid #f97316; }
.theme-orange .card-badge { background: #ffedd5; color: #ea580c; }
.theme-orange .card-icon-box { background: #fff7ed; border: 1px solid #fed7aa; color: #ea580c; }

/* ================= ABOUT SECTION ================= */
.about-section {
    padding: 95px 0;
    background: var(--white);
}
.about-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-image {
    position: relative;
}
.about-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.rating-card {
    position: absolute;
    bottom: -20px;
    left: 20px;
    background: var(--white);
    padding: 16px 22px;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
    border-left: 5px solid var(--accent);
    display: flex;
    align-items: center;
    gap: 15px;
}
.rating-card .stars {
    color: #f59e0b;
    font-size: 1.1rem;
}
.rating-card p {
    font-weight: 800;
    color: var(--text-heading);
    font-size: 1.1rem;
    margin: 0;
}
.about-content h2 {
    font-size: 2.3rem;
    font-weight: 800;
    margin-top: 8px;
    margin-bottom: 20px;
    color: var(--dark);
}
.checklist {
    list-style: none;
    margin: 25px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.checklist li {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dark);
}
.checklist li i {
    color: #10b981;
    font-size: 1.2rem;
}

/* ================= REVIEWS SECTION & SLIDER ================= */
.reviews-section {
    background-color: #edf2f7;
    padding: 85px 0;
    position: relative;
    overflow: hidden;
}
.reviews-header {
    text-align: center;
    margin-bottom: 45px;
}
.reviews-header h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}
.reviews-header p {
    color: var(--text-para);
    font-size: 1.05rem;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.6;
}
.slider-viewport {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 10px 0 25px 0;
}
.reviews-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}
.review-card {
    background: var(--white);
    border-radius: 18px;
    padding: 35px 24px 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    border: 1px solid #e2e8f0;
    flex: 0 0 calc((100% - (3 * 24px)) / 4);
    min-width: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    user-select: none;
}
.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}
.stars-box {
    display: flex;
    justify-content: center;
    gap: 5px;
    color: #0d9488;
    font-size: 1.05rem;
    margin-bottom: 18px;
}
.review-text {
    font-size: 0.94rem;
    color: #334155;
    line-height: 1.65;
    margin-bottom: 25px;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.client-logo-box {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.client-info h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 4px;
}
.client-info p {
    font-size: 0.82rem;
    color: var(--text-para);
    font-weight: 500;
    margin: 0;
}
.pagination-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 25px 0 35px 0;
}
.dot {
    width: 8px;
    height: 8px;
    background-color: #cbd5e1;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: var(--transition);
}
.dot.active {
    background-color: #0d9488;
    transform: scale(1.4);
}
.btn-wrap {
    text-align: center;
}
.btn-view-all {
    display: inline-block;
    background: #111827;
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 38px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.55), 0 0 10px rgba(6, 182, 212, 0.55);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-view-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 28px rgba(168, 85, 247, 0.8), 0 0 16px rgba(6, 182, 212, 0.8);
}

/* ================= CTA BANNER ================= */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 60px 0;
    color: var(--white);
    text-align: center;
}
.cta-banner h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}
.cta-banner p {
    font-size: 1.1rem;
    color: #cbd5e1;
    max-width: 650px;
    margin: 0 auto 30px;
}

/* ================= FOOTER ================= */
footer {
    background: var(--dark);
    color: #94a3b8;
    padding-top: 75px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid #1e293b;
}
.footer-col h4 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 12px;
}
.footer-col ul li a {
    transition: var(--transition);
}
.footer-col ul li a:hover {
    color: var(--accent);
    padding-left: 4px;
}
.contact-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.contact-list i {
    color: var(--accent);
    margin-top: 4px;
}
.footer-bottom {
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
}

/* ================= FLOATING BUTTONS ================= */
.quick-actions {
    position: fixed;
    right: 20px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}
.quick-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.45rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease;
}
.quick-btn:hover {
    transform: scale(1.1);
}
.call-btn { background-color: #0d9488; }
.wa-btn { background-color: #22c55e; }

/* ================= RESPONSIVENESS ================= */
@media (max-width: 1100px) {
    .services-color-grid { grid-template-columns: repeat(2, 1fr); }
    .review-card { flex: 0 0 calc((100% - 24px) / 2); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    .about-row { grid-template-columns: 1fr; }
    .top-stats-card { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .stat-item:nth-child(2)::after { display: none; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    .menu-toggle { display: block; }
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 25px 0;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        display: none;
    }
    .nav-menu.active { display: flex; }
    .hero-content h1 { font-size: 2.2rem; }
    .services-color-grid { grid-template-columns: 1fr; }
    .review-card { flex: 0 0 100%; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
}






/* ================= about us ================= */

/* ================= PAGE HERO BANNER ================= */
.page-banner {
    background: linear-gradient(135deg, #052066 0%, #083199 100%);
    padding: 70px 0;
    text-align: center;
    color: #ffffff;
    position: relative;
}

.banner-badge {
    background: rgba(255, 107, 53, 0.2);
    color: var(--accent, #ff6b35);
    border: 1px solid var(--accent, #ff6b35);
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 12px;
}

.page-banner h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
}

.breadcrumb {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #cbd5e1;
    font-size: 0.95rem;
    font-weight: 500;
}

.breadcrumb a {
    color: #cbd5e1;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--accent, #ff6b35);
}

.breadcrumb i {
    font-size: 0.75rem;
    color: #94a3b8;
}

/* ================= COMPANY OVERVIEW ================= */
.about-overview-section {
    padding: 90px 0;
    background: #ffffff;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.overview-image-wrap {
    position: relative;
}

.overview-image-wrap img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.overview-badge {
    position: absolute;
    bottom: -25px;
    right: 20px;
    background: #083199;
    color: #ffffff;
    padding: 24px 28px;
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(8, 49, 153, 0.3);
    max-width: 250px;
}

.overview-badge h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent, #ff6b35);
    margin-bottom: 4px;
    line-height: 1;
}

.overview-badge p {
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.35;
    margin: 0;
    color: #e2e8f0;
}

.subhead {
    color: var(--accent, #ff6b35);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 8px;
}

.overview-text h2 {
    font-size: 2.3rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 18px;
}

.lead-para {
    font-size: 1.05rem;
    color: #334155;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 14px;
}

.overview-text p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 25px;
}

.stats-mini-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
}

.mini-stat h4 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #083199;
    margin-bottom: 2px;
}

.mini-stat p {
    font-size: 0.82rem;
    font-weight: 600;
    color: #64748b;
    margin: 0;
}

/* ================= MISSION & VISION ================= */
.mission-section {
    padding: 70px 0;
    background: #f8fafc;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.mission-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 40px 35px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}

.card-mission {
    border-top: 4px solid #083199;
}

.card-vision {
    border-top: 4px solid #ff6b35;
}

.mission-icon {
    width: 65px;
    height: 65px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.card-mission .mission-icon {
    background: #eef2ff;
    color: #083199;
}

.card-vision .mission-icon {
    background: #fff1eb;
    color: #ff6b35;
}

.mission-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.mission-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}

/* ================= VALUES SECTION ================= */
.values-section {
    padding: 90px 0;
    background: #ffffff;
}

.text-center {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px;
}

.section-title h2 {
    font-size: 2.3rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.value-item {
    background: #f8fafc;
    border-radius: 16px;
    padding: 35px 22px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-6px);
    background: #ffffff;
    border-color: #083199;
    box-shadow: 0 12px 30px rgba(8, 49, 153, 0.08);
}

.value-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #083199;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.value-item h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.value-item p {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.55;
    margin: 0;
}

/* ================= PROCESS SECTION ================= */
.process-section {
    padding: 90px 0;
    background: #f1f5f9;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.process-step {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 24px;
    border: 1px solid #e2e8f0;
    position: relative;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
}

.step-count {
    font-size: 2.2rem;
    font-weight: 800;
    color: rgba(8, 49, 153, 0.15);
    margin-bottom: 12px;
    line-height: 1;
}

.process-step h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.55;
    margin: 0;
}
/* ================= mega menu DESIGN ================= */


/* ================= TOP ANNOUNCEMENT BAR UPGRADE ================= */
.top-bar {
    background-color: #061539;
    color: #94a3b8;
    font-size: 0.82rem;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-left {
    display: flex;
    align-items: center;
    gap: 22px;
}
.top-left i {
    color: var(--accent, #ff6b35);
    margin-right: 6px;
}
.top-right {
    display: flex;
    align-items: center;
    gap: 22px;
}
.iso-tag {
    color: #38bdf8;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(56, 189, 248, 0.1);
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
}
.top-socials a {
    color: #cbd5e1;
    margin-left: 10px;
    transition: var(--transition);
}
.top-socials a:hover {
    color: var(--accent, #ff6b35);
}

/* ================= ATTRACTIVE HEADER & NAVBAR ================= */
header {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(8, 49, 153, 0.06);
    position: sticky;
    top: 0;
    z-index: 10000;
    border-bottom: 1px solid #edf2f7;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary, #083199);
    letter-spacing: -0.8px;
    display: flex;
    align-items: center;
}
.logo span {
    color: var(--accent, #ff6b35);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: #1e293b;
    padding: 10px 14px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary, #083199);
    background-color: #f1f5f9;
}

.arrow-icon {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.btn-talk {
    background: linear-gradient(135deg, #083199 0%, #052066 100%);
    color: #ffffff !important;
    padding: 11px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 18px rgba(8, 49, 153, 0.25);
    transition: all 0.3s ease;
    margin-left: 10px;
}
.btn-talk:hover {
    background: var(--accent, #ff6b35);
    box-shadow: 0 8px 22px rgba(255, 107, 53, 0.35);
    transform: translateY(-2px);
}

/* ================= MEGA MENU CORE STYLES ================= */
.has-mega-menu {
    position: static; /* Allows full-width dropdown */
}

.mega-menu-box {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.14);
    border-top: 3px solid var(--primary, #083199);
    border-bottom: 1px solid #e2e8f0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 9999;
}

/* Show on Hover (Desktop) */
.has-mega-menu:hover .mega-menu-box {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.has-mega-menu:hover .arrow-icon {
    transform: rotate(180deg);
    color: var(--primary, #083199);
}

.mega-menu-grid {
    width: 92%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 38px 0 42px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1.2fr;
    gap: 25px;
    align-items: stretch;
}

/* Column Headers */
.col-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 14px;
    margin-bottom: 12px;
    border-bottom: 1px solid #edf2f7;
}

.head-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.head-icon.blue { background: #e0f2fe; color: #0284c7; }
.head-icon.orange { background: #ffedd5; color: #ea580c; }
.head-icon.green { background: #dcfce7; color: #16a34a; }
.head-icon.purple { background: #f3e8ff; color: #9333ea; }

.col-head h4 {
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.2px;
}

/* Service Links inside Columns */
.mega-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mega-links li a {
    display: block;
    padding: 8px 10px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.mega-links li a:hover {
    background-color: #f8fafc;
    transform: translateX(4px);
}

.sub-link-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: #1e293b;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mega-links li a:hover .sub-link-title {
    color: var(--primary, #083199);
}

.mega-links li a p {
    font-size: 0.78rem;
    color: #64748b;
    margin: 2px 0 0;
    line-height: 1.35;
}

/* Badges inside links */
.hot-badge {
    font-size: 0.65rem;
    background: #fee2e2;
    color: #dc2626;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 20px;
    text-transform: uppercase;
}
.new-badge {
    font-size: 0.65rem;
    background: #dcfce7;
    color: #15803d;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 20px;
    text-transform: uppercase;
}

/* Right Featured Promo Card */
.mega-featured-card {
    background: linear-gradient(145deg, #083199 0%, #03184d 100%);
    border-radius: 14px;
    padding: 28px 24px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 12px 30px rgba(8, 49, 153, 0.25);
    position: relative;
    overflow: hidden;
}

.mega-featured-card::before {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    background: rgba(255, 107, 53, 0.2);
    border-radius: 50%;
    top: -40px;
    right: -40px;
    pointer-events: none;
}

.featured-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    width: fit-content;
    margin-bottom: 14px;
}

.mega-featured-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 8px;
    color: #ffffff;
}

.mega-featured-card p {
    font-size: 0.85rem;
    color: #cbd5e1;
    line-height: 1.5;
    margin-bottom: 22px;
}

.featured-btn {
    background: var(--accent, #ff6b35);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 10px 18px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    transition: all 0.25s ease;
}
.featured-btn:hover {
    background: #e0531e;
    transform: translateX(3px);
}

/* ================= RESPONSIVE ADJUSTMENTS ================= */
@media (max-width: 1200px) {
    .mega-menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .mega-featured-card {
        grid-column: span 2;
    }
}

@media (max-width: 992px) {
    .desktop-only { display: none; }
    .nav-menu { gap: 4px; }
    .nav-link { padding: 8px 10px; font-size: 0.9rem; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    .menu-toggle { display: block; font-size: 1.6rem; cursor: pointer; }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        display: none;
        max-height: 85vh;
        overflow-y: auto;
    }
    .nav-menu.active {
        display: flex;
    }

    .has-mega-menu {
        width: 100%;
    }

    .mega-menu-box {
        position: static;
        box-shadow: none;
        border: none;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0;
    }
    .has-mega-menu.mobile-open .mega-menu-box {
        display: block;
    }

    .mega-menu-grid {
        grid-template-columns: 1fr;
        padding: 15px 0;
    }
    .mega-featured-card {
        grid-column: span 1;
    }
    .btn-talk {
        margin: 15px 0 0 0;
        width: 100%;
        justify-content: center;
    }
}
/* ================= RESPONSIVE DESIGN ================= */
@media (max-width: 1100px) {
    .values-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .overview-grid,
    .mission-grid {
        grid-template-columns: 1fr;
    }
    .overview-badge {
        bottom: -15px;
        right: 15px;
    }
    .page-banner h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 600px) {
    .values-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }
    .stats-mini-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
}

  /* ================= CONTACT PAGE CUSTOM STYLING ================= */
        .contact-wrapper-section {
            padding: 85px 0 90px;
            background-color: #f8fafc;
        }

        /* 4 Info Cards Grid */
        .contact-info-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin-bottom: 60px;
        }

        .contact-info-card {
            background: #ffffff;
            border-radius: 16px;
            padding: 32px 24px;
            border: 1px solid #e2e8f0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .contact-info-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 35px rgba(8, 49, 153, 0.08);
            border-color: #083199;
        }

        .contact-card-icon {
            width: 65px;
            height: 65px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            margin-bottom: 20px;
        }

        .icon-blue { background: #e0f2fe; color: #0284c7; }
        .icon-orange { background: #ffedd5; color: #ea580c; }
        .icon-green { background: #dcfce7; color: #16a34a; }
        .icon-purple { background: #f3e8ff; color: #9333ea; }

        .contact-info-card h4 {
            font-size: 1.18rem;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 8px;
        }

        .contact-info-card p,
        .contact-info-card a {
            font-size: 0.92rem;
            color: #475569;
            line-height: 1.55;
            display: block;
        }

        .contact-info-card a:hover {
            color: #ff6b35;
        }

        /* Main Form & Map Section Grid */
        .contact-main-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 40px;
            align-items: stretch;
        }

        .contact-form-box {
            background: #ffffff;
            border-radius: 20px;
            padding: 45px 40px;
            border: 1px solid #e2e8f0;
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.04);
        }

        .contact-form-box h3 {
            font-size: 2rem;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 10px;
        }

        .contact-form-box p.lead {
            font-size: 0.98rem;
            color: #64748b;
            margin-bottom: 30px;
        }

        .form-row-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px;
        }

        /* Map Card */
        .contact-map-card {
            background: #ffffff;
            border-radius: 20px;
            border: 1px solid #e2e8f0;
            overflow: hidden;
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.04);
            display: flex;
            flex-direction: column;
        }

        .map-frame-box {
            flex: 1;
            min-height: 380px;
            width: 100%;
        }

        .map-frame-box iframe {
            width: 100%;
            height: 100%;
            border: 0;
            display: block;
        }

        .map-bottom-strip {
            padding: 24px 28px;
            background: #083199;
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .map-bottom-strip div h5 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .map-bottom-strip div p {
            font-size: 0.88rem;
            color: #cbd5e1;
            margin: 0;
        }

        .btn-call-direct {
            background: #ff6b35;
            color: #ffffff;
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.88rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .btn-call-direct:hover {
            background: #e0531e;
            transform: scale(1.05);
        }

        /* Responsive */
        @media (max-width: 1100px) {
            .contact-info-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .contact-main-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 650px) {
            .contact-info-grid {
                grid-template-columns: 1fr;
            }
            .form-row-2 {
                grid-template-columns: 1fr;
            }
            .contact-form-box {
                padding: 30px 20px;
            }
            .map-bottom-strip {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
        }
		
		  /* ================= COMPACT FULL-WIDTH SECTION ================= */
    .digiplus-approach-section {
        width: 100%;
        background-color: #0a0c12;
        background-image: 
            radial-gradient(circle at 10% 20%, rgba(245, 158, 11, 0.10) 0%, transparent 40%),
            radial-gradient(circle at 85% 70%, rgba(30, 58, 138, 0.18) 0%, transparent 45%),
            radial-gradient(circle at 30% 90%, rgba(245, 158, 11, 0.07) 0%, transparent 35%);
        padding: 60px 0 75px 0; /* Compact Height */
        color: #ffffff;
        font-family: 'Plus Jakarta Sans', 'DM Sans', sans-serif;
        position: relative;
        overflow: hidden;
    }

    .digiplus-container {
        width: 90%;
        max-width: 1180px;
        margin: 0 auto;
    }

    /* Section Headings */
    .section-title-wrap {
        text-align: center;
        margin-bottom: 35px;
    }

    .sub-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 0.75rem;
        font-weight: 700;
        color: #f59e0b;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 8px;
    }

    .sub-badge::after {
        content: '';
        display: inline-block;
        width: 22px;
        height: 2px;
        background-color: #f59e0b;
    }

    .main-heading {
        font-size: 2.2rem; /* Compact Font Size */
        font-weight: 800;
        color: #ffffff;
        letter-spacing: -0.5px;
        line-height: 1.25;
    }

  /* ==========================================================================
       ARBAZO THEME: LUXURY TECH NAVY & GOLDEN AMBER INTERACTION
    ========================================================================== */
    :root {
        --arb-navy-base: #060e24;
        --arb-navy-card: rgba(14, 34, 77, 0.55);
        --arb-navy-border: rgba(147, 197, 253, 0.16);
        --arb-accent-amber: #f59e0b;
        --arb-accent-gradient: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
        --arb-text-white: #ffffff;
        --arb-text-muted: #94a3b8;
    }

    .arb-agency-section {
        width: 100%;
        background-color: var(--arb-navy-base);
        background-image: 
            radial-gradient(circle at 12% 18%, rgba(8, 49, 153, 0.38) 0%, transparent 45%),
            radial-gradient(circle at 88% 50%, rgba(245, 158, 11, 0.12) 0%, transparent 40%),
            radial-gradient(circle at 50% 90%, rgba(14, 165, 233, 0.14) 0%, transparent 48%);
        padding: 75px 0 90px 0;
        color: var(--arb-text-white);
        font-family: 'DM Sans', sans-serif;
        position: relative;
        overflow: hidden;
    }

    .arb-container {
        width: 90%;
        max-width: 1180px;
        margin: 0 auto;
    }

    /* Section Headers */
    .arb-header-wrap {
        text-align: center;
        margin-bottom: 45px;
    }

    .arb-kicker {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 0.78rem;
        font-weight: 700;
        color: var(--arb-accent-amber);
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }

    .arb-kicker::after {
        content: '';
        display: inline-block;
        width: 22px;
        height: 2px;
        background-color: var(--arb-accent-amber);
    }

    .arb-heading {
        font-size: 2.4rem;
        font-weight: 800;
        color: #ffffff;
        letter-spacing: -0.5px;
        line-height: 1.22;
        margin: 0;
    }

    /* ==========================================================================
       PART 1: APPROACH STEP CARDS (LIGHT BLUE GLASS -> AMBER HOVER + SPIN)
    ========================================================================== */
    .arb-approach-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin-bottom: 75px;
    }

    .arb-approach-card {
        background: var(--arb-navy-card);
        border: 1px solid var(--arb-navy-border);
        border-radius: 20px;
        padding: 34px 26px 26px;
        min-height: 290px;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                    background 0.4s ease, 
                    border-color 0.4s ease, 
                    box-shadow 0.4s ease;
    }

    /* Step Counter Pill (01, 02, 03) */
    .arb-step-pill {
        position: absolute;
        top: -14px;
        right: 28px;
        width: 44px;
        height: 28px;
        background: #082154;
        border: 1px solid rgba(147, 197, 253, 0.3);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.8rem;
        font-weight: 800;
        color: #93c5fd;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        transition: all 0.35s ease;
        z-index: 4;
    }

    .arb-approach-card h3 {
        font-size: 1.4rem;
        font-weight: 800;
        margin-bottom: 18px;
        color: #ffffff;
        transition: color 0.35s ease;
    }

    /* Card Tag Pills */
    .arb-tag-stack {
        display: flex;
        flex-direction: column;
        gap: 8px;
        max-width: 62%;
        z-index: 2;
    }

    .arb-tag-pill {
        padding: 6px 14px;
        border-radius: 20px;
        font-size: 0.78rem;
        font-weight: 600;
        width: fit-content;
        background: rgba(14, 165, 233, 0.12);
        border: 1px solid rgba(14, 165, 233, 0.22);
        color: #e0f2fe;
        transition: all 0.35s ease;
    }

    /* 3D Shape Floating Box */
    .arb-shape-wrap {
        position: absolute;
        bottom: 12px;
        right: 12px;
        width: 135px;
        height: 135px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 3;
        pointer-events: none;
    }

    .arb-shape-img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.7));
        transform: rotate(0deg) scale(1);
        transition: filter 0.3s ease;
    }

    /* Infinite 360 Spin Keyframe */
    @keyframes arbInfiniteSpin {
        from { transform: rotate(0deg) scale(1.15); }
        to   { transform: rotate(360deg) scale(1.15); }
    }

    /* === HOVER EFFECT: RICH AMBER YELLOW + CONTINUOUS SPIN === */
    .arb-approach-card:hover,
    .arb-approach-card.is-active-default {
        background: var(--arb-accent-gradient);
        border-color: #f59e0b;
        transform: translateY(-6px);
        box-shadow: 0 20px 42px rgba(245, 158, 11, 0.38);
    }

    .arb-approach-card:hover h3,
    .arb-approach-card.is-active-default h3 {
        color: #0f172a;
    }

    .arb-approach-card:hover .arb-tag-pill,
    .arb-approach-card.is-active-default .arb-tag-pill {
        background: rgba(15, 23, 42, 0.14);
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .arb-approach-card:hover .arb-step-pill,
    .arb-approach-card.is-active-default .arb-step-pill {
        background: #0f172a;
        border-color: #0f172a;
        color: #f59e0b;
    }

    /* Image rotates endlessly while hovering */
    .arb-approach-card:hover .arb-shape-img {
        animation: arbInfiniteSpin 3s linear infinite;
        filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.8));
    }

    /* ==========================================================================
       PART 2: INTERACTIVE SERVICES (SPLIT PREVIEW + SCALE TEXT ON HOVER)
    ========================================================================== */
    .arb-services-block {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 60px;
    }

    .arb-services-dual-grid {
        display: grid;
        grid-template-columns: 1fr 1.65fr;
        gap: 48px;
        align-items: center;
    }

    /* Left Image Showcase Display */
    .arb-preview-viewport {
        position: relative;
        height: 350px;
        border-radius: 24px;
        background: radial-gradient(circle at center, rgba(8, 49, 153, 0.45) 0%, rgba(6, 14, 36, 0.8) 75%);
        border: 1px solid var(--arb-navy-border);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .arb-preview-viewport::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 24px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
        pointer-events: none;
    }

    .arb-preview-stage {
        width: 90%;
        height: 90%;
        position: relative;
        border-radius: 18px;
        overflow: hidden;
    }

    .arb-showcase-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        visibility: hidden;
        transform: scale(0.92) translateY(12px);
        transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
        border-radius: 18px;
    }

    .arb-showcase-img.active {
        opacity: 1;
        visibility: visible;
        transform: scale(1) translateY(0);
    }

    /* Right Side: List of Rows */
    .arb-service-list {
        display: flex;
        flex-direction: column;
    }

    .arb-service-row {
        padding: 22px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        transition: border-color 0.3s ease;
    }

    .arb-service-left {
        display: flex;
        align-items: baseline;
        gap: 18px;
    }

    .arb-service-idx {
        font-size: 1.25rem;
        font-weight: 700;
        font-style: italic;
        color: #64748b;
        transition: color 0.3s ease;
    }

    .arb-service-name {
        font-size: 1.95rem;
        font-weight: 800;
        color: #e2e8f0;
        letter-spacing: -0.4px;
        transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .arb-service-btn {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.18);
        color: #cbd5e1;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.95rem;
        transition: all 0.35s ease;
    }

    /* === HOVER EXPANSION: BIG HEADLINE & ARROW POP === */
    .arb-service-row:hover .arb-service-name,
    .arb-service-row.active .arb-service-name {
        font-size: 2.55rem;
        color: #ffffff;
        text-shadow: 0 0 24px rgba(245, 158, 11, 0.35);
        transform: translateX(10px);
    }

    .arb-service-row:hover .arb-service-idx,
    .arb-service-row.active .arb-service-idx {
        color: var(--arb-accent-amber);
    }

    .arb-service-row:hover .arb-service-btn,
    .arb-service-row.active .arb-service-btn {
        background: var(--arb-accent-amber);
        border-color: var(--arb-accent-amber);
        color: #060e24;
        transform: rotate(45deg) scale(1.12);
        box-shadow: 0 6px 18px rgba(245, 158, 11, 0.45);
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .arb-approach-grid {
            grid-template-columns: 1fr;
            gap: 28px;
        }
        .arb-services-dual-grid {
            grid-template-columns: 1fr;
        }
        .arb-preview-viewport {
            height: 300px;
        }
        .arb-heading {
            font-size: 1.9rem;
        }
    }

    @media (max-width: 600px) {
        .arb-service-name {
            font-size: 1.45rem;
        }
        .arb-service-row:hover .arb-service-name,
        .arb-service-row.active .arb-service-name {
            font-size: 1.7rem;
        }
        .arb-tag-stack {
            max-width: 100%;
        }
    }
