* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ============================================
   HERO SLIDER STYLES
   ============================================ */

/* Hero Slider Styles */
    .hero-slider {
        position: relative;
        height: 650px;
        overflow: hidden;
    }

    .slider-container {
        position: relative;
        height: 100%;
        width: 100%;
    }

    .slider-item {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        opacity: 0;
        transition: opacity 1s ease-in-out;
        visibility: hidden;
    }

    .slider-item.active {
        opacity: 1;
        visibility: visible;
    }

    .slider-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
    }

    .slider-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: #fff;
        max-width: 800px;
        width: 100%;
        padding: 0 20px;
    }

    /* Animations */
    .slider-heading {
        font-size: 52px;
        font-weight: 700;
        margin-bottom: 20px;
        line-height: 1.2;
        opacity: 0;
        transform: translateY(-50px);
    }

    .slider-description {
        font-size: 20px;
        margin-bottom: 30px;
        line-height: 1.6;
        opacity: 0;
        transform: scale(0.8);
    }

    .slider-btn {
        display: inline-block;
        padding: 14px 35px;
        background: #1a237e;
        color: #fff;
        text-decoration: none;
        font-size: 16px;
        font-weight: 600;
        border-radius: 4px;
        opacity: 0;
        transform: translateY(50px);
        transition: all 0.3s ease;
    }

    .slider-btn:hover {
        background: #0d1442;
        transform: translateY(50px) scale(1.05);
    }

    /* Active State Animations */
    .slider-item.active .slider-heading.animate-slide-down {
        animation: slideDown 0.8s ease forwards 0.3s;
    }

    .slider-item.active .slider-description.animate-scale-up {
        animation: scaleUp 0.8s ease forwards 0.6s;
    }

    .slider-item.active .slider-btn.animate-slide-up {
        animation: slideUp 0.8s ease forwards 0.9s;
    }

    @keyframes slideDown {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes scaleUp {
        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    @keyframes slideUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Arrow Buttons */
    .slider-arrows {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.15);
        border: 2px solid rgba(255, 255, 255, 0.3);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        transition: all 0.3s ease;
        z-index: 10;
    }

    .slider-arrows:hover {
        background: rgba(255, 255, 255, 0.25);
        border-color: rgba(255, 255, 255, 0.5);
    }

    .slider-arrow--prev {
        left: 30px;
    }

    .slider-arrow--next {
        right: 30px;
    }

    /* Container */
    .container {
        position: relative;
        height: 100%;
        align-items: center;
        justify-content: center;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .hero-slider {
            height: 500px;
        }

        .slider-heading {
            font-size: 32px;
        }

        .slider-description {
            font-size: 16px;
        }

        .slider-arrows {
            width: 40px;
            height: 40px;
        }

        .slider-arrow--prev {
            left: 15px;
        }

        .slider-arrow--next {
            right: 15px;
        }
    }



    /* Features Section */
    .features-section {
        background-color: #f8f9fa;
        padding: 50px 20px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .features-wrapper {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .feature-card {
        background: #fff;
        padding: 40px 30px;
        border-radius: 8px;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
    }

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    }

    .feature-icon {
        margin-bottom: 20px;
    }

    .feature-icon svg {
        transition: transform 0.3s ease;
    }

    .feature-card:hover .feature-icon svg {
        transform: scale(1.1);
    }

    .feature-title {
        font-size: 22px;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 15px;
    }

    .feature-text {
        font-size: 15px;
        color: #555;
        line-height: 1.7;
    }

    /* Responsive */
    @media (max-width: 992px) {
        .features-wrapper {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .features-wrapper {
            grid-template-columns: 1fr;
        }

        .features-section {
            padding: 50px 20px;
        }
    }
/* =========================================
   FEATURES CSS ENDS
========================================= */
/* about sction */

/* About Section */
    .about-section {
        padding: 0px 20px;
        background: #fff;
        padding-left: 10px;
        padding-right: 10px;
    }

    .about-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .about-row {
        display: flex;
        align-items: center;
        gap: 50px;
    }

    .about-col {
        flex: 1;
    }

    /* Content Side */
    .about-content-wrapper {
        padding-right: 20px;
    }

    .about-heading {
        font-size: 36px;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 20px;
    }

    .about-text {
        font-size: 15px;
        color: #555;
        line-height: 1.8;
    }

    /* Image Side */
    .about-image-box {
        border: 3px solid #f5c518;
        border-radius: 12px;
        overflow: hidden;
        background: #e8e8e8;
    }

    .about-image-box img {
        width: 100%;
        height: auto;
        display: block;
        min-height: 350px;
        object-fit: cover;
    }

    /* Responsive */
    @media (max-width: 992px) {
        .about-row {
            flex-direction: column;
            gap: 30px;
        }

        .about-content-wrapper {
            padding-right: 0;
        }

        .about-col-image {
            order: -1;
        }
    }

    @media (max-width: 768px) {
        .about-section {
            padding: 50px 20px;
        }

        .about-heading {
            font-size: 28px;
        }
    }
/* about css end  */
















/* Service Section Styles */
.services-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.service-heading{
  font-size: 25px;
}
.section-header h6 {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

/* Service Card Wrapper */
.service-card-wrapper {
    /* opacity: 0; */
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.service-card-wrapper.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card-wrapper a {
    text-decoration: none;
    display: block;
}

/* Service Card */
.service-card {
    position: relative;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* Image Wrapper */
.service-img-wrapper {
    position: relative;
    overflow: hidden;
    /* max-height: 320px; */
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img-wrapper img {
    transform: scale(1.1);
}

/* Transparent Overlay on Hover */
.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-icon {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    padding: 0 20px;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1);
}

/* Curved Red Bottom Section */
/* .service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: #C41E3A;
    border-radius: 0 0 50% 50% / 0 0 30px 30px;
    z-index: 1;
} */

/* Service Content (Title on Red Background) */
.service-content {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 2;
    padding: 0 15px;
}

.service-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Yellow Badge/Tag */
.service-badge {
    display: inline-block;
    background: #FCDA41;
    color: #000;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 12px;
    text-decoration: none;
}

/* View All Services Button */
.view-all-wrapper {
    text-align: center;
    margin-top: 40px;
}

.btn-view-all {
   
    bottom: 25px;
    left: 20px;
    background-color: #FFD416;;
    color: #000000;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    
}

.btn-view-all:hover {
    
    
    color: #2B3990;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(253, 216, 53, 0.3);
}

/* No Services Message */
.no-services {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 10px;
    color: #666;
    font-size: 18px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .service-img-wrapper {
        height: 280px;
    }

    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 28px;
    }

    .service-img-wrapper {
        height: 260px;
    }

    .service-card::after {
        height: 100px;
    }

    .service-content {
        bottom: 30px;
    }

    .service-content h3 {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-img-wrapper {
        height: 300px;
    }

    .section-title {
        font-size: 26px;
    }

    .service-card::after {
        height: 110px;
    }

    .service-content {
        bottom: 35px;
    }

    .service-content h3 {
        font-size: 17px;
        margin-bottom: 8px;
    }

    .service-badge {
        font-size: 10px;
        padding: 3px 10px;
    }

    .btn-view-all {
        padding: 12px 35px;
        font-size: 14px;
    }
}

/* Animation for cards on scroll */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card-wrapper.visible:nth-child(1) { animation-delay: 0.1s; }
.service-card-wrapper.visible:nth-child(2) { animation-delay: 0.2s; }
.service-card-wrapper.visible:nth-child(3) { animation-delay: 0.3s; }
.service-card-wrapper.visible:nth-child(4) { animation-delay: 0.4s; }
.service-card-wrapper.visible:nth-child(5) { animation-delay: 0.5s; }
.service-card-wrapper.visible:nth-child(6) { animation-delay: 0.6s; }















/* Fun Facts Section */

/* Stats Section */
    .stats-section {
        background-image: url('assets/img/bg/bg-4.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 51px 20px;
        width: 100%;
        height: 80%;
    }

    .stats-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: space-around;
        align-items: center;
        gap: 30px;
    }

    .stat-item {
        text-align: center;
        color: #fff;
        opacity: 0;
        transform: translateY(40px);
    }

    .stat-item.animate-slide-up {
        animation: slideUpStats 0.8s ease forwards;
    }

    .stat-item.delay-1 {
        animation-delay: 0.3s;
    }

    .stat-item.delay-2 {
        animation-delay: 0.6s;
    }

    .stat-icon {
        margin-bottom: 15px;
        display: flex;
        justify-content: center;
    }

    .stat-number {
        font-size: 56px;
        font-weight: 700;
        margin-bottom: 8px;
        color: #fff;
    }

    .stat-label {
        font-size: 18px;
        font-weight: 400;
        color: #fff;
    }

    @keyframes slideUpStats {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Responsive */
    @media (max-width: 768px) {
        .stats-container {
            flex-direction: column;
            gap: 50px;
        }

        .stat-number {
            font-size: 42px;
        }

        .stats-section {
            padding: 60px 20px;
        }
    }














/* ============================================
   TESTIMONIALS SECTION STYLES
   ============================================ */






/* Offers Section Styles */
.offers-section {
    padding: 80px 0;
    background-color: #fff;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 15px 0;
}

/* Title Bar - Gray line with yellow in middle */
.title-bar-wrapper {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto 20px;
    height: 2px;
}

.title-bar-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #e0e0e0;
}

.title-bar-yellow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #FFD700;
}

.section-description {
    font-size: 15px;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Slider Wrapper */
.offers-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
}

.offers-slider {
    flex: 1;
    overflow: hidden;
    padding: 10px 5px;
}

.offers-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Offer Card */
.offer-card {
    flex: 0 0 calc(33.333% - 17px);
    min-width: 0;
}

.offer-card a {
    display: block;
    text-decoration: none;
}

.offer-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: #fff;
}

.offer-card:hover .offer-image-wrapper {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.offer-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.offer-card:hover .offer-img {
    transform: scale(1.03);
}

.offer-name-box{
        font-size: 18px;
    color: black;
    padding: 10px;
    font-weight: 600;
}

/* Arrow Buttons */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #FFD700;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #FFD700;
}

.slider-arrow svg {
    transition: all 0.3s ease;
    stroke: currentColor;
}
.offers-arrow--prev {
    left: -10px;
    
}

.offers-arrow--next {
    right: -10px;
}
/* Hover - Yellow filled circle */
.slider-arrow:hover {
    background-color: #FFD700;
    border-color: #FFD700;
    color: #fff;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.slider-arrow:active {
    transform: scale(0.92);
}

/* Disabled State */
.slider-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    border-color: #ccc;
    color: #ccc;
}

.slider-arrow:disabled:hover {
    background-color: transparent;
    color: #ccc;
    box-shadow: none;
}

/* Responsive */
@media (max-width: 992px) {
    .offer-card {
        flex: 0 0 calc(50% - 13px);
    }
    
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 576px) {
    .offer-card {
        flex: 0 0 100%;
    }

    .section-title {
        font-size: 28px;
    }

    .slider-arrow {
        width: 42px;
        height: 42px;
    }

    .offers-slider-wrapper {
        gap: 15px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .offers-track {
        gap: 20px;
    }
}



/* cta section css */
.cta-appointment-section {
    position: relative;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('YOUR_BACKGROUND_IMAGE_PATH.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    overflow: hidden;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-content {
    flex: 1;
    max-width: 650px;
}

.cta-availability {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 20px 0;
    line-height: 1.4;
    text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.815);
}

.cta-heading {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.815);
    margin: 0 0 35px 0;
}

.cta-button {
    display: inline-block;
    background-color: #3949ab;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background-color: #303f9f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(57, 73, 171, 0.4);
}

.cta-phone-icon {
    flex-shrink: 0;
}

.phone-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: transparent;
}

.phone-icon-wrapper:hover,
.phone-icon-wrapper.active {
    background-color: #3949ab;
    border-color: #3949ab;
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(57, 73, 171, 0.5);
}

.phone-icon-wrapper svg {
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 992px) {
    .cta-container {
        flex-direction: column;
        text-align: center;
    }

    .cta-content {
        max-width: 100%;
    }

    .cta-heading {
        font-size: 36px;
    }

    .cta-phone-icon {
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .cta-appointment-section {
        padding: 60px 0;
    }

    .cta-heading {
        font-size: 28px;
    }

    .cta-availability {
        font-size: 12px;
    }

    .cta-button {
        padding: 14px 28px;
        font-size: 14px;
    }

    .phone-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .phone-icon-wrapper svg {
        width: 30px;
        height: 30px;
    }
}










/* Testimonials Css */
/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: 80px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

/* ---------- Left Side ---------- */
.testimonials-left {
    flex: 0 0 340px;
    position: sticky;
    top: 40px;
}

.testimonials-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.label-icon {
    display: flex;
    align-items: center;
}

.label-text {
    font-size: 16px;
    font-weight: 700;
    color: #FFD700;
    text-transform: capitalize;
}

.testimonials-title {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0 0 20px 0;
}

.testimonials-description {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0 0 40px 0;
}

/* Arrow Buttons Together */
.testimonials-arrows {
    display: flex;
    gap: 10px;
}

.arrow-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #999;
    outline: none;
}

.arrow-btn svg {
    transition: all 0.3s ease;
    stroke: currentColor;
}

.arrow-btn:hover {
    background-color: #FFD700;
    border-color: #FFD700;
    color: #ffffff;
}

.arrow-btn:active {
    transform: scale(0.93);
}

.arrow-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.arrow-btn:disabled:hover {
    background-color: transparent;
    border-color: #e0e0e0;
    color: #999;
}

/* ---------- Right Side - Slider Wrapper ---------- */
.testimonials-right {
    flex: 1;
    overflow: hidden;
}

.testimonials-slider-wrapper {
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
}

/* ---------- Testimonial Card ---------- */
.testimonial-card {
    flex: 0 0 calc(50% - 13px);
    min-width: 0;
}

.testimonial-inner {
    position: relative;
    background-color: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 35px 30px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.testimonial-inner:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

/* Quote Icon */
.quote-icon {
    margin-bottom: 15px;
    opacity: 0.9;
}

/* Review Text */
.testimonial-text {
    font-size: 14.5px;
    color: #444;
    line-height: 1.8;
    margin: 0 0 25px 0;
    flex-grow: 1;
}

/* Divider - Yellow from start, gray rest */
.testimonial-divider {
    display: flex;
    width: 100%;
    height: 3px;
    margin-bottom: 25px;
    border-radius: 2px;
    overflow: hidden;
}

.divider-yellow {
    width: 50px;
    background-color: #FFD700;
    flex-shrink: 0;
}

.divider-gray {
    flex: 1;
    background-color: #e8e8e8;
}

/* Author */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f5f5f5;
}

.author-name {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

/* Background "99" Number */
.testimonial-bg-number {
    position: absolute;
    bottom: -10px;
    right: 15px;
    font-size: 120px;
    font-weight: 900;
    color: #f5f5f5;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    font-family: Georgia, serif;
    z-index: 0;
}

/* Ensure content stays above bg number */
.testimonial-inner > *:not(.testimonial-bg-number) {
    position: relative;
    z-index: 1;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
    .testimonials-container {
        flex-direction: column;
        gap: 40px;
    }

    .testimonials-left {
        flex: none;
        width: 100%;
        position: static;
    }

    .testimonial-card {
        flex: 0 0 100%;
    }

    .testimonials-title {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .testimonials-section {
        padding: 50px 0;
    }

    .testimonials-title {
        font-size: 26px;
    }

    .testimonial-inner {
        padding: 25px 20px 20px;
    }

    .testimonial-bg-number {
        font-size: 90px;
    }

    .arrow-btn {
        width: 40px;
        height: 40px;
    }
}


/* ============================================
   BLOGS SECTION FULL CSS
   ============================================ */
/* ============================================
   LATEST BLOGS SECTION
   ============================================ */
.latest-blogs-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- Header ---------- */
.blogs-header {
    text-align: center;
    margin-bottom: 50px;
}

.blogs-title {
    font-size: 40px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.blogs-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ---------- Blogs Grid ---------- */
.blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ---------- Blog Card ---------- */
.blog-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

/* ---------- Image Wrapper ---------- */
.blog-image-wrapper {
    position: relative;
    overflow: hidden;
    /* height: 280px; */
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* ONLY Image Zoom on Card Hover */
.blog-card:hover .blog-img {
    transform: scale(1.1);
}

/* ---------- Blog Content ---------- */
.blog-content {
        padding: 11px 12px 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.blog-description {
    font-size: 14.5px;
    color: #666;
    line-height: 1.7;
    margin: 0 0 25px 0;
    flex-grow: 1;
}

/* ---------- Read More Button ---------- */
.blog-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: transparent;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    align-self: flex-start;
}

.blog-button .arrow {
    transition: transform 0.3s ease;
}

/* Button Hover - Blue background with Yellow text */
.blog-button:hover {
    background-color: #1e3a8a;
    border-color: #1e3a8a;
    color: #ffffff;
    transform: translateX(5px);
}

.blog-button:hover .arrow {
    transform: translateX(5px);
}

/* No Blogs Message */
.no-blogs-message {
    text-align: center;
    font-size: 16px;
    color: #666;
    grid-column: 1 / -1;
    padding: 40px;
}

/* ---------- Responsive Design ---------- */
@media (max-width: 992px) {
    .blogs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blogs-title {
        font-size: 34px;
    }
}

@media (max-width: 576px) {
    .latest-blogs-section {
        padding: 50px 0;
    }

    .blogs-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .blogs-title {
        font-size: 28px;
    }

    .blogs-subtitle {
        font-size: 14px;
    }

    .blog-image-wrapper {
        height: 240px;
    }

    .blog-content {
        padding: 25px 20px 20px;
    }

    .blog-title {
        font-size: 20px;
    }

    .blog-button {
        padding: 10px 20px;
        font-size: 13px;
    }
}