@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #1c1c1c;
  color: #fff;
}


html,
body {
  width: 100%;
  overflow-x: hidden;
}

/* ============================================================================================================================= */

/* SECTION */
.animated-section {
  position: relative;
  min-height: 100vh;
  background: url('/assets/images/banners/smart-app-bg.png') center/cover no-repeat;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* DARK OVERLAY */
.animated-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      rgba(10, 10, 10, 0.701),
      rgba(10, 10, 10, 0.701));
  z-index: 1;
}

/* CONTAINER */
.animated-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 8%;
  gap: 40px;
}

/* LEFT CONTENT */
.content-left {
  flex: 1;
  color: #fff;
}

.content-left h2 {
  font-size: 48px;
  line-height: 1.2;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.content-left h2 span {
  background: linear-gradient(90deg, #059747, #00aaff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 3s infinite linear;
}

.content-left p {
  margin: 20px 0;
  max-width: 570px;
  font-size: 15px;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.btn {
  padding: 14px 32px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(90deg, #125934, #78eb6b);
  color: #000;
  font-weight: bold;
  cursor: pointer;
}

.btn:hover {
  background: linear-gradient(90deg, #78eb6b, #125934);
}

/* RIGHT IMAGE */
.content-right {
  margin-top: 100px;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.content-right img {
  max-width: 500px;
  animation: floatPhone 4s ease-in-out infinite;
  filter: drop-shadow(0 30px 40px rgba(89, 88, 88, 0.687));
  transform: perspective(800px) rotateY(-12deg) rotateX(4deg);
  transition: transform 0.6s ease, filter 0.6s ease;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .animated-container {
    margin-top: 100px;
    flex-direction: column;
    text-align: center;
  }

  .content-right img {
    max-width: 260px;
    margin-top: -80px;
  }
}

@media (max-width: 576px) {
  .content-left h2 {
    font-size: 32px;
  }

  .content-left p {
    font-size: 14px;
  }
}

/* ========================================================================================================================== */

/* ================= SECTION ================= */
.smart-society-section {
  min-height: 100vh;
  background: #000;
  padding: 50px 90px 0px 0px;
  color: #fff;
  overflow: visible;
  padding-left: 6%;
  padding-bottom: 100px;
}

/* ================= CENTER HEADING ================= */
.section-heading {
  text-align: center;
  margin-bottom: 70px;
  margin-top: 30px;
}

.section-heading h2 {
  font-size: 38px;
  font-weight: 600;
  line-height: 1.2;
}

.section-heading h2 span {
  background: #5bb696;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ================= CONTENT WRAPPER ================= */
.smart-society-section .container {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  /* height: 100vh; */
}

/* LEFT */
.content-left {
  flex: 1;
}

/* FEATURE GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* CARD */
.feature-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 22px 25px;
  backdrop-filter: blur(12px);
  transition: 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.12);
}

/* ICON */
.icon-wrap {
  width: 54px;
  height: 54px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================= RIGHT IMAGE ================= */
.content-right-img::before {
  content: "";
  position: absolute;
  bottom: -10%;
  left: 50%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle,
      rgba(0, 255, 119, 0.35),
      transparent 70%);
  transform: translateX(-50%);
  filter: blur(90px);
  opacity: 0;
  z-index: 0;
}


.content-right-img {
  flex: 1;
  height: 330px;
  position: relative;
  overflow: visible;
  /* IMPORTANT: hide bottom 50% */
  display: flex;
  align-items: flex-end;
  justify-content: center;
}



/* SWITCH IMAGE */

.switch-wrap {
   position: absolute;
  bottom: -50%;

  /* 👉 FIXED */
  left: 50%;              /* center inside right container */
  transform: translateX(-50%);

  width: 100%;
  display: flex;
  justify-content: center;

  pointer-events: none;
}

.switch-img {
  width: 820px;
  max-width: 150%;
  filter: drop-shadow(0 50px 90px rgba(0, 0, 0, 0.95));
}

/* ================= RESPONSIVE ================= */
/* ===================== TABLET ===================== */
@media (max-width: 1024px) {

  .smart-society-section {
    padding-left: 4%;
    padding-right: 4%;
  }

  .smart-society-section .container {
    gap: 40px;
    height: auto !important;
  }

  .content-right-img {
    height: 360px;
  }

  .switch-img {
    width: 650px;
  }

}

/* ===================== SMALL TABLET ===================== */


/* ===================== MOBILE ===================== */
@media (max-width: 576px) {
  .section-heading h2 {
    font-size: 24px;
    line-height: 1.2;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card {
    padding: 18px 20px;
  }

  .content-right-img {
    height: 380px;
  }

  .switch-wrap {
    bottom: -35%;
  }

  .switch-img {
    width: 360px;
  }

}

/* ===================== VERY SMALL DEVICES ===================== */
@media (max-width: 400px) {

  .switch-img {
    width: 300px;
  }

  .content-right-img {
    height: 340px;
  }

}

/* ================= MOBILE FIX ================= */
@media (max-width: 900px) {

  .smart-society-section {
    padding-left: 5%;
    padding-right: 5%;
  }

  .smart-society-section .container {
    flex-direction: column;
    height: auto;
  }

  .content-left {
    width: 100%;
    z-index: 2;
  }

  .content-right-img {
    position: relative;
    width: 100%;
    height: auto;
    margin-top: -10px;
    overflow: visible;
  }

  .switch-wrap {
    position: relative;
    bottom: 0;
    left: 0;
    transform: none;
    width: 100%;
    justify-content: center;
  }

  .switch-img {
    width: 90%;
    max-width: 420px;
  }
}

@media (max-width: 900px) {
  .switch-img {
    opacity: 0;
    transform: translateY(80px) translateX(20px);
  }
}

@media (max-width: 900px) {

  .smart-society-section {
    min-height: auto;
    padding-bottom: 60px;
  }

  .mobile-carousel-section {
    margin-top: 40px;
  }

}


/* ======================================================================================================================== */
/* ================= SECTION ================= */
.mobile-carousel-section {
  min-height: 100vh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ================= SWIPER ================= */
.mobileSwiper {
  width: 100%;
  max-width: 1200px;
  overflow: visible;
}

/* ================= TITLE ================= */
.mobileSwiper h2 {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #fff;
  letter-spacing: 1px;
}

/* ================= WRAPPER ================= */
.swiper-wrapper {
  align-items: center;
  padding: 40px 0;
}

/* ================= SLIDE ================= */
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.6s ease;
}

/* ================= 3D PHONE ================= */
.phone {
  width: 240px;
  height: 480px;
  background: linear-gradient(145deg, #1a1a1a, #111);
  border-radius: 40px;
  padding: 12px;
  position: relative;
  box-shadow:
    0 20px 40px rgba(0, 255, 170, 0.185),
    inset 0 0 15px rgba(74, 72, 72, 0.332);
  transition: all 0.6s ease;
  transform-style: preserve-3d;
}

/* Camera notch */
.phone::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 12px;
  background: #000;
  border-radius: 10px;
  z-index: 5;
}

/* ================= SCREEN ================= */
.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  transition: all 0.6s ease;
  box-shadow: 0 5px 5px rgba(158, 240, 204, 0.166);
}

/* ================= CENTER ACTIVE ================= */
.swiper-slide-active .phone {
  transform: scale(1.15) rotateY(0deg);
  box-shadow:
    0 5px 25px rgba(152, 255, 210, 0.196);
}

.swiper-slide-active .phone img {
  transform: scale(1.02);
  opacity: 1;
}

/* ================= SIDE PHONES ================= */
.swiper-slide:not(.swiper-slide-active) .phone {
  transform: scale(0.9) rotateY(25deg);
  opacity: 0.6;
}

.swiper-slide-prev .phone {
  transform: scale(0.9) rotateY(-25deg);
}

/* ================= STORE BUTTONS ================= */
.store-buttons {
  margin-top: 80px;
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.store-box {
  width: 180px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  border: 1px solid rgba(173, 250, 210, 0.618);
  backdrop-filter: blur(10px);
  transition: 0.4s ease;
  overflow: hidden;
}

.store-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-box:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 5px 40px rgba(127, 222, 181, 0.27);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .phone {
    width: 200px;
    height: 400px;
  }
}

@media (max-width: 768px) {
  .mobileSwiper {
    margin-top: 40px;
  }

  .phone {
    width: 270px;
    height: 370px;
  }

  .mobileSwiper h2 {
    font-size: 32px;
  }

  .store-box {
    width: 150px;
    height: 50px;
  }

  .store-buttons {
    padding: 0 50px;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .phone {
    width: 150px;
    height: 300px;
  }

  .mobileSwiper h2 {
    font-size: 26px;
  }
}


/* ============================================================================================================================== */

/* ================= BASE ================= */
.how-it-works {
  background: #000000;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

.how-it-works h2 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.subtitle {
  color: #a9d6c8;
  font-size: 16px;
  margin-bottom: 60px;
}

/* ================= STEPS ================= */
.steps {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  counter-reset: how-counter;
}

.step {
  max-width: 260px;
}

/* ================= IMAGE ================= */
.circle {
  position: relative;
  width: 220px;
  height: 220px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ================= NUMBER BUBBLE ================= */
.circle::before {
  position: absolute;
  counter-increment: how-counter;
  content: counter(how-counter);

  height: 70px;
  width: 68px;
  line-height: 70px;
  top: 0;
  left: 0;

  font-family: "Josefin Sans", sans-serif;
  font-size: 54px;
  color: #ffffff;
  text-align: center;

  border-radius: 46px 43px 68px 38px;

  background: #000;
  border: 2px solid rgba(49, 221, 49, 0.468);
  box-shadow: rgba(46, 204, 112, 0.358) 6px 22px 30px 1px;
}



/* ================= TEXT ================= */
.step h4 {
  margin-top: 22px;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #eafff6;
}

.step p {
  font-size: 14px;
  color: #bfe8d9;
  line-height: 1.5;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .steps {
    gap: 50px;
  }

  .how-it-works h2 {
    font-size: 34px;
  }

  .circle {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .steps {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }

  .how-it-works {
    padding: 60px 16px;
  }

  .how-it-works h2 {
    font-size: 30px;
  }

  .subtitle {
    font-size: 14px;
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .how-it-works h2 {
    font-size: 26px;
  }

  .circle {
    width: 180px;
    height: 180px;
  }

  .circle::before {
    height: 50px;
    width: 50px;
    line-height: 50px;
    font-size: 32px;
  }

  .step h4 {
    font-size: 16px;
  }

  .step p {
    font-size: 14px;
  }
}

/* ========================================================================================================================= */
/* ============================= */
/* SECTION */
/* ============================= */
.sk-timeline {
  background: #000;
  color: #fff;
  padding: 120px 6%;
  position: relative;
  overflow: hidden;
}

/* TITLE */
.sk-timeline-title {
  text-align: center;
  font-size: 40px;
  margin-bottom: 100px;
  background: linear-gradient(90deg, #ffffff, #4dc887);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* ============================= */
/* WRAPPER */
/* ============================= */
.sk-timeline-wrapper {
  position: relative;
  max-width: 1100px;
  margin: auto;
}

/* ============================= */
/* CENTER LINE */
/* ============================= */
.sk-line {
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 0;
  background: linear-gradient(to bottom, #ffffff, #4ade80);
  transform: translateX(-50%);
  z-index: 1;
  transition: height 0.4s ease-out;
}

/* ============================= */
/* ITEM */
/* ============================= */
.sk-item {
  position: relative;
  width: 50%;
  padding: 60px 30px;
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(80px);
  transition: all 0.8s ease;
  z-index: 2;

  display: flex;
  align-items: center;
}

/* LEFT / RIGHT */
.sk-item.left {
  left: 0;
  justify-content: flex-end;
}

.sk-item.right {
  left: 50%;
  justify-content: flex-start;
}

/* ============================= */
/* 🔥 DOT PERFECT CENTER LINE */
/* ============================= */
.sk-dot {
  position: absolute;
  top: 50%;

  width: 55px;
  height: 55px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: bold;
  z-index: 5;

  transform: translate(-50%, -50%);
  animation: pulse 2s infinite;

   background: #000;   /* black background */
  color: #fff;        /* number white */
  border: 2px solid #9effc7; /* keep border same */
}

/* LEFT ITEM → push dot to center */
.sk-item.left .sk-dot {
  left: 100%;
}

/* RIGHT ITEM → pull dot to center */
.sk-item.right .sk-dot {
  left: 0%;
}

/* PULSE */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(158,255,199,0.6); }
  70% { box-shadow: 0 0 0 15px rgba(158,255,199,0); }
  100% { box-shadow: 0 0 0 0 rgba(158,255,199,0); }
}

/* ============================= */
/* CONTENT CARD */
/* ============================= */
.sk-content {
  background: rgba(71, 71, 71, 0.277);
  border: 1px solid rgba(116, 116, 116, 0.512);
  padding: 35px ;
  border-radius: 15px;
  backdrop-filter: blur(10px);

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  transition: 0.4s;
  max-width: 380px;
}

/* HOVER */
.sk-content:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 6px rgba(179, 248, 207, 0.05); /* reduced */
}

/* ICON */
.sk-icon {
  font-size: 28px;
  color: #9effc7;
  margin-bottom: 12px;
  transition: 0.4s;
}

/* TEXT */
.sk-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.sk-content p {
  color: #aaa;
  font-size: 14px;
}

/* LEFT RIGHT spacing */
.sk-item.left .sk-content {
  margin-right: 80px;
}

.sk-item.right .sk-content {
  margin-left: 80px;
}

/* ============================= */
/* SCROLL ANIMATION */
/* ============================= */
.sk-item.show {
  opacity: 1;
  transform: translateY(0);
}

/* ACTIVE */
.sk-item.active .sk-content {
  box-shadow: 0 0 20px rgba(171, 254, 206, 0.179); /* reduced */
  transform: scale(1.05);
}

.sk-item.active .sk-icon {
  transform: scale(1.2);
  color: #4ade80;
}

.sk-item.active .sk-dot {
  background: #000;   /* keep black */
  color: #fff;        /* keep white */
  border-color: #4ade80; /* subtle highlight */
}


/* ============================= */
/* RESPONSIVE */
/* ============================= */
@media (max-width: 768px) {

  .sk-line {
    left: 20px;
  }

  .sk-item {
    width: 100%;
    left: 0 !important;
    justify-content: flex-start;
    padding-left: 70px;
  }

  .sk-dot {
    left: 20px !important;
    transform: translate(-50%, -50%);
  }

  .sk-content {
    margin: 0 0 40px 40px !important;
  }
}

/* =============================================================================================================================== */
/* ============================= */
/* SECTION */
/* ============================= */
.sk-app-demo {
  background: #000;
  padding: 120px 6%;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* TITLE */
.sk-demo-title {
  font-size: 38px;
  margin-bottom: 80px;
  background: linear-gradient(90deg, #ffffff, #4dc887);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============================= */
/* LAYOUT */
/* ============================= */
.sk-demo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* ============================= */
/* FEATURES */
/* ============================= */
.sk-demo-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.demo-item {
  background: rgba(255, 255, 255, 0.089);
  padding: 18px 20px;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s;
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  backdrop-filter: blur(8px);
}

/* HOVER */
.demo-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 10px rgba(74,222,128,0.15);
}

/* ACTIVE */
.demo-item.active {
  border-color: #4ade80;
  box-shadow: 0 0 15px rgba(74,222,128,0.25);
}

/* ICON */
.demo-item i {
  font-size: 24px;
   background: linear-gradient(135deg, #DFF5EA, #71c3a2, #367861);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

/* TEXT */
.demo-item h4 {
  font-size: 14px;
  color: #ddd;
}

/* ============================= */
/* MOBILE FRAME */
/* ============================= */
.sk-demo-mobile {
  perspective: 1000px;
}

.mobile-frame {
  width: 285px;
  height: 575px;
  border-radius: 42px;
  background: linear-gradient(165deg, #0f1012, #1b1d20);
  border: 1px solid rgba(218, 224, 231, 0.22);

  position: relative;
  overflow: hidden;

  animation: float 4s ease-in-out infinite;
  box-shadow:
    0 28px 45px rgba(0, 0, 0, 0.45),
    0 0 0 4px rgba(255, 255, 255, 0.03),
    0 0 35px rgba(74, 222, 128, 0.12);
}

.mobile-frame::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 108px;
  height: 24px;
  border-radius: 0 0 14px 14px;
  background: #0a0b0d;
  z-index: 5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.mobile-frame::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
  z-index: 4;
}

/* ============================= */
/* SCREEN (IMAGE BASED) */
/* ============================= */
.screen {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  bottom: 14px;
  border-radius: 30px;
  overflow: hidden;

  opacity: 0;
  transform: scale(0.98);

  transition: all 0.5s ease;
}

/* ACTIVE SCREEN */
.screen.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}



/* IMAGE */
.screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */
@media (max-width: 768px) {

  .sk-demo-container {
    flex-direction: column;
    gap: 40px;
  }

  .sk-demo-features {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .demo-item {
    width: 45%;
  }

  .mobile-frame {
    width: 250px;
    height: 510px;
    border-radius: 36px;
  }

  .mobile-frame::before {
    width: 96px;
    height: 22px;
  }

  .mobile-frame::after {
    inset: 7px;
    border-radius: 30px;
  }

  .screen {
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border-radius: 26px;
  }
}

/* ==================================================================================================================== */

/* SECTION */

.automation-section{
  padding:120px 20px;
  background: #000;
  color:#fff;
  text-align:center;
  font-family:'Poppins',sans-serif;
}

/* CONTAINER */

.auto-container{
  max-width:1200px;
  margin:auto;
}

/* HEADING */

.auto-heading{
  font-size:42px;
  margin-bottom:15px;
}

.auto-heading span{
  background: #41866e;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.auto-subtext{
  color:#b5cfc7;
  max-width:700px;
  margin:auto;
  margin-bottom:70px;
  line-height:1.7;
  font-size:16px;
}

/* GRID */

.auto-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

/* CARD */

.auto-card{
  background:rgba(81, 81, 81, 0.179);
  border:1px solid rgba(145, 145, 145, 0.277);
  padding:40px 25px;
  border-radius:18px;
  transition:0.4s;
  position:relative;
  overflow:hidden;
  backdrop-filter:blur(10px);
}

/* SOFT GLOW BACKGROUND */

.auto-card::before{
  content:"";
  position:absolute;
  top:-50%;
  left:-50%;
  width:200%;
  height:200%;
  background:radial-gradient(circle,rgba(154, 241, 206, 0.077),transparent);
  opacity:0;
  transition:0.5s;
}

/* HOVER EFFECT */

.auto-card:hover{
  transform:translateY(-12px) scale(1.02);
  border-color:#06724996;
  box-shadow:0 10px 40px rgba(110,231,183,0.15);
}

.auto-card:hover::before{
  opacity:1;
}

/* ICON */

.auto-icon{
  width:70px;
  height:70px;
  margin:auto;
  margin-bottom:20px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(110, 231, 183, 0.058);
  font-size:28px;
  background: linear-gradient(135deg, #DFF5EA, #71c3a2, #367861);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;

  border: 1px solid rgba(11, 98, 63, 0.604);

  transition:0.4s;
}

/* ICON HOVER */

.auto-card:hover .auto-icon{
  color:#022c22;
  transform:scale(1.1) rotate(6deg);
  box-shadow:0 0 25px rgba(110, 231, 183, 0.273);
}

/* TEXT */

.auto-card h3{
  font-size:20px;
  margin-bottom:10px;
  font-weight:500;
}

.auto-card p{
  color:#c7e7dd;
  font-size:14px;
  line-height:1.6;
}

/* SUBTLE ICON ANIMATION */

.auto-icon{
  animation:pulseGlow 2.5s infinite;
}

@keyframes pulseGlow{
  0%{
    box-shadow:0 0 0 rgba(110,231,183,0.2);
  }
  50%{
    box-shadow:0 0 25px rgba(110,231,183,0.2);
  }
  100%{
    box-shadow:0 0 0 rgba(110,231,183,0.2);
  }
}

.automation-section{
  background:#000;
  background-size:400% 400%;
}


/* RESPONSIVE */

@media(max-width:992px){

  .auto-grid{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:600px){

  .auto-grid{
    grid-template-columns:1fr;
  }

  .auto-heading{
    font-size:28px;
  }

  .auto-subtext{
    font-size:14px;
  }

  .auto-card{
    padding:30px 20px;
  }

}


* {
  scroll-behavior: smooth;
}

.showcase-item,
.product-step,
.feature-card {
  will-change: transform, opacity;
}