#navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  color: #872bff;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}
.nav-links a {
  text-decoration: none;
  color: #872bff;
  font-weight: bold;
}
.nav-links a:hover {
  color: #f411cf;
}


*{
    font-family:"Plus Jakarta Sans", sans-serif;
    margin: 0;
    padding:0;
}

body{
    min-height: 100vh;
    background-image: linear-gradient(#ffffff , #ebdcff);

}

.btn{
    background-color: #872bff;
     border: 2px solid #872bff;
     border-radius:30px;
     padding:16px 32px;
     color:white;
     cursor:pointer;
     margin-right:20px;
        font-weight: 600;
}
.btn:hover{
    background-color: #6f1bff;
}

.btn-white{
    background-color:#872bff;
    border: 2px solid #872bff;
    border-radius:30px;
    padding:16px 32px;
    color:white;
    cursor:pointer;
    margin-right:20px;
    font-weight: 600;


}
.btn-white:hover{
    background-color: #6f1bff;
}
.heading-content{
    text-align: center;
    margin-top: 50px;
}
.heading-content h4{
    color:#f411cf;
    font-weight: bold;
    font-size: 24px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom:20px;
}

.heading-content h2{
    font-weight: bold;
    font-size: 44px;
    margin-bottom:30px;
}

#banner{
    margin:10px auto 120px auto;

    border:2px solid #872bff10;
    border-radius: 40px;
     padding: 20px 30px;
      background-image: url("images/hero-bg.png");

      width:88%;

      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color:white;

}

.banner-content{
    width: 50%;

}

.banner-content *{
    margin-bottom:20px;

}

.banner-content h1
{
    font-size:70px;
    font-weight:bold;
    color:#872bff;
}

.banner-content p{
    font-weight: medium;
    font-size: 18px;
    color:#a8a8a8;
}

.banner-content h1 span{
    color:#f411cf;

}

.banner-image{
    width:50%;

}

.banner-image img{
    width:600;
    /* height:100%; */
}

#service,
#story,
#country{
    width:88%;
    margin: 0px auto 120px auto;
    display: flex;
    justify-content: space-between;
}

#service-card-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap:30px;
    width: 100%;
}
.service-card{
    background-color:white;
    padding: 100px 60px;
    text-align:center;
    width: 350px;
    border-radius: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.service-card img{
    margin-bottom:30px;
}

.service-card h2{
    font-weight: semibold;
    font-size: 28px;
    margin-bottom: 20px;

}

.service-card p{
    /* font-weight: medium;
    font-size: 18px; */
    color:#a8a8a8;
}

.story-card{
    background-color:white;
    padding:40px;
    border-radius:24px;
    display:flex;
    gap:20px;

}

.story-content h2,
.story-content p,
.story-content img{
    margin-bottom:30px;

}

#country-card-container{
    display: flex;
    flex-wrap: wrap;
    justify-content:center;
    gap:30px;
    /* width: 100%; */
}
.country-card {
  background-color: white;
  border-radius: 30px;
  padding: 20px;
  width: 220px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.country-card img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  margin-bottom: 10px;
}

.country-card h2 {
  font-size: 20px;
  color: #872bff;
}

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

footer {
  background-color: #872bff;
  color: white;
  text-align: center;
  padding: 30px;
  margin-top: 60px;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}
footer a {
  color: white;
  text-decoration: underline;
}
@media (max-width: 768px) {
  #banner {
    flex-direction: column;
    text-align: center;
  }
  .nav-links {
    flex-direction: column;
    align-items: center;
  }
}
.service-card:hover {
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 20px 30px rgba(135, 43, 255, 0.2);
}
#testimonials {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

#testimonials h2 {
  font-size: 36px;
  color: #872bff;
  margin-bottom: 40px;
}

.testimonial-card {
  max-width: 600px;
  margin: 20px auto;
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.testimonial-card p {
  font-size: 18px;
  color: #444;
  margin-bottom: 10px;
}

.testimonial-card h4 {
  color: #f411cf;
  font-weight: bold;
}

#newsletter {
  text-align: center;
  padding: 60px 20px;
  background-color: #fff;
}
#newsletter input {
  padding: 12px 20px;
  border-radius: 30px;
  border: 1px solid #ccc;
  width: 300px;
  margin-right: 10px;
}
#newsletter {
  text-align: center;
  padding: 60px 20px;
  background-color: #fff;
}
#newsletter input {
  padding: 12px 20px;
  border-radius: 30px;
  border: 1px solid #ccc;
  width: 300px;
  margin-right: 10px;
}
#banner {
  background-image: linear-gradient(to right, #ffffff, #ebdcff);
  animation: gradientShift 8s infinite alternate;
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.service-card {
  /* Existing Styles */
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Hover Effect */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(135, 43, 255, 0.2);
}


.service-card img {
  transition: transform 0.5s ease;
}
.service-card:hover img {
  transform: rotate(15deg) scale(1.1);
}

/* Add a subtle border on hover */
.service-card:hover {
  border: 2px solid #872bff10;
}
@media (max-width: 768px) {
  #service-card-container {
    flex-direction: column;
    align-items: center;
  }
  .service-card {
    width: 80%;
    padding: 60px 30px;
  }
}
.rating-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

.rating-stars {
  color: #FFD700;
  font-size: 18px;
}

.review-count {
  color: #a8a8a8;
  font-size: 14px;
}