/* Base styles */
body {
  font-family: 'Roboto', Helvetica, 'Segoe UI', Arial, sans-serif;
  background-color: #fff;
}

.custom-container {
  width: 1200px;
  max-width: 1200px;
  margin: 0 auto;
  margin-right: auto;
}
.float-left{float: left;}

.top-section {
  height: 400px;
}
.banner-head{font-size: 3.5rem;position: absolute;padding-top: 38px;top: 0;}
.banner-li li{line-height: 32px;font-size: 1.35rem;}

.sidebar {
  background-color: rgb(173, 137, 88);
  color: #4a2e1c;
  border-top-left-radius: 15px;
}
h2{color: rgb(243, 147, 20);}

.logo {
  color: #4a2e1c;
}

.tagline {
  font-size: 0.9rem;
  color: #7a5c44;
}

.sidebar .nav-link {
  color: #fff;
  padding: 5px 0;
  font-weight: normal;
}

.transparent-black-bg {
  background-color: rgba(0, 0, 0, 0.5);
}

.orange-color {
  color: #ef9106;
}

.text-justify {
  text-align: justify;
}

.phone {
  font-size: 1.2rem;
  color: #4a2e1c;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  border-top-right-radius: 15px;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  padding: 2rem;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.info-section {
  background-color: #fff5ea;
  color: #4a3c2e;
}

.badge-wrapper {
  width: 200px;
  height: 200px;
  position: relative;
  margin: 40px auto 0 auto;
}

.badge-svg {
  position: absolute;
  width: 100%;
  height: 100%;
}

.inner-circle {
  width: 140px;
  height: 140px;
  background-color: rgb(173, 137, 88);
  border-radius: 50%;
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
  text-align: center;
  box-shadow: 0px 5px 0 rgb(243, 147, 20);
}

.inner-circle .price {
  font-size: 28px;
  line-height: 36px;
  font-weight: bold;
  padding-top: 8px;
}

.inner-circle .text {
  font-size: 28px;
  line-height: 25px;
  font-weight: bold;
  padding-top: 8px;
}

.inner-circle .cut {
  font-size: 21px;
}

.info-banner {
  border-radius: 8px;  
}

.info-circle {
  width: 150px;
  height: 150px;
  background-color: #9b774a;
  border-radius: 50%;
  font-size: 16px;
  font-weight: bold;
  padding: 10px;
  flex-shrink: 0;
}

.info-text {
  color: white;
}

.info-price {
  font-size: 18px;
}

.info-desc {
  font-size: 14px;
  color: white;
}

.info-rules {
  color: #ddd;
  font-size: 13px;
}

.right-box {
  background-color: #f59c00;
  margin-left: -70px;
  height: 105px;
  border-radius: 15px;
  width: 327px;
}

.tick-circle {
  display: inline-block;
  width: 25px;
  height: 25px;
  background-color: #28a745;
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 25px;
  font-size: 18px;
  font-weight: bold;
}
.tick-circle-small {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #28a745;
  color: white;
  border-radius: 50%;
  text-align: center;
  padding-top: 1px;
  font-size: 13px;
  font-weight: bold;
  line-height: 19px;
}

.features-ul li {
  font-size: 14px;
}

/* Responsive styles */
@media (max-width: 1199px) {
  .custom-container {
    width: 100%;
    padding: 0 15px;
  }
}

@media (max-width: 991px) {
  .top-section {
    height: auto;
  }

  .sidebar .nav-link {
    font-size: 16px;
    padding: 10px 0;
  }

  .bg-video {
    height: 100%;
    border-radius: 0;
  }

  .video-overlay {
    padding: 1rem;
    justify-content: flex-end;
  }

  .video-overlay h1 {
    font-size: 1.5rem;
    margin: 0;
  }

  .transparent-black-bg {
    font-size: 14px;
    padding: 1rem;
  }

  .badge-wrapper {
    width: 160px;
    height: 160px;
    margin: 0 auto 1rem;
  }

  .inner-circle {
    width: 100px;
    height: 100px;
    top: 30px;
    left: 30px;
    font-size: 14px;
  }

  .inner-circle .price {
    font-size: 16px;
  }

  .inner-circle .cut {
    font-size: 12px;
  }

  .right-box {
    margin-left: 0;
    width: 100%;
    border-radius: 10px;
  }

  .info-banner {
    flex-direction: column;
    align-items: center;
  }

  .info-text {
    padding: 1rem;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .top-section {
    height: auto !important;
    display: flex;
    flex-direction: column;
  }

  .sidebar,
  .banner-div {
    width: 100%;
    max-width: 100%;
  }

  .sidebar {
    border-radius: 0;
    padding: 1.5rem;
    order: 2;
  }

  .banner-div {
    height: auto;
    order: 1;
  }

  .bg-video {
    position: relative;
    height: 300px;
    border-radius: 0 !important;
  }

  .video-overlay {
    position: absolute;
    padding: 1rem;
    display: flex;
    justify-content: flex-end;
  }

  .video-overlay h1 {
    font-size: 1.5rem;
    margin-left: 1rem;
  }

  .transparent-black-bg li {
    font-size: 14px;
  }

  .logo {
    margin-left: 0;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .logo img {
    width: 100%;
    max-width: 200px;
  }

  .sidebar,
  .info-section {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .features-ul li {
    font-size: 13px;
  }

  .tick-circle {
    width: 20px;
    height: 20px;
    font-size: 14px;
    line-height: 20px;
  }

  .sidebar .nav-item {
    padding-bottom: 10px;
  }
}
