/* --- 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;
}

/*==========================
    TOP BAR
===========================*/

.top-bar {
    width: 100%;
    background: #1E2E73;
    color: #fff;
    font-size: 14px;
}

.top-bar .container {
    max-width: 1320px;
    margin: auto;
    padding: 5px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left span,
.top-right a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-left i {
    color: #ff3b30;
    font-size: 15px;
}

.top-right i {
    color: #fff;
    font-size: 15px;
}

.top-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-right a {
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

.top-right a:hover {
    color: #ff3b30;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-links a {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: #C62828;
    border-color: #C62828;
    transition: .3s;
}

.social-links a:hover {
    color: #C62828;
    background: #C62828;
    border-color: #C62828;
    transform: translateY(-2px);
}

/* --- 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;
    padding-right: 10px;
    padding-top: 10px;
}

@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;
    margin-top: 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;
    }
}

/*-----------------*/

/* --- 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-home {
    /*padding: 80px 0;*/
    background-color: var(--white);
    text-align: center;
}

.services-header-home {
    margin-bottom: 40px;
    text-align: center;
}

.section-tag-home {
    display: inline-block;
    color: var(--primary-red);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.services-header-home h2 {
    font-size: 38px;
    font-weight: 700;
    color: #0f2c74;
    margin-top: 8px;
    letter-spacing: -0.5px;

}

/* --- Outer Tinted Section Wrapper --- */
.services-grid-wrapper-home {
    background-color: var(--bg-container);
    padding: 24px;
    border-radius: 6px;
    border: 1px solid var(--border-exact);
}

/* --- 6-Column Display Grid Layout --- */
.services-grid-home {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 5px;
    width: 100%;
}

/* --- Service Card Element --- */
.service-card-home {
    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-home:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(11, 27, 61, 0.06);
}

/* --- Inner Components Text styling --- */
.service-icon-home {
    font-size: 50px;
    color: #0f2c74;
    margin-bottom: 5px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-home 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-home p {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    text-align: center;
}

/* --- Responsiveness Breakpoints --- */
@media (max-width: 1200px) {
    .services-grid-home {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .services-grid-home {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-header h2 {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .services-grid-home {
        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: 40px;
}

.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('images/footer-bg.PNG');
    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;
    }
}

/* ===============================
   Mobile Responsive
==================================*/
@media (max-width: 768px) {

    .container,
    .nav-container {
        width: 100%;
        padding: 0 20px;
    }

    .hero {
        height: auto;
        min-height: auto;
        padding: 120px 0 80px;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 32px;
        line-height: 1.3;
    }

    .hero h4 {
        font-size: 18px;
    }

    .hero p {
        width: 100%;
        font-size: 15px;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .hero-btns .btn {
        width: 100%;
        text-align: center;
    }

    .hero-counter {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .about-container {
        flex-direction: column;
        gap: 40px;
    }

    .about-image-side,
    .about-content-side {
        width: 100%;
        max-width: 100%;
    }

    .experience-badge {
        position: static;
        margin-top: 20px;
    }

    .red-border-outline,
    .dot-pattern {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .navbar {
        height: 80px;
    }

    .brand-logo-img {
        height: 45px;
    }
}

.copyright-ribbon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    background: #0f1b3d;
    color: #fff;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.copyright-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.copyright-right a {
    display: flex;
    align-items: center;
}

.copyright-right img {
    height: 28px;
    width: auto;
    transition: .3s;
}

.copyright-right img:hover {
    transform: scale(1.05);
}

/* Mobile */
@media (max-width:768px) {
    .copyright-ribbon {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* ===================================================
   MOBILE RESPONSIVE FIXES
=================================================== */

@media (max-width:768px) {

    /* Hide Top Bar */
    .top-bar {
        display: none;
    }

    /* Containers */
    .container,
    .nav-container,
    .about-container,
    .stats-container {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
    }

    /* ======================
   Navbar
====================== */

    .navbar {
        height: 80px;
    }

    .logo img,
    .brand-logo-img {
        height: 42px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-btn {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 25px;
        gap: 18px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    }

    /* ======================
   Hero
====================== */

    .hero {
        height: auto;
        min-height: auto;
        padding: 80px 0 60px;
        background-position: center;
        background-size: cover;
    }

    .hero-overlay {
        background: rgba(255, 255, 255, .92);
    }

    .hero-left {
        width: 100%;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 30px;
        line-height: 1.3;
    }

    .hero h4 {
        font-size: 18px;
    }

    .hero p {
        width: 100%;
        font-size: 15px;
        line-height: 1.8;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .hero-btns .btn {
        width: 100%;
        justify-content: center;
    }

    /* Counter */

    .hero-counter {
        flex-direction: column;
        gap: 18px;
        margin-top: 40px;
    }

    .counter-box {
        width: 100%;
    }

    /* ======================
   Stats
====================== */

    .stats-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .stat-card::after {
        display: none;
    }

    /* ======================
   About
====================== */

    .about-us {
        padding: 50px 0;
    }

    .about-container {
        flex-direction: column;
        gap: 40px;
    }

    .about-image-side,
    .about-content-side {
        width: 100%;
        max-width: 100%;
    }

    .red-border-outline,
    .dot-pattern {
        display: none;
    }

    .experience-badge {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 20px;
        width: 100%;
    }

    /* ======================
   Services
====================== */

    .services-grid-home {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-header-home h2 {
        font-size: 28px;
    }

    /* ======================
   Why Choose
====================== */

    .why-choose-us-section .wcu-container {
        grid-template-columns: 1fr;
    }

    .why-choose-us-section .content-side {
        padding: 0;
    }

    .why-choose-us-section .main-heading {
        font-size: 30px;
    }

    /* ======================
   Portfolio
====================== */

    .rb-showcase-section .showcase-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* ======================
   Process
====================== */

    .rb-process-section .timeline-wrapper {
        grid-template-columns: 1fr;
    }

    .rb-process-section .timeline-line {
        display: none;
    }

    .rb-process-section .process-step {
        flex-direction: column;
        text-align: center;
    }

    /* ======================
   Testimonials
====================== */

    .rb-testimonials-section .slide-page {
        grid-template-columns: 1fr;
    }

    .rb-testimonials-section .testimonial-card {
        grid-template-columns: 1fr;
    }

    .rb-testimonials-section .testimonial-card::after {
        display: none;
    }

    /* ======================
   Footer
====================== */

    .rb-footer-wrapper .cta-banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 35px 20px;
    }

    .rb-footer-wrapper .cta-text-side {
        max-width: 100%;
    }

    .rb-footer-wrapper .main-footer {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }

    .copyright-ribbon {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    /* ======================
   Images
====================== */

    img {
        max-width: 100%;
        height: auto;
    }

    /* ======================
   Typography
====================== */

    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 22px;
    }

    p {
        font-size: 15px;
    }

}

/* ===================================================
   SMALL MOBILE (480px)
=================================================== */

@media (max-width:480px) {

    .hero {
        padding: 70px 0 50px;
    }

    .hero h1 {
        font-size: 26px;
    }

    .hero h4 {
        font-size: 16px;
    }

    .about-content-side h2,
    .services-header-home h2,
    .rb-testimonials-section .main-title,
    .why-choose-us-section .main-heading {
        font-size: 24px;
    }

    .btn {
        padding: 14px 20px;
        font-size: 13px;
    }

    .counter-content h3 {
        font-size: 14px;
    }

    .counter-content span {
        font-size: 12px;
    }

}

/* Responsive Base CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-navy: #0A1931;
    --primary-red: #C31922;
    --white: #fff;
    --text-dark: #222;
}

body {
    font-family: Poppins, sans-serif;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container,
.nav-container,
.stats-container,
.about-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media(max-width:768px) {
    .top-bar {
        display: none;
    }

    .navbar {
        height: 80px;
    }

    .nav-links {
        display: none;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        height: auto;
        min-height: auto;
        padding: 80px 0 60px;
    }

    .hero-overlay {
        background: #ffffff45;
    }

    .hero-left,
    .about-image-side,
    .about-content-side {
        width: 100%;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 32px;
        line-height: 1.3;
    }

    .hero h4 {
        font-size: 18px;
    }

    .hero p {
        width: 100%;
    }

    .hero-btns {
        flex-direction: column;
    }

    .hero-btns .btn {
        width: 100%;
    }

    .hero-counter {
        flex-direction: column;
        align-items: flex-start;
    }

    .stats-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .about-container {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .red-border-outline,
    .dot-pattern {
        display: none;
    }

    .experience-badge {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 20px;
        width: 100%;
    }

    .services-grid-home,
    .rb-showcase-section .showcase-grid,
    .rb-process-section .timeline-wrapper,
    .rb-testimonials-section .slide-page,
    .rb-footer-wrapper .main-footer {
        display: grid;
        grid-template-columns: 1fr;
    }

    .why-choose-us-section .wcu-container {
        grid-template-columns: 1fr;
    }

    .rb-footer-wrapper .cta-banner {
        flex-direction: column;
        text-align: center;
    }

    .copyright-ribbon {
        display: flex;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media(max-width:480px) {

    .container,
    .nav-container {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 26px;
    }

    h2 {
        font-size: 24px;
    }

    .btn {
        padding: 14px 20px;
    }
}

/*-----------------------ABOUT PAGE----------------------*/
/*---------------------------------------------------------*/

.about-banner {
    position: relative;
    width: 100%;
    min-height: 420px;
    display: flex;
    align-items: center;
    background: #081229 url('images/rb-about-banner.png') no-repeat center right / cover;
    overflow: hidden;
}

/* Gradient overlay to match the original image styling */
.about-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #0d1c46 0%, #172a54 35%, rgba(8, 18, 41, 0.75) 60%, rgba(8, 18, 41, 0.1) 100%);
    z-index: 1;
}

/* Content Styling */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 60px;
    color: #ffffff;
}

/* Breadcrumbs */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #94a3b8;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.breadcrumb a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #ffffff;
}

.breadcrumb .separator {
    font-size: 11px;
    color: #64748b;
}

/* Main Heading */
.hero-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 18px;
}

/* Red Accent Divider Line */
.accent-line {
    width: 50px;
    height: 4px;
    background-color: #e11d48;
    margin-bottom: 24px;
    border-radius: 2px;
}

/* Description */
.hero-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #e2e8f0;
    max-width: 500px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .about-banner::before {
        background: linear-gradient(to bottom,
                rgba(8, 18, 41, 0.95) 0%,
                rgba(8, 18, 41, 0.8) 100%);
    }

    .hero-content {
        padding: 40px 24px;
    }

    .hero-title {
        font-size: 36px;
    }
}

.who-we-are-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    box-sizing: border-box;
    font-family: poppins, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    overflow: hidden;
    /* Prevents overflow during entry animations */
}

/* Left Column Animations */
.who-we-are-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    animation: fadeInLeft 0.8s ease-out forwards;
}

.section-tag {
    color: #d9232d;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    color: #0b1a48;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 24px 0;
}

.description {
    color: #475569;
    font-size: 15px;
    line-height: 1.65;
    margin: 0 0 16px 0;
}

.journey-btn {
    display: inline-block;
    background-color: #0b1a48;
    color: #ffffff;
    padding: 14px 28px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 2px;
    margin-top: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.journey-btn:hover {
    background-color: #162a6b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(11, 26, 72, 0.25);
}

/* Right Column Animations */
.who-we-are-media {
    position: relative;
    animation: fadeInRight 0.8s ease-out forwards;
}

.main-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
    transition: transform 0.4s ease;
}

.who-we-are-media:hover .main-img {
    transform: scale(1.02);
}

/* Floating Badge Entry & Hover Animation */
.experience-card {
    position: absolute;
    bottom: -25px;
    right: -25px;
    background: #ffffff;
    padding: 28px 24px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 160px;
    box-sizing: border-box;
    animation: scaleUp 0.8s 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.badge-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.experience-card:hover .badge-icon {
    transform: rotate(8deg) scale(1.1);
}

.exp-number {
    color: #d9232d;
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 6px;
}

.exp-label {
    color: #0b1a48;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
}

/* Keyframes */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .who-we-are-section {
        grid-template-columns: 1fr;
        gap: 40px;
        margin: 40px auto;
    }

    .experience-card {
        right: 15px;
        bottom: -20px;
    }
}

/* Container & Background */
.values-section {
    background-color: #f8fafc;
    padding: 80px 20px;
    text-align: center;
    font-family: poppins, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    overflow: hidden;
}

/* Section Header Animation */
.values-header {
    margin-bottom: 50px;
    animation: fadeInDown 0.8s ease-out forwards;
}

.section-tag {
    color: #d9232d;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    color: #0b1a48;
    font-size: 36px;
    font-weight: 800;
    margin: 0;
}

/* Values Grid */
.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
}

/* Individual Card & Entry Animations */
.value-card {
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: transform 0.3s ease, opacity 0.3s ease;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    /* Starts hidden for animation */
}

/* Staggering card entry animations */
.value-card:nth-child(1) {
    animation-delay: 0.2s;
}

.value-card:nth-child(2) {
    animation-delay: 0.35s;
}

.value-card:nth-child(3) {
    animation-delay: 0.5s;
}

.value-card:nth-child(4) {
    animation-delay: 0.65s;
}

/* Interactive Hover Animations */
.value-card:hover {
    transform: translateY(-8px);
}

.value-card:hover .icon-wrapper svg {
    transform: scale(1.15) rotate(3deg);
    stroke: #d9232d;
    /* Changes icon color on hover */
}

/* Vertical Separator Lines */
.value-card:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: #cbd5e1;
}

/* Icon Container & Transition */
.icon-wrapper {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper svg {
    width: 100%;
    height: 100%;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), stroke 0.3s ease;
}

/* Text Content */
.value-title {
    color: #0b1a48;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px 0;
}

.value-description {
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    max-width: 240px;
}

/* Keyframe Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 0;
    }

    .value-card:not(:last-child)::after {
        display: none;
    }

    .value-card:nth-child(1),
    .value-card:nth-child(3) {
        border-right: 1px solid #cbd5e1;
    }
}

@media (max-width: 600px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .value-card {
        border-right: none !important;
    }

    .section-title {
        font-size: 28px;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

.journey-section {
    background-color: #f8fafc;
    padding: 80px 20px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.journey-header {
    margin-bottom: 50px;
}

.section-tag {
    color: #d9232d;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.section-title {
    color: #0b1a48;
    font-size: 34px;
    font-weight: 800;
    margin: 0;
}

.journey-timeline {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    transition: transform 0.3s ease;
}

.timeline-item:hover {
    transform: scale(1.12);
}

.timeline-item:hover .icon-box svg {
    stroke: #d9232d;
    transform: translateY(-3px);
}

.icon-box {
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box svg {
    width: 100%;
    height: 100%;
    transition: stroke 0.3s ease, transform 0.3s ease;
}

.stat-number {
    color: #d9232d;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 8px;
    display: block;
    min-height: 38px;
}

.stat-label {
    color: #0b1a48;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.timeline-arrow {
    color: #cbd5e1;
    font-size: 20px;
    font-weight: 600;
    padding: 0 10px;
    margin-bottom: 40px;
}

@media (max-width: 900px) {
    .journey-timeline {
        flex-direction: column;
        gap: 30px;
    }

    .timeline-arrow {
        transform: rotate(90deg);
        margin-bottom: 0;
    }
}

/*-----------------------SERVICE PAGE----------------------*/
/*---------------------------------------------------------*/

.services-section {
    background-color: #f8fafc;
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

/* Header */
.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.section-tag {
    color: #d9232d;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.section-title {
    color: #0b1a48;
    font-size: 34px;
    font-weight: 800;
    margin: 0 0 12px 0;
}

.section-subtitle {
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Grid Layout */
.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card Container */
.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: visible;
    /* Keeps icon floating outside image overflow */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(40px);
}

.service-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(11, 26, 72, 0.12);
}

/* Image Wrapper */
.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    transition: transform 0.5s ease;
}

.service-card:hover .card-image {
    transform: scale(1.04);
}

/* Floating Icon Styling (Ensures high visibility) */
.floating-icon {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.floating-icon svg {
    width: 24px;
    height: 24px;
    stroke: #0b1a48;
    display: block;
    transition: stroke 0.3s ease;
}

.service-card:hover .floating-icon {
    background-color: #d9232d;
    transform: translateX(-50%) scale(1.1);
}

.service-card:hover .floating-icon svg {
    stroke: #ffffff;
}

/* Card Content Body */
.card-content {
    padding: 40px 24px 28px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    color: #0b1a48;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px 0;
}

.card-desc {
    color: #64748b;
    font-size: 13px;
    line-height: 1.6;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

/* Read More Link */
.read-more {
    color: #d9232d;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.read-more span {
    font-size: 14px;
    transition: transform 0.2s ease;
}

.service-card:hover .read-more {
    color: #0b1a48;
}

.service-card:hover .read-more span {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 26px;
    }
}

.why-choose-section {
    background-color: #fafbfc;
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
}

/* Header */
.why-choose-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    color: #d9232d;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.section-title {
    color: #0b1a48;
    font-size: 34px;
    font-weight: 800;
    margin: 0;
}

/* Grid & Divider Layout */
.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 30px;
    position: relative;
}

/* Feature Item Styling & Entry Animation */
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    position: relative;
    padding: 12px;
    border-radius: 8px;
    background-color: transparent;

    /* Initial animation state */
    opacity: 0;
    transform: scale(0.85) translateY(20px);
    transition: opacity 0.5s ease, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, background-color 0.3s ease;
}

/* Animated State */
.feature-item.animate-in {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* SCALE HOVER EFFECT */
.feature-item:hover {
    transform: scale(1.06) translateY(-4px) !important;
    background-color: #ffffff;
    box-shadow: 0 10px 25px rgba(11, 26, 72, 0.08);
    cursor: pointer;
}

/* Vertical Separator Lines between columns */
.feature-item:not(:nth-child(4n)):after {
    content: "";
    position: absolute;
    right: -15px;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: #e2e8f0;
}

/* Icon Styling */
.feature-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.feature-icon svg {
    width: 36px;
    height: 36px;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon svg {
    transform: scale(1.15) rotate(-3deg);
}

.red-icon {
    color: #d9232d;
}

.blue-icon {
    color: #0b1a48;
}

/* Text Styling */
.feature-text {
    display: flex;
    flex-direction: column;
}

.feature-title {
    color: #0b1a48;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.feature-desc {
    color: #64748b;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Grid */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-item:not(:nth-child(4n)):after {
        display: none;
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 26px;
    }
}

/*-----------------------PROJECTS PAGE----------------------*/
/*---------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

.projects-section {
    background-color: #f8fafc;
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
}

.projects-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.section-tag {
    color: #d9232d;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.section-title {
    color: #0b1a48;
    font-size: 34px;
    font-weight: 800;
    margin: 0 0 12px 0;
}

.section-subtitle {
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 35px 0;
}

/* Filter Tabs */
.filter-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.filter-btn {
    background: transparent;
    border: none;
    color: #0b1a48;
    font-family: poppins;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    color: #d9232d;
}

.filter-btn.active {
    background-color: #d9232d;
    color: #ffffff;
}

/* Grid Layout */
.projects-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Card Container */
.project-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: visible;
    /* CRITICAL: Allows the floating icon to sit outside without clipping */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.project-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.project-card.hide {
    display: none !important;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(11, 26, 72, 0.12);
}

/* Image Wrapper */
.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    transition: transform 0.5s ease;
}

.project-card:hover .card-image {
    transform: scale(1.05);
}

/* FLOATING ICON STYLING */
.floating-badge {
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.floating-badge svg {
    width: 22px;
    height: 22px;
    stroke: #0b1a48;
    display: block;
    transition: stroke 0.3s ease;
}

/* Hover effect on Icon */
.project-card:hover .floating-badge {
    background-color: #d9232d;
    transform: translateX(-50%) scale(1.1);
}

.project-card:hover .floating-badge svg {
    stroke: #ffffff;
}

/* Card Content Body */
.card-content {
    padding: 36px 20px 24px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    color: #0b1a48;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 6px 0;
}

.project-category {
    color: #d9232d;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

.card-desc {
    color: #64748b;
    font-size: 13px;
    line-height: 1.5;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

/* View Details Link */
.view-details {
    color: #d9232d;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.view-details span {
    font-size: 14px;
    transition: transform 0.2s ease;
}

.project-card:hover .view-details {
    color: #0b1a48;
}

.project-card:hover .view-details span {
    transform: translateX(4px);
}

/* Responsive Grid */
@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 26px;
    }
}

.stats-banner {
    width: 100%;
    max-width: 1100px;
    background: #ffffff;
    border-radius: 8px;
    padding: 30px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    font-family: poppins, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    box-sizing: border-box;
    margin: 0 auto;
}

.stats-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    justify-content: center;
}

.stat-icon {
    color: #1a237e;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #e53935;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a237e;
    margin-top: 6px;
    white-space: nowrap;
}

.divider {
    width: 1px;
    height: 48px;
    background-color: #e0e0e0;
}

/* Responsive layout */
@media (max-width: 850px) {
    .stats-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .divider {
        display: none;
    }

    .stat-item {
        justify-content: flex-start;
    }
}

@media (max-width: 500px) {
    .stats-container {
        grid-template-columns: 1fr;
    }
}

/*-----------------------CONTACT PAGE----------------------*/
/*---------------------------------------------------------*/

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

/* Red Button */
.btn-red {
    background-color: #e52b2b;
    color: #ffffff;
    border: 1px solid #e52b2b;
}

.btn-red:hover {
    background-color: #c82323;
    border-color: #c82323;
}

/* Transparent Outline Button */
.btn-outline {
    background: rgba(11, 26, 72, 0.4);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
}

/* ================= RESPONSIVE MEDIA QUERIES ================= */

@media (max-width: 550px) {

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        justify-content: center;
    }
}

.contact-info-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #f8fafc;
    padding: 40px 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.contact-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    /* Vertically centers the icon circle with the text block */
    gap: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    cursor: pointer;
}

.contact-card:hover {
    transform: scale(1.04) translateY(-4px);
    box-shadow: 0 12px 28px rgba(11, 26, 72, 0.1);
}

.icon-circle {
    width: 50px;
    height: 50px;
    background-color: #0b1a48;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    /* Horizontal icon centering */
    justify-content: center;
    /* Vertical icon centering */
    flex-shrink: 0;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.contact-card:hover .icon-circle {
    transform: scale(1.1) rotate(5deg);
    background-color: #e52b2b;
}

.contact-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-details h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #0b1a48;
    margin-bottom: 4px;
}

.contact-details p {
    font-size: 0.85rem;
    color: #475569;
    line-height: 1.4;
    font-weight: 500;
}

.contact-details .highlight-red {
    color: #e52b2b;
    font-weight: 600;
}

/* Responsive Alignment Fixes */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 850px) {
    .stats-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .divider {
        display: none;
    }

    .stat-item {
        justify-content: flex-start;
    }
}

@media (max-width: 550px) {

    .stats-container,
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Section Layout */
.contact-form-section {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
    background-color: #f8fafc;
    padding: 40px 20px;
}

.contact-form-container {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 28px;
    align-items: start;
}

/* Titles & Red Accents */
.section-title,
.info-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: #0b1a48;
    /* Dark Navy */
}

.title-red-line {
    width: 28px;
    height: 3px;
    background-color: #e52b2b;
    /* Bright Red */
    margin: 8px 0 24px 0;
    border-radius: 2px;
}

/* ================= LEFT CARD: FORM ================= */
.form-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 36px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.message-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.92rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    color: #1e293b;
    outline: none;
    background-color: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

/* Select Styling & Custom Arrow */
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%3C1e293b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    color: #1e293b;
}

.form-group select:invalid {
    color: #94a3b8;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #0b1a48;
    box-shadow: 0 0 0 3px rgba(11, 26, 72, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 14px;
    background-color: #e52b2b;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.submit-btn:hover {
    background-color: #c82323;
}

.submit-btn:active {
    transform: scale(0.99);
}

/* ================= RIGHT CARD: INFO ================= */
.info-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.card-image-wrapper-contact {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.card-image-wrapper-contact img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-body {
    padding: 28px 28px 32px 28px;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    font-weight: 600;
    color: #0b1a48;
}

/* Red Circular Checkmark Icon */
.check-icon {
    width: 22px;
    height: 22px;
    background-color: #e52b2b;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .contact-form-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 550px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .form-card {
        padding: 24px;
    }

    .card-body {
        padding: 20px;
    }
}

/* 1. Reset sizing so borders & padding don't mess up widths */
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    height: 48px;
    /* Force identical height across inputs & select */
    padding: 0 16px;
    font-size: 0.92rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    color: #1e293b;
    outline: none;
    background-color: #ffffff;
    box-sizing: border-border-box;
    /* Crucial for alignment */
}

/* 2. Fix the height specifically for Textarea */
.form-group textarea {
    height: 120px;
    /* Overrides fixed input height */
    padding-top: 12px;
    padding-bottom: 12px;
    resize: vertical;
}

/* 3. Ensure grid rows match seamlessly */
.form-row {
    display: flex;
    gap: 16px;
}

.form-group {
    flex: 1;
    /* Forces both inputs in a row to take equal 50% width */
    width: 100%;
}

/* Container Box Sizing */
.form-card * {
    box-sizing: border-box;
}

/* Form Layout */
.message-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

/* Equal 2-Column Grid for Inputs */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    width: 100%;
}

.form-group {
    width: 100%;
}

/* Force Exact Identical Height & Sizing for Inputs and Select */
.form-group input,
.form-group select {
    width: 100%;
    height: 48px;
    /* Fixed identical height */
    padding: 0 16px;
    font-size: 0.92rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    color: #1e293b;
    outline: none;
    background-color: #ffffff;
    margin: 0;
}

/* Custom Select Dropdown Arrow Alignment */
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%3C1e293b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

/* Textarea Height */
.form-group textarea {
    width: 100%;
    height: 140px;
    padding: 14px 16px;
    font-size: 0.92rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    color: #1e293b;
    outline: none;
    resize: vertical;
}

/* Focus States */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #0b1a48;
    box-shadow: 0 0 0 3px rgba(11, 26, 72, 0.08);
}

/* Scoped Section Wrapper */
#faq-section.rb-faq-container {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto 50px auto;
    box-sizing: border-box;
}

#faq-section * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ================= 1. MAP CARD ================= */
#faq-section .rb-faq-map-card {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    background: #ffffff;
    margin-bottom: 40px;
}

#faq-section .rb-faq-map-card iframe {
    display: block;
    width: 100%;
    height: 260px;
    border: none;
}

/* ================= 2. FAQ ACCORDION ================= */
#faq-section .rb-faq-wrapper {
    text-align: center;
}

#faq-section .rb-faq-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0b1a48;
}

#faq-section .rb-faq-red-line {
    width: 28px;
    height: 3px;
    background-color: #e52b2b;
    margin: 8px auto 32px auto;
    border-radius: 2px;
}

#faq-section .rb-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    text-align: left;
}

#faq-section .rb-faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

#faq-section .rb-faq-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

#faq-section .rb-faq-question {
    width: 100%;
    padding: 16px 20px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0b1a48;
    cursor: pointer;
    outline: none;
}

#faq-section .rb-faq-chevron {
    color: #1e293b;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

/* Active Open State */
#faq-section .rb-faq-item.rb-faq-active {
    border-color: #0b1a48;
}

#faq-section .rb-faq-item.rb-faq-active .rb-faq-chevron {
    transform: rotate(180deg);
}

#faq-section .rb-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    background-color: #fafbfc;
}

#faq-section .rb-faq-answer p {
    padding: 0 20px 16px 20px;
    font-size: 0.88rem;
    line-height: 1.5;
    color: #475569;
}

@media (max-width: 768px) {
    #faq-section .rb-faq-grid {
        grid-template-columns: 1fr;
    }
}

/* ================= MOBILE RESPONSIVE FIX ================= */

@media (max-width: 768px) {

    /* Common Section Padding */
    .projects-section,
    .contact-info-section,
    .contact-form-section {
        padding: 40px 15px;
    }


    /* ================= PROJECT PAGE ================= */

    .projects-header {
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .section-tag {
        font-size: 11px;
    }

    .section-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 13px;
    }


    .filter-container {
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 15px;
        font-size: 12px;
    }


    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }


    .project-card {
        max-width: 100%;
    }


    .card-image-wrapper {
        height: 190px;
    }


    .card-content {
        padding: 35px 15px 20px;
    }


    .card-title {
        font-size: 15px;
    }

    .card-desc {
        font-size: 12px;
    }


    /* ================= STATS SECTION ================= */


    .stats-banner {
        padding: 25px 15px;
        border-radius: 10px;
    }


    .stats-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }


    .stat-item {
        justify-content: flex-start;
    }


    .stat-number {
        font-size: 1.8rem;
    }


    .stat-label {
        font-size: 13px;
    }


    /* ================= CONTACT HERO BUTTON ================= */


    .hero-buttons {
        width: 100%;
        flex-direction: column;
        gap: 12px;

    }


    .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 18px;
        display: none;
    }


    /* ================= CONTACT INFO CARDS ================= */


    .contact-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }


    .contact-card {
        padding: 15px;
    }


    .icon-circle {
        width: 45px;
        height: 45px;
    }


    .contact-details h3 {
        font-size: 15px;
    }


    .contact-details p {
        font-size: 13px;
    }


    /* ================= CONTACT FORM ================= */


    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }


    .form-card {
        padding: 20px;
        border-radius: 10px;
    }


    .section-title,
    .info-title {
        font-size: 20px;
    }


    .form-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }


    .form-group input,
    .form-group select {
        height: 45px;
        font-size: 14px;
    }


    .form-group textarea {
        height: 120px;
    }


    .submit-btn {
        padding: 13px;
    }


    .card-image-wrapper-contact {
        height: 180px;
    }


    .card-body {
        padding: 20px;
    }


    .features-list li {
        font-size: 13px;
    }


    /* ================= FAQ ================= */


    #faq-section.rb-faq-container {
        padding: 0 15px;
        margin-bottom: 30px;
    }


    #faq-section .rb-faq-map-card iframe {
        height: 220px;
    }


    #faq-section .rb-faq-title {
        font-size: 22px;
    }


    #faq-section .rb-faq-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }


    #faq-section .rb-faq-question {
        padding: 14px 15px;
        font-size: 13px;
    }


    #faq-section .rb-faq-answer p {
        font-size: 13px;
        padding: 0 15px 15px;
    }

}


/* ================= SMALL MOBILE ================= */


@media (max-width:480px) {


    .projects-section,
    .contact-info-section,
    .contact-form-section {
        padding: 30px 12px;
    }


    .section-title {
        font-size: 22px;
    }


    .filter-container {
        flex-direction: column;
        width: 100%;
    }


    .filter-btn {
        width: 100%;
    }


    .floating-badge {
        width: 42px;
        height: 42px;
        bottom: -20px;
    }


    .floating-badge svg {
        width: 18px;
        height: 18px;
    }


    .stat-item {
        gap: 12px;
    }


    .stat-number {
        font-size: 1.6rem;
    }


    .contact-card {
        gap: 12px;
    }


    .contact-details h3 {
        font-size: 14px;
    }


    .contact-details p {
        font-size: 12px;
    }


    .form-card {
        padding: 15px;
    }


    .btn {
        font-size: 13px;
    }

}

/*-----------------------GET QUOTE PAGE----------------------*/
/*---------------------------------------------------------*/

/* 1. Global Reset for Section Wrapper */
#rb-quote-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #f8fafc;
    font-family: poppins, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

#rb-quote-section * {
    box-sizing: border-box !important;
    margin: 0;
    padding: 0;
}

/* 2. Main Grid Layout */
#rb-quote-section .rb-quote-container {
    display: grid !important;
    grid-template-columns: 1.35fr 1fr !important;
    gap: 28px !important;
    align-items: start !important;
}

/* ==========================================================================
   LEFT COLUMN: FORM CARD
   ========================================================================== */
#rb-quote-section .rb-quote-form-card {
    background: #ffffff !important;
    border-radius: 12px !important;
    padding: 36px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
}

#rb-quote-section .rb-quote-title {
    font-size: 1.45rem !important;
    font-weight: 800 !important;
    color: #0b1a48 !important;
}

#rb-quote-section .rb-quote-red-line {
    width: 28px !important;
    height: 3px !important;
    background-color: #e52b2b !important;
    margin: 8px 0 24px 0 !important;
    border-radius: 2px !important;
}

#rb-quote-section .rb-quote-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
    width: 100% !important;
}

/* Strict 2-Column Row Alignment */
#rb-quote-section .rb-quote-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
    width: 100% !important;
    align-items: end !important;
    /* Keeps inputs perfectly on the same baseline */
}

#rb-quote-section .rb-quote-group {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    width: 100% !important;
}

#rb-quote-section .rb-quote-group.rb-full-width {
    grid-column: 1 / -1 !important;
}

#rb-quote-section .rb-quote-group label {
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    color: #0b1a48 !important;
    line-height: 1.2 !important;
    min-height: 18px !important;
    /* Forces uniform label height across columns */
}

/* Equalizing Input, Select, & Date Heights */
#rb-quote-section .rb-quote-group input[type="text"],
#rb-quote-section .rb-quote-group input[type="email"],
#rb-quote-section .rb-quote-group input[type="tel"],
#rb-quote-section .rb-quote-group input[type="number"],
#rb-quote-section .rb-quote-group input[type="date"],
#rb-quote-section .rb-quote-group select {
    width: 100% !important;
    height: 44px !important;
    /* Exact height for all inputs */
    padding: 0 14px !important;
    font-size: 0.88rem !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 6px !important;
    color: #1e293b !important;
    outline: none !important;
    background-color: #ffffff !important;
    margin: 0 !important;
    transition: border-color 0.2s, box-shadow 0.2s !important;
}

/* Custom Select Dropdown Styling */
#rb-quote-section .rb-quote-group select {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%3C0b1a48' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 14px center !important;
    padding-right: 36px !important;
}

/* Focus States */
#rb-quote-section .rb-quote-group input:focus,
#rb-quote-section .rb-quote-group select:focus,
#rb-quote-section .rb-quote-group textarea:focus {
    border-color: #0b1a48 !important;
    box-shadow: 0 0 0 3px rgba(11, 26, 72, 0.08) !important;
}

#rb-quote-section .rb-quote-group select:invalid,
#rb-quote-section .rb-quote-group input::placeholder,
#rb-quote-section .rb-quote-group textarea::placeholder {
    color: #94a3b8 !important;
}

/* Textarea & Counter Alignment */
#rb-quote-section .rb-textarea-wrapper {
    position: relative !important;
    width: 100% !important;
}

#rb-quote-section .rb-textarea-wrapper textarea {
    width: 100% !important;
    height: 120px !important;
    padding: 12px 14px 28px 14px !important;
    font-size: 0.88rem !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 6px !important;
    color: #1e293b !important;
    outline: none !important;
    resize: vertical !important;
}

#rb-quote-section .rb-char-count {
    position: absolute !important;
    bottom: 10px !important;
    right: 14px !important;
    font-size: 0.75rem !important;
    color: #94a3b8 !important;
    font-weight: 600 !important;
    pointer-events: none !important;
}

/* Submit Button */
#rb-quote-section .rb-quote-submit-btn {
    width: 100% !important;
    padding: 14px !important;
    background-color: #e52b2b !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 6px !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    margin-top: 6px !important;
    transition: background-color 0.2s, transform 0.1s !important;
}

#rb-quote-section .rb-quote-submit-btn:hover {
    background-color: #c82323 !important;
}

#rb-quote-section .rb-quote-submit-btn:active {
    transform: scale(0.99) !important;
}

/* ==========================================================================
   RIGHT COLUMN: SIDEBAR CARD & STATS BANNER
   ========================================================================== */
#rb-quote-section .rb-quote-sidebar {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
}

#rb-quote-section .rb-sidebar-card {
    background: #ffffff !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
}

#rb-quote-section .rb-sidebar-img {
    width: 100% !important;
    height: 190px !important;
    overflow: hidden !important;
}

#rb-quote-section .rb-sidebar-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

#rb-quote-section .rb-sidebar-body {
    padding: 24px 28px 28px 28px !important;
}

#rb-quote-section .rb-sidebar-title {
    font-size: 1.35rem !important;
    font-weight: 800 !important;
    color: #0b1a48 !important;
}

#rb-quote-section .rb-sidebar-list {
    list-style: none !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

#rb-quote-section .rb-sidebar-list li {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-size: 0.88rem !important;
    font-weight: 600 !important;
    color: #0b1a48 !important;
}

#rb-quote-section .rb-check-icon {
    width: 20px !important;
    height: 20px !important;
    background-color: #e52b2b !important;
    color: #ffffff !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.75rem !important;
    font-weight: 800 !important;
    flex-shrink: 0 !important;
}

/* Bottom Stats Banner */
#rb-quote-section .rb-sidebar-stats {
    background: #ffffff !important;
    border-radius: 12px !important;
    padding: 20px 16px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

#rb-quote-section .rb-stat-box {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    flex: 1 !important;
}

#rb-quote-section .rb-stat-icon {
    color: #0b1a48 !important;
    margin-bottom: 6px !important;
}

#rb-quote-section .rb-stat-num {
    font-size: 1.35rem !important;
    font-weight: 800 !important;
    color: #e52b2b !important;
    line-height: 1 !important;
}

#rb-quote-section .rb-stat-lbl {
    font-size: 0.7rem !important;
    font-weight: 700 !important;
    color: #0b1a48 !important;
    margin-top: 4px !important;
}

#rb-quote-section .rb-stat-divider {
    width: 1px !important;
    height: 40px !important;
    background-color: #f1f5f9 !important;
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 992px) {
    #rb-quote-section .rb-quote-container {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 580px) {
    #rb-quote-section .rb-quote-row {
        grid-template-columns: 1fr !important;
    }

    #rb-quote-section .rb-quote-form-card {
        padding: 24px 20px !important;
    }

    #rb-quote-section .rb-sidebar-stats {
        flex-direction: column !important;
        gap: 16px !important;
    }

    #rb-quote-section .rb-stat-divider {
        width: 60% !important;
        height: 1px !important;
    }
}

/* Unique Section Scope */
#rb-features-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    background-color: #ffffff;
    font-family: poppins, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

#rb-features-section * {
    box-sizing: border-box !important;
    margin: 0;
    padding: 0;
}

/* Header Text */
#rb-features-section .rb-features-header {
    text-align: center;
    margin-bottom: 45px;
}

#rb-features-section .rb-features-subtitle {
    font-size: 0.85rem;
    font-weight: 800;
    color: #e52b2b;
    /* Bright Red */
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

#rb-features-section .rb-features-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0b1a48;
    /* Dark Navy */
}

/* Feature Grid with Vertical Separator Lines */
#rb-features-section .rb-features-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    width: 100%;
    align-items: flex-start;
}

#rb-features-section .rb-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 10px;
    position: relative;
}

/* Light Vertical Border Divider between items */
#rb-features-section .rb-feature-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background-color: #e2e8f0;
}

/* Icons */
#rb-features-section .rb-feature-icon {
    color: #0b1a48;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Labels */
#rb-features-section .rb-feature-text {
    font-size: 0.82rem;
    font-weight: 700;
    color: #0b1a48;
    line-height: 1.35;
}


/* Hide top bar on mobile */
@media (max-width: 767px) {
    .top-bar {
        display: none !important;
    }
}

/* ================= GET QUOTE MOBILE RESPONSIVE ================= */

@media (max-width: 767px) {


    /* Main Section */
    #rb-quote-section {
        padding: 30px 12px;
    }


    /* Main Container */
    #rb-quote-section .rb-quote-container {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }


    /* Form Card */
    #rb-quote-section .rb-quote-form-card {
        padding: 22px 16px !important;
        border-radius: 10px !important;
    }


    /* Title */
    #rb-quote-section .rb-quote-title {
        font-size: 22px !important;
    }


    #rb-quote-section .rb-quote-red-line {
        margin-bottom: 20px !important;
    }


    /* Form Rows */
    #rb-quote-section .rb-quote-row {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }


    /* Labels */
    #rb-quote-section .rb-quote-group label {
        font-size: 13px !important;
    }


    /* Inputs */
    #rb-quote-section .rb-quote-group input,
    #rb-quote-section .rb-quote-group select {
        height: 45px !important;
        font-size: 13px !important;
    }


    /* Textarea */
    #rb-quote-section .rb-textarea-wrapper textarea {
        height: 110px !important;
        font-size: 13px !important;
    }


    /* Button */
    #rb-quote-section .rb-quote-submit-btn {
        padding: 13px !important;
        font-size: 14px !important;
    }


    /* Sidebar */
    #rb-quote-section .rb-quote-sidebar {
        gap: 15px !important;
    }


    /* Sidebar Image */
    #rb-quote-section .rb-sidebar-img {
        height: 180px !important;
    }


    /* Sidebar Content */
    #rb-quote-section .rb-sidebar-body {
        padding: 20px !important;
    }


    #rb-quote-section .rb-sidebar-title {
        font-size: 20px !important;
    }


    #rb-quote-section .rb-sidebar-list li {
        font-size: 13px !important;
    }


    /* Stats Box */
    #rb-quote-section .rb-sidebar-stats {
        flex-direction: column !important;
        gap: 15px !important;
        padding: 20px !important;
    }


    /* Divider */
    #rb-quote-section .rb-stat-divider {
        width: 70% !important;
        height: 1px !important;
    }


    /* Stats Number */
    #rb-quote-section .rb-stat-num {
        font-size: 22px !important;
    }


    #rb-quote-section .rb-stat-lbl {
        font-size: 12px !important;
    }


}


/* ================= SMALL MOBILE 480px ================= */


@media (max-width:480px) {


    #rb-quote-section {
        padding: 25px 10px;
    }


    /* Form */
    #rb-quote-section .rb-quote-form-card {
        padding: 18px 14px !important;
    }


    /* Heading */
    #rb-quote-section .rb-quote-title {
        font-size: 20px !important;
    }


    /* Input */
    #rb-quote-section .rb-quote-group input,
    #rb-quote-section .rb-quote-group select {
        height: 42px !important;
    }


    /* Sidebar Image */
    #rb-quote-section .rb-sidebar-img {
        height: 160px !important;
    }


    /* Feature Section */
    #rb-features-section {
        padding: 35px 12px;
    }


    #rb-features-section .rb-features-header {
        margin-bottom: 30px;
    }


    #rb-features-section .rb-features-title {
        font-size: 22px;
    }


    #rb-features-section .rb-features-subtitle {
        font-size: 11px;
    }


    /* Feature Grid */
    #rb-features-section .rb-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }


    #rb-features-section .rb-feature-item {
        padding: 10px 5px;
    }


    /* Remove vertical lines */
    #rb-features-section .rb-feature-item::after {
        display: none !important;
    }


    #rb-features-section .rb-feature-text {
        font-size: 12px;
    }


    #rb-features-section .rb-feature-icon svg {
        width: 28px;
        height: 28px;
    }


}


/* ================= EXTRA SMALL MOBILE 360px ================= */

@media(max-width:360px) {


    #rb-features-section .rb-features-grid {
        grid-template-columns: 1fr;
    }


    #rb-quote-section .rb-sidebar-list li {
        font-size: 12px !important;
    }


    #rb-quote-section .rb-stat-num {
        font-size: 20px !important;
    }


}

.service-banner {
    position: relative;
    width: 100%;
    min-height: 420px;
    display: flex;
    align-items: center;
    background: #081229 url('images/rb-service-banner.png') no-repeat center right / cover;
    overflow: hidden;
}

/* Gradient overlay to match the original image styling */
.service-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #0d1c46 0%, #172a54 35%, rgba(8, 18, 41, 0.75) 60%, rgba(8, 18, 41, 0.1) 100%);
    z-index: 1;
}

.project-banner {
    position: relative;
    width: 100%;
    min-height: 420px;
    display: flex;
    align-items: center;
    background: #081229 url('images/rb-about-sec.png') no-repeat center right / cover;
    overflow: hidden;
}

/* Gradient overlay to match the original image styling */
.project-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #0d1c46 0%, #172a54 35%, rgba(8, 18, 41, 0.75) 60%, rgba(8, 18, 41, 0.1) 100%);
    z-index: 1;
}

.contact-banner {
    position: relative;
    width: 100%;
    min-height: 420px;
    display: flex;
    align-items: center;
    background: #081229 url('images/rb-contact-banner.png') no-repeat center right / cover;
    overflow: hidden;
}

/* Gradient overlay to match the original image styling */
.contact-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #0d1c46 0%, #172a54 35%, rgba(8, 18, 41, 0.75) 60%, rgba(8, 18, 41, 0.1) 100%);
    z-index: 1;
}

.quote-banner {
    position: relative;
    width: 100%;
    min-height: 420px;
    display: flex;
    align-items: center;
    background: #081229 url('images/rb-quote-banner.png') no-repeat center right / cover;
    overflow: hidden;
}

/* Gradient overlay to match the original image styling */
.quote-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #0d1c46 0%, #172a54 35%, rgba(8, 18, 41, 0.75) 60%, rgba(8, 18, 41, 0.1) 100%);
    z-index: 1;
}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 32px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
    z-index: 9999;
    transition: .3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #20ba5a;
    color: #fff;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, .6);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width:768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 28px;
        right: 20px;
        bottom: 20px;
    }
}