* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Hero Slider Styles */
.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;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s;
}

.slider-item.active {
    opacity: 1;
    visibility: visible;
}

.slider-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
}

.slider-text {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    padding: 100px 0;
}

.slider-content {
    width: 100%;
    max-width: 900px;
    text-align: center;
}

.hero-text {
    color: #ffffff;
}

.hero-text h1, .hero-text h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out forwards;
    animation-delay: 0.3s;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out forwards;
    animation-delay: 0.5s;
}

/* Learn More Button */
.btn-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out forwards;
    animation-delay: 0.7s;
}

.btn-learn-more:hover {
    background: #7EBA2F;
    border-color: #7EBA2F;
    color: #ffffff;
    transform: translateY(-2px);
    
}

.btn-learn-more svg {
    transition: transform 0.3s ease;
}

.btn-learn-more:hover svg {
    transform: rotate(-15deg);
}

/* Slider Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 30px;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.slider-arrow.prev {
    left: 30px;
}

.slider-arrow.next {
    right: 30px;
}

.slider-arrow svg {
    /* stroke: #ffffff; */
    transition: stroke 0.3s ease;
}

.slider-arrow:hover {
    background: #7ec242;
}

.slider-arrow:hover svg {
    stroke: #ffffff;
}

/* Slide Up Animation */
@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reset animation when slide changes */
.slider-item.active .hero-text h1,
.slider-item.active .hero-text h2,
.slider-item.active .hero-text p,
.slider-item.active .btn-learn-more {
    animation: slideUp 0.8s ease-out forwards;
}

.slider-item.active .hero-text h1,
.slider-item.active .hero-text h2 {
    animation-delay: 0.3s;
}

.slider-item.active .hero-text p {
    animation-delay: 0.5s;
}

.slider-item.active .btn-learn-more {
    animation-delay: 0.7s;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-slider {
        height: 500px;
    }
    
    .slider-text {
        min-height: 500px;
        padding: 80px 0;
    }
    
    .hero-text h1, 
    .hero-text h2 {
        font-size: 36px;
    }
    
    .hero-text p {
        font-size: 16px;
    }
    
    .slider-arrow {
        width: 45px;
        height: 45px;
    }
    
    .slider-arrow.prev {
        left: 15px;
    }
    
    .slider-arrow.next {
        right: 15px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 450px;
    }
    
    .slider-text {
        min-height: 450px;
        padding: 60px 20px;
    }
    
    .hero-text h1, .hero-text h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .hero-text p {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .btn-learn-more {
        padding: 12px 24px;
        font-size: 13px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 400px;
    }
    
    .slider-text {
        min-height: 400px;
        padding: 40px 15px;
    }
    
    .hero-text h1, .hero-text h2 {
        font-size: 24px;
    }
    
    .hero-text p {
        font-size: 14px;
    }
    
    .btn-learn-more {
        padding: 10px 20px;
        font-size: 12px;
    }
}


/* about sction */

/* About Section Styles */
.about-section {
    padding: 80px 0;
    background: #ffffff;
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-col {
    flex: 1;
}

/* Left Side - Image */
.about-col-image {
    flex: 0 0 50%;
    max-width: 50%;
}

.about-image-box {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    background: #e5e7eb;
}

.about-main-image {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

/* Right Side - Content */
.about-col-content {
    flex: 0 0 50%;
    max-width: 50%;
}

.about-content-wrapper {
    padding: 20px 0;
}

.about-title {
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 24px;
    line-height: 1.3;
}

.about-text {
    font-size: 17px;
    line-height: 1.7;
    color: #000000;
    margin-bottom: 20px;
}

.about-text:last-of-type {
    margin-bottom: 30px;
}

/* Call Us Button */
.btn-call-us {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    background: #7EBA2F;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(126, 194, 66, 0.3);
}

.btn-call-us:hover {
    background: #1D75BC;
    transform: translateY(-2px);
    
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-row {
        gap: 40px;
    }
    
    .about-title {
        font-size: 28px;
    }
    
    .about-main-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 50px 0;
    }
    
    .about-row {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-col-image,
    .about-col-content {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .about-title {
        font-size: 26px;
        margin-bottom: 20px;
    }
    
    .about-text {
        font-size: 14px;
        margin-bottom: 16px;
    }
    
    .about-main-image {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 40px 0;
    }
    
    .about-title {
        font-size: 22px;
    }
    
    .about-text {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .btn-call-us {
        padding: 12px 24px;
        font-size: 13px;
    }
    
    .about-main-image {
        height: 250px;
    }
}
















/* Service section */
.services-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--blue-color);
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.service-card-wrapper {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.service-card-wrapper.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  /* transform: translateY(-10px); */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.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.2);
  overflow: hidden;
}

.service-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 29%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
  opacity: 1;
}

.service-icon {
  width: 100%;
  height: 60px;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 24px;
  transform: scale(0);
  transition: transform 0.3s ease 0.1s;
}

.service-card:hover .service-icon {
  transform: scale(1);
}

.service-content {
  padding: 25px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--blue-color);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}



.view-all-wrapper {
  text-align: center;
  margin-top: 30px;
}

.btn-view-all {
  display: inline-block;
  padding: 15px 30px;
  background: #7EBA2F;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  
  border-radius: 27px;
}

.btn-view-all:hover {
  
  background-color:#1D75BC;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(119, 211, 63, 0.3);
}

.no-services {
  text-align: center;
  padding: 60px 20px;
  background: white;
  border-radius: 10px;
  color: #666;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .service-img-wrapper {
    height: 250px;
  }
}


/* Estimate Section Styles */
/* Estimate Section Styles */
.estimate-section {
    padding: 80px 0;
    background: #ffffff;
}

.estimate-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.estimate-container {
    width: 100%;
}

.estimate-row {
    display: flex;
    align-items: stretch;
    gap: 50px;
}

.estimate-col {
    flex: 1;
}

/* Left Side - Form */
.estimate-col-form {
    flex: 0 0 45%;
    max-width: 45%;
    background: #EFFFDB;
    padding: 40px 35px;
    border-radius: 12px;
}

.estimate-form-wrapper {
    width: 100%;
}

.estimate-title {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    line-height: 1.3;
}

.estimate-subtitle {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 25px;
}

.estimate-form {
    width: 100%;
}

.form-group {
    margin-bottom: 15px;
}

.estimate-form input,
.estimate-form select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    color: #1e293b;
    background: #ffffff;
    transition: all 0.3s ease;
    outline: none;
}

.estimate-form input::placeholder {
    color: #9ca3af;
}

.estimate-form input:focus,
.estimate-form select:focus {
    border-color: #7EBA2F;
    box-shadow: 0 0 0 3px rgba(126, 186, 47, 0.15);
}

.estimate-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

/* Estimate Button */
.btn-estimate {
    display: inline-block;
    padding: 12px 28px;
    background: #7EBA2F;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(126, 186, 47, 0.3);
}

.btn-estimate:hover {
    background: #6fa528;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(126, 186, 47, 0.4);
}

.btn-estimate:active {
    transform: translateY(0);
}

/* Privacy Notice */
.privacy-notice {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 13px;
    color: #2d7dd9;
}

.privacy-notice svg {
    flex-shrink: 0;
}

/* Right Side - Image */
.estimate-col-image {
    flex: 0 0 50%;
    max-width: 50%;
}

.estimate-image-box {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border-radius: 12px;
    overflow: hidden;
}

.estimate-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .estimate-section {
        padding: 60px 0;
    }
    
    .estimate-row {
        gap: 40px;
    }
    
    .estimate-col-form {
        flex: 0 0 45%;
        max-width: 45%;
    }
    
    .estimate-col-image {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .estimate-title {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .estimate-section {
        padding: 50px 0;
    }
    
    .estimate-row {
        flex-direction: column;
        gap: 35px;
    }
    
    .estimate-col-form,
    .estimate-col-image {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .estimate-col-form {
        padding: 35px 28px;
    }
    
    .estimate-col-image {
        order: -1;
    }
    
    .estimate-image-box {
        min-height: 350px;
    }
    
    .estimate-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .estimate-section {
        padding: 40px 0;
    }
    
    .estimate-wrapper {
        padding: 0 15px;
    }
    
    .estimate-col-form {
        padding: 30px 22px;
    }
    
    .estimate-title {
        font-size: 22px;
    }
    
    .estimate-subtitle {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .estimate-form input,
    .estimate-form select {
        padding: 11px 14px;
        font-size: 13px;
    }
    
    .btn-estimate {
        padding: 11px 24px;
        font-size: 13px;
    }
    
    .privacy-notice {
        font-size: 12px;
    }
    
    .estimate-image-box {
        min-height: 280px;
    }
}













/* Fun Facts Section */
/* Fun Facts Section Styles */
.fun-facts-section {
    position: relative;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.fun-facts-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.container-1200 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.fun-facts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.fun-fact-item {
    padding: 20px;
}

.counter-number , .not-count {
    font-size: 64px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.counter-label {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .fun-facts-section {
        padding: 60px 0;
        background-attachment: scroll;
    }
    
    .fun-facts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .counter-number,.not-count {
        font-size: 52px;
    }
    
    .counter-label {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .fun-facts-section {
        padding: 50px 0;
    }
    
    .fun-facts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .counter-number,.not-count {
        font-size: 42px;
        margin-bottom: 12px;
    }
    
    .counter-label {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .fun-facts-section {
        padding: 40px 0;
    }
    
    .fun-facts-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .counter-number,.not-count {
        font-size: 48px;
    }
    
    .counter-label {
        font-size: 15px;
    }
}

/* funfacts end








/* =========================================
   CTA CSS STARTS
========================================= */
/* CTA Section Styles */
.cta-section {
    position: relative;
    padding: 70px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-title {
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.cta-subtitle {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

/* CTA Button */
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: #7EBA2F;
    border-color: #7EBA2F;
    color: #ffffff;
    transform: translateY(-2px);
  
}

.btn-cta svg {
    transition: transform 0.3s ease;
}

.btn-cta:hover svg {
    transform: rotate(-15deg);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .cta-section {
        padding: 60px 0;
        background-attachment: scroll;
    }
    
    .cta-title {
        font-size: 36px;
    }
    
    .cta-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-title {
        font-size: 30px;
    }
    
    .cta-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .btn-cta {
        padding: 12px 28px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .cta-subtitle {
        font-size: 15px;
    }
    
    .btn-cta {
        padding: 11px 24px;
        font-size: 12px;
    }
}
/* =========================================
   CTA CSS END
========================================= */









/* ============================================
   TESTIMONIALS SECTION STYLES
   ============================================ */

/* Testimonials Section Styles */
.testimonials-section {
    padding: 80px 0;
    background: #ffffff;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.section-divider {
    width: 50px;
    height: 3px;
    background: #1e293b;
    margin: 0 auto;
}

/* Testimonials Wrapper */
.testimonials-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Profiles Row */
.profiles-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.profile-item {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 3px solid #e2e8f0;
    background: #f1f5f9;
}

.profile-item:hover {
    transform: scale(1.05);
    border-color: #7EBA2F;
}

.profile-item.active {
    width: 110px;
    height: 110px;
    border-color: #7EBA2F;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(126, 186, 47, 0.3);
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Testimonial Content */
.testimonial-content {
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.testimonial-name {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.testimonial-location {
    font-weight: 500;
    color: #64748b;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    max-width: 750px;
    margin: 0 auto 25px;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.rating-label {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
}

.stars {
    display: flex;
    gap: 4px;
}

/* Dots Navigation */
.testimonials-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.testimonial-dot:hover {
    background: #9ca3af;
}

.testimonial-dot.active {
    background: #7EBA2F;
    transform: scale(1.2);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .profile-item {
        width: 65px;
        height: 65px;
    }
    
    .profile-item.active {
        width: 90px;
        height: 90px;
    }
    
    .testimonial-name {
        font-size: 20px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .profiles-row {
        gap: 12px;
    }
    
    .profile-item {
        width: 55px;
        height: 55px;
    }
    
    .profile-item.active {
        width: 75px;
        height: 75px;
    }
    
    .testimonial-name {
        font-size: 18px;
    }
    
    .testimonial-text {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .testimonial-dot {
        width: 10px;
        height: 10px;
    }
}







/* Offers Section */
/* Offers Section Styles */
.offers-section {
    padding: 80px 0;
    background: #ffffff;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.section-divider {
    width: 50px;
    height: 3px;
    background: #1e293b;
    margin: 0 auto;
}

/* Slider Wrapper */
.offers-slider-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.offers-slider {
    overflow: hidden;
    position: relative;
}

.offers-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
}

/* Offer Card */
.offer-card {
    flex: 0 0 calc((100% - 60px) / 3);
    min-width: 0;
}

.offer-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    transition: transform 0.5s ease;
}

.offer-card:hover .offer-image {
    transform: scale(1.03);
}

/* Dots Navigation */
.offers-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.dot:hover {
    background: #9ca3af;
}

.dot.active {
    background: #7EBA2F;
    transform: scale(1.2);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .offers-section {
        padding: 60px 0;
    }
    
    .offer-card {
        flex: 0 0 calc((100% - 30px) / 2);
    }
    
    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .offers-section {
        padding: 50px 0;
    }
    
    .offer-card {
        flex: 0 0 100%;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-header {
        margin-bottom: 35px;
    }
}

@media (max-width: 480px) {
    .offers-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}


/* ============================================
   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:  #7EBA2F;
}

.blog-card-custom:hover .blog-underline-custom {
  background:  #7EBA2F;
}

/* ============================================
   READ ARTICLE BUTTON STYLES
   ============================================ */

.blog-read-more {
  margin-top: 20px;
}

.read-article-btn {
  display: inline-block;
  color: #333;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  padding-right: 25px;
}

.read-article-btn::afterr {
  content: '→';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.blog-card-custom:hover .read-article-btn {
  color:  #7EBA2F;
}

.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;
  }
}