:root {
    --primary-orange: #e20604;
    --dark-bg: #1f2329;
    --light-text: #ffffff;
    --dark-text: #333333;
    --navbar-height: 100px !important;
    --topbar-height: 40px;
    --brown: #7a1823;
}


.working-process-section {
    padding: 70px 0;
    background-color: var(--section-bg);
    text-align: center;
}

.section-subtitle-wp {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.section-subtitle-wp .line {
    height: 2px;
    width: 40px;
    background-color: var(--primary-orange);
}

.section-subtitle-wp span {
    color: var(--primary-orange);
    font-weight: 500;
    font-size: 0.95em;
    margin: 0 15px;
    text-transform: uppercase;
}

.working-process-section h2.section-title-wp {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--dark-text);
    margin-top: 0;
    margin-bottom: 60px;
    line-height: 1.3;
}

.process-steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    gap: 30px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    padding: 25px;
    text-align: center;
    position: relative;
    background-color: var(--light-bg);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.795);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s ease;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px var(--brown);
}

.step-icon-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px auto;
    position: relative;
}

.step-icon-orange-arc {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--primary-orange);
    clip-path: polygon(0% 50%, 100% 50%, 100% 100%, 0% 100%);
    z-index: 1;
}

.step-icon-circle {
    width: 110px;
    height: 110px;
    background-color: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.step-icon-circle i {
    font-size: 40px;
    color: var(--dark-text);
}

.step-number {
    position: absolute;
    top: 0px;
    right: 0px;
    background-color: var(--number-badge-bg);
    color: var(--light-bg);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8em;
    font-weight: 700;
    z-index: 3;
    border: 2px solid var(--light-bg);
}

.step-text-content h3 {
    font-size: 1.25em;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 10px;
    margin-top: 0;
}

.step-text-content p {
    font-size: 0.9em;
    color: var(--grey-text);
    line-height: 1.7;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .working-process-section h2.section-title-wp {
        font-size: 2.2em;
    }

    .process-steps-container {
        flex-direction: column;
        align-items: center;
    }

    .process-step {
        flex: none;
        width: 100%;
        max-width: 350px;
        margin-bottom: 40px;
        padding: 20px;
    }

    .process-step:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .working-process-section h2.section-title-wp {
        font-size: 2em;
        margin-bottom: 40px;
    }

    .step-icon-wrapper {
        width: 100px;
        height: 100px;
    }

    .step-icon-circle {
        width: 90px;
        height: 90px;
    }

    .step-icon-circle i {
        font-size: 32px;
    }

    .step-number {
        width: 24px;
        height: 24px;
        font-size: 0.7em;
    }

    .step-text-content h3 {
        font-size: 1.15em;
    }
}
/* Testimonials Section Start */

.testimonial-slider-section {
    padding: 50px 0;
    background-color: var(--section-bg);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.testimonial-slider-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15vw;
    font-weight: 800;
    color: var(--watermark-color);
    z-index: 0;
    pointer-events: none;
    user-select: none;
}


.section-header-testi {
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.section-header-testi .subtitle-testi {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.section-header-testi .subtitle-testi .line {
    height: 2px;
    width: 40px;
    background-color: var(--primary-orange);
}

.section-header-testi .subtitle-testi span {
    color: var(--primary-orange);
    font-weight: 500;
    font-size: 0.95em;
    margin: 0 15px;
}

.section-header-testi h2 {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--dark-text);
    margin: 0;
    line-height: 1.3;
}

.testimonial-slider-wrapper {
    position: relative;
    z-index: 2;
}

.testimonial-slider {
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

.testimonial-slide-inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    align-items: center;
    gap: 20px;
}

.testimonial-image {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    margin-right: -30px;
}

.testimonial-image img {
    width: 100%;
    display: block;
    border-radius: 12px;
}

.testimonial-text-box {
    background: var(--light-bg);
    padding: 30px 30px 30px 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.253);
    position: relative;
    text-align: left;
    z-index: 1;
}

.quote-icon {
    position: absolute;
    top: -25px;
    left: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-orange);
    color: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
}

.testimonial-text-box blockquote {
    font-size: 0.95em;
    color: var(--grey-text);
    margin: 20px 0;
    line-height: 1.8;
    border-left: none;
    padding: 0;
}

.rating-stars {
    color: #FFC107;
    margin-bottom: 10px;
}

.client-name {
    font-size: 1.1em;
    font-weight: 700;
    color: var(--dark-text);
    margin: 0;
}

.slider-arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--light-bg);
    border: 1px solid #eee;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    color: var(--dark-text);
    transition: all 0.3s ease;
}

.slider-arrow-btn:hover {
    background-color: var(--primary-orange);
    color: var(--light-bg);
    border-color: var(--primary-orange);
}

.prev-arrow {
    left: -20px;
}

.next-arrow {
    right: -20px;
}


@media (max-width: 992px) {
    .slider-arrow-btn {
        top: auto;
        bottom: -60px;
        transform: translateY(0);
    }

    .prev-arrow {
        left: 40%;
        transform: translateX(-50%);
    }

    .next-arrow {
        right: 40%;
        transform: translateX(50%);
    }

    .section-header-testi h2 {
        font-size: 2.2em;
    }

    .testimonial-slider-section::before {
        font-size: 20vw;
    }
}

@media (max-width: 768px) {
    .testimonial-slider-section::before {
        display: none;
    }

    .testimonial-slide-inner {
        grid-template-columns: 1fr;
    }

    .testimonial-image {
        margin: 0 auto;
        max-width: 250px;
        margin-bottom: -40px;
    }

    .testimonial-text-box {
        padding: 50px 25px 25px 25px;
        text-align: center;
    }

    .quote-icon {
        left: 50%;
        transform: translateX(-50%);
    }

    .section-header-testi h2 {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .section-header-testi h2 {
        font-size: 1.8em;
    }
}

/* Banner Section Start */

/* --- The Main Banner Section --- */
.consultation-banner {
    /* Using a dark gradient as a placeholder for the background image */
    background: linear-gradient(rgba(23, 27, 43, 0.863), rgba(23, 27, 43, 0.877)), url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?q=80&w=1932&auto=format&fit=crop') no-repeat center center;
    background-size: cover;
    color: #ffffff;
    padding: 60px 20px;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.banner-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.banner-text .sub-heading {
    color: #f39c12;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 10px 0;
}

.banner-text h1,
.banner-text h2 {
    margin: 0;
    font-weight: 800;
    line-height: 1.2;
}

.banner-text h1 {
    font-size: 48px;
    color: var(--light-bg);
}

.banner-text h2 {
    font-size: 48px;
}

.banner-text .orange-exclamation {
    color: #f39c12;
}

.banner-actions {
    display: flex;
    gap: 15px;
}

.btn-primary-button {
    background-color: var(--primary-orange);
    color: #fff;
}

.btn-primary-button:hover {
    background-color: slategrey;
}


.btn {
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    clip-path: polygon(0 0, 100% 0, 93% 100%, 0% 100%);
}

.btn-primary {
    background-color: #f39c12;
    color: #ffffff;
}

.btn-secondary {
    background-color: #ffffff;
    color: #171b2b;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}


/* --- Responsive Design (The "Pkkama" Part!) --- */
@media (max-width: 992px) {

    .banner-text h1,
    .banner-text h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .banner-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .banner-text .sub-heading {
        justify-content: center;
    }

    .banner-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .btn {
        justify-content: center;
    }
}

.banner-title {
    color: var(--light-bg);
}


/* Banner SectioN Start */

/* --- Hero Section Styles --- */
.hero-section {
    background: url(./assets/img/carousel-img/7.jpg) no-repeat center center/cover;
    /* Replace with your actual image path */
    position: relative;
    min-height: 60vh;
    /* Adjust height for responsiveness */
    padding: 100px 0;
    /* Fallback padding */
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    /* Semi-transparent dark overlay for text readability */
    z-index: 1;
}

.hero-section .hero-content {
    z-index: 2;
    /* Bring content above the overlay */
    max-width: 900px;
    /* Limit content width */
}

.hero-section .small-heading {
    font-size: 1.2em;
    font-weight: 500;
    color: var(--text-white);
    margin-bottom: 10px;
    opacity: 0.8;
}

.hero-section .main-heading {
    font-size: 4em;
    /* Large font size for impact */
    font-weight: bold;
    color: var(--text-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-section .sub-text {
    font-size: 1.1em;
    color: var(--text-white);
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 30px;
}

.appointment-btn {
    background-color: var(--primary-orange);
    color: var(--text-white);
    padding: 15px 35px;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
}

.appointment-btn:hover {
    background-color: #e65c00;
    /* Slightly darker orange on hover */
    transform: translateY(-2px);
    color: var(--text-white);
    /* Keep text white on hover */
}

.appointment-btn i {
    margin-left: 10px;
}

/* --- Feature Cards Section Styles --- */
.feature-cards-section {
    background-color: var(--primary-orange);
    /* Light background for the entire section */
    padding-top: 80px;
    padding-bottom: 80px;
    margin-top: -100px;
    /* Overlap with the hero section */
    position: relative;
    z-index: 3;
    /* Bring cards above hero section */
}

.feature-card {
    background-color: var(--light-text);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px var(--card-shadow);
    /* Soft, prominent shadow */
    text-align: left;
    height: 100%;
    /* Ensure equal height cards */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding-top: 60px;
    /* Space for the number circle */
}

.feature-card:hover {
    transform: translateY(-8px);
    /* Lift effect on hover */
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
    /* Deeper shadow on hover */
}

.card-number-circle {
    position: absolute;
    top: -20px;
    /* Adjust to position outside the card */
    left: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    /* Makes it a perfect circle */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    font-weight: bold;
    color: var(--light-text);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    /* Shadow for the circle */
}

.card-number-orange {
    background-color: var(--brown);
}

.card-number-blue {
    background-color: var(--brown);
}

.feature-card .card-title {
    font-size: 1.8em;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.feature-card .card-text {
    font-size: 1em;
    color: var(--text-dark);
    line-height: 1.6;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
    .hero-section .main-heading {
        font-size: 3em;
        /* Smaller on tablets */
    }

    .hero-section .sub-text {
        font-size: 1em;
    }

    .appointment-btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .feature-cards-section {
        padding-top: 50px;
        /* Adjust overlap for tablets */
        margin-top: -50px;
    }

    .feature-card {
        padding: 50px 25px 30px;
    }

    .card-number-circle {
        width: 45px;
        height: 45px;
        font-size: 1.1em;
        top: -15px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: 60vh;
        /* Shorter on mobile */
        padding: 80px 0;
    }

    .hero-section .main-heading {
        font-size: 2.5em;
        /* Even smaller on mobile */
    }

    .hero-section .sub-text {
        font-size: 0.9em;
        padding: 0 15px;
        /* Add horizontal padding for text */
    }

    .feature-cards-section {
        padding-top: 30px;
        margin-top: -30px;
        /* Minimal overlap on mobile */
    }

    .feature-card {
        margin-bottom: 25px;
        /* Space between stacked cards */
        padding: 50px 20px 25px;
    }

    .card-number-circle {
        width: 40px;
        height: 40px;
        font-size: 1em;
        top: -10px;
        left: 15px;
    }
}

@media (max-width: 575px) {
    .hero-section .main-heading {
        font-size: 2em;
    }

    .feature-cards-section {
        padding-left: 15px;
        padding-right: 15px;
    }
}