* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}









/* ========================================
   HERO SLIDER STYLES
   ======================================== */

.hero-slider {
    position: relative;
    width: 100%;
    height: calc(100vh - 155px);
    min-height: 600px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Slider Items */
.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s;

}

.slider-item.active {
    opacity: 1;
    visibility: visible;
    animation: slideInFromRight 1s ease-out;
}

/* Image Slide Left Animation */
@keyframes slideInFromRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Slider Content - Slide Down Animation */
.slider-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    padding: 0 20px;
    height: 100%;
    color: #fff;
    opacity: 0;
    /* transform: translateY(-80px); */
    transition: all 0.8s ease-out 0.3s;
    text-align: left;
    margin:0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slider-item.active .slider-content {
    opacity: 1;
    transform: translateY(0);
    text-align: left;
}

.slide-subtitle {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 10px;
    text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
}

.slide-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
}

.slide-description {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    max-width: 600px;
}

/* Buttons */
.btn-group {
    display: flex;
    gap: 15px;
    /* justify-content: center; */
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-transform: none;
    border-radius: 50px;
    max-width: 190px;
}

.btn-white {
    background-color: #fff;
    color: #333;
}

.btn-white:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-purple {
    background-color: #9b309b;
    color: #fff;
}

.btn-purple:hover {
    background-color: #7a267a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(155, 48, 155, 0.4);
}

/* Right Side Dots Navigation */
.slider-dots {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot:hover {
    background-color: #64E923;
}

.dot.active {
    background-color: #fff;
    transform: scale(1.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .slide-title {
        font-size: 38px;
    }
    
    .slide-description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: calc(100vh - 74px);
        min-height: 500px;
    }
    
    .slide-subtitle {
        font-size: 20px;
    }
    
    .slide-title {
        font-size: 32px;
    }
    
    .slide-description {
        font-size: 15px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .slider-dots {
        right: 20px;
        gap: 10px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 26px;
    }
    
    .slide-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .btn-group {
        flex-direction: column;
       
    }
    
    .btn {
        width: 100%;
        max-width: 200px;
    }
}













/* about sction */

/* ========================================
   ABOUT SECTION NEW STYLES
   ======================================== */

.about-section-new {
    padding: 80px 0;
    background-color: #fff;
}

.about-container-new {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-wrapper-new {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 60px;
    align-items: center;
}

/* Left Side */
.about-left-new {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-text-content {
    margin-bottom: 20px;
}

.about-heading-new {
    font-size: 30px;
    font-weight: 700;
    color: #000;
    margin: 0 0 20px 0;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-description-new {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

/* Services Circles */
.services-circles-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-circle-item {
    text-align: center;
}

.circle-image-box {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 3px solid #f0f0f0;
    background-color: #fff;
}

.circle-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.circle-label {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.circle-label .highlight {
    color: #9b309b;
}

/* Right Side - Sofa Image */
.about-right-new {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sofa-image-box {
    width: 100%;
    max-width: 450px;
    position: relative;
}

.sofa-image-box img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-wrapper-new {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-right-new {
        order: -1;
    }
    
    .sofa-image-box {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-section-new {
        padding: 60px 0;
    }
    
    .about-heading-new {
        font-size: 26px;
    }
    
    .about-description-new {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .services-circles-new {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .circle-image-box {
        width: 120px;
        height: 120px;
    }
    
    .sofa-image-box {
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .about-container-new {
        padding: 0 15px;
    }
    
    .about-heading-new {
        font-size: 22px;
    }
    
    .about-description-new {
        font-size: 14px;
    }
    
    .circle-image-box {
        width: 100px;
        height: 100px;
    }
    
    .circle-label {
        font-size: 13px;
    }
    
    .sofa-image-box {
        max-width: 300px;
    }
}


/* ========================================
   CALL TO ACTION SECTION - CORRECTED
   ======================================== */

.cta-section {
    position: relative;
    padding: 80px 0;
    background: url('{{ asset("img/home/counter-bg") }}') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.cta-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-left {
    flex: 1;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 15px 0;
    line-height: 1.3;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.cta-subtitle {
    font-size: 18px;
    color: #fff;
    margin: 0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.cta-right {
    flex-shrink: 0;
}

.btn-call-now {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: #65E923; /* Purple color */
    color: #000000;
    text-decoration: none;              
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(155, 48, 155, 0.4);
    white-space: nowrap;
}

.btn-call-now:hover {
    color: #ffffff;
    background: #962D91; /* Green on hover */
    box-shadow: 0 5px 15px rgba(119, 211, 63, 0.4);
    transform: translateY(-3px);
}

.btn-call-now svg {
    transition: transform 0.3s ease;
}

.btn-call-now:hover svg {
    transform: rotate(-15deg);
}

/* Responsive Design */
@media (max-width: 992px) {
    .cta-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .cta-title {
        font-size: 36px;
    }
    
    .cta-subtitle {
        font-size: 17px;
    }
    
    .cta-right {
        width: 100%;
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
        background-attachment: scroll;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-subtitle {
        font-size: 16px;
    }
    
    .btn-call-now {
        padding: 14px 30px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .cta-container {
        padding: 0 15px;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .cta-subtitle {
        font-size: 15px;
    }
    
    .btn-call-now {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}










/* ========================================
   SERVICE SECTION - UPDATED STYLES
   ======================================== */

/* Service section */
.services-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: black;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

/* Service Card - Static, No Animation */


.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    /* Removed hover transform */
}

/* Image Wrapper - Increased Height */
.service-img-wrapper {
    position: relative;
    overflow: hidden;
    /* height: 380px; Increased from 280px */
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Removed zoom effect */
    display: block;
}

/* Purple Banner - Slides from LEFT to RIGHT on Hover */
.service-overlay {
    position: absolute;
    top: 20px; /* Gap from top */
    left: 0;
    width: 70%; /* Not full width - slightly more than half */
    height: 50px;
    background: #9b309b; /* Purple color */
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-100%); /* Hidden to the left */
    transition: transform 0.3s ease;
    z-index: 2;
    border-radius: 0 5px 5px 0;
}
/* Show banner on hover */
.service-card:hover .service-overlay {
    transform: translateX(0); /* Slide in from right */
}









/* Green Parrot Banner - Hidden by default */
.service-overlay-parrot {
    position: absolute;
    top: 20px;
    left: 0;
    width: 70%;
    height: 60px;
    background: #77d33f; /* Parrot green color */
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 3;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

/* Show green banner when purple is clicked */
.service-card.parrot-show .service-overlay-parrot {
    transform: translateX(0);
}







.service-icon {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    padding: 0 20px;
}

/* Service Content */
.service-content {
    padding: 25px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--blue-color);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* View All Button */
.view-all-wrapper {
    text-align: center;
    margin-top: 30px;
}

.btn-view-all {
    display: inline-block;
    padding: 15px 30px;
    background: #65E923;
    color: rgb(0, 0, 0);
    text-decoration: none;
    border-radius: 27px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    color: #ffffff;
    background-color: #962D91;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(119, 211, 63, 0.3);
}

/* No Services */
.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);
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .service-img-wrapper {
        /* height: 320px; Adjusted for mobile */
    }
    
    .service-overlay {
        height: 50px;
    }
    
    .service-icon {
        font-size: 16px;
        padding: 0 15px;
    }
}







/* ========================================
   WHY CHOOSE US SECTION
   ======================================== */

.why-choose-us-section {
    padding: 80px 0;
    background-color: #fff;
    padding-left: 10px;
    padding-right: 10px;

}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-choose-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}

/* Left Side */
.why-choose-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.why-choose-title {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    margin: 0;
    line-height: 1.2;
}

.why-choose-description {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 20px;
}

.feature-box {
    display: flex;
    gap: 15px;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    transition: all 0.3s ease;
}

.feature-box:hover {
    box-shadow: 0 5px 20px rgba(155, 48, 155, 0.1);
    border-color: #64E923;
}

.feature-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-content h3 {
    font-size: 15px;
    font-weight: 700;
    color: #000;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Right Side - Image */
.why-choose-right {
    position: sticky;
    top: 100px;
}

.why-choose-image-box {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-choose-image-box img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .why-choose-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    
    
    .why-choose-title {
        font-size: 36px;
    }
}


@media (max-width: 1024px) {
    
    
    .why-choose-right {
       display: none;
    }
    
   
}





@media (max-width: 768px) {
    .why-choose-us-section {
        padding: 60px 0;
    }
    
    .why-choose-title {
        font-size: 32px;
    }
    
    .why-choose-description {
        font-size: 15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-box {
        padding: 20px;
    }
    
    .why-choose-image-box {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .why-choose-container {
        padding: 0 15px;
    }
    
    .why-choose-title {
        font-size: 28px;
    }
    
    .why-choose-description {
        font-size: 14px;
    }
    
    .feature-icon svg {
        width: 35px;
        height: 35px;
    }
    
    .feature-content h3 {
        font-size: 14px;
    }
    
    .feature-content p {
        font-size: 13px;
    }
}


/* ========================================
   FUN FACTS SECTION
   ======================================== */

.fun-facts-section {
    position: relative;
    padding: 74px 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.fun-facts-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.fun-facts-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.fun-facts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.fun-fact-item {
    padding: 30px 20px;
    color: #fff;
    transition: transform 0.3s ease;
}

.fun-fact-item:hover {
    transform: translateY(-10px);
}

.fun-fact-icon {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.fun-fact-icon svg {
    stroke: #fff;
}

.fun-fact-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.fun-fact-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 992px) {
    .fun-facts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .fun-fact-number {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .fun-facts-section {
        padding: 80px 0;
    }
    
    .fun-facts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .fun-fact-number {
        font-size: 36px;
    }
    
    .fun-fact-label {
        font-size: 13px;
    }
    
    .fun-fact-icon svg {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .fun-facts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .fun-fact-item {
        padding: 20px 15px;
    }
    
    .fun-fact-number {
        font-size: 32px;
    }
    
    .fun-fact-icon svg {
        width: 35px;
        height: 35px;
    }
}















/* Fun Facts Section */
/* ========================================
   FUN FACTS SECTION
   ======================================== */

.offers-section {
    padding: 60px 0;
    background: #fff;
}

.offers-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    
}

.offers-slider {
    flex: 1;
    overflow: hidden;
}

.offers-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.offer-card {
    flex: 0 0 calc(25% - 15px);
    position: relative;
}

.offer-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.offer-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

/* Overlay Styles */
.offer-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;
    visibility: hidden;
    transition: all 0.3s ease;
}

.offer-image-wrapper:hover .offer-overlay {
    opacity: 1;
    visibility: visible;
}

/* Offer Name Box */
.offer-name-box {
    background: transparent;
    border: 3px solid #fff;
    color: #fff;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 2;
}

.offer-name-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #8B2D9B;
    transition: width 0.4s ease;
    z-index: -1;
}

.offer-name-box.filled::before {
    width: 100%;
}

.offer-name-box:hover {
    transform: scale(1.05);
}

/* Arrow Buttons */
.slider-arrow {
    background: #8B2D9B;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    color: #fff;
    z-index: 10;
}

.slider-arrow:hover {
    background: #6b1f7a;
    transform: scale(1.1);
}

.slider-arrow svg {
    width: 20px;
    height: 20px;
}

.offers-arrow--prev {
    margin-right: 10px;
}

.offers-arrow--next {
    margin-left: 10px;
}

/* Responsive */
@media (max-width: 1200px) {
    .offer-card {
        flex: 0 0 calc(33.333% - 13.33px);
    }
    
}

@media (min-width: 1200px){
     .slider-arrow{
        display: none;
    }
}



@media (max-width: 768px) {
    .offer-card {
        flex: 0 0 calc(50% - 10px);
    }
    
    .offers-slider-wrapper {
        gap: 10px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .offer-card {
        flex: 0 0 100%;
    }
    
    .offer-name-box {
        padding: 12px 20px;
        font-size: 14px;
    }
}












/* ============================================
   TESTIMONIALS SECTION STYLES
   ============================================ */



.testimonial-section {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

/* Yahan apni background image ka path lagayen */
.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('your-background-image.jpg'); 
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 2;
}

.testimonial-container {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-slide {
    position: absolute;
    width: 700px;
    max-width: 90%;
    text-align: center;
    color: white;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s;
    padding: 20px;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
}

.user-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid white;
    margin: 0 auto 20px;
    overflow: hidden;
    background-color: #ddd; /* Fallback color */
}

.user-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.user-name {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.area-name {
    font-size: 16px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.stars {
    color: #76c043; /* Green stars like in your image */
    font-size: 24px;
    letter-spacing: 2px;
}

/* Dots Navigation */
.dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 10px;
}

.dot {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: #65E923; /* Active dot color */
}

.dot:hover{
    color: #65E923;
}




/* ============================================
   BLOGS SECTION FULL CSS
   ============================================ */

.blogs-faq-wrapper {
  padding: 80px 0;
  background: #fff;
}

.container-custom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.two-columns-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* Section Headers */
.section-header-custom {
  margin-bottom: 30px;
}

.section-title-custom {
  font-size: 28px;
  font-weight: 700;
  color: black;
  margin-bottom: 12px;
  text-align: center;
  margin: 0 auto;
}

.section-subtitle-custom {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* Blogs Grid (Flexbox) */
.blogs-grid-custom {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card-custom {
  flex: 1;
  min-width: 300px;
  max-width: 380px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.blog-card-custom:hover {
  transform: translateY(-5px);
}

.blog-link-custom {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.blog-image-wrapper-custom {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.blog-image-wrapper-custom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-badge-custom {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #1a1a2e;
  color: #fff;
  padding: 5px 15px;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 4px;
}

.blog-content-custom {
  background: #fff;
  padding: 25px 20px 20px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-description-custom {
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  margin: 0;
  font-weight: 500;
  transition: color 0.3s ease;
}

.blog-underline-custom {
  width: 40px;
  height: 2px;
  background: #ccc;
  margin-top: 15px;
  transition: background 0.3s ease;
}

/* Hover Effects */
.blog-card-custom:hover .blog-description-custom {
  color:  #9b3d9b;
}

.blog-card-custom:hover .blog-underline-custom {
  background:  #9b3d9b;
}

/* ============================================
   READ ARTICLE BUTTON STYLES
   ============================================ */

.blog-read-more {
  margin-top: 20px;
}

.read-article-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 28px;
    background:#5BE31A;
    color:#000000;
    font-size:14px;
    font-weight:600;
    text-decoration:none;
    border-radius:30px;
    transition:all .3s ease;
    position:relative;
}



.blog-card-custom:hover .read-article-btn {
  background-color:  #9b3d9b;
  color: #ffffff;

}

.blog-card-custom:hover .read-article-btn::after {
  transform: translateY(-50%) translateX(5px);
}

/* ============================================
   RESPONSIVE DESIGN (UPDATED & FIXED)
   ============================================ */

/* Tablet View (769px - 1024px) - 2 Columns */
@media (max-width: 1024px) and (min-width: 769px) {
  .blogs-faq-wrapper {
    padding: 70px 0;
  }

  .two-columns-row {
    gap: 40px;
  }

  .blogs-grid-custom {
    gap: 25px;
  }

  .blog-card-custom {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
    min-width: 280px;
  }

  .blog-image-wrapper-custom {
    height: 220px;
  }

  .blog-description-custom {
    font-size: 15px;
  }
}

/* Mobile View (768px and below) - 1 Column */
@media (max-width: 768px) {
  .blogs-faq-wrapper {
    padding: 60px 0;
  }

  .two-columns-row {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .section-title-custom {
    font-size: 24px;
  }

  .blogs-grid-custom {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .blog-card-custom {
    flex: 0 0 100%;
    max-width: 100%;
    min-width: 100%;
    width: 100%;
  }

  .blog-image-wrapper-custom {
    height: 250px;
  }

  .blog-description-custom {
    font-size: 15px;
  }

  .faq-question-custom {
    font-size: 15px;
    padding: 18px 20px;
  }

  .faq-answer-content-custom {
    padding: 0 20px 18px 38px;
    font-size: 13px;
  }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
  .blogs-faq-wrapper {
    padding: 50px 0;
  }

  .section-title-custom {
    font-size: 22px;
  }

  .section-subtitle-custom {
    font-size: 14px;
  }

  .blog-image-wrapper-custom {
    height: 200px;
  }

  .blog-content-custom {
    padding: 20px 15px 15px;
  }

  .blog-description-custom {
    font-size: 14px;
  }

  .blog-title-bar-custom h3 {
    font-size: 14px;
  }

  .faq-question-custom {
    font-size: 14px;
    padding: 15px 18px;
  }

  .faq-answer-content-custom {
    padding: 0 18px 15px 35px;
  }
}