.elementor-20 .elementor-element.elementor-element-20a121b{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-20 .elementor-element.elementor-element-20a121b:not(.elementor-motion-effects-element-type-background), .elementor-20 .elementor-element.elementor-element-20a121b > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#002509;}.elementor-20 .elementor-element.elementor-element-32f58ec{--display:flex;}.elementor-20 .elementor-element.elementor-element-7e3e9b2{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-20 .elementor-element.elementor-element-c636df8{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-20 .elementor-element.elementor-element-fc4c969{--display:flex;}.elementor-20 .elementor-element.elementor-element-b6e06ee{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-20 .elementor-element.elementor-element-5ae7c42{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-20 .elementor-element.elementor-element-0bb616a{--display:flex;}.elementor-20 .elementor-element.elementor-element-1190e16{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-20 .elementor-element.elementor-element-ba17e69{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-20 .elementor-element.elementor-element-04b62c5{--display:flex;}.elementor-20 .elementor-element.elementor-element-f7d69e3{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-20 .elementor-element.elementor-element-879ad65{--display:flex;}.elementor-20 .elementor-element.elementor-element-ee6bb57{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-20 .elementor-element.elementor-element-a55e2bd{--display:flex;}.elementor-20 .elementor-element.elementor-element-1bea8a3{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-20 .elementor-element.elementor-element-658b835{--display:flex;}.elementor-20 .elementor-element.elementor-element-4ca1ed5{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-20 .elementor-element.elementor-element-b86a6d4{--display:flex;}.elementor-20 .elementor-element.elementor-element-f4fb9b4{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-20 .elementor-element.elementor-element-9d2dea0{--display:flex;}.elementor-20 .elementor-element.elementor-element-fbc0891{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-20 .elementor-element.elementor-element-127c5d7{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-20 .elementor-element.elementor-element-cd5b59d{--display:flex;}.elementor-20 .elementor-element.elementor-element-66c3f96{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-20 .elementor-element.elementor-element-10222a9{--display:flex;}/* Start custom CSS for html, class: .elementor-element-59f60a0 *//* HERO */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* SLIDES */
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

/* IMAGE FIX (NO BLACK BARS) */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* FIXED */
  animation: zoomPremium 8s ease-in-out;
}

/* CINEMATIC OVERLAY */
.hero-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.2),
    rgba(0,0,0,0.5)
  );
  z-index: 3;
}

/* ZOOM ANIMATION */
@keyframes zoomPremium {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

/* CTA CENTER */
.hero-cta {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  z-index: 5;
}

/* BUTTON BASE */
.btn {
  padding: 16px 34px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}

/* PRIMARY (STRONG) */
.btn.primary {
  background: #f4b400;
  color: #000;
  box-shadow: 0 10px 30px rgba(244,180,0,0.4);
}

/* SECONDARY (GLASS STYLE) */
.btn.secondary {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}

/* HOVER EFFECT */
.btn:hover {
  transform: translateY(-4px) scale(1.02);
}

/* SECONDARY HOVER */
.btn.secondary:hover {
  background: #f4b400;
  color: #000;
  border-color: #f4b400;
}

/* PROGRESS BAR PREMIUM */
.progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(to right, #f4b400, #ffd54f);
  z-index: 6;
}

/* MOBILE */
@media(max-width:768px){
  .hero-slider {
    height: 65vh;
  }

  .hero-cta {
    flex-direction: column;
    bottom: 20px;
  }

  .btn {
    width: 220px;
    text-align: center;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-318c818 */<script>
let slides = document.querySelectorAll(".slide");
let progress = document.querySelector(".progress-bar");

let index = 0;
let duration = 5000;
let timer;

function startSlider() {
  progress.style.transition = "none";
  progress.style.width = "0%";

  setTimeout(() => {
    progress.style.transition = `width ${duration}ms linear`;
    progress.style.width = "100%";
  }, 50);

  timer = setTimeout(nextSlide, duration);
}

function nextSlide() {
  slides.forEach(slide => slide.classList.remove("active"));
  index = (index + 1) % slides.length;
  slides[index].classList.add("active");
  startSlider();
}

/* PAUSE ON HOVER */
document.querySelector(".hero-slider").addEventListener("mouseenter", () => {
  clearTimeout(timer);
  progress.style.transition = "none";
});

document.querySelector(".hero-slider").addEventListener("mouseleave", () => {
  startSlider();
});

/* INIT */
startSlider();
</script>/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-e9fee8a */.about-premium {
  padding: 100px 0;
  background: #f5f5f5;
  background-image: url("https://www.transparenttextures.com/patterns/cubes.png");
  overflow: hidden;
}

.about-container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* IMAGE */
.about-image {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 1.5s ease;
}

/* Zoom effect on hover */
.about-image:hover img {
  transform: scale(1.2);
}

/* Overlay */
.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(15,45,31,0.7),
    transparent
  );
}

/* CONTENT */
.about-content {
  flex: 1;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

/* Animate when visible */
.about-content.active {
  opacity: 1;
  transform: translateY(0);
}

.tag {
  color: #f4b400;
  letter-spacing: 2px;
  font-size: 14px;
}

.title {
  font-size: 42px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 15px 0;
  color: #0f2d1f;
}

.text {
  color: #555;
  margin-bottom: 15px;
  line-height: 1.7;
}

/* FEATURES */
.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 30px;
  margin: 25px 0;
  font-weight: 500;
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 14px 32px;
  background: #f4b400;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #d99c00;
  transform: translateY(-3px);
}

/* RESPONSIVE */
@media(max-width: 900px){
  .about-container {
    flex-direction: column;
  }

  .title {
    font-size: 28px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-22fc798 */.product-section {
  padding: 100px 0;
  background: #f7f7f7;
  background-image: url("https://www.transparenttextures.com/patterns/cubes.png");
}

.container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 40px;
  margin-bottom: 40px;
  text-transform: uppercase;
  color: #0f2d1f;
}

/* TABS */
.tabs {
  text-align: center;
  margin-bottom: 50px;
}

.tab {
  padding: 10px 20px;
  margin: 5px;
  border: none;
  background: #eaeaea;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.tab.active,
.tab:hover {
  background: #f4b400;
  color: #000;
}

/* GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.product-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  transition: 0.3s;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* IMAGE */
.image-wrap {
  position: relative;
  overflow: hidden;
}

.image-wrap img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  transition: transform 0.6s ease;
}

/* ZOOM */
.product-card:hover img {
  transform: scale(1.15);
}

/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15,45,31,0.7),
    transparent
  );
  opacity: 0;
  transition: 0.4s;
}

.product-card:hover .overlay {
  opacity: 1;
}

/* TEXT */
.product-card h3 {
  margin: 15px 0 5px;
  color: #0f2d1f;
}

.product-card p {
  font-size: 14px;
  color: #666;
  padding: 0 15px;
}

/* BUTTON */
.quote-btn {
  display: inline-block;
  margin: 15px 0 20px;
  padding: 10px 20px;
  background: #f4b400;
  color: #000;
  text-decoration: none;
  font-weight: 600;
}

.quote-btn:hover {
  background: #d99c00;
}

/* CTA */
.product-cta {
  text-align: center;
  margin-top: 60px;
}

.main-btn {
  padding: 14px 40px;
  background: #f4b400;
  color: #000;
  font-weight: 700;
  text-decoration: none;
}

/* RESPONSIVE */
@media(max-width: 992px){
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 600px){
  .product-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== PRODUCT CARD IMPROVEMENTS ===== */

/* Fix card height consistency */
.product-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}

/* Premium hover */
.product-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* IMAGE FIX */
.image-wrap {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f9f9;
}

.image-wrap img {
  max-width: 90%;
  max-height: 160px;
  object-fit: contain;
  transition: transform 0.6s ease;
}

/* Smooth zoom */
.product-card:hover img {
  transform: scale(1.15);
}

/* OVERLAY IMPROVED */
.overlay {
  background: linear-gradient(
    to top,
    rgba(15,45,31,0.85),
    rgba(15,45,31,0.4),
    transparent
  );
  opacity: 0;
  transition: 0.4s ease;
}

.product-card:hover .overlay {
  opacity: 1;
}

/* TEXT SPACING FIX */
.product-card h3 {
  font-size: 20px;
  margin: 15px 0 5px;
  letter-spacing: 1px;
}

.product-card p {
  padding: 0 20px;
  font-size: 14px;
  line-height: 1.6;
  min-height: 80px;
}

/* BUTTON IMPROVEMENT */
.quote-btn {
  margin-top: auto;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.quote-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* ===== TABS PREMIUM LOOK ===== */
.tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.tab {
  padding: 12px 24px;
  font-size: 14px;
  border-radius: 4px;
  background: #f4b400;
  color: #000;
  font-weight: 600;
  transition: all 0.3s ease;
}

.tab:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.tab.active {
  background: #0f2d1f;
  color: #fff;
}

/* ===== GRID ANIMATION ===== */
.product-card {
  opacity: 1;
  transform: scale(1);
  transition: all 0.4s ease;
}

.product-card.hide {
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
  position: absolute;
}

/* CTA BUTTON */
.main-btn {
  border-radius: 4px;
  transition: all 0.3s ease;
}

.main-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-350013e */.services-section {
  padding: 100px 0;
  background: #f7f7f7;
  background-image: url("https://www.transparenttextures.com/patterns/cubes.png");
}

.container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 40px;
  text-transform: uppercase;
  margin-bottom: 60px;
  color: #0f2d1f;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.service-card {
  background: #fff;
  padding: 30px 20px;
  text-align: center;
  border-radius: 12px;
  transition: 0.4s;
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* IMAGE */
.service-img {
  width: 140px;
  height: 140px;
  margin: auto;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.service-card:hover img {
  transform: scale(1.1);
}

/* TITLE */
.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #0f2d1f;
}

/* TEXT */
.service-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

/* LIST */
.service-card ul {
  text-align: left;
  padding-left: 20px;
  margin-bottom: 20px;
}

.service-card ul li {
  font-size: 14px;
  margin-bottom: 8px;
  color: #333;
}

/* BUTTON */
.service-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #f4b400;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.service-btn:hover {
  background: #d99c00;
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media(max-width: 992px){
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 600px){
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== SECTION REFINEMENT ===== */
.services-section {
  position: relative;
}

.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: #f4b400;
}

/* ===== CARD PREMIUM LOOK ===== */
.service-card {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.4s ease;
  overflow: hidden;
}

/* Top accent line */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: #f4b400;
  transition: 0.4s;
}

.service-card:hover::before {
  width: 100%;
}

/* Hover depth */
.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* ===== IMAGE ENHANCEMENT ===== */
.service-img {
  border: 6px solid #f4b400;
  transition: all 0.4s ease;
}

.service-card:hover .service-img {
  transform: scale(1.05);
  box-shadow: 0 0 0 6px rgba(244,180,0,0.2);
}

/* ===== TITLE POLISH ===== */
.service-card h3 {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===== TEXT IMPROVEMENT ===== */
.service-card p {
  font-size: 14px;
  line-height: 1.6;
}

/* ===== LIST STYLE ===== */
.service-card ul {
  list-style: none;
  padding-left: 0;
}

.service-card ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
}

/* Custom bullet */
.service-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #f4b400;
  font-weight: bold;
}

/* ===== BUTTON PREMIUM ===== */
.service-btn {
  border-radius: 4px;
  transition: all 0.3s ease;
}

.service-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* ===== GRID SPACING FIX ===== */
.services-grid {
  gap: 40px;
}

/* ===== RESPONSIVE POLISH ===== */
@media(max-width: 992px){
  .service-card {
    padding: 25px 15px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-a7a7062 *//* ===== SECTION ===== */
.why-section {
  padding: 100px 0;
  background: #f7f7f7;
  background-image: url("https://www.transparenttextures.com/patterns/cubes.png");
}

/* LAYOUT */
.why-container {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* LEFT CONTENT */
.why-content {
  flex: 1;
}

.tag {
  color: #f4b400;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.why-content h2 {
  font-size: 40px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #0f2d1f;
}

.desc {
  color: #555;
  margin-bottom: 25px;
  line-height: 1.7;
}

/* POINTS GRID */
.why-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 25px;
}

/* POINT STYLE */
.point {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  color: #222;
}

/* CUSTOM ICON (CHECK) */
.point::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #f4b400;
  font-weight: bold;
}

/* BUTTON */
.why-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 30px;
  background: #f4b400;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.why-btn:hover {
  background: #d99c00;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* RIGHT IMAGE */
.why-image {
  flex: 1;
  position: relative;
}

.why-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* IMAGE OVERLAY (SUBTLE BRAND FEEL) */
.why-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15,45,31,0.2),
    transparent
  );
  border-radius: 12px;
}

/* RESPONSIVE */
@media(max-width: 992px){
  .why-container {
    flex-direction: column;
  }

  .why-content h2 {
    font-size: 28px;
  }

  .why-points {
    grid-template-columns: 1fr;
  }
}

/* ===== SECTION DEPTH ===== */
.why-section {
  position: relative;
  overflow: hidden;
}

/* soft background glow */
.why-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(244,180,0,0.08);
  filter: blur(120px);
  top: -100px;
  right: -100px;
}

/* ===== CONTENT ANIMATION ===== */
.why-content {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.why-content.active {
  opacity: 1;
  transform: translateY(0);
}

/* stagger points */
.point {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.why-content.active .point {
  opacity: 1;
  transform: translateY(0);
}

.why-content.active .point:nth-child(1){transition-delay:0.1s;}
.why-content.active .point:nth-child(2){transition-delay:0.2s;}
.why-content.active .point:nth-child(3){transition-delay:0.3s;}
.why-content.active .point:nth-child(4){transition-delay:0.4s;}
.why-content.active .point:nth-child(5){transition-delay:0.5s;}
.why-content.active .point:nth-child(6){transition-delay:0.6s;}
.why-content.active .point:nth-child(7){transition-delay:0.7s;}
.why-content.active .point:nth-child(8){transition-delay:0.8s;}

/* ===== IMAGE PREMIUM ===== */
.why-image {
  position: relative;
}

/* image zoom */
.why-image img {
  transition: transform 1.5s ease;
}

.why-image:hover img {
  transform: scale(1.05);
}

/* floating badge */
.why-image::before {
  content: "27+ Years Experience";
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #f4b400;
  color: #000;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  z-index: 2;
}

/* ===== GLASS EFFECT CARD ===== */
.why-content {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.05);
}

/* ===== BUTTON ENHANCEMENT ===== */
.why-btn {
  position: relative;
  overflow: hidden;
}

.why-btn::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0,0,0,0.1);
  transition: 0.3s;
}

.why-btn:hover::after {
  width: 100%;
}

/* ===== HOVER MICRO INTERACTION ===== */
.point:hover {
  transform: translateX(5px);
  color: #0f2d1f;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-0451679 *//* SECTION */
.clients-section {
  padding: 100px 0;
  text-align: center;
  background: #f7f7f7;
  background-image: url("https://www.transparenttextures.com/patterns/cubes.png");
}

/* TITLE */
.clients-section .section-title {
  font-size: 36px;
  margin: 15px 0;
  color: #0f2d1f;
  text-transform: uppercase;
}

.clients-section .tag {
  color: #f4b400;
  letter-spacing: 2px;
}

/* DESCRIPTION */
.clients-desc {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #555;
  line-height: 1.7;
}

/* LOGO WRAPPER */
.clients-logos {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.08);
  transition: 0.4s;
}

/* IMAGE */
.clients-logos img {
  width: 100%;
  max-width: 1000px;
  object-fit: contain;
  transition: 0.4s;
}

/* HOVER EFFECT */
.clients-logos:hover img {
  transform: scale(1.02);
}

/* OPTIONAL: subtle lift */
.clients-logos:hover {
  transform: translateY(-5px);
}

/* RESPONSIVE */
@media(max-width: 768px){
  .clients-section .section-title {
    font-size: 26px;
  }

  .clients-logos {
    padding: 20px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-d374c4e *//* SECTION */
.coverage-section {
  padding: 100px 0;
  background: #f7f7f7;
  background-image: url("https://www.transparenttextures.com/patterns/cubes.png");
}

/* LAYOUT */
.coverage-container {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.coverage-left,
.coverage-right {
  flex: 1;
}

/* TAG */
.tag {
  color: #f4b400;
  font-size: 14px;
  letter-spacing: 2px;
}

/* HEADINGS */
.coverage-left h2,
.coverage-right h2 {
  font-size: 36px;
  margin: 15px 0;
  color: #0f2d1f;
  text-transform: uppercase;
}

/* TEXT */
.desc {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.7;
}

/* AREAS */
.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}

.areas-list span {
  background: #fff;
  padding: 10px 18px;
  border-radius: 4px;
  border: 1px solid #eee;
  font-weight: 500;
  transition: 0.3s;
}

.areas-list span:hover {
  background: #f4b400;
  color: #000;
}

/* SUB TITLE */
.sub-title {
  margin-bottom: 10px;
  font-size: 18px;
  color: #0f2d1f;
}

/* LINKS */
.service-links {
  list-style: none;
  padding: 0;
}

.service-links li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.service-links li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #f4b400;
}

/* INDUSTRY GRID */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

/* INDUSTRY CARD */
.industry-card {
  background: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
}

.industry-card:hover {
  background: #0f2d1f;
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* RESPONSIVE */
@media(max-width: 992px){
  .coverage-container {
    flex-direction: column;
  }
}

.areas-list a {
  display: inline-block;
  background: #fff;
  padding: 10px 18px;
  border-radius: 4px;
  border: 1px solid #eee;
  font-weight: 500;
  text-decoration: none;
  color: #000;
  transition: 0.3s;
}

/* Hover effect */
.areas-list a:hover {
  background: #f4b400;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-0743f26 *//* SECTION */
.process-section {
  padding: 100px 0;
  background: #f7f7f7;
  background-image: url("https://www.transparenttextures.com/patterns/cubes.png");
  text-align: center;
}

/* TITLE */
.section-title {
  font-size: 40px;
  margin-bottom: 60px;
  color: #0f2d1f;
  text-transform: uppercase;
}

.tag {
  color: #f4b400;
  letter-spacing: 2px;
}

/* TIMELINE */
.timeline {
  position: relative;
}

/* LINE */
.timeline-line {
  position: absolute;
  top: 40px;
  left: 0;
  width: 0%;
  height: 3px;
  background: #f4b400;
  transition: width 1.5s ease;
}

/* GRID */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  position: relative;
}

/* STEP */
.step {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
  background: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  position: relative;
}

/* STEP ACTIVE */
.step.active {
  opacity: 1;
  transform: translateY(0);
}

/* NUMBER */
.step-number {
  width: 60px;
  height: 60px;
  margin: auto;
  background: #f4b400;
  color: #000;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 15px;
}

/* HOVER */
.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* RESPONSIVE */
@media(max-width: 992px){
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline-line {
    display: none;
  }
}

@media(max-width: 600px){
  .process-grid {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-376b56a *//* SECTION */
.cta-contact {
  position: relative;
  padding: 120px 0;
  background: #f7f7f7;
  background-image: url("https://www.transparenttextures.com/patterns/cubes.png");
  overflow: hidden;
}

/* SUBTLE BLUR IMAGE */
.cta-bg {
  position: absolute;
  inset: 0;
  background: url("https://rohilgenerator.com/wp-content/uploads/2026/04/silent-generator-on-rent.png") center/cover no-repeat;
  opacity: 0.08; /* VERY LIGHT */
  filter: blur(3px);
  z-index: 0;
}

/* CONTAINER */
.cta-contact-container {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
}

/* LEFT */
.cta-left {
  flex: 1;
}

.tag {
  color: #f4b400;
  letter-spacing: 2px;
  font-size: 14px;
}

.cta-left h2 {
  font-size: 42px;
  margin: 15px 0;
  color: #0f2d1f;
  text-transform: uppercase;
}

.cta-left p {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.7;
}

/* INFO */
.cta-info p {
  margin: 8px 0;
  font-weight: 500;
  color: #222;
}

/* FORM */
.cta-form {
  flex: 1;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.05);
}

.cta-form h3 {
  margin-bottom: 20px;
  color: #0f2d1f;
  text-transform: uppercase;
}

/* INPUTS */
.cta-form input,
.cta-form select,
.cta-form textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 13px;
  border-radius: 6px;
  border: 1px solid #eee;
  font-size: 14px;
  outline: none;
  transition: 0.3s;
}

/* INPUT FOCUS */
.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus {
  border-color: #f4b400;
  box-shadow: 0 0 0 2px rgba(244,180,0,0.1);
}

/* TEXTAREA */
.cta-form textarea {
  height: 100px;
}

/* BUTTON */
.cta-form button {
  width: 100%;
  padding: 14px;
  background: #f4b400;
  border: none;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 6px;
}

.cta-form button:hover {
  background: #d99c00;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* HOVER MICRO EFFECT */
.cta-form:hover {
  transform: translateY(-5px);
  transition: 0.4s;
}

/* MOBILE */
@media(max-width: 992px){
  .cta-contact-container {
    flex-direction: column;
    text-align: center;
  }

  .cta-left h2 {
    font-size: 28px;
  }
}

@media(max-width: 600px){
  .cta-info p {
    display: flex;
    justify-content: center;
    gap: 6px;
    font-size: 14px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-195f687 *//* CONTAINER */
.sticky-cta-container {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;

    display: flex;
    flex-direction: column;
    gap: 2px;

    background: rgba(15, 45, 31, 0.85); /* brand dark green */
    backdrop-filter: blur(8px);

    padding: 15px 10px;
    border-radius: 15px 0 0 15px;
    box-shadow: -4px 0 20px rgba(0,0,0,0.2);

    width: 80px;
    align-items: center;
}
.sticky-cta-container {
    background: rgba(255, 255, 255, 0.75); /* light transparent */
    backdrop-filter: blur(8px);
}
/* BUTTON */
.cta-button {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    color: #fff;
    padding: 12px 0;
    width: 100%;
    transition: all 0.3s ease;
}

/* CLICK EFFECT */
.cta-button:active {
    transform: scale(0.92);
}

/* ICON */
.cta-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    border-radius: 50%;
}

/* WHATSAPP */
.whatsapp-icon-bg {
    background-color: #25D366;
}

/* CALL */
.call-icon-bg {
    background-color: #f4b400; /* brand yellow */
}

/* TEXT */
.cta-text {
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.5px;
}

/* DIVIDER */
.divider {
    width: 70%;
    height: 1px;
    background: rgba(255,255,255,0.2);
}

/* SVG */
svg {
    width: 22px;
    height: 22px;
}

/* HOVER */
.cta-button:hover {
    transform: translateX(-5px);
}

/* MOBILE */
@media (max-width: 600px) {
    .sticky-cta-container {
        width: 65px;
        padding: 10px 5px;
    }

    .cta-text {
        font-size: 10px;
    }

    svg {
        width: 20px;
        height: 20px;
    }
}/* End custom CSS */