/* =======================
   RESET & GLOBAL STYLE
======================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
}

/* Heading & Text Style */
h1, h2, h3 {
  font-weight: 700;
}
p, li, a, span {
  font-weight: 400;
}

/* Title & Subtitle */
.page-title {
  text-align: center;  
  font-weight: bold;   
  margin: 20px 0;    
}
.page-subtitle {
  font-weight: 600;   
  font-size: 20px;
  text-align: center;
  margin-bottom: 30px;
}
/* =======================
   HAMBURGER
======================= */
.hamburger {
  font-size: 28px;
  cursor: pointer;
  display: none; 
}

/* =======================
   HEADER / NAVBAR
======================= */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 30px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Logo */
.logo {
  display: flex;
}
.logo img {
  height: 80px;
}

/* =======================
   NAVIGATION MENU
======================= */
.menu-wrapper {
  display: flex;
  align-items: center;
  gap: 20px; 
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li {
  position: relative;
}

nav ul li a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  padding: 8px;
  display: block;
}

/* =======================
   DROPDOWN (DESKTOP)
======================= */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;       /* langsung pas di bawah parent */
  left: 0;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 10px 0;
  min-width: 200px;
  z-index: 1000;
}

.dropdown-menu li a {
  padding: 8px 15px;
  color: #333;
}

.dropdown-menu li:hover {
  background: #f2f2f2;
}

nav ul li:hover > .dropdown-menu {
  display: block;
}

/* =======================
   MOBILE STYLES
======================= */
@media (max-width: 768px) {
  /* Hamburger muncul */
  .hamburger {
    display: block;
  }

  /* Menu jadi vertical */
  .menu-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    background: #fff;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    padding: 0 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);

    /* Animasi */
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
  }

  .menu-wrapper.active {
    padding: 20px;
    max-height: 500px;
    opacity: 1;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  nav ul li a {
    padding: 10px;
    width: 100%;
  }

  .btn-admission {
    margin: 10px 0 0 0;
    width: 100%;
    text-align: center;
  }

  /* Dropdown mobile */
  .dropdown-menu {
    position: static;  
    box-shadow: none;
    width: 100%;
    padding-left: 15px;
    display: none;
  }

  .dropdown.open > .dropdown-menu {
    display: block;    
  }

  .dropdown > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

/* Admission Button */
.btn-admission {
  background: #ff9800;
  color: white;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  margin-left: 20px;
}
.btn-admission:hover {
  background: #e68900;
}

/* =======================
   BANNER / SLIDER
======================= */
.banner img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* =======================
   AWARDS SECTION
======================= */
section {
  padding: 0px 20px;   
}

.awards-section {
  text-align: center;   
}

.awards-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;         
  gap: 20px;               
  margin-top: 20px;
}

/* Card Component */
.card {
  position: relative;
  width: 350px;
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  color: white;
  margin: 10px;
  display: inline-block;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.card .text {
  position: absolute;
  bottom: 15px;
  text-align: justify;
  left: 15px;
  right: 15px;
}
.card .text h3 {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
}
.card .text p {
  margin: 5px 0 0;
  font-size: 14px;
}

/* =======================
   PARTNERS SECTION
======================= */
.partners-section {
  padding: 40px 20px;
  text-align: center;
}

.partners-wrapper {
  width: 100%;              
  max-width: 900px;       
  margin: 0 auto;
  overflow: hidden;        
  position: relative;
}

.partners-container {
  display: flex;
  animation: scroll 20s linear infinite; 
}
.partners-container img {
  height: 70px;             
  margin: 0 10px;           
  opacity: 0.8;             
  transition: opacity 0.3s ease;
}
.partners-container img:hover {
  opacity: 1;
}

/* Loop animasi logo */
@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); } 
}

/* =======================
   PROGRAM STUDY SECTION
======================= */
.program-section {
  background: #f4f6ff; 
  padding: 50px 20px;
}

/* Wrapper 2 kolom */
.program-wrapper {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

/* Kolom kiri: gambar */
.program-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  object-fit: cover;
}

/* Kolom kanan: teks & button */
.program-content {
  flex: 1;
  text-align: left;
}

.program-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.program-content p {
  font-size: 16px;
  margin-bottom: 25px;
  color: #333;
}

/* Button list */
.program-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.program-buttons button {
  padding: 12px 18px;
  border: 2px solid #20486D;
  border-radius: 8px;
  background: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.program-buttons button:hover {
  background: #20486D;
  color: #fff;
}

/* See All button */
.see-all-wrapper {
  text-align: right;
}

.see-all-btn {
  display: flex;
  justify-content: flex-start;  
  align-items: center;
  margin-left: auto;            
  width: 100%;
  max-width: 220px;
  padding: 10px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;               
  font-weight: 400;              
  background-color: #151B4B;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
}

.see-all-btn::after {
  content: "›";
  font-size: 28px;      
  margin-left: auto;    
  padding-left: 16px;    
  display: inline-block;
  transition: transform 0.3s ease;
}

.see-all-btn:hover::after {
  transform: translateX(6px); 
}

/* Responsive (mobile) */
@media (max-width: 768px) {
  .program-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .program-content {
    text-align: center;
  }
  .program-buttons {
    grid-template-columns: 1fr; 
  }
  .see-all-wrapper {
    text-align: center;
  }
}

/* =======================
   ADMISSION SECTION
======================= */
.admission {
  text-align: center;
  padding: 50px 20px;
  font-family: 'Montserrat', sans-serif;
}

/* ---- Top Education ---- */
.admission-top {
  margin-bottom: 50px;
}

.admission-top img {
  width: 80px;
}

.admission-top .page-title {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 10px;
  margin-top: 0px;
}

.admission-desc {
  font-size: 16px;
  color: #000;
  max-width: 700px;
  margin: 0 auto;
}

/* ---- Admission Features ---- */
.admission-features {
  display: flex;
  justify-content: center;
  gap: 70px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.feature-item {
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-img {
    width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 14px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-item:hover .feature-img {
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.feature-title {
  font-weight: 500;
  font-size: 16px;
}

/* ---- Open Registration ---- */
.admission-open {
  margin-bottom: 50px;
}

.admission-open .page-subtitle {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 25px;
}

.regis-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #20486D;
  color: #fff;
  padding: 16px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 400;
  max-width: 1000px;
  margin: 0 auto 35px auto;
  position: relative;
}

.regis-btn::after {
  content: "›";
  font-size: 22px;
  margin-left: 10px;
  transition: transform 0.3s;
}

.regis-btn:hover::after {
  transform: translateX(6px);
}

.admission-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.more-info {
  color: #000;
  font-weight:400;
}

.visit-btn {
  background-color: #f7931e;
  color: #fff;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.visit-btn:hover {
  background-color: #e68214;
}

/* =======================
   ALUMNNI STORIES SECTION
======================= */
.alumni {
  padding: 30px 20px;
  font-family: 'Montserrat', sans-serif;
}

.container {
  max-width: 1200px; 
  margin: 0 auto;
  padding: 0 20px;
}

.alumni-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.alumni-header .page-title {
  font-weight: 700;
  font-size: 24px;
}

.alumni-section {
  width: 100%;
  max-width: 1000px;  
  margin: 0 auto;      
  padding: 60px 50px; 
  box-sizing: border-box;
}

.alumni-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 40px;
}

.alumni-list {
  display: flex;
  justify-content: center; 
  gap: 40px;           
  flex-wrap: wrap;     
}

.alumni-item {
  max-width: 300px;
  text-align: center;
}

/* Button "See more stories" */
.see-all-btn {
  background-color: #151B4B;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  transition: background 0.3s;
}

.see-all-btn::after {
  content: "›";
  font-size: 18px;
  margin-left: 8px;
  transition: transform 0.3s;
}

.see-all-btn:hover::after {
  transform: translateX(4px);
}

.see-all-btn:hover {
  background-color: #163055;
}

/* Alumni Cards */
.alumni-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.alumni-card {
  background: #fff;
  border-radius: 12px;
  padding: 50px 25px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 5px 20px rgba(0,0,0,0.10);
  transition: transform 0.3s, box-shadow 0.3s;
}

.alumni-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.alumni-img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

.alumni-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.alumni-role {
  font-size: 14px;
  color: #555;
  font-weight: 500;
  margin-bottom: 15px;
}

.alumni-quote {
  font-size: 14px;
  color: #333;
   text-align: justify;
  line-height: 1.6;
}

/* =======================
   CONTACT SECTION
======================= */
.contact-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  text-align: center;
}

.contact-box {
  flex: 1 1 300px;  
  max-width: 400px; 
}

.contact-text {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.whatsapp-btn {
  background-color: #0AA12B;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.whatsapp-btn:hover {
  background-color: #087A22;
}

.whatsapp-btn img {
  display: block;
  height: 32px; 
}

/* =======================
   FORM SECTION
======================= */
.form-section {
  display: flex;
  justify-content: center;
  padding: 50px 20px;
}

.form-container {
  background-color: #E6E6E6; 
  padding: 40px;
  border-radius: 12px;
  width: 100%;
  max-width: 900px;
}

.form-container h1 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
  color: #333;
}

/* FORM GROUP */
.form-group {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.form-group label {
  flex: 1;
  font-weight: 600;
  color: #444;
}

.form-group input,
.form-group textarea {
  flex: 2;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  resize: vertical;
  width: 100%;
}

/* TEXTAREA */
.form-group textarea {
  min-height: 120px;
}

/* BUTTON */
button[type="submit"] {
  display: block;             
  margin: 20px auto 0;       
  background-color: #151B4B;  
  color: white;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 28px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
  width: auto;                
}

button[type="submit"]:hover {
  background-color: #151B4B;
}

/* =======================
   FOOTER SECTION
======================= */
footer {
    background-color: #151B4B;
    color: #f0f0f0;
    text-align: center;
    margin-top: 30px;
    padding: 30px 0;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px; 
    margin-bottom: 20px;
}

.social-icons img {
    height: 30px;
    width: auto;
}

.copyright {
    font-size: 0.9em;
    margin: 0;
}