/*
Theme Name: LEAP Program Theme
Author: Humanology
Description: Custom theme for the LEAP program website.
Version: 1.0
*/
 /* ===== BASE STYLES ===== */
 :root {
     --dark-blue: #0a2540;
     --gold: #d4af37;
     --light-gold: #faedcd;
     --white: #ffffff;
     --light-gray: #f8f9fa;
     --medium-gray: #e9ecef;
     --dark-gray: #6c757d;
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Montserrat', 'Open Sans', sans-serif;
     line-height: 1.6;
     color: #333;
     background-color: var(--white);
     overflow-x: hidden;
 }

 h1,
 h2,
 h3,
 h4,
 h5 {
     font-family: 'Montserrat', sans-serif;
     font-weight: 700;
     color: var(--dark-blue);
     margin-bottom: 1rem;
 }

 h1 {
     font-size: 2.8rem;
     line-height: 1.2;
 }

 h2 {
     font-size: 2.2rem;
     position: relative;
     padding-bottom: 15px;
     margin-bottom: 2rem;
 }

 h2:after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 80px;
     height: 4px;
     background: var(--gold);
 }

 .section-title-center h2:after {
     left: 50%;
     transform: translateX(-50%);
 }

 p {
     margin-bottom: 1.2rem;
     font-size: 1.1rem;
 }

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

 .btn {
     display: inline-block;
     padding: 12px 30px;
     background: var(--gold);
     color: var(--dark-blue);
     text-decoration: none;
     border-radius: 4px;
     font-weight: 600;
     text-transform: uppercase;
     font-size: 0.9rem;
     letter-spacing: 1px;
     transition: all 0.3s ease;
     border: 2px solid var(--gold);
     cursor: pointer;
 }

 .btn:hover {
     background: transparent;
     color: var(--gold);
     transform: translateY(-3px);
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
 }

 .btn-outline {
     background: transparent;
     color: var(--gold);
     border: 2px solid var(--gold);
 }

 .btn-outline:hover {
     background: var(--gold);
     color: var(--dark-blue);
 }

 /* ===== HEADER STYLES ===== */
 header {
     background: var(--light-gray);
     padding: 15px 0;
     position: sticky;
     top: 0;
     z-index: 1000;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
 }

 .header-container {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 /*Table*/
 .panel-table {
     width: 100%;
     border-collapse: separate;
     border-spacing: 20px 20px;
     text-align: center;
 }

 .panel-table td {
     background-color: #fff;
     width: 100%;
     padding: 15px;
     border-radius: 10px;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
     vertical-align: top;
     width: 33%;
 }

 .panel-table h3 {
     margin-top: 12px;
     font-size: 1.1rem;
     color: #1e3a8a;
 }

 .panel-table .title {
     font-weight: bold;
     color: #b91c1c;
     margin: 4px 0;
 }

 /* Dropdown Navigation */
 nav ul li.dropdown {
     position: relative;
 }

 nav ul li.dropdown .dropdown-menu {
     display: none;
     position: absolute;
     top: 100%;
     left: 0;
     background: var(--dark-blue);
     padding: 10px 0;
     min-width: 180px;
     z-index: 999;
     border-radius: 4px;
     box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);

     max-height: 250px;
     /*  Set a max height */
     overflow-y: auto;
     /* Enable vertical scroll */
     scrollbar-width: thin;
     scrollbar-color: var(--gold) var(--white);
 }

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

 nav ul li.dropdown .dropdown-menu li {
     margin: 0;
 }

 nav ul li.dropdown .dropdown-menu li a {
     padding: 10px 20px;
     display: block;
     color: var(--dark-blue);
     font-size: 0.9rem;
     text-align: left;
 }

 nav ul li.dropdown .dropdown-menu li a:hover {
     background: var(--gold);
     color: var(--light-gray);
 }

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

 nav ul li {
     margin-left: 25px;
 }

 nav ul li a {
     background-color: var(--light-gray);
     color: var(--dark-blue);
     text-decoration: none;
     font-weight: 500;
     font-size: 0.95rem;
     transition: color 0.3s;
     position: relative;
     padding: 5px 0;
 }

 .daftar {
     background-color: var(--dark-blue);
     color: var(--white);
     text-decoration: none;
     font-weight: 600;
     font-size: 1rem;
	  border-radius: 12px;
     transition: color 0.3s;
     position: relative;
     padding: 5px 0;
 }

 nav ul li a:after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 0;
     height: 2px;
     background: var(--gold);
     transition: width 0.3s;
 }

 nav ul li a:hover {
     color: var(--gold);
 }

 nav ul li a:hover:after {
     width: 100%;
 }

 .mobile-menu-btn {
     display: none;
     background: none;
     border: none;
     color: var(--dark-blue);
     font-size: 1.5rem;
     cursor: pointer;
 }

 /* ===== HERO SECTION ===== */
 .hero {

     background: linear-gradient(rgba(10, 37, 64, 0.85), rgba(10, 37, 64, 0.9)) i;
     background-size: cover;
     background-position: center;
     background-attachment: fixed;
     color: var(--white);
     text-align: center;
     padding: 120px 0;
 }

 .hero-content {
     max-width: 800px;
     margin: 0 auto;
 }

 .hero img {
     width: 100%;
     height: 100%;
     
 }

 /* ===== SECTION STYLES ===== */
 section {
     padding: 80px 0;
 }

 .section-light {
     background-color: var(--white);
 }

 .section-gray {
     background-color: var(--light-gray);
 }

 .section-dark {
     background-color: var(--dark-blue);
     color: var(--white);
 }

 .section-dark h2,
 .section-dark h3 {
     color: var(--white);
 }

 .section-title-center {
     text-align: center;
     margin-bottom: 50px;
 }

 /* ===== ABOUT SECTION ===== */
 .about-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
 }

 .pillars-container {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 20px;
     margin-top: 30px;
 }

 .pillar {
     background: var(--white);
     border: 1px solid var(--medium-gray);
     border-radius: 8px;
     padding: 25px;
     text-align: center;
     transition: transform 0.3s, box-shadow 0.3s;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
 }

 .pillar:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
 }

 .pillar i {
     font-size: 2.5rem;
     color: var(--gold);
     margin-bottom: 15px;
 }

 .pillar h4 {
     margin-bottom: 10px;
     font-size: 1.3rem;
 }
 .pillar p{
    color: black;
 }

 /* ===== MODULES SECTION ===== */
 .modules-container {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
     gap: 25px;
 }

 .module-card {
     background: var(--white);
     border-radius: 8px;
     overflow: hidden;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
     transition: transform 0.3s;
 }

 .module-card:hover {
     transform: translateY(-10px);
 }

 .module-header {
     background: var(--dark-blue);
     color: var(--white);
     padding: 20px;
 }

 .module-body {
     padding: 25px;
 }

 .module-body ul {
     padding-left: 20px;
     margin: 15px 0;
 }

 .module-body li {
     margin-bottom: 8px;
 }

 .duration {
     display: inline-block;
     background: var(--light-gold);
     color: var(--dark-blue);
     padding: 5px 12px;
     border-radius: 20px;
     font-size: 0.85rem;
     font-weight: 600;
     margin-bottom: 15px;
 }

 /* ===== WHY LEAP SECTION ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 3rem;
}

.feature-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-header {
  background: linear-gradient(90deg, #0f2650 0%, #1e3a8a 100%);
  color: white;
  padding: 1.5rem;
  display: flex;
  align-items: center;
}

.icon-container {
  background: rgba(255, 255, 255, 0.2);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  font-size: 1.5rem;
}

.card-content {
  padding: 1.8rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-content h3 {
  color: #0f2650;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.card-content p {
  color: #333;
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 20px;
}

.highlight {
  background: linear-gradient(120deg, #e0f7ff 0%, #f0f9ff 100%);
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid #1e3a8a;
  margin-top: auto;
}

.highlight strong {
  color: #1e3a8a;
  display: block;
  margin-bottom: 8px;
}

.conclusion {
  background: linear-gradient(90deg, #0f2650 0%, #1e3a8a 100%);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
}

.conclusion p {
  color: white;
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1.6;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  h2 {
    font-size: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .conclusion p {
    font-size: 1.2rem;
  }
}

.featured-text {
  color: #1e3a8a;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.featured-text:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #0f2650, #1e3a8a);
  border-radius: 2px;
}

 /* ===== FACULTY SECTION ===== */
 .faculty-expert-section {
  padding: 2rem;
  background: #f9f9f9;
}

.faculty-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.faculty-card {
  width: 280px;
  background: #fff;
  border-radius: 8px;
  text-align: center;
  padding: 1rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}
.faculty-divider {
  width: 80%;
  height: 2px;
  background-color: #e0e0e0;
  margin: 0.5rem auto 1rem auto;
}
.faculty-card img {
  width: 100%;
  max-width: 180px;
  margin: auto;
  display: block;
}

.faculty-card h4 {
    height: 15%;
  margin: 1rem 0 0.5rem;
  font-size: 1rem;
  color: #1e3a8a;
}

.faculty-card p {
  margin: 0.2rem 0;
  font-size: 0.9rem;
  color: #444;
}




 /* ===== TESTIMONIALS SECTION ===== */
 .testimonials-container {
     max-width: 800px;
     margin: 0 auto;
     position: relative;
 }

 .testimonial {
     background: var(--white);
     padding: 40px;
     border-radius: 8px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
     text-align: center;
     margin: 20px;
 }

 .testimonial-text {
     font-style: italic;
     font-size: 1.1rem;
     margin-bottom: 25px;
     position: relative;
 }

 .testimonial-text:before,
 .testimonial-text:after {
     content: '"';
     font-size: 3rem;
     color: var(--gold);
     opacity: 0.3;
     position: absolute;
 }

 .testimonial-text:before {
     top: -20px;
     left: -15px;
 }

 .testimonial-text:after {
     bottom: -40px;
     right: -15px;
 }

 .testimonial-author {
     font-weight: 600;
     color: var(--dark-blue);
 }

 .testimonial-company {
     color: var(--gold);
     font-size: 0.9rem;
 }
.client-logo {
  max-height: 60px;
  width: auto;
  opacity: 0;
	filter: none; !important
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.client-logo.visible {
  opacity: 1;
  transform: translateY(0);
}

.clients-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .client-logo {
    max-height: 50px;
  }
}





 /* ===== CONTACT SECTION ===== */
 .contact-container {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 50px;
 }

 .contact-info {
     display: flex;
     flex-direction: column;
     gap: 25px;
 }

 .contact-item {
     display: flex;
     gap: 15px;
 }

 .contact-item i {
     color: var(--gold);
     font-size: 1.5rem;
     min-width: 30px;
 }

 .contact-form .form-group {
     margin-bottom: 20px;
 }

 .contact-form input,
 .contact-form textarea,
 .contact-form select {
     width: 100%;
     padding: 12px 15px;
     border: 1px solid var(--medium-gray);
     border-radius: 4px;
     font-family: 'Open Sans', sans-serif;
     font-size: 1rem;
 }

 .contact-form textarea {
     height: 150px;
     resize: vertical;
 }

 /* ===== FOOTER ===== */
 footer {
     background: var(--dark-blue);
     color: var(--white);
     padding: 40px 0;
     font-size: 14px;
 }

 .footer-container {
     display: flex;
     flex-wrap: wrap;
     gap: 40px;
     justify-content: space-between;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .footer-col {
     flex: 1 1 1;
 }

 .footer-col h4 {
     color: var(--white);
     margin-bottom: 12px;
     font-size: 16px;
     position: relative;
 }

 .footer-col h4:after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 40px;
     height: 2px;
     background: var(--gold);
 }

 .footer-col ul {
     list-style: none;
 }

 .footer-col ul li {
     margin-bottom: 8px;
 }

 .footer-col a {
     color: var(--light-gray);
     text-decoration: none;
     transition: color 0.3s;
 }

 .footer-col a:hover {
     color: var(--gold);
 }

 a.whatsapp:hover {
     font-size: 150%;
 }

 a.whatsapp:hover {
     color: #d4af37;
 }

 .social-links {
     display: flex;
     gap: 15px;
     margin-bottom: 10px;
 }

 .social-links a {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 40px;
     height: 40px;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 50%;
     color: var(--white);
     transition: all 0.3s;
 }

 .social-links a:hover {
     background: var(--gold);
     color: var(--dark-blue);
     transform: translateY(-3px);
 }

 .copyright {
     text-align: center;
     padding-top: 30px;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     font-size: 0.9rem;
     color: var(--medium-gray);
 }

 /* Floating WhatsApp Button */
 .whatsapp-float {
     position: fixed;
     width: 60px;
     height: 60px;
     bottom: 40px;
     right: 40px;
     background-color: #25D366;
     color: white;
     border-radius: 50%;
     text-align: center;
     font-size: 30px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
     z-index: 100;
     display: flex;
     align-items: center;
     justify-content: center;
     text-decoration: none;
     animation: pulse 2s infinite;
     transition: all 0.3s ease;
 }

 /* ===== RESPONSIVE DESIGN ===== */
 @media (max-width: 992px) {
     .footer-container {
         grid-template-columns: repeat(2, 1fr);
     }

     .about-content,
     .contact-container {
         grid-template-columns: 1fr;
     }

     .hero h1 {
         font-size: 2.5rem;
     }

     .hero p {
         font-size: 1.2rem;
     }
 }

 @media (max-width: 768px) {
     .hero-btns {
         flex-direction: column;
         gap: 15px;
     }

     .btn {
         width: 100%;
         text-align: center;
     }

     .faculty-card {
         width: 90%;
     }

     nav ul {
         display: none;
         position: absolute;
         top: 70px;
         left: 0;
         right: 0;
         background: var(--dark-blue);
         flex-direction: column;
         padding: 20px 0;
         box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
     }

     nav ul.show {
         display: flex;
     }

     nav ul li {
         margin: 0;
         text-align: center;
     }

     nav ul li a {
         display: block;
         padding: 12px 20px;
     }

     .mobile-menu-btn {
         display: block;
     }

     .pillars-container {
         grid-template-columns: 1fr;
     }

     .footer-container {
         grid-template-columns: 1fr;
     }
 }

 @media (max-width: 576px) {
     section {
         padding: 60px 0;
     }

     h1 {
         font-size: 2.2rem;
     }

     h2 {
         font-size: 1.8rem;
     }

     .hero {
         padding: 80px 0;
     }
 }