/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #0066b8;
  --secondary-color: #2196f3;
  --dark-color: #110c0c;
  --light-color: #f4f4f4;
  --white: #fff;
  --transition: all 0.3s ease;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

/* Logo Styles */
.logo {
  padding: 10px 0;
}

.logo img {
  height: 50px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
  object-fit: contain;
}

.logo:hover img {
  transform: scale(1.05);
}

/* Ensure logo is visible on scroll */
.header.scrolled .logo img {
  filter: brightness(0.8);
}

/* Update the nav styles */
.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0; /* Remove any default margins */
}

.nav-links a {
  text-decoration: none;
  color: #000000;
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: #0066b8;
}

.download-btn {
  white-space: nowrap; /* Prevent button text from wrapping */
  background: var(--primary-color);
  color: #ffffff;
  padding: 13px 18px;
  border: none;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.download-btn:hover {
  background: #000000;
  color: #ffffff;
}

.hamburger {
  display: none;
  cursor: pointer;
}
/* Hamburger icon for small screens */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: 20px;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background-color: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

/* Show hamburger on small screens */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #110c0c;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    display: none; /* Hidden by default */
  }

  .nav-links.active {
    display: flex; /* Show when hamburger is clicked */
  }

  .download-btn {
    display: none; /* Hide button on small screens */
  }
}

/* Hero/Banner Section Styles */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
}

.hero-slider {
  height: 100%;
  margin-top: 80px;
}

.slide {
  /* height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1; */
  position: relative;
  height: 100%;
  overflow: hidden;
}
.slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
  z-index: 1; /* overlay */
}
.slide-img {
  width: 100%;
  height: auto;
  object-fit: cover; /* or 'contain' based on preference */
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.hero-content {
  /* color: #fff;
  padding: 0 20px;
  
  position: relative;
  z-index: 2;
  padding-top: 20vh; */
  position: relative;
  z-index: 1;
  padding-top: 20vh;
  color: #fff;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Navigation Arrows Styles */
.hero .swiper-button-next,
.hero .swiper-button-prev {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: var(--primary-color);
  transition: all 0.3s ease;
  z-index: 11;
}

.hero .swiper-button-next:after,
.hero .swiper-button-prev:after {
  font-size: 20px;
  font-weight: bold;
}

.hero .swiper-button-next {
  right: 30px;
}

.hero .swiper-button-prev {
  left: 30px;
}

.hero .swiper-button-next:hover,
.hero .swiper-button-prev:hover {
  background-color: var(--primary-color);
  color: #fff;
  transform: scale(1.1);
}

/* Pagination Styles */
.hero .swiper-pagination {
  bottom: 30px !important;
}

.hero .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.9);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.hero .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--primary-color);
  width: 30px;
  border-radius: 6px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .hero .swiper-button-next,
  .hero .swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  .hero .swiper-button-next:after,
  .hero .swiper-button-prev:after {
    font-size: 16px;
  }

  .logo img {
    height: 40px;
  }
}
.who-we-are {
  padding-top: 80px;
  background: #f8f9fa;
  overflow: hidden;
}
.who-we-are .container {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 0 20px;
}
.who-we-are .image-container {
  flex: 1;
  position: relative;
  perspective: 1000px;
}
.who-we-are .image-container img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(1.05) contrast(1.05);
}
.who-we-are .image-container:hover img {
  transform: translateY(-10px) rotateY(5deg);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.25);
}
.who-we-are .image-container::before {
  content: "";
  position: absolute;
  top: 20px;
  left: -20px;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #005293, #9fcdf1);
  border-radius: 20px;
  z-index: -1;
  opacity: 1;
  transform: rotate(-3deg);
  transition: all 0.5s ease;
}
.who-we-are .image-container:hover::before {
  transform: rotate(-5deg) scale(1.05);
}
.who-we-are .image-container::after {
  content: "";
  position: absolute;
  bottom: -15px;
  right: -10px;
  width: 100%;
  height: 100%;
  border: 3px solid rgb(0, 0, 0);
  border-radius: 20px;
  z-index: -1;
  animation: borderPulse 2s infinite;
}
@keyframes borderPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.who-we-are .content {
  flex: 1;
}
.who-we-are h2 {
  font-size: 2.5rem;
  color: var(--dark-color);
  margin-bottom: 30px;
  line-height: 1.2;
}
.who-we-are .content span {
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
}
.who-we-are p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 15px;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
  .who-we-are .container {
    gap: 30px;
  }
  .who-we-are h2 {
    font-size: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .who-we-are .container {
    flex-direction: column;
  }
  .who-we-are .image-container {
    width: 100%;
    margin-bottom: 30px;
  }
  .who-we-are .image-container img {
    height: 300px;
  }
  .who-we-are .content {
    text-align: center;
  }
  .who-we-are h2 {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 480px) {
  .who-we-are {
    padding: 40px 0;
  }
  .who-we-are .container {
    padding: 0 15px;
  }
  .who-we-are .image-container img {
    height: 250px;
  }
  .who-we-are h2 {
    font-size: 1.5rem;
  }
  .who-we-are p {
    font-size: 1rem;
  }
  .who-we-are .content span {
    font-size: 0.9rem;
  }
}
/* Updated About Section Styles */
.about {
  padding-top: 80px;
  background: var(--light-color);
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.about-image {
  position: relative;
  height: 100%;
  min-height: 500px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
}

.about-content {
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-content .subheading {
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-content h2 {
  font-size: 2.5rem;
  color: var(--dark-color);
  margin-bottom: 30px;
  line-height: 1.2;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 30px;
}

.about-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.about-features li {
  font-size: 1.1rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  color: #555;
}

.about-features li i {
  color: var(--primary-color);
  margin-right: 10px;
  font-size: 1.2rem;
}

.about-btn {
  background: var(--primary-color);
  color: var(--white);
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.about-btn:hover {
  background: #45a049;
  transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .about-wrapper {
    grid-template-columns: 1fr;
  }

  .about-image {
    min-height: 400px;
  }

  .about-content {
    padding: 40px;
  }

  .about-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 60px 0;
  }

  .about-content {
    padding: 30px;
  }

  .about-content h2 {
    font-size: 1.8rem;
  }

  .about-text p,
  .about-features li {
    font-size: 1rem;
  }
}

/* Updated Features Section Styles */
.features {
  padding-top: 80px;
  background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .subtitle {
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: block;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--dark-color);
  margin-bottom: 20px;
}

.section-header p {
  color: #666;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.feature-card {
  background: var(--white);
  border-radius: 15px;
  padding: 40px 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 18px 4px rgb(0 0 0 / 13%);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(76, 175, 80, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.feature-card:hover .icon-wrapper {
  background: var(--primary-color);
}

.icon-wrapper i {
  font-size: 35px;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.feature-card:hover .icon-wrapper i {
  color: var(--white);
}

.feature-content h3 {
  font-size: 1.5rem;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.feature-content p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: #555;
  font-size: 0.95rem;
}

.feature-list li i {
  color: var(--primary-color);
  margin-right: 10px;
  font-size: 1rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .feature-card {
    padding: 30px 25px;
  }
}

/* Add animation for cards */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-card {
  animation: fadeInUp 0.6s ease forwards;
}

.feature-card:nth-child(2) {
  animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
  animation-delay: 0.4s;
}

/* Contact Section Styles */
.contact {
  padding-top: 80px;
  padding-bottom: 40px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%234caf50" fill-opacity="0.05"/></svg>');
  opacity: 0.5;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  position: relative;
  z-index: 1;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-card {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-icon {
  width: 60px;
  height: 60px;
  background: rgba(76, 175, 80, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon i {
  font-size: 24px;
  color: var(--primary-color);
}

.info-content h3 {
  font-size: 1.2rem;
  color: var(--dark-color);
  margin-bottom: 5px;
}

.info-content p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 5px;
}

.info-subtitle {
  font-size: 0.9rem;
  color: #888;
}

.social-links {
  margin-top: 20px;
}

.social-links h3 {
  font-size: 1.2rem;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-decoration: none;
}

.social-icon:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.form-header {
  margin-bottom: 30px;
  text-align: center;
}

.form-header h3 {
  font-size: 1.8rem;
  color: var(--dark-color);
  margin-bottom: 10px;
}

.form-header p {
  color: #666;
  font-size: 1rem;
}

.form-group {
  position: relative;
  margin-bottom: 25px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 15px 15px 15px 45px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
  padding-top: 15px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

.form-group label {
  position: absolute;
  left: 45px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  transition: all 0.3s ease;
  pointer-events: none;
  background: transparent;
  padding: 0 5px;
}

.form-group textarea ~ label {
  top: 20px;
  transform: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary-color);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:valid ~ label {
  top: -10px;
  left: 15px;
  font-size: 0.8rem;
  color: var(--primary-color);
  background: var(--white);
}

.form-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  transition: all 0.3s ease;
}

.form-group input:focus ~ .form-icon,
.form-group textarea:focus ~ .form-icon,
.form-group select:focus ~ .form-icon {
  color: var(--primary-color);
}

.submit-btn {
  width: 100%;
  padding: 15px 30px;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.submit-btn:hover {
  background: #000000;
  transform: translateY(-2px);
}

.submit-btn i {
  transition: transform 0.3s ease;
}

.submit-btn:hover i {
  transform: translateX(5px);
}

/* Responsive Styles for Contact Section */
@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-info {
    order: 2;
  }

  .contact-form {
    order: 1;
  }
}

@media (max-width: 768px) {
  .contact {
    padding: 60px 0;
  }

  .contact-form {
    padding: 30px;
  }

  .form-header h3 {
    font-size: 1.5rem;
  }

  .info-card {
    padding: 20px;
  }
}

/* Services Section Styles */
.services {
  padding-top: 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.services-slider {
  padding: 20px 10px 60px;
  position: relative;
}

.service-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
  transition: transform 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-content {
  padding: 25px 10px;
  text-align: center;
}

.service-content h3 {
  font-size: 1.4rem;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.service-content p {
  color: #666;
  line-height: 1.6;
}

/* Services Pagination Styles */
.services-slider .swiper-pagination {
  position: relative;
  bottom: -30px;
  width: 100%;
}

.services-slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ccc;
  opacity: 0.5;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.services-slider .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--primary-color);
  width: 25px;
  border-radius: 5px;
}

/* Download Section Styles */
.download {
  padding-top: 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.download::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%234caf50" fill-opacity="0.05"/></svg>');
  opacity: 0.5;
}

.download-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.download-text {
  padding-right: 30px;
}

.download-text .subtitle {
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: block;
}

.download-text h2 {
  font-size: 2.5rem;
  color: var(--dark-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.download-text p {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.app-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.feature-item span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-color);
}

.store-buttons {
  display: flex;
  gap: 20px;
}

.store-btn {
  transition: transform 0.3s ease;
}

.store-btn:hover {
  transform: translateY(-5px);
}

.store-btn img {
  height: 40px;
  width: auto;
}

.download-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.download-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.download-image:hover img {
  transform: translateY(-10px);
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.float-element {
  position: absolute;
  background: var(--white);
  padding: 15px 25px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 3s ease-in-out infinite;
}

.float-element i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.float-element span {
  font-weight: 500;
  color: var(--dark-color);
}

.element-1 {
  top: 20%;
  left: -20px;
  animation-delay: 0s;
}

.element-2 {
  bottom: 20%;
  right: -20px;
  animation-delay: 1.5s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive Styles for Download Section */
@media (max-width: 992px) {
  .download-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .download-text {
    padding-right: 0;
  }

  .app-features {
    justify-content: center;
  }

  .store-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .download {
    padding: 60px 0;
  }

  .download-text h2 {
    font-size: 2rem;
  }

  .app-features {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .float-element {
    display: none;
  }
}

/* Footer Styles */
.footer {
  background: #005293;
  color: var(--white);
  padding: 80px 0 30px;
  position: relative;
}

.footer-main {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.footer-logo {
  margin-bottom: 25px;
  display: inline-block;
}

.footer-logo img {
  height: 50px;
  width: auto;
  /* filter: brightness(0) invert(1); */
  transition: transform 0.3s ease;
}

.footer-logo:hover img {
  transform: scale(1.05);
}

.footer-description {
  color: floralwhite;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-social .social-icon {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #005293;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease forwards;
}

.footer-social .social-icon:nth-child(1) {
  animation-delay: 0.1s;
}
.footer-social .social-icon:nth-child(2) {
  animation-delay: 0.2s;
}
.footer-social .social-icon:nth-child(3) {
  animation-delay: 0.3s;
}
.footer-social .social-icon:nth-child(4) {
  animation-delay: 0.4s;
}

.footer-social .social-icon:hover {
  background: #ffffff;
  color: #000000;
  transform: translateY(-5px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  color: floralwhite;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  color: floralwhite;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #000000;
}

/* Responsive Styles for Footer */
@media (max-width: 768px) {
  .footer {
    padding: 60px 0 30px;
  }

  .footer-description {
    font-size: 1rem;
    padding: 0 20px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-links {
    justify-content: center;
  }
}

/* App Screens Section Styles */
.app-screens {
  padding-top: 80px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  overflow: hidden;
}

.app-screens .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.app-screens .subtitle {
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: block;
}

.app-screens h2 {
  font-size: 2.5rem;
  color: var(--dark-color);
  margin-bottom: 20px;
}

.screens-slider {
  padding: 40px 20px 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.swiper-slide {
  width: calc(25% - 30px); /* 25% for 4 slides, minus the spacing */
  padding: 0 0px;
  transition: transform 0.3s ease;
}

.screen-frame {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
}

.screen-frame img {
  width: 100%;
  height: auto; /* Adjusted height for better fit */
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

/* Active slide styling */
.swiper-slide-active {
  transform: scale(1.1);
}

/* Update Swiper Pagination */
.screens-slider .swiper-pagination {
  bottom: 0;
}

.screens-slider .swiper-pagination-bullet {
  width: 30px;
  height: 4px;
  border-radius: 2px;
  background: #ccc;
  opacity: 0.5;
}

.screens-slider .swiper-pagination-bullet-active {
  background: var(--primary-color);
  opacity: 1;
  width: 50px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .swiper-slide {
    width: 250px;
    /* padding: 0 25px; */
  }

  .screen-frame img {
    height: 500px;
  }
}

@media (max-width: 1024px) {
  .swiper-slide {
    width: calc(33.333% - 25px); /* 3 slides for tablet */
  }
}

@media (max-width: 768px) {
  .swiper-slide {
    width: calc(50% - 20px); /* 2 slides for small tablet */
  }

  .screen-frame img {
    height: 440px;
  }
}

@media (max-width: 640px) {
  .swiper-slide {
    width: 100%; /* 1 slide for mobile */
  }
}

/* CTA Button Styles */
.cta-btn {
  display: inline-block;
  padding: 15px 30px;
  background-color: var(--primary-color);
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-btn:hover {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
  transform: translateY(-3px);
}

/* Responsive styles for the button */
@media (max-width: 768px) {
  .cta-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
}
.swiper-pagination {
  position: relative !important;
}
/* @media only screen and (max-width: 1024px) {
  body {
    display: none;
  }
  html:before {
    content: "Responsive Coming Soon Website Visible only Desktop";
    padding: 20%;
    text-align: center;
    font-size: 30px;
    display: block;
  }
} */
/* .header {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 999;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}
.logo img {
  height: 40px;
}
.nav {
  display: flex;
  align-items: center;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
.nav-links li a.active,
.nav-links li a:hover {
  color: #007bff;
}
.download-btn {
  margin-left: 1.5rem;
  padding: 8px 16px;
  background: #007bff;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
} */

/* Hamburger styles */
/* .hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  margin-left: 1rem;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s;
} */

/* Responsive styles */
/* @media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 1rem 0;
  }

  .nav-links.show {
    display: flex;
  }

  .download-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }
} */
.contact .container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px; /* Keep it consistent */
  margin: 0 auto;
}

@media (max-width: 350px) {
  .contact .container {
    padding: 0 15px; /* Adjust padding to prevent uneven spacing */
  }
}

@media (max-width: 320px) {
  .contact .container {
    padding: 0 10px; /* Further reduce padding on very small screens */
  }
}
/* Mobile view style */
@media (max-width: 991px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    /* background: white; */
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 999;
    display: none;
  }

  .nav-links.active {
    transform: translateY(0);
  }
}
.terms-section {
  /* background: #f9f9f9; Light gray background */
  padding: 50px 0px;
}

.terms {
  max-width: 1200px;
  margin: auto;
  background: white;
  /* padding: 30px; */
  border-radius: 10px;
  /* box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); */
}

.terms-section h1 {
  text-align: center;
  color: black;
  margin-bottom: 30px;
  background: #c1ac51;
  padding-bottom: 42px;
  padding-top: 70px;
  /* border-radius: 8px; */
  font-size: 38px;
}

.terms h2 {
  color: #333;
  font-size: 22px;
  margin-top: 20px;
}

.terms p,
.terms ul {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  padding-bottom: 20px;
}
.terms ul {
  padding-left: 40px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .terms {
    padding: 20px; /* Reduce padding for smaller screens */
  }

  .terms-section h1 {
    font-size: 24px; /* Smaller font for mobile */
    padding: 30px;
  }

  .terms h2 {
    font-size: 20px;
  }

  .terms p,
  .terms ul {
    font-size: 14px;
  }
}
.how-it-works {
  padding-top: 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  /* background: linear-gradient(90deg, #007bff, #00e1ff); */
}

.how-it-works .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.how-it-works .section-header h2 {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 20px;
  font-weight: 700;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
}

.step {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 123, 255, 0.1);
}

.step-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #007bff 0%, #00e1ff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
}

.step:hover .step-icon {
  transform: scale(1.1);
}

.step-icon i {
  font-size: 35px;
  color: white;
}

.step-number {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 40px;
  height: 40px;
  background: #ffffff;
  border: 3px solid #007bff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #007bff;
  font-size: 1.2rem;
}

.step h3 {
  margin: 20px 0;
  color: #1a1a1a;
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
}

.step p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
}

@media (max-width: 1200px) {
  .steps-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .steps-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .how-it-works {
    padding: 60px 0;
  }

  .step {
    padding: 30px 20px;
  }
}

@media (max-width: 900px) {
  .slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* or 'contain' based on preference */
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
  }
}

@media (max-width: 500px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content p {
    font-size: 14px;
  }
}