* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}









/* ========================================
   HERO SLIDER STYLES
   ======================================== */
/* ===== Hero Slider ===== */
/* Hero Slider - Main Container */
.hero-slider {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 600px;
    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: all 0.8s ease;
    transform: scale(1);
}

.slider-item.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1.05);
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
}

.slider-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
        padding-left: 60px;
}

.slide-title {
    font-size: 50px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.6);
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.6s ease 0.3s;
}

.slider-item.active .slide-title {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.slide-title .highlight {
    color: #FFBC13;
    display: block;
}

.slide-description {
    font-size: 18px;
    color: #fff;
    margin-bottom: 35px;
    max-width: 600px;
    line-height: 1.7;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.5s;
}

.slider-item.active .slide-description {
    opacity: 1;
    transform: translateY(0);
}

/* Slider Button */
.btn-slider {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    background: #122B54;
    color: #f1eaea;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 5px;
    border: 2px solid rgb(255, 255, 255);
   
    opacity: 0;
   
    
}

.slider-item.active .btn-slider {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease 0.7s;
}

.btn-slider:hover {
    background: white;
    border: 2px solid black;
    color: #000;
    
}

.btn-slider svg {
    transition: transform 0.3s ease;
}

.btn-slider:hover svg {
    transform: translateX(5px);
}

.slider-navigation {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 100;
    background: transparent;
}

.nav-bar {
    width: 4px;
    height: 30px;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.nav-bar.active {
    background: #FFBC13;
    height: 40px;
}

.nav-bar:hover {
    background: #FFBC13;
    height: 35px;
}

/* Responsive */
@media (max-width: 992px) {
    .slide-title {
        font-size: 48px;
    }
    
    .slide-description {
        font-size: 16px;
    }
    
    .btn-slider {
        padding: 14px 28px;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 80vh;
        min-height: 500px;
    }
    
    .slide-title {
        font-size: 36px;
    }
    
    .slide-title .highlight {
        display: inline;
    }
    
    .slide-description {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .btn-slider {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .slider-navigation {
        bottom: 30px;
    }
    
    .nav-bar {
        height: 25px;
    }
    
    .nav-bar.active {
        height: 32px;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 28px;
    }
    
    .slide-description {
        font-size: 14px;
    }
    
    .btn-slider {
        padding: 10px 20px;
        font-size: 13px;
    }
}








/* ===== Features Overlap Section ===== */


/* about sction */

/* About Section Base */
    /* --- Left Side Styles (Unchanged) --- */
.about-section-new { padding: 80px 0; background: #fff; }
.about-container-new { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.about-wrapper-new { display: flex; gap: 60px; align-items: center;    padding-left: 10px;
    padding-right: 10px; }
.about-left-new { flex: 1; }
.about-heading-new { font-size: 36px; font-weight: 700; color: #1a1a1a; margin-bottom: 20px; }
.about-description-new { font-size: 15px; line-height: 1.7; color: #000; margin-bottom: 20px; }
.about-subheading-new { font-size: 28px; font-weight: 700; color: #1a1a1a; margin: 30px 0 15px 0; }
.about-features-new { list-style: none; padding: 0; margin: 25px 0; }
.about-features-new li { font-size: 16px; color:  #000; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.about-features-new li::before { content: '▶'; color: #FFBC13; font-size: 14px; }
.about-btn-new { display: inline-block; padding: 14px 35px; background: #122B54; color: #fff; text-decoration: none; font-size: 15px; font-weight: 600; border-radius: 4px; margin-top: 10px; transition: background 0.3s; }
.about-btn-new:hover { background: #feffff; 
border: 2px solid black;
color: #000;

}

/* --- Right Side Styles (Grid & Overlays) --- */
.about-right-new { flex: 1; }

.about-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr; /* 3 equal rows for perfect alignment */
    gap: 20px;
    height: 600px; /* Total height of the grid */
}

.grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Grid Placement (The Magic Layout) */
.item-tl { grid-column: 1; grid-row: 1 / 3; } /* Top Left: Spans 2 rows */
.item-tr { grid-column: 2; grid-row: 1; }     /* Top Right: 1 row */
.item-bl { grid-column: 1; grid-row: 3; }     /* Bottom Left: 1 row */
.item-br { grid-column: 2; grid-row: 2 / 4; } /* Bottom Right: Spans 2 rows */

/* Yellow Triangles */
.triangle {
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: #FFBC13;
    z-index: 2;
}

.triangle.bottom-right {
    bottom: 0;
    right: 0;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.triangle.top-left {
    top: 0;
    left: 0;
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

/* Dark Overlay for Small Images */
.dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Darkens the image */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

/* White Info Box inside Overlay */
.info-box {
    background: #fff;
    padding: 15px 20px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.icon-box {
    width: 50px;
    height: 50px;
    background: #f8f9fa;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
}

.icon-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.info-text {
    display: flex;
    flex-direction: column;
}

.info-text .highlight {
    color: #FFBC13;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
}

.info-text .normal {
    color: #000;
    font-size: 14px;
    line-height: 1.2;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-wrapper-new { flex-direction: column; gap: 40px; }
    .about-image-grid { 
        grid-template-columns: 1fr; 
        grid-template-rows: auto;
        height: auto;
    }
    .item-tl, .item-tr, .item-bl, .item-br { 
        grid-column: 1; 
        grid-row: auto; 
        height: 250px; 
    }
}







/* ========================================
   CALL TO ACTION SECTION - CORRECTED
   ======================================== */










/* ========================================
   SERVICE SECTION - UPDATED STYLES
   ======================================== */
/* ===== Services Section ===== */








.services-section {
    padding: 80px 20px;
    background-color: #fff;
    position: relative;
}

.services-section::before {
     content: "";
    position: absolute;
    left: 0;
    right: 0;
  top: 230px;
    height: 400px;
    background: url('/img/a3d4f4091c6b1ffc86e35e7ce8e3add65222f065.png') center / cover no-repeat;
    z-index: 0;               /* -1 ki jagah 0 */
    pointer-events: none;
}

.services-container {
    position: relative;
    z-index: 1;
    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: #070707;
    margin: 0;
}
.overlay-title {
    margin: 0;
    color: #FFBC13;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.4;
}
/* Services Intro Paragraph */
.services-intro-text {
    font-size: 15px;
    line-height: 1.7;
    color: #000;
    text-align: center;
    max-width: 700px;
    margin: 15px auto 40px auto;
}
/* ===== 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, #FFBC13 0%, #FFBC13 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: #122B54;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;

    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 #000000;

}

/* ===== 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;
    }
}


/* Fun Facts Section */
.fun-facts-section {
    position: relative;
    padding: 100px 0;
    background-image: url('{{ asset("img/count-bg.png") }}'); /* Replace with your background image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

/* Dark Overlay for better readability */
.fun-facts-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 1;
}

.fun-facts-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-box {
    position: relative;
    background: #122B54; /* Dark Blue */
    padding: 50px 30px;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-10px);
}

/* Yellow Triangle in Top-Left Corner */
.triangle-corner {
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    background-color: #FFBC13; /* Yellow */
    clip-path: polygon(0 0, 100% 0, 0 100%);
    z-index: 1;
}

.stat-content {
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #FFBC13; /* Yellow/Gold */
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 40px;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-box {
        padding: 40px 25px;
    }
    
    .stat-number {
        font-size: 36px;
    }
}


/* ========================================
   WHY CHOOSE US SECTION
   ======================================== */














/* Fun Facts Section */
/* ========================================
   FUN FACTS SECTION
   ======================================== */
/* Offers Section */
.offers-section-new {
    padding: 80px 0;
    position: relative;
}


.offers-section-new::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 150px;              
    height: 330px;              
    background: url('/img/a3d4f4091c6b1ffc86e35e7ce8e3add65222f065.png') center / cover no-repeat;
    z-index: 0;
    pointer-events: none;
}

.offers-container-new {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header-new {
    text-align: center;
    margin-bottom: 40px;
}

.section-title-new {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

/* Slider Wrapper */
.offers-slider-wrapper-new {
    position: relative;
    padding: 0 60px;
}

/* Navigation Buttons (Top Right) */
.offer-nav-buttons {
    position: absolute;
    top: -60px;
    right: 0;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.offer-nav-btn {
    width: 27px;
    height: 40px;
    background: #FFBC13; /* Yellow */
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: background 0.3s;
}

.offer-nav-btn:hover {
    background: #e0951f;
}

.offer-nav-btn svg {
    stroke: #000;
}

/* Slider */
.offers-slider-new {
    overflow: hidden;
    border-radius: 8px;
}

.offers-track-new {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.offer-slide-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: calc(33.333% - 20px);
}

.offer-slide-link {
    display: block;
    text-decoration: none;
}

.offer-slide-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    transition: transform 0.3s;
}

.offer-slide-img:hover {
    transform: scale(1.02);
}

.no-offers-msg {
    text-align: center;
    color: #666;
    font-size: 16px;
    padding: 40px;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .offer-slide-card {
        flex: 0 0 calc(50% - 15px);
        min-width: calc(50% - 15px);
    }
    
    .offers-slider-wrapper-new {
        padding: 0 50px;
    }
}

@media (max-width: 768px) {
    .offer-slide-card {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .offer-nav-buttons {
        top: -50px;
    }
    
    .section-title-new {
        font-size: 28px;
    }
    
    .offers-slider-wrapper-new {
        padding: 0 40px;
    }
}



/* CTA Section */
.cta-section {
    padding: 0;
    background: #FFBC13;
    width: 100%;
}

.cta-container {
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    min-height: 350px;
    max-width: 1200px;
}

/* Left Side - Yellow Box */
.cta-left {
    flex: 1;
    background: #FFBC13; /* Yellow */
    padding: 15px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-heading {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.cta-subtext {
    font-size: 16px;
    color: #000;
    margin: 0 0 30px 0;
    font-weight: 500;
}

.cta-btn {
    display: inline-block;
    padding: 14px 35px;
    background: #122B54; /* Dark Blue */
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
    width: fit-content;
}

.cta-btn:hover {
    background: #ffffff;
    border: 2px solid black;
    color: #000;
}

/* Right Side - Image */
.cta-right {
    flex: 1;
    overflow: hidden;
}

.cta-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cta-container {
        flex-direction: column;
    }
    
    .cta-left {
        padding: 40px 30px;
        text-align: center;
        align-items: center;
    }
    
    .cta-heading {
        font-size: 26px;
    }
    
    .cta-right {
        /* min-height: 250px; */
    }
}

/* ============================================
   TESTIMONIALS SECTION STYLES
   ============================================ */

/* ============================================
   TESTIMONIALS SECTION - NEW DESIGN
   ============================================ */

.testimonials-section-new {
    position: relative;
    padding: 80px 20px;
    background: url('{{ asset("img/testimonials-bg.jpg") }}') center center / cover no-repeat;
    overflow: hidden;
    min-height: 500px;
}

/* Dark overlay on background image */
.testimonials-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.testimonials-container-new {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* ---------- HEADER ---------- */
.testimonials-header-new {
    margin-bottom: 50px;
}

.testimonials-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
    margin: 0;
}

.testimonials-title .highlight-text {
    color: #f0b429;
}

/* ---------- SLIDER WRAPPER ---------- */
.testimonials-slider-wrapper-new {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
}

/* ---------- NAVIGATION ARROWS ---------- */
.testimonial-nav-btn {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background-color: #f0b429;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    transition: all 0.3s ease;
    z-index: 10;
}

.testimonial-nav-btn:hover {
    background-color: #d9a020;
    transform: scale(1.05);
}

.testimonial-nav-btn:active {
    transform: scale(0.95);
}

.testimonial-nav-btn svg {
    stroke: #1a1a1a;
}

/* ---------- SLIDER ---------- */
.testimonials-slider-new {
    overflow: hidden;
    width: 100%;
    max-width: 650px;
}

.testimonials-track-new {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---------- TESTIMONIAL CARD ---------- */
.testimonial-card-new {
    min-width: 100%;
    background-color: #fdf6e3;

    border-radius: 4px;
    padding: 50px 40px 40px;
    position: relative;
    box-sizing: border-box;
    text-align: center;
}

/* Yellow triangular corners */
.card-corner {
    position: absolute;
    width: 50px;
    height: 50px;
    overflow: hidden;
}

.card-corner::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
}

.card-corner-top-left {
    top: 0;
    left: 0;
}

.card-corner-top-left::before {
    border-style: solid;
    border-width: 50px 50px 0 0;
    border-color: #f0b429 transparent transparent transparent;
}

.card-corner-bottom-right {
    bottom: 0;
    right: 0;
}

.card-corner-bottom-right::before {
    border-style: solid;
    border-width: 0 0 50px 50px;
    border-color: transparent transparent #f0b429 transparent;
}

/* ---------- QUOTE MARK ---------- */
.testimonial-quote-mark {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.testimonial-quote-mark svg {
    opacity: 0.85;
}

/* ---------- REVIEW TEXT ---------- */
.testimonial-review {
    font-size: 16px;
    line-height: 1.8;
    color: #2c2c2c;
    margin: 0 0 25px;
    font-weight: 500;
}

/* ---------- AUTHOR INFO ---------- */
.testimonial-author-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.testimonial-name {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.testimonial-city {
    font-size: 13px;
    color: #888888;
    font-weight: 400;
}

/* ---------- DOTS NAVIGATION ---------- */
.testimonial-dots-new {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 35px;
}

.testimonial-dots-new .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonial-dots-new .dot.active {
    background-color: #f0b429;
    transform: scale(1.2);
}

.testimonial-dots-new .dot:hover {
    background-color: rgba(255, 255, 255, 0.7);
}

/* ---------- NO TESTIMONIALS ---------- */
.no-testimonials {
    color: #ffffff;
    font-size: 18px;
    text-align: center;
    padding: 40px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
    .testimonials-section-new {
        padding: 60px 15px;
    }

    .testimonials-title {
        font-size: 22px;
    }

    .testimonial-card-new {
        padding: 40px 25px 30px;
    }

    .testimonial-review {
        font-size: 14px;
        line-height: 1.7;
    }

    .testimonial-nav-btn {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .card-corner {
        width: 35px;
        height: 35px;
    }

    .card-corner-top-left::before {
        border-width: 35px 35px 0 0;
    }

    .card-corner-bottom-right::before {
        border-width: 0 0 35px 35px;
    }

    .testimonials-slider-wrapper-new {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .testimonials-title {
        font-size: 18px;
    }

    .testimonial-card-new {
        padding: 35px 20px 25px;
    }

    .testimonial-nav-btn {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }
}

/* ============================================
   BLOGS SECTION FULL CSS
   ============================================ */
/* ============================================
   BLOGS SECTION - SIMPLE DESIGN
   ============================================ */

.blogs-section-simple {
    padding: 80px 20px;
    background-color: #ffffff;
}

.container-custom {
    max-width: 1200px;
    margin: 0 auto;
}

/* ---------- SECTION HEADER ---------- */
.blogs-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.blogs-main-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: 0.5px;
}

/* ---------- BLOGS GRID ---------- */
.blogs-grid-simple {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ---------- BLOG CARD ---------- */
.blog-card-simple {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card-simple:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* ---------- IMAGE CONTAINER ---------- */
.blog-image-container {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

/* Yellow Accent Bar (Left Side) */
.yellow-accent-bar {
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background-color: #f0b429;
    z-index: 2;
}

.blog-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.blog-card-simple:hover .blog-image-container img {
    transform: scale(1.05);
}

/* ---------- BLOG CONTENT ---------- */
.blog-content-simple {
    padding: 25px;
}

.blog-title-simple {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px;
    line-height: 1.4;
    min-height: 50px;
}

.blog-excerpt-simple {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin: 0 0 20px;
}

/* ---------- READ MORE BUTTON ---------- */
.blog-read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #f0b429;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-read-more-btn:hover {
    color: #d9a020;
    gap: 12px;
}

.blog-read-more-btn .arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.blog-read-more-btn:hover .arrow {
    transform: translateX(4px);
}

/* ---------- RESPONSIVE DESIGN ---------- */
@media (max-width: 992px) {
    .blogs-grid-simple {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .blogs-main-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .blogs-section-simple {
        padding: 60px 15px;
    }
    
    .blogs-grid-simple {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .blogs-main-title {
        font-size: 28px;
    }
    
    .blog-image-container {
        height: 250px;
    }
    
    .blog-title-simple {
        font-size: 17px;
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .blogs-section-simple {
        padding: 50px 15px;
    }
    
    .blogs-main-title {
        font-size: 24px;
    }
    
    .blog-content-simple {
        padding: 20px;
    }
    
    .blog-image-container {
        height: 220px;
    }
}

/* ============================================
   GET A FREE QUOTE SECTION
   ============================================ */

/* ============================================
   GET A FREE QUOTE SECTION
   ============================================ */

.quote-section-wrapper {
    position: relative;
    background-image: url('../img/form.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    padding: 80px 20px 0; /* No bottom padding - card will extend below */
}

/* Blue Overlay */
.quote-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 60, 114, 0.3);
    z-index: 1;
}

/* Quote Container - Align to Bottom */
.quote-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-end; /* Push card to bottom */
    min-height: 450px;
}

/* Quote Form Card - Extends Below Section */
.quote-form-card {
    position: relative;
    background-color: #fef3c7;
    padding: 40px 35px 35px;
    max-width: 450px;
    width: 100%;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    margin-bottom: -80px; /* Extends card below section */
}

/* Yellow Triangle Corner Accent */
.card-corner-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 60px 60px 0 0;
    border-color: #f0b429 transparent transparent transparent;
}

/* Form Title */
.quote-form-title {
    font-size: 32px;
    font-weight: 700;
    color: #1e3c72;
    margin: 0 0 30px 0;
    padding-left: 10px;
}

.quote-form-title .highlight {
    color: #f0b429;
}

/* Form Styles */
.quote-form {
    position: relative;
    z-index: 1;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.quote-form input[type="text"],
.quote-form input[type="email"],
.quote-form input[type="tel"],
.quote-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: none;
    background-color: #ffffff;
    font-size: 14px;
    font-family: inherit;
    color: #000;
    transition: box-shadow 0.3s ease;
}

.quote-form input:focus,
.quote-form textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(240, 180, 41, 0.3);
}

.quote-form textarea {
    resize: vertical;
    min-height: 100px;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
    color: #999999;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 16px 24px;
    background-color: #1e3c72;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.submit-btn:hover {
    background-color: #152a52;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 60, 114, 0.4);
}

/* Add spacing to next section so it doesn't overlap card */
.quote-section-wrapper + section,
.quote-section-wrapper + div {
    padding-top: 100px; /* Space for the overlapping card */
}

/* Responsive Design */
@media (max-width: 992px) {
    .quote-section-wrapper {
        padding: 60px 20px 0;
    }
    
    .quote-container {
        min-height: 400px;
    }
    
    .quote-form-card {
        max-width: 400px;
        padding: 35px 30px 30px;
        margin-bottom: -60px;
    }
    
    .quote-form-title {
        font-size: 28px;
    }
    
    .quote-section-wrapper + section,
    .quote-section-wrapper + div {
        padding-top: 80px;
    }
}

@media (max-width: 768px) {
    .quote-section-wrapper {
        padding: 50px 20px 0;
    }
    
    .quote-container {
        min-height: 350px;
        justify-content: center;
    }
    
    .quote-form-card {
        max-width: 100%;
        padding: 35px 25px 30px;
        margin-bottom: -50px;
    }
    
    .quote-form-title {
        font-size: 26px;
        text-align: center;
        padding-left: 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .quote-section-wrapper + section,
    .quote-section-wrapper + div {
        padding-top: 70px;
    }
}

@media (max-width: 480px) {
    .quote-section-wrapper {
        padding: 40px 15px 0;
    }
    
    .quote-container {
        min-height: 300px;
    }
    
    .quote-form-card {
        padding: 30px 20px 25px;
        margin-bottom: -40px;
    }
    
    .quote-form-title {
        font-size: 24px;
    }
    
    .quote-form input,
    .quote-form textarea {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .submit-btn {
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .quote-section-wrapper + section,
    .quote-section-wrapper + div {
        padding-top: 60px;
    }
}