:root {
  --primary-dark: #007647;
  --primary-light: #95a73d;
  --gradient-dark: linear-gradient(135deg, #005837 0%, #003320 100%);
  --gradient-light: linear-gradient(135deg, #95a73d 0%, #7d8f2d 100%);
  --dark-bg: #001a0f;
  --light-bg: #f8fff8;
  --text-dark: #1a2c24;
  --text-light: #ffffff;
  --card-shadow: 0 10px 30px rgba(0, 118, 71, 0.08);
  --hover-shadow: 0 20px 40px rgba(0, 118, 71, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

/* Loader */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s, visibility 0.5s;
}

#loader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  font-size: 4rem;
  font-weight: 800;
  color: white;
  text-align: center;
  margin-bottom: 2rem;
}

.loader-logo span:first-child {
  color: var(--primary-light);
}

.loader-progress {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.loader-progress::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 40%;
  background: var(--primary-light);
  border-radius: 2px;
  animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
  0% {
    left: -40%;
  }

  100% {
    left: 100%;
  }
}

/* Header */
.navbar {
  padding: 0.5rem 0;
  background: white;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(0, 24, 15, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.5rem 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  padding: 0;
}

.navbar-brand img {
  height: 60px;
}

.nav-link {
  color: rgba(0, 0, 0, 0.9) !important;
  font-weight: 500;
  padding: 0.5rem 1.2rem !important;
  margin: 0 0.2rem;
  position: relative;
  transition: color 0.3s;
}

.navbar.scrolled .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500;
  padding: 0.5rem 1.2rem !important;
  margin: 0 0.2rem;
  position: relative;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--primary-light) !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-light);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 70%;
}

.nav-btn {
  background: var(--gradient-light);
  color: white;
  border: none;
  padding: 0.6rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(149, 167, 61, 0.3);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-section .container {
  position: relative;
  z-index: 10;
}

.hero-bg-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Ensure Swiper fills the hero area and slides are visible */
.hero-bg-slider .swiper,
.hero-bg-slider .swiper-wrapper,
.hero-bg-slider .swiper-slide {
  height: 100%;
}

.hero-bg-slider .swiper-slide {
  background-size: cover;
  background-position: center;
  opacity: 0.95;
}

/* subtle dark overlay so white text remains readable */
.hero-bg-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.25) 100%
  );
  pointer-events: none;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: white;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: fadeInDown 1s ease-out;
}

.hero-subtitle {
  font-size: 1.1rem;
  opacity: 0.95;
  margin-bottom: 2.5rem;
  max-width: 600px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease-out 0.3s backwards;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.6s backwards;
}

.btn-app {
  padding: 1rem 2.2rem;
  border-radius: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-app::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-app:hover::before {
  width: 300px;
  height: 300px;
}

.btn-app:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.btn-app-store {
  background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
  color: white;
}

.btn-app-store:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.btn-play-store {
  background: var(--gradient-light);
  color: white;
}

.btn-play-store:hover {
  box-shadow: 0 15px 35px rgba(149, 167, 61, 0.4);
}

.custom-swiper-nav {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 10;
  display: flex;
  gap: 1rem;
}

.swiper-nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: none;
  color: white;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.swiper-nav-btn:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
}

/* Sections Common */
.section {
  padding: 100px 0;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  position: relative;
  /* display: inline-block; */
  margin-bottom: 1.5rem;
}

/* .section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60%;
  height: 4px;
  background: var(--gradient-light);
  border-radius: 2px;
} */

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  text-align: center;
  /* max-width: 700px; */
  margin-bottom: 0rem;
}

.light-section {
  background: var(--light-bg);
}

.dark-section {
  background: var(--gradient-dark);
  color: white;
}

.dark-section .section-title::after {
  background: var(--gradient-light);
  box-shadow: 0 5px 20px rgba(149, 167, 61, 0.4);
}

.dark-section .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

/* About Section */
.about-images {
  position: relative;
  height: 500px;
}

.about-img-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  z-index: 2;
}

.about-img-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70%;
  z-index: 3;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.about-img-1 img,
.about-img-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
}

.feature-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature-list i {
  color: var(--primary-light);
  font-size: 1.2rem;
}

/* Why Choose Us */
.why-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 25px;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(149, 167, 61, 0.1) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.why-card:hover::before {
  opacity: 1;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.15);
  /* transform: translateY(-15px) scale(1.02); */
  border-color: var(--primary-light);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.why-icon {
  font-size: 3rem;
  color: var(--primary-light);
  margin-bottom: 0.5rem;
  transition: all 0.9s ease;
  filter: drop-shadow(0 5px 15px rgba(149, 167, 61, 0.3));
}

.why-card:hover .why-icon {
  transform: rotateY(180deg);
  filter: drop-shadow(0 10px 25px rgba(149, 167, 61, 0.5));
}

/* App Download */
.download-section {
  background: linear-gradient(135deg, #007647 0%, #005837 50%, #003320 100%);
  border-radius: 40px;
  padding: 100px 0;
  margin: 100px auto;
  max-width: 95%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.download-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(149, 167, 61, 0.15) 0%,
    transparent 70%
  );
  animation: pulse 8s ease-in-out infinite;
}

.download-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 60%;
  height: 150%;
  background: radial-gradient(
    circle,
    rgba(149, 167, 61, 0.1) 0%,
    transparent 70%
  );
  animation: pulse 10s ease-in-out infinite reverse;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.download-section .container {
  position: relative;
  z-index: 2;
}

.download-image img {
  max-height: 400px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

/* Footer */
footer {
  background: var(--dark-bg);
  color: white;
  padding: 80px 0 30px;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 60px;
}

.footer-links h5 {
  color: var(--primary-light);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary-light);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
}

.copyright {
  padding-top: 2rem;
  /* margin-top: 3rem; */
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .about-images {
    height: 400px;
    margin-bottom: 3rem;
  }

  .download-section {
    margin: 50px auto;
    border-radius: 20px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .section {
    padding: 70px 0;
  }

  .hero-btns {
    flex-direction: column;
  }

  .btn-app {
    justify-content: center;
  }

  .custom-swiper-nav {
    bottom: 20px;
    right: 20px;
  }

  .navbar-collapse {
    background: rgba(0, 24, 15, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .feature-card,
  .why-card,
  .step-card,
  .contact-info {
    padding: 1.8rem;
  }

  .loader-logo {
    font-size: 2.5rem;
  }
}

/* Features Section Styles */
.features-content {
  padding-right: 2rem;
}

.feature-vertical-card {
  background: white;
  border-radius: 16px;
  padding: 15px 15px 15px 20px;
  margin-bottom: 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 118, 71, 0.05);
  border: 1px solid rgba(0, 118, 71, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-vertical-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 118, 71, 0.15);
  border-color: rgba(149, 167, 61, 0.3);
}

.feature-vertical-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: linear-gradient(
    to bottom,
    var(--primary-dark),
    var(--primary-light)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-vertical-card:hover::before {
  opacity: 1;
}

.feature-icon-wrapper {
  flex-shrink: 0;
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(0, 118, 71, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-dark);
  transition: all 0.3s ease;
}

.feature-vertical-card:hover .feature-icon {
  background: var(--primary-dark);
  color: white;
  transform: scale(1.1);
}

.feature-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
  color: var(--primary-dark);
  transition: color 0.3s ease;
}

.feature-vertical-card:hover .feature-content h4 {
  color: var(--primary-light);
}

.feature-content p {
  color: #666;
  margin-bottom: 0;
  line-height: 1.6;
}

.features-image {
  position: relative;
  padding: 1rem;
}

.features-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.features-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  background: linear-gradient(
    45deg,
    rgba(0, 118, 71, 0.1),
    rgba(149, 167, 61, 0.1)
  );
  z-index: -1;
  transform: rotate(-3deg);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .features-content {
    padding-right: 0;
    margin-bottom: 3rem;
  }

  .feature-vertical-card {
    padding: 1.25rem;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}

@media (max-width: 576px) {
  .feature-vertical-card {
    padding: 1rem;
  }

  .feature-icon-wrapper {
    margin-right: 1rem;
  }

  .feature-icon {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }

  .feature-content h4 {
    font-size: 1.1rem;
  }

  .features-image {
    padding: 0.5rem;
  }
}

/* How It Works - Dark Section Styles */
.how-it-works-image {
  position: relative;
  padding: 1rem;
}

.how-it-works-image img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  transition: transform 0.5s ease;
}

.how-it-works-image:hover img {
  transform: scale(1.02);
}

.floating-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--primary-light), #7d8f2d);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.section-label {
  display: inline-block;
  background: rgba(149, 167, 61, 0.2);
  color: var(--primary-light);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

/* Steps Container */
.steps-container {
  position: relative;
}

.step-item {
  /* background: rgba(255, 255, 255, 0.05); */
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.step-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-left-color: var(--primary-light);
  transform: translateX(5px);
}

.step-header {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.step-number-circle {
  position: relative;
  margin-right: 1rem;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-dark), #005837);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 5px 15px rgba(0, 118, 71, 0.3);
  position: relative;
  z-index: 2;
}

.step-line {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% + 3.5rem);
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

/* .step-item:last-child .step-line {
  display: none;
} */

.step-icon {
  width: 50px !important;
  height: 50px;
  background: rgba(149, 167, 61, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 1.3rem;
  color: var(--primary-light);
  transition: all 0.3s ease;
}

.step-item:hover .step-icon {
  background: var(--primary-light);
  color: white;
  transform: scale(1.1);
}

.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0;
  flex-grow: 1;
}

.step-description {
  color: rgba(255, 255, 255, 0.7);
  margin-left: 3.5rem;
  line-height: 1.6;
}

/* CTA Box */
.cta-box {
  background: linear-gradient(
    135deg,
    rgba(0, 118, 71, 0.2),
    rgba(149, 167, 61, 0.2)
  );
  border: 1px solid rgba(149, 167, 61, 0.3);
  border-radius: 16px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
}

.cta-box i {
  font-size: 2rem !important;
  color: var(--primary-light);
}

.cta-box p {
  color: white;
  font-size: 1.1rem;
}

.cta-box strong {
  color: var(--primary-light);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .how-it-works-image {
    margin-bottom: 3rem;
  }

  .step-item {
    padding: 1.25rem;
  }

  .step-description {
    margin-left: 5rem;
  }
}

@media (max-width: 768px) {
  .how-it-works-image img {
    border-radius: 16px;
  }

  .floating-badge {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .step-header {
    flex-wrap: wrap;
  }

  .step-description {
    margin-left: 0;
    margin-top: 1rem;
  }

  .step-icon {
    margin-right: 0;
    margin-left: auto;
  }
}

@media (max-width: 576px) {
  .step-item {
    padding: 1rem;
  }

  .step-number {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .step-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .step-title {
    font-size: 1.1rem;
  }

  .cta-box {
    padding: 1rem;
  }

  .cta-box p {
    font-size: 1rem;
  }
}

/* App Screens Section */
.screens-section {
  background: linear-gradient(135deg, #f8fff8 0%, #edf7ed 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.screens-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-light),
    transparent
  );
}

.section-badge {
  display: inline-block;
  background: rgba(0, 118, 71, 0.1);
  color: var(--primary-dark);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

/* Phone Frame */
.phone-frame-slider {
  max-width: 280px;
  margin: 0 auto;
  position: relative;
}

.phone-frame {
  background: #222;
  border-radius: 30px;
  padding: 10px 5px;
  /* box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset, 0 0 30px rgba(149, 167, 61, 0.2); */
  position: relative;
  overflow: hidden;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 30px;
  background: #222;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 10;
}

.phone-speaker {
  width: 60px;
  height: 6px;
  background: #333;
  border-radius: 3px;
}

.phone-camera {
  width: 12px;
  height: 12px;
  background: radial-gradient(circle at 30% 30%, #555, #222);
  border-radius: 50%;
}

/* Swiper Inside Phone */
.screenSwiper {
  width: 100%;
  height: 600px;
  border-radius: 30px;
  overflow: hidden;
}

.screen-slide {
  position: relative;
  height: 100%;
}

.screen-slide img {
  width: 100%;
  height: 585px;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.screen-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  padding: 2rem 1rem 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.screen-slide:hover .screen-overlay {
  transform: translateY(0);
}

/* .screen-slide:hover img {
  transform: scale(1.05);
} */

.screen-overlay h5 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: white;
}

.screen-overlay p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 0;
}

.phone-bottom-bar {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  height: 5px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.home-indicator {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}

/* Custom Pagination */
.swiper-pagination.screen-pagination {
  position: absolute;
  bottom: 20px !important;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 10;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
  transition: all 0.3s ease;
  position: absolute;
  bottom: 10px;
}

.swiper-pagination-bullet-active {
  background: var(--primary-light);
  transform: scale(1.3);

  box-shadow: 0 0 10px var(--primary-light);
}

/* Custom Navigation Buttons */
.slider-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9rem;

  position: absolute;
  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);
}

.slider-nav-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: white;
  border: 2px solid rgba(0, 118, 71, 0.1);
  color: var(--primary-dark);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.slider-nav-btn:hover {
  background: var(--primary-dark);
  color: white;
  border-color: var(--primary-dark);
  /* transform: translateY(-3px); */
  box-shadow: 0 10px 20px rgba(0, 118, 71, 0.2);
}

.slider-nav-btn:active {
  transform: translateY(-1px);
}

.slider-counter {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-dark);
  display: flex;
  align-items: baseline;
}

.current-slide {
  font-size: 2rem;
  color: var(--primary-dark);
}

.total-slides {
  color: #666;
  font-size: 1.2rem;
}

/* Screen Features */
.screen-features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 1rem;
  /* flex-wrap: wrap; */
}

.feature-point {
  text-align: center;
  max-width: 200px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.2rem;
  color: var(--primary-dark);
  box-shadow: 0 10px 20px rgba(0, 118, 71, 0.1);
  transition: all 0.3s ease;
}

.feature-point:hover .feature-icon {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-5px);
}

.feature-point h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.feature-point p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
  .screens-section {
    padding: 70px 0;
  }

  .phone-frame-slider {
    max-width: 280px;
  }

  .screenSwiper {
    height: 500px;
  }

  .slider-navigation {
    gap: 1rem;
    margin-top: 2rem;
  }

  .slider-nav-btn {
    width: 50px;
    height: 50px;
  }

  .screen-features {
    gap: 2rem;
    margin-top: 3rem;
  }

  .feature-point {
    max-width: 160px;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .phone-frame-slider {
    max-width: 250px;
  }

  .screenSwiper {
    height: 450px;
  }

  .slider-navigation {
    gap: 0.5rem;
  }

  .screen-features {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .feature-point {
    max-width: 100%;
  }
}

/* Contact Section */
.contact-section {
  background: #ffffff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 118, 71, 0.2),
    transparent
  );
}

.section-badge {
  display: inline-block;
  background: linear-gradient(
    135deg,
    rgba(0, 118, 71, 0.1),
    rgba(149, 167, 61, 0.1)
  );
  color: var(--primary-dark);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

/* Contact Info Card */
.contact-info-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 2.5rem;
  height: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 118, 71, 0.1);
  position: relative;
  overflow: hidden;
}

/* .contact-info-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(
          to bottom,
          var(--primary-dark),
          var(--primary-light)
        );
      } */

.contact-header {
  margin-bottom: 2.5rem;
}

.contact-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.contact-header p {
  color: #666;
  margin-bottom: 0;
}

/* Contact Methods */
.contact-methods {
  margin-bottom: 2.5rem;
}

.contact-method {
  display: flex;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.contact-method:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.method-icon {
  position: relative;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.icon-circle {
  width: 60px;
  height: 60px;
  background: rgba(0, 118, 71, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary-dark);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.contact-method:hover .icon-circle {
  background: var(--primary-dark);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 118, 71, 0.2);
}

/* .method-line {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% + 2rem);
  background: linear-gradient(to bottom, rgba(0, 118, 71, 0.1), transparent);
} */

.contact-method:last-child .method-line {
  display: none;
}

.method-content {
  flex-grow: 1;
}

.method-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.address,
.phone-number,
.email-item {
  color: #555;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.email-list {
  margin-bottom: 1rem;
}

.email-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  background: rgba(0, 118, 71, 0.03);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.email-item:hover {
  background: rgba(0, 118, 71, 0.08);
  transform: translateX(5px);
}

.email-item i {
  color: var(--primary-dark);
  font-size: 0.9rem;
}

.email-item a {
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 500;
  margin-right: 0.75rem;
  transition: color 0.3s ease;
}

.email-item a:hover {
  color: var(--primary-light);
}

.email-label {
  font-size: 0.8rem;
  color: #888;
  background: rgba(0, 0, 0, 0.05);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-left: auto;
}

.hours,
.response-time {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 0.75rem;
}

.map-link,
.call-btn {
  display: inline-flex;
  align-items: center;
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  background: rgba(0, 118, 71, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.map-link:hover,
.call-btn:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
}

/* Social Media */
.contact-social {
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-social h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.contact-social .social-icons {
  display: flex;
  gap: 0.75rem;
}

.contact-social .social-icon {
  width: 45px;
  height: 45px;
  background: #f8f9fa;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-social .social-icon:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 118, 71, 0.2);
}

/* Form Card */
.contact-form-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 2.5rem;
  height: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 118, 71, 0.1);
}

.form-header {
  margin-bottom: 2rem;
}

.form-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.form-header p {
  color: #666;
  margin-bottom: 0;
}

/* Form Styles */
.form-group {
  position: relative;
  margin-bottom: 0rem;
}

.form-group label {
  display: flex;
  align-items: center;
  font-weight: 500;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.form-group label i {
  color: var(--primary-light);
}

.form-control,
.form-select {
  padding: 1rem 1.5rem;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(149, 167, 61, 0.1);
  background: white;
  outline: none;
}

.form-icon {
  position: absolute;
  right: 1rem;
  top: 56%;
  /* transform: translateY(-50%); */
  color: #888;
  pointer-events: none;
}

.form-control:valid + .form-icon .fa-check {
  color: var(--primary-light);
}

/* File Upload */
.file-upload {
  position: relative;
}

.file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.file-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  border: 2px dashed rgba(0, 118, 71, 0.2);
  border-radius: 12px;
  background: rgba(0, 118, 71, 0.02);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.file-label:hover {
  border-color: var(--primary-light);
  background: rgba(149, 167, 61, 0.05);
}

.file-text {
  font-weight: 500;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.file-size {
  font-size: 0.85rem;
  color: #888;
}

/* Character Counter */
.char-counter {
  text-align: right;
  font-size: 0.85rem;
  color: #888;
  margin-top: 0.5rem;
}

.chars {
  font-weight: 600;
  color: var(--primary-dark);
}

/* Submit Button */
.form-actions {
  text-align: center;
}

.submit-btn {
  position: relative;
  background: linear-gradient(135deg, var(--primary-dark), #005837);
  color: white;
  border: none;
  padding: 1rem 3rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  min-width: 200px;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 118, 71, 0.3);
}

.submit-btn:active {
  transform: translateY(-1px);
}

.btn-spinner {
  display: none;
  margin-left: 0.5rem;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.form-note {
  font-size: 0.85rem;
  color: #888;
  margin-top: 1rem;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-note i {
  color: var(--primary-light);
}

/* Responsive Design */
@media (max-width: 992px) {
  .contact-section {
    padding: 70px 0;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 2rem;
  }

  .contact-method {
    flex-direction: column;
  }

  .method-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .method-line {
    display: none;
  }
}

@media (max-width: 768px) {
  .contact-info-card,
  .contact-form-card {
    padding: 1.5rem;
    border-radius: 20px;
  }

  .contact-header h3,
  .form-header h3 {
    font-size: 1.5rem;
  }

  .icon-circle {
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
  }

  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .contact-section {
    padding: 50px 0;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 1.25rem;
  }

  .email-item {
    flex-wrap: wrap;
  }

  .email-label {
    margin-left: 0;
    margin-top: 0.25rem;
    width: 100%;
  }

  .submit-btn {
    width: 100%;
    min-width: auto;
  }
}

/* Footer Styles */
.footer-section {
  background: linear-gradient(135deg, #001a0f 0%, #003320 100%);
  color: white;
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}

.footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-light),
    transparent
  );
}

/* Footer Logo */
.footer-logo {
  font-size: 2.2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.footer-logo span {
  color: var(--primary-light);
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 300px;
}

/* App Download Badges */
.app-download-badges {
  margin-bottom: 2.5rem;
}

.app-download-badges h6 {
  color: var(--primary-light);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.badge-group {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.app-badge {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.8rem 1.2rem;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 200px;
}

.app-badge:hover {
  background: rgba(149, 167, 61, 0.2);
  transform: translateY(-3px);
  border-color: var(--primary-light);
}

.app-badge i {
  font-size: 1.8rem;
  margin-right: 1rem;
  color: white;
}

.badge-text {
  display: block;
  font-size: 0.75rem;
  opacity: 0.8;
}

.badge-store {
  display: block;
  font-size: 1rem;
  font-weight: 600;
}

/* Social Links */
.social-links h6 {
  color: var(--primary-light);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  gap: 0.8rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(149, 167, 61, 0.3);
}

/* Footer Links */
.footer-links h5 {
  color: var(--primary-light);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-links h5::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-light);
  border-radius: 1px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
  margin-left: -15px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.footer-links a:hover {
  color: var(--primary-light);
  transform: translateX(5px);
}

.footer-links a::before {
  content: "›";
  margin-right: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-links a:hover::before {
  opacity: 1;
}

/* Contact Information */
.footer-contact h5 {
  color: var(--primary-light);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-contact h5::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-light);
  border-radius: 1px;
}

.contact-methods {
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(149, 167, 61, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
  color: var(--primary-light);
  font-size: 1rem;
}

.contact-info h6 {
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.25rem;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

.contact-info small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

/* Payment Methods */
.payment-methods h6 {
  color: var(--primary-light);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.payment-icons {
  display: flex;
  gap: 1rem;
}

.payment-icons i {
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.payment-icons i:hover {
  color: white;
}

/* Footer Bottom */
/* .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 3rem;
} */

.copyright p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.copyright a {
  text-decoration: none;
  color: white;
  font-weight: 600;
}

.copyright a:hover {
  text-decoration: none;
  color: rgb(6, 186, 24);
}

.copyright strong {
  color: var(--primary-light);
  font-weight: 600;
}

.footer-bottom-links {
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--primary-light);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-dark);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary-light);
  transform: translateY(-5px) !important;
}

/* Responsive Design */
@media (max-width: 992px) {
  .footer-section {
    padding: 60px 0 30px;
  }

  .footer-bottom-links {
    justify-content: flex-start;
    margin-top: 1rem;
  }

  .contact-item {
    margin-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .footer-section {
    padding: 50px 0 30px;
  }

  .footer-logo {
    font-size: 1.8rem;
  }

  .badge-group {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .app-badge {
    min-width: 180px;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .payment-icons {
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 576px) {
  .footer-section {
    padding: 40px 0 25px;
  }

  .footer-links {
    margin-bottom: 2rem;
  }

  .app-badge {
    min-width: 160px;
    padding: 0.6rem 1rem;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-bottom-links {
    justify-content: center;
    text-align: center;
  }

  .copyright {
    text-align: center;
    margin-bottom: 1rem;
  }

  .back-to-top {
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

@media (max-width: 991px) {
  [data-aos="fade-left"],
  [data-aos="fade-right"] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* Optional: Disable any custom animations */
  .animate-left,
  .animate-right {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* Breadcrumb Section */
.my-breadcu {
  background-color: var(--primary-dark);
  width: 100%;
  display: flex;
  margin-top: 80px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Heights */
@media (min-width: 992px) {
  .my-breadcu {
    height: 200px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .my-breadcu {
    height: 250px;
  }
}
@media (max-width: 767px) {
  .my-breadcu {
    height: 200px;
  }
}

/* Breadcrumb Heading */
.my-breadcu h1 {
  color: white;
  font-family: var(--body-font);
  font-size: 2.6rem;
}

/* Common Content Styles */
.common-styles-for h3 {
  font-family: var(--body-font);
  font-size: 1.5rem;
  color: var(--dark-color);
  margin-bottom: 12px;
}

.common-styles-for h4 {
  font-family: var(--body-font);
  font-size: 1.2rem;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.common-styles-for p {
  font-family: var(--body-font);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--dark-gray);
  margin-bottom: 16px;
}

.common-styles-for ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.section-padding {
  padding: 80px 0;
}
.common-styles-for ul li {
  font-family: var(--body-font);
  font-size: 0.95rem;
  color: var(--dark-gray);
  margin-bottom: 10px;
  padding-left: 26px;
  position: relative;
}

.common-styles-for ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--primary-dark) !important;
}

/* Responsive Text */
@media (max-width: 767px) {
  .my-breadcu h1 {
    font-size: 1.7rem;
  }

  .common-styles-for h3 {
    font-size: 1.3rem;
  }

  .common-styles-for h4 {
    font-size: 1.1rem;
  }

  .common-styles-for p,
  .common-styles-for ul li {
    font-size: 0.9rem;
  }
}

.common-styles-for {
  background: white;
}





  .account-delete-section {
    background: #f2f2f2;
    padding: 60px 15px;
  }

  .account-delete-section__card {
    background: #f2f2f2;
    padding: 20px 10px;
  }

  .account-delete-section__title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #0a0a3c;
    margin-bottom: 10px;
  }

  .account-delete-section__desc {
    text-align: center;
    font-size: 15px;
    color: #444;
    max-width: 850px;
    margin: 0 auto 30px;
  }

  .account-delete-section__form {
    margin-top: 10px;
  }

  .account-delete-section__field {
    margin-bottom: 18px;
  }

  .account-delete-section__field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #222;
  }

  .account-delete-section__field input,
  .account-delete-section__field textarea {
    width: 100%;
    border: 1px solid #cfd8dc;
    border-radius: 4px;
    padding: 12px 14px;
    font-size: 14px;
    outline: none;
    background: #fff;
  }

  .account-delete-section__field input:focus,
  .account-delete-section__field textarea:focus {
    border-color: #95a73d;
  }

  .account-delete-section__action {
    text-align: center;
    margin-top: 30px;
  }

  .account-delete-section__action button {
    background: #007647;
    color: #ffffff;
    border: none;
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .account-delete-section__action button:hover {
    background: #95a73d;
  }

  /* Responsive tweaks */
  @media (max-width: 768px) {
    .account-delete-section__title {
      font-size: 24px;
    }

    .account-delete-section__desc {
      font-size: 14px;
    }
  }
