body{
    color: #074d71;
    background-color: rgb(255, 255, 255);
}
.topbar img{
 height: 50px;
}
.topbar{
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: white;
    color: #003b5c;
    
}
.navbar{
    margin-top: 15px;
}
.navbar :hover{
    
    color: rgb(88, 144, 193);
    
}
.navbar ::backdrop{

}
a{
    color: #074d71;
}
video{
    height: 50%;
    width: 100%;
    display: block;
}
#vision img{
     max-width: 150px;
    height: auto;
}
#vision{
 display: flex; 
 text-align: center;
 margin-left: 10px;
}
#vision p{
margin-left: 10px;
font-size:large ;
}
#mission img {
 height: 130px;
 float:right;
}
#mission{
   

 margin-left: 10px;
}
#mission p{
margin-left: 10px;
font-size:large ;
text-align: left;
}

#mission ul{
margin-left: 10px;
font-size:large ;
}
#values {
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: flex-start;
  padding: 20px;
  flex-wrap: wrap;
}

#values img {
  max-width: 100%;
  height: auto;
  flex: 1;
}

#values ul {
  flex: 2;
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
}

#values li {
  margin-bottom: 20px;
}

#values h3 {
  margin-bottom: 5px;
  font-size: 1.2em;
  color: #003b5c;
}

#values p {
  margin: 0;
  font-size: 1em;
  line-height: 1.5em;
  color: #333;
}

/* Responsive layout for mobile screens */
@media (max-width: 768px) {
  #values {
    flex-direction: column;
    text-align: center;
  }

  #values ul {
    text-align: left;
    padding-left: 40px;
  }
}

.slider {
  overflow: hidden;
  width: 100%;   /* or set a fixed width like 800px */
  box-sizing: border-box;
  border: 1px solid #ccc;
}

.slide-track {
  display: flex;
  width: calc(250px * 10);  /* width = slide width * number of slides (10 here because repeated 5x2) */
  animation: scroll 15s linear infinite;
}

.slide {
  width: 250px;  /* width of each slide */
  flex-shrink: 0;
  padding: 10px;
  box-sizing: border-box;
}

.slide img {
  width: 100%;
  height: 100px;
  display: block;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-250px * 5)); } /* scroll width of 5 slides */
}
.contact {
  
    text-align: center;
    box-sizing: border-box;
    color: #003b5c;
    outline: auto;
}
footer{
  background-color: #003b5c;
  display: FLEX; justify-content: space-between;
  color: #ccc;
  padding-right: 10px;
  
}
footer a{
    color: #ccc;
}
footer img{
  height: 25px;
  width: 40px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #ffffff;
    color: #333;
}



   .cta-button {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            background: #003b5c;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            transition: background 0.3s ease, transform 0.3s ease;
        }

        .cta-button:hover {
            background: #1e3c72;
            transform: translateY(-2px);
        }
/* Main Content */
.content {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
}

.content h2 {
    color: #003b5c;
    margin-top: 30px;
    margin-bottom: 10px;
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
}

.content ul {
    list-style: disc;
    padding-left: 20px;
    margin-top: 10px;
}

.content p, .content li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }

        .section {
            margin-bottom: 3rem;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 1s ease-out forwards;
            animation-delay: 0.2s;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .section h2 {
            color: #003b5c;
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .image-container {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 1rem;
        }

        .image-container img {
            width: 300px;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .image-container img:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .cta-button {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            background: #003b5c;
            text-decoration: none;
            border-radius: 5px;
            transition: background 0.3s ease, transform 0.3s ease;
        }

        .cta-button:hover {
            background: #1e3c72;
            transform: translateY(-2px);
        }

