* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    margin: 0;
    width: 100%;
    height: auto;
}
body {
    font-family: "Noto Sans Bengali", sans-serif;
    font-family: "Sansita", sans-serif;
    
}
img {
    max-width: 100%;
}
ul, li {
    margin: 0;
    padding: 0;
}
/* Hero */ 
.hero {
    position: relative;
    padding: 30px 20px 50px;
    background-color: #fffbeb; 
    display: flex;
    flex-direction: row;
}
.hero img {
    width: 33%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgb(0 0 0 / 50%);
}
.hero-txt {
    background-color: transparent;
    margin-left: 5%;
    width: 55%;
    text-align: left;
}
.hero-title {
    position: relative;
    font-size: 35px;
    margin-bottom: 20px;
    color: #333;
}
.hero-title::after {
    position: absolute;
    content: '';
    left: 0;
    width: 100px;
    height: 5px;
    background-color: #ffa800;
    bottom: -9px;
}
.hero address {
    text-decoration: underline;
    margin-bottom: 15px;
}
.hero address i {
    color: #ffa800;
    margin-right: 3px;
}
.hero-summery {
    font-size: 18px;
    color: #444;
    margin-bottom: 15px;
    line-height: 30px;
}
.pricing ul li {
    display: inline-block;
    border: 1px dashed #ddd;
    padding: 5px 8px;
    border-radius: 5px;
    margin-bottom: 5px;
    font-size: 14px;
    background-color: #ffa800;
    font-weight: 600;
    box-shadow: 0 1px 5px rgb(0 0 0 / 20%);
}
.pricing {
    margin-bottom: 5px;
}
.hero-txt .offer {
    margin-bottom: 0;
}
.offer {
    letter-spacing: 2px;
    margin-top: 10px;
    color: #ffa800;
    background-color: #444;
    display: inline-block;
    padding: 5px 8px;
    font-size: 15px;
    border-radius: 5px;
}
.offer i {
    color: #fff;
}
.hero-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}
.btn-primary {
    background: #28a745;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
}
.btn-secondary {
    background: rgba(0,0,0,0.5);
    color: #fff;
    padding: 13px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 15px;
}
.hero-trust { 
    text-align: left;
    margin-top: 15px;
}
.hero-trust span {
    display: block;
    margin-bottom: 5px;
    letter-spacing: 2px;
    font-size: 15px;
    color: #555;
}
@media (max-width: 700px) {
    .hero { 
        padding: 30px 20px 50px; 
        text-align: center; 
        flex-direction: column;
    }
    .hero img {
        width: 100%;
        max-height: 60vh;
    }
    .hero-txt {
        background-color: transparent;
        margin-left: 0;
        width: 100%;
        text-align: left;
        margin-top: 10px;
    }
}
/* features */
.title h2 {
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 30px;
    text-align: center;
}
.info-wrapper {
    display: flex;
    gap: 5px;
    justify-content: space-evenly;
}
.features {
    padding: 80px 0 60px;
}
.info-box {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}
.info-box img {
    width: 100%;
}
.info-box video {
    width: 100%;
}
.info-box h3 {
    padding: 5px 10px;
    font-size: 15px;
    color: #333;
    margin-bottom: 10px;
}
/* TimeBox */
.timeBox {
    margin-bottom: 60px;
    text-align: center;
}
.marquee {
  overflow: hidden;
  white-space: nowrap;
  background: #28a745;
  color: white;
  padding: 10px 0;
}

.marquee-content {
  display: inline-block;
  padding-left: 100%;
  animation: scrollText 10s linear infinite;
}
.marquee-content:hover {
  animation-play-state: paused;
}
@keyframes scrollText {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.timer {
    margin: 10px 0 20px;
}

.timer span {
    display: inline-block;
    border: 1px dashed #ddd;
    padding: 5px 8px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    background-color: #ffa800;
}
/* reviews */
.reviews {
    padding: 50px 0;
    background-color: #fffbeb;
}
.review-slider {
  overflow: hidden;
  max-width: 800px;
  margin: auto;
}

.review-track {
  display: flex;
  transition: transform 0.5s ease;
}

/* Desktop: 2 items per view */
.review-item {
  min-width: 50%;
  padding: 10px;
}

/* Mobile: 1 item per view */
@media (max-width: 768px) {
  .review-item {
    min-width: 100%;
  }
}
.info-box {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.info-box i {
  font-size: 30px;
  color: #28a745;
  margin-bottom: 10px;
}

.review-dots {
  text-align: center;
  margin-top: 15px;
}

.dot {
  width: 10px;
  height: 10px;
  display: inline-block;
  margin: 5px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: #28a745;
}
/* checkout */
.checkout {
    padding: 80px 0 50px;
}
.checkout form {
    max-width: 500px;
    margin: 30px auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgb(0 0 0 / 10%);
} 
.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
}

.form-group input,
.form-group textarea, 
.form-group select {
  width: 95%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}
.price-box {
  background: #f8f8f8;
  padding: 15px;
  border-radius: 8px;
  margin-top: 10px;
  font-size: 14px;
}

.price-box h3 {
  margin-top: 10px;
  color: #28a745;
}
.btn-order {
  width: 100%;
  padding: 12px;
  background: #28a745;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.btn-order:hover {
  background: #218838;
}