* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ============================================
   HERO SLIDER STYLES
   ============================================ */

/* ============================================
   HERO SLIDER STYLES
   ============================================ */

.hero-slider {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* ---------- Slide Item ---------- */
.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 0.8s ease, visibility 0.8s ease;
}

.slider-item.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

/* ---------- Overlay ---------- */
.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* ---------- Content ---------- */
.slider-item .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

/* ---------- Parent Content - Unified Transparent Background ---------- */
.slider-content {
    max-width: 700px;
    padding: 35px 40px; /* Text ko background ke edges se thoda space dene ke liye */
     /* Aapki original padding */
    /* Ek hi dark transparent background poore block ke liye */
     /* Block ke corners ko round karne ke liye */
}

/* ---------- Subtitle (Background Removed) ---------- */
.slider-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffffff;
   margin: 18px 0px;
    padding: 8px 0px;
     text-shadow: 0px 0px 5px #000000f0;
    /* Background, padding aur blur hata diya gaya hai */
}

/* ---------- Heading (Background Removed) ---------- */
.slider-heading {
    font-size: 44px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 22px;
     text-shadow: 0px 0px 5px #000000f0;
    /* Background, padding, blur aur white-space hata diya gaya hai taake text wrap ho sake */
}

/* ---------- Description (Background Removed) ---------- */
.slider-description {
    font-size: 17px;
    color: #ffffff;
    line-height: 1.7;
     
    margin-bottom: 0; /* Last element hai isliye bottom margin 0 kar diya */
    /* Background, padding, blur aur max-width hata diya gaya hai */
     text-shadow: 0px 0px 5px #000000f0;
     margin-bottom: 10px;
}

/* ---------- Get Started Button ---------- */
.slider-btn {
    display: inline-block;
    padding: 14px 36px;
    background: #D11E2D;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.slider-btn:hover {
    background: #a01830;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(196, 30, 58, 0.45);
    color: #ffffff;
}

/* ---------- Navigation Arrow (Right Only) ---------- */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333333;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.slider-arrow:hover {
    background: #ffffff;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.slider-arrow--next {
    right: 18px;
}


/* Slider Controls Container */
.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 15px 0;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

/* Inactive Dots - Small Circles */
.slider-dot {
    width: 16px;
    height: 17px;
    background-color: #D11E2D;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s ease;
    display: inline-block;
}

/* Active Dot - Vertical Pill */
.slider-dot.active {
    width: 17px;
    height: 40px;
    background-color: #D11E2D;
    border-radius: 9px;
}

/* Hover Effect */
.slider-dot:hover:not(.active) {
    background-color: #D11E2D;
    transform: scale(1.2);
}

/* ============================================
   TEXT SLIDE-IN ANIMATIONS
   ============================================ */

.slider-item.active .slider-subtitle {
    animation: slideInLeft 0.6s ease forwards;
}

.slider-item.active .slider-heading {
    animation: slideInLeft 0.8s ease forwards;
    animation-delay: 0.15s;
    opacity: 0;
}

.slider-item.active .slider-description {
    animation: slideInLeft 0.8s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.slider-item.active .slider-btn {
    animation: slideInLeft 0.6s ease forwards;
    animation-delay: 0.45s;
    opacity: 0;
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-60px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 992px) {
    .hero-slider {
        height: 520px;
    }

    .slider-heading {
        font-size: 34px;
    }

    .slider-content {
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 460px;
    }

    .slider-heading {
        font-size: 26px;
        white-space: normal;
    }

    .slider-subtitle {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .slider-description {
        font-size: 14px;
        padding: 14px 18px;
    }

    .slider-content {
        max-width: 100%;
        padding: 0 60px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }

    .slider-arrow--next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 400px;
    }

    .slider-heading {
        font-size: 22px;
    }

    .slider-subtitle {
        font-size: 10px;
        letter-spacing: 1.5px;
        margin-bottom: 12px;
        padding: 6px 14px;
    }

    .slider-heading {
        margin-bottom: 16px;
        padding: 8px 14px;
    }

    .slider-description {
        font-size: 13px;
        padding: 12px 14px;
        margin-bottom: 22px;
    }

    .slider-btn {
        padding: 12px 28px;
        font-size: 14px;
    }

    .slider-content {
        padding: 0 50px;
    }

    .slider-arrow {
        width: 36px;
        height: 36px;
    }
}
/* =========================================
   FEATURES CSS ENDS
========================================= */
/* about sction */

/* About Section Styles */
.about-section {
    padding: 80px 0;
    background-color: #fff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-row {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

/* Left Column - Image */
.about-col-image {
    flex: 0 0 45%;
    max-width: 45%;
}

.about-image-box {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    border: 4px solid #D11E2D;
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.15);
}

.about-image-box img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.about-image-box:hover img {
    transform: scale(1.05);
}

/* Right Column - Content */
.about-col-content {
    flex: 1;
}

.about-content-wrapper {
    padding: 10px 0;
}

/* Welcome Text */
.about-welcome {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 15px;
}

.border-left{

    border-left: 4px solid #FCDA41;
}
/* About Heading with Yellow Vertical Line */
.about-heading {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 25px;
    padding-left: 20px;
    line-height: 1.2;
}

/* About Text Paragraphs */
.about-text {
    font-size: 15px;
    line-height: 1.8;
    color: #252525;
    margin-bottom: 18px;
    text-align: justify;
}

.about-text:last-child {
    margin-bottom: 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 992px) {
    .about-section {
        padding: 60px 0;
    }

    .about-row {
        gap: 40px;
    }

    .about-col-image {
        flex: 0 0 40%;
        max-width: 40%;
    }

    .about-heading {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .about-row {
        flex-direction: column;
        gap: 35px;
    }

    .about-col-image,
    .about-col-content {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .about-image-box {
        max-width: 500px;
        margin: 0 auto;
    }

    .about-heading {
        font-size: 28px;
        padding-left: 15px;
    }

    .about-text {
        font-size: 14px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 40px 0;
    }

    .about-container {
        padding: 0 15px;
    }

    .about-image-box {
        border-width: 3px;
        border-radius: 15px;
    }

    .about-welcome {
        font-size: 13px;
    }

    .about-heading {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .about-text {
        font-size: 13px;
        margin-bottom: 15px;
    }
}
/* about css end  */
















/* Service Section Styles */
.services-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.service-heading{
  font-size: 18px;
}
.section-header h6 {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

/* Service Card Wrapper */
.service-card-wrapper {
    /* opacity: 0; */
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.service-card-wrapper.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card-wrapper a {
    text-decoration: none;
    display: block;
}

/* Service Card */
.service-card {
    position: relative;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* Image Wrapper */
.service-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 320px;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img-wrapper img {
    transform: scale(1.1);
}

/* Transparent Overlay on Hover */
.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-icon {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    padding: 0 20px;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1);
}

/* Curved Red Bottom Section */
/* .service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: #C41E3A;
    border-radius: 0 0 50% 50% / 0 0 30px 30px;
    z-index: 1;
} */

/* Service Content (Title on Red Background) */
.service-content {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 2;
    padding: 0 15px;
}

.service-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Yellow Badge/Tag */
.service-badge {
    display: inline-block;
    background: #FCDA41;
    color: #000;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 12px;
    text-decoration: none;
}

/* View All Services Button */
.view-all-wrapper {
    text-align: center;
    margin-top: 40px;
}

.btn-view-all {
    display: inline-block;
    padding: 14px 40px;
    background: #FCDA41;
    color: #000;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid #FCDA41;
    margin-top: 10px;
}

.btn-view-all:hover {
    background: transparent;
    color: #D11E2D;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(253, 216, 53, 0.3);
}

/* No Services Message */
.no-services {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 10px;
    color: #666;
    font-size: 18px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .service-img-wrapper {
        height: 280px;
    }

    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 28px;
    }

    .service-img-wrapper {
        height: 260px;
    }

    .service-card::after {
        height: 100px;
    }

    .service-content {
        bottom: 30px;
    }

    .service-content h3 {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-img-wrapper {
        height: 300px;
    }

    .section-title {
        font-size: 26px;
    }

    .service-card::after {
        height: 110px;
    }

    .service-content {
        bottom: 35px;
    }

    .service-content h3 {
        font-size: 17px;
        margin-bottom: 8px;
    }

    .service-badge {
        font-size: 10px;
        padding: 3px 10px;
    }

    .btn-view-all {
        padding: 12px 35px;
        font-size: 14px;
    }
}

/* Animation for cards on scroll */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card-wrapper.visible:nth-child(1) { animation-delay: 0.1s; }
.service-card-wrapper.visible:nth-child(2) { animation-delay: 0.2s; }
.service-card-wrapper.visible:nth-child(3) { animation-delay: 0.3s; }
.service-card-wrapper.visible:nth-child(4) { animation-delay: 0.4s; }
.service-card-wrapper.visible:nth-child(5) { animation-delay: 0.5s; }
.service-card-wrapper.visible:nth-child(6) { animation-delay: 0.6s; }















/* Fun Facts Section */







/* =========================================
   CTA CSS STARTS
========================================= */
.cta-banner {
  padding: 35px 0;
  background: #D11E2D;/* Dark navy blue background */
  margin-bottom: 40px;
  width: 100%;
}

.cta-banner > .container-1200 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Left side text wrapper */
.cta-banner > .container-1200 > div:first-child {
  flex: 1;
}

.cta-banner > .container-1200 > div > h2 {
  color: #ffffff; /* Light blue heading */
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.cta-banner > .container-1200 > div > p {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Clock icon */
.cta-banner > .container-1200 > div > p::before {
  content: "⏱";
  font-size: 16px;
  display: inline-block;
}

/* Button styling */
.cta-banner .btn-cta {
  display: inline-block;
    padding: 14px 40px;
    background: #FCDA41;
    color: #000;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid #FCDA41;
}

.cta-banner .btn-cta:hover {
   background: transparent;
    color: #FCDA41;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(253, 216, 53, 0.3);}

/* Responsive for mobile */
@media (max-width: 768px) {
  .cta-banner > .container-1200 {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .cta-banner > .container-1200 > div > p {
    justify-content: center;
  }
}
/* =========================================
   CTA CSS END
========================================= */





/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background: #ecffe0;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--blue-color);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}




/* ============================================
   TESTIMONIALS SECTION STYLES
   ============================================ */
/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- Section Header ---------- */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

/* ---------- Arrows - Top Right ---------- */
.testimonials-arrows {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    gap: 8px;
}

.arrow-btn {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Left Arrow - WHITE background, RED icon */
/* .arrow-prev {
    background: #ffffff;
    color: #C41E3A;
    border: 1px solid #ddd;
}

.arrow-prev:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
}
.arrow-next {
    background: #C41E3A;
    color: #ffffff;
}

.arrow-next:hover {
    background: #a01830;
    transform: translateY(-2px);
} */

.arrow-btn svg {
    width: 16px;
    height: 16px;
}

/* ---------- Testimonials Slider Wrapper - LIGHT BACKGROUND ---------- */
.testimonials-slider-wrapper {
    background: #f0f4f8;
    border-radius: 12px;
    padding: 40px;
    overflow: hidden;
}

/* ---------- Testimonial Slide ---------- */
.testimonial-slide {
    display: none;
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ---------- Testimonials Grid (2 separate cards) ---------- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* ---------- Each Testimonial Card - SEPARATE DIV ---------- */
.testimonial-card {
    background: #ffffff;
    border: 1px solid #e8ecf0;
    border-radius: 10px;
    padding: 35px 30px;
    position: relative;
    min-height: 260px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

/* Client Review Text */
.client-review {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin: 0 0 30px 0;
    text-align: left;
}

/* Client Info (Name + Photo) */
.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-name {
    font-size: 17px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.client-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f0f0f0;
}

/* Quotation Marks (99) - Bottom Right */
.quote-marks {
    position: absolute;
    bottom: 20px;
    right: 25px;
    font-size: 70px;
    font-weight: 300;
    color: #e0e4e8;
    line-height: 1;
    font-family: Georgia, serif;
    z-index: 1;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .testimonials-section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 32px;
    }

    .testimonials-slider-wrapper {
        padding: 30px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .testimonial-card {
        padding: 30px 25px;
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }

    .testimonials-arrows {
        position: static;
        justify-content: center;
        margin-top: 20px;
    }

    .testimonials-slider-wrapper {
        padding: 25px;
    }

    .client-review {
        font-size: 14px;
        line-height: 1.7;
    }

    .client-name {
        font-size: 16px;
    }

    .client-photo {
        width: 50px;
        height: 50px;
    }

    .quote-marks {
        font-size: 60px;
        bottom: 15px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    .testimonials-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 26px;
    }

    .testimonials-slider-wrapper {
        padding: 20px;
    }

    .testimonial-card {
        padding: 25px 20px;
    }

    .client-review {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .quote-marks {
        font-size: 50px;
    }

    .arrow-btn {
        width: 32px;
        height: 32px;
    }
}



/* ============================================
   BOOK APPOINTMENT SECTION
   ============================================ */

.appointment-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Main Wrapper --- */
.appointment-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* --- Left Column: Image --- */
.appointment-image-col {
    flex: 0 0 45%;
    max-width: 45%;
}

.image-border-box {
    border: 4px solid #D11E2D; /* Red Border */
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    /* min-height: 500px; */
}

.appointment-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- Right Column: Form --- */
.appointment-form-col {
    flex: 1;
    width: 100%;
}

/* Header Styling */
.form-header {
    margin-bottom: 30px;
    border-left: 4px solid #D11E2D;
}

.form-subtitle {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    margin-left: 15px;
}

.form-title {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin: 0;
    position: relative;
    padding-left: 20px;
}


/* Form Styling */
.quote-form {
    width: 100%;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
    width: 100%;
}

.form-row .form-group {
    margin-bottom: 0;
    flex: 1;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
    background-color: #fff;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: #D11E2D;
}

.form-control::placeholder {
    color: #999;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Submit Button */
.btn-submit {
  display: inline-block;
    padding: 14px 40px;
    background: #FCDA41;
    color: #000;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid #FCDA41;
}

.btn-submit:hover {
  background: transparent;
    color: #D11E2D;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(253, 216, 53, 0.3);
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .appointment-wrapper {
        flex-direction: column;
        padding: 30px;
        gap: 40px;
    }

    .appointment-image-col {
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* .image-border-box {
        min-height: 400px;
    } */
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-title {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .appointment-section {
        padding: 50px 0;
    }

    .appointment-wrapper {
        padding: 20px;
    }

    .form-title {
        font-size: 26px;
    }
}

/* Offers Section Styles */
/* ============================================
   OFFERS SECTION
   ============================================ */

.offers-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.offers-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- Section Header ---------- */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin: 0 0 10px 0;
}

/* ---------- Arrows - Top Right ---------- */
.offers-arrows {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    gap: 8px;
}

.arrow-btn {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.arrow-prev, .arrow-next {
    background: #D11E2D;
    color: #ffffff;
}

.arrow-prev:hover,.arrow-next:hover {
    background: #a81824;
    transform: translateY(-2px);
}

/* .arrow-next {
    background: #ffffff;
    color: #D11E2D;
    border: 1px solid #ddd;
}

.arrow-next:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
} */

/* Disabled state for arrows */
.arrow-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.arrow-btn svg {
    width: 16px;
    height: 16px;
}

/* ---------- Slider Wrapper (NEW) ---------- */
.offers-slider {
    overflow: hidden; /* Crucial: hides cards that slide out of view */
    position: relative;
}

/* ---------- Offers Grid (Changed to Flex) ---------- */
.offers-grid {
    display: flex; /* Changed from grid to flex for horizontal sliding */
    gap: 30px;
    transition: transform 0.5s ease-in-out; /* Smooth sliding animation */
}

/* ---------- Offer Card ---------- */
.offer-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    
    /* Responsive Flex Widths */
    flex: 0 0 calc(33.333% - 20px); /* Shows 3 cards on desktop */
}

.offer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.offer-card a {
    display: block;
    text-decoration: none;
}

.offer-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Responsive Adjustments for Slider */
@media (max-width: 768px) {
    .offers-grid {
        gap: 20px;
    }
    .offer-card {
        flex: 0 0 calc(50% - 10px); /* Shows 2 cards on tablet */
    }
}

@media (max-width: 480px) {
    .offer-card {
        flex: 0 0 100%; /* Shows 1 card on mobile */
    }
}

/* No offers message */
.offers-grid > p {
    width: 100%;
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 16px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .offers-section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 28px;
    }

    .offers-arrows {
        position: static;
        justify-content: center;
        margin-top: 20px;
    }

    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .offers-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }

    .section-title {
        font-size: 26px;
    }

    .arrow-btn {
        width: 32px;
        height: 32px;
    }
}





/* ============================================
   BLOGS SECTION FULL CSS
   ============================================ */

.blogs-faq-wrapper {
  padding: 80px 0;
  background: #fff;
}

.container-custom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.two-columns-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* Section Headers */
.section-header-custom {
  margin-bottom: 30px;
}

.section-title-custom {
  font-size: 28px;
  font-weight: 700;
  color: black;
  margin-bottom: 12px;
  text-align: center;
  margin: 0 auto;
}

.section-subtitle-custom {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* Blogs Grid (Flexbox) */
.blogs-grid-custom {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card-custom {
  flex: 1;
  min-width: 300px;
  max-width: 380px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.blog-card-custom:hover {
  transform: translateY(-5px);
}

.blog-link-custom {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.blog-image-wrapper-custom {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.blog-image-wrapper-custom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-badge-custom {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #1a1a2e;
  color: #fff;
  padding: 5px 15px;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 4px;
}

.blog-content-custom {
  background: #fff;
  padding: 25px 20px 20px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-description-custom {
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  margin: 0;
  font-weight: 500;
  transition: color 0.3s ease;
}

.blog-underline-custom {
  width: 40px;
  height: 2px;
  background: #ccc;
  margin-top: 15px;
  transition: background 0.3s ease;
}

/* Hover Effects */
.blog-card-custom:hover .blog-description-custom {
  color: #D11E2D;
}

.blog-card-custom:hover .blog-underline-custom {
  background: #D11E2D;
}
/* ============================================
   READ ARTICLE BUTTON STYLES
   ============================================ */

.blog-read-more {
  margin-top: 20px;
}

.read-article-btn {
  display: inline-block;
  color:  #D11E2D;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  padding-right: 25px;
}



.blog-card-custom:hover .read-article-btn {
  color:  #D11E2D;
}

.blog-card-custom:hover .read-article-btn::after {
  transform: translateY(-50%) translateX(5px);
}

/* ============================================
   RESPONSIVE DESIGN (UPDATED & FIXED)
   ============================================ */

/* Tablet View (769px - 1024px) - 2 Columns */
@media (max-width: 1024px) and (min-width: 769px) {
  .blogs-faq-wrapper {
    padding: 70px 0;
  }

  .two-columns-row {
    gap: 40px;
  }

  .blogs-grid-custom {
    gap: 25px;
  }

  .blog-card-custom {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
    min-width: 280px;
  }

  .blog-image-wrapper-custom {
    height: 220px;
  }

  .blog-description-custom {
    font-size: 15px;
  }
}

/* Mobile View (768px and below) - 1 Column */
@media (max-width: 768px) {
  .blogs-faq-wrapper {
    padding: 60px 0;
  }

  .two-columns-row {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .section-title-custom {
    font-size: 24px;
  }

  .blogs-grid-custom {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .blog-card-custom {
    flex: 0 0 100%;
    max-width: 100%;
    min-width: 100%;
    width: 100%;
  }

  .blog-image-wrapper-custom {
    height: 250px;
  }

  .blog-description-custom {
    font-size: 15px;
  }

  .faq-question-custom {
    font-size: 15px;
    padding: 18px 20px;
  }

  .faq-answer-content-custom {
    padding: 0 20px 18px 38px;
    font-size: 13px;
  }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
  .blogs-faq-wrapper {
    padding: 50px 0;
  }

  .section-title-custom {
    font-size: 22px;
  }

  .section-subtitle-custom {
    font-size: 14px;
  }

  .blog-image-wrapper-custom {
    height: 200px;
  }

  .blog-content-custom {
    padding: 20px 15px 15px;
  }

  .blog-description-custom {
    font-size: 14px;
  }

  .blog-title-bar-custom h3 {
    font-size: 14px;
  }

  .faq-question-custom {
    font-size: 14px;
    padding: 15px 18px;
  }

  .faq-answer-content-custom {
    padding: 0 18px 15px 35px;
  }
}