.chatbot-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 320px;
  background: #ffffff;
  border: 2px solid #2e7d32;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  z-index: 1000;
  overflow: hidden;
}

.chatbot-toggle {
  background: #2e7d32;
  color: white;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  font-weight: bold;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}
.logo-img {
  width: 125px;
  height: 90px;
  object-fit: cover;
}
.chatbot-body {
  background: #f9f9f9;
  padding: 10px;
  height: 250px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bot-msg {
  background: #e8f5e9;
  color: #2e7d32;
  padding: 8px;
  border-radius: 6px;
  align-self: flex-start;
  max-width: 80%;
}

.user-msg {
  background: #2e7d32;
  color: white;
  padding: 8px;
  border-radius: 6px;
  align-self: flex-end;
  max-width: 80%;
}

.chatbot-input {
  display: flex;
  border-top: 1px solid #ccc;
}

.chatbot-input input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
}

.chatbot-input button {
  background: #2e7d32;
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-weight: bold;
}

.chatbot-input button:hover {
  background: #1b5e20;
}
/* Hidden by default */
.chatbot-container {
  height: auto;
}

.chatbot-body,
.chatbot-input {
  display: none;
}

.chatbot-container.open .chatbot-body,
.chatbot-container.open .chatbot-input {
  display: flex;
  flex-direction: column;
}


body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f8f9f8;
  color: #222;
  padding: 0;
}

.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #fff;
  border-bottom: 1px solid #ccc;
}

.logo {
  font-size: 20px;
  font-weight: bold;
  color: #2e7d32;
}

.navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 25px;
}
.navbar a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.2s ease;
}

.navbar a:hover {
  color: #2e7d32;
}

.divider {
  color: #aaa;
}

.navbar li {
  position: relative;
}

.navbar li .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 5px 0;
  min-width: 150px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 1000;
}

.navbar li .dropdown-menu li {
  padding: 8px 15px;
  white-space: nowrap;
}

.navbar li .dropdown-menu li a {
  color: #222;
  display: block;
  text-decoration: none;
}

.navbar li .dropdown-menu li a:hover {
  background: #e8f5e9;
  color: #2e7d32;
}

.navbar li:hover .dropdown-menu {
  display: block;
}

.hero {
  background: linear-gradient(to right, #e8f5e9, #f1f8f6);
  text-align: center;
  padding: 120px 20px;
  color: #1b5e20;
  position: relative;
  overflow: hidden;
}

.hero h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  color: #333;
  margin-bottom: 30px;
}

.hero .learn-more {
  background: #2e7d32;
  color: #fff;
  border: none;
  padding: 12px 28px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  
}

.hero .learn-more:hover {
  background: #1b5e20;
  transform: scale(1.05);
}

.intro {
  background: #f9f9f9;
  text-align: center;
  padding: 100px 20px;
  color: #2e7d32;
  border-top: 2px solid #c8e6c9;
  border-bottom: 2px solid #c8e6c9;
  
}

.intro h2 {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 600;
  
}

.intro p {
  max-width: 800px;
  margin: 0 auto;
  color: #444;
  line-height: 1.6;
  
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInDown {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}

.solutions-preview {
  background: #f4f6f5;
  padding: 100px 20px;
  text-align: center;
  color: #1b5e20;
  overflow: hidden;
  border-top: 2px solid #c8e6c9;
  border-bottom: 2px solid #c8e6c9;
}

.solutions-preview h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 60px;
  animation: fadeIn 1.2s ease-out;
}
.solution-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.solution-grid .card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  width: 280px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.8s ease-out;
}
.solution-grid .card h3 {
  color: #2e7d32;
  font-size: 20px;
  margin-bottom: 10px;
}
.solution-grid .card p {
  color: #444;
  font-size: 15px;
  line-height: 1.5;
}
.solution-grid .card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}
.solution-grid .card:nth-child(1) {
  animation: slideInRight 1s ease-out 0.2s forwards;
}
.solution-grid .card:nth-child(2) {
  animation: slideInRight 1s ease-out 0.5s forwards;
}
.solution-grid .card:nth-child(3) {
  animation: slideInRight 1s ease-out 0.8s forwards;
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(100px); }
  to { opacity: 1; transform: translateX(0); }
}
.cta {
  text-align: center;
  background: #2e7d32;
  color: #fff;
  padding: 60px 20px;
}

.cta button {
  background: #fff;
  color: #2e7d32;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
}

.cta button:hover {
  background: #1b5e20;
  color: #fff;
}

/* Buy Form */
.form-section {
  max-width: 500px;
  margin: 80px auto;
  padding: 20px;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.form-section h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #2e7d32;
}

.buy-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.buy-form input,
.buy-form select,
.buy-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 15px;
}

.buy-form button {
  background: #2e7d32;
  color: white;
  border: none;
  padding: 30px;
  cursor: pointer;
  border-radius: 5px;
}
.media-section button {
  margin-top: 50px; 
}

.cta {
  margin-bottom: 60px;} 

.media-section {
  text-align: center;
  padding: 80px 20px;
  background: #9faaa5;
  border-radius: 10px;
  margin-top: 60px; 
}
.media-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.media-card {
  position: relative;
  width: 80%;
  max-width: 700px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 1s ease both;
}

.media-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.media-card img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(80%);
  transition: filter 0.5s ease;
}

.media-card:hover img {
  filter: brightness(100%);
}

.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.media-card:hover .overlay-text {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.05);
}

.media-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(46, 125, 50, 0.4);
  transition: left 0.5s ease;
}

.media-card:hover::before {
  left: 0;
}

.overlay-text h3 {
  font-size: 26px;
  margin-bottom: 10px;
  font-weight: 600;
}

.overlay-text p {
  font-size: 16px;
  color: #f1f1f1;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.video-section {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}
.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  background: rgba(0,0,0,0.3);
  padding: 30px 40px;
  border-radius: 10px;
}
.video-overlay h2 {
  font-size: 32px;
  margin-bottom: 15px;
}
.video-overlay p {
  font-size: 18px;
  margin-bottom: 20px;
}
.video-btn {
  background: #2e7d32;
  color: #fff;
  border: none;
  padding: 12px 28px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
}
.video-btn:hover {
  background: #1b5e20;
  transform: scale(1.05);
}
body {
  background: #f0f4f0; 
  color: #1b5e20;
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
}
#tete {
  background: linear-gradient(135deg, #dcecdc 0%, #c8e6c9 100%);
  padding: 25px 40px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  gap: 35px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
#tete li a {
  color: #3a3f3c;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s ease;
}
#tete li a:hover {
  color: #145214;
}
.content-block {
  background: #e6f0e6; 
  border-radius: 12px;
  padding: 40px 30px;
  margin: 30px auto;
  max-width: 800px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.content-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}
#tete3, #tete4, #tete5 , #tete2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
}
#p ,#p1, #p2, #p3 {
  font-size: 16px;
  line-height: 1.8;
  margin: 0 auto;
  max-width: 700px;
}
#bt {
  display: block;
  margin: 50px auto;
}
#bt button {
  background: linear-gradient(135deg, #2e7d32 0%, #4b9250 100%);
  color: #fff;
  border: none;
  padding: 18px 50px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(46, 125, 50, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

#bt button:hover {
  background: linear-gradient(135deg, #4b9250 0%, #2e7d32 100%);
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(46, 125, 50, 0.45);
}
footer {
  background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  border-radius: 10px;
  margin-top: 60px;
  box-shadow: 0 -6px 18px rgba(0,0,0,0.12);
}
