* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}









/* ========================================
   HERO SLIDER STYLES
   ======================================== */
/* ===== Hero Slider ===== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.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, visibility 1s ease;
    display: flex;
    align-items: center;
    /* justify-content: center; */
}

.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; */
    z-index: 2;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
    text-align: left;
    max-width: 1200px;
    margin: 0px auto;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-title {
    font-size: 56px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
}

.slide-description {
    font-size: 18px;
    color: rgba(255, 255, 255);
    margin: 0 0 40px 0;
    line-height: 1.6;
    /* max-width: 650px;
    margin-left: 1px;
    margin-right: auto; */
}

.btn-slider {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background-color: #3974EC;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 8px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-slider:hover {
    background:transparent;
    color: #fff;
    border: 2px solid #3974EC;
}

.btn-slider svg {
    transition: transform 0.3s ease;
}

.btn-slider:hover svg {
    transform: translateX(5px);
}

/* ===== Slider Arrows ===== */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    padding: 0;
    /* backdrop-filter: blur(1px); */
}

.slider-arrow:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow svg {
    stroke: #fff;
}

.slider-arrow.prev {
    left: 30px;
}

.slider-arrow.next {
    right: 30px;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .hero-slider {
        height: 550px;
    }
    .slider-item{
        align-items: start;
        padding-top: 50px;
    }
    .slide-title {
        font-size: 42px;
    }
    
    .slide-description {
        font-size: 16px;
    }
    
    .slider-arrow {
        width: 45px;
        height: 45px;
    }
    
    .slider-arrow.prev {
        left: 15px;
        top: 75%;
    }
    
    .slider-arrow.next {
        right: 15px;
        top: 75%;
    }
}

@media (max-width: 576px) {
    /* .hero-slider {
        height: 500px;
    } */
    
    .slide-title {
        font-size: 32px;
    }
    
    .slide-description {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .btn-slider {
        padding: 14px 28px;
        font-size: 14px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
}



/* ===== Features Overlap Section ===== */
/* ===== Features Overlap Section ===== */
.features-overlap-section {
       margin-top: -80px;
    position: relative;
    z-index: 10;
    padding: 0 20px 80px;
    background-color: #f5f5f5;
}

.features-overlap-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.features-grid {
    display: flex;
    
    gap: 60px;
    margin-top: -80px;
        flex-wrap: wrap;
}

/* ===== Feature Card ===== */
.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
        margin-top: -35px;
           width: 100%;
    flex: 1;
    /* flex-wrap: wrap; */
    min-width: 250px;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* ===== Feature Icon ===== */
.feature-icon {
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 50px;
    height: 50px;
}

/* ===== Feature Title ===== */
.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e3a5f;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

/* ===== Feature Description ===== */
.feature-description {
    font-size: 14px;
    line-height: 1.7;
    color: #444;
    margin: 0;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        margin-top: -60px;
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
        margin-top: -50px;
        gap: 20px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-title {
        font-size: 18px;
    }
}





/* about sction */

/* ========================================
   ABOUT SECTION NEW STYLES
   ======================================== */
/* ===== About Section ===== */
.about-section-new {
    padding: 80px 20px;
    background-color: #fff;
}

.about-container-new {
    max-width: 1200px;
    margin: 0 auto;
}

.about-wrapper-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* ===== Left Side - Text Content ===== */
.about-left-new {
    padding-right: 20px;
}

.about-heading-new {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 25px 0;
    line-height: 1.3;
}

.about-description-new {
    font-size: 15px;
    line-height: 1.8;
    color: #000;
    margin: 0 0 20px 0;
}

.about-description-new:last-child {
    margin-bottom: 0;
}

/* ===== Right Side - Single Image ===== */
.about-right-new {
    width: 100%;
}

.about-image-box {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-image-box:hover {
    transform: translateY(-5px);
}

.about-image-box img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .about-wrapper-new {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-left-new {
        padding-right: 0;
    }
    
    
    .about-right-new {
        order: -1; 
    }
}

@media (max-width: 576px) {
    .about-section-new {
        padding: 40px 15px;
    }
    
    .about-heading-new {
        font-size: 26px;
    }
    
    .about-description-new {
        font-size: 14px;
    }
}





/* ========================================
   CALL TO ACTION SECTION - CORRECTED
   ======================================== */










/* ========================================
   SERVICE SECTION - UPDATED STYLES
   ======================================== */
/* ===== Services Section ===== */
.services-section {
    padding: 40px 15px;
    background-color: #fff;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== Section Header ===== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

/* ===== Services Grid ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* ===== Service Card Wrapper ===== */
.service-card-wrapper {
    perspective: 1000px;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-wrapper:hover .service-card {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* ===== Image Wrapper ===== */
.service-img-wrapper {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
    transition: transform 0.5s ease;
}

.service-card-wrapper:hover .service-img-wrapper img {
    transform: scale(1.1);
}

/* ===== Service Overlay ===== */
.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 2;
}

.service-card-wrapper:hover .service-overlay {
    opacity: 1;
    visibility: visible;
}

/* ===== Dark Side Panels (Left & Right) ===== */
.service-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    transform: translateX(-100%);
    transition: transform 0.4s ease 0.1s;
}

.service-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    transform: translateX(100%);
    transition: transform 0.4s ease 0.1s;
}

.service-card-wrapper:hover .service-overlay::before {
    transform: translateX(0);
}

.service-card-wrapper:hover .service-overlay::after {
    transform: translateX(0);
}

/* ===== Blue Diamond Box ===== */
.service-icon {
    position: relative;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.95) 0%, rgba(37, 99, 235, 0.95) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: rotate(45deg) scale(0);
    transition: transform 0.5s ease 0.2s;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.5);
    z-index: 3;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.service-icon span {
    display: inline-block;
    transform: rotate(-45deg);
    transform-origin: center;
    width: 100%;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}


.service-card-wrapper:hover .service-icon {
    transform: rotate(45deg) scale(1);
}

/* ===== Service Text Inside Diamond ===== */
.service-icon {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    padding: 20px;
    line-height: 1.3;
    letter-spacing: 1px;
}
 .service-icon {
    transform: rotate(46deg) scale(1);
}
/* ===== Arrow Icon ===== */


@keyframes arrowPulse {
    0%, 100% {
        transform: translateX(0);
        opacity: 1;
    }
    50% {
        transform: translateX(5px);
        opacity: 0.7;
    }
}

/* ===== View All Button ===== */
.view-all-wrapper {
    text-align: center;
    margin-top: 40px;
}

.btn-view-all {
    display: inline-block;
    padding: 15px 40px;
    background-color: #74DF23;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background-color: white;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
    border: 2px solid #74DF23;

}

/* ===== No Services ===== */
.no-services {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-size: 16px;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-icon {
        width: 150px;
        height: 150px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .service-img-wrapper {
        height: 280px;
    }
    
    .service-icon {
        width: 140px;
        height: 140px;
        font-size: 15px;
    }
}





/* ========================================
   WHY CHOOSE US SECTION
   ======================================== */
/* ===== CTA Section ===== */
.cta-section {
    padding: 60px 20px;
    background-color: #3974EC;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

/* ===== Left Content ===== */
.cta-content {
    flex: 1;
}

.cta-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color:  #FFFFFF;

    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.cta-description {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    max-width: 500px;
}

/* ===== Right Button ===== */
.cta-action {
    flex-shrink: 0;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background-color: #74DF23;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-cta:hover {
    background: transparent;
    color: #000000;
    border: 2px solid #74DF23;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(123, 150, 48, 0.4);
}

.btn-cta svg {
    transition: transform 0.3s ease;
}

.btn-cta:hover svg {
    transform: translateX(5px);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .cta-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .cta-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .cta-description {
        max-width: 100%;
    }
    
    .cta-title {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 40px 15px;
    }
    
    .cta-title {
        font-size: 22px;
    }
    
    .cta-description {
        font-size: 14px;
    }
    
    .btn-cta {
        padding: 12px 24px;
        font-size: 14px;
    }
}













/* Fun Facts Section */
/* ========================================
   FUN FACTS SECTION
   ======================================== */
/* ===== Offers Section ===== */
/* ===== Offers Section ===== */
.offers-section-new {
    padding: 80px 20px;
    background-color: #f0f4ff;
    overflow: hidden; /* Prevent horizontal overflow */
}

.offers-container-new {
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== Section Header ===== */
.section-header-new {
    text-align: center;
    margin-bottom: 50px;
}

.section-title-new {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

/* ===== Slider Wrapper ===== */
.offers-slider-wrapper-new {
    display: flex;
    align-items: center;
    /* gap: 15px; */
    position: relative;
    padding: 0 3px;
}

.offers-slider-new {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.offers-track-new {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    width: 100%;
}

/* ===== Offer Slide Card ===== */
.offer-slide-card {
    min-width: calc(33.333% - 14px); /* 3 cards with gap */
    flex-shrink: 0;
    width: calc(33.333% - 14px);
}

.offer-slide-link {
    text-decoration: none;
    display: block;
    width: 100%;
}

.offer-slide-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    transition: transform 0.3s ease;
    object-fit: cover;
}

.offer-slide-card:hover .offer-slide-img {
    transform: scale(1.02);
}

/* ===== Navigation Arrows ===== */
.offer-nav-btn {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background-color: #74DF23;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
    z-index: 10;
    flex-shrink: 0;
}

.offer-nav-btn svg {
    stroke: #fff;
    width: 18px;
    height: 18px;
}

.offer-nav-btn:hover {
    background-color: #3974EC;
    transform: scale(1.1);
}

/* ===== No Offers ===== */
.no-offers-msg {
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 16px;
    width: 100%;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .offer-slide-card {
        min-width: calc(50% - 10px);
        width: calc(50% - 10px);
    }
}

@media (max-width: 576px) {
    .offers-section-new {
        padding: 60px 15px;
    }
    
    .section-title-new {
        font-size: 32px;
    }
    
    .offer-slide-card {
        min-width: 100%;
        width: 100%;
    }
    
    .offer-nav-btn {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    
    .offers-slider-wrapper-new {
        /* gap: 10px; */
    }
}






/* ============================================
   TESTIMONIALS SECTION STYLES
   ============================================ */

/* ===== Testimonials Section ===== */
.testimonials-section-new {
    padding: 80px 20px;
    background-color: #3974EC;
    position: relative;
    overflow: hidden;
}

.testimonials-container-new {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ===== Decorative Dotted Circles ===== */
.deco-circle {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.deco-circle img {
    width: 100%;
    height: auto;
    display: block;
}

.deco-circle-top-right {
    top: 5%;
    right: 5%;
    width: 180px;
    animation: floatRotate 15s ease-in-out infinite;
}

.deco-circle-bottom-left {
    bottom: 5%;
    left: 5%;
    width: 220px;
    animation: floatRotateReverse 18s ease-in-out infinite;
}

@keyframes floatRotate {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(-20px, 20px) rotate(90deg);
    }
    50% {
        transform: translate(10px, 40px) rotate(180deg);
    }
    75% {
        transform: translate(20px, -10px) rotate(270deg);
    }
}

@keyframes floatRotateReverse {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -20px) rotate(-90deg);
    }
    50% {
        transform: translate(-10px, -40px) rotate(-180deg);
    }
    75% {
        transform: translate(-20px, 10px) rotate(-270deg);
    }
}

/* ===== Header ===== */
.testimonials-header-new {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.testimonials-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.3;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Slider Wrapper ===== */
.testimonials-slider-wrapper-new {
    display: flex;
    align-items: center;
    /* gap: 20px; */
    position: relative;
}

.testimonials-slider-new {
    flex: 1;
    overflow: hidden;
    width: 100%;
}

.testimonials-track-new {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    width: 100%;
}

/* ===== Testimonial Card - FIXED FOR 3 CARDS ===== */
.testimonial-card-new {
    flex: 0 0 calc((100% - 40px) / 3); /* Exactly 3 cards with 20px gap */
    min-width: 0;
    background: #fff;
    border-radius: 12px;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 320px;
}

.testimonial-header-new {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-author-info {
    flex: 1;
}

.testimonial-name {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 3px 0;
}

.testimonial-city {
    font-size: 12px;
    font-weight: 700;
    color: #3974EC;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-review {
    font-size: 14px;
    line-height: 1.7;
    color: #000;
    margin: 0 0 25px 0;
    flex-grow: 1;
}

.testimonial-footer-new {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
}

.testimonial-rating {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rating-label {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.testimonial-stars {
    display: flex;
    gap: 3px;
}

.testimonial-quote-icon {
    flex-shrink: 0;
}

/* ===== Navigation Arrows ===== */
.testimonial-nav-btn {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
    z-index: 10;
    flex-shrink: 0;
}

.testimonial-nav-btn svg {
    stroke: rgba(255, 255, 255, 0.7);
    transition: stroke 0.3s ease;
}

.testimonial-nav-btn:hover {
    background-color: #fff;
    border-color: #fff;
    transform: scale(1.1);
}

.testimonial-nav-btn:hover svg {
    stroke: #3974EC;
}

/* ===== Dots Navigation ===== */
.testimonial-dots-new {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 35px;
}

.testimonial-dot-new {
    width: 30px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonial-dot-new.active {
    background-color: #fff;
    width: 40px;
}

/* ===== No Testimonials ===== */
.no-testimonials {
    text-align: center;
    padding: 40px;
    color: #fff;
    font-size: 16px;
    width: 100%;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .testimonial-card-new {
        flex: 0 0 calc((100% - 20px) / 2); /* 2 cards */
    }
    
    .testimonials-title {
        font-size: 28px;
    }
    
    .deco-circle-top-right {
        width: 130px;
    }
    
    .deco-circle-bottom-left {
        width: 160px;
    }
}

@media (max-width: 576px) {
    .testimonials-section-new {
        padding: 60px 15px;
    }
    
    .testimonials-title {
        font-size: 22px;
    }
    
    .testimonial-card-new {
        flex: 0 0 100%; /* 1 card */
        min-height: auto;
    }
    
    .testimonial-nav-btn {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    
    .deco-circle-top-right {
        width: 100px;
        top: 2%;
        right: 2%;
    }
    
    .deco-circle-bottom-left {
        width: 120px;
        bottom: 2%;
        left: 2%;
    }
}


/* ============================================
   BLOGS SECTION FULL CSS
   ============================================ */
/* Main Section Wrapper */
.blogs-faq-wrapper {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.container-custom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Grid Layout */
.blogs-section-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

/* Left Content Section */
.blogs-left-content {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.news-blog-header {
    margin-bottom: 25px;
}

.section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #5c7cfa;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-main-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0;
}

.company-description {
    margin-bottom: 35px;
    flex-grow: 1;
}

.company-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin: 0;
}

/* Left CTA Button */
.left-cta-wrapper .read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: #74DF23;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.left-cta-wrapper .read-more-btn:hover {

    border:2px solid #74DF23;
    background: #ffffff;
    color:#000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(92, 124, 250, 0.3);
}

.left-cta-wrapper .arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.left-cta-wrapper .read-more-btn:hover .arrow {
    transform: translateX(5px);
}

/* Right Blog Grid */
.blogs-right-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Blog Card */
.blog-card-custom {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.blog-card-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.blog-link-custom {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Blog Image Wrapper */
.blog-image-wrapper-custom {
    position: relative;
    overflow: hidden;
    /* height: 220px; */
}

.blog-image-wrapper-custom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card-custom:hover .blog-image-wrapper-custom img {
    transform: scale(1.05);
}

/* Blog Badge */
.blog-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #74DF23;
    color: #ffffff;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0 8px 0 0;
}

/* Blog Content */
.blog-content-custom {
    padding: 25px;
}

.blog-title-custom {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
    margin: 0 0 12px 0;
    min-height: 50px;
}

.blog-excerpt {
    font-size: 14px;
    line-height: 1.7;
    color: #495057;
    margin: 0 0 20px 0;
}

/* Blog Read More Button */
.blog-read-more {
    margin-top: auto;
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #74DF23;
    border: 2px solid #dee2e6;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.read-more-link:hover {
     border:2px solid #74DF23;
    background: #ffffff;
    color:#000000;
}

.read-more-link .arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.read-more-link:hover .arrow {
    transform: translateX(5px);
}

/* No Blogs Message */
.no-blogs-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: #ffffff;
    border-radius: 12px;
    color: #495057;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .blogs-section-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .blogs-left-content {
        order: 1;
    }
    
    .blogs-right-grid {
        order: 2;
    }
}

@media (max-width: 768px) {
    .blogs-right-grid {
        grid-template-columns: 1fr;
    }
    
    .section-main-title {
        font-size: 28px;
    }
    
    .blogs-left-content {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .blogs-faq-wrapper {
        padding: 60px 0;
    }
    
    .section-main-title {
        font-size: 24px;
    }
    
    .blog-image-wrapper-custom {
        /* height: 200px; */
    }
}