/* ========================
   Fonts & Base Styles
======================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

html {
  scroll-behavior: smooth;
}

body, html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', 'Poppins', sans-serif;
  background-color: #fff;
  color: #333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ========================
   Testimonial Section
======================== */
.testimonial-slider * {
  font-family: 'Inter', sans-serif;
}

.testimonial-slider {
  background-color: #f8f9fa;
}

/* ========================
   About Section
======================== */
.about-us-section {
  padding: 4rem 1rem;
  background: #fdfdfd;
}

.about-us-section .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}

.about-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 5 / 5;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #ec6b1e;
  color: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  font-weight: bold;
  font-family: sans-serif;
}

.experience-badge .years {
  font-size: 28px;
  font-weight: 700;
  display: block;
}

.experience-badge .label {
  font-size: 14px;
  line-height: 1.4;
}

.about-text-col .subtitle {
  color: #ec6b1e;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.about-text-col .title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-text-col .description {
  font-size: 16px;
  color: #333;
  margin-bottom: 30px;
  max-width: 600px;
}

/* Features Row */
.features-row {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 15px;
}

.circle-icon {
  width: 60px;
  height: 60px;
  background: #f4f4f4;
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-label {
  font-weight: 600;
  font-size: 15px;
}

/* Bullet List */
.service-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 30px 0;
}

.service-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  color: #333;
}

.service-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ec6b1e;
  font-weight: bold;
}

/* Signature */
.signature {
  font-family: 'Pacifico', cursive;
  font-size: 28px;
  color: #444;
  margin-top: 20px;
}

/* ========================
   Services Section
======================== */
.services-section {
  background-color: #fff;
  padding: 4rem 1rem;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 2rem;
  width: 100%;
  max-width: 340px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.service-card:hover {
  background-color: #fff;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
}

.service-card:hover h3 {
  color: #ec6b1e;
}

.bulb-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

/* ========================
   Responsive Styles
======================== */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .features-row {
    flex-direction: column;
  }

  .about-text-col .title {
    font-size: 28px;
  }

  .experience-badge {
    bottom: -10px;
    left: 10px;
    padding: 20px 16px;
  }
}

@media (max-width: 768px) {
  .services-grid {
    flex-direction: column;
    align-items: center;
  }

  .service-card {
    max-width: 90%;
  }
}


.stats-section {
  background-color: #000;
  padding: 5rem 1rem;
  color: #fff;
}

.stats-section .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.stats-section .stat-item:hover {
  transform: translateY(-5px);
}

.stats-section .stat-icon {
  background-color: #ec6b1e;
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.stats-section .stat-item:hover .stat-icon {
  transform: scale(1.1);
}

.stats-section .stat-icon i {
  color: #fff;
  font-size: 1.75rem;
}

.stats-section h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stats-section p {
  font-size: 1rem;
  color: #ccc;
}

/* Responsive */
@media (min-width: 640px) {
  .stats-section .stat-icon {
    width: 5rem;
    height: 5rem;
  }
  .stats-section .stat-icon i {
    font-size: 2rem;
  }
  .stats-section h3 {
    font-size: 2.5rem;
  }
  .stats-section p {
    font-size: 1.1rem;
  }
}




.why-choose-section {
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon fill='%23f9f9f9' points='0,20 20,0 40,20 20,40'/%3E%3C/svg%3E");
}

.why-choose-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  line-height: 1.75;
}

.why-choose-section h2 {
  font-size: 2.5rem;
  color: #111827;
}

.why-choose-section p {
  color: #666666; /* Tailwind's gray-600 */
}

.why-choose-icon {
  width: 48px;
  height: 48px;
  margin-right: 1rem; /* space between icon and text */
  flex-shrink: 0;
}



/* FAQ Section */
.faq-section {
  padding: 60px 20px;
  background: #fff;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

/* Adjust FAQ Grid gap for desktop */
.faq-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* reduced from 40px to 20px */
  align-items: flex-start;
  position: relative;
}

/* Nudge image right slightly on desktop */
@media (min-width: 769px) {
  .faq-image {
    margin-right: -30px;
  }
}

.faq-image {
  flex: 1 1 50%;
  margin-right: -40px; /* Pull image closer to FAQ content */
  z-index: 1;
}

.faq-images .image-top img {
  width: 50%;
  max-width: 500px;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.faq-images .image-bottom img {
  width: 100%;
  margin-top: 20px;
  border-radius: 1rem;
}

.faq-content {
  flex: 1 1 50%;
  z-index: 2;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
}

.faq-subtitle {
  color: #f16727;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
}

.faq-title {
  font-size: 32px;
  font-weight: 700;
  margin: 10px 0;
  color: #111;
}

.faq-description {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.accordion-item {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  overflow: hidden;
  border-top: 1px solid #ddd;
}

.accordion-btn {
  padding: 18px 24px;
  font-weight: 600;
  font-size: 15px;
  width: 100%;
  color: #111;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
}

.accordion-btn:after {
  content: '+';
  position: absolute;
  right: 24px;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-btn:after {
  content: '−';
  transform: rotate(180deg);
}

.accordion-item.active .accordion-btn {
  background: #f16727;
  color: #fff;
}

.accordion-content {
  padding: 0 24px 20px 24px;
  color: #444;
  font-size: 14px;
  line-height: 1.6;
  display: none;
}

.accordion-item.active .accordion-content {
  display: block;
  background-color: #f9f9f9;
  border-top: 1px solid #eee;
}

/* MOBILE: Overlay content on image */
@media (max-width: 768px) {
  .faq-grid {
    flex-direction: column;
  }

  .faq-image {
    order: 1;
  }

  .faq-content {
    order: 2;
    margin-top: -130px;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-left: -5%;
    margin-right: -5%;
    position: relative;
    z-index: 2;
  }

  .faq-images .image-top img,
  .faq-images .image-bottom img {
    max-width: 100%;
    border-radius: 1rem;
  }
}

.faq-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 80px;
  border-top: 1px solid #eee;
  padding-top: 40px;
}

.faq-logos img {
  height: 40px;
  object-fit: contain;
  max-width: 120px;
  opacity: 0.85;
  transition: opacity 0.3s;
}

.faq-logos img:hover {
  opacity: 1;
}



@media (max-width: 768px) {
  .faq-image
  .faq-grid {
    flex-direction: column;
  }

  .faq-title {
    font-size: 28px;
  }

  .faq-description {
    font-size: 15px;
  }
}


/* Default: Hide Swiper on large screens */
.services-swiper {
  display: none;
}

/* Mobile: Show Swiper, hide Grid */
@media (max-width: 768px) {
  .services-swiper {
    display: block;
  }

  .services-grid {
    display: none;
  }

  .swiper-slide {
    width: auto;
  }

  .service-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    margin-right: 16px;
    width: 85%;
  }
}



/* Core Section Styles */
.help-section {
  background-color: #f9f9f9;
  padding: 4rem 1rem;
  position: relative;
}

.help-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  max-width: 1200px;
  margin: auto;
  gap: 3rem;
}

/* Text Column */
.help-text {
  flex: 1;
  z-index: 2;
  position: relative;
}

.help-subtitle {
  color: #ec6b1e;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.help-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.help-desc {
  font-size: 1rem;
  color: #555;
  margin-bottom: 2rem;
}

/* Emergency Contact Card (Styled like Screenshot) */
.emergency-contact {
  display: flex;
  align-items: center;
  background-color: #fff;
  padding: 1.25rem 1.5rem;
  border-left: 5px solid #ec6b1e;
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  gap: 1rem;
  max-width: 350px;
  transition: all 0.3s ease;
}

.emergency-contact .icon {
  font-size: 2rem;
  color: #f9c000;
  flex-shrink: 0;
}

.contact-info span {
  display: block;
  font-size: 0.875rem;
  color: #888;
}

.contact-info strong {
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
}

/* Image Column */
.help-image {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.help-image img {
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .help-container {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
  }

  .help-text {
    background-color: rgba(255, 255, 255, 0.95);
    margin-top: -280px;
    padding: 2rem 1.5rem;
    border-radius: 1.25rem;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    width: 90%;
  }

  .help-title {
    font-size: 1.75rem;
  }

  .emergency-contact {
    margin: 0 auto;
    justify-content: center;
  }

  .help-image img {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .help-text {
    margin-top: -220px;
    padding: 1.5rem 1rem;
  }

  .help-title {
    font-size: 1.5rem;
  }

  .emergency-contact {
    flex-direction: column;
    gap: 0.75rem;
  }

  .contact-info strong {
    font-size: 1.25rem;
  }
}

/* Latest News Section */
.latest-news-section {
  background-color: #fff;
  padding: 5rem 1rem;
}

.container {
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Section Header */
.section-header {
  margin-bottom: 3.5rem;
}

.section-subtitle {
  color: #ec6b1e;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
}

/* News Grid */
.news-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
  justify-content: space-between;
}

/* News Card */
.news-card {
  flex: 0 0 calc(32% - 1rem); /* Slightly tighter width */
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.news-card:hover {
  transform: translateY(-6px);
}

.news-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* Content */
.news-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-date {
  font-size: 0.85rem;
  color: #ec6b1e;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.news-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.6rem;
  transition: color 0.3s ease;
  line-height: 1.4;
}

.news-summary {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: auto;
  line-height: 1.6;
}

.news-card:hover .news-title {
  color: #ec6b1e;
}

/* Meta */
.news-meta {
  margin-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: #666;
}

.read-more {
  color: #111;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #ec6b1e;
}

/* Responsive */
@media (max-width: 991px) {
  .news-grid {
    flex-wrap: wrap;
  }

  .news-card {
    flex: 0 0 48%;
  }
}

@media (max-width: 768px) {
  .news-card {
    flex: 0 0 100%;
  }

  .section-title {
    font-size: 2rem;
  }
}

/* Footer and Newsletter Styling */
.newsletter {
  background: #ffffff;
  color: #fff;
  padding: 20px 20px;
  text-align: center;
}

.newsletter .card {
  max-width: 600px;
  margin: 0 auto;
  background: #1a1a1a;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.newsletter h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.newsletter-form input[type="email"] {
  padding: 15px;
  border-radius: 6px;
  border: none;
  flex: 1 1 250px;
  font-size: 1rem;
}

.newsletter-form button {
  background: #ec6b1e;
  color: #fff;
  border: none;
  padding: 15px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: #d65b16;
}

footer.site-footer {
  background: #0a0a0a;
  color: #ccc;
  font-family: 'Segoe UI', sans-serif;
  padding: 60px 20px 20px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-brand {
  flex: 1 1 250px;
}

.footer-brand .logo {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #fff;
}

.footer-column {
  flex: 1 1 180px;
}

.footer-column h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  line-height: 2;
}

.footer-column ul a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul a:hover {
  color: #ec6b1e;
}

.footer-column address {
  font-style: normal;
  line-height: 1.8;
}

.footer-socials {
  margin: 30px 0;
  text-align: center;
}

.footer-socials a {
  display: inline-block;
  color: #ccc;
  font-size: 1.2rem;
  margin: 0 12px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-socials a:hover {
  color: #ec6b1e;
  transform: scale(1.2);
}

.footer-socials svg {
  height: 1.2rem;
  vertical-align: middle;
  fill: #ccc;
  transition: fill 0.3s ease, transform 0.3s ease;
}

.footer-socials svg:hover {
  fill: #ec6b1e;
  transform: scale(1.2);
}

.footer-bottom {
  border-top: 1px solid #222;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.9rem;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  margin: 0 8px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ec6b1e;
}

.go-top {
  display: inline-block;
  margin-top: 10px;
  color: #ec6b1e;
  font-weight: 600;
  text-decoration: none;
}

@media (max-width: 768px) {
  .footer-grid {
    flex-direction: column;
  }
}




.swiper-pagination-testimonials .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #f97316; /* Orange-500 */
  opacity: 0.4;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.swiper-pagination-testimonials .swiper-pagination-bullet:hover {
  opacity: 0.7;
}

.swiper-pagination-testimonials .swiper-pagination-bullet-active {
  width: 14px;
  height: 14px;
  background-color: #f97316; /* Orange-500 */
  opacity: 1;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #f97316;
  transform: scale(1.1);
}




.swiper-pagination-news .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #f97316; /* Orange-500 */
  opacity: 0.4;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.swiper-pagination-news .swiper-pagination-bullet:hover {
  opacity: 0.7;
}

.swiper-pagination-news .swiper-pagination-bullet-active {
  width: 14px;
  height: 14px;
  background-color: #f97316; /* Orange-500 */
  opacity: 1;
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px #f97316;
  transform: scale(1.1);
}



.bg-orange-icon {
  background-image: url("data:image/svg+xml,%3Csvg fill='none' height='64' viewBox='0 0 24 24' width='64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 2L3 14H12L11 22L21 10H13L13 2Z' stroke='%23ffffff' stroke-opacity='0.05' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: 120px;
}


.services-swiper {
  overflow: hidden;
  margin-right: -16px; /* prevents right slide cutoff */
}

.swiper-wrapper {
  padding-right: 16px;
}

.service-card {
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  text-align: center;
}

.bulb-icon {
  margin-bottom: 16px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 767px) {
  .services-grid {
    display: none !important;
  }

  .swiper-slide {
    width: calc(100% - 32px); /* fix width for 1.1 slidesPerView */
    margin-right: 16px;
  }
}

/* Fix overflow for swiper slides */
.services-section {
  overflow-x: hidden;
}

.services-swiper {
  margin-left: -8px;  /* Half of spaceBetween */
  margin-right: -8px; /* Half of spaceBetween */
  padding-left: 8px;  /* Same as half spaceBetween */
  padding-right: 8px;
}

.services-swiper .swiper-slide {
  box-sizing: border-box;
}

.services-section {
  overflow-x: hidden;
}

.services-swiper {
  padding-left: 1rem;
  padding-right: 1rem;
}

.swiper-slide.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 8px 16px rgba(0,0,0,0.05);
  max-width: 90%;
  margin: 0 auto;
}

.swiper-pagination-services .swiper-pagination-bullet {
  background-color: #ec6b1e;
  opacity: 0.6;
}

.swiper-pagination-services .swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.2);
}





.accordion-btn {
  background: none;
  border: none;
  font-size: 1.125rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0.75rem 0;
  color: #1f2937; /* Gray-800 */
  transition: color 0.3s ease;
}

.accordion-btn:hover {
  color: #ea580c; /* Orange-600 */
}

.accordion-content[hidden] {
  display: none;
}
