
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
  font-size: 81%;
}

header {
  background: none;
  color: #386492;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  width: 100%;
  border-bottom: 1px solid #38649251;
}

.logo {
  background: url('./cropped-NEW-LOGO.png') center center no-repeat;
  background-size: contain;
  height: 61px;
  width: 180px;
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  font-size: 1.5em;
  background: none;
  border: none;
  color: #386492;
  cursor: pointer;
  
}

nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 16px;
  margin-right: 20px;
}

nav ul li a {
  color: #386492;
  text-decoration: none;
  padding: 8px 12px;
  transition: color 0.3s;
  font-weight: 600;
}

nav ul li a:hover {
  color: #6a88a8;
}

@media (max-width: 900px) {
  nav {
  
    display: none;
    flex-direction: column;
    position: absolute;
    top: 85px;
    left: 0;
    width: 100%;
    background: #f5f5f5;
    border-top: 1px solid #ccc;
    
  }

  nav.active {
    display: flex;
  }

  nav ul {
     
      
     font-size: clamp(0.5rem, 4.5vw, 2rem); /* responsive between 2rem and 5rem */
  font-weight: bold;
  line-height: 1.2;
    margin-top: 27vh;
    height: 100vh;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
    gap: 30px;
  }

  .logo {  background-size: contain;
    height: 61px;
    width: 100%;
    display: flex;
    justify-content: right;
    align-items: right;
    background: url('./cropped-NEW-LOGO.png') center center no-repeat;
}
  .menu-toggle {
    display: block;
  }
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  
}

section {
  margin-top: 20px;
}

h1 {
   font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 15px;
  margin-top:15px ;
  color: #386492;
}



h2 {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #386492;
}

p {
  font-size: 0.95em;
  line-height: 1.5;
  color: #333;
  margin-bottom: 15px;
}
.ul-p {
  list-style: none;
  font-size: 0.90em;
  line-height: 1.5;
  color: #333;
  margin-bottom: 15px;
}
.ul-p ::before {
  content: "•"; 
  padding-right: 8px;
}

.main-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2vw;
}

.margin-b {
  margin-bottom: 7vh;
}
.margin-t {
  margin-top: 3vh;
}
.container {
  display: flex;
  flex-wrap: wrap;
  gap: 4vw;
  justify-content: space-between;
 
}

.box {
  flex: 1 1 45%;
  min-width: 300px;
  text-align: left;
}

.box img {
  width: 100%;
  height: auto;
  
  margin-bottom: 10px;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    
    width: 100%;
}
.hero {
    background: url('./27years.png') center center no-repeat;
    background-size: contain;
    height: 55vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.centered-section {
  text-align: center;
  margin: 40px 0;
}

.centered-section div {
  color: #36b1e1;
  font-weight: bold;
  font-size: 1.2em;
  margin-bottom: 15px;
}

.image-container {
 
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5vw;
  padding: 20px;
}

.image-container img {
 
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

/* Mobile responsiveness */
@media (max-width: 670px) {
  .image-container {
    grid-template-columns: 1fr;
  }
}

.learn-more {
  display: inline-block;
  background: #3b6492;
  color: white;
  padding: 10px 20px;
  font-size: 0.95em;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.learn-more:hover {
  background: #2e9ac7;
}

.card-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2vw;
  justify-content: center;
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.card {
  flex: 1 1 calc(25% - 2vw);
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  padding: 20px;
  text-align: center;
  min-width: 250px;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  max-width: 80px;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
  color: #464848;
}

.card p {
  font-size: 0.95em;
  color: #555;
}
  .display-1 {
  font-size: clamp(2rem, 6vw, 5rem); /* responsive between 2rem and 5rem */
  font-weight: bold;
  line-height: 1.2;
}
i {
  color: #386492;
  font-size: 3em;
  margin-bottom: 25px;
  margin-top: 25px;
}



@media (max-width: 669px) {
  .img-none {
    display: none;
  }
}
footer {
  text-align: center;
  padding: 20px;
  background: #333;
 
  width: 100%;
}

footer p {
    color: white;
  }