  header {
    background-color:white;
    color: #111111;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1%;
    border-bottom: 3px solid;
    }
  
  .logo img {
    height: 50px;
    margin-top: 5px;
    margin-left: 5px;
   
  }
  
  nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    font-size:large;
    font-family:Arial, sans-serif;
  }
  
  nav ul li {
    display: inline-block;
    margin-right: 10px;
  }
  
  nav ul li a {
    display: block;
    color: #1d1b1b;
    text-decoration: none;
    padding: 10px;
    font-weight: 300;
  }
  
  nav ul li a:hover {
    background-color: #b3b4b6;
  }
  
  nav ul li a.active {
    font-weight: 600;
  }

  /* Image slider css starts */
  /* ===== IMAGE SLIDER ===== */

/* ===== IMAGE SLIDER ===== */

.slider-container{
    position:relative;
    width:100%;
    margin:auto;
    overflow:hidden;
}

.slider{
    position:relative;
    width:100%;
    aspect-ratio:16/9;
    overflow:hidden;
    border-bottom:5px solid;
    border-radius:5px;
}

.slider img{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
    top:0;
    left:0;
    opacity:0;
    transition:opacity 0.8s ease;
}

.slider img.active{
    opacity:1;
}

.dots-container{
    position:absolute;
    bottom:15px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:8px;
}

.dot{
    width:10px;
    height:10px;
    border-radius:50%;
    background:rgba(255,255,255,0.5);
    cursor:pointer;
}

.dot.active{
    background:#009688;
}

/* Mobile */

@media (max-width:768px){

.slider{
    aspect-ratio:4/3;
}

.dot{
    width:8px;
    height:8px;
}

}

  /*.slider-controls {
    position:relative;
    width: 98%;
    height: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 10px;
    bottom: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    margin-right: 10px;
  }

  .slider:hover .slider-controls {
    opacity: 1;
  }

  .slider-container:hover .slider-controls {
    opacity: 1;
  }/*
  
  

/*image slider ends*/  
  
  /*body css*/
  .notice-marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background-color: #ec0d0d;
    padding: 10px 0;
    margin-top: 20px;
    text-align: center;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    display: block;
    text-align: center;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: marquee 15s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

  
  .two-column-section {
    display: flex;
    margin-bottom: 40px;
    padding-left: 50px;
    padding-right: 50px;
    line-height: 1.5;
    align-items: center;
  }
  .two-column-section:nth-child(even) {
    background-color: rgba(26, 111, 209, 0.623);
  }

  .image-column:nth-child(odd) {
    padding-top: 34px;
    
  }

  .image-column:nth-child(even) {
    /* padding-top: 80px;
    padding-left: 80px; */
    width:1.2em;
    padding: 2% 10px;
    
  }
 
  .image-column {
    flex-basis: 50%;
    flex:1;
  }
  
  .image-column img:nth-child(2) {
    float:left;
  }

  .image-column img {
    width:fit-content;
    height: fit-content;
    align-self: self-end;
    
    
  }
  
  .description-column {
    flex-basis: 50%;
    background-color:none;
    /* padding: 20px; */
  }
  
  @media only screen and (max-width: 900px) {
    .two-column-section {
      flex-direction: column;
    }
  
    .image-column,
    .description-column {
      flex-basis: 100%;
    }
    .slider-container {
      height: 170px;
    }
    .image-column img{
      height: 170px;
    }
  }
  
  h2 {
        text-align:center;
  }
  ul{
    padding: 20px;
  }
  li{
    padding: 5px;
  }
  /*testimonial starts */
  
/*testimonial ends */  

/*Footer Starts*/
.footer {
  background-color:rgb(51, 109, 175);
  color: #fff;
  text-align: center;
}

.container {
  max-width: auto;
  
}

.footer-columns {
  display: flex;
  flex-wrap:wrap;
  justify-content: space-between;

}

.footer-column {
  flex-basis: 33%;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #faf7f7;
 
}

.footer h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer p {
  margin-left: 10px;
  font-size: 16px;
  align-self: justify;
  font-family: Arial,  sans-serif;
  line-height: 20px;
}

.quick-links {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 10px;
  font-family: Arial,  sans-serif;
}

.quick-links li {
  margin-bottom: 0px;
  font-size: 15px;

}

.quick-links li a {
  color:rgb(244, 243, 247);
  text-decoration: underline;
  
}

.quick-links li a:hover {
  color: rgb(219, 100, 243);
}

.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info li {
  margin-bottom: 0px;
  font-size: 16px;
  line-height: 15px;
}

.contact-info li i {
  margin-right: 10px;
  vertical-align: middle;
}

.sci{
  margin-top: 40px;
  display: flex;
  color: #fff;
  font: size 1.1em;
}
.sci li{
  list-style: none;
  margin-right: 15px;
}
.sci li a{
  color:#fff;
  font-size: 2em;
  color: #ccc;
}
.sci li a:hover{
  color: #fff;
}
/*footer ends*/
/* about section of homepage */
.mission-section {
    padding: 60px 10%;
    background-color: #cfee95;
}

.mission-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px; /* Space between image and text */
}

.mission-image {
    flex: 1;
}

.mission-image img {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mission-text {
    flex: 1;
}

.mission-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: justify;
}

/* Responsive design for mobile screens */
@media (max-width: 768px) {
    .mission-container {
        flex-direction: column;
        text-align: center;
    }
    
    .mission-text p {
        text-align: center;
    }
}


/* supported by */
.supported-by {
    padding: 40px 0;
    background-color: #fff;
    text-align: center;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.support-title {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px; /* Space between logos */
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.support-logo img {
    height: 80px; /* Uniform height for all logos */
    width: auto;
    filter: grayscale(50%); /* Optional: makes them look professional */
    opacity: 0.7;
    transition: all 0.3s ease;
}

.support-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Responsive for smaller screens */
@media (max-width: 600px) {
    .logo-grid {
        gap: 30px;
    }
    .support-logo img {
        height: 60px;
    }
}

/* 1. Reset and Parent Position */
.dropdown-item {
    position: relative;
    display: inline-block;
    list-style: none;
}

/* 2. HIDE SUBMENU (The "Not Working" Fix) */
.submenu {
    display: none !important; /* Forces it to stay hidden */
    position: absolute;
    top: 100%; /* Positions it right below Portfolio */
    left: 0;
    background-color: #ffffff;
    min-width: 150px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.15);
    padding: 0;
    margin: 0;
    z-index: 9999;
    border-radius: 4px;
}

/* 3. SHOW ON HOVER */
.dropdown-item:hover .submenu {
    display: block !important; /* Overrides the hidden state on hover */
}

/* 4. Submenu Link Styling */
.submenu li {
    list-style: none;
    width: 100%;
}

.submenu li a {
    color: #333 !important;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    transition: background 0.2s;
}

.submenu li a:hover {
    background-color: #f5f5f5;
    color: #ff4d4d !important; /* Change to your theme color */
}

/* 5. The "Safety Gap" (Prevents menu from closing when moving mouse) */
.dropdown-item::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 10px; /* Bridge between the link and the menu */
}
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-social a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #ddd;
    font-size: 14px;
}

.footer-social a img {
    width: 22px;
    height: 22px;
}

.footer-social a:hover {
    color: #ffffff;
}
