* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  background: linear-gradient(135deg, #2d5a27 0%, #1a4b84 50%, #4a1a4a 100%);
  min-height: 100vh;
  color: white;
}

/* Hero section with full background image and overlay navbar */
.hero-section {
  width: 100%;
  height: auto;
  display: block;
}

.hero-background {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.navigation-overlay {
  display: none;
}

/* Top header image section */
.top-image-section {
  width: 100%;
  height: auto;
  display: block;
}

.top-image {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, #2d5a27 0%, #1a4b84 50%, #4a1a4a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-banner {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.top-header-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Navigation bar as standalone section */
.navigation-bar {
  background: linear-gradient(90deg, #ff6b35, #ff8c42);
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.navigation-bar .nav-item {
  padding: 15px 25px;
  color: white;
  text-decoration: none;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  transition: background 0.3s ease;
  font-weight: bold;
  font-size: 16px;
}

.navigation-bar .nav-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.navigation-bar .nav-item:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

/* Navigation */
.navigation {
  background: linear-gradient(90deg, #ff6b35, #ff8c42);
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.nav-item {
  padding: 15px 25px;
  color: white;
  text-decoration: none;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  transition: background 0.3s ease;
}

.nav-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav-item:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

/* Header content */
.header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.logos {
  display: flex;
  gap: 20px;
}

.logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #fff;
}

.header-text {
  text-align: right;
  font-size: 18px;
  line-height: 1.6;
  max-width: 400px;
}

/* Bottom full-width image with overlay */
.bottom-image {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.contact-banner {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.contact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.contact-title {
  font-size: 48px;
  font-weight: bold;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  display: block;
}

.contact-icons {
  display: flex;
  gap: 30px;
  align-items: center;
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: #ff6b35;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 30px;
  transition: transform 0.3s ease, background 0.3s ease;
  cursor: pointer;
}

.contact-icon:hover {
  transform: scale(1.1);
  background: #ff8c42;
}

/* Bottom content image section */
.bottom-content-section {
  width: 100%;
  height: auto;
  display: block;
}

.bottom-content-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Footer */
.footer {
  background: rgba(0, 0, 0, 0.5);
  padding: 40px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-contact {
  text-align: right;
}

.footer-contact h3 {
  color: #ff6b35;
  margin-bottom: 15px;
}

.footer-contact p {
  margin: 5px 0;
  font-size: 14px;
}

.footer-icons {
  display: flex;
  gap: 15px;
}

.footer-icon {
  width: 40px;
  height: 40px;
  background: #2d5a27;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

.footer-graduation {
  font-size: 80px;
  color: rgba(255, 255, 255, 0.1);
}

.copyright {
  background: #ff6b35;
  padding: 10px;
  text-align: center;
  font-size: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    gap: 20px;
    padding: 15px;
  }

  .header-text {
    text-align: center;
    font-size: 16px;
  }

  .contact-title {
    font-size: 32px;
  }

  .contact-icons {
    gap: 20px;
  }

  .contact-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .navigation {
    flex-direction: column;
  }

  .nav-item {
    padding: 12px 20px;
    font-size: 14px;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

  .top-image {
    height: 300px;
  }

  .bottom-image {
    height: 300px;
  }

  .hero-section {
    height: 70vh;
  }

  .navigation-overlay {
    flex-direction: column;
  }

  .navigation-bar {
    flex-direction: column;
  }

  .navigation-bar .nav-item {
    padding: 12px 20px;
    font-size: 14px;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
  }

  .navigation-bar .nav-item:first-child {
    border-right: none;
  }

  .navigation-bar .nav-item:last-child {
    border-bottom: none;
  }
}* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  background: linear-gradient(135deg, #2d5a27 0%, #1a4b84 50%, #4a1a4a 100%);
  min-height: 100vh;
  color: white;
}

/* Hero section with full background image and overlay navbar */
.hero-section {
  width: 100%;
  height: auto;
  display: block;
}

.hero-background {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.navigation-overlay {
  display: none;
}

/* Top header image section */
.top-image-section {
  width: 100%;
  height: auto;
  display: block;
}

.top-image {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, #2d5a27 0%, #1a4b84 50%, #4a1a4a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-banner {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.top-header-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Navigation bar as standalone section */
.navigation-bar {
  background: linear-gradient(90deg, #ff6b35, #ff8c42);
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.navigation-bar .nav-item {
  padding: 15px 25px;
  color: white;
  text-decoration: none;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  transition: background 0.3s ease;
  font-weight: bold;
  font-size: 16px;
}

.navigation-bar .nav-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.navigation-bar .nav-item:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

/* Navigation */
.navigation {
  background: linear-gradient(90deg, #ff6b35, #ff8c42);
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.nav-item {
  padding: 15px 25px;
  color: white;
  text-decoration: none;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  /* Enhanced transition effects for smoother animations */
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: bold;
  font-size: 16px;
  position: relative;
  overflow: hidden;
}

/* Enhanced hover effects with gradient overlay and transform */
.nav-item:hover {
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  color: #fff;
}

/* Added animated underline effect on hover */
.nav-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.8));
  transition: all 0.4s ease;
  transform: translateX(-50%);
}

.nav-item:hover::before {
  width: 80%;
}

/* Active state styling for current page */
.nav-item.active {
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.15));
  color: #fff;
  font-weight: 900;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Active state underline always visible */
.nav-item.active::before {
  width: 90%;
  height: 4px;
  background: linear-gradient(90deg, #fff, #f0f0f0);
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.4);
}

/* Enhanced active hover state */
.nav-item.active:hover {
  transform: translateY(-1px);
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.2));
}

.nav-item:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

/* Header content */
.header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.logos {
  display: flex;
  gap: 20px;
}

.logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #fff;
}

.header-text {
  text-align: right;
  font-size: 18px;
  line-height: 1.6;
  max-width: 400px;
}

/* Bottom full-width image with overlay */
.bottom-image {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.contact-banner {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.contact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.contact-title {
  font-size: 48px;
  font-weight: bold;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  display: block;
}

.contact-icons {
  display: flex;
  gap: 30px;
  align-items: center;
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: #ff6b35;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 30px;
  transition: transform 0.3s ease, background 0.3s ease;
  cursor: pointer;
}

.contact-icon:hover {
  transform: scale(1.1);
  background: #ff8c42;
}

/* Bottom content image section */
.bottom-content-section {
  width: 100%;
  height: auto;
  display: block;
}

.bottom-content-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Footer */
.footer {
  background: rgba(0, 0, 0, 0.5);
  padding: 40px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-contact {
  text-align: right;
}

.footer-contact h3 {
  color: #ff6b35;
  margin-bottom: 15px;
}

.footer-contact p {
  margin: 5px 0;
  font-size: 14px;
}

.footer-icons {
  display: flex;
  gap: 15px;
}

.footer-icon {
  width: 40px;
  height: 40px;
  background: #2d5a27;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

.footer-graduation {
  font-size: 80px;
  color: rgba(255, 255, 255, 0.1);
}

.copyright {
  background: #ff6b35;
  padding: 10px;
  text-align: center;
  font-size: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    gap: 20px;
    padding: 15px;
  }

  .header-text {
    text-align: center;
    font-size: 16px;
  }

  .contact-title {
    font-size: 32px;
  }

  .contact-icons {
    gap: 20px;
  }

  .contact-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .navigation {
    flex-direction: column;
  }

  .nav-item {
    padding: 12px 20px;
    font-size: 14px;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

  .top-image {
    height: 300px;
  }

  .bottom-image {
    height: 300px;
  }

  .hero-section {
    height: 70vh;
  }

  .navigation-overlay {
    flex-direction: column;
  }

  .navigation-bar {
    flex-direction: column;
  }

  .navigation-bar .nav-item {
    padding: 12px 20px;
    font-size: 14px;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
  }

  .navigation-bar .nav-item:first-child {
    border-right: none;
  }

  .navigation-bar .nav-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 480px) {
  .contact-title {
    font-size: 24px;
  }

  .contact-icons {
    flex-wrap: wrap;
    gap: 15px;
  }

  .hero-section {
    height: 60vh;
  }

  .top-image {
    height: 250px;
  }

  .bottom-image {
    height: 250px;
  }
}


@media (max-width: 480px) {
  .contact-title {
    font-size: 24px;
  }

  .contact-icons {
    flex-wrap: wrap;
    gap: 15px;
  }

  .hero-section {
    height: 60vh;
  }

  .top-image {
    height: 250px;
  }

  .bottom-image {
    height: 250px;
  }
}
