/* --- CSS Design Variables --- */
:root {
    --primary-navy: #0A1931;
    --primary-red: #C31922;
    --text-dark: #222222;
    --white: #FFFFFF;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 4px;
}
body{
    font-family: poppins;
}
/* --- Navigation Base Layer --- */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 90px;
    width: 100%;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Brand Logo Layout --- */
.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.brand-logo-img {
    height: 55px; /* Scaled perfectly to fit inside the 90px navbar container */
    width: auto;
    object-fit: contain;
    display: block;
}

/* --- Menu Desktop Hyperlinks --- */
.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
    position: relative;
    transition: var(--transition);
}

.nav-links a:hover, 
.nav-links a.active {
    color: var(--primary-red);
}

/* --- Action Button Component --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: var(--border-radius);
    transition: var(--transition);
    gap: 8px;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.btn-navy {
    background-color: #0f2c74;
    color: var(--white);
}

.btn-navy:hover {
    background-color: var(--primary-red);
}

/* --- Responsive Layout Breakpoints --- */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-navy);
    cursor: pointer;
}

@media (max-width: 992px) {
    .nav-links {
        gap: 20px;
    }
    .brand-logo-img {
        height: 45px;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-btn {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    /* Active Mobile Drawer Menu Overlay */
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 30px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
        gap: 20px;
        z-index: 999;
    }
}


/////***** Banner Section*****/////

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
}

.hero{
    position:relative;
    height: 100vh;
    min-height:550px;
    display:flex;
    align-items:center;
    background:url("images/banner.png") center center;/cover no-repeat;
    overflow:hidden;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(90deg,
    rgba(255,255,255,.96) 0%,
    rgba(255,255,255,.90) 28%,
    rgba(255,255,255,.45) 52%,
    rgba(255,255,255,0) 72%);
}

.container{
    width:1200px;
    margin:auto;
    position:relative;
    z-index:2;
}

.hero-left{
    flex:0 0 55%;
    max-width:700px;
}

.hero-tag{
    color:#d4322d;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
}

.hero h1 {
    margin-top: 5px;
    font-size: 40px;
    line-height: 1.18;
    color: #0f2c74;
    font-weight: 700;
    text-transform: uppercase;
}

.hero h4{

    margin-top:5px;
    color:#1d2436;
    font-size:18px;
    font-weight:600;
}

.hero p{
    width: 70%;
    margin-top:2px;
    font-size:15px;
    color:#555;
    line-height:1.9;
}

.hero-btns{
    display:flex;
    gap:18px;
    margin-top:40px;
}

.btn{
    padding:18px 34px;
    text-decoration:none;
    font-weight:600;
    border-radius:4px;
    transition:.3s;
}

.btn-primary{
    background:#102d78;
    color:#fff;
}

.btn-primary:hover{
    background:#001f63;
}

.btn-secondary{
    background:#d63a37;
    color:#fff;
}

.btn-secondary:hover{
    background:#b82824;
}

.item h2{
    color:#0f2c74;
    font-size:34px;
    font-weight:700;
}

.item p{
    margin-top:8px;
    font-size:16px;
    color:#555;
}

@media(max-width:991px){

.hero{
    height:auto;
    padding:120px 20px;
}

.container{
    width:100%;
}

.hero-left{
    width:100%;
}

.hero h1{
    font-size:48px;
}

.hero h4{
    font-size:22px;
}

.hero p{
    font-size:17px;
}

.hero-btns{
    flex-direction:column;
}

}
.hero-counter{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:10px;
    margin-top:55px;
    flex-wrap:nowrap;
    width:100%;
}

.counter-box{
    display:flex;
    align-items:center;
    gap:5px;
    flex:1;
    min-width:0;
}

.counter-icon{
    width:40px;
    height:40px;
    min-width:40px;
    border:1px solid #d8dfea;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#fff;
}

.counter-icon i{
    color:#17367b;
    font-size:16px;
}
.counter-content{
    width: 100%;
}
.counter-content h3{
    margin:0;
    color:#17367b;
    font-size:13.5px;
    font-weight:700;
    line-height:1;
}

.counter-content span {
    display: block;
    margin-top: 5px;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 13px;
    line-height: 1.4;
    white-space: nowrap;
}
.title-line{
    width:70px;
    height:3px;
    background:#e53935;
    border-radius:30px;
    margin-bottom:12px;
}

/*-------------------*/

/* --- Counter Row Stats Bar --- */
.stats-bar {
    background-color: #051636; /* Exact deep slate navy background */
    color: #FFFFFF;
    padding: 35px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 10px 0;
}

/* Thin vertical dividers between items, except the last one */
.stat-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.12);
}

/* Icon Design */
.stat-icon-wrapper {
    font-size: 32px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 8px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

/* Numeric Styling */
.stat-number {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: 4px;
}

/* Label Subtext Styling */
.stat-label {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.2px;
}

/* Responsive Media Matrix */
@media (max-width: 768px) {
    .stats-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 0;
    }
    
    /* Remove vertical lines for mobile grids */
    .stat-card:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .stats-container {
        grid-template-columns: 1fr;
        gap: 25px 0;
    }
}

/*-----------------*/

/* --- Exact About Us Section Layout System --- */
.about-us {
    padding: 60px 0;
    background-color: var(--white);
    overflow: hidden;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 100px;
}

/* --- Image Side Framework Adjustments --- */
.about-image-side {
    flex: 1;
    position: relative;
    max-width: 550px;
    padding: 30px; /* Safe padding zones preventing overflow cuts */
}

.image-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.main-about-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    z-index: 2;
    position: relative;
    display: block;
}

/* 1. Red Line Border Outline Box */
.red-border-outline {
    position: absolute;
    width: 100%;
    height: 100%;
    top: -30px;
    left: -30px;
    border: 2px solid var(--primary-red);
    border-radius: var(--border-radius);
    z-index: 1;
}

/* 2. Grey Dot Grid Pattern Element */
.dot-pattern {
    position: absolute;
    width: 140px;
    height: 140px;
    bottom: -40px;
    right: -40px;
    background-image: radial-gradient(#CED4DA 2px, transparent 2px);
    background-size: 16px 16px;
    z-index: 1;
}

/* 3. Layered Corner-Aligned Experience Badge */
.experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background-color: var(--white);
    padding: 24px 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-left: 5px solid var(--primary-red);
    text-align: center;
    z-index: 3;
    border-radius: var(--border-radius);
    min-width: 160px;
}

.badge-num {
    display: block;
    font-size: 40px;
    font-weight: 800;
    color: var(--primary-red);
    line-height: 1;
}

.badge-txt {
    display: block;
    font-size: 12px;
    color: var(--primary-navy);
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 4px;
    line-height: 1.3;
}

/* --- Content Typography Side (Right) --- */
.about-content-side {
    flex: 1;
}

.about-content-side h2 {
    font-size: 38px;
    color: #0f2c74;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.25;
}

.about-content-side p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.7;
}

/* --- Viewport Responsiveness Adjustments --- */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }

    .about-image-side {
        margin: 0 auto;
    }
}
/*---------------*/

/* --- Services Section Base Layout --- */
.services-section {
    /*padding: 80px 0;*/
    background-color: var(--white);
    text-align: center;
}

.services-header {
    margin-bottom: 40px;
    text-align: center;
}

.section-tag {
    display: inline-block;
    color: var(--primary-red);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.services-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: #0f2c74;
    margin-top: 8px;
    letter-spacing: -0.5px;

}

/* --- Outer Tinted Section Wrapper --- */
.services-grid-wrapper {
    background-color: var(--bg-container);
    padding: 24px;
    border-radius: 6px;
    border: 1px solid var(--border-exact);
}

/* --- 6-Column Display Grid Layout --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 5px;
    width: 100%;
}

/* --- Service Card Element --- */
.service-card {
    background-color: var(--white);
    border: 1px solid #e3dede;
    border-radius: 4px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.25s ease-in-out;
}
.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(11, 27, 61, 0.06);
}

/* --- Inner Components Text styling --- */
.service-icon {
    font-size: 50px;
    color: #0f2c74;
    margin-bottom: 5px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: #0f2c74;
    margin-bottom: 0px;
    line-height: 1.3;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card p {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    text-align: center;
}

/* --- Responsiveness Breakpoints --- */
@media (max-width: 1200px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}
@media (max-width: 768px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .services-header h2 { font-size: 30px; }
}
@media (max-width: 480px) {
    .services-grid { grid-template-columns: 1fr; }
}
/*--------------------*/

.why-choose-us-section {
            font-family: 'Poppins', sans-serif;
            background-color: #ffffff;
            color: #2d3748;
            width: 100%;
            padding-top:50px;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
        }

        /* Scoped block reset to safeguard global structure */
        .why-choose-us-section *, 
        .why-choose-us-section ::before, 
        .why-choose-us-section ::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        /* Full-Width Grid Structure */
        .why-choose-us-section .wcu-container {
            width: 100%;
            max-width: 100%; /* Removes hard boundaries to span completely full screen */
            display: grid;
            grid-template-columns: 1fr 1.4fr; /* Exact matching image-to-text balance */
            gap: 60px;
            align-items: center;
        }

        /* Left Side Content - Vertically Centered and Aligned */
        .why-choose-us-section .content-side {
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 70px;
        }

        .why-choose-us-section .sub-heading {
            color: #d92323; 
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            display: block;
            margin-bottom: 12px;
        }

        .why-choose-us-section .main-heading {
            color: #0d2354; 
            font-size: 42px; /* Large striking desktop font size */
            font-weight: 700;
            line-height: 1.25;
            margin-bottom: 15px;
        }

        .why-choose-us-section .divider {
            width: 45px;
            height: 3px;
            background-color: #f37070; 
            margin-bottom: 35px;
        }

        /* List Alignment fixes */
        .why-choose-us-section .features-list {
         list-style: none;
         padding: 15px;
}

        .why-choose-us-section .features-list li {
            font-size: 16px;
            font-weight: 600;
            color: #3f4e6b; 
            margin-bottom: 18px;
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .why-choose-us-section .checkmark {
            color: #e53e3e; 
            font-weight: 700;
            font-size: 18px;
            flex-shrink: 0;
        }

        /* Right Side Layout - Spans right to the browser edge */
        .why-choose-us-section .image-side {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
        }

        .why-choose-us-section .image-side img {
            width: 100%;
            height: 100%;
            max-height: 520px; /* Caps desktop image presentation framework nicely */
            object-fit: cover; /* Keeps image razor sharp without distorting aspect ratios */
            display: block;
            border-radius: 4px;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
            flex-direction: column;
            opacity: 0;
            transform: translateY(30px);
            animation: rbFadeInUp 0.8s ease forwards;
        }
        

        /* ==========================================
           TRUE RESPONSIVE MEDIA QUERIES
           ========================================== */

        /* Medium Devices & Small Laptops */
        @media (max-width: 1200px) {
            .why-choose-us-section {
                padding: 50px 5%;
            }
            .why-choose-us-section .wcu-container {
                gap: 40px;
                grid-template-columns: 1fr 1.2fr;
            }
            .why-choose-us-section .main-heading {
                font-size: 36px;
            }
        }

        /* Tablets & iPads (Drops cleanly into vertical stack) */
        @media (max-width: 992px) {
            .why-choose-us-section {
                padding: 50px 30px;
            }

            .why-choose-us-section .wcu-container {
                grid-template-columns: 1fr; /* 1 Column full-width stacking */
                gap: 40px;
            }
            
            .why-choose-us-section .image-side img {
                max-height: 400px; /* Restricts scaling height bloat on tablet orientation */
            }
        }

        /* Small Screen Smart Phones */
        @media (max-width: 576px) {
            .why-choose-us-section {
                padding: 40px 16px; /* Optimized edge margin space */
            }

            .why-choose-us-section .wcu-container {
                gap: 30px;
            }

            .why-choose-us-section .main-heading {
                font-size: 28px; /* Perfectly fluid responsive micro-text sizing */
            }

            .why-choose-us-section .features-list li {
                font-size: 15px; 
                margin-bottom: 14px;
                gap: 12px;
            }

            .why-choose-us-section .image-side img {
                max-height: 280px; /* Snug sizing framework context for mobile windows */
            }
        }


/*------------*/

/* ==========================================
           COMPLETELY ISOLATED PORTFOLIO SECTION
           ========================================== */

        .rb-showcase-section {
            font-family: 'Poppins', sans-serif;
            background-color: #ffffff;
            color: #2d3748;
            width: 100%;
            /* Aligned to 8% left padding matching the content alignment of your upper section */
            /*padding-top: 50px; */
            overflow: hidden;
        }

        /* Scoped block reset to secure layout consistency */
        .rb-showcase-section *, 
        .rb-showcase-section ::before, 
        .rb-showcase-section ::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        /* Fluid 4-Column Grid Frame */
        .rb-showcase-section .showcase-grid {
            width: 100%;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px;
            padding: 20px;
        }

        /* Individual Card with Entrance Animations */
        .rb-showcase-section .showcase-card {
            background: #ffffff;
            display: flex;
            flex-direction: column;
            opacity: 0;
            transform: translateY(30px);
            animation: rbFadeInUp 0.8s ease forwards;
        }

        /* Sequential entrance delay for each individual card item */
        .rb-showcase-section .showcase-card:nth-child(1) { animation-delay: 0.1s; }
        .rb-showcase-section .showcase-card:nth-child(2) { animation-delay: 0.2s; }
        .rb-showcase-section .showcase-card:nth-child(3) { animation-delay: 0.3s; }
        .rb-showcase-section .showcase-card:nth-child(4) { animation-delay: 0.4s; }

        /* Crisp bounding container for images */
        .rb-showcase-section .img-frame {
            width: 100%;
            aspect-ratio: 16 / 10; 
            overflow: hidden;
            border-radius: 2px;
            margin-bottom: 20px;
        }

        /* Image Display & Transition configuration */
        .rb-showcase-section .showcase-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        }

        /* Hover Effect: Micro zoom on image interaction */
        .rb-showcase-section .showcase-card:hover img {
            transform: scale(1.06);
        }

        /* Typography */
        .rb-showcase-section .title-text {
            color: #0d2354; /* Balanced corporate dark navy */
            font-size: 19px;
            font-weight: 700;
            margin-bottom: 8px;
            line-height: 1.3;
        }

        /* Red Accent bar underneath layout title */
        .rb-showcase-section .accent-bar {
            width: 30px;
            height: 3px;
            background-color: #b5414c; /* Soft primary red tint */
            margin-bottom: 12px;
            transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1);
        }

        /* Hover Effect: Accent underline grows longer gracefully */
        .rb-showcase-section .showcase-card:hover .accent-bar {
            width: 55px;
        }

        .rb-showcase-section .desc-text {
            color: #626e82; /* Professional slate gray */
            font-size: 14.5px;
            font-weight: 400;
            line-height: 1.5;
        }

        /* ==========================================
           ANIMATION ENGINE KEYFRAMES
           ========================================== */
        @keyframes rbFadeInUp {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ==========================================
           FLUID RESPONSIVE MEDIA BREAKPOINTS
           ========================================== */

        /* Mid-sized Screens (Laptops, Large Tablets) */
        @media (max-width: 1200px) {
            .rb-showcase-section {
                padding: 50px 6%;
            }
            .rb-showcase-section .showcase-grid {
                grid-template-columns: repeat(2, 1fr); /* 2x2 responsive fallback layout grid */
                gap: 40px;
            }
        }

        /* Compact Smart Phone Form Factors */
        @media (max-width: 576px) {
            .rb-showcase-section {
                padding: 40px 20px 60px 20px;
            }
            .rb-showcase-section .showcase-grid {
                grid-template-columns: 1fr; /* Uniform single column layout framework */
                gap: 35px;
            }
            .rb-showcase-section .title-text {
                font-size: 18px;
            }
        }

/* ==========================================
           ISOLATED TIMELINE PROCESS SECTION CSS 
           ========================================== */

        .rb-process-section {
            font-family: 'Poppins', sans-serif;
            background-color: #041a4e; /* Deep navy background matching your image */
            color: #ffffff;
            width: 100%;
            padding: 40px 0%;
            display: flex;
            flex-direction: column;
            align-items: center;
            overflow: hidden;
        }

        /* Scoped reset to isolate box sizing and defaults inside this section */
        .rb-process-section *, 
        .rb-process-section ::before, 
        .rb-process-section ::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        /* Section Title Header */
        .rb-process-section .section-header {
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #ffffff;
            margin-bottom: 60px;
            text-align: center;
            width: 100%;
        }

        /* Timeline Items Grid Frame */
        .rb-process-section .timeline-wrapper {
            position: relative;
            width: 100%;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        /* Horizontal Dashed Connecting Line Wrapper */
        .rb-process-section .timeline-line {
            position: absolute;
            top: 25px; /* Aligns precisely through the middle of the circles */
            left: 12.5%; /* Centers line starting from the middle of item 1 */
            right: 12.5%; /* Centers line ending at the middle of item 4 */
            height: 1px;
            border-top: 1px dashed rgba(255, 255, 255, 0.4);
            z-index: 1;
        }

        /* Individual Step Node Structure */
        .rb-process-section .process-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            z-index: 2; /* Ensures nodes stay on top of the dashed line */
            
            /* Entry Animation setup */
            opacity: 0;
            transform: translateY(25px);
            animation: rbStepFadeIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
        }

        /* Staggered loading sequence */
        .rb-process-section .process-step:nth-child(2) { animation-delay: 0.15s; }
        .rb-process-section .process-step:nth-child(3) { animation-delay: 0.3s; }
        .rb-process-section .process-step:nth-child(4) { animation-delay: 0.45s; }
        .rb-process-section .process-step:nth-child(5) { animation-delay: 0.6s; }

        /* Number Circle Badges */
        .rb-process-section .step-number {
            width: 50px;
            height: 50px;
            background-color: #c91c1c; /* Vibrant corporate red */
            color: #ffffff;
            font-size: 16px;
            font-weight: 700;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 24px;
            transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 0 0 0 rgba(201, 28, 28, 0.4);
        }

        /* Interactivity Animation: Circle pulses on step interaction */
        .rb-process-section .process-step:hover .step-number {
            transform: scale(1.12);
            background-color: #e52323;
            box-shadow: 0 0 15px 5px rgba(201, 28, 28, 0.5);
        }

        /* Process Header Labels */
        .rb-process-section .step-title {
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 12px;
            line-height: 1.4;
        }

        /* Step Paragraph Details */
        .rb-process-section .step-desc {
            font-size: 13.5px;
            color: rgba(255, 255, 255, 0.75); /* Soft white readability contrast */
            line-height: 1.6;
            max-width: 220px; /* Forces uniform balanced wrapping width */
        }


        /* ==========================================
           ANIMATION KEYFRAMES
           ========================================== */
        @keyframes rbStepFadeIn {
            0% {
                opacity: 0;
                transform: translateY(25px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }


        /* ==========================================
           TRUE FLUID RESPONSIVE MEDIA BREAKPOINTS
           ========================================== */

        /* Tablets and Smaller Laptops */
        @media (max-width: 992px) {
            .rb-process-section {
                padding: 60px 4%;
            }
            .rb-process-section .timeline-wrapper {
                gap: 15px;
            }
            .rb-process-section .step-title {
                font-size: 16px;
            }
            .rb-process-section .step-desc {
                font-size: 13px;
            }
        }

        /* Smart Phones & Vertical Stack Breakpoint */
        @media (max-width: 680px) {
            .rb-process-section {
                padding: 50px 24px;
            }

            /* Switches completely into a sleek vertical stream pipeline layout */
            .rb-process-section .timeline-wrapper {
                grid-template-columns: 1fr;
                gap: 45px;
                position: relative;
            }

            /* Converts dashed line from horizontal orientation to a vertical axis line */
            .rb-process-section .timeline-line {
                top: 25px;
                bottom: 25px;
                left: 25px; /* Locks line down the center of circles shifted to the left edge */
                right: auto;
                width: 1px;
                height: auto;
                border-top: none;
                border-left: 1px dashed rgba(255, 255, 255, 0.35);
            }

            /* Re-aligns step content leftward to read like a structural list tracking downwards */
            .rb-process-section .process-step {
                flex-direction: row;
                align-items: flex-start;
                text-align: left;
            }

            .rb-process-section .step-number {
                margin-bottom: 0;
                margin-right: 20px;
                flex-shrink: 0;
            }

            .rb-process-section .step-title {
                margin-top: 10px;
                margin-bottom: 6px;
                font-size: 17px;
            }

            .rb-process-section .step-desc {
                max-width: 100%; /* Expands descriptions to consume regular width on screen */
            }
        }


/* ==========================================
           ISOLATED TESTIMONIALS COMPONENT CSS 
           ========================================== */

        .rb-testimonials-section {
            font-family: 'Poppins', sans-serif;
            background-color: #ffffff;
            color: #2d3748;
            width: 100%;
            padding: 80px 0px;
            display: flex;
            flex-direction: column;
            align-items: center;
            overflow: hidden;
        }

        /* Component-scoped resets */
        .rb-testimonials-section *, 
        .rb-testimonials-section ::before, 
        .rb-testimonials-section ::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        /* Headers Alignment */
        .rb-testimonials-section .header-wrapper {
            text-align: center;
            margin-bottom: 50px;
        }

        .rb-testimonials-section .sub-title {
            color: #d92323; /* Crisp Red tint */
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            display: block;
            margin-bottom: 8px;
        }

        .rb-testimonials-section .main-title {
            color: #0d2354; /* Deep Navy Blue */
            font-size: 36px;
            font-weight: 700;
            line-height: 1.25;
        }

        /* Slider Display Window Wrapper */
        .rb-testimonials-section .slider-viewport {
            width: 100%;
            max-width: 1200px;
            overflow: hidden;
            position: relative;
        }

        /* The flex belt moving left/right horizontally */
        .rb-testimonials-section .slider-track {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
            width: 100%;
        }

        /* Each slide panel contains a full row of 3 testimonial columns */
        .rb-testimonials-section .slide-page {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            width: 100%;
            flex-shrink: 0;
        }

        /* Individual Card Item Structuring */
        .rb-testimonials-section .testimonial-card {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 16px;
            position: relative;
            align-items: start;
        }

        /* Vertical dividers between neighboring cards */
        .rb-testimonials-section .testimonial-card:not(:last-child)::after {
            content: '';
            position: absolute;
            right: -20px;
            top: 10%;
            height: 80%;
            width: 1px;
            background-color: #e2e8f0;
        }

        /* Premium Quote Icons */
        .rb-testimonials-section .quote-icon {
            color: #a0aec0;
            font-size: 42px;
            font-family: Georgia, serif;
            line-height: 1;
            font-weight: bold;
            user-select: none;
        }

        /* Card Content Inner Container */
        .rb-testimonials-section .card-content {
            display: flex;
            flex-direction: column;
        }

        /* Star Ratings Bar */
        .rb-testimonials-section .star-rating {
            color: #ffb400; /* Rich Amber Gold */
            font-size: 16px;
            margin-bottom: 12px;
            letter-spacing: 2px;
            align-self: flex-end; /* Pushes stars rightward to match design layout */
        }

        /* Review Narrative text */
        .rb-testimonials-section .review-text {
            color: #4a5568;
            font-size: 14.5px;
            line-height: 1.6;
            font-weight: 400;
            margin-bottom: 16px;
            text-align: left;
        }

        /* Author Metadata Signature lines */
        .rb-testimonials-section .author-name {
            color: #0d2354;
            font-size: 14.5px;
            font-weight: 700;
            text-align: left;
        }

        /* Bottom Nav Tracking Dots */
        .rb-testimonials-section .slider-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 40px;
        }

        .rb-testimonials-section .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: #cbd5e0;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .rb-testimonials-section .dot.active {
            background-color: #8c1d1d; /* Deep custom red tone indicator matching image dot */
        }

        /* ==========================================
           RESPONSIVE STRUCTURAL MEDIA BREAKPOINTS
           ========================================== */

        /* Tablets & Small Laptops */
        @media (max-width: 1024px) {
            .rb-testimonials-section .slide-page {
                grid-template-columns: repeat(2, 1fr); /* Drop layout rows down to 2 columns */
                gap: 30px;
            }
            /* Hide the CSS borders if cards stack differently */
            .rb-testimonials-section .testimonial-card:nth-child(2)::after {
                display: none;
            }
        }

        /* Smartphones & Mobile layouts */
        @media (max-width: 680px) {
            .rb-testimonials-section {
                padding: 50px 20px;
            }
            .rb-testimonials-section .main-title {
                font-size: 28px;
            }
            .rb-testimonials-section .slide-page {
                grid-template-columns: 1fr; /* True single data stream stacking framework */
                gap: 40px;
            }
            .rb-testimonials-section .testimonial-card::after {
                display: none !important;
            }
            .rb-testimonials-section .star-rating {
                align-self: flex-start; /* Resets right alignment to flat layout on narrow views */
            }
        }

/* ==========================================
           ISOLATED CTA & FOOTER COMPONENTS 
           ========================================== */
        
        .rb-footer-wrapper {
            font-family: 'Poppins', sans-serif;
            width: 100%;
            background-color: #041a4e; /* Core deep navy theme */
            color: #ffffff;
            position: relative;
        }

        /* Scoped block resets */
        .rb-footer-wrapper *, 
        .rb-footer-wrapper ::before, 
        .rb-footer-wrapper ::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        .rb-footer-wrapper a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s ease, padding-left 0.3s ease;
        }

        /* --- 1. LET'S BUILD TOGETHER CTA BANNER --- */
        .rb-footer-wrapper .cta-banner {
            width: 100%;
            padding: 40px 8%;
            background: linear-gradient(rgba(4, 26, 78, 0.9), rgba(4, 26, 78, 0.9)), 
                        url('https://images.unsplash.com/photo-1613490493576-7fde63acd811?auto=format&fit=crop&w=1400&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .rb-footer-wrapper .cta-text-side {
            max-width: 65%;
        }

        .rb-footer-wrapper .cta-title {
            font-size: 24px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .rb-footer-wrapper .cta-subtitle {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.5;
        }

        .rb-footer-wrapper .cta-btn {
            background-color: #c91c1c; /* Vivid Red */
            color: #ffffff;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            padding: 14px 28px;
            border-radius: 4px;
            letter-spacing: 0.5px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            white-space: nowrap;
            box-shadow: 0 4px 15px rgba(201, 28, 28, 0.3);
            transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
        }

        .rb-footer-wrapper .cta-btn:hover {
            background-color: #e52323;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(201, 28, 28, 0.5);
        }

        /* --- 2. MAIN FOOTER --- */
        .rb-footer-wrapper .main-footer {
            padding: 60px 8% 40px 8%;
            display: grid;
            grid-template-columns: 1.2fr 0.8fr 1fr 1.2fr;
            gap: 40px;
        }

        /* Column 1: Brand Info */
        .rb-footer-wrapper .footer-brand-col {
            display: flex;
            flex-direction: column;
        }

        .rb-footer-wrapper .brand-logo-area {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        /* Custom stylized 'R' placeholder icon matching the logo geometry */
        .rb-footer-wrapper .logo-box {
            width: 50px;
            height: 50px;
            border: 3px solid #ffffff;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 28px;
            font-weight: 700;
            position: relative;
        }
        .rb-footer-wrapper .logo-box::before {
            content: '';
            position: absolute;
            top: -8px;
            left: 50%;
            transform: translateX(-50%);
            border-bottom: 6px solid #c91c1c;
            border-left: 12px solid transparent;
            border-right: 12px solid transparent;
        }

        .rb-footer-wrapper .brand-name-text {
            font-size: 20px;
            font-weight: 700;
            letter-spacing: 0.5px;
            line-height: 1.2;
        }

        .rb-footer-wrapper .brand-name-text span {
            display: block;
            font-size: 11px;
            color: #c91c1c;
            letter-spacing: 1.5px;
        }

        .rb-footer-wrapper .brand-desc {
            font-size: 13.5px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            margin-bottom: 25px;
        }

        /* Social Handles Row */
        .rb-footer-wrapper .social-container {
            display: flex;
            gap: 10px;
        }

        .rb-footer-wrapper .social-circle {
            width: 34px;
            height: 34px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 14px;
            transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
        }

        .rb-footer-wrapper .social-circle:hover {
            background-color: #c91c1c;
            border-color: #c91c1c;
            transform: scale(1.1);
        }

        /* Columns 2 & 3: Lists setups */
        .rb-footer-wrapper .col-heading {
            font-size: 16px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 25px;
            position: relative;
        }

        .rb-footer-wrapper .footer-links-list {
            list-style: none;
        }

        .rb-footer-wrapper .footer-links-list li {
            margin-bottom: 12px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.75);
        }

        .rb-footer-wrapper .footer-links-list a:hover {
            color: #f37070;
            padding-left: 4px;
        }

        /* Column 4: Contact Us info */
        .rb-footer-wrapper .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            margin-bottom: 16px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.4;
        }

        .rb-footer-wrapper .contact-item i {
            color: rgba(255, 255, 255, 0.9);
            margin-top: 3px;
            width: 16px;
            text-align: center;
        }

        /* --- 3. BOTTOM PATENT RIBBON --- */
        .rb-footer-wrapper .copyright-ribbon {
            width: 100%;
            padding: 20px 8%;
            background-color: #03143c; /* Noticeably darker base tone overlay */
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
            letter-spacing: 0.5px;
        }

        /* ==========================================
           FLUID RESPONSIVE MEDIA BREAKPOINTS
           ========================================== */

        /* Laptops & Medium Screens */
        @media (max-width: 1100px) {
            .rb-footer-wrapper .main-footer {
                grid-template-columns: repeat(2, 1fr); /* Matrix transitions seamlessly to 2x2 grid */
                gap: 40px;
            }
        }

        /* Small Tablets & Form Factors */
        @media (max-width: 768px) {
            .rb-footer-wrapper .cta-banner {
                flex-direction: column;
                text-align: center;
                gap: 25px;
                padding: 40px 20px;
            }
            .rb-footer-wrapper .cta-text-side {
                max-width: 100%;
            }
            .rb-footer-wrapper .cta-title {
                font-size: 20px;
            }
        }

        /* Smartphones & Tiny Screens */
        @media (max-width: 576px) {
            .rb-footer-wrapper .main-footer {
                grid-template-columns: 1fr; /* True single column vertical pipeline */
                padding: 50px 20px 30px 20px;
                gap: 35px;
            }
            .rb-footer-wrapper .col-heading {
                margin-bottom: 15px;
            }
            .rb-footer-wrapper .copyright-ribbon {
                padding: 20px;
                font-size: 12px;
            }
        }