* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}
.hero-wrap hero-wrap-2 {
  background-position: left;
}
.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;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
}

.slider-item.active {
  opacity: 1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  width: 100%;
}

.slider-text {
  display: flex;
  align-items: center;
  height: 100%;
}

.slider-content {
  color: white;
  max-width: 600px;
}

.backbars,
.backbars-yellow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.backbars span,
.backbars-yellow span {
  display: inline-block;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}
.backbars-yellow {
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--green-color);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.backbars span:nth-child(1),
.backbars-yellow span:nth-child(1) {
  width: 35px;
}

.backbars span:nth-child(2),
.backbars-yellow span:nth-child(2) {
  width: 15px;
}

.backbars span:nth-child(3),
.backbars-yellow span:nth-child(3) {
  width: 8px;
}

.backbars-yellow span {
  background: #fcb041;
}

.justify-center {
  justify-content: center;
}
.hero-text h1,.hero-text h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.slider-item.active .hero-text h1,
.slider-item.active .hero-text h2 {
  opacity: 1;
  transform: translateY(0);
}

.hero-text p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease 0.2s;
}

.slider-item.active .hero-text p {
  opacity: 1;
  transform: translateY(0);
}

.btn {
  display: inline-block;
  padding: 15px 35px;
  background: #fcb041;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.slider-item.active .btn {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease 0.4s;
}

.btn:hover {
  background: #662d91;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(102, 45, 145, 0.466);
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 30px;
  right: 100px;
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dot {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.slider-dot.active {
  background: #fcb041;
  border-color: white;
  transform: scale(1.2);
}

.slider-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-slider {
    height: 500px;
  }

  .hero-text h1, .hero-text h2 {
    font-size: 32px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .slider-controls {
    bottom: 20px;
    right: 50%;
    transform: translateX(50%);
  }
}

@media (max-width: 480px) {
  .hero-slider {
    height: 400px;
  }

  .hero-text h1, .hero-text h2 {
    font-size: 28px;
  }

  .hero-text p {
    font-size: 14px;
  }

  .btn {
    padding: 12px 25px;
    font-size: 14px;
  }
}

/* ---------- about section (existing) ---------- */
.justify-center {
  justify-content: center;
}
.about-section {
  padding: 80px 0;
  background: #fff;
}
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.about-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.about-col {
  flex: 0 0 50%;
  /* max-width: 50%; */
  padding: 0 15px;
}
.about-col-image {
  order: 2;
}
.about-col-content {
  order: 1;
}
.about-image-wrapper {
  position: relative;
  height: 100%;
  min-height: 500px;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 5px solid var(--dark-blue);
}
.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
}
.about-content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 30px;
}
.about-title {
  font-size: 36px;
  font-weight: 700;
  color: black;
  margin-bottom: 25px;
  line-height: 1.3;
}
.about-text {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  /* margin-bottom: 40px; */
}
.counters-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.counter-col {
  flex: 0 0 33.333%;
  max-width: 33.333%;
  padding: 0 10px;
}
.counter-block {
  text-align: center;
  padding: 20px;
}
.counter-number {
  font-size: 42px;
  font-weight: 700;
  color: var(--green-color);
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}
.counter-label {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
  line-height: 1.4;
}

/* ---------- help section (modified for hover effect) ---------- */
.help-section {
  padding: 60px 20px 80px;
  background-color: #fff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.container-1200 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-tag {
  margin-bottom: 15px;
}
.section-tag p {
  color: var(--green-color);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  display: flex;
  text-transform: uppercase;
  margin-bottom: 20px;
  gap: 8px;
}
.help-title {
  font-size: 38px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}
.help-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 50px;
  max-width: 900px;
}

/* help wrapper: relative container for sidebar & horizontal bar */
.help-wrapper {
  position: relative;
  padding-left: 40px;
  transition: all 0.2s;
}

/* ---------- VERTICAL SIDEBAR (gradient + hover override) ---------- */
.help-sidebar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 2px;
  /* default gradient: purple 0-30%, gray 30-100% */
  background: #662D91;
  transition: background 0.25s ease;
}

/* ---------- HORIZONTAL TOP BAR (default gray) ---------- */


/* ----- help list & items ----- */
.help-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.help-item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 20px 0;
  cursor: default;
  transition: all 0.2s;
}
.help-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: #662D91;
  transition: color 0.25s;
}
.help-icon img {
  width: 100%;
  height: 100%;
}
.help-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  transition: color 0.25s ease;
}
.help-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

.help-wrapper:hover .help-sidebar {
  background: #662D91 !important; /* full purple (overrides gradient) */
}


/* additionally, on individual item hover we also color its title (optional but nice) */
.help-item:hover .help-content h3 {
  color: #662D91;
}

/* keep active style (if you have .active class) but we also use hover */
/* .help-item.active .help-content h3 {
  color: #662d91;
} */

/* ---- responsive (keep as is) ---- */
@media (max-width: 768px) {
  .help-wrapper {
    padding-left: 40px;
  }

  .help-title {
    font-size: 32px;
  }
  .help-content h3 {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .help-wrapper {
    padding-left: 30px;
  }
  .help-sidebar {
    width: 3px;
  }
  .help-item {
    flex-direction: column;
    gap: 15px;
  }

}

/* backbars-yellow (used in about) */
.backbars-yellow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--green-color);
  text-transform: uppercase;
  font-size: 18px;
  margin-bottom: 15px;
}
.backbars-yellow span {
  display: inline-block;
  width: 30px;
  height: 3px;
  background: var(--green-color);
  border-radius: 4px;
}
.backbars-yellow span:nth-child(2) {
  width: 20px;
}
.backbars-yellow span:nth-child(3) {
  width: 10px;
}

/* Fun Facts Section */
.fun-facts-section {
  background-color: var(--green-color);
  padding: 50px 0;
  width: 100%;
}

.facts-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.facts-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.fact-item {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  justify-content: center;
}

.fact-icon {
  flex-shrink: 0;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fact-icon svg {
  width: 100%;
  height: 100%;
}

.fact-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.fact-number-row {
  display: flex;
  align-items: baseline;
  line-height: 1;
}

.fact-number {
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.fact-plus {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-left: 2px;
}

.fact-label {
  font-size: 15px;
  color: #fff;
  margin-top: 6px;
  font-weight: 400;
}

/* Responsive Design */
@media (max-width: 992px) {
  .facts-wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }

  .fact-item {
    flex: 0 0 calc(50% - 40px);
  }
}

@media (max-width: 576px) {
  .fun-facts-section {
    padding: 40px 0;
  }

  .facts-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .fact-item {
    flex: 0 0 100%;
  }

  .fact-number {
    font-size: 36px;
  }

  .fact-plus {
    font-size: 26px;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .about-col {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .about-col-image {
    order: 1;
    margin-bottom: 40px;
  }

  .about-col-content {
    order: 2;
  }

  .about-image-wrapper {
    min-height: 400px;
  }

  .counter-col {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 576px) {
  .about-title {
    font-size: 28px;
  }

  .about-text {
    font-size: 15px;
  }

  .counter-col {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .counter-number {
    font-size: 36px;
  }

  .counter-label {
    font-size: 14px;
  }

  .about-image-wrapper {
    min-height: 300px;
  }
}
/* =========================================
   Base & Container
   ========================================= */
.services-section {
  padding: 40px 20px;
  background-color: #f8f9fa;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  box-sizing: border-box;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* =========================================
   Header Styles
   ========================================= */
.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.header-border {
  display: block;
  width: 60px;
  height: 3px;
  background-color: #6b21a8;
  margin: 0 auto 15px;
}

.header-subtitle {
  font-size: 1rem;
  color: #6b21a8;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-weight: 600;
}

.header-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
  text-transform: uppercase;
}

/* =========================================
   CSS Grid Layout
   ========================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .header-title {
    font-size: 2rem;
  }
}

/* =========================================
   Service Card
   ========================================= */
.service-item {
  display: flex;
  justify-content: center;
}

.service-link {
  text-decoration: none;
  display: block;
  width: 100%;
}

.service-card {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(107, 33, 168, 0.2);
}

/* Full Length Image Wrapper */
.service-image-wrapper {
  position: relative;
  width: 100%;
  /* height: 280px; */
  z-index: 2;
  overflow: hidden;
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image {
  transform: scale(1.08);
}

/* Hover Overlay */
.service-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: #fcb041;
  display: flex;
  align-items: center;
  justify-content: center;

  /* Hidden by default */
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 3;
}

/* Show overlay on hover */
.service-card:hover .service-overlay {
  opacity: 1;
  visibility: visible;
}

.overlay-content {
  text-align: center;
  padding: 20px;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.service-card:hover .overlay-content {
  transform: translateY(0);
}

.overlay-title {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: black;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0px 0px 2px 0px white;
  transition: all;
  transition-delay: 0.2s;
}

.overlay-arrow {
  display: inline-block;
  color: #fbbf24;
  font-size: 2rem;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.service-card:hover .overlay-arrow {
  transform: translateX(10px);
}

/* Empty State */
.no-services {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px;
  color: #6b7280;
  font-size: 1.1rem;
}

/* CTA Banner */
.cta-banner {
  padding: 30px 0;
  background: #fcb041;
  margin-bottom: 40px;
}

.cta-banner > .container-1200 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.cta-banner > .container-1200 > div > h2 {
  color: white;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.cta-banner > .container-1200 > div > p {
  color: white;
  font-size: 14px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-banner > .container-1200 > div > p::before {
  content: "⏱";
  font-size: 16px;
}

@media (max-width: 768px){
  .cta-banner > .container-1200 {
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }
  .cta-banner > .container-1200 > div > p {
    justify-content: center;
    align-items: center;
  }

}

.btn-cta {
  background: #662d91;
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-cta:hover {
  background: #5a2578;
  transform: translateY(-2px);
}

/* ===== Testimonial Section ===== */
.testimonial-section {
  padding: 60px 0 80px;
  background: #fff;
}

.container-1200 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-tag p {
  display: flex;
  align-items: center;
  /* justify-content: center; */
  gap: 8px;
  font-size: 18px;
  font-weight: 600;
  color: #6b4c9a;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.backbars-yellow span {
  display: inline-block;
  width: 30px;
  height: 3px;
  background: #f0a500;
  border-radius: 2px;
}

.backbars-yellow span:nth-child(2) {
  width: 15px;
  opacity: 0.6;
}

.backbars-yellow span:nth-child(3) {
  width: 8px;
  opacity: 0.3;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #222;
  margin: 0;
}

/* ===== Testimonial Background ===== */
.testimonial-bg {
  position: relative;
  width: 100%;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

/* ===== White Card ===== */
.testimonial-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 40px 50px;
  max-width: 850px;
  width: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* ===== Slider Dots (Top Right) ===== */
.testimonial-dots {
  position: absolute;
  top: 20px;
  right: 25px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.testimonial-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.3s;
}

.testimonial-dots .dot.active {
  background: #f0a500;
  transform: scale(1.2);
}

.testimonial-dots .dot:hover {
  background: #f0a500;
}

/* ===== Testimonial Slider Container ===== */
.testimonial-slider {
  position: relative;
  overflow: hidden;
}

/* ===== Testimonial Item ===== */
.testimonial-item {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.testimonial-item.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== Testimonial Wrapper ===== */
.testimonial-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* ===== Left Side - Client Image ===== */
.testimonial-left {
  flex-shrink: 0;
}

.testimonial-user {
  position: relative;
  width: 100px;
  height: 100px;
}

.testimonial-user img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e8e8e8;
}

/* Verified Badge (Tick on Circle) */
.testimonial-user .verified {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 28px;
  height: 28px;
  background: #f0a500;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  border: 2px solid #fff;
}

.verified svg {
  stroke: #000000 !important; /* Explicit stroke color */
}

/* ===== Right Side - Review ===== */
.testimonial-right {
  flex: 1;
}

.testimonial-review {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin: 0 0 15px 0;
  font-style: italic;
}

.testimonial-name {
  font-size: 20px;
  font-weight: 700;
  color: #6b4c9a;
  margin: 0;
}

/* ===== Navigation Arrows ===== */
.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #5b2c8e;
  transition: all 0.3s ease;
  z-index: 10;
}

.testimonial-nav:hover {
  background: #5b2c8e;
  color: #fff;
  box-shadow: 0 5px 20px rgba(91, 44, 142, 0.3);
}

.testimonial-nav.prev {
  left: -22px;
}

.testimonial-nav.next {
  right: -22px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .testimonial-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-card {
    padding: 30px 25px;
  }

  .testimonial-dots {
    top: 12px;
    right: 15px;
  }

  .testimonial-nav {
    display: none;
  }

  .section-title {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .testimonial-user {
    width: 80px;
    height: 80px;
  }

  .testimonial-user img {
    width: 80px;
    height: 80px;
  }

  .testimonial-review {
    font-size: 14px;
  }

  .testimonial-name {
    font-size: 18px;
  }
}

/* Offers Section Layout */
.offers-section {
  padding: 60px 20px;
  background-color: #fff;
}

.offers-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

/* 4 Boxes in a Row */
.offers-row {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}

.offer-box {
  flex: 1;
  display: block;
  text-decoration: none;
  position: relative;
}

.offer-img-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
}

.offer-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

/* Hover Overlay - Light Yellow */
.offer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 184, 77, 0.5); /* Light yellow/orange tint */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

/* Show overlay and arrow on hover */
.offer-box:hover .offer-overlay {
  opacity: 1;
}

.offer-arrow {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  color: #ffffff; /* Arrow ka color (text ke sath match karega) */
  transition:
    transform 0.3s ease,
    color 0.3s ease;
  opacity: 1;
}

/* Hover par arrow thoda right move karega (Optional) */
.offer-arrow:hover {
  transform: translateX(4px);
  color: #fcb041; /* Yellow on hover */
}

/* Responsive: Stack on smaller screens if needed, but keep row on desktop */
@media (max-width: 992px) {
  .offers-row {
    flex-wrap: wrap;
  }
  .offer-box {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 576px) {
  .offer-box {
    flex: 0 0 100%;
  }
}

/* ===== Blogs Section ===== */
.blogs-faq-wrapper {
  padding: 60px 0;
  background: #fff;
}

.container-custom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Section Header */
.section-header-custom {
  text-align: center;
  margin-bottom: 50px;
}

.section-title-custom {
  font-size: 36px;
  font-weight: 700;
  color: #222;
  text-transform: uppercase;
  margin: 0;
}

/* Blogs Grid - 3 Columns */
.blogs-grid-custom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Blog Card */
.blog-card-custom {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.blog-card-custom:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* Blog Image */
.blog-image-wrapper {
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.blog-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Blog Content */
.blog-content-custom {
  padding: 25px 20px 30px;
}

.blog-title-custom {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  text-transform: uppercase;
  margin: 0 0 12px 0;
  line-height: 1.4;
}

.blog-excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0 0 20px 0;
}

/* Read More Link with Black Arrow */
.blog-read-more-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.blog-read-more-custom:hover {
  color: #5b2c8e;
}

.blog-read-more-custom i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.blog-read-more-custom:hover i {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 992px) {
  .blogs-grid-custom {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .blogs-grid-custom {
    grid-template-columns: 1fr;
  }

  .section-title-custom {
    font-size: 28px;
  }
}

/* ===== Center the Button ===== */
.view-all-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2px;
  margin-top: 30px;
  /* margin-bottom: 40px; */
}

/* ===== Button Styling ===== */
.btn-view-all {
     display: inline-block;
    background-color: #fcb041;
    color: #ffffff;
    padding: 13px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 400;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

/* ===== Hover Effect - Turns Black ===== */
.btn-view-all:hover {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
  transform: translateY(-2px); 
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
