.hero-section {
  background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url('background_photos/campus5.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 50vh;
  position: relative;
  font-family: Poppins;
}

.navbar {
  display: flex;
  align-items: center;
  padding: 20px 50px;
  gap: 20px;
}

.hamburger {
  display: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}


.logo-group {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  width: 110px;
}

.logo-label {
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  line-height: 1.4rem;
}

.logo-label2 {
  font-size: 1.5rem;
  font-weight: 800;
}



/* NAV BAR */

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin-left: auto;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  padding: 8px 14px;
  transition: 0.3s ease-in-out;
  border-radius: 4px;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.contact-btn {
  background: #014f6eff(76, 118, 255, 1);
  background-color: #014f6eff;
  padding: 10px 22px;
  border-radius: 20px;
  font-weight: 700;
}

.contact-btn:hover {
  background: rgba(255, 255, 255, 0.4);
}



/* MAIN TITLE */

.button-label {
  position: absolute;      
  top: 70%;                
  left: 50%;               
  transform: translate(-50%, -50%); 
  color: white;
  font-size: 5rem;
  font-weight: 600;
  text-align: center;
}




/* FOOT NOTES */

.bottom-section {
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 0px 20px;
  font-family: poppins;
}

.bottom-container {
  display: flex;
  justify-content: space-between;
  width: 80%;
  max-width: 1100px;
  padding-bottom: 50px;
}

.bottom-box {
  width: 48%;
  text-align: left;
}

.bottom-box h2 {
  margin-bottom: 10px;
}







/* GLOBAL PAGE STYLE */
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #e8f4ff, #ffffff);
  color: #222;
  line-height: 1.7;
}

/* UNIVERSAL SECTION STYLING */
section {
  padding: 80px 0;
  display: flex;
  justify-content: center;
}

/* MAIN CONTENT CONTAINER (nice shadow + rounded edges) */
.cleanup-box,
.bottom-box {
  background: rgba(255, 255, 255, 0.85); /* glass effect */
  backdrop-filter: blur(6px);
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
  max-width: 1100px;
  animation: fadeIn 0.8s ease-in-out forwards;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

/* HOVER ELEVATION EFFECT */
.cleanup-box:hover,
.bottom-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.2);
}

/* HEADINGS */
h1, h2 {
  color: #014f6e;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

p {
  font-size: 1.05rem;
  color: #333;
}

/* BOTTOM FOOTER BOXES */
.bottom-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  width: 85%;
}

/* FOOTER CARD STYLE */
.bottom-box {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

/* FADE-IN ANIMATION */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(25px); }
  to   { opacity: 1; transform: translateY(0); }
}
