body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-family: "Roboto", sans-serif;

}
iframe {
  width: 100%;
}

:root {
  --primary-color: #007bff; /* Primary Color */
  --secondary-color: #0fea6a;/* Secondary Color */
  --accent-color: #ff6f61; /* Accent Color */
  --background-color: #f0f8ff; /* Background Color */
  --text-color: #333333; /* Text Color */
  --border-color: #add8e6; /* Border Color */
}


header {
  background-color: #00264d;
  color: white;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 10;
}
#logo {
  font-size: 24px;
  font-weight: bold;
}
nav ul {
  list-style-type: none;
  display: flex;
  margin: 0;
  padding: 0;
}
nav ul li {
  margin-left: 20px;
}
nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}
#menu-icon {
  display: none;
  cursor: pointer;
}
.hero {
  background-color: #00264d;
  color: white;
  padding: 50px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.hero .content {
  max-width: 50%;
  margin-left: 40px;
}
.hero h1 {
  font-size: 36px;
  margin-bottom: 20px;
}
.hero h1 span {
  color: #00adef;
}
.hero p {
  font-size: 18px;
  margin-bottom: 20px;
}
.hero button {
  background-color: #00adef;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 18px;
}
.hero button:hover {
  background-color: #0096d6;
}
.hero img {
  max-width: 45%;
  height: auto;
  border-radius: 5px;
}
@media (max-width: 768px) {
  nav ul {
      display: none;
      flex-direction: column;
      background-color: #00264d;
      position: absolute;
      top: 50px;
      right: 20px;
      width: 200px;
      border-radius: 5px;
  }
  nav ul li {
      margin-left: 0;
      margin-bottom: 10px;
  }
  nav ul li a {
      padding: 10px 20px;
      display: block;
  }
  #menu-icon {
      display: block;
  }
  .hero {
      flex-direction: column;
  }
  .hero .content {
      max-width: 100%;
  }
  .hero img {
      max-width: 100%;
      margin-top: 20px;
  }
}



.mission-vision-core-values {
	background: linear-gradient(145deg, #00264d, #00264d);
	color: #fff;
	padding: 50px 20px;
	text-align: center;
  }
  
  .container {
	max-width: 1200px;
	margin: 0 auto;
  }
  
  .grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
  }
  
  .card {
	background: rgba(255, 255, 255, 0.05);
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4), inset 0 0 10px rgba(15, 234, 106, 0.3);

	transition: transform 0.3s, background 0.3s;
  }
  
  .card:hover {
	transform: translateY(-10px);
	background: rgba(255, 255, 255, 0.15);
  }
  
  .icon-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 15px;
  }
  
  .icon {
	width: 50px;
	height: 50px;
	fill: #0fea6a; /* Golden brown color */
  }
  
  h2 {
	color: #0fea6a;
	font-size: 24px;
	margin-bottom: 15px;
  }
  
  p, ul {
	margin: 0;
	font-size: 16px;
	line-height: 1.5;
  }
  
  ul {
	list-style: none;
	padding: 0;
  }
  
  li {
	margin-bottom: 10px;
  }
  
  .about-us {
    padding: 2rem;
    background-color: var(--background-color);
  }
  
  .about-us-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .about-us-container h2 {
    width: 100%;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
  }
  
  .about-us-content, .about-us-image {
    flex: 1 1 100%;
    margin-bottom: 1.5rem;
  }
  
  .about-us-content p {
    color: var(--text-color);
    margin-bottom: 1rem;
    text-align: left;
  }
  
  .about-us-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  @media (min-width: 768px) {
    .about-us-container {
      flex-direction: row;
    }
    .about-us-content, .about-us-image {
      flex: 1 1 45%;
      margin-bottom: 0;
    }
    .about-us-content {
      text-align: left;
      padding-right: 2rem;
    }
    .about-us-image {
      padding-left: 2rem;
    }
  }



  .services {
    padding: 2rem;
    background-color: var(--background-color);
  }
  
  .services h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
  }
  
  .services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .service-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  
  .service-card img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 1rem;
  }
  
  .service-card h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 18px;
  }
  
  .service-card p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.5;
  }
  
  @media (max-width: 768px) {
    .services-container {
      grid-template-columns: 1fr;
    }
  }