body {
  background: url('Images/bg.png') no-repeat center center fixed;
  background-size: cover;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.container {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.1);
  padding: 24px 0 24px 0;
  max-width: 400px;
  width: 100%;
  transition: box-shadow 0.3s ease;
}

.mySwiper {
  width: 100%;
  height: 370px;
}

.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 0 12px 0;
  height: 320px;
  justify-content: flex-start;
  transition: box-shadow 0.3s ease;
}
.card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.card-img {
  width: 105%;
  height: 220px;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 18px;
  box-shadow: none;
  transition: none;
}
.card-img:hover {
  box-shadow: none;
}

.card-content h2 {
  font-size: 1.3rem;
  margin: 0 0 8px 0;
  color: #111; 
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.card-content p {
  font-size: 1rem;
  color: #333; 
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.5;
}

.send-gift-btn {
  width: 100%;
  margin-top: 18px;
  background: #089da1; 
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.send-gift-btn:hover {
  background: #066a73; 
}

.customize-gift-btn {
  width: 100%;
  margin-top: 10px;
  background: #089da1;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.customize-gift-btn:hover {
  background: #066a73;
}

.swiper-pagination-bullet {
  background: #089da1;   opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
  display: none;
}
@media (max-width: 500px) {
  .container {
    padding: 10px 2px 12px 2px;
    max-width: 98vw;
  }
  .mySwiper {
    height: 350px;
  }
  .card {
    height: 290px;
    padding: 10px 2px 8px 2px;
  }
  .card-img {
    height: 160px;
  }
}
section nav{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 15px 40px;  
    background: #2c3e50;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 15px 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

section nav .logo img{
    width: 100px;
    cursor: pointer;
    margin: 8px 0;
}
section nav ul{
    list-style: none;
}

section nav li{
    display: inline-block;
    padding: 0 10px;
}

section nav li a{
    text-decoration: none;
    color:  #ffffff;
}

section nav li a:hover{
    color: #089da1;
}
section nav .social_icon i{
    margin: 0 5px;
    font-size: 18px;
}

section nav .social_icon i:hover{
    color: #089da1;
    cursor: pointer;
}
