tittle
{text-align: center;
    color:#008080;
}
.img
{width:50px;
    height:50px;
    justify-content:right;
   

}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
  }
  .navba {
  display:flex;
  justify-content: space-between;
  align-items:center;
  padding: 15px 30px;
  background-color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  flex-wrap: wrap;
}

.logo-container {
  display:flex;
  align-items: center;
  position: relative;
  overflow: visible;
}

.logo {
  height: 40px;
  width: auto;
  margin-right: 12px;
}

.company-name {

 color: #008080;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  justify-content: center;
  font-size: clamp(0.8rem,1.5vw,1rem);
  line-height: 1.4;
  max-width: 200px;
  word-wrap: break-word
  
}

  
  body {
      font-family: 'Poppins', sans-serif;
    background-color: #edf9ef;
    background: linear-gradient(135deg, #edf9ef, #008080);
font-size: clamp(1rem, 2vw, 1.5rem);
max-width: 100%;
overflow-x: hidden;
  }
  
  .navbar {
    background-color: #008080;
    padding: 10px 20px;
    display: flex;
    align-items: right;
    justify-content: right;
    width: 100%;
    max-width: 100%;
    flex-wrap: wrap;
  }
  
  
  .nav-links {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
    text-align: right;
    justify-content: right;
  }
  
  .nav-links li {
    flex: 1 1 auto;
    text-align: center;
  }
  
  .nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 18x;
     text-shadow:2px 2px 4px #000000;
  }
  
  .nav-links a:hover {
    width:25%;
    text-decoration:underline;
  }
.img1 {
    border-radius: 8px;
    padding: 4px;
    margin-top: 20px;    /* Adds space above image */
    width: 100%;         /* Makes it responsive on mobile */
    max-width: 600px;    /* LIMITS the size on desktop so it's not huge */
    height: auto;        /* Keeps the correct aspect ratio (doesn't squash it) */
    display: block;      /* Ensures it sits correctly in the layout */
    margin-left: auto;   /* Centers the image */
    margin-right: auto;  /* Centers the image */
}
/* INFO*/
.section-heading {
  margin-top: 30px; 
  position: relative;
  padding-left: 40px; 
  text-shadow: 2px 4px 8px rgb(256, 256, 256);

}

.section-heading::before {
  content: "➢"; 
  position: absolute;
  left: 0;
  color: #008080;
}
p
{
font-family:sans-serif ;
padding-left:30;
font-size: 15px;
}
.section-heading2{
  margin-top: 30px; 
  position: relative;
  padding-left: 40px;
  text-shadow: 2px 4px 8px rgb(256, 256, 256); 
}

.section-heading2::before {
  content: "➢"; 
  position: absolute;
  left: 0;
  color: #008080;
}
.section-heading3{
  margin-top: 30px; 
  position: relative;
  padding-left: 40px; 
  text-shadow: 2px 4px 8px rgb(256, 256, 256);
}

.section-heading3::before {
  content: "➢";
  position: absolute;
  left: 0;
  color: #008080;
}
.section-heading4{
  margin-top: 30px; 
  position: relative;
  padding-left: 40px; 
  text-shadow: 2px 4px 8px rgb(256, 256, 256);
}

.section-heading4::before {
  content: "➢";
  position: absolute;
  left: 0;
  color: #008080;
}
/* slideshow */
.slideshow {
  width: 100%;         /* Set your desired width */
  height: 18.75rem;        /* Set your desired height */
  overflow: hidden;
  position: relative;
  margin: auto;
  padding-bottom: 400px;
  border: #000000;
}

.slides {
  width: 100%;        /* 500px × 3 images */
  height: 100%;
  display: flex;
  animation: slide 64s infinite; /* 3 images × 3s each */
}

.slides img {
  width: 31.25rem;
  height: 18.75rem;
  object-fit: cover;
  border-radius: 15px;
  border-color: black;
}

@keyframes slide {
  0%    { transform: translateX(0); }
 50% {transform:translate(-160rem)}
  100%  { transform: translateX(0); }
}
/* Pause on hover */
.slideshow:hover .slides {
  animation-play-state: paused;
}
/* footer */
.footer {
      background-color: #333;
      color: #fff;
      padding: 20px 0;
      text-align: center;
    }

    .footer a {
      color: #ddd;
      margin: 0 10px;
      text-decoration: none;
    }

    .footer a:hover {
      color: #fff;
      text-decoration: underline;
    }

    .footer .social-icons {
      margin-top: 10px;
    }

    .footer .social-icons i {
      margin: 0 8px;
      cursor: pointer;
    }

    .footer p {
      margin-top: 10px;
      font-size: 14px;
      color: #aaa;
    }
    .grid-container {
  display:grid;
  flex-wrap: wrap;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  padding:2rem;
  max-width: 75%;
  margin:auto;
}
 @media (max-width: 1024px) {
  .card-container {
    grid-template-columns: repeat(2, 1fr); /* tablet */
  }
}

@media (max-width: 600px) {
  .card-container {
    grid-template-columns: 1fr; /* mobile */
  }
}

/* Section Styles */
section {
  background: white;
  padding: 1.5rem ;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  margin: 0.5rem 0;
  margin-left: 20;
  margin-right: 20;
  margin-top: 20;
  margin-bottom: 20;
  transition: transform 0.3s ease;
  flex: 1 1 1000px;
}
section:hover{
  transform:translateY(-5px);
}

section h2 {
  color: #008080;
  margin-bottom: 1rem;
}
  .underline-animate {
  position: relative;
  display: inline-block;
}
.underline-animate::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #add8e6;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  pointer-events: none;
}
.underline-animate:hover::after {
  transform: scaleX(1);
}
.header {
  text-align: center;
  padding: 40px 20px;
   color: #2c3e50;
}








