    /* ================= RESET &amp; BASICS ================= */
* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
    --primary: #183D71;
    --primary-gradient: linear-gradient(135deg, #183D71, #0a2342);
    --secondary: #007BFF;
    --accent: #FDD105;
    --text-dark: #333;
    --bg-light: #f8f9fa;
}
body { font-family: 'Inter', sans-serif; color: var(--text-dark); background-color: #fff; line-height: 1.6; overflow-x: hidden;}
a { text-decoration: none; }

/* ================= 1. HERO &amp; HEADER (Fixed Fixed Nav) ================= */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    /* Background with dark overlay for readability */
    background: linear-gradient(rgba(12, 32, 60, 0.85), rgba(0, 0, 0, 0.7)),
    url("/web/jakarta.faces.resource/images/bg3.png.xhtml") no-repeat center center / cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Nav Overlay: Absolute positions the nav on top of the hero image */
/*.nav-overlay {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    z-index: 1000;*/
/*}*/
/*!* ========== STICKY NAVBAR ========== *!*/
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    padding: 0px 0;
    transition: all 0.3s ease-in-out;
}

/* When scrolling */
.nav-overlay.scrolled {
    background: rgba(0, 0, 0, 0.85);
    padding: 5px 0;
}

/* Fix hero content being hidden under fixed navbar */
.hero-section {
    padding-top: 90px; /* Adjust based on navbar height */
}

.hero-content {
    z-index: 2;
    color: #fff;
    padding: 20px;
    max-width: 1000px;
    margin-top: 60px; /* Slight offset for visually center considering nav */
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* Typography "Inspire/Innovate/Impact" */
.hero-title h1 {
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}
.hero-top-line {
    display: block;
    font-weight: 300;
    font-size: 3rem;
    letter-spacing: 1px;
    margin-bottom: 5px;
}
.hero-top-line strong { font-weight: 800; }

.hero-bottom-line {
    display: block;
    font-weight: 900;
    font-size: 5rem;
    text-transform: uppercase;
    color: var(--accent); /* Yellow Impact */
    margin-top: -10px;
}

.hero-desc {
    font-size: 1.25rem;
    color: #e0e0e0;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

/* Responsive Hero Font Sizes */
@media (max-width: 768px) {
    .hero-top-line { font-size: 2rem; }
    .hero-bottom-line { font-size: 3.5rem; }
    .hero-desc { font-size: 1rem; }
    .hero-section { height: 90vh; }
}

/* ================= 2. DYNAMIC SERVICE CAROUSEL (THE FIX) ================= */
.dynamic-services {
    padding: 80px 0;
    /* Stylish Gradient Background */
    background: linear-gradient(180deg, #6CA2DE 0%, #183D71 100%);
    color: white;
    text-align: center;
}

/* Container for arrow + cards */
.carousel-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Card Sizing Logic based on device width */
.service-dynamic-card {
    background: #fff;
    color: #333;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
    scroll-snap-align: center;
    flex: 0 0 auto; /* Do not shrink/grow, respect width */
}

/* PC/Desktop Width */
.service-dynamic-card { width: 320px; }

@media (max-width: 992px) {
    /* Tablet: Card takes a bit more space, roughly 2 per screen */
    .service-dynamic-card { width: 300px; }
}

@media (max-width: 600px) {
    /* Mobile: Card takes almost full width */
    .service-dynamic-card { width: 85vw; }
}

.service-dynamic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Inner Content */
.service-dynamic-card i { font-size: 2.5rem; color: var(--primary); margin-bottom: 20px; display:block; }
.service-dynamic-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 15px; height: 3.2em; overflow:hidden;}
.service-dynamic-card p { font-size: 0.95rem; color: #666; margin-bottom: 20px; flex-grow: 1; }

/* Read More / Pricing Btn */
.read-more-btn {
    color: var(--secondary); font-weight: 600; font-size: 0.9rem; cursor: pointer; display: inline-block; margin-bottom: 15px;
}

.pricing-btn {
    background: var(--primary);
    color: #fff !important;
    text-align: center;
    padding: 12px;
    border-radius: 50px;
    font-weight: 700;
    display: block;
    margin-top: auto; /* Push to bottom */
    transition: background 0.3s;
}
.pricing-btn:hover { background: #0b2244; }

/* ARROW STYLING */
.nav-btn {
    background: rgba(255,255,255,0.2);
    border: 2px solid white;
    color: white;
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 1.2rem;
    transition: 0.3s;
    /* Sticky positioning visual trick or absolute */
    flex-shrink: 0;
    margin: 0 10px;
}
.nav-btn:hover { background: white; color: var(--primary); }
/* Hide arrows on mobile touch (swipe is better) */
@media (max-width: 600px) { .nav-btn { display: none; } }

/* ================= 3. EXPERTISE GRID (Corrected to standard Grid) ================= */
.static-services {
    padding: 80px 20px;
    background-color: var(--bg-light);
    text-align: center;
}

.static-services .section-header h2 { font-size: 2.5rem; color: var(--primary); font-weight: 800; }
.static-services .section-header p { font-size: 1.1rem; color: #666; margin-bottom: 40px; }

/* Responsive Grid: 1 Col Mobile, 2 Col Tablet, 4 Col Desktop */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.expert-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    border-top: 5px solid transparent;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: 0.3s;
    text-align: center;
}

.expert-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-top: 5px solid var(--secondary);
}

.icon-circle {
    width: 70px; height: 70px; margin: 0 auto 20px;
    background: rgba(0, 123, 255, 0.1); color: var(--secondary);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 2rem; transition: 0.3s;
}
.expert-card:hover .icon-circle { background: var(--secondary); color: #fff; }

.expert-card h3 { font-size: 1.3rem; margin-bottom: 15px; font-weight: 700; color: #333; }
.expert-card p { font-size: 1rem; color: #666; line-height: 1.6; margin-bottom: 20px; }

/* ================= 4. FEATURES &amp; CTA ================= */
.features-section { background: #fff; padding: 80px 20px; text-align: center; border-top: 1px solid #eee; }
.features-wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; margin-top: 40px; max-width: 1200px; margin: 40px auto; }

.feat-box {
    flex: 1 1 300px; max-width: 350px;
    background: #fdfdfd; padding: 30px; border-radius: 12px; border: 1px solid #eee;
    transition: 0.3s;
}
.feat-box:hover { box-shadow: 0 10px 20px rgba(0,0,0,0.1); border-color: var(--secondary); }
.feat-box i { font-size: 2.5rem; color: var(--accent); margin-bottom: 15px; }
.feat-box h3 { margin-bottom: 10px; color: #222; font-weight: bold; }

.cta-strip { background: var(--primary); color: #fff; padding: 60px 20px; text-align: center; }
.btn-action {
    display: inline-block; padding: 15px 35px; border-radius: 50px;
    background: #fff; color: var(--primary); font-weight: 700; margin: 10px;
    transition: 0.3s;
}
.btn-action:hover { opacity: 0.9; transform: scale(1.05); }

