.top-offer-bar {
  background: linear-gradient(90deg, #075E54, #25D366);
  font-size: 15px;
  font-weight: 500;
}

.top-offer-bar .btn {
  border-radius: 6px;
  font-size: 15px;
  transition: 0.3s;
  background-color: #075E54;
  color: #fff;
  font-weight: 500;
  border: none;
}

.top-offer-bar .btn:hover {
  background: #fff;
  color: #075E54;
  border: 1px solid #075E54;
}

/* Mobile Responsive */
@media (max-width: 576px) {
  .top-offer-bar {
    font-size: 13px;
    padding: 8px 5px;
  }

  .top-offer-bar .btn {
    font-size: 12px;
    padding: 5px 12px;
  }
}

/* hero section code */
.hero-img {
  position: relative;
  width: 100%;
  max-height: 93vh;
  overflow: hidden;
}

/* Thumbnail Image */
.video-thumbnail {
  position: relative;
  cursor: pointer;
}

.video-thumbnail img {
  width: 100%;
  max-height: 93vh;
}

/* YouTube Style Red Button */
.yt-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 60px;
  background-color: #ff0000;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  transition: 0.3s ease;
}

/* Hover Effect */
.video-thumbnail:hover .yt-play-button {
  transform: translate(-50%, -50%) scale(1.1);
  background-color: #cc0000;
}

/* White Triangle */
.triangle {
  width: 0;
  height: 0;
  border-left: 22px solid white;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
}

/* Video */
.hero-video {
  width: 100%;
  max-height: 93vh;
  object-fit: cover;
  display: none;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-img,
  .video-thumbnail img,
  .hero-video {
    max-height: 60vh;
  }
}

/* client logo */
.logo-section {
  background: linear-gradient(90deg, #25D366, #075E54);
}

/* Slider */
.logo-slider {
  overflow: hidden;
  position: relative;
}

/* Track Animation */
.logo-track {
  display: flex;
  width: max-content;
  animation: scroll 20s linear infinite;
}

/* Pause on Hover */
.logo-slider:hover .logo-track {
  animation-play-state: paused;
}

/* Logo Card */
.logo-card {
  min-width: 220px;
  height: 130px;
  margin: 0 15px;
  background: #fff;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;
}

.logo-card img {
  max-width: 160px;
}

/* Infinite Scroll Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .logo-card {
    min-width: 160px;
    height: 100px;
  }

  .logo-card img {
    max-width: 129px;
  }
}


/* =====  WhatsApp Section ===== */

.wa-feature-modern {
  background: linear-gradient(135deg, #053120, #0a4a32);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Soft Glow Background */
.wa-feature-modern::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: #32cd32;
  filter: blur(180px);
  opacity: 0.2;
  top: -100px;
  right: -100px;
}

/* Badge */
.wa-badge {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(72, 181, 74, 0.15);
  border: 1px solid #48b54a;
  border-radius: 50px;
  font-weight: 500;
  color: #32cd32;
}

/* Title */
.wa-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
}

.wa-title span {
  color: #32cd32;
}

/* Description */
.wa-desc {
  color: #d6f5e3;
  font-size: 16px;
  max-width: 500px;
}

/* Subtitle */
.wa-subtitle {
  font-weight: 600;
  margin-bottom: 15px;
  color: #48b54a;
}

/* Grid Layout */
.wa-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 15px;
}

/* Feature Cards */
.wa-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 14px 18px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(72, 181, 74, 0.2);
  transition: all 0.3s ease;
  font-size: 14px;
  cursor: pointer;
}

.wa-card i {
  color: #32cd32;
  margin-right: 8px;
}

/* Hover Effect */
.wa-card:hover {
  background: #48b54a;
  color: #053120;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(50, 205, 50, 0.4);
}

.wa-card:hover i {
  color: #053120;
}

/* Image Styling */
.wa-image-wrapper img {
  width: 100%;
  max-width: 450px;
  transition: transform 0.4s ease;
}



/* Responsive */
@media (max-width: 992px) {
  .wa-title {
    font-size: 32px;
  }

  .wa-desc {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .wa-title {
    font-size: 26px;
  }

  .wa-card {
    font-size: 13px;
  }
}


/* =====  How It Works Section ===== */

.how-work-modern {
  background: linear-gradient(135deg, #053120, #0a4a32);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Glow Effect */
.how-work-modern::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: #32cd32;
  filter: blur(160px);
  opacity: 0.15;
  top: -100px;
  left: -100px;
}

/* Title */
.hw-title {
  font-size: 40px;
  font-weight: 700;
}

.hw-subtitle {
  color: #c9f7df;
  margin-top: 10px;
}

/* Wrapper Line Connector */
.hw-wrapper::before {
  content: "";
  position: absolute;
  top: 45px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(to right, #48b54a, #32cd32);
  z-index: 0;
}

@media (max-width: 768px) {
  .hw-wrapper::before {
    display: none;
  }
}

.modern-modal{
  background: linear-gradient(135deg,#0f2027,#203a43,#2c5364);
  border-radius:20px;
  padding:20px;
  color:#fff;
  backdrop-filter: blur(15px);
}

.modal-title{
  font-weight:600;
}

.modern-input-group{
  background:rgba(255,255,255,0.1);
  border-radius:12px;
  padding:10px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:15px;
}

.modern-input-group input{
  background:transparent;
  border:none;
  color:#fff;
  outline:none;
  width:60%;
}
/* Chrome, Safari, Edge */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}
.price-text{
  font-size:14px;
  opacity:0.8;
  margin-bottom:10px;
}

.calculation-box{
  background:rgba(255,255,255,0.15);
  padding:10px;
  border-radius:10px;
  font-weight:600;
  margin-bottom:15px;
}

.pay-btn{
  width:100%;
  padding:10px;
  border:none;
  border-radius:25px;
  background:linear-gradient(90deg,#00c6ff,#0072ff);
  color:#fff;
  font-weight:600;
  transition:0.3s;
}



/* Popup */
.popup-overlay{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.6);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:9999;
}

.popup-card{
  background:#fff;
  padding:25px;
  border-radius:15px;
  width:320px;
  text-align:center;
  animation:popIn 0.3s ease;
}

.popup-card.warning h4{
  color:#dc3545;
}

.popup-card.confirm h4{
  color:#198754;
}

.popup-card button{
  margin-top:10px;
  padding:8px 15px;
  border:none;
  border-radius:6px;
  cursor:pointer;
}

.cancel-btn{
  background:#6c757d;
  color:#fff;
}

.confirm-btn{
  background:#198754;
  color:#fff;
}

.popup-actions{
  display:flex;
  justify-content:center;
  gap:10px;
}

@keyframes popIn{
  from{transform:scale(0.8);opacity:0;}
  to{transform:scale(1);opacity:1;}
}

.subtitle-text{
  font-size:14px;
  opacity:0.9;
  margin-bottom:15px;
  text-align: left !important;
}


/* Card */
.hw-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 40px 25px;
  border-radius: 20px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(72, 181, 74, 0.2);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  height: 100%;
}

.hw-card h5 {
  margin-top: 20px;
  font-weight: 600;
}

.hw-card p {
  color: #d6f5e3;
  font-size: 14px;
}

/* Step Icon */
.hw-icon {
  width: 90px;
  height: 90px;
  margin: auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #48b54a, #32cd32);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 35px rgba(50, 205, 50, 0.4);
  transition: 0.4s ease;
  
}

.hw-icon span {
  font-size: 28px;
  font-weight: bold;
  color: #053120;
}

/* Hover Effect */
.hw-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(50, 205, 50, 0.3);
}

.hw-card:hover .hw-icon {
  transform: scale(1.1) rotate(8deg);
}

/* Button */
.hw-btn {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, #48b54a, #32cd32);
  color: #053120;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s ease;
}

.hw-btn:hover {
  background: #fff;
  color: #053120;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(50, 205, 50, 0.4);
}

/* Responsive */
@media (max-width: 992px) {
  .hw-title {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .hw-title {
    font-size: 26px;
  }

  .hw-card {
    padding: 30px 20px;
  }

  .hw-icon {
    width: 70px;
    height: 70px;
  }

  .hw-icon span {
    font-size: 22px;
  }
}





/* ===== Modern Products Section ===== */

.products-modern {
  background: linear-gradient(135deg, #053120, #0a4a32);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Soft Glow Effect */
.products-modern::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: #32cd32;
  filter: blur(180px);
  opacity: 0.15;
  top: -100px;
  right: -100px;
}

/* Title */
.pm-title {
  font-size: 40px;
  font-weight: 700;
}

.pm-subtitle {
  color: #c9f7df;
  margin-top: 10px;
}

/* Card */
.pm-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 40px 25px;
  border-radius: 20px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(72, 181, 74, 0.2);
  transition: all 0.4s ease;
  cursor: pointer;
  height: 100%;
}

/* Icon */
.pm-icon {
  width: 80px;
  height: 80px;
  margin: auto;
  border-radius: 20px;
  background: linear-gradient(135deg, #48b54a, #32cd32);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #053120;
  margin-bottom: 20px;
  transition: 0.4s ease;
  box-shadow: 0 15px 35px rgba(50, 205, 50, 0.4);
}

/* Hover Effects */
.pm-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(50, 205, 50, 0.3);
}

.pm-card:hover .pm-icon {
  transform: rotate(10deg) scale(1.1);
}

/* Heading */
.pm-card h5 {
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 20px;
}

.pm-card p {
  color: #d6f5e3;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 992px) {
  .pm-title {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .pm-title {
    font-size: 26px;
  }

  .pm-card {
    padding: 30px 20px;
  }

  .pm-icon{
    width: 65px;
    height: 65px;
    font-size: 22px;
  }
}


  /* ===== Modern Demo Video Section ===== */

.demo-video-modern {
  background: linear-gradient(135deg, #053120, #0a4a32);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Glow Background */
.demo-video-modern::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: #32cd32;
  filter: blur(180px);
  opacity: 0.15;
  bottom: -120px;
  left: -120px;
}

/* Title */
.dv-title {
  font-size: 40px;
  font-weight: 700;
}

.dv-subtitle {
  color: #c9f7df;
  margin-top: 10px;
}

/* Video Box */
.dv-video-box {
  background: rgba(255, 255, 255, 0.08);
  padding: 20px;
  border-radius: 25px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(72, 181, 74, 0.2);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  transition: 0.4s ease;
}

/* Hover Effect */
.dv-video-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(50, 205, 50, 0.3);
}

/* Responsive Video */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 20px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

/* Responsive */
@media (max-width: 992px) {
  .dv-title {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .dv-title {
    font-size: 26px;
  }

  .dv-video-box {
    padding: 12px;
  }
}



  /* ===== Modern Stats Section ===== */

.stats-modern {
  background: linear-gradient(135deg, #053120, #0a4a32);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Soft Glow Effect */
.stats-modern::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: #32cd32;
  filter: blur(200px);
  opacity: 0.15;
  top: -150px;
  right: -150px;
}

/* Card */
.stat-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 40px 20px;
  border-radius: 20px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(72, 181, 74, 0.2);
  transition: all 0.4s ease;
  height: 100%;
  cursor: pointer;
}

/* Hover Effect */
.stat-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(50, 205, 50, 0.3);
}

/* Icon Box */
.stat-icon {
  width: 80px;
  height: 80px;
  margin: auto;
  border-radius: 20px;
  background: linear-gradient(135deg, #48b54a, #32cd32);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #053120;
  margin-bottom: 20px;
  box-shadow: 0 15px 35px rgba(50, 205, 50, 0.4);
  transition: 0.4s ease;
}

/* Icon Hover Animation */
.stat-card:hover .stat-icon {
  transform: rotate(10deg) scale(1.1);
}

/* Counter Number */
.counter {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

/* Text */
.stat-card p {
  font-size: 15px;
  color: #c9f7df;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
  .counter {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .stat-card {
    padding: 30px 15px;
  }

  .stat-icon {
    width: 65px;
    height: 65px;
    font-size: 22px;
  }

  .counter {
    font-size: 28px;
  }
}



  /* ===== Modern Features Section ===== */

.features-modern {
  background: linear-gradient(135deg, #053120, #0a4a32);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Soft Glow */
.features-modern::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: #32cd32;
  filter: blur(220px);
  opacity: 0.12;
  top: -150px;
  left: -150px;
}

/* Title */
.fm-title {
  font-size: 40px;
  font-weight: 700;
}

.fm-subtitle {
  color: #c9f7df;
  margin-top: 10px;
}

/* Card */
.fm-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 35px 20px;
  border-radius: 20px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(72, 181, 74, 0.2);
  transition: all 0.4s ease;
  height: 100%;
  cursor: pointer;
}

.fm-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(50, 205, 50, 0.3);
}

/* Icon Box */
.fm-icon {
  width: 70px;
  height: 70px;
  margin: auto;
  border-radius: 18px;
  background: linear-gradient(135deg, #48b54a, #32cd32);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #053120;
  margin-bottom: 20px;
  transition: 0.4s ease;
  box-shadow: 0 12px 30px rgba(50, 205, 50, 0.4);
}

.fm-card:hover .fm-icon {
  transform: rotate(10deg) scale(1.1);
}

/* Text */
.fm-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.fm-card p {
  font-size: 14px;
  color: #d6f5e3;
}

/* Responsive */
@media (max-width: 992px) {
  .fm-title {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .fm-title {
    font-size: 26px;
  }

  .fm-card {
    padding: 25px 15px;
  }

  .fm-icon {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }
}



  /* Section Background */
.cases-section {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
}

/* Title */
.cases-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.cases-subtitle {
  font-size: 16px;
  color: #d1d5db;
}

/* Modern Card */
.modern-case-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.4s ease;
  height: 100%;
  border: 1px solid rgba(255,255,255,0.1);
}

/* Hover Effect */
.modern-case-card:hover {
  transform: translateY(-12px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Icon Box */
.icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  transition: 0.4s;
}

.modern-case-card:hover .icon-box {
  transform: rotate(8deg) scale(1.1);
}

/* Text */
.modern-case-card h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.modern-case-card p {
  font-size: 14px;
  color: #e5e7eb;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .cases-title {
    font-size: 30px;
  }

  .modern-case-card {
    padding: 25px 20px;
  }
}



 /* Section Background */
.modern-faq-section {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
}

/* Left Content */
.faq-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.faq-subtitle {
  font-size: 16px;
  color: #cbd5e1;
  margin-bottom: 30px;
  line-height: 1.7;
}

.faq-highlight {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-weight: 500;
}

.faq-highlight i {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-size: 16px;
}

/* Accordion Card */
.modern-accordion .accordion-item {
  background: rgba(255,255,255,0.05);
  border-radius: 14px;
  margin-bottom: 15px;
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

/* Accordion Button */
.modern-accordion .accordion-button {
  background: transparent;
  color: #fff;
  font-weight: 600;
  padding: 18px 20px;
  box-shadow: none;
  border: none;
}

.modern-accordion .accordion-button:not(.collapsed) {
  background: rgba(255,255,255,0.08);
  color: #25d366;
}

/* Remove default arrow */
.modern-accordion .accordion-button::after {
  display: none;
}

/* Custom Plus Icon */
.modern-accordion .accordion-button::before {
  content: "+";
  font-size: 20px;
  margin-right: 15px;
  font-weight: 700;
  transition: 0.3s;
}

.modern-accordion .accordion-button:not(.collapsed)::before {
  content: "–";
  color: #25d366;
}

/* Accordion Body */
.modern-accordion .accordion-body {
  color: #cbd5e1;
  padding: 0 20px 20px;
  line-height: 1.6;
}

/* Hover Effect */
.modern-accordion .accordion-item:hover {
  transform: translateY(-3px);
  transition: 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-title {
    font-size: 28px;
  }

  .faq-subtitle {
    font-size: 14px;
  }
}




 /* Section Background */
.modern-wa-section {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  padding: 80px 0;
}

/* Glass Card */
.modern-wa-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border-radius: 25px;
  padding: 60px 50px;
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
}

/* Title */
.wa-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.wa-title span {
  color: #25d366;
}

/* Subtitle */
.wa-subtitle {
  font-size: 16px;
  color: #d1d5db;
  margin-bottom: 35px;
  line-height: 1.7;
}

/* CTA Button */
.wa-btn {
  display: inline-block;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  padding: 15px 35px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.4s ease;
  box-shadow: 0 10px 25px rgba(37,211,102,0.4);
}

.wa-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(37,211,102,0.6);
  color: #fff;
}

/* Rating */
.wa-rating {
  display: flex;
  align-items: center;
  margin-top: 20px;
  font-size: 14px;
}

.stars {
  color: #FFD700;
  margin-right: 10px;
  font-size: 18px;
}

/* Features */
.wa-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  font-size: 14px;
}

.wa-features i {
  color: #25d366;
  margin-right: 6px;
}

/* Image Box */
.wa-image-box img {
  max-width: 90%;
  border-radius: 20px;
  transition: 0.4s ease;
}

.wa-image-box img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
  .modern-wa-card {
    padding: 40px 25px;
  }

  .wa-title {
    font-size: 30px;
  }

  .wa-features {
    flex-direction: column;
    gap: 10px;
  }
}



/* Footer */
.modern-footer {
  position: relative;
  background: #0f172a;
  color: #cbd5e1;
  padding: 25px 0;
  font-size: 14px;
}

/* Scroll To Top Button */
#scrollTopBtn {
  position: fixed;
  justify-content: center;
  align-items: center;
  bottom: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: none;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  transition: 0.3s ease;
  z-index: 999;
}

#scrollTopBtn:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(37, 211, 102, 0.6);
}

/* whatsapp sticky button */
/* Sticky WhatsApp Button */
#whatsappBtn {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-size: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  z-index: 999;
  animation: zoomInOut 1.5s infinite ease-in-out;
  transition: 0.3s ease;
}

/* Hover Effect */
#whatsappBtn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.7);
}

/* Infinite Zoom Animation */
@keyframes zoomInOut {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.15); }
  100% { transform: scale(1); }
}

/* Mobile Responsive */
@media (max-width: 576px) {
  #whatsappBtn {
    width: 50px;
    height: 50px;
    font-size: 24px;
    left: 15px;
    bottom: 20px;
  }
}


/* contact section */
.contact-section {
  background: linear-gradient(135deg, #053120, #0a4a32);
  color: #fff;
}

.contact-title {
  font-weight: 700;
  font-size: 32px;
  color: #32cd32;
}

.contact-subtitle {
  color: #c8facc;
  font-size: 15px;
  margin-top: 8px;
}

/* Card Design */
.contact-card {
  background: rgba(255,255,255,0.05);
  padding: 30px 20px;
  border-radius: 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: 0.4s ease;
  height: 100%;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

/* Icon Circle */
.contact-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: linear-gradient(135deg, #48b54a, #32cd32);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #053120;
  transition: 0.3s ease;
}

.contact-card:hover .contact-icon {
  transform: scale(1.1) rotate(8deg);
}

/* Links */
.contact-card a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s ease;
}

.contact-card a:hover {
  color: #32cd32;
  
}

/* Responsive */
@media(max-width:768px){
  .contact-title {
    font-size: 26px;
  }
}


.video-reviews-section {
  background: linear-gradient(135deg, #053120, #0a4a32);
  color: #fff;
}

/* Heading */
.section-title {
  font-weight: 700;
  font-size: 34px;
  color: #fff;
}

.section-subtitle {
  color: #c8facc;
  font-size: 15px;
  margin-top: 8px;
}

/* Carousel Wrapper for spacing */
.video-carousel-wrapper {
  position: relative;
  padding: 0 60px; /* space for nav buttons */
}

/* Card */
.video-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 15px;
  backdrop-filter: blur(10px);
  transition: 0.4s ease;
}

.video-card:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Video */
.video-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  border-radius: 15px;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 15px;
}

/* Navigation Buttons */
.video-carousel .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #48b54a, #32cd32) !important;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-carousel .owl-nav button:hover {
  transform: translateY(-50%) scale(1.1);
  background: linear-gradient(135deg, #32cd32, #48b54a) !important;
}

.video-carousel .owl-nav button span {
  font-size: 22px;
  color: #053120;
  font-weight: bold;
}

/* 50px distance from video */
.video-carousel .owl-prev {
  left: -50px;
}

.video-carousel .owl-next {
  right: -50px;
}

/* Mobile Responsive */
@media(max-width: 768px) {

  .video-carousel-wrapper {
    padding: 0 20px;
  }

  .video-carousel .owl-prev {
    left: -30px;
  }

  .video-carousel .owl-next {
    right: -30px;
  }

  .section-title {
    font-size: 26px;
  }

}