/* Google Fonts - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  background: #ffffff;
}
.heading{
  color: #ff5f09;
  font-size: 24px;
    margin-bottom: 15px;
}
.nav {
    position: fixed;
    top: 35px;
    left: 0;
    width: 100%;
    padding: 15px 200px;
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1), -4px 0 10px rgba(0, 0, 0, 0.1);
  }
  
.nav,
.nav .nav-links {
  display: flex;
  align-items: center;
}
.nav {
  justify-content: space-between;
}
a {
  color: #000000;
  text-decoration: none;
}
.nav .logo {
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: 500;
  text-decoration: none;
  color: inherit;
}

.nav .logo img {
  height: 40px; /* Adjust the height as needed */
  width: auto; /* Maintain aspect ratio */
  margin-right: 10px; /* Space between logo and text */
}

.nav .logo-text {
  display: flex;
  flex-direction: column;
}

.nav .logo-text .main-name {
  font-size: 22px;
  font-weight: 500;
}

.nav .logo-text .sub-name {
  font-size: 14px;
  font-weight: 300;
  color: #777; /* Sub name color */
}

/* Responsive Design for Mobile Devices */
@media (max-width: 768px) {
  .nav .logo-text .main-name {
    font-size: 18px; /* Smaller font size for mobile */
  }

  .nav .logo-text .sub-name {
    font-size: 12px; /* Smaller font size for mobile */
  }

  .nav .logo img {
    height: 30px; /* Smaller logo height for mobile */
  }

  .nav {
    justify-content: space-between; /* Adjust alignment for mobile */
    padding: 0 10px; /* Add some padding */
  }
}

@media (max-width: 480px) {
  .nav .logo-text .main-name {
    font-size: 13px; /* Even smaller font size for smaller screens */
  }

  .nav .logo-text .sub-name {
    font-size: 10px; /* Even smaller font size for smaller screens */
  }

  .nav .logo img {
    height: 25px; /* Even smaller logo height for smaller screens */
  }
}
.nav .nav-links {
  column-gap: 20px;
  list-style: none;
}
.nav .nav-links a {
  transition: all 0.2s linear;
}
.nav.openSearch .nav-links a {
  opacity: 0;
  pointer-events: none;
}
.nav .search-icon {
  color: #000000;
  font-size: 20px;
  cursor: pointer;
}
.nav .search-box {
  position: absolute;
  right: 250px;
  height: 45px;
  max-width: 555px;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s linear;
}
.nav.openSearch .search-box {
  opacity: 1;
  pointer-events: auto;
}
.search-box .search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  left: 15px;
  color: #4a98f7;
  transform: translateY(-50%);
}
.search-box input {
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  border-radius: 6px;
  background-color: #545353;
  padding: 0 15px 0 45px;
}

.nav .navOpenBtn,
.nav .navCloseBtn {
  display: none;
}
/* top nav bar*/
.top-bar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #ff5f09;
    color: white;
    padding: 10px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar .contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
}
.top-bar .contact-info i {
    margin-right: 5px;
}
/*LOGO BANNER*/
.banner {
  background-color: #333;
  color: white;
  padding: 20px;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.banner .logo {
  width: 150px;
}

.banner img {
  max-width: 100%;
  height: auto;
}

.banner .text {
  flex-grow: 1;
  padding: 0 20px;
  text-align: left;
  font-size: 1.2em;
}

@media (max-width: 768px) {
  .banner {
      flex-direction: column;
      text-align: center;
  }

  .banner .text {
      padding: 10px 0;
      text-align: center;
  }
}
/* responsive */
/* Responsive */
@media screen and (max-width: 1160px) {
  .nav {
    padding: 15px 100px;
  }
  .nav .search-box {
    right: 150px;
  }
}
@media screen and (max-width: 950px) {
  .nav {
    padding: 15px 50px;
  }
  .nav .search-box {
    right: 100px;
    max-width: 400px;
  }
}
@media screen and (max-width: 768px) {
  .nav .navOpenBtn,
  .nav .navCloseBtn {
    display: block;
    z-index: 101; /* Ensure buttons are on top */
  }
  .nav {
    padding: 15px 20px;
    z-index: 100; /* Ensure nav is on top */
  }
  .nav .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100%;
    max-width: 280px;
    width: 100%;
    padding-top: 100px;
    row-gap: 30px;
    flex-direction: column;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    z-index: 100; /* Keep nav-links on top */
  }
  .nav.openNav .nav-links {
    left: 0;
  }
  .nav .navOpenBtn {
    color: #000000;
    font-size: 20px;
    cursor: pointer;
  }
  .nav .navCloseBtn {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #000000;
    font-size: 20px;
    cursor: pointer;
  }
  .nav .search-box {
    top: calc(100% + 10px);
    max-width: calc(100% - 20px);
    right: 50%;
    transform: translateX(50%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 99; /* Ensure search-box is below nav */
  }
}
@media (max-width: 768px) {
  .top-bar .message {
    display: none;
  }
}
/* vission - mission*/
.vision-mission {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 20px;
  flex-wrap: wrap; /* To handle wrapping for better responsiveness */
  background-image: url('https://i.postimg.cc/VNc18t8P/ssu-bg-1.jpg'); /* Replace 'background.jpg' with your image URL */
  background-size: cover; /* Ensure the background image covers the entire container */
  background-position: center; /* Center the background image */
  padding: 20px; /* Add padding to ensure text is readable over the background */
  color: #000000; /* Ensure text is visible over the background image */
}
.card {
  border: 1px solid #ddd;
  border-radius: 1px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent background for readability */
  flex: 1; /* Allows cards to grow and shrink */
  max-width: 700px; /* Set a max width */
  margin: 10px; /* Add margin between cards */
}

@media (max-width: 768px) {
  .vision-mission {
    background-image: url('https://i.postimg.cc/7ZBbsVd6/side-img.jpg'); /* Replace 'background.jpg' with your image URL */
    background-size: cover; /* Ensure the background image covers the entire container */
    background-position: center; /* Center the background image */
      flex-direction: column;
  }
  .card {
      margin: 10px auto;
      max-width: 90%;
  }
}
.bg{
  background-image: url('https://i.postimg.cc/C1RHqBGd/Slider-5.jpg'); /* Replace 'background.jpg' with your image URL */
  background-size: cover; /* Ensure the background image covers the entire container */
  background-position: center; /* Center the background image */
  
}
.card-1 {
  background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent background for readability */
  padding: 20px;
  margin: 20px auto;
  text-align: left;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  max-width: fit-content;
   
}




.objectives-list {
    list-style-type: none;
    padding: 0;
}

.objectives-list li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
}
@media (max-width: 768px) {
  .bg{
    background-image: url('https://i.postimg.cc/XN816F26/Slider-3.jpg'); /* Replace 'background.jpg' with your image URL */
    background-size: cover; /* Ensure the background image covers the entire container */
    background-position: center; /* Center the background image */
  }
    .card-1 {
        width: 90%; /* Adjust width for smaller screens */
        padding: 15px; /* Decrease padding for smaller screens */
    }
}

