/* newcss i added */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    border: 2px solid rgba(242, 179, 91, 0.7); /* Add a border for attraction */
    border-radius: 30px; /* Rounded corners for the border */
    box-shadow: 0 0 8px rgba(63, 61, 58, 0.6); /* Add a glowing effect */
    transition: all 0.4s ease-in-out; /* Smooth transition */
  }
  
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom:0;
    background-color: #efecec;
    transition: 0.4s;
    border-radius: 24px;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 3px;
    background-color: #f35525;
    transition: 0.4s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.6); /* Add a slight shadow for depth */
  }
  
  input:checked + .slider {
    background-color: #efd577;
  }
  
  input:checked + .slider:before {
    transform: translateX(26px);
  }
  
  .switch:hover {
    box-shadow: 0 0 12px rgba(242, 179, 91, 0.6); /* Enhance the glowing effect on hover */
  }
  
  
  #language-label {
    font-size: 16px;
    color: black;
    transition: color 0.3s ease;
  }
  
  #language-label.active {
    color: rgb(0, 0, 0);
  }

  .footer-developer-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #f35525;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
  }
  
  .footer-developer-link:hover {
    opacity: 0.8; /* Optional: Add a hover effect */
  }
  

  /* this is packages css */
  
  .swiper {
    width: 100%;
    height: auto;
  }
  
  .single-property {
    background: #fff;
    padding: 50px 0;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .main-image img {
    width: 95%;
    border-radius: 10px;
  }
  
  .info-table {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  }
  
  .info-table ul {
    list-style: none;
    padding: 0;
  }
  
  .info-table ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
  }
  
  .info-table ul li:last-child {
    border-bottom: none;
  }
  
  .info-table ul li img {
    max-width: 52px;
    margin-right: 15px;
  }
  
  .info-table ul li h4 {
    font-size: 18px;
    font-weight: 600;
  }
  
  .info-table ul li h4 span {
    font-size: 14px;
    color: #aaa;
    font-weight: 400;
  }
  



  .main-banner .item {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 220px 20% 320px 20%;
    margin-top: 0px;
  }
  
  .main-banner .item-1 {
    background-image: url(../images/villa1.jpeg);  
  }
  
  .main-banner .item-2 {
    background-image: url(../images/villa2.jpeg);
  }
  
  .main-banner .item-3 {
    background-image: url(../images/villa3.jpeg);
  }
  
  .main-banner .item span.category {
    background-color: #fff;
    color: #1e1e1e;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    padding: 6px 15px;
    display: inline-block;
    margin-bottom: 30px;
  }
  
  .main-banner .item span.category em {
    font-style: normal;
    color: #f35525;
  }
  
  .main-banner .item h2 {
    font-size: 62px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    line-height: 72px;
    width: 50%;
    margin-bottom: 0px;
  }
  
  .main-banner .owl-dots {
    position: absolute;
    bottom: 60px;
    left: 20%;
  }
  
  .main-banner .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    transition: all .5s;
  }
  
  .main-banner .owl-dots .active {
    background-color: #f35525;
  }
  
  .main-banner .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50px);
  }
  
  .main-banner .owl-nav .owl-prev i,
  .main-banner .owl-nav .owl-next i {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 24px;
    display: inline-block;
    color: #000000;
    background-color: rgb(255, 255, 255);
    border-radius: 50%;
    opacity: 100;
    transition: all .3s;
  }
  
  .main-banner .owl-nav .owl-prev i {
    position: absolute;
    left: 45px;
  }
  
  .main-banner .owl-nav .owl-next i {
    position: absolute;
    right: 45px;
  }
  
  .main-banner .owl-nav .owl-prev i:hover,
  .main-banner .owl-nav .owl-next i:hover {
    opacity: 100;
    background-color: rgba(255, 255, 255, 0.5);
  }
          





          /* General styles */
body {
  font-family: Arial, sans-serif;
}

.villa-packages-section {
  text-align: center;
  margin-top: 90px; /* space from upper content */
}

.villa-packages .info-table ul {
  list-style: none;
  padding: 0;
}

.villa-packages .info-table li {
  padding: 15px;
  border: 1px solid #ddd;
  margin-bottom: 10px;
  cursor: pointer;
  background-color: #f9f9f9;
  transition: all 0.3s ease;
}

.villa-packages .info-table li.active {
  background-color: #5cb85c; /* Highlight active package */
  color: white;
}

.villa-packages h4 {
  font-size: 18px;
  font-weight: bold;
}

.villa-packages span {
  font-size: 14px;
  color: #777;
}
