/* =========================================
   SERVICE DETAILS PAGE CUSTOM STYLES
   ========================================= */

:root {
    --primary: #059EFF;
    --secondary: #CEEDFF;
    --text-dark: #000000;
    --text-body: #4a4a4a;
    --bg-light: #F4F9FD;
}

.section-padding {
    padding: 20px 0;
}

.section-padding-top {
    padding-top: 20px;
}

.sd-content h2 {
    padding-bottom: 10px;

}

.mt-4 {
    margin-top: 30px;
}

/* Base Headings & Text */
.sd-heading {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 40px 0 20px;
}

.sd-heading span {
    color: var(--primary);
}

.sd-subtitle {
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Base Primary Button */
.btn-primary {
    display: inline-block;
    background-color: var(--primary);
    color: #fff;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #0482d6;
    box-shadow: 0 4px 12px rgba(5, 158, 255, 0.3);
}

/* Hero Section */
.sd-hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.sd-hero .container-1200 {
    max-width: 1200px;
    width: 100%;
    margin: 10px 10px 20px 10px;
    padding: 0 16px;
}

.sd-hero-title {
    font-size: clamp(1.5rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 0.75rem;
    word-break: break-word;
    color: #ffffff;
    text-shadow: 0 3px 10px rgba(0,0,0,0.8);
}

.sd-hero-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.25rem);
    line-height: 1.5;
    margin-bottom: 0;
    color: #ffffff;
    text-shadow: 0 2px 6px rgba(0,0,0,0.8);
}

/* Responsive breakpoints */
@media (max-width: 768px) {
    .sd-hero {
        min-height: 280px;
        padding: 40px 16px;
        background-position: center center;
    }
}

@media (max-width: 480px) {
    .sd-hero {
        min-height: 220px;
        padding: 32px 12px;
    }

    .btn-primary.mt-4 {
        display: block;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
}

/* --- 2. Main Layout (66% / 33% Split) --- */
.sd-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

/* LEFT COLUMN TOP CONTENT */
.sd-main-image {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 20px;
    display: block;
}

.sd-two-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

/* This targets an image that is the ONLY child, making it span both columns */
.sd-two-images img:only-child {
    grid-column: span 2;
}

.sd-two-images img {
    width: 100%;
    height: 250px;
    display: block;
}


@media (max-width: 767px) {
    .sd-two-images {
        grid-template-columns: 1fr;
    }

    .sd-two-images img,
    .sd-image-large img {
        height: 250px;
    }
}

/* .sd-two-images1 img {
    width: 100%;
    height: 250px; 
    display: block;
} */

/* RIGHT COLUMN SIDEBAR */
.sd-sidebar {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sd-widget {
    background: #fff;
}

.sd-widget-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    background: var(--secondary);
    padding: 18px 20px;
    margin: 0;
    border-radius: 4px 4px 0 0;
}

.sd-widget-title span {
    color: var(--primary);
}

.sd-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    background: var(--bg-light);
}

.sd-services-list li {
    border-bottom: 1px solid #e0ebf5;
}

.sd-services-list li:last-child {
    border-bottom: none;
}

.sd-services-list a {
    display: flex;
    /* justify-content: space-between; */
    /* align-items: center; */
    padding: 15px 20px;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.sd-services-list li:hover a {
    background: var(--secondary);
    color: var(--primary);
}

.sd-services-list li.active a {
    background: var(--primary);
    color: #ffffff;
}

.sd-emergency-widget {
    background: var(--secondary);
    text-align: center;
    padding: 40px 20px;
    border-radius: 4px;
}

.sd-emergency-widget h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin: 0 0 20px;
}

.sd-phone-icon {
    width: 50px;
    height: 50px;
    background: #fff;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.sd-phone-icon svg {
    width: 24px;
    height: 24px;
}

.sd-emergency-label {
    font-size: 14px;
    color: var(--text-dark);
    margin: 0 0 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sd-emergency-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.sd-emergency-desc {
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.6;
}

.sd-emergency-btn {
    width: 100%;
    text-align: center;
}


/* --- FULL WIDTH SECTIONS --- */
.sd-full-width-section {
    background-color: #ffffff;
}

/* Process Area Grid (Full Width) */
.sd-process-area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.sd-process-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.sd-process-box {
    background: #CEEDFF;
    border: 1px solid var(--secondary);
    padding: 20px;
    border-radius: 4px;
    transition: transform 0.3s;
}

.sd-process-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(5, 158, 255, 0.1);
}

.sd-process-box .sd-number {
    font-size: 32px;
    font-weight: 800;
    color: #059EFF;
    margin-bottom: 10px;
    line-height: 1;
}

.sd-process-box h4 {
    font-size: 15px;
    color: var(--text-dark);
    margin: 0 0 10px;
}

.sd-process-box p {
    font-size: 13px;
    margin: 0;
    line-height: 1.5;
}

/* Looking For Area (Full Width) */
.sd-looking-for-area {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
}

.sd-looking-text p {
    margin-bottom: 8px;
    line-height: 1.4;
}

.sd-looking-text h2 {
    margin-bottom: 8px;
}

.sd-contact-bold {
    font-weight: 700;
    color: var(--text-dark) !important;
}

.sd-contact-bold span {
    color: var(--primary);
}

.sd-looking-image img {
    height: auto;
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* CTA Section (Full Width, Blue BG) */
.sd-cta-section {
    background-color: var(--secondary);
    text-align: left;
}

.sd-cta-section p {
    color: var(--text-body);
    font-size: 16px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0;
}

/* FAQ Section (Full Width with Secondary BG and Centering Fix) */
.sd-faq-section {
    background-color: var(--secondary);
}

.sd-faq-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: stretch;
    /* Stretch to allow inner containers to fill height for centering */
}

/* Container to handle vertical and horizontal centering */
.sd-faq-sidebar-centered {
    display: flex;
    justify-content: center;
    /* Horizontal Center */
    align-items: center;
    /* Vertical Center */
    height: 100%;
}

/* Centered Quote Box Styling */
.sd-faq-quote-box {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(5, 158, 255, 0.15);
    max-width: 320px;
    margin: 0 auto;
}

.sd-faq-quote-box p {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.5;
    font-style: italic;
    margin: 0;
}

/* Accordion with higher contrast lines for colored background */
.sd-faq-list {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.sd-faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.sd-faq-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    padding: 20px 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    text-align: left;
}

.sd-faq-icon {
    color: var(--primary);
    font-size: 24px;
    font-weight: 400;
}

.sd-faq-item.active .sd-faq-btn {
    color: var(--primary);
}

.sd-faq-content {
    display: none;
    padding-bottom: 20px;
}

.sd-faq-content p {
    margin: 0;
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 15px;
}


/* =========================================
   RESPONSIVE QUERIES
   ========================================= */
@media (max-width: 1024px) {
    .sd-layout {
        grid-template-columns: 1fr;
    }

    .sd-process-area {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sd-looking-for-area {
        grid-template-columns: 1fr;
    }

    .sd-faq-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .sd-faq-sidebar-centered {
        margin-top: 30px;
        justify-content: center;
    }

    .sd-faq-quote-box {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .sd-hero {
        height: 200px;
    }

    .sd-hero-title {
        font-size: 32px;
    }

    .sd-two-images {
        grid-template-columns: 1fr;
    }

    .sd-process-boxes {
        grid-template-columns: 1fr;
    }

    .sd-heading {
        font-size: 26px;
    }

    .sd-faq-btn {
        font-size: 16px;
    }
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f0f4f8;
    /* Matches the light blue bg */
    color: #333;
}

.service-banner {
    padding: 60px 20px;
    text-align: center;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Typography */
.top-title {
    color: #0061d5;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 50px;
    text-transform: capitalize;
}

.main-title span {
    color: #0061d5;
}

/* Grid Layout */
.grid-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.feature-card {
    flex: 1;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Borders for middle column */
.border-sides {
    border-left: 1px solid #c8d6e5;
    border-right: 1px solid #c8d6e5;
}

/* Icons */
.icon-circle {
    width: 50px;
    height: 50px;
    border: 1px solid #0061d5;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #0061d5;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.feature-card h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
    min-height: 50px;
    /* Keeps buttons aligned */
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 35px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
    width: 100%;
    max-width: 200px;
}

.btn-filled {
    background-color: #0061d5;
    color: white;
    border: 1px solid #0061d5;
}

.btn-filled:hover {
    background-color: #004bb1;
}

.btn-outline {
    background-color: transparent;
    color: #0061d5;
    border: 1px solid #0061d5;
}

.btn-outline:hover {
    background-color: #0061d5;
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .feature-card {}

    .sd-two-images {
        height: 120px !important;
        width: 90% !important;
    }

    .grid-wrapper {
        flex-direction: column;
    }

    .feature-card {
        padding: 40px 10px;
    }

    .border-sides {
        border-left: none;
        border-right: none;
        border-top: 1px solid #c8d6e5;
        border-bottom: 1px solid #c8d6e5;
    }

}

.section-padding-top ul li {
    margin-left: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}



.testimonials-section {
    background-color: #ffffff;
    /* Clean white background */
    padding: 80px 0;
    font-family: 'Inter', "Trebuchet MS", sans-serif;
}

/* Header Styling */
.testi-header {
    margin-bottom: 50px;
}

.testi-title {
    font-size: 36px;
    font-weight: 700;
    color: #111111;
    margin: 0 0 15px 0;
    letter-spacing: -0.5px;
}

.testi-title .text-blue {
    color: #0b5ed7;
    /* Theme blue */
}

.testi-subtitle {
    font-size: 16px;
    color: #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
}

.star-icon {
    width: 18px;
    height: 18px;
    color: #f97316;
    /* Orange star color */
    margin-right: -2px;
}

.stars-inline {
    display: inline-flex;
    align-items: center;
}

/* Updated Grid Layout for Sliding */
.testi-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 30px;
    -ms-overflow-style: none;
    /* Hide scrollbar */
    scrollbar-width: none;
    /* Hide scrollbar */
}

.testi-grid::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

/* Updated Card to work inside the slider */
.testi-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
}

.testi-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

/* Giant Quote Mark */
.quote-mark {
    font-family: Georgia, serif;
    font-size: 80px;
    color: #fcece3;
    /* Very pale peach/orange */
    line-height: 0.5;
    margin-top: 20px;
}

.card-stars {
    display: flex;
}

/* Review Text */
.testi-text {
    font-size: 14.5px;
    line-height: 1.8;
    color: #444444;
    flex-grow: 1;
    /* Pushes the user info to the bottom evenly */
    margin: 0 0 20px 0;
}

/* Thin separator line */
.testi-divider {
    width: 100%;
    height: 1px;
    background-color: #eeeeee;
    margin-bottom: 20px;
}

/* User Profile Styling */
.testi-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #0b5ed7;
    /* Blue outline */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b5ed7;
    /* Blue icon */
}

.user-avatar svg {
    width: 24px;
    height: 24px;
}

.user-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: #111111;
    margin: 0 0 3px 0;
}

.user-info span {
    font-size: 13px;
    color: #777777;
}

/* Pagination Dots */
.slider-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.slider-pagination .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #e2e8f0;
    /* Inactive light gray */
    cursor: pointer;
    transition: background-color 0.3s;
}

.slider-pagination .dot.active {
    background-color: #0b5ed7;
    /* Active theme blue */
}

/* =========================================
   RESPONSIVE LAYOUT FIXES
   ========================================= */

@media (max-width: 1024px) {
    .testi-card {
        flex: 0 0 calc((100% - 30px) / 2);
    }
}

@media (min-width: 1025px) {
    .testi-card {
        /* Shows exactly 3 cards: (100% - 2 gaps) / 3 */
        flex: 0 0 calc((100% - 60px) / 3);
    }
}

@media (max-width: 768px) {
    .testi-grid {
        gap: 20px;
    }

    .testi-card {
        flex: 0 0 100%;
    }
}

/* =========================================
   SIDEBAR — NEW ICON DESIGN
   ========================================= */

.sd-services-widget {
    background: #f0f4f8;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e2eaf2;
}

/* Blue header bar */
.sd-services-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #0d6efd;
    color: #ffffff;
    padding: 16px 20px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.sd-services-gear {
    width: 22px;
    height: 22px;
    opacity: 0.9;
    flex-shrink: 0;
}

/* Service list */
.sd-services-list {
    list-style: none;
    padding: 2px 0;
    margin: 0;
    background: #f0f4f8;
}

.sd-services-list li {
    border-bottom: none;
}

.sd-services-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 14px;
    color: #1a1a1a;
    font-size: 14.5px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    margin: 1px 6px;
    transition: background 0.2s, color 0.2s;
    background: transparent;
}

.sd-services-list li a:hover {
    background: #dbeafe;
    color: #0d6efd;
}

.sd-services-list li.active a {
    background: transparent;
    color: #1a1a1a;
    font-weight: 700;
}

/* Icon wrapper */
.sd-svc-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d6efd;
}

.sd-svc-icon svg {
    width: 18px;
    height: 18px;
    stroke: #0d6efd;
}

.sd-svc-label {
    line-height: 1.35;
}