:root {
  --leaf: #2c934b;
  --forest: #0f4a30;
  --mint: #e8f6ed;
  --gold: #f4a640;
  --taupe: #f7f5f0;
  --charcoal: #1f2a24;
  --slate: #5f6d64;
}
* {
  box-sizing: border-box;
}
body {
  font-family:
    "Poppins",
    Arial,
    sans serif;
  background: linear-gradient(160deg, #ffffff 0%, #f5f7f4 45%, #edf4ec 100%);
  color: var(--charcoal);
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
/* Carousel Styles */
.carousel-container {
  position: relative;
  max-width: 1000px;
  margin: 40px auto;
  width: 90%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 55px rgba(63, 87, 74, 0.2);
  flex: 2; min-width: 300px;
}
.carousel-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 66.67%;
  background: #f0f0f0;
  line-height: 0;
}
.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}
.carousel-slide.active {
  opacity: 1;
}
.carousel-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.carousel-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}
.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  border: none;
  transition: background 0.3s ease;
}
.carousel-dot.active {
  background: #ffffff;
}
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: none;
  font-size: 24px;
  padding: 12px 16px;
  cursor: pointer;
  z-index: 5;
  border-radius: 4px;
  transition: background 0.3s ease;
}
.carousel-nav:hover {
  background: rgba(0, 0, 0, 0.6);
}
.carousel-nav.prev {
  left: 10px;
}
.carousel-nav.next {
  right: 10px;
}
/* Carousel Caption */
.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: #fff;
  padding: 40px 30px 20px;
  z-index: 4;
  text-align: center;
}
.carousel-caption h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
}
header {
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(12, 60, 40, 0.15);
  position: relative;
  z-index: 10;
}
.brand-bar {
  background: linear-gradient(120deg, #0d5f97, #49b6e6);
  padding: 24px 6vw 30px;
  color: #fff;
  position: relative;
}
.brand-bar::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -35px;
  width: 220px;
  height: 120px;
  background: radial-gradient(
    circle at 0% 0%,
    rgba(255, 255, 255, 0.45),
    transparent 70%
  );
  transform: skewX(-20deg);
  opacity: 0.5;
}
.logo-group {
  display: flex;
  align-items: center;
  gap: 22px;
}
.logo-img {
  width: 150px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.35));
}
.brand-copy h1 {
  margin: 0;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
}
.brand-copy small {
  display: block;
  margin-top: 4px;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}
.nav-bar {
  background: linear-gradient(120deg, #2c934b, #30c064);
  padding: 12px 6vw;
  position: relative;
  z-index: 50;
}
.nav-bar nav {
  overflow: visible;
}
.nav-bar ul {
  list-style: none;
  display: flex;
  gap: 18px 26px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  align-items: center;
  white-space: nowrap;
  overflow: visible;
}
.nav-bar li {
  position: relative;
}
.nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  padding: 6px 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 1);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}
.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 260px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
  padding: 16px 0;
  display: none;
  z-index: 60;
  pointer-events: auto;
}
.dropdown-menu a {
  display: block;
  padding: 10px 18px;
  color: var(--forest);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition:
  color 0.2s ease,
  background 0.2s ease;
}
.dropdown-menu a:hover {
  background: var(--mint);
  color: var(--leaf);
}
.nav-bar li:hover > .dropdown-menu,
.nav-bar li:focus-within > .dropdown-menu {
  display: block;
}
/* Main Content Area */
.content-wrapper {
  display: grid;
  grid-template-columns: 1fr 320px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-wrap: wrap; 
  padding: 20px;
  gap: 30px;
  align-items: flex-start;
}
.main-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.news-card {
  background: #ffffff;
  border: 1px solid rgba(15, 74, 48, 0.12);
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(44, 63, 52, 0.12);
  color: var(--charcoal);
}
.news-card h2 {
  margin: 0 0 18px;
  background: linear-gradient(135deg, #00c853, #2e7d32);
  border: 1px solid rgba(15, 74, 48, 0.2);
  padding: 10px 18px;
  border-radius: 999px;
  text-align: center;
  font-size: 1rem;
  color: #ffffff;
  letter-spacing: 0.08em;
}
.news-item {
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 12px;
}
.news-item:last-child {
  border-bottom: none;
}
.news-item img {
  width: 115px;
  height: 70px;
  border-radius: 10px;
  margin-bottom: 10px;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: block;
}
.news-item h4 {
  margin: 0;
  color: var(--forest);
  font-size: 0.92rem;
}
.news-item p {
  margin: 6px 0 0;
  color: #5f6d64;
  font-size: 0.82rem;
}
.news-item a {
  display: inline-block;
  margin-top: 8px;
  color: var(--leaf);
  text-decoration: none;
  font-size: 0.82rem;
}
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
  min-width: 280px;
  max-width: 400px;
  align-self: flex-start;
}
.sidebar-card {
  background: #ffffff;
  border: 1px solid rgba(15, 74, 48, 0.12);
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(44, 63, 52, 0.12);
}
.sidebar-card h3 {
  margin: 0 0 16px;
  background: linear-gradient(135deg, #00c853, #2e7d32);
  border: 1px solid rgba(15, 74, 48, 0.2);
  padding: 10px 16px;
  border-radius: 999px;
  text-align: center;
  font-size: 0.95rem;
  color: #ffffff;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.sidebar-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sidebar-list li {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.sidebar-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.sidebar-list a {
  color: var(--forest);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}
.sidebar-list a::before {
  content: "▶";
  font-size: 0.7rem;
}
.sidebar-list a:hover {
  color: var(--leaf);
}
.newsletter-box {
  background: linear-gradient(135deg, #e8f6ed, #ffffff);
  padding: 18px;
  border-radius: 12px;
  border: 1px solid rgba(44, 147, 75, 0.2);
  text-align: center;
}
.newsletter-box p {
  margin: 0 0 12px;
  font-size: 0.85rem;
  color: var(--forest);
  font-weight: 500;
}
.newsletter-box input {
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(15, 74, 48, 0.2);
  border-radius: 8px;
  font-size: 0.85rem;
  margin-bottom: 10px;
  font-family: "Poppins", Arial, sans-serif;
}
.newsletter-box button {
  width: 100%;
  padding: 10px;
  background: linear-gradient(120deg, var(--leaf), #46d989);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.85rem;
  transition: box-shadow 0.3s ease;
}
.newsletter-box button:hover {
  box-shadow: 0 8px 20px rgba(70, 217, 137, 0.4);
}
.footer-hero {
  margin: 60px 0 0;
  width: 100%;
  max-width: none;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.65)),
    url("it_park.jpg") center/cover no-repeat;
  background-attachment: fixed;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.25);
  color: #ffffff;
}

.footer-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  /*background:linear-gradient(120deg,rgba(15,74,48,.55),rgba(44,147,75,.35));*/
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 1;
  padding: 48px 48px 54px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 26px;
}

.message-heading {
  text-transform: uppercase;
  letter-spacing: 0.55em;
  font-size: 0.95rem;
  color: #b0f1cc;
  font-weight: 600;
  text-align: center;
}

.message-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  width: 100%;
}

.message-card {
  background: rgba(5, 24, 18, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.message-photo {
  width: 160px;
  height: 160px;
  border-radius: 24px;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.32);
  background: #ffffff;
}

.message-card h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #ffffff;
  letter-spacing: 0.05em;
}

.message-meta {
  font-size: 0.9rem;
  color: #e0ffee;
  letter-spacing: 0.08em;
}

.message-card p {
  margin: 0;
  line-height: 1.65;
  font-size: 0.95rem;
  color: #f3f8f5;
}

.footer {
  background: #ffffff;
  padding: 60px 80px 30px;
  border-top: 1px solid #e5e5e5;
}

.footer-container {
 display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-left {
  width: 30%;
}

.footer-logo {
  width: 180px;
  margin-bottom: 15px;
}

.footer-title {
  font-weight: 500;
  margin-bottom: 10px;
}

.footer-left p {
  font-size: 14px;
  color: #666;
  margin-bottom: 6px;
}

.footer-links {
  display: flex;
  gap: 80px;
}

.footer-links h4 {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 15px;
}

.footer-links a {
  display: block;
  font-size: 13px;
  color: #777;
  margin-bottom: 10px;
  cursor: pointer;
}

.footer-links a:hover {
  color: #f6c400;
}

.footer-right {
  text-align: right;
}

.alumni-btn {
  background: #f6c400;
  border: none;
  padding: 14px 40px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 25px;
}

.social-icons {
  padding: 10px;
  padding-top: 10px;
}

.social-icons i {
  color: #999;
  margin-left: 12px;
  font-size: 16px;
  cursor: pointer;
}

.social-icons i:hover {
  color: #333;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: #aaa;
}
.footer-bar {
  padding: 18px 6vw 26px;
  text-align: center;
  color: #e8f6ed;
  font-size: 0.9rem;
  background: linear-gradient(120deg, #0f4a30, #2c934b);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 0;
}
.tagline {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: #93a397;
  font-size: 0.78rem;
}
.hero h2 {
  font-size: 2rem;
  margin: 12px 0 18px;
  color: var(--forest);
}
.cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.btn {
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.btn-primary {
  background: #46d989;
  color: #ffffff;
  box-shadow: 0 12px 25px rgba(70, 217, 137, 0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--forest);
  border: 1px solid rgba(15, 74, 48, 0.25);
}
.section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-top: 40px;
}
.card {
  background: var(--mint);
  border-radius: 18px;
  padding: 22px;
  border: 1px solid rgba(15, 74, 48, 0.08);
  box-shadow: 0 15px 25px rgba(15, 74, 48, 0.06);
}
.card h3 {
  margin: 0 0 12px;
  color: var(--forest);
}
.card p {
  margin: 0;
  color: #3a4a40;
  font-size: 0.92rem;
}
@media (max-width: 900px) {
  .content-wrapper {
    grid-template-columns: 1fr;
  }
  header {
    flex-direction: column;
    gap: 18px;
    text-align: center;
  }
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  .carousel-container {
    margin: 30px auto;
  }
  .footer-inner {
    padding: 36px 24px;
  }
  .message-grid {
    grid-template-columns: 1fr;
  }
  .message-card {
    padding: 20px;
  }
  .message-photo {
    width: 140px;
    height: 140px;
  }
  .footer-hero {
    background-attachment: scroll;
  }

  .apply-btn {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #2d8659, #4caf50);
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
}
.apply-btn:hover {
    background: linear-gradient(135deg, #1e5c3d, #43a047);
}
}
