* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #e6e6e6;
  color: #333;
}


section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #1f4068;
  margin-bottom: 20px;
  position: relative;
  text-align: center;
}

section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #0047cc;
  margin: 20px auto 0;
  border-radius: 2px;
}


header {
  background: white;
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

.container {
  width: 100%;
  max-width: 1760px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
}

.logo img {
  height: 85px;
  cursor: pointer; 
}

.logo a {
  display: inline-block; 
}

nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: #000;
  text-decoration: none;
  font-size: 17px;
  font-weight: bold;
  padding: 15px;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #1244cf;
}


.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
}

.hero h1 {
  font-size: 3rem;
}

.hero p {
  font-size: 1.4rem;
}


.btn {
  padding: 10px 20px;
  background: #0047cc;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.btn.secondary {
  background: #1f4068;
}

.btn:hover {
  background: #667377;
}


.containerServices {
  width: 100%;
}

.services {
  padding: 80px 20px;
  background: white;
  text-align: center;
}

.services-wrapper {
  display: flex;
  max-width: 1200px;
  margin: auto;
  background: #f4f4f4;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}


.services-list {
  width: 30%;
  background: #002d80;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tab-btn {
  background: transparent;
  color: white;
  border: none;
  padding: 15px;
  font-size: 16px;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.3s ease-in-out;
}

.tab-btn i {
  font-size: 20px;
}

.tab-btn:hover,
.tab-btn.active {
  background: rgba(255, 255, 255, 0.2);
}


.services-content {
  height: 420px;
  overflow: auto;
  display: block;
  width: 100%;
  max-width: 800px;
  min-width: 800px;
  margin: 0 auto;
  background-image: url('assets/onlylogo.svg'), none;
  background-size: 340px, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  color: #222;
  font-weight: 600;
  font-size: 20px;
  font-family: 'Poppins', sans-serif;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  line-height: 1.6;
  padding: 20px;
  border-radius: 10px;
}

.tab-content {
  display: none;
  background: rgba(252, 252, 252, 0.8);
  padding: 20px;
  border-radius: 10px;
  background-image: url('assets/onlylogo.svg');
  min-height: 380px;
  max-height: 380px;
}

.tab-content.active {
  display: block;
}

.show-more-btn {
  margin-top: 10px;
  padding: 10px 20px;
  background: #002d80;
  color: white;
  font-size: 18px;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.show-more-btn:hover {
  background: #0033a0;
  transform: scale(1.05);
}


.about {
  padding: 80px 20px;
  background: #f4f4f4;
  text-align: center;
  position: relative;
}

.about p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 20px auto;
  line-height: 1.6;
  color: #333;
  font-family: 'Arial', sans-serif;
  text-align: justify;
  font-size: 20px;

}


.resources {
  padding: 80px 20px;
  text-align: center;
  background: white;
}

.containerResources {
  display: flex;
  flex-wrap: wrap; 
  justify-content: center; 
  gap: 20px; 
}

.resource-item {
  background: #f4f4f4;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 5px 7px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  flex: 1 1 300px; 
}

.resource-item h3 {
  color: #1f4068;
  font-size: 24px;
}

.resources p {
 
  font-size: 20px;
  max-width: 800px;
  margin: 20px auto;
  line-height: 1.6;
  color: #333;
  font-family: 'Arial', sans-serif;
  text-align: justify;
}

.contact {
  padding: 80px 20px;
  background: #f4f4f4;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  align-items: center;
}


.contact-media {
  flex: 1;
  position: relative;
  min-height: 300px;
  overflow: hidden;
}

.contact-video, .contact-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.contact-cta {
  flex: 1;
  text-align: center;
  padding: 40px;
}

.contact-btn {
  display: inline-block;
  padding: 20px 40px;
  background: #0047cc;
  color: white;
  font-size: 1.8rem;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease-in-out, transform 0.2s;
}

.contact-btn:hover {
  background: #0033a0;
  transform: scale(1.05);
}


.contact-cta h3 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #1f4068;
}

.contact-cta p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 20px;
}



@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }
  
  .contact-cta {
    padding: 20px;
  }
}

footer {
  background: #1f4068;
  color: white;
  text-align: center;
  padding: 20px;
}


@media (max-width: 768px) {
  .services-wrapper {
    flex-direction: column;
  }
  .services-list {
    width: 100%;
  }
  .services-content {
    width: 100%;
    min-height: 250px;
  }
  nav ul {
    flex-direction: column;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
}