
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  /* Navbar */
  header.navbar {
    background-color: #fff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  header.navbar .logo {
    font-size: 24px;
    font-weight: bold;
    color: green;
  }
  
  header.navbar nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  header.navbar nav ul li a {
    color: #000;
    font-size: 16px;
    transition: color 0.3s;
  }
  
  header.navbar nav ul li a:hover {
    color: green;
  }
  
  /* Hero Section */
 /* Hero Section */
/* Hero Section */
 /* Hero Section */
 .hero {
  background: url('DDCE/serv/PHOTO-2024-11-20-12-03-15.jpg') no-repeat center center/cover; /* Replace 'hero-image.jpg' with your image */
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-overlay {
  background: rgba(0, 128, 0, 0.8); /* Green background overlay */
  padding: 8px 28px;
  border-radius: 5px;
  text-align: center;
}

.hero-title {
  font-size: 45px;
  color: white;
  margin: 0;
  font-weight: bold;
}


  
  /* About Section */
  .about {
    display: flex;
    align-items: center;
    padding: 50px 20px;
  }
  
  .about img {
    max-width: 40%;
    margin-right: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .about .text h2 {
    color: green;
    margin-bottom: 10px;
  }
  
  .about .text a {
    color: green;
    font-weight: bold;
  }
  
  /* Our Services Section */
  .services {
    padding: 50px 20px;
    text-align: center;
  }
  
  .services h2 {
    color: green;
    margin-bottom: 20px;
  }
  
  .services-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
  }
  
  .service-item {
    text-align: center;
  }
  
  .service-item img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .service-item h3 {
    color: green;
    margin-top: 10px;
  }
  
  body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
  }
  
  .section-title {
    font-size: 36px;
    color: #007f00;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .intro-text, .experience-text {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
  }
  
  .service-section, .vision-section, .values-section, .mission-section {
    margin-bottom: 30px;
  }
  
  h2 {
    font-size: 28px;
    color: #007f00;
    margin-bottom: 15px;
    border-bottom: 2px solid #007f00;
    display: inline-block;
  }
  
  p, ul {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
  }
  
  ul {
    list-style-type: disc;
    margin-left: 20px;
  }
  
  ul li {
    margin-bottom: 10px;
  }
  
  strong {
    color: #007f00;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .section-title {
      font-size: 28px;
    }
    
    h2 {
      font-size: 24px;
    }
    
    .intro-text, .experience-text, p, ul {
      font-size: 16px;
    }
  }
  




  /* Footer */
  .footer {
    background-color: green;
    color: white;
    padding: 20px;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .footer-logo h2 {
    color: white;
  }
  
  .footer-links ul {
    list-style: none;
  }
  
  .footer-links ul li a {
    color: white;
  }
  
  .footer-contact p {
    margin: 5px 0;
  }
  
  .footer-copyright {
    text-align: center;
    margin-top: 20px;
  }
  
 


 

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.about-content img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    display: flex;
    width: 200px;
    flex: 1;
    gap: 20px;
}

.text {
    text-align: left;
}

.text p {
    line-height: 1.6;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Show only 2 lines */
    -webkit-box-orient: vertical;
    transition: all 0.3s ease;
}

 


.text p.expanded {
    display: block;
    -webkit-line-clamp: unset;  
    height: auto;
}

.text a {
    display: inline-block;
    margin-top: 10px;
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
}

.text a:hover {
    text-decoration: underline;
}
 


  



/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
}

/* About Section */
.about-content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Image Styles */
.about-content img {
  width: 300px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Text Styles */
.text {
  max-width: 700px;
  text-align: left;
}

.text h3 {
  font-size: 24px;
  font-weight: bold;
  color: #4CAF50; /* Match the green theme in the screenshot */
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.text p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Show only 2 lines initially */
  -webkit-box-orient: vertical;
  transition: all 0.3s ease;
}

.text p.expanded {
  -webkit-line-clamp: unset; /* Remove line clamping */
  height: auto;
}

.text a {
  display: inline-block;
  margin-top: 10px;
  color: #007BFF;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
}

.text a:hover {
  text-decoration: underline;
}



/*service css*/
 /* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
}

h2, h3 {
  text-align: center;
  color: #4CAF50; /* Match the green theme */
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* Our Services Section */
 /* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
}

h2 {
  text-align: center;
  color: #4CAF50; /* Match the green theme */
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* Our Services Section */
.services {
  padding: 40px 20px;
  background-color: #fff;
}

.services-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap; /* Allows wrapping for smaller screens */
}

.service-item {
  text-align: center;
  max-width: 300px;
  flex: 1; /* Ensures responsiveness */
}

.service-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #4CAF50;
}

.service-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}





  


/*slider*/
/* General Reset */
  /* General Reset */
 /* General Reset */
 /* General Reset */
/* General Reset */
  /* General Reset */
/* General Reset */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
}

/* Hero Section Styling */
.hero {
  position: relative;
  width: 100%;
  height: 500px; /* Adjust height based on your design */
  overflow: hidden;
}

.carousel {
  display: flex;
  width: 500%; /* 5 images, each taking 100% width */
  transition: transform 1s ease; /* Smooth transition for slides */
}

.carousel-item {
  width: 100%;
  flex: 0 0 100%;
  position: relative;
  text-align: center;
  color: white;
  display: none; /* Initially hide all items */
}

.carousel-item.active {
  display: block; /* Only show active slide */
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image covers the space without stretching */
  object-position: center; /* Centers the image within the container */
}

.carousel-item h1 {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 28px;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  text-transform: uppercase;
}

/* Dots Navigation */
.dots-container {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 15px;
  height: 15px;
  background-color: white;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot:hover {
  background-color: rgba(255, 255, 255, 0.6);
}

.dot.active {
  background-color: #00bcd4; /* Active dot color */
}




footer {
  background-color: #008000;
  color: white;
  padding: 20px 0;
}

footer h3, footer h4 {
  font-family: Arial, sans-serif;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li a {
  text-decoration: none;
  color: white;
}

footer ul li a:hover {
  text-decoration: underline;
}

footer p {
  font-size: 14px;
  line-height: 1.6;
}
