  /* --- GLOBAL & UTILITY STYLES --- */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f0f2f5; 
    color: #444; 
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Color Scheme for RAINBOW SERVICES (Orange and Blue) */
:root {
    --primary-black: #1a1a1a;
    --primary-orange: #ff6600; /* Main Accent Color */
    --secondary-blue: #1E90FF; /* Secondary Accent Color */
    --text-dark: #444;
    --text-light: #f8f9fa;
    --light-grey: #e9ecef;
    --dark-grey: #6c757d;
}

/* Base Link Styling */
a {
    text-decoration: none;
    color: var(--secondary-blue);
    transition: color 0.3s ease;
}
a:hover {
    color: var(--primary-orange);
}

/* Section Padding & Margins */
.rs-py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.rs-py-7 { padding-top: 70px !important; padding-bottom: 70px !important; }
.rs-pt-3 { padding-top: 1rem !important; }
.rs-pt-4 { padding-top: 1.5rem !important; }
.rs-mb-4 { margin-bottom: 1.5rem !important; }
.rs-mt-4 { margin-top: 1.5rem !important; }
.rs-text-left { text-align: left !important; }
.rs-text-center { text-align: center !important; }

/* Layout Structure - Using rs- classes for consistency */
.rs-container {
    max-width: 1140px; 
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}
.rs-row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
.rs-col {
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
    flex-shrink: 0; /* Prevent shrinking */
    flex-grow: 1; /* Allow growing */
    width: 100%; /* Default for mobile */
}

/* Flexbox utilities */
.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }

/* Responsive Columns */
@media (min-width: 576px) { /* Small devices (sm) */
    .rs-col-sm-6 { width: 50%; }
}
@media (min-width: 768px) { /* Medium devices (md) */
    .rs-col-md-6 { width: 50%; }
    .rs-col-md-8 { width: 66.666667%; } 
    .rs-col-md-4 { width: 33.333333%; } 
    .rs-col-md-10 { width: 83.333333%; margin-left: auto; margin-right: auto; }
    .rs-hide-mobile { display: block !important; }
}
@media (min-width: 992px) { /* Large devices (lg) */
    .rs-col-lg-12 { width: 100%; }
    .rs-col-lg-6 { width: 50%; }
    .rs-col-lg-4 { width: 33.333333%; }
    .rs-col-lg-3 { width: 25%; }
}

/* --- SECTION 1: HEADER BANNER (rs-header-banner) --- */
.rs-header-banner {
    background-color: var(--primary-black);
    color: var(--text-light);
    padding: 30px 0; 
    border-bottom: 3px solid var(--primary-orange); /* RAINBOW SERVICES color */
}
.rs-header-banner h2 {
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-top: 0;
    font-size: 1.8rem; 
    margin-bottom: 10px;
}
/* About Section (Section 1) */
    .about1 {
        background:linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(images/handyman-repairing-a-washing-machine.jpg)no-repeat;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        height: auto;
        text-align: center;
        color: white;
        z-index: 1;
        position: relative;
        padding:100px;
    }

    .about1 h2 {
        /* margin-top: 120px; */
        text-align: left;
    }
    .about1 p {
        text-align: left;
    }

    /* About Section 2 - Vision of LED TV Repair */
    .about2 {
        background-color: #f0f4f8; /* Light background */
        color: #333;
    }



/* --- SECTION 2: HERO SECTION (rs-hero-section) --- */
.rs-hero-section {
    padding: 80px 0; 
    background-color: var(--text-light);
    box-shadow: 0 3px 10px rgba(0,0,0,0.05); 
}
.rs-main-heading {
    font-size: 25px; 
    font-weight: 800;
    line-height: 1.2; 
    margin-bottom: 25px;
    color: var(--primary-black);
}
.rs-accent-highlight {
    color: var(--primary-orange); /* Consistent Orange */
}
.rs-hero-subtext {
    font-size: 15px; 
    color: #666;
    margin-bottom: 30px;
    font-weight: 400; 
}

/* Service List */
.rs-service-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.rs-service-list li {
    font-size: 13px; 
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 30px; 
    background-color: rgba(30, 144, 255, 0.1); /* Blue tint */
    color: var(--secondary-blue);
    border: 1px solid var(--secondary-blue);
    transition: background-color 0.3s;
}
.rs-service-list li:before {
    content: "\f058"; /* Checkmark icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-orange); /* Orange checkmark */
    margin-right: 5px;
}
.rs-service-list li:hover {
    background-color: rgba(30, 144, 255, 0.2);
}

/* CTA Button */
.rs-cta-button {
    display: inline-block;
    background-color: var(--primary-orange); /* Consistent Orange Button */
    color: var(--text-light) !important; 
    padding: 15px 25px;
    font-size: 13px; 
    font-weight: 600;
    text-decoration: none;
    border-radius: 40px; 
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3); /* Orange Shadow */
    margin-bottom: 15px;
    letter-spacing: 0.5px; 
    text-transform: uppercase;
}
.rs-cta-button:hover {
    background-color: #e57e00; /* Darker orange on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 140, 0, 0.5);
}

.rs-hero-section img {
    border-radius: 8px; 
    background-color: #ccc; 
    min-height: 350px; 
    display: block;
    width: 100%;
    border: 3px solid var(--secondary-blue); /* Consistent Blue border */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* --- SECTION 3: SOLUTIONS SECTION (rs-service-solutions) --- */
.rs-service-solutions {
    padding: 70px 0; 
    background-color: var(--primary-black); 
    color: #e0e0e0; 
}
.rs-section-title {
    text-align: center;
    font-size: 25px; 
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--text-light);
}
.rs-section-title .rs-accent-highlight {
    color: var(--primary-orange); /* Consistent Orange Accent */
}

/* Solution Cards - Stylish Dark Look with 8/4 layout */
.rs-solution-card {
    background: #232323; 
    border-left: 3px solid var(--secondary-blue); /* Consistent Blue line */
    border-radius: 5px; 
    padding: 25px; 
    margin-bottom: 25px;
    text-align: left;
    transition: box-shadow 0.3s, background-color 0.3s;
    height: 100%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5); 
    color: #d1d1d1;
}
.rs-solution-card:hover {
    background-color: #2e2e2e; 
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.7); 
    border-left-color: var(--primary-orange); /* Orange on hover */
}

/* Flexbox for 8/4 layout inside the card */
.rs-solution-content-wrapper {
    display: flex;
    align-items: center; 
}
.rs-text-col {
    padding-right: 15px;
}
.rs-image-col {
    display: flex;
    justify-content: center;
    align-items: center;
}
.rs-icon-wrapper {
    width: 100%;
    height: auto; 
    padding-top: 100%; /* Creates a square aspect ratio */
    position: relative;
    background-color: rgba(30, 144, 255, 0.1); /* Blue tint */
    border-radius: 8px; 
    border: 1px solid var(--secondary-blue);
    overflow: hidden;
}
.rs-icon-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    border-radius: 8px;
}

.rs-card-heading {
    font-size: 1.3rem; 
    font-weight: 600; 
    color: var(--secondary-blue); /* Consistent Blue heading */
    margin-bottom: 8px;
    padding-top: 5px;
}
.rs-card-content {
    font-size: 0.95rem; 
    color: #c0c0c0; 
    margin-bottom: 5px;
    line-height: 1.5;
}
.rs-card-content strong {
    color: var(--text-light);
    font-weight: 500;
}

/* Mobile adjustments for the problem cards */
@media (max-width: 767px) {
    .rs-solution-content-wrapper {
        flex-direction: column-reverse; /* Image above text on mobile */
    }
    .rs-text-col, .rs-image-col {
        width: 100%;
        padding-right: 0;
    }
    .rs-image-col {
        margin-bottom: 15px;
    }
    .rs-icon-wrapper {
        padding-top: 50%; /* Wider aspect ratio on mobile */
    }
}

/* --- SECTION 4: PROCESS (rs-process-section) --- */
.rs-process-section {
    background-color: var(--text-light);
    padding: 70px 0;
    color: var(--text-dark);
}

.rs-process-step {
    text-align: center;
    padding: 30px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* Ensure equal height */
    position: relative;
    margin-bottom: 30px;
    border: 1px solid var(--light-grey);
}
.rs-process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.rs-step-icon {
    font-size: 3rem;
    color: var(--primary-orange); /* Consistent Orange */
    margin-bottom: 15px;
    display: block; /* Ensure full width for text-align */
}

.rs-step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary-blue); /* Consistent Blue */
    color: var(--text-light);
    font-weight: 700;
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid var(--text-light); /* White border for contrast */
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.rs-step-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 10px;
    margin-top: 20px; /* Space for step number */
}

.rs-step-description {
    font-size: 0.95rem;
    color: var(--dark-grey);
}

/* Process Separator Line (visible only on desktop) */
.rs-process-row .rs-col:not(:last-child):after {
    content: '';
    position: absolute;
    top: 50%;
    right: -15px; /* Halfway between current and next card */
    width: 30px; /* Length of the line */
    height: 2px;
    background-color: var(--light-grey);
    transform: translateY(-50%);
    z-index: 0; /* Behind cards */
    display: none; /* Hidden by default */
}

@media (min-width: 992px) { /* Only show line on large screens */
    .rs-process-row .rs-col:not(:last-child):after {
        display: block;
    }
}
@media (max-width: 991px) {
    .rs-process-step {
        margin-bottom: 45px; /* More space for step number on small screens */
    }
}


/* --- SECTION 5: CONTACT FORM (rs-contact-form) --- */
.rs-contact-form-section {
    padding: 70px 0;
    background-color: #f8f9fa; /* Light background for form */
}

.rs-form-heading {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 40px;
}
.rs-form-heading .rs-accent-highlight {
    color: var(--primary-orange); /* Consistent Orange */
}

.rs-contact-form-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-top: 5px solid var(--primary-orange); /* Orange top border */
    position: relative;
}

.rs-form-group {
    margin-bottom: 20px;
}

.rs-form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-grey);
    border-radius: 5px;
    font-size: 1rem;
    color: var(--text-dark);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.rs-form-control:focus {
    border-color: var(--secondary-blue); /* Blue border on focus */
    box-shadow: 0 0 0 0.2rem rgba(30, 144, 255, 0.25); /* Blue shadow on focus */
    outline: none;
}
.rs-form-control::placeholder {
    color: #a0a0a0;
}

textarea.rs-form-control {
    min-height: 120px;
    resize: vertical;
}

.rs-submit-button {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: var(--primary-orange); /* Consistent Orange */
    color: var(--text-light);
    border: none;
    border-radius: 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}
.rs-submit-button:hover {
    background-color: #e57e00; /* Darker orange on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 140, 0, 0.5);
}

/* Floating label effect (optional, if you want to implement it) */
.rs-form-group.floating-label {
    position: relative;
}
.rs-form-group.floating-label label {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 1rem;
    color: #a0a0a0;
    pointer-events: none;
    transition: all 0.2s ease-out;
}
.rs-form-group.floating-label .rs-form-control:focus ~ label,
.rs-form-group.floating-label .rs-form-control:not(:placeholder-shown) ~ label {
    top: -10px;
    left: 10px;
    font-size: 0.8rem;
    color: var(--secondary-blue);
    background-color: #fff;
    padding: 0 5px;
}


/* --- FOOTER (Assuming a simple footer for now) --- */
.rs-footer {
    background-color: var(--primary-black);
    color: #ccc;
    padding: 40px 0;
    text-align: center;
    font-size: 0.9rem;
    border-top: 3px solid var(--secondary-blue);
}
.rs-footer p {
    margin: 0;
}
.rs-footer a {
    color: var(--primary-orange);
}
.rs-footer a:hover {
    color: var(--text-light);
}

     /* Responsive Styling */
    @media screen and (max-width: 767px) {
        .about1 {
            padding:30px;
        }
        .about1 h2 {
        text-align: center;
    }
    .about1 p {
        text-align: center;
    }
    .rs-hero-section {
        padding: 30px 0;
    }
    .rs-main-heading {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .rs-hero-subtext {
    font-size: 13px;
    margin-bottom: 10px;
    }
    .rs-service-solutions{
        padding:30px 0;
    }
}