:root {
  --primary-dark: #093967;
  --primary-light: #3999f0;
  --accent: #3999f0;
  --gradient: linear-gradient(
    135deg,
    var(--primary-dark),
    var(--primary-light)
  );
  --dark-bg: #11497d;
  --light-bg: #f8fafc;
  --text-dark: #1e293b;
  --text-light: #f8fafc;
  --card-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  --hover-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  --radius: 16px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  overflow-x: hidden;
  background-color: var(--light-bg);
  color: var(--text-dark);
}

/* Loader */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s, visibility 0.5s;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
  color: white;
}

.loader-logo {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.loader-logo span {
  color: var(--accent);
}

.loader-bar {
  width: 200px;
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  margin: 0 auto;
  overflow: hidden;
}

.loader-progress {
  height: 100%;
  width: 0%;
  background: white;
  border-radius: 10px;
  animation: loading 2s ease-in-out forwards;
}

@keyframes loading {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.navbar-brand {
  font-weight: 900;
  font-size: 2rem;
  color: var(--primary-dark);
  letter-spacing: 1px;
}

.navbar-brand img {
  height: 75px;
}

.navbar-nav .nav-link {
  font-weight: 600;
  margin: 0 10px;
  color: var(--text-dark);
  transition: all 0.3s;
  position: relative;
  padding: 8px 0;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gradient);
  transition: width 0.3s;
  border-radius: 10px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-dark);
}

.nav-btn {
  background: var(--gradient);
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(57, 153, 240, 0.3);
}

.nav-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(57, 153, 240, 0.4);
}

/* Section Styling */
section {
  padding: 80px 0;
  position: relative;
}

.dark-section {
  background-color: var(--dark-bg);
  color: var(--text-light);
}

.light-section {
  background-color: var(--light-bg);
  color: var(--text-dark);
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
  text-align: center;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--primary-light);
  /* margin-bottom: 60px; */
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.title-accent {
  color: var(--accent);
}

/* Banner Section */
.banner-section {
  padding-top: 150px;
  background: var(--gradient);
  color: white;
  position: relative;
  overflow: hidden;
}

.banner-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23000" fill-opacity="0.05" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,192C672,181,768,139,864,138.7C960,139,1056,181,1152,186.7C1248,192,1344,160,1392,144L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
  background-size: cover;
  background-position: bottom;
}

.banner-content {
  position: relative;
  z-index: 2;
}

.banner-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 25px;
  line-height: 1.2;
}

.banner-text {
  font-size: 1.2rem;
  margin-bottom: 40px;
  line-height: 1.7;
  opacity: 0.9;
  max-width: 600px;
}

.banner-btns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-primary-custom {
  background: white;
  color: var(--primary-dark);
  border: none;
  padding: 15px 35px;
  border-radius: 30px;
  font-weight: 700;
  transition: all 0.3s;
  box-shadow: var(--card-shadow);
}

.btn-primary-custom:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-shadow);
}

.btn-outline-custom {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 15px 35px;
  border-radius: 30px;
  font-weight: 700;
  transition: all 0.3s;
}

.btn-outline-custom:hover {
  background: white;
  color: var(--primary-dark);
  transform: translateY(-5px);
}

.app-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.app-btn {
  display: inline-flex;
  align-items: center;
  padding: 15px 25px;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: white;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.app-btn:hover {
  background-color: white;
  color: var(--primary-dark);
  transform: translateY(-5px);
}

.app-btn i {
  font-size: 2rem;
  margin-right: 12px;
}

.banner-image {
  position: relative;
  z-index: 2;
  text-align: center;
}

.banner-image img {
  max-width: 100%;
  border-radius: 25px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  transform: perspective(1000px) rotateY(-15deg);
  transition: transform 0.5s;
}

.banner-image img:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 1;
}

.floating-element {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.floating-element:nth-child(1) {
  width: 100px;
  height: 100px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.floating-element:nth-child(2) {
  width: 70px;
  height: 70px;
  top: 70%;
  left: 80%;
  animation-delay: 2s;
}

.floating-element:nth-child(3) {
  width: 50px;
  height: 50px;
  top: 40%;
  left: 85%;
  animation-delay: 4s;
}

.floating-element:nth-child(4) {
  width: 120px;
  height: 120px;
  top: 80%;
  left: 15%;
  animation-delay: 1s;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-25px) rotate(10deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

/* About Section */
.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-image {
  flex: 1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  position: relative;
}

.about-image img {
  width: 100%;
  transition: transform 0.5s;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  opacity: 0.1;
  z-index: 1;
}

.about-text {
  flex: 1;
}

.about-text h3 {
  font-size: 2.2rem;
  margin-bottom: 25px;
  color: var(--primary-dark);
}

.about-text p {
  margin-bottom: 25px;
  line-height: 1.8;
  font-size: 1.1rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 35px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.about-feature i {
  width: 55px;
  height: 55px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* Why Choose Us */
.feature-card {
  background-color: #ffffff;
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: all 0.4s;
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* .feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient);
  z-index: 2;
} */

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-shadow);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  position: relative;
  z-index: 1;
}

.feature-icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--gradient);
  opacity: 0.2;
  z-index: -1;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.feature-icon i {
  font-size: 2rem;
  color: white;
}

.feature-card h4 {
  margin-bottom: 18px;
  color: var(--primary-dark);
  font-size: 1.4rem;
}

.feature-card p {
  color: #64748b;
  line-height: 1.7;
}

/* How It Works */
.steps-container {
  position: relative;
}

/* .steps-container::before {
  content: "";
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 3px;
  background: var(--gradient);
  z-index: 0;
} */

.step-card {
  text-align: center;
  padding: 30px 20px;
  position: relative;
  z-index: 1;
}

.step-card img {
  /* aspect-ratio: 2/1; */
  object-fit: cover;
  height: 200px;
  /* object-fit:contain ; */
  object-position: center;
  border-radius: 7px;
  box-shadow: var(--card-shadow);
  margin-bottom: 30px;
  background-color: white;
}

.step-card {
  position: relative;
  overflow: hidden;
}

.step-card img {
  display: block;
  width: 100%;
}

.step-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  transition: 0.6s;
}

.step-card:hover::after {
  left: 100%;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: white;
  font-size: 1.8rem;
  font-weight: 800;
  box-shadow: var(--card-shadow);
  position: relative;
  z-index: 2;
}

.step-card h4 {
  margin-bottom: 18px;
  color: var(--primary-dark);
  font-size: 1.3rem;
}

.dark-section .step-card h4 {
  color: white;
}

/* App Screens */
.app-screens-slider {
  padding: 0 0px;
}

.screen-slide {
  text-align: center;
  padding: 10px;
}

.screen-slide img {
  /* max-width: 250px; */
  border-radius: 30px;
  height: auto;
  width: 100%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.4s;
}

.screen-slide img:hover {
  transform: scale(1.02);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-light);
  background: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: var(--card-shadow);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1.3rem;
}

.swiper-pagination-bullet {
  background: var(--primary-light);
  opacity: 0.5;
  width: 12px;
  height: 12px;
  bottom: 100px !important;
}

.swiper-pagination-bullet-active {
  background: var(--primary-light);
  opacity: 1;
}

/* Download App */
.download-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.download-text {
  flex: 1;
}

.download-text h3 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  color: var(--primary-dark);
}

.download-text p {
  margin-bottom: 35px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.download-image {
  flex: 1;
  text-align: center;
  position: relative;
}

.download-image img {
  max-width: 300px;
  border-radius: 30px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 2;
}

.download-bg-element {
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--gradient);
  border-radius: 30px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  z-index: 1;
  opacity: 0.1;
}

/* Contact Section */
.contact-info {
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-form {
  background-color: white;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
}

.form-control {
  padding: 15px 20px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  margin-bottom: 20px;
  font-size: 1rem;
  transition: all 0.3s;
}

.form-control:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 0.25rem rgba(57, 153, 240, 0.25);
}

.submit-btn {
  background: var(--gradient);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 12px;
  font-weight: 700;
  transition: all 0.3s;
  width: 100%;
  font-size: 1.1rem;
}

.submit-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
  background-color: #0a0f1f;
  color: white;
  padding: 80px 0 0px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/fbg.jpg");
  background-size: cover;
  background-position: bottom;
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-logo {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 25px;
}

.footer-logo span {
  color: var(--accent);
}

.footer-about {
  margin-bottom: 35px;
  max-width: 400px;
  color: #94a3b8;
  line-height: 1.7;
}

.footer-links h5,
.footer-contact h5 {
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
  font-weight: 700;
  font-size: 1.2rem;
}

.footer-links h5::after,
.footer-contact h5::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 4px;
  background: var(--gradient);
  border-radius: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary-light);
}

.footer-contact p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  color: #94a3b8;
}

.footer-contact i {
  margin-right: 10px;
  color: var(--primary-light);
  width: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: #1e293b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s;
}

.social-icon:hover {
  background: var(--gradient);
  transform: translateY(-5px);
}

.copyright {
  text-align: center;
  padding-top: 20px;
  margin-top: 0px;
  border-top: 1px solid #1e293b;
  color: #94a3b8;
  position: relative;
  z-index: 2;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .banner-title {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 992px) {
  .banner-section {
    padding-top: 130px;
    text-align: center;
  }

  .banner-title {
    font-size: 2.5rem;
  }

  .about-content,
  .download-content {
    flex-direction: column;
  }

  .banner-btns,
  .app-buttons {
    justify-content: center;
  }

  .steps-container::before {
    display: none;
  }

  .app-screens-slider {
    padding: 0 30px;
  }

  .contact-form {
    padding: 30px 25px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .banner-title {
    font-size: 2.2rem;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 30px 20px;
  }

  .footer-logo {
    font-size: 1.8rem;
  }

  .banner-image img {
    transform: perspective(1000px) rotateY(0deg);
  }
}

@media (max-width: 576px) {
  section {
    padding: 80px 0;
  }

  .banner-section {
    padding-top: 120px;
  }

  .banner-title {
    font-size: 2rem;
  }

  .banner-text {
    font-size: 1rem;
  }

  .btn-primary-custom,
  .btn-outline-custom {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .app-btn {
    padding: 12px 18px;
    font-size: 0.9rem;
  }

  .app-btn i {
    font-size: 1.7rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .app-screens-slider {
    padding: 0 15px;
  }
}

.screenSwiper {
  padding-bottom: 50px;
}

/* App Download Section */
.app-download-section {
  padding: 8rem 0;
  background-color: var(--dark-color);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.app-download-section .section-header h2 {
  color: var(--white);
}

.app-download-section p {
  margin-bottom: 2rem;
  opacity: 0.9;
}

.download-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.feature-item {
  display: flex;
  align-items: center;
  background-color: rgb(9 57 103 / 8%);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item i {
  color: var(--primary-color);
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

.feature-item span {
  font-size: 0.9rem;
  font-weight: 500;
}

.sasa {
  display: flex;
  justify-content: center;
  align-items: center;
  /* height: 100vh; */
  margin: 0;
  background-color: #ffffff00;
  perspective: 1000px;
}
.mock-container {
  display: flex;
  gap: 40px;
  transform-style: preserve-3d;
}
.phone-mockup {
  position: relative;
  width: 180px;
  height: 360px;
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transform: rotateX(10deg) rotateY(0deg) translateZ(0);
  transition: transform 0.3s;
}
.phone-mockup:hover {
  transform: rotateX(10deg) rotateY(10deg) translateZ(20px);
}
.phone-mockup .screen {
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transform: translateZ(10px);
}
.phone-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.phone-mockup::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 11px;
  background: #0c0c0c;
  border-radius: 20px;
  z-index: 1;
}
/* Positioning for 3D effect */
.phone-mockup:nth-child(1) {
  transform: rotateX(0deg) translateZ(0);
  margin-top: 75px;
}
.phone-mockup:nth-child(2) {
  transform: rotateX(0deg) translateZ(20px);
  margin-top: 0px;
}
.phone-mockup:nth-child(3) {
  transform: rotateX(0deg) translateZ(0px);
  margin-top: -75px;
}

.aqaq {
  display: flex;
  justify-content: center;
  align-items: center;
  /* height: 100vh; */
  margin: 0;
  background-color: #ffffff00;
  perspective: 1000px;
}
.my-download-collection {
  display: flex;
  gap: 0px;
  transform-style: preserve-3d;
}
.my-download-collection .phone-mockup {
  position: relative;
  width: 180px;
  height: 360px;
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.my-download-collection .phone-mockup .screen {
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  transform: translateZ(10px);
}
.my-download-collection .phone-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.my-download-collection .phone-mockup::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 10px;
  background: #333;
  border-radius: 20px;
  z-index: 1;
}
/* 3D positioning and rotation to face center */
.my-download-collection .phone-mockup:nth-child(1) {
  transform: rotateY(30deg) translateZ(-100px) rotateX(10deg);
  margin-top: 0;
}
.my-download-collection .phone-mockup:nth-child(2) {
  transform: rotateX(0deg) translateZ(0);
  margin-top: 0;
}
.my-download-collection .phone-mockup:nth-child(3) {
  transform: rotateY(-30deg) translateZ(-100px) rotateX(10deg);
  margin-top: 0;
}

.download-section .app-btn {
  display: inline-flex;
  align-items: center;
  padding: 15px 25px;
  background-color: #093967;
  backdrop-filter: blur(10px);
  color: white;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.download-section .app-btn:hover {
  background-color: #3999f0;
  color: white;
  transform: translateY(-5px);
}
.download-section .app-btn:active {
  background-color: #3999f0;
  color: white;
  transform: translateY(-5px);
}

.why-color {
  background: linear-gradient(160deg, #11497d, #0e3a63, #072235);
}

/* .why-color {
  background: linear-gradient(135deg, #3999f0, #11497d);
  position: relative;
  padding: 90px 0;
  color: #fff;
  overflow: hidden;
}

.why-color::before,
.why-color::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.why-color::before {
  background: #3999f0;
  top: -50px;
  left: -40px;
}

.why-color::after {
  background: #11497d;
  bottom: -50px;
  right: -40px;
} */

.why-color-2 {
  background: linear-gradient(160deg, #11497d, #0e3a63, #072235);
}

.why-color-3 {
  background: radial-gradient(circle at center, #1c6bb0, #11497d, #0a2d4b);
}

footer {
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/fbg.jpg");
  background-size: cover;
  background-position: bottom;
  z-index: 1;
}

footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgb(0 0 0 / 84%), rgba(0, 0, 0, 0.85));
  z-index: 2;
}

footer * {
  position: relative;
  z-index: 3; /* Footer content stays ABOVE overlays */
}

@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: 90px;
  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;
}
