* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
.store-logo {
  display: flex !important;
  gap: 0.5rem;
}
.store-logo img {
  width: 149px;
  height: 45px;
}

/* Language Selector Styles */
.language-selector {
  position: relative;
  display: inline-block;
  margin: 0 10px;
  vertical-align: middle;
}

.language-dropdown {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  padding: 8px 30px 8px 15px;
  font-size: 14px;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat, repeat;
  background-position: right 0.7em top 50%, 0 0;
  background-size: 0.65em auto, 100%;
}

.language-dropdown option {
  background-color: #2c3e50;
  color: #ffffff;
  padding: 8px 15px;
}

/* RTL support */
[dir="rtl"] .language-dropdown {
  padding: 8px 15px 8px 30px;
  background-position: left 0.7em top 50%, 0 0;
}

/* Hover and focus states */
.language-dropdown:hover,
.language-dropdown:focus {
  border-color: #ffffff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}

/* For mobile devices */
@media (max-width: 992px) {
  .language-selector {
    display: block;
    margin: 10px 0;
    width: 100%;
  }
  
  .language-dropdown {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    display: block;
  }
}

/* p{
    font-family: 'Lexend', sans-serif;
  } */

h4 {
  font-family: "Lexend", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;

  max-width: 1920px;
  background-color: #ffffff;
}

/* Featured Services Section */
.featured-services {
  padding: 80px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.featured-services .container {
  max-width: 1200px;
  margin: 0 auto;
}

.featured-services h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-intro {
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.service-preview-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-preview-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-preview-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.preview-image {
  height: 200px;
  overflow: hidden;
}

.preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-preview-card:hover .preview-image img {
  transform: scale(1.05);
}

.service-preview-card h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin: 1.5rem 1.5rem 0.5rem;
}

.service-preview-card p {
  color: #666;
  padding: 0 1.5rem 1.5rem;
  line-height: 1.6;
}

.learn-more {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  margin: 0 1.5rem 1.5rem;
  transition: color 0.3s ease;
}

.learn-more i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.learn-more:hover {
  color: var(--accent);
}

.learn-more:hover i {
  transform: translateX(5px);
}

.cta-box {
  background: linear-gradient(135deg, var(--primary), #003366);
  color: white;
  padding: 3rem 2rem;
  border-radius: 10px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-box h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.cta-box p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

/* About Preview Section */
.about-preview {
  padding: 80px 20px;
  background-color: white;
}

.about-preview .container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-preview-content {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.about-preview-text {
  flex: 1;
  text-align: left;
}

.about-preview-text h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.about-preview-text p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.feature-list {
  list-style: none;
  margin-bottom: 2rem;
}

.feature-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  color: #444;
}

.feature-list i {
  color: var(--accent);
  margin-right: 1rem;
  font-size: 1.2rem;
}

.about-preview-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-preview-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.about-preview-image:hover img {
  transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .about-preview-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .about-preview-text, 
  .about-preview-image {
    flex: none;
    width: 100%;
  }
  
  .about-preview-text {
    order: 2;
  }
  
  .about-preview-image {
    order: 1;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .featured-services h2,
  .about-preview-text h2 {
    font-size: 2rem;
  }
  
  .service-preview-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .cta-box h3 {
    font-size: 1.5rem;
  }
}

/* Global Styles */
:root {
  --primary: #002147;
  --accent: #54cd00;
  --white: #ffffff;
  --light: #f5f5f5;
  --dark: #333333;
  --transition: all 0.3s ease;
}

body {
  font-family: 'Lexend', sans-serif;
  color: var(--dark);
  line-height: 1.6;
}

/* Header Styling */
header {
  width: 100vw;
  gap: 7.5rem;
  background: var(--primary);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  position: fixed;
  z-index: 1000;
}
.Logo_2 {
  height: 25px;
  width: 100px;
  margin-top: 0.5rem;
}
.VIdeo_youTube_lignmate {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.Logos_imgg {
  display: flex;
  /* justify-content: center; */
  gap: 0.5rem;
  align-items: center;
}
header img {
  width: 90px;
  height: 58  px;
}
.Logo_two_span {
  font-size: 22px;
  font-weight: 700;
  font-family: none;
  color: var(--primary);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.navbar ul {
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding-top: 20px; */
  gap: 2rem;
}

.navbar li {
  list-style: none;
}

.navbar a {
  text-decoration: none;
  color: #fff;
  font-family: "Lexend";
  font-weight: 600;
}

.navbar .navbar-toggler {
  display: none;
}

.navbar ul button {
  width: 150px;
  height: 40px;
  border-radius: 50px;
  background-color:  var(--accent);
  border: none;
  color: #fff;
  font-weight: bold;
  letter-spacing: 1px;
}
/* header {
  background: var(--primary);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}


.nav-brand {
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 50px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-list {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list li a {
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-list li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: all 0.3s ease;
}

.nav-list li a:hover {
  color: var(--accent);
}

.nav-list li a:hover::after {
  width: 100%;
}

.download-btn {
  background: var(--accent);
  color: var(--white);
  border: 2px solid var(--accent);
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.download-btn:hover {
  background: transparent;
  color: var(--accent);
  transform: translateY(-2px);
} */

/* ================= main-hero styele here ================= */

.hero {
  padding: 12rem 0 10rem;
  background: linear-gradient(135deg, var(--primary) 0%, #003166 100%);
  color: var(--white);
}
.Download_hero {
  padding: 15rem 0 10rem;
  background: var(--accent);
  color: var(--primary);
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  gap: 4rem;
  align-items: center;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}
.Download_hero h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.Download_hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}
.hero-buttons {
  display: flex;
  gap: 24px;
  margin-top: 32px;
}

.hero-buttons .btn {
  padding: 0;
  background: transparent;
  border: none;
  transition: transform 0.3s ease;
}

.hero-buttons .btn:hover {
  transform: translateY(-3px);
}

.hero-buttons .btn img {
  height: 48px;
  width: auto;
}
/* Responsive styles */
@media (max-width: 576px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .hero-buttons .btn img {
    height: 40px;
  }

}

.btn {
  padding: 1rem 2rem;
  border-radius: 5px;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
}
/* .btn.primary {
  background: var(--accent);
  color: var(--white);
  border: 2px solid var(--accent);
}

.btn.primary:hover {
  background: transparent;
  color: var(--accent);
} */

/* .btn.secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn.secondary:hover {
  background: var(--white);
  color: var(--primary);
} */

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgb(240, 244, 244);
  border: 1px solid #ccc;
}

/* ================= sec-2 styele here ================= */
.sec-2 {
  background: var(--white);
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}
.hero-text{
  flex: 1;
}
.sec-2-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 90%;
}

.left-img {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 33, 71, 0.1);
  transition: transform 0.5s ease;
}

.left-img:hover {
  transform: translateY(-10px);
}

.left-img img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.5s ease;
}

.left-img:hover img {
  transform: scale(1.05);
}

.right-sec-2 {
  padding: 2rem;
}

.right-sec-2 h4 {
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  opacity: 0;
  animation: fadeInUp 0.5s ease forwards;
}

.right-sec-2 h1 {
  color: var(--primary);
  font-size: 2.8rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  font-weight: 700;
  opacity: 0;
  animation: fadeInUp 0.5s ease forwards 0.2s;
}

.right-sec-2 p {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 0.5s ease forwards 0.4s;
}

.right-sec-2 .highlight {
  color: var(--accent);
  font-weight: 600;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .sec-2-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .left-img img {
    height: 400px;
  }

  .right-sec-2 {
    text-align: center;
    padding: 1rem;
  }
}

@media (max-width: 576px) {
  .sec-2 {
    padding: 80px 0;
  }

  .right-sec-2 h1 {
    font-size: 2.2rem;
  }

  .right-sec-2 p {
    font-size: 1rem;
  }

  .left-img img {
    height: 300px;
  }
  .ss1_bubble{
  width: 150px;  
}
}

/* ================= sec-3 styele here ================= */
.sec-3 {
  background: #54cd00;
  padding: 100px 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  color: white;
  margin-bottom: 60px;
  font-weight: 700;
  position: relative;
  padding-bottom: 20px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: white;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.card-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .card-image img {
  transform: scale(1.1);
}

.service-card h3 {
  color: white;
  font-size: 1.5rem;
  margin: 20px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.service-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 20px 20px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

@media (max-width: 992px) {
  .service-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .sec-3 {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .service-cards {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .card-image {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .services {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }

  .service-card h3 {
    font-size: 1.3rem;
  }
}

/* ================= sec-4 styele here ================= */

.sec-4 {
  background: var(--primary);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.management-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  font-size: 2.8rem;
  color: var(--white);
  margin-bottom: 60px;
  font-weight: 700;
  position: relative;
  padding-bottom: 20px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--accent);
}

.team-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 20px 0;
}

.team-card {
  text-align: center;
  transition: all 0.3s ease;
  padding: 20px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.team-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
}

.member-image {
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent);
  transition: all 0.3s ease;
}

.team-card:hover .member-image {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(84, 205, 0, 0.3);
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.team-card h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-top: 20px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.team-card:hover h3 {
  color: var(--accent);
}

/* Responsive Design */
@media (max-width: 992px) {
  .team-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .sec-4 {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }

  .team-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .member-image {
    width: 150px;
    height: 150px;
  }
  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  .hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, var(--primary) 0%, #003166 100%);
  color: var(--white);
}
  .Download_hero {
  padding: 8rem 0 4rem;
}
}

@media (max-width: 480px) {
  .section-title {
    font-size: 2rem;
  }

  .team-card h3 {
    font-size: 1.3rem;
  }

  .member-image {
    width: 120px;
    height: 120px;
  }
}

/* ================= sec-5 styele here ================= */
.sec-5 {
  width: 100vw;
  height: 100%;
  background: #fff0e9;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.main-sec5 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8rem;
}
.left-text-sec5 {
  color: white;
  padding-left: 5rem;
}
.left-text-sec5 p {
  color: #54cd00;
  font-weight: 600;
}
.left-text-sec5 h1 {
  font-family: "Lexend", sans-serifs;
  font-style: normal;
  font-weight: 600;
  font-size: 46px;
  line-height: 58px;
  color: #075767;
}
.left-text-sec5 p {
  font-family: "Lexend", sans-serifs;
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 25px;
}
.left-text-sec5 h4 {
  color: #075767;
}
.right-img-sec5 img {
  width: 30%;
  border-radius: 20px;
}
.right-img-sec5 {
  display: flex;
  justify-content: center;
}
/* ================= sec-6 styele here ================= */
.sec-6 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-sec6 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 5rem 0;
}
.left-img-sec6 img {
  width: 85%;
}

.right-text-sec6 h1 {
  font-family: "Lexend", sans-serifs;
  font-style: normal;
  font-weight: 500;
  font-size: 46px;
  line-height: 58px;
}
.right-text-sec6 p {
  font-family: "Lexend", sans-serifs;
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 25px;
}
/* ================= sec-7 styele here ================= */

.sec-7 {
  background: #075767;
}

.main-sec7 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 0rem;
  gap: 5rem;
}
.left-text-sec h4 {
  color: #54cd00;
}
.left-text-sec h1 {
  font-family: "Lexend", sans-serifs;
  font-style: normal;
  font-weight: 500;
  font-size: 46px;
  line-height: 58px;
}
.left-text-sec h3 {
  font-family: "Montserrat Alternates", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 20px;
  line-height: 28px;
}
.left-text-sec p {
  font-family: "Lexend", sans-serifs;
  font-style: normal;
  font-weight: 300;
  font-size: 17px;
  line-height: 25px;
  color: #fff;
}
.right-img-sec7 img {
  width: 38%;
  display: flex;
  border-radius: 20px;
}
.right-img-sec7 {
  width: 50%;
  display: flex;
  justify-content: center;
}
/* ================= sec-8 styele here ================= */
.container8 {
  /* background-color: #FFFFFF; */
  padding: 25rem 10rem;
  width: 100vw;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.contect-sec {
  margin-left: 60px;
  margin-top: 3rem;
  gap: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container8 h1 {
  /* margin-top: 5rem; */
  font-family: "Lexend", sans-serifs;
  font-style: normal;
  font-weight: 650;
  font-size: 36px;
  line-height: 58px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.name-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;

  font-family: "Lexend", sans-serifs;
  font-weight: bold;
}

.contect-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding-top: 20px;
  font-family: "Lexend", sans-serifs;
}

.First-name,
.Last-name,
.Email,
.Mobile-number,
.Message0,
.business {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.First-name,
.Last-name,
.Email,
.Mobile-number,
.Message0,
.business,
label {
  display: flex;
  font-family: "Lexend", sans-serifs;
  font-size: 1rem;
  font-weight: bold;
}
.f-name,
.l-name,
.email,
.M-number,
.BN {
  display: flex;
}

.business {
  padding-top: 20px;
}
.business-box {
  border: 0.5px solid #6363637d;
  border-radius: 8px;
  width: 545px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Lexend", sans-serifs;
}
.business-box input {
  width: 488px;
  height: 40px;
  background: transparent;
  border: none;
  outline: none;
  font-family: "Lexend", sans-serifs;
}

.name-box2 {
  border: 0.5px solid #6363637d;
  border-radius: 8px;
  width: 253px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Lexend", sans-serifs;
}

.name-box2 input {
  width: 200px;
  height: 40px;
  background: transparent;
  border: none;
  outline: none;
  font-family: "Lexend", sans-serifs;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.name-box2 input::placeholder {
  color: #212529;
  font-family: "Lexend", sans-serifs;
}

.Message {
  padding-top: 30px;
  font-family: "Lexend", sans-serifs;
}

.message1 {
  border: 0.5px solid #6363637d;
  border-radius: 8px;
  width: 545px;
  height: 135px;
  gap: 2rem;
  font-family: "Lexend", sans-serifs;
}

.message1 textarea {
  width: 500px;
  height: 125px;
  background: transparent;
  border: none;
  outline: none;
  resize: none;
  padding: 10px;
  font-family: "Lexend", sans-serifs;
}

.message1 textarea::placeholder {
  color: #212529;
}

.submit {
  border: none;
  font-family: "Lexend", sans-serifs;
  margin-top: 20px;
}

.submit input {
  color: #faf9f6;
  border: none;
  font-size: 14px;
  width: 111px;

  background: #002147;
  border-radius: 50px;
  padding: 13px 30px;
  cursor: pointer;
}

.submit input:hover {
  background: #54cd00;
}

.right-img-sec8 img {
  width: auto;
}
/* ================= footer styele here ================= */
footer {
  background: #002147;
  padding-top: 10px;
  width: 100vw;
  height: 150px;
}

.bottom-icon {
  max-width: 1200px;
  width: 71%;
  margin: auto;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.left-text {
  font-family: "Lexend", sans-serifs;
  flex-direction: column;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  height: 50px;
  width: 455px;
  color: #faf9f6;
}
.footer-text {
  font-family: "Lexend", sans-serifs;
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 19px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 2rem;
}

.icon-bar {
  flex-wrap: wrap;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  color: #faf9f6;
  padding: 10px 10px;
}
.icon_logo {
  flex-wrap: wrap;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #faf9f6;
  padding: 10pex 10px;
}

.icon-bar a {
  padding: 10px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #faf9f6;
}
.ft-legal {
  display: flex;
  align-items: flex-start;
  justify-content: right;
}
.ft-legal p {
  font-size: 10px;
}
footer p {
  color: white;
}
.ft-legal h3 {
  font-size: 15px;
  color: #54cd00;
}
.last_text {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding-bottom: 10px;
}
.last_text p {
  text-align: center;
}
.last_text p a {
  font-family: "Lexend", sans-serifs;
  font-weight: 100;
  font-size: 10px;
  text-decoration: none;
  color: white;
  text-align: center;
}
.payment_logo img {
  width: 100%;
  height: 40px;
}

.PrivacyPolicys_modal h2 {
  font-size: 20px;
  text-align: center;
}
.PrivacyPolicys_modal p {
  font-size: 12px;
  padding: 9px;
}
.terms_modal p {
  font-size: 12px;
  padding: 9px;
}
.PrivacyPolicys_modal,
.cookie_model_content,
.terms_modal li {
  font-size: 12px;
  padding: 9px;
}
.PrivacyPolicys_modal li a {
  color: black;
  text-decoration: none;
  font-size: 12px;
  border-bottom: 1px solid black;
}
.terms_modal li a {
  color: black;
  text-decoration: none;
  font-size: 12px;
  border-bottom: 1px solid black;
}
.cookie_model_content h2 {
  font-size: 20px;
  text-align: center;
}
.cookie_model_content p {
  font-size: 12px;
  padding: 9px;
}

.cookie_model_content li a {
  color: black;
  text-decoration: none;
  font-size: 12px;
  border-bottom: 1px solid black;
}
table,
th,
td {
  border: 1px solid black;
  border-collapse: collapse;
}

/* Modal windows */
.terms_modal, .PrivacyPolicys_modal, .faq_modal {
  background-color: rgba(0, 33, 71, 0.9);
}

.term_close:hover,
.PrivacyPolicy_close:hover,
.faq_close:hover {
  color: #54cd00;
}

/* Links */
a:hover {
  color: #54cd00;
}

/* Services Section */
.services {
  padding: 100px 0;
  background: var(--white);
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 60px;
  font-weight: 700;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 33, 71, 0.1);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 33, 71, 0.2);
}

.card-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .card-image img {
  transform: scale(1.1);
}

.service-card h3 {
  color: var(--accent);
  font-size: 1.5rem;
  margin: 20px; 
  font-weight: 600;
}

.service-card p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 20px 20px;
}

/* Add this for the accent color on hover */
.service-card:hover h3 {
  color: var(--primary);
}

/* Management Section Styling */
.management-section {
  background: var(--primary);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.management-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.management-heading {
  text-align: center;
  font-size: 2.8rem;
  color: var(--white);
  margin-bottom: 60px;
  font-weight: 700;
  position: relative;
  padding-bottom: 20px;
}

.management-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--accent);
}

.management-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 20px 0;
}

.manager-card {
  text-align: center;
  transition: all 0.3s ease;
  padding: 20px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.manager-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(84, 205, 0, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.manager-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
}

.manager-card:hover::before {
  opacity: 1;
}

.manager-image-wrapper {
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent);
  transition: all 0.3s ease;
  position: relative;
}

.manager-card:hover .manager-image-wrapper {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(84, 205, 0, 0.3);
}

.manager-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.manager-name {
  color: var(--white);
  font-size: 1.5rem;
  margin-top: 20px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.manager-card:hover .manager-name {
  color: var(--accent);
}
.testimonials-block {
  background: #ffffff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.testimonials-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.testimonials-heading {
  text-align: center;
  font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 60px;
  font-weight: 700;
  position: relative;
  padding-bottom: 20px;
}

.testimonials-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--accent);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 20px 0;
}

.testimonial-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 33, 71, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 33, 71, 0.15);
}

.cleaner-avatar-wrap {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent);
  transition: all 0.3s ease;
}

.testimonial-item:hover .cleaner-avatar-wrap {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(84, 205, 0, 0.3);
}

.cleaner-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.cleaner-name {
  color: var(--primary);
  font-size: 1.5rem;
  margin: 15px 0 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cleaner-role {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 15px;
}

.rating-stars {
  color: #FFD700;
  font-size: 1.2rem;
  margin: 15px 0;
}

.client-review {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  font-style: italic;
  margin-top: 15px;
}

.testimonial-item:hover .cleaner-name {
  color: var(--accent);
}

/* Responsive Design */
@media (max-width: 992px) {
  .management-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .testimonials-heading {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
   .testimonials-block {
    padding: 60px 0;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .testimonials-heading {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .cleaner-avatar-wrap {
    width: 100px;
    height: 100px;
  }
  .management-section {
    padding: 80px 0;
  }

  .management-heading {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }

  .management-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .manager-image-wrapper {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 480px) {
  .management-heading {
    font-size: 2rem;
  }

  .manager-name {
    font-size: 1.3rem;
  }

  .manager-image-wrapper {
    width: 120px;
    height: 120px;
  }
  
}

/* Updated Navbar Styles */
.navbar ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.navbar {
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 50px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-list {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list li a {
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-list li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: all 0.3s ease;
}

.nav-list li a:hover {
  color: var(--accent);
}

.nav-list li a:hover::after {
  width: 100%;
}

.download-btn {
  background: var(--accent);
  color: var(--white);
  border: 2px solid var(--accent);
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.download-btn:hover {
  background: transparent;
  color: var(--accent);
  transform: translateY(-2px);
}


/* Responsive Design */
@media (max-width: 992px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background: var(--primary);
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 80px;
    transition: 0.5s ease;
    z-index: 98;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 2rem;
  }

  .nav-list li {
    width: 100%;
    text-align: center;
    padding: 1rem 0;
  }

  .nav-list li a {
    display: block;
    width: 100%;
    padding: 0.5rem 0;
  }

  .nav-cta {
    width: 100%;
    display: flex;
    justify-content: center;
  }


}

@media (max-width: 576px) {


  .nav-logo {
    height: 40px;
  }

  .nav-menu {
    width: 100%;
  }
}

/* Full Service Experience Section */
.services-container {
  padding: 2rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2b2d42;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  justify-content: center;
}

.service-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .card-image img {
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.5rem;
  color: #2b2d42;
  margin: 1rem;
  text-align: center;
}

.service-card p {
  font-size: 1rem;
  color: #666;
  margin: 1rem;
  text-align: center;
  line-height: 1.6;
}

/* Media Queries */
@media screen and (max-width: 768px) {
  .services-container {
    padding: 2rem 1rem;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .service-cards {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  .service-card h3 {
    font-size: 1.25rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 480px) {
  .services-container {
    padding: 1.5rem 1rem;
  }

  .section-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }

  .service-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .card-image {
    height: 180px;
  }
}

.toast {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
}

.toast.show {
    visibility: visible;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
}

@keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}

.countries-section {
  padding: 4rem 2rem;
  background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  color: #333;
  font-size: 2.5rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #007bff, #00d4ff);
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.country-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  width: 100%;
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
}

.country-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.flag-container {
  position: relative;
  padding-top: 60%;
  overflow: hidden;
}

.country-flag {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  opacity: 1; /* Ensure flag is visible */
  z-index: 1; /* Place flag above map */
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(2px);
  z-index: 2; /* Place map overlay above flag */
}

.country-card:hover .country-flag {
  transform: scale(1.1);
}

.country-card:hover .map-overlay {
  opacity: 1;
}

.country-card h3 {
  padding: 1rem 1rem 0.5rem;
  margin: 0;
  color: #2c3e50;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  transition: color 0.3s ease;
}

.country-card:hover h3 {
  color: #007bff;
}

.country-card p {
  padding: 0 1rem 1rem;
  margin: 0;
  color: #666;
  font-size: 0.9rem;
  text-align: center;
}

/* Add a subtle gradient overlay to flags */
.flag-container::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to top, rgba(0,0,0,0.2), transparent);
  pointer-events: none;
}

/* Loading animation for maps */
.map-overlay iframe {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.map-overlay iframe.loaded {
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .countries-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 992px) {
  .countries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .countries-grid {
    grid-template-columns: 1fr;
  }
  
  .countries-section {
    padding: 2rem 1rem;
  }
  
  .country-card {
    max-width: 100%;
  }
}

.global-presence-section {
  padding: 4rem 2rem;
  background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.global-presence-title {
  text-align: center;
  margin-bottom: 3rem;
  color: #333;
  font-size: 2.5rem;
  position: relative;
}

.global-presence-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #007bff, #00d4ff);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.location-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  width: 100%;
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
}

.location-flag-container {
  position: relative;
  width: 100%;
  height: 60%;
  overflow: hidden;
}

.location-flag {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  opacity: 1; /* Ensure flag is visible */
  z-index: 1; /* Place flag above map */
}

.location-map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2; /* Place map overlay above flag */
}

.location-card:hover .location-map {
  opacity: 1;
}

.location-card:hover .location-flag {
  transform: scale(1.1);
}

.location-card h3 {
  padding: 1rem 1rem 0.5rem;
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
}

.location-card:hover h3 {
  color: #007bff;
}

/* Download Page Styles */
.download-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
}

.download-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.download-header {
  text-align: center;
  margin-bottom: 4rem;
}

.download-header h1 {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 700;
}

.download-header p {
  font-size: 1.2rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.download-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
  justify-content: center;
}

.download-text {
  flex: 1;
  min-width: 300px;
}

.download-text h2 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.download-text p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.qr-codes {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}

.qr-code {
  text-align: center;
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 200px;
}

.qr-code:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.qr-code img {
  width: 150px;
  height: 150px;
  margin-bottom: 1rem;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 0.5rem;
  background: white;
}

.qr-code p {
  font-weight: 600;
  color: var(--primary);
  margin: 0.5rem 0 0;
}

.download-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.app-screenshots {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 300px;
}

.screenshot {
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  max-width: 100%;
  height: auto;
}

.screenshot-1 {
  transform: rotate(-5deg);
  z-index: 2;
  position: relative;
  max-width: 250px;
}

.screenshot-2 {
  transform: translateX(-50px) rotate(5deg);
  z-index: 1;
  max-width: 250px;
}

.app-screenshots:hover .screenshot-1 {
  transform: rotate(-3deg) translateY(-10px);
}

.app-screenshots:hover .screenshot-2 {
  transform: translateX(-50px) rotate(3deg) translateY(-10px);
}

@media (max-width: 992px) {
  .download-content {
    flex-direction: column;
    text-align: center;
  }

  .download-buttons {
    justify-content: center;
  }

  .qr-codes {
    justify-content: center;
  }

  .screenshot-2 {
    transform: translateX(-30px) rotate(5deg);
  }
}

@media (max-width: 768px) {
  .download-header h1 {
    font-size: 2.5rem;
  }

  .download-text h2 {
    font-size: 2rem;
  }

  .qr-codes {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .screenshot-1,
  .screenshot-2 {
    max-width: 200px;
  }
}

@media (max-width: 576px) {
  .download-header h1 {
    font-size: 2rem;
  }

  .download-header p {
    font-size: 1rem;
  }

  .download-buttons {
    flex-direction: column;
    align-items: center;
  }

  .download-buttons .btn {
    width: 100%;
    max-width: 250px;
    text-align: center;
  }

  .app-screenshots {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .screenshot-1,
  .screenshot-2 {
    transform: none !important;
    max-width: 180px;
  }
}

.location-card p {
  padding: 0 1rem 1rem;
  margin: 0;
  color: #666;
  font-size: 0.9rem;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 576px) {
  .locations-grid {
    grid-template-columns: 1fr;
  }
  
  .location-card {
    aspect-ratio: 3/4; /* Maintain aspect ratio on mobile */
    max-width: 320px; /* Limit width on mobile */
    margin: 0 auto;
  }
}
