*{
    margin: 50;
    padding: 0;
  }
  body{
    background-color: #d2f3d3;
    font: italic;
  }
  .Menubar{
    background: rgb(0, 100, 1);
    text-align: center;
    min-height: 90px;
  }
  .logo{
    margin-left: 2%;
  }
  .Menubar ul{
    display: inline-flex;
    list-style: none;
    color: #fff;
    z-index: 10;
  }
  @media screen and (max-width: 300px){
    .Menubar ul{
      display: inline-block;
      list-style: none;
      color: #fff;
      z-index: 10;
      text-align: left;
    }
  }
  .Menubar ul li{
    width: 100px;
    margin: 10px;
    padding: 10px;
    cursor: pointer;
  }
  @media screen and (max-width: 1000px){
   
      .Menubar ul li{
        width: 50px;
       margin: 5px;
  
      }
      
    }
  .Menubar ul li a{
    text-decoration: none;
    color: white;
  }
  .active, .Menubar ul li:hover{
    background-color: lightgreen;
    border-radius: 3px;
    
  }
  
  .submenu1{
    display: none;
  
  }
  .Menubar ul li:hover .submenu1{
    display: block;
    position: absolute;
    background-color: rgb(4, 165, 4);
    margin-top: 15px;
    margin-left: 10px;
    z-index: 10;
  }
  .Menubar ul li:hover .submenu1 ul{
    display: block;
    margin: 10px;
  }
  .Menubar ul li:hover .submenu1 ul li{
    width: 70px;
    padding: 10px;
    border-bottom: 1px dotted #fff;
    border-radius: 0;
    text-align: left;
    background: transparent;
  }
  .Menubar ul li:hover .submenu1 ul li:last-child{
  border-bottom: none;
  }
  .Menubar ul li:hover .submenu1 ul li a:hover{
    color: rgb(50, 184, 161);
  }

        /* Welcome Section */
        .welcome-section {
          background-color: #f9f9f9;
          padding: 60px 0;
          text-align: center;
      }
      
      .welcome-message {
          max-width: 800px;
          margin: 0 auto;
      }
      
      .welcome-message h1 {
          color: #2c3e50;
          font-size: 2.5rem;
          margin-bottom: 20px;
      }
      
      .welcome-message p {
          font-size: 1.1rem;
          color: #555;
          margin-bottom: 30px;
      }
      
      .btn {
          display: inline-block;
          background-color: #e67e22;
          color: white;
          padding: 12px 30px;
          border-radius: 4px;
          text-decoration: none;
          font-weight: 600;
          transition: background-color 0.3s;
      }
      
      .btn:hover {
          background-color: #d35400;
      }
      
      /* Slider Section */
      .slider-container {
          position: relative;
          height: 500px;
          overflow: hidden;
          margin: 40px 0;
      }
      
      .slide {
          position: absolute;
          width: 100%;
          height: 100%;
          background-size: cover;
          background-position: center;
          opacity: 0;
          transition: opacity 1s ease-in-out;
      }
      
      .slide.active {
          opacity: 1;
      }
      
      .slide-content {
          position: absolute;
          bottom: 0;
          left: 0;
          right: 0;
          background: rgba(0,0,0,0.6);
          color: white;
          padding: 30px;
          transform: translateY(100%);
          transition: transform 0.5s ease;
      }
      
      .slide.active .slide-content {
          transform: translateY(0);
      }
      
      .slide-content h2 {
          font-size: 2rem;
          margin-bottom: 10px;
          color: #e67e22;
      }
      
      /* Features Section */
      .features-section {
          padding: 60px 0;
          background-color: #f5f5f5;
      }
      
      .section-title {
          text-align: center;
          margin-bottom: 50px;
      }
      
      .section-title h2 {
          color: #f3f9ff;
          font-size: 2rem;
          position: relative;
          display: inline-block;
      }
      
      .section-title h2::after {
          content: '';
          position: absolute;
          bottom: -10px;
          left: 50%;
          transform: translateX(-50%);
          width: 80px;
          height: 3px;
          background-color: #e67e22;
      }
      
      .features-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
          gap: 30px;
      }
      
      .feature-card {
          background: white;
          border-radius: 8px;
          overflow: hidden;
          box-shadow: 0 5px 15px rgba(0,0,0,0.1);
          transition: transform 0.3s;
      }
      
      .feature-card:hover {
          transform: translateY(-10px);
      }
      
      .feature-img {
          height: 200px;
          background-size: cover;
          background-position: center;
      }
      
      .feature-text {
          padding: 20px;
      }
      
      .feature-text h3 {
          color: #2c3e50;
          margin-bottom: 10px;
      }
      
      /* Testimonials */
      .testimonials-section {
          padding: 60px 0;
          background-color: #2c3e50;
          color: white;
      }
      
      .testimonials-container {
          display: flex;
          overflow-x: auto;
          scroll-snap-type: x mandatory;
          gap: 30px;
          padding: 20px 0;
      }
      
      .testimonial {
          min-width: 300px;
          scroll-snap-align: start;
          background: rgba(255,255,255,0.1);
          padding: 30px;
          border-radius: 8px;
      }
      
      .testimonial-text {
          font-style: italic;
          margin-bottom: 20px;
      }
      
      .testimonial-author {
          font-weight: bold;
      }
      
      /* Call to Action */
      .cta-section {
          padding: 80px 0;
          text-align: center;
          background: linear-gradient(rgba(193, 176, 176, 0.406), rgba(90, 82, 82, 0.307)), url('https://images.unsplash.com/photo-1505628346881-b72b27e84530?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center/cover;
          color: white;
      }
      
      .cta-section h2 {
          font-size: 2.5rem;
          margin-bottom: 20px;
      }
      
      .cta-section p {
          max-width: 700px;
          margin: 0 auto 30px;
          font-size: 1.1rem;
      }
  

  .footer {
    background-color: #b4dba9;
    color: #ecf0f1;
    padding: 40px 0 0;
    font-family: 'Arial', sans-serif;
    line-height: 1.5;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-logo img {
    max-width: 160px;
    height: auto;
    margin-bottom: 15px;
}

.footer-about p {
    margin-bottom: 20px;
    font-size: 14px;
    color: #ffffff;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #ecf0f1;
    font-size: 18px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #236809;
}

.footer-heading {
    color: #288507;
    font-size: 17px;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 8px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #b79e2f;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
    
}


.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #098326;
}

.footer-contact p {
    margin-bottom: 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    color: #e67e22;
    width: 18px;
    text-align: center;
}

.footer-bottom {
    background-color: #033709;
    padding: 18px 0;
    text-align: center;
    margin-top: 40px;
    font-size: 13px;
}

.footer-bottom p {
    margin: 0;
    color: #bdc3c7;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}