* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}










/* ===== Hero Slider ===== */
/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    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;
    transition: opacity 1s ease-in-out;
    display: none;
}

.slider-item.active {
    opacity: 1;
    display: block;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.slider-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.slide-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.slide-title {
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px;
    line-height: 1.2;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
}

.slide-title .highlight {
    color: #7B9630;
}

.slide-description {
    font-size: 18px;
    color: #ffffff;
    margin: 0 0 35px;
    max-width: 700px;
    line-height: 1.6;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.btn-slider {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    background-color: #FACD14;
    color: #000000;
  
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.btn-slider:hover {
    background-color: #09436A;
    color: #fdfcfc;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* Arrow Navigation */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    /* backdrop-filter: blur(5px); */
}

.slider-arrow svg {
    stroke: #ffffff;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

.slider-arrow:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.slider-arrow:hover svg {
    stroke: #1a1a1a;
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-slider {
        height: 500px;
    }
    
    .slide-title {
        font-size: 42px;
    }
    
    .slide-description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 450px;
    }
    
    .slide-subtitle {
        font-size: 14px;
    }
    
    .slide-title {
        font-size: 32px;
    }
    
    .slide-description {
        font-size: 14px;
        max-width: 500px;
    }
    
    .btn-slider {
        padding: 12px 28px;
        font-size: 13px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
    
    .slider-prev {
        left: 10px;
    }
    
    .slider-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 400px;
    }
    
    .slide-title {
        font-size: 26px;
    }
    
    .slide-description {
        font-size: 13px;
    }
    
    .slider-content {
        padding: 0 15px;
    }
}





/* ===== Features Overlap Section ===== */


/* about sction */

/* About Section */
.about-section-new {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-container-new {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-wrapper-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
    padding-left: 15px;
    padding-right: 15px;
}

/* Left Side Content */
.about-left-new {
    padding-right: 20px;
}

.about-subtitle-new {
    font-size: 16px;
    font-weight: 500;
    color: #333333;
    margin: 0 0 10px;
}

.about-heading-new {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 15px;
    text-transform: uppercase;
}

.heading-line {
    width: 50px;
    height: 2px;
    background-color:#09436a;
    margin: 0 auto 20px;
    margin-left: 3px;
}
.about-description-new {
    font-size: 15px;
    line-height: 1.8;
    color: #000000;
    margin: 0 0 20px;
}

.about-subheading-new {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 30px 0 15px;
}

.about-btn-new {
    display: inline-block;
    padding: 14px 35px;
    background-color: #FACD14;
    color: #030303;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.about-btn-new:hover {
    background-color: #09436A;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(240, 180, 41, 0.4);
    color: white;
}

/* Right Side - Features Grid */
.about-right-new {
    padding-left: 20px;
}

.features-grid-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.feature-card-new {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card-new:hover {
    border-color: #FACD14;
    box-shadow: 0 5px 20px rgba(240, 180, 41, 0.15);
    transform: translateY(-5px);
}

.feature-icon-new {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9f5;
    border-radius: 50%;
}

.feature-icon-new svg {
    stroke: #09436A;
}

.feature-title-new {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px;
}

.feature-description-new {
    font-size: 14px;
    line-height: 1.6;
    color: #000000;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .about-wrapper-new {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-left-new {
        padding-right: 0;
    }
    
    .about-right-new {
        padding-left: 0;
    }
    
    .features-grid-new {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .about-section-new {
        padding: 60px 0;
    }
    
    .about-heading-new {
        font-size: 30px;
    }
    
    .features-grid-new {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card-new {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .about-heading-new {
        font-size: 26px;
    }
    
    .about-subheading-new {
        font-size: 18px;
    }
    
    .feature-icon-new {
        width: 60px;
        height: 60px;
    }
    
    .feature-title-new {
        font-size: 16px;
    }
    
    .feature-description-new {
        font-size: 13px;
    }
} 






/* ========================================
   CALL TO ACTION SECTION - CORRECTED
   ======================================== */










/* ========================================
   SERVICE SECTION - UPDATED STYLES
   ======================================== */
/* ===== Services Section ===== */
.services-section {
    padding: 80px 20px;
    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: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 15px;
}


.heading-linee {
    width: 50px;
    height: 2px;
    background-color:#09436a;
    margin: 0 auto 20px;
   
}

/* Services Intro Paragraph */
.services-intro-text {
    font-size: 15px;
    line-height: 1.8;
    color: #000000;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* ===== Services Grid ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* ===== Service Card ===== */
.service-card-wrapper {
    position: relative;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* ===== Image Wrapper ===== */
.service-img-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
}

/* ===== Simple Overlay ===== */
.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-name {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    padding: 15px 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== View All Button ===== */
.view-all-wrapper {
    text-align: center;
}
.overlay-title{
    color: #fff;
}

.btn-view-all {
    display: inline-block;
    padding: 14px 35px;
    background:  #FACD14;
    color: #000000;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 38px;
    transition: all 0.3s ease;

}

.btn-view-all:hover {
    background-color: #09436A;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(123, 150, 48, 0.3);
    color: white;
}

/* ===== 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);
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 20px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .services-intro-text {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .service-img-wrapper {
        height: 250px;
    }
    
    .service-name {
        font-size: 18px;
        padding: 12px 15px;
    }
}



/* Fun Facts Section */
/* Fun Facts Section */
.fun-facts-section {
    position: relative;
    padding: 80px 20px;
    background-image: url('../img/count-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 300px;
    display: flex;
    align-items: center;
}



.fun-facts-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Stats Grid - Horizontal Layout */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: center;
}

/* Individual Stat Box */
.stat-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

/* Yellow Circle Icon */
.stat-icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: #FACD14;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon-wrapper svg {
    stroke: #1a1a1a;
    stroke-width: 2;
}

/* Stat Content */
.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 5px;
    line-height: 1;
}

.stat-label {
    font-size: 15px;
    color: #ffffff;
    opacity: 0.9;
    line-height: 1.3;
}

/* Responsive */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-box {
        padding: 15px;
    }
    
    .stat-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .stat-number {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .fun-facts-section {
        padding: 60px 20px;
        background-attachment: scroll;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stat-box {
        padding: 15px;
        gap: 15px;
    }
    
    .stat-icon-wrapper {
        width: 55px;
        height: 55px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .stat-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .stat-icon-wrapper svg {
        width: 28px;
        height: 28px;
    }
    
    .stat-number {
        font-size: 26px;
    }
}

/* ========================================
   WHY CHOOSE US SECTION
   ======================================== */














/* Fun Facts Section */
/* Offers Section */
.offers-section-new {
    padding: 80px 20px;
    background-color: #ffffff;
}

.offers-container-new {
    max-width: 1200px;
    margin: 0 auto;
}

.offers-wrapper-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
        padding-left: 15px;
    padding-right: 15px;
}

/* ===== Left Side Content ===== */
.offers-left-new {
    padding-right: 20px;
}

.offers-heading-new {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 15px;
}

.heading-line-new {
    width: 50px;
    height: 2px;
    background-color: #7B9630;
    margin-bottom: 25px;
}

.offers-description-new {
    font-size: 15px;
    line-height: 1.8;
    color: #000000;
    margin: 0 0 30px;
}

/* Offers List */
.offers-list-new {
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
}

.offers-list-new li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    font-size: 15px;
    color: #000000;
}

.offer-number {
    width: 28px;
    height: 28px;
    background-color: #FACD14;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

/* Contact Button */
.offers-btn-new {
    display: inline-block;
    padding: 14px 35px;
    background-color: #FACD14;
    color: #000000;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.offers-btn-new:hover {
    background-color: #09436A;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(240, 180, 41, 0.4);
}

/* ===== Right Side - Slider ===== */
.offers-right-new {
    padding-left: 20px;
}

.offers-slider-wrapper-new {
    position: relative;
}

/* Navigation Buttons */
.offer-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.offer-nav-btn:hover {
    background-color: #FACD14;
}

.offer-nav-btn svg {
    stroke: #1a1a1a;
}

.offer-nav-btn:hover svg {
    stroke: #ffffff;
}

.offer-nav-prev {
    left: -20px;
}

.offer-nav-next {
    right: -20px;
}

/* Slider */
.offers-slider-new {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.offers-track-new {
    position: relative;
}

.offer-slide-card {
    display: none;
}

.offer-slide-card:first-child {
    display: block;
}

.offer-slide-link {
    display: block;
}

.offer-slide-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* Responsive */
@media (max-width: 992px) {
    .offers-wrapper-new {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .offers-left-new {
        padding-right: 0;
    }
    
    .offers-right-new {
        padding-left: 0;
    }
    
    .offer-nav-prev {
        left: 10px;
    }
    
    .offer-nav-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .offers-section-new {
        padding: 60px 20px;
    }
    
    .offers-heading-new {
        font-size: 30px;
    }
    
    .offers-list-new li {
        font-size: 14px;
    }
    
    .offer-nav-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .offers-heading-new {
        font-size: 26px;
    }
    
    .offers-description-new {
        font-size: 14px;
    }
    
    .offers-list-new li {
        gap: 12px;
        padding: 8px 0;
    }
    
    .offer-number {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
    
    .offers-btn-new {
        padding: 12px 28px;
        font-size: 14px;
    }
}


/* CTA Section */

/* ============================================
   TESTIMONIALS SECTION STYLES
   ============================================ */

/* ============================================
   TESTIMONIALS SECTION - NEW DESIGN
   ============================================ */
/* Testimonials Section */
.testimonials-section-new {
    position: relative;
    padding: 80px 20px;
    background-image: url('../img/testimonial-1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 600px;
}


.testimonials-container-new {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-wrapper-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* ===== Left Side - Booking Form ===== */
.testimonials-form-side {
    padding-right: 20px;
}

.booking-form-card {
    background-color: #ffffff;
    padding: 40px 35px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.form-title {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 5px;
    text-align: center;
}

.form-subtitle {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 15px;
    text-align: center;
}

.form-heading-line {
    width: 60px;
    height: 3px;
    background-color:  #09436A;
    margin: 0 auto 30px;
    position: relative;
}

.form-heading-line::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: #ffffff;
    border: 2px solid  #09436A;
    border-radius: 50%;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    background-color: #f9f9f9;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color:  #09436A;
    background-color: #ffffff;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-send {
    width: 100%;
    padding: 14px;
    background-color: #FACD14;
    color: #1a1a1a;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-send:hover {
    background: #09436A;
    transform: translateY(-2px);

    color: #ffffff;
}

/* ===== Right Side - Testimonials ===== */
.testimonials-content-side {
    padding-left: 20px;
    padding-top: 60px;
}

.testimonials-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px;
    text-align: center;
}

.title-line {
    width: 60px;
    height: 3px;
    background-color:  #09436A;
    margin: 0 auto 30px;
    position: relative;
}

.title-line::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: #ffffff;
    border: 2px solid  #09436A;
    border-radius: 50%;
}

.testimonial-slider-wrapper {
    background-color: #ffffff;
    padding: 35px 30px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-card-display {
    position: relative;
}

/* Quote Icon */
.testimonial-quote-icon {
    width: 60px;
    height: 60px;
    background-color: #f0f4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.testimonial-quote-icon span {
    font-size: 28px;
    font-weight: 700;
    color:  #09436A;
    font-family: Georgia, serif;
}

/* Navigation Arrows */
.testimonial-nav-arrows {
    position: absolute;
    top: 15px;
    right: 0;
    display: flex;
    gap: 10px;
}

.testimonial-arrow {
    width: 36px;
    height: 36px;
    background-color: transparent;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.testimonial-arrow:hover {
    background-color:  #09436A;
    border-color:  #09436A;
}

.testimonial-arrow svg {
    stroke: #1a1a1a;
}

.testimonial-arrow:hover svg {
    stroke: #ffffff;
}

/* Testimonial Content */
.display-review {
    font-size: 15px;
    line-height: 1.7;
    color: #000000;
    margin: 0 0 20px;
}

.display-name {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 5px;
}

.display-city {
    font-size: 14px;
    color: #000000;
}

/* Responsive */
@media (max-width: 992px) {
    .testimonials-wrapper-new {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .testimonials-form-side {
        padding-right: 0;
    }
    
    .testimonials-content-side {
        padding-left: 0;
        padding-top: 0;
    }
    
    .testimonials-section-new {
        background-attachment: scroll;
    }
}

@media (max-width: 768px) {
    .testimonials-section-new {
        padding: 60px 20px;
    }
    
    .booking-form-card {
        padding: 30px 25px;
    }
    
    .form-title {
        font-size: 20px;
    }
    
    .form-subtitle {
        font-size: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .testimonials-title {
        font-size: 28px;
    }
    
    .testimonial-slider-wrapper {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .booking-form-card {
        padding: 25px 20px;
    }
    
    .form-subtitle {
        font-size: 22px;
    }
    
    .testimonials-title {
        font-size: 24px;
    }
    
    .display-review {
        font-size: 14px;
    }
}
/* ============================================
   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: #FACD14;
    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: #000000;
    line-height: 1.6;
    margin: 0 0 20px;
}

/* ---------- READ MORE BUTTON ---------- */
.blog-read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background-color: #FACD14; /* Solid Yellow Background */
    color: #1a1a1a; /* Dark text for readability */
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 36px; /* Clean corners */
    
    transition: all 0.3s ease;
}
.blog-read-more-btn:hover {
    background-color: #09436A; /* Dark background on hover */
    color: #ffffff; /* White text on hover */
   
    transform: translateY(-2px); /* Slight lift effect */
}

.blog-read-more-btn .arrow {
    font-size: 12px;
    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
   ============================================ */

/* CTA Section */
.cta-section {
    background-color: #FACD14;
    padding: 40px 20px;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-content {
    flex: 1;
}

.cta-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px;
    line-height: 1.3;
}

.cta-subtitle {
    font-size: 16px;
    color: #333333;
    margin: 0;
    font-weight: 500;
}

.cta-btn {
    display: inline-block;
    padding: 16px 40px;
    background-color: #09436A;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-btn:hover {
    background: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 58, 95, 0.4);
    border: 2px solid #09436A;
    color: #09436A;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-container {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .cta-subtitle {
        font-size: 14px;
    }
    
    .cta-btn {
        padding: 14px 35px;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 30px 20px;
    }
    
    .cta-title {
        font-size: 20px;
    }
    
    .cta-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}