* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(to bottom, #e8f5e9, #c8e6c9);
  color: #333;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  color: #2e7d32;
  font-weight: 700;
  font-size: 20px;
}

/* Header */
.header {
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 0;
  position: fixed;
  width: 100%;
  height: 70px;
  z-index: 1000;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 50px;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin-left: 30px;
  position: relative;
  transform: rotate(-5deg);
}

.nav-menu li a {
  text-decoration: none;
  color: #2e7d32;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-menu li a:hover {
  color: #4caf50;
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: #4caf50;
  bottom: -5px;
  left: 0;
  transition: width 0.3s;
}

.nav-menu li a:hover::after {
  width: 100%;
}

/* Burger Menu */
.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.burger span {
  width: 25px;
  height: 3px;
  background: #2e7d32;
  margin: 2px 0;
  transition: all 0.3s;
}


/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  overflow: visible;
  margin-top: 70px;
}

.slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.hero-content {
  position: relative;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  margin-bottom: 10px;
}

.hero__content {
  display: flex;
  max-width: 1000px;
  background-color: #0000006b;
  border-radius: 10px;
  padding: 20px;
  margin: 30px auto;
  align-items: center;
}

.about__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.hero__col ul i {
  margin-top: 10px;
}

.hero__col ul li {
  display: flex;
  justify-content: flex-start;
  text-align: start;
}

.hero__col {
  flex: 1;
}

.hero-content h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.hero.cont .hero__content {
  gap: 50px;
}


.hero.cont .hero__col span {
  text-align: start;
  font-size: 24px;
}

.hero.cont .hero__col {
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.btn {
  display: inline-block;
  padding: 15px 30px;
  background: #4caf50;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* About Section */
.about {
  padding: 80px 0;
}

.about__content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  text-align: center;
  margin-bottom: 40px;
}

.about__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.about__item {
  flex: 1;
  min-width: 300px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.about__item img {
  width: 50%;
  border-radius: 10px;

  width: 50%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;

}

.about__item:nth-child(even) {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  .about__item {
    flex-direction: column;
    text-align: center;
  }

  .about__item img {
    width: 100%;
  }
}

/* Service Section */
.service {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.5);
}

.service h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  text-align: center;
  margin-bottom: 40px;
}

.service__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.service__item {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  /* background: #fff; */
  /* border-radius: 10px; */
  /* padding: 20px; */
  text-align: center;
  transition: transform 0.3s, border 0.3s;
  border: 2px solid transparent;
}

.service__item p {
  padding: 0 20px 20px;
}

.service__item:hover {
  transform: translateY(-10px);
  border-color: #4caf50;
}

.service__item img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.service__item h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.service__item p {
  font-size: 14px;
}

/* History Section */
.history {
  padding: 80px 0;
  text-align: center;
}

.history h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 20px;
}

.history p {
  max-width: 600px;
  margin: 0 auto 20px;
}



.video h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: #fff;
  margin-bottom: 20px;
}

.play-btn {
  background: #4caf50;
  border: none;
  padding: 15px 30px;
  color: #fff;
  font-size: 18px;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.3s;
}

.play-btn:hover {
  transform: scale(1.05);
}

.all {
  padding: 4rem;
  display: flex;
}

.all__col {
  flex: 1;
}

/* Shop Section */
.shop {
  padding: 80px 0;
  text-align: center;
}

.shop__contents {
  display: flex;
  gap: 30px;
  margin-bottom: 50px;
}

.shop__img {
  flex: 1;
}

.shop__contents img {
  width: 100%;
  height: 100%;
  flex: 1;
  border-radius: 5px;
  object-fit: cover;
}

.shop__content {
  flex: 1;
}

.shop h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 40px;
}

.shop__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
}

.shop__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 250px;
  max-width: 300px;
}

.shop__item img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.shop__item h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.shop__item p {
  font-size: 16px;
  color: #4caf50;
}

/* Testimonials Section */
.testimonials {
  padding: 40px 0;

  text-align: center;
}

.testimonials__items {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.testimonials blockquote {
  background: rgba(255, 255, 255, 0.5);
  padding: 20px;
}

.testimonials h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 40px;
}

.testimonials blockquote {
  font-size: 18px;
  border-radius: 5px;
  max-width: 600px;
  margin: 0 auto;
}

.testimonials cite {
  display: block;
  margin-top: 20px;
  font-style: italic;
  color: #4caf50;
}

/* contacct Section */
.contacct {
  padding: 80px 0;
  text-align: center;
}

.contacct h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 20px;
}

.contacct p {
  max-width: 600px;
  margin: 0 auto 20px;
}

/* Footer */
.footer {
  background: #2e7d32;
  color: #fff;
  padding: 40px 0;
}

.foooter__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.foooter__item {
  flex: 1;
  min-width: 200px;
}

.foooter__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.foooter__item h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.foooter__item p,
.foooter__item ul {
  font-size: 14px;
}

.foooter__item ul {
  list-style: none;
}

.foooter__item ul li {
  margin-bottom: 10px;
}

.foooter__item ul li a {
  color: #fff;
  text-decoration: none;
}

.foooter__item ul li a:hover {
  text-decoration: underline;
}

.copy {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-direction: column;
}

.copy__terms {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
  justify-content: center;
  gap: 20px;
}

.copy__terms a {
  text-align: center;
  color: #fff;
  text-decoration: none;
}

.copy__terms span {
  display: block;
}

@media screen and (max-width:768px) {
  .hero__content {
    display: flex;
    max-width: 1000px;
    background-color: #0000006b;
    border-radius: 10px;
    padding: 20px;
    gap: 40px;
    margin: 30px auto;
    align-items: center;
    flex-direction: column;
  }

  .about__item:nth-child(even) {
    flex-direction: column;
  }

  .shop__contents {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    flex-direction: column;
  }

  .all {
    padding: 4rem;
    display: flex;
    flex-direction: column;
  }

  .all {
    padding: 1rem;
    display: flex;
    flex-direction: column;
  }

  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    flex-direction: column;
  }
}

html,
body {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.about.tt .container{
display: flex;
flex-direction: column;
gap: 10px;
}
.about.tt .container ul{
  display: flex;
  padding-left: 10px;
flex-direction: column;
gap: 10px;
}