 /* Banner Panel */
    .banner-panel {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 120px 0;
        position: relative;
        color: #fff;
        text-align: center;
    }

    .banner-panel::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.6);
    }

    .banner-content {
        position: relative;
        z-index: 1;
    }

    .banner-content h1 {
        font-size: 48px;
        font-weight: 700;
        margin-bottom: 20px;
        text-transform: uppercase;
    }

    .breadcrumbs {
        display: flex;
        justify-content: center;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .breadcrumbs li {
        margin: 0 10px;
        display: flex;
        align-items: center;
    }

    .breadcrumbs a {
        color: #fff;
        text-decoration: none;
        display: flex;
        align-items: center;
    }

    .breadcrumbs i {
        margin-left: 8px;
        font-size: 12px;
    }

    /* About Our Services Section */
    .about-services-section {
        background-color: #f8f8f8;
        padding: 80px 20px;
        color: #000;
        text-align: center;
    }

    .section-title {
        font-size: 42px;
        color: #d6001c;
        margin-bottom: 20px;
        font-weight: 700;
        position: relative;
        display: inline-block;
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: #d6001c;
    }

    .section-subtitle {
        font-size: 18px;
        max-width: 800px;
        margin: 0 auto 50px auto;
        color: #555;
        line-height: 1.6;
    }

    .about-features {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
    }

    .feature-box {
        background: #fff;
        border: 2px solid #d6001c;
        border-radius: 12px;
        padding: 30px;
        width: 300px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
    }

    .feature-box:hover {
        background-color: #d6001c;
        color: #fff;
        transform: translateY(-5px);
    }

    .feature-box i {
        font-size: 40px;
        margin-bottom: 15px;
        color: #d6001c;
        transition: color 0.3s ease;
    }

    .feature-box:hover i {
        color: #fff;
    }

    .feature-box h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .feature-box p {
        font-size: 16px;
        color: inherit;
        line-height: 1.5;
    }

    /* Services Section */
    .services-section {
        background-color: #fff;
        padding: 80px 20px;
        text-align: center;
    }

    .services-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
    }

    .service-card {
        background-color: #f8f8f8;
        border: 2px solid #d6001c;
        border-radius: 12px;
        padding: 30px;
        width: 300px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        text-align: center;
    }

    .service-card:hover {
        background-color: #d6001c;
        color: #fff;
        transform: translateY(-8px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .icon-box {
        width: 80px;
        height: 80px;
        margin: 0 auto 20px auto;
        border-radius: 50%;
        background-color: #d6001c;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background-color 0.3s ease;
    }

    .service-card:hover .icon-box {
        background-color: #fff;
    }

    .icon-box i {
        font-size: 32px;
        color: #fff;
        transition: color 0.3s ease;
    }

    .service-card:hover .icon-box i {
        color: #d6001c;
    }

    .service-card h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .service-card p {
        font-size: 16px;
        color: inherit;
        margin-bottom: 20px;
        line-height: 1.5;
    }

    .read-more {
        display: inline-flex;
        align-items: center;
        font-weight: bold;
        color: #d6001c;
        text-decoration: none;
        transition: all 0.3s ease;
        padding: 8px 15px;
        border: 2px solid #d6001c;
        border-radius: 10px;
    }

    .service-card:hover .read-more {
        color: #fff;
        background-color: transparent;
        border-color: #fff;
    }

    .read-more button {
        border: none;
        background: none;
        font-size: 16px;
        color: inherit;
        cursor: pointer;
        font-weight: 600;
    }

    .read-more i {
        margin-left: 8px;
        transition: transform 0.3s ease;
    }

    .service-card:hover .read-more i {
        transform: translateX(5px);
    }

    /* Why Choose Us Section */
    .service-why-choose-us {
        background-color: #f4f4f4;
        padding: 80px 20px;
        text-align: center;
    }

    .service-choose-us-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
    }

    .service-choose-us-box {
        background-color: #ffffff;
        border-radius: 15px;
        padding: 40px 30px;
        width: 280px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        text-align: center;
        transition: all 0.3s ease;
    }

    .service-choose-us-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

    .service-icon {
        background-color: #d6001c;
        color: #fff;
        width: 80px;
        height: 80px;
        margin: 0 auto 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-size: 36px;
    }

    .service-box-title {
        font-size: 24px;
        margin-bottom: 15px;
        color: #333;
    }

    .service-box-description {
        font-size: 16px;
        color: #555;
        margin-bottom: 20px;
        line-height: 1.6;
    }

    /* Testimonials Section */
    .service-client-testimonials {
        background-color: #fff;
        padding: 80px 20px;
        text-align: center;
    }

    .service-client-testimonial-item {
        background: #fff;
        padding: 40px;
        border-radius: 8px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        text-align: center;
        transition: all 0.3s ease;
        margin: 15px;
        max-width: 350px;
    }

    .service-client-testimonial-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .service-client-image {
        margin-bottom: 20px;
    }

    .service-client-image img {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        object-fit: cover;
        border: 4px solid #d6001c;
    }

    .service-client-feedback {
        font-size: 18px;
        color: #444;
        font-style: italic;
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .service-client-name {
        font-size: 22px;
        color: #333;
        font-weight: bold;
        margin-bottom: 5px;
    }

    .service-client-position {
        font-size: 16px;
        color: #888;
    }

    /* CTA Section */
    .service-cta-section {
        background-color: #000;
        padding: 100px 20px;
        text-align: center;
        color: #fff;
        position: relative;
        overflow: hidden;
    }

    .service-cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('http://vinaysabhaya.com/wp-content/uploads/2025/04/banner-image.jpg') center/cover no-repeat;
        opacity: 0.2;
    }

    .service-cta-content {
        position: relative;
        z-index: 1;
        max-width: 800px;
        margin: 0 auto;
    }

    .service-cta-title {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 25px;
    }

    .service-cta-description {
        font-size: 18px;
        margin-bottom: 40px;
        line-height: 1.6;
    }

    .service-cta-button {
        display: inline-block;
        padding: 15px 40px;
        background-color: #fff;
        color: #d6001c;
        text-decoration: none;
        border-radius: 50px;
        font-size: 18px;
        font-weight: 600;
        transition: all 0.3s ease;
        border: 2px solid #fff;
    }

    .service-cta-button:hover {
        background-color: transparent;
        color: #fff;
        transform: translateY(-5px);
    }

    /* FAQ Section */
    .service-faq-section {
        background-color: #f9f9f9;
        padding: 80px 20px;
        text-align: center;
    }

    .service-faq-content {
        max-width: 800px;
        margin: 0 auto;
    }

    .service-faq-items {
        margin-top: 40px;
        text-align: left;
    }

    .service-faq-item {
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .service-faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 20px;
        background-color: #fff;
        border: none;
        text-align: left;
        cursor: pointer;
        font-size: 18px;
        font-weight: 600;
        color: #333;
        transition: all 0.3s ease;
    }

    .service-faq-question:hover {
        background-color: #f0f0f0;
    }

    .faq-icon {
        font-size: 20px;
        color: #d6001c;
        transition: transform 0.3s ease;
    }

    .service-faq-answer {
        padding: 0 20px;
        max-height: 0;
        overflow: hidden;
        background-color: #fff;
        transition: max-height 0.3s ease;
    }

    .service-faq-item.active .service-faq-answer {
        padding: 20px;
        max-height: 500px;
    }

    .service-faq-item.active .faq-icon {
        transform: rotate(45deg);
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .section-title {
            font-size: 36px;
        }

        .service-card {
            width: 45%;
        }
    }

    @media (max-width: 768px) {
        .banner-content h1 {
            font-size: 36px;
        }

        .section-title {
            font-size: 32px;
        }

        .section-subtitle {
            font-size: 16px;
        }

        .service-cta-title {
            font-size: 32px;
        }

        .service-cta-description {
            font-size: 16px;
        }

        .service-cta-button {
            padding: 12px 30px;
            font-size: 16px;
        }
    }

    @media (max-width: 600px) {
        .banner-panel {
            padding: 80px 0;
        }

        .service-card {
            width: 100%;
        }

        .feature-box {
            width: 100%;
        }

        .service-choose-us-box {
            width: 100%;
        }

        .service-client-testimonial-item {
            padding: 30px 20px;
        }

        .service-faq-question {
            font-size: 16px;
            padding: 15px;
        }
    }

    .service-client-image img {
        width: 80px !important;
        height: 80px !important;
        margin: 0 auto !important;
    }

    /* ===== Banner Section ===== */
    .about-banner {
        background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
            url('http://vinaysabhaya.com/wp-content/uploads/2025/05/about-vinay-sabhaya-bg-2-1-1-1.webp') center/cover no-repeat;
        color: #ffffff;
        padding: 80px 0;
        text-align: center;
        position: relative;
        z-index: 1;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }


    .about-banner h1 {
        font-size: 3.5rem;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 1rem;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .banner-subtitle {
        font-size: 1.25rem;
        max-width: 700px;
        margin: 0 auto 2rem;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .banner-btn {
        position: relative;
        z-index: 10;
        display: inline-flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .breadcrumbs {
        display: flex;
        justify-content: center;
        list-style: none;
        margin-bottom: 1.5rem;
    }

    .breadcrumbs li {
        margin: 0 12px;
        display: flex;
        align-items: center;
        font-size: 0.9rem;
    }

    .breadcrumbs a {
        color: var(--white);
        text-decoration: none;
        opacity: 0.8;
    }

    .breadcrumbs a:hover,
    .breadcrumbs a:focus {
        opacity: 1;
    }

    .breadcrumbs i {
        margin-left: 8px;
        font-size: 0.75rem;
    }



    @media (max-width: 1024px) {

        .about-banner h1 {
            font-size: 2.5rem;
        }

        .section-title {
            font-size: 2rem;
        }
    }


    @media (max-width: 768px) {

        .about-banner {
            padding: 70px 0;
        }

        .about-banner h1 {
            font-size: 2rem;
        }

        .banner-subtitle {
            font-size: 1.1rem;
        }
    }

    @media (max-width: 480px) {
        .about-banner {
            padding: 50px 0;
        }

        .about-banner h1 {
            font-size: 1.75rem;
        }

        .banner-subtitle {
            font-size: 1rem;
        }

        .section-title {
            font-size: 1.5rem;
        }

        .breadcrumbs {
            flex-wrap: wrap;
            justify-content: center;
        }

        .breadcrumbs li {
            margin: 6px 8px;
        }

        .btn {
            padding: 10px 24px;
            font-size: 0.9rem;
        }
    }
      .banner-btn {
    display: inline-block;
    background-color: #ffffff; 
    color: #000000; 
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.banner-btn:hover,
.banner-btn:focus {
    background-color: transparent;
    color: #ffffff; 
    border: 2px solid #ffffff; 
}