 :root {
            --navy: #2c3e50;
            --navy-dark: #1a252f;
            --navy-light: #34495e;
            --orange: #f12a02;
            --orange-dark: #f12a02;
            --orange-light: #f12a02;
            --white: #ffffff;
            --black: #000000;
            --light-bg: #f8f9fa;
            --gray: #6c757d;
            --gray-light: #e9ecef;
            --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
            --glass-bg: rgba(255, 255, 255, 0.12);
            --glass-border: rgba(255, 255, 255, 0.2);
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--light-bg);
            color: var(--navy);
            overflow-x: hidden;
        }

        /* --- BREADCRUMB & HERO CSS --- */
        .page-header {
            background: linear-gradient(rgba(26, 37, 47, 0.85), rgba(44, 62, 80, 0.95)), url('https://images.unsplash.com/photo-1556761175-5973dc0f32d7?auto=format&fit=crop&q=80') center/cover no-repeat;
            color: var(--white);
            padding: 80px 0 100px;
            position: relative;
        }
        .breadcrumb-container {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            padding: 10px 20px;
            border-radius: 50px;
            display: inline-block;
            margin-bottom:30px !important;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }
         ol.breadcrumb {
            padding-bottom: 0;
            margin-bottom: 4px;
}
        .breadcrumb { margin: 0; padding: 0; list-style: none; display: flex; align-items: center; flex-wrap: wrap; }
        .breadcrumb-item { display: flex; align-items: center; font-size: 1rem; }
        .breadcrumb-item a { color: var(--white); text-decoration: none; opacity: 0.8; transition: var(--transition); }
        .breadcrumb-item a:hover { opacity: 1; color: var(--orange); }
        .breadcrumb-item.active { color: var(--orange)!important; font-weight: 500; }
        .breadcrumb-item + .breadcrumb-item::before { content: '/'; color: var(--white); opacity: 0.6; padding: 0 12px; font-size: 0.9rem; }
        .intro-text { font-size: 1.15rem; opacity: 0.9; line-height: 1.8; max-width: 800px; }

        /* --- GLOBAL TYPOGRAPHY --- */
        .section-title {
            font-weight: 800;
            font-size: 2.2rem;
            color: var(--navy);
            margin-bottom: 10px;
            position: relative;
        }
        .section-title span { color: var(--orange); }
        .section-title-center { text-align: center; }
        .orange-line {
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--orange), var(--orange-light));
            border-radius: 4px;
            margin-bottom: 15px;
        }
        .orange-line-center { margin-left: auto; margin-right: auto; }

        /* --- WHY US SECTION --- */
        .why-us-section { padding: 80px 0; background: var(--white); }
        .mistake-alert-box {
            background: rgba(241, 42, 2, 0.05);
            border-left: 5px solid var(--orange);
            padding: 30px;
            border-radius: 0 12px 12px 0;
            position: relative;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
        }
        .mistake-alert-box i {
            position: absolute;
            top: -20px;
            right: 20px;
            font-size: 3rem;
            color: rgba(241, 42, 2, 0.1);
        }

        /* --- 8 REASONS GRID --- */
        .reasons-section { padding: 80px 0; background: var(--light-bg); }
        .reason-card {
            background: var(--white);
            border-radius: 12px;
            padding: 35px 25px;
            text-align: center;
            height: 100%;
            border-bottom: 4px solid transparent;
            box-shadow: 0 5px 20px rgba(0,0,0,0.04);
            transition: var(--transition);
        }
        .reason-card:hover {
            transform: translateY(-10px);
            border-bottom-color: var(--orange);
            box-shadow: var(--shadow-lg);
        }
        .reason-icon {
            width: 70px;
            height: 70px;
            background: rgba(241, 42, 2, 0.08);
            color: var(--orange);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            margin: 0 auto 20px;
            transition: var(--transition);
        }
        .reason-card:hover .reason-icon {
            background: var(--orange);
            color: var(--white);
            transform: rotateY(180deg);
        }
        .reason-title { font-weight: 700; color: var(--navy-dark); font-size: 1.15rem; margin-bottom: 10px; }
        .reason-text { color: var(--gray); font-size: 0.9rem; margin: 0; line-height: 1.6; }

        /* --- 2-COLUMN TESTIMONIALS & FORM SECTION --- */
        .split-testimonials-section { padding: 100px 0; background: var(--white); position: relative; overflow: hidden; }
        
        .testi-carousel-card {
            background: var(--white);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.06);
            border: 1px solid var(--gray-light);
            position: relative;
            z-index: 1;
            margin-bottom: 60px; 
            min-height: 280px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .testi-carousel-card::before {
            content: '\f10d'; 
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 6rem;
            color: rgba(241, 42, 2, 0.05);
            z-index: -1;
        }
        .testi-stars { color: #ffc107; font-size: 1.1rem; margin-bottom: 15px; }
        .testi-text { font-size: 1.1rem; line-height: 1.8; color: var(--gray); font-style: italic; margin-bottom: 25px; }
        .testi-client-name { font-weight: 700; color: var(--navy-dark); margin-bottom: 0; font-size: 1.1rem; }
        
        .carousel-bottom-controls {
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 10;
        }
        .custom-indicators {
            display: flex;
            margin: 0;
            padding: 0;
            list-style: none;
        }
        .custom-indicators [data-bs-target] {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: var(--gray-light);
            margin-right: 8px;
            border: none;
            transition: all 0.4s ease;
            padding: 0;
            text-indent: -999px;
        }
        .custom-indicators .active {
            background-color: var(--orange);
            width: 35px; 
            border-radius: 10px;
        }

        .custom-arrow {
            width: 42px;
            height: 42px;
            background-color: var(--white);
            border: 1px solid var(--gray-light);
            color: var(--navy);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        }
        .custom-arrow:hover {
            background-color: var(--orange);
            color: var(--white);
            border-color: var(--orange);
            transform: translateY(-2px);
        }

        .form-container {
            background: var(--navy);
            border-radius: 20px;
            padding: 45px 40px;
            box-shadow: var(--shadow-lg);
            color: var(--white);
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .form-container .form-control {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            color: var(--white);
            padding: 12px 20px;
            border-radius: 10px;
        }
        .form-container .form-control:focus {
            background: rgba(255,255,255,0.1);
            border-color: var(--orange);
            box-shadow: none;
            color: var(--white);
        }
        .form-container .form-control::placeholder { color: rgba(255,255,255,0.5); }
        .form-label { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; color: rgba(255,255,255,0.8); }
        
        .btn-custom {
            background-color: var(--orange);
            color: var(--white);
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: none;
            transition: var(--transition);
            width: 100%;
            margin-top: 10px;
        }
        .btn-custom:hover {
            background-color: var(--orange-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(241, 42, 2, 0.3);
            color: var(--white);
        }


        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        .reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }
        .reveal-left {
            opacity: 0;
            transform: translateX(-40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        .reveal-left.revealed {
            opacity: 1;
            transform: translateX(0);
        }
        .reveal-right {
            opacity: 0;
            transform: translateX(40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        .reveal-right.revealed {
            opacity: 1;
            transform: translateX(0);
        }
        .reveal-scale {
            opacity: 0;
            transform: scale(0.9);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        .reveal-scale.revealed {
            opacity: 1;
            transform: scale(1);
        }

        @media (max-width: 991px) { 
            .section-title { font-size: 1.8rem; } 
            .testi-carousel-card { padding: 30px 20px; }
        }
        @media (max-width: 767px) {
            .page-header { padding: 60px 0 80px; }
            .form-container { padding: 30px 20px; margin-top: 40px; }
            .text-muted {
                    --bs-text-opacity: 1;
                    color: var(--bs-secondary-color) !important;
                    font-size: 15px;
}

        }