*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== Premium Brand Topbar ===== */
.brand-topbar {
    background: linear-gradient(135deg, #053120, #0b3d2a);
    padding: 10px 0;
    position: relative;
    overflow: hidden;
}

/* Gold Animated Shine */
.brand-topbar::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(219,173,26,0.15), transparent);
    top: 0;
    left: -100%;
    animation: shineMove 6s linear infinite;
}

@keyframes shineMove {
    100% { left: 100%; }
}

.topbar-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* Left Side */
.topbar-left {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
}

.topbar-badge {
    width: 45px;
    height: 45px;
    background: #dbad1a;
    color: #053120;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 8px 20px rgba(219,173,26,0.4);
    transition: 0.4s ease;
}

.topbar-badge:hover {
    transform: rotate(15deg) scale(1.1);
}

.topbar-text strong {
    display: block;
    font-size: 16px;
    color: #dbad1a;
}

.topbar-text span {
    font-size: 18px;
    font-weight: 700;
}

/* Button */
.brand-btn {
    background: #dbad1a;
    color: #053120;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.4s ease;
    box-shadow: 0 10px 25px rgba(219,173,26,0.3);
}

.brand-btn:hover {
    background: #fff;
    color: #053120;
    transform: translateY(-4px);
}

/* Responsive */
@media (max-width: 768px) {
    .topbar-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .topbar-left {
        flex-direction: column;
        gap: 8px;
    }

    .brand-btn {
        width: 50%;
        justify-content: center;
        margin-top: 15px;
    }
}

/* 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, #dbad1a, #053120);
}

/* 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(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .logo-card {
    min-width: 160px;
    height: 100px;
  }

  .logo-card img {
    max-width: 129px;
  }
}


/* ===== Premium Defensive WhatsApp Section ===== */

.wa-feature-premium {
  background: #01350e;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Gold Glow Background Accent */
.wa-feature-premium::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: #dbad1a;
  opacity: 0.08;
  filter: blur(160px);
  top: -100px;
  left: -100px;
}

/* Badge */
.premium-badge {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid #dbad1a;
  color: #dbad1a;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
}

/* Title */
.premium-title {
  font-size: 40px;
  font-weight: 700;
}

.premium-title span {
  color: #dbad1a;
}

.premium-subtext {
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.8;
}

/* Feature Box */
.feature-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 16px;
  border: 1px solid rgba(219, 173, 26, 0.2);
}

/* Headings */
.feature-heading {
  color: #dbad1a;
  margin-bottom: 18px;
  font-weight: 600;
}

/* Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 15px;
}

/* Cards */
.feature-card {
  padding: 12px 16px;
  background: rgba(219, 173, 26, 0.08);
  border-radius: 10px;
  font-size: 14px;
  transition: 0.3s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.feature-card i {
  color: #dbad1a;
  margin-right: 8px;
}

/* Hover Effect */
.feature-card:hover {
  background: #dbad1a;
  color: #053120;
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(219, 173, 26, 0.35);
}

.feature-card:hover i {
  color: #053120;
}

/* Image Frame */
.image-frame {
  padding: 20px;
  border-radius: 20px;
  border: 2px solid #dbad1a;
  background: rgba(255,255,255,0.04);
  transition: 0.4s ease;
}

.image-frame img {
  max-width: 100%;
  transition: 0.4s ease;
}

.image-frame:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(219,173,26,0.25);
}

/* Responsive */
@media (max-width: 992px) {
  .premium-title {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .premium-title {
    font-size: 24px;
  }
  .feature-card {
    font-size: 13px;
  }
}

/* ===== SECTION ===== */

.hw-new-section {
  background: #011c08;
  color: #fff;
}

.hw-badge {
  display: inline-block;
  padding: 6px 18px;
  background: #dbad1a;
  color: #053120;
  font-weight: 700;
  border-radius: 50px;
  font-size: 12px;
  margin-bottom: 15px;
}

.hw-new-header h2 {
  font-size: 40px;
  font-weight: 700;
  color: #dbad1a;
}

.hw-new-header p {
  color: #d4c27a;
}

/* ===== STEP STYLE (Horizontal Timeline Look) ===== */

.hw-steps {
  max-width: 900px;
  margin: auto;
}

.hw-step {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  padding: 25px;
  background: #062f22;
  border-radius: 15px;
  border: 1px solid rgba(219,173,26,0.3);
  transition: 0.4s;
}

.hw-step:hover {
  transform: translateX(10px);
  border-color: #dbad1a;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.hw-step-left {
  margin-right: 25px;
}

.hw-step-circle {
  width: 70px;
  height: 70px;
  background: #dbad1a;
  color: #053120;
  font-weight: 700;
  font-size: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hw-step-right h5 {
  font-weight: 600;
}

.hw-step-right p {
  color: #c8d5cc;
  font-size: 14px;
}

/* ===== BUTTON ===== */

.hw-new-btn {
  padding: 14px 40px;
  background: #dbad1a;
  color: #053120;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s;
}

.hw-new-btn:hover {
  background: transparent;
  border: 2px solid #dbad1a;
  color: #dbad1a;
}

/* ===== MODAL ===== */

.hw-modal-new {
  background: #053120;
  border-radius: 20px;
  padding: 25px;
  color: #fff;
  border: 1px solid rgba(219,173,26,0.3);
}

.hw-field {
  margin-bottom: 18px;
}

.hw-field label {
  font-size: 13px;
  color: #dbad1a;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.hw-field input {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(219,173,26,0.4);
  background: #062f22;
  color: #fff;
  outline: none;
}

.hw-price-text {
  font-size: 14px;
  color: #d4c27a;
  margin-bottom: 10px;
}

.hw-total-box {
  padding: 10px;
  background: #062f22;
  border: 1px solid #dbad1a;
  border-radius: 8px;
  margin-bottom: 15px;
  color: #dbad1a;
  text-align: center;
}

.hw-pay-btn {
  width: 100%;
  padding: 12px;
  border-radius: 50px;
  border: none;
  background: #dbad1a;
  color: #053120;
  font-weight: 700;
  transition: 0.3s;
}

.hw-pay-btn:hover {
  background: transparent;
  border: 2px solid #dbad1a;
  color: #dbad1a;
}

/* ===== POPUPS ===== */

.hw-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.hw-popup-card {
  background: #053120;
  padding: 25px;
  border-radius: 15px;
  width: 320px;
  text-align: center;
  border: 1px solid #dbad1a;
  color: #fff;
}

.hw-popup-card h4 {
  color: #dbad1a;
}

.hw-popup-card button {
  margin-top: 10px;
  padding: 8px 18px;
  border-radius: 6px;
  border: none;
  background: #dbad1a;
  color: #053120;
  font-weight: 600;
}

.hw-popup-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.confirm-btn {
  background: #dbad1a !important;
}

/* 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;
}
/* ===== RESPONSIVE ===== */

@media(max-width:768px){
  .hw-step {
    flex-direction: column;
    text-align: center;
  }

  .hw-step-left {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .hw-new-header h2 {
    font-size: 28px;
  }
}





/* ===== CRM Premium Timeline Section ===== */

.crm-steps-section {
  background: #01350e;
  position: relative;
  overflow: hidden;
  color: #fff;
}

/* Gold Glow Background */
.crm-steps-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: #dbad1a;
  filter: blur(200px);
  opacity: 0.08;
  top: -150px;
  right: -150px;
}

/* Header */
.crm-title {
  font-size: 40px;
  font-weight: 700;
  color: #dbad1a;
}

.crm-subtitle {
  color: #c9f7df;
  margin-top: 10px;
}

/* Timeline */
.crm-timeline {
  position: relative;
  margin: auto;
  max-width: 900px;
}

.crm-timeline::before {
  content: "";
  position: absolute;
  left: 40px;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #dbad1a, #25D366);
}

/* Step */
.crm-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
  padding-left: 90px;
  transition: 0.4s ease;
}

/* Icon */
.crm-step-icon {
  position: absolute;
  left: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #dbad1a, #25D366);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #053120;
  box-shadow: 0 10px 30px rgba(219, 173, 26, 0.4);
  transition: 0.4s ease;
}

/* Content Box */
.crm-step-content {
  background: rgba(255,255,255,0.05);
  padding: 25px 30px;
  border-radius: 15px;
  border: 1px solid rgba(219, 173, 26, 0.2);
  backdrop-filter: blur(10px);
  transition: 0.4s ease;
  width: 100%;
}

.crm-step-content h5 {
  font-weight: 600;
  color: #dbad1a;
  margin-bottom: 10px;
}

.crm-step-content p {
  font-size: 14px;
  color: #e6f7ef;
  margin: 0;
}

/* Hover Effects */
.crm-step:hover .crm-step-content {
  transform: translateX(10px);
  box-shadow: 0 15px 40px rgba(219, 173, 26, 0.2);
}

.crm-step:hover .crm-step-icon {
  transform: scale(1.1) rotate(8deg);
}

/* CTA Button */
.crm-btn {
  background: linear-gradient(135deg, #dbad1a, #25D366);
  color: #053120;
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.4s ease;
  display: inline-block;
}

.crm-btn:hover {
  background: #dbad1a;
  color: #053120;
  box-shadow: 0 10px 30px rgba(219, 173, 26, 0.4);
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {

  .crm-title {
    font-size: 28px;
  }

  .crm-timeline::before {
    left: 30px;
  }

  .crm-step {
    padding-left: 70px;
  }

  .crm-step-icon {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }

  .crm-step-content {
    padding: 20px;
  }
}


  /* ===== Ultra Premium Demo Section ===== */

.demo-ultra-section {
  background: #011c08;
  position: relative;
  overflow: hidden;
  color: #fff;
}

/* Gold Glow Background */
.demo-ultra-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: #dbad1a;
  filter: blur(200px);
  opacity: 0.08;
  top: -150px;
  right: -150px;
}

/* WhatsApp Glow */
.demo-ultra-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: #25D366;
  filter: blur(180px);
  opacity: 0.07;
  bottom: -120px;
  left: -120px;
}

/* Badge */
.demo-badge {
  background: linear-gradient(135deg, #dbad1a, #25D366);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: #053120;
  display: inline-block;
}

/* Title */
.demo-title {
  font-size: 42px;
  font-weight: 700;
}

.demo-title span {
  color: #dbad1a;
}

/* Text */
.demo-text {
  color: #d6f5e3;
  font-size: 15px;
  line-height: 1.7;
}

/* Button */
.demo-btn {
  background: linear-gradient(135deg, #dbad1a, #25D366);
  color: #053120;
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: 0.4s ease;
}

.demo-btn:hover {
  background: #dbad1a;
  color: #053120;
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(219, 173, 26, 0.4);
}

/* Video Card */
.demo-video-card {
  background: #dbad1a;
  padding: 20px;
  border-radius: 25px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(219, 173, 26, 0.2);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  transition: 0.4s ease;
}

/* Hover Floating Effect */
.demo-video-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 70px rgba(219, 173, 26, 0.25);
}

/* Responsive Video */
.demo-video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 20px;
}

.demo-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

/* Responsive */
@media (max-width: 992px) {
  .demo-title {
    font-size: 32px;
  }

  .demo-content {
    text-align: center;
  }

  .demo-btn {
    margin-top: 15px;
  }
}

@media (max-width: 576px) {
  .demo-title {
    font-size: 26px;
  }

  .demo-video-card {
    padding: 12px;
  }
}


  /* ===== Ultra Premium Stats Section ===== */

.stats-ultra {
  background: #01350e;
  position: relative;
  overflow: hidden;
  color: #fff;
}

/* Gold Glow */
.stats-ultra::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: #dbad1a;
  filter: blur(200px);
  opacity: 0.07;
  top: -150px;
  right: -150px;
}

/* WhatsApp Glow */
.stats-ultra::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: #25D366;
  filter: blur(180px);
  opacity: 0.06;
  bottom: -120px;
  left: -120px;
}

/* Stat Box */
.stat-box {
  position: relative;
  background: rgba(255,255,255,0.05);
  border-radius: 25px;
  padding: 40px 25px;
  text-align: center;
  backdrop-filter: blur(15px);
  transition: 0.4s ease;
  overflow: hidden;
}

/* Animated Border Effect */
.stat-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 25px;
  padding: 1px;
  background: linear-gradient(135deg, #dbad1a, #25D366);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

/* Hover Effect */
.stat-box:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 25px 60px rgba(219, 173, 26, 0.25);
}

/* Icon Circle */
.stat-top {
  width: 75px;
  height: 75px;
  margin: auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #dbad1a, #25D366);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #053120;
  margin-bottom: 20px;
  transition: 0.4s ease;
}

/* Icon Hover */
.stat-box:hover .stat-top {
  transform: rotate(10deg) scale(1.1);
}

/* Counter Number */
.counter {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #dbad1a;
}

/* Label */
.stat-box span {
  font-size: 15px;
  color: #e6f7ef;
  font-weight: 500;
  display: block;
}

/* Responsive */
@media (max-width: 992px) {
  .counter {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .stat-box {
    padding: 30px 20px;
  }

  .stat-top {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }

  .counter {
    font-size: 28px;
  }
}



  /* ===== Ultra Premium Features Section ===== */

.features-ultra {
  background: #011c08;
  position: relative;
  overflow: hidden;
  color: #fff;
}

/* Gold Glow */
.features-ultra::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: #dbad1a;
  filter: blur(250px);
  opacity: 0.06;
  top: -200px;
  right: -200px;
}

/* Header */
.fu-title {
  font-size: 42px;
  font-weight: 700;
  color: #dbad1a;
}

.fu-subtitle {
  color: #c9f7df;
  margin-top: 10px;
}

/* Feature Box */
.feature-box {
  position: relative;
  background: rgba(255,255,255,0.05);
  padding: 35px 20px;
  border-radius: 20px;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: 0.4s ease;
  overflow: hidden;
}

/* Gradient Border */
.feature-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, #dbad1a, #25D366);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

/* Hover Effect */
.feature-box:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(219, 173, 26, 0.25);
}

/* Icon */
.feature-icon {
  width: 70px;
  height: 70px;
  margin: auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #dbad1a, #25D366);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #053120;
  margin-bottom: 20px;
  transition: 0.4s ease;
}

.feature-box:hover .feature-icon {
  transform: rotate(10deg) scale(1.1);
}

/* Text */
.feature-box h6 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #dbad1a;
}

.feature-box p {
  font-size: 14px;
  color: #e6f7ef;
}

/* Button */
.feature-btn {
  background: linear-gradient(135deg, #dbad1a, #25D366);
  color: #053120;
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.4s ease;
  display: inline-block;
}

.feature-btn:hover {
  background: #dbad1a;
  color: #053120;
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(219, 173, 26, 0.4);
}

/* Responsive */
@media (max-width: 992px) {
  .fu-title {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .fu-title {
    font-size: 26px;
  }

  .feature-box {
    padding: 25px 15px;
  }

  .feature-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;
  }
}



 /* Background */
.premium-faq {
  background: radial-gradient(circle at top left, #053120, #000000 70%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Left Info Panel */
.faq-info-box h2 {
  font-size: 42px;
  font-weight: 800;
  background: linear-gradient(90deg, #dbad1a, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.faq-info-box p {
  color: #cfcfcf;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Support Boxes */
.support-box {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 15px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  transition: 0.3s ease;
}

.support-box:hover {
  transform: translateX(8px);
  background: rgba(219,173,26,0.1);
}

.icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #dbad1a, #053120);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 18px;
  color: #fff;
}

/* FAQ Cards */
.faq-card {
  margin-bottom: 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(219,173,26,0.2);
  overflow: hidden;
  transition: 0.3s ease;
}

.faq-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(219,173,26,0.15);
}

/* Accordion Button */
.premium-accordion .accordion-button {
  background: transparent;
  color: #fff;
  font-weight: 600;
  padding: 20px;
  box-shadow: none;
}

.premium-accordion .accordion-button:not(.collapsed) {
  background: rgba(219,173,26,0.08);
  color: #dbad1a;
}

/* Remove Default Icon */
.premium-accordion .accordion-button::after {
  display: none;
}

/* Custom Arrow */
.premium-accordion .accordion-button::before {
  content: "➜";
  margin-right: 15px;
  transition: 0.3s;
}

.premium-accordion .accordion-button:not(.collapsed)::before {
  transform: rotate(90deg);
  color: #dbad1a;
}

/* Body */
.premium-accordion .accordion-body {
  color: #d6d6d6;
  padding: 0 20px 20px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-info-box h2 {
    font-size: 30px;
  }
}



 /* Section Background */
.premium-wa-section {
  background: radial-gradient(circle at top right, #053120, #000000 70%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* Wrapper Card */
.premium-wa-wrapper {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 30px;
  padding: 70px 60px;
  border: 1px solid rgba(219,173,26,0.25);
  backdrop-filter: blur(12px);
  color: #fff;
  transition: 0.4s ease;
}

.premium-wa-wrapper:hover {
  box-shadow: 0 20px 60px rgba(219,173,26,0.15);
}

/* Badge */
.premium-badge {
  display: inline-block;
  background: linear-gradient(90deg, #dbad1a, #053120);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  margin-bottom: 20px;
}

/* Title */
.premium-wa-content h2 {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.premium-wa-content h2 span {
  background: linear-gradient(90deg, #dbad1a, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Paragraph */
.premium-wa-content p {
  color: #cfcfcf;
  margin-bottom: 30px;
  line-height: 1.7;
}

/* Feature List */
.premium-feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 35px;
}

.premium-feature-list li {
  margin-bottom: 12px;
  font-size: 15px;
  color: #e5e5e5;
}

.premium-feature-list i {
  color: #dbad1a;
  margin-right: 8px;
}

/* CTA Button */
.premium-btn {
  display: inline-block;
  background: linear-gradient(135deg, #dbad1a, #053120);
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  transition: 0.4s ease;
  box-shadow: 0 12px 35px rgba(219,173,26,0.4);
}

.premium-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(219,173,26,0.6);
  color: #fff;
}

/* Trust Text */
.premium-trust {
  margin-top: 18px;
  font-size: 14px;
  color: #dbad1a;
}

/* Image Styling */
.premium-wa-image img {
  max-width: 85%;
  border-radius: 25px;
  transition: 0.5s ease;
}

.premium-wa-image img:hover {
  transform: scale(1.06) rotate(-1deg);
}

/* Responsive */
@media (max-width: 992px) {
  .premium-wa-wrapper {
    padding: 40px 25px;
  }

  .premium-wa-content h2 {
    font-size: 30px;
  }

  .premium-feature-list li {
    font-size: 14px;
  }
}


/* Footer Background */
.premium-footer {
  background: radial-gradient(circle at top, #053120, #000000 75%);
  color: #ccc;
  
  position: relative;
  overflow: hidden;
  font-size: 14px;
}

/* Brand */
.footer-brand h4 {
  font-weight: 700;
  font-size: 22px;
  background: linear-gradient(90deg, #dbad1a, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-brand p {
  margin-top: 8px;
  color: #aaaaaa;
  font-size: 14px;
}

/* Links */
.footer-links a {
  color: #cccccc;
  margin-left: 20px;
  text-decoration: none;
  transition: 0.3s ease;
  position: relative;
}

.footer-links a:hover {
  color: #dbad1a;
}

.footer-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #dbad1a;
  transition: 0.3s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

/* Divider */
.footer-divider {
  height: 1px;
  background: rgba(219,173,26,0.3);
  margin: 30px 0 20px;
}

/* Bottom */
.footer-bottom span {
  color: #dbad1a;
  font-weight: 600;
}

/* Scroll To Top */
#scrollTopBtn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #dbad1a, #053120);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: none;
  box-shadow: 0 10px 30px rgba(219,173,26,0.5);
  transition: 0.3s ease;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

#scrollTopBtn:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(219,173,26,0.7);
}

/* WhatsApp Sticky Button */
#whatsappBtn {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, #dbad1a, #053120);
  color: #fff;
  font-size: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(219,173,26,0.6);
  z-index: 999;
  animation: pulseGlow 2s infinite;
  transition: 0.3s ease;
}

#whatsappBtn:hover {
  transform: scale(1.1);
}

/* Glow Animation */
@keyframes pulseGlow {
  0%   { box-shadow: 0 0 0 0 rgba(219,173,26,0.6); }
  70%  { box-shadow: 0 0 0 15px rgba(219,173,26,0); }
  100% { box-shadow: 0 0 0 0 rgba(219,173,26,0); }
}

/* Responsive */
@media (max-width: 768px) {
  .footer-links a {
    margin: 0 10px;
  }

  #whatsappBtn {
    width: 50px;
    height: 50px;
    bottom: 20px;
    left: 15px;
  }

  #scrollTopBtn {
    right: 15px;
    bottom: 20px;
  }
}


/* Section Background */
.premium-contact {
  background: #01350e;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

/* Header */
.premium-contact-header h2 {
  font-size: 42px;
  font-weight: 800;
  margin-top: 15px;
  background: linear-gradient(90deg, #dbad1a, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.premium-contact-header p {
  color: #cccccc;
  margin-top: 10px;
}

.contact-badge {
  background: linear-gradient(135deg, #dbad1a, #053120);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  display: inline-block;
}

/* Contact Card */
.premium-contact-card {
  background: rgba(255,255,255,0.04);
  padding: 35px 25px;
  border-radius: 25px;
  text-align: center;
  border: 1px solid rgba(219,173,26,0.25);
  backdrop-filter: blur(12px);
  transition: 0.4s ease;
  height: 100%;
}

.premium-contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(219,173,26,0.2);
}

/* Icon Style */
.premium-icon {
  width: 75px;
  height: 75px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #dbad1a, #053120);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  transition: 0.4s ease;
}

.premium-contact-card:hover .premium-icon {
  transform: rotate(10deg) scale(1.1);
}

/* Text */
.premium-contact-card h5 {
  margin-bottom: 15px;
  font-weight: 600;
  color: #dbad1a;
}

.premium-contact-card p {
  font-size: 14px;
  color: #dddddd;
  line-height: 1.6;
}

/* Links */
.premium-contact-card a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s ease;
}

.premium-contact-card a:hover {
  color: #dbad1a;
}

/* Responsive */
@media (max-width: 768px) {
  .premium-contact-header h2 {
    font-size: 28px;
  }

  .premium-contact-card {
    padding: 25px 15px;
  }
}

.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;
  }

}