
    :root {
      --primary-color: #4cb034;
      --secondary-color: #33C710;
      --text-color: #333;
      --bg-color: #fff;
      --dark-bg: #121212;
      --dark-text: #eee;
      
    }

    body.dark-mode {
      --text-color: var(--dark-text);
      --bg-color: var(--dark-bg);
      background: var(--bg-color);
      color: var(--text-color);
    }

    body {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      margin: 0;
      scroll-behavior: smooth;
      color: var(--text-color);
      background: var(--bg-color);
      overflow-x: hidden;

    }

    header {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
      color: white;
      background: transparent;
      font-family: 'Arial', sans-serif;
      transition: transform 0.4s ease;
      border-bottom: 1px solid rgba(255,255,255,0.2);
    }

    header.hidden {
      transform: translateY(-100%);
    }

    .nav-container {
      max-width: 90%;
      margin: 0 auto;
      padding: 1px 24px;
    }

    .top-bar {
      display: flex;
      justify-content: space-between;
      align-items: center;

    }

    .logo {
      
      display: flex;
      align-items: center;
      font-size: 22px;
      font-weight: 700;
    }

    .logo img {
      height: 100px;
      width: 350px;

    }

    .top-actions {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .phone i {
      margin-right: 6px;
    }

    .request-quote {
      background: var(--primary-color);
      color: #fff;
      padding: 10px 18px;

      font-weight: 600;
      text-decoration: none;
    }

    .request-quote:hover {
      background: green;
    }

    #darkModeToggle {
      background: none;
      border: none;
      color: white;
      font-size: 18px;
      cursor: pointer;
    }
/* Main nav styling */
.custom-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;
  justify-content: end;
}

.custom-nav li {
  position: relative;
}

.custom-nav a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.2s ease;
}

.custom-nav a:hover {
  color: var(--primary-color);
}

/* Dropdown styling */
.custom-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 380px;
  padding: 25px 20px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  display: none;
  z-index: 999;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.custom-submenu:hover .custom-dropdown {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Dropdown columns */
.dropdown-columns {
  display: flex;
  gap: 50px;
}

.dropdown-column {
  flex: 1;
}

.dropdown-column h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--secondary-color);
  text-transform: uppercase;
}

.custom-dropdown a {
  display: block;
  padding: 10px 0;
  color: var(--primary-color);
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.custom-dropdown a:last-child {
  border-bottom: none;
}

.custom-dropdown a:hover {
  color: green;
  padding-left: 5px;
  background: rgba(34, 155, 4, 0.05);
  border-radius: 4px;
}

.custom-submenu:hover > a i {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

/* Dropdown title */
.dropdown-title {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 15px;
  text-transform: uppercase;
}

/* Company dropdown style */
.company-dropdown {
  min-width: 220px;
  padding: 15px 20px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.company-dropdown .dropdown-column {
  flex: none;
}

.company-dropdown h4 {
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.company-dropdown a {
  display: block;
  padding: 8px 0;
  color: var(--primary-color);
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.company-dropdown a:last-child {
  border-bottom: none;
}

.company-dropdown a:hover {
  color: green;
  padding-left: 5px;
  background: rgba(34, 155, 4, 0.05);
  border-radius: 4px;
}

    .hamburger {
      display: none;
      font-size: 22px;
      cursor: pointer;
      color: #fff;
    }

    .mobile-menu {
      position: fixed;
      top: 0;
      right: -280px;
      width: 260px;
      height: 100%;
      background: var(--primary-color);
      transition: right 0.3s ease;
      z-index: 2000;
      display: flex;
      flex-direction: column;
      gap: 10px;

    }

    .mobile-menu a {
      display: block;
      padding: 12px;
      color: #fff;
      text-decoration: none;
      border-radius: 6px;
    }

    .mobile-menu a:hover {
      background: var(--secondary-color);
    }

    .menu-item {
      color: #fff;
      font-weight: 600;
      padding: 12px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .mobile-submenu {
      display: none;
      flex-direction: column;
      padding-left: 10px;
    }

    .mobile-submenu.active {
      display: flex;
    }

    .mobile-submenu a {
      font-weight: 400;
      font-size: 14px;
    }

    .mobile-top {
      display: flex;
      flex-direction: column;
      gap: 12px;
      padding-bottom: 16px;
      margin-bottom: 16px;
      border-bottom: 1px solid rgba(255,255,255,0.2);
    }

    .mobile-top .phone {
      color: #fff;
      font-size: 14px;
      text-align: center;
    }

    .mobile-top .request-quote {
      background: var(--secondary-color);
      color: #fff;
      padding: 10px 16px;
      border-radius: 30px;
      font-weight: 600;
      text-align: center;
    }

    .mobile-top .request-quote:hover {
      background: green;
    }

    @media (max-width: 768px) {
      .custom-nav { display: none; }
      .hamburger { display: block; }
      .top-actions > .phone, .top-actions > .language, .top-actions > .request-quote, .top-actions > #darkModeToggle {
        display: none;
      }
    }

    .hero {
      position: relative;
      overflow: hidden;
    }

    .slides {
      display: flex;
      width: 400%;
      height: 800px;
      transition: transform 0.5s ease;
    }

    .slide {
      width: 25%;
      height: 100%;
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      justify-content: start;
      text-align: start;
      color: white;
      position: relative;
      padding-left: 60px;
    }

    .slide::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
    }

    .slide-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      padding: 24px;
    }

    .slide-content h1 {
      font-size: 53px;
      font-weight: bold;
      margin-bottom: 24px;
    }

    .slide-content p {
      font-size: 20px;
      margin-bottom: 32px;
    }

    .cta-button {
      background-color: var(--primary-color);
      color: white;
      font-size: 16px;
      font-weight: 500;
      padding: 12px 24px;
      text-decoration: none;
    }

    .cta-button:hover {
      background-color: green;
    }

.slider-nav {
  display: flex;
  width: 90%;
  background: rgba(0, 0, 0, 0.224);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  border-radius: 8px; /* Optional for nicer edges */
}


.nav-tab {
  flex: 1;
  min-height: 200px; /* Fixed height for consistency */
  text-align: center;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-tab span {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px; /* spacing between icon and text */
  line-height: 1.4;
  text-transform: capitalize;
}

.nav-tab i {
  font-size: 40px;
}

.nav-tab.active {
  background: #4cb034; /* Highlight color */
}

.nav-tab:hover {
  background: rgba(255, 255, 255, 0.15);
}


    .prev, .next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0, 0, 0, 0);
      color: white;
      border: none;
      padding: 16px;
      cursor: pointer;
      font-size: 24px;
      z-index: 1;
      border-radius: 50%;
    }

    .prev:hover, .next:hover {
      background: var(--primary-color);
    }

    .prev { left: 24px; }
    .next { right: 24px; }

    @media (max-width: 1024px) {
      .slides { height: 550px; }
      .slide-content h1 { font-size: 40px; }
      .slide-content p { font-size: 18px; }
      .nav-tab { padding: 16px 28px; font-size: 15px; }
    }

    @media (max-width: 768px) {
      .slides { height: 330px; }
      .slide { padding-left: 20px; justify-content: center; text-align: center; }
      .slide-content { max-width: 90%; padding: 16px; }
      .slide-content h1 { font-size: 28px; }
      .slide-content p { font-size: 15px; }
      .cta-button { padding: 10px 20px; font-size: 14px; }
      .slider-nav { display: none; }
      .prev, .next { display: none; }
    }

    @media (max-width: 480px) {
      .slides { height: 420px; }
      .slide-content h1 { font-size: 22px; margin-bottom: 16px; }
      .slide-content p { font-size: 14px; margin-bottom: 20px; }
      .cta-button { font-size: 13px; padding: 8px 16px; }
    }

    .hero-section {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      align-items: center;
      gap: 50px;
      padding: 80px 10%;
    }

    .hero-text h1 {
      font-size: 2.6rem;
      font-weight: 700;
      line-height: 1.3;
      margin-bottom: 30px;
    }

    .vision-box {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 20px;
      transition: opacity 0.6s ease-in-out;
    }

    .vision-box i {
      font-size: 1.8rem;
      color: var(--text-color);
    }

    .vision-box h3 {
      margin: 0;
      font-weight: 600;
      font-size: 1.1rem;
    }

    .vision-text {
      font-size: 0.95rem;
      color: #666;
    }

    .signature {
      font-family: cursive;
      font-size: 1.3rem;
      margin-top: 25px;
    }

    .description p {
      font-size: 0.95rem;
      line-height: 1.7;
      color: #555;
    }

    .quote-form {
      margin-top: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      max-width: 300px;
    }

    .quote-form h3 {
      font-size: 1.2rem;
      margin-bottom: 10px;
    }

    .quote-form input, .quote-form select, .quote-form button {
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 4px;
      font-size: 0.9rem;
    }

    .quote-form button {
      background: var(--primary-color);
      color: white;
      cursor: pointer;
    }

    .quote-form button:hover {
      background: green;
    }

    .image-wrapper {
      position: relative;
      max-width: 500px;
    }

    .image-wrapper img {
      width: 100%;
      border-radius: 6px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .image-wrapper img:hover {
      transform: scale(1.03);
      transition: transform 0.3s ease;
    }

    .orange-box {
      position: absolute;
      bottom: -20px;
      right: -20px;
      background: var(--primary-color);
      width: 120px;
      height: 120px;
      z-index: -1;
    }

    .more-link {
      display: inline-block;
      margin-top: 10px;
      color: var(--primary-color);
      font-weight: 600;
      font-size: 0.95rem;
      text-decoration: none;
    }

    .more-link:hover {
      text-decoration: underline;
    }

    @media (max-width: 900px) {
      .hero-section {
        grid-template-columns: 1fr;
        padding: 50px 6%;
        text-align: center;
      }
      .hero-text h1 { font-size: 2rem; }
      .vision-box { justify-content: center; }
      .image-wrapper { margin: 30px auto 0; }
      .orange-box { display: none; }
    }

    @media (max-width: 600px) {
      .hero-text h1 { font-size: 1.8rem; }
      .vision-text, .description p { font-size: 0.9rem; }
      .signature { font-size: 1.1rem; }
    }

    .sustainability-section {
      padding: 60px 20px;
      background: #f9f9f9;
      text-align: center;
    }

    .sustainability-section h2 {
      font-size: 28px;
      color: var(--primary-color);
    }

    .sustainability-section p {
      font-size: 16px;
      max-width: 800px;
      margin: 0 auto 20px;
    }


/* Banner */
.banner {
  width: 100%;
  min-height: 600px;
  overflow: hidden;
}

/* Container */
.banner-container {
  display: flex;
  min-height: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

/* Left Content */
.banner-content {
  flex: 1 1 50%;
  background-color: #33C710;
  color: #fff;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.banner-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.banner-content p {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  line-height: 1.6;
  opacity: 0.9;
  max-width: 90%;
}

/* Fancybox Grid */
.fancybox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.fancybox-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.fancybox-item:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.2);
}

.fancybox-item:focus-within {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.fancybox-item i {
  font-size: 40px;
  margin-bottom: 10px;
  color: #fff;
}

.fancybox-item h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 5px;
  display: inline-flex; /* Aligns number and % symbol */
  align-items: baseline;
}

.fancybox-item h3::after {
  content: attr(data-suffix); /* Displays % for counters with data-suffix */
  font-size: 0.8em; /* Slightly smaller % symbol */
  margin-left: 2px;
}

.fancybox-item p {
  font-size: clamp(0.8rem, 1.5vw, 0.875rem);
  margin: 0;
  color: #fff;
  opacity: 0.85;
}

/* Right Video/Image */
.banner-video {
  flex: 1 1 50%;
  position: relative;
  overflow: hidden;
}

.banner-video .bg-img {
  width: 100%;
  height: 100%;
}

.banner-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.banner-video img:hover {
  transform: scale(1.05);
}

/* Responsive for tablets and mobile */
@media (max-width: 992px) {
  .banner {
    min-height: 500px;
  }

  .banner-container {
    flex-direction: column;
    min-height: 500px;
  }

  .banner-content,
  .banner-video {
    flex: 1 1 100%;
    min-height: 250px;
  }

  .banner-content {
    padding: 30px;
    text-align: center;
  }

  .banner-content p {
    max-width: 100%;
  }

  .fancybox-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .banner {
    min-height: 400px;
  }

  .banner-content h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .banner-content p {
    font-size: clamp(0.8rem, 2.5vw, 0.95rem);
  }

  .fancybox-item i {
    font-size: 32px;
  }
}

/* Fallback for older browsers */
@supports not (display: grid) {
  .fancybox-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .fancybox-item {
    flex: 1 1 100%;
  }
}

    
    .services-section {
      padding: 60px 20px;
      background: var(--bg-color);
      text-align: center;
    }

    .services-section .subtitle {
      color: var(--primary-color);
      font-weight: bold;
      margin-bottom: 10px;
      font-size: 18px;
    }

    .services-section .title {
      font-size: 30px;
      font-weight: bold;
      line-height: 1.4;
      margin-bottom: 50px;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
      justify-items: center;
    }

    .service-item {
      text-align: center;
      padding: 25px 15px;
      border-radius: 8px;
      max-width: 300px;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .service-item:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

    .service-icon {
      font-size: 40px;
      color: var(--primary-color);
      margin-bottom: 15px;
    }

    .service-item h3 {
      font-size: 18px;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .service-item p {
      font-size: 14px;
      color: #777;
      line-height: 1.5;
    }

    .award-item {
      background: var(--primary-color);
      color: #fff;
    }

    .award-item h3, .award-item p {
      color: #fff;
    }

    @media (max-width: 1200px) {
      .services-grid { grid-template-columns: repeat(3, 1fr); }
    }

    @media (max-width: 768px) {
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .services-section .title { font-size: 26px; }
    }

    @media (max-width: 480px) {
      .services-grid { grid-template-columns: 1fr; }
      .services-section .title { font-size: 22px; }
    }

    .testimonials-section {
      padding: 60px 20px;
      background: var(--bg-color);
      text-align: center;
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    .testimonial-item {
      padding: 20px;
      border: 1px solid #eee;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .testimonial-item p {
      font-style: italic;
      font-size: 14px;
    }

    .testimonial-item span {
      display: block;
      margin-top: 10px;
      font-weight: bold;
      font-size: 14px;
    }

    .blog-teaser {
      padding: 60px 20px;
      background: #f9f9f9;
      text-align: center;
    }

    .blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }

    .blog-item img {
      width: 100%;
      border-radius: 8px;
      margin-bottom: 10px;
    }

    .blog-item h3 {
      font-size: 18px;
      margin: 10px 0;
    }

    .blog-item p {
      font-size: 14px;
      color: #777;
    }

    .blog-item a {
      color: var(--primary-color);
      text-decoration: none;
      font-weight: 600;
    }

    .blog-item a:hover {
      text-decoration: underline;
    }

/* ========================
   Footer CSS
========================== */
.footer-top {
    padding-top: 100px;
    padding-bottom: 80px;
    background-color: #f8f9fa;
    border-top: 1px solid #e0e0e0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

/* About Widget */
.footer__widget-about {
    flex: 2 1 300px;
}

.footer__widget-about img {
    max-width: 150px;
    margin-bottom: 20px;
}

.footer__widget-about p {
    color: #6c757d;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 15px;
}

.footer__widget-about p a {
    color: #555;
    text-decoration: none;
}

.footer__widget-about p a:hover {
    text-decoration: underline;
}

/* Navigation Widgets */
.footer__widget-nav {
    flex: 1 1 180px;
    min-width: 180px;
}

.footer__widget-title {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 30px;
}

.footer__widget-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__widget-nav ul li a {
    display: block;
    color: #6c757d;
    font-size: 14px;
    line-height: 32px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__widget-nav ul li a:hover {
    color: #4cb034;
}

/* Footer Bottom */
.footer-bottom {
    padding: 30px 50px;
    background-color: #fff;
    border-top: 1px solid #e0e0e0;
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer__copyright {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.footer__copyright span {
    color: #6c757d;
    font-size: 14px;
}

.footer__copyright-links {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0 15px 0 0;
}

.footer__copyright-links li a {
    display: block;
    position: relative;
    color: #6c757d;
    font-size: 14px;
    line-height: 32px;
    margin-right: 15px;
    padding-right: 15px;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.footer__copyright-links li a:after {
    content: "|";
    position: absolute;
    right: 0;
    color: #6c757d;
}

.footer__copyright-links li:last-child a:after {
    display: none;
}

.footer__copyright-links li a:hover {
    color: #4cb034;
}

.social__icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social__icons a {
    font-size: 20px;
    color: #6c757d;
    transition: color 0.3s ease;
}

.social__icons a:hover {
    color: #4cb034;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.gallery-grid img {
    width: 100%;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.1);
    cursor: pointer;
}
.newsletter {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.newsletter input {
    flex: 1;
    padding: 12px;
    border: 1px solid  green;
    border-radius: 4px;
    background: white;
    color: black;
}

.newsletter input::placeholder {
    color: #333;
}

.newsletter button {
    padding: 12px 16px;
    background: #33C710;
    color: white;
    border: none;
}

.newsletter button:hover {
    background: green
    ;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-row {
        flex-direction: column;
        gap: 40px;
    }

    .footer__widget-about,
    .footer__widget-nav {
        flex: 1 1 100%;
    }

    .footer-bottom-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}


    #backToTop {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: var(--primary-color);
      color: white;
      border: none;
      padding: 15px;

      cursor: pointer;
      display: none;
      z-index: 1000;
    }

    #backToTop.show {
      display: block;
    }

    .fade-up, .fade-left, .fade-right {
      opacity: 0;
      transition: all 1s ease-out;
    }

    .fade-up { transform: translateY(40px); }
    .fade-left { transform: translateX(-50px); }
    .fade-right { transform: translateX(50px); }

    .fade-up.show, .fade-left.show, .fade-right.show {
      opacity: 1;
      transform: translate(0, 0);
    }
    @media(max-width: 992px){
    .split-container {
      grid-template-columns: 1fr !important;
    }
  }



      /* Wrapper */
.quote-track-section {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

/* Tabs */
.tabs {
  display: flex;
  margin-bottom: 20px;
}
.tab {
  flex: 1;
  padding: 15px;
  border: none;
  background: #333;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  transition: 0.3s;
}
.tab.active {
  background: #33C710;
}

/* Content Layout */
.tab-content {
  display: none;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}
.tab-content.active {
  display: grid;
}

/* Form */
.form-container form {
  background: #fff;
  padding: 25px;
  border: 1px solid #eee;
}
.form-container h3 {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin-bottom: 20px;
}
input, select {
  padding: 12px;
  border: 1px solid #ddd;
  font-size: 14px;
}
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* Submit Button */
.submit-btn {
  width: 100%;
  padding: 15px;
  background: #222;
  color: #fff;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}
.submit-btn:hover {
  background: #000;
}

/* Help Widget */
.help-widget {
  background: #33C710;
  color: #fff;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}
.help-widget h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.help-widget p {
  font-size: 14px;
  margin-bottom: 20px;
}
.contact-btn {
  background: #000;
  color: #fff;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}

/* Responsive */
@media (max-width: 768px) {
  .tab-content.active {
    grid-template-columns: 1fr;
  }
}







/* Service Section */
/* Service Section */
.services {
  padding: 100px 20px;
  font-family: 'Arial', sans-serif;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Heading Layout */
.heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 60px;
}

.heading-left {
  flex: 1;
}

.heading-right {
  flex: 1;
}

/* Subtitle */
.heading2__subtitle {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: #4cb034; /* green */
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  display: block;
}

/* Title */
.heading2__title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.3;
  color: #33C710;
}

/* Description */
.heading2__desc {
  font-size: 17px;
  line-height: 1.7;
  color: #666;
}


/* Description */
.heading2__desc {
  font-size: 17px;
  line-height: 1.7;
  color: #666;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
  margin-bottom: 60px;
}

/* Service Item */
.service-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.35s ease;
   height: 400px;
 
}

.service-item:hover {
  transform: translateY(-6px);
}

.service__img img {
  width: 100%;
   height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.service-item:hover .service__img img {
  transform: scale(1.1);
}

/* Content Overlay */
/* Service Content */
.service__content {
  position: absolute;
  bottom: 25px;
  left: 25px;
  right: 25px;
  color: #fff;
  text-align: left;
  z-index: 2;
  transition: all 0.4s ease;
}

/* Icon always visible */
.service__icon {
  font-size: 40px;
  margin-bottom: 8px;
  color: #fff;
}

/* Title always visible */
.service__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
  line-height: 1.2;
}

/* Description hidden by default */
/* Description hidden by default */
.service__desc {
  font-size: 15px;
  line-height: 1.5;
  color: #eee;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(15px);
  transition: all 0.45s ease;
  margin-bottom: 10px;
}

/* Read More link hidden by default */
.btn-link {
  color: #33C710;
  font-weight: bold;
  font-size: 15px;
  text-decoration: none;
  position: relative;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.45s ease;
}

/* Hover effect - animate desc + button */
.service-item:hover .service__desc,
.service-item:hover .btn-link {
  opacity: 1;
  max-height: 200px;
  transform: translateY(0);
}


/* CTA Button */
.services-cta {
  text-align: center;
}

.btn-primary {
  display: inline-block;
  background: #33C710;
  color: #fff;
  padding: 14px 36px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #28a745;
}

/* Responsive: stack heading on mobile */
@media (max-width: 768px) {
  .heading {
    flex-direction: column;
    text-align: left;
  }
}
