/* ======= Base & Reset ======= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body {
    font-size: 16px;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-color: #f4f4f4;
    color: #222;
}

/* ======= Loader ======= */
#loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.loader {
    width: 84px;
    height: 84px;
    position: relative;
    overflow: hidden;
}
.loader:before, .loader:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #6ca2a5;
    transform: translate(-50%, 100%) scale(0);
    animation: push 2s infinite ease-in;
}
.loader:after { animation-delay: 1s; }
@keyframes push {
    0% { transform: translate(-50%, 100%) scale(1); }
    15%,25% { transform: translate(-50%, 50%) scale(1); }
    50%,75% { transform: translate(-50%, -30%) scale(0.5); }
    80%,100% { transform: translate(-50%, -50%) scale(0); }
}

/* ======= Navbar ======= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 50px;
    background-color: white;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
    position: relative;
}
.navbar-left { display:flex; align-items:center; }
.logo { height: 70px; width: auto; margin:auto; }
.navbar-right { display:flex; align-items:center; gap:20px; }
.info { display:flex; align-items:center; font-size:14px; color:#333; }
.info i { color:#FF6B6B; margin-right:7px; font-size:16px; }
.register-btn {
    background: linear-gradient(45deg, #FF6B6B, #556BFF);
    color:white; padding:8px 12px; border:none; border-radius:5px; font-weight:600; cursor:pointer; text-transform:uppercase;
}
.register-btn:hover { background-color:#FF6B6B; }

/* ======= Nav links ======= */
.nav-links {
    display:flex; justify-content:center; background-color:white; padding:12px; margin-bottom:0; box-shadow:0px 1px 1px rgba(0,0,0,0.1);
}
.nav-links a {
    text-decoration:none; color:black; font-weight:500; margin:0 15px; font-size:15px; transition: color .3s;
}
.nav-links a:hover, .nav-links a.active { color: #FF6B6B; }

/* ======= Mobile menu ======= */
.menu-toggle {
    display:none; font-size:22px; cursor:pointer; background: none;
    border: none; background: linear-gradient(45deg,#FF6B6B,#556BFF); color:white;
    position:absolute; right:20px; top:15px; border-radius:4px; width:35px; margin-top:10px;
}
.mobile-menu {
    position: fixed; top: 0; left: -100%; width: 80%; height: 100vh; background: white;
    box-shadow: 2px 0px 5px rgba(0,0,0,0.2); display:flex; flex-direction:column; padding:20px; transition:left .3s ease-in-out;
}
.mobile-menu a { text-decoration:none; color:black; font-weight:500; font-size:16px; padding:10px 0; }
.mobile-menu a:hover, .mobile-menu a.active { color: #FF6B6B; }
.close-menu {
    background: linear-gradient(45deg, #FF6B6B, #556BFF); color:white; border:none; font-size:16px; padding:6px 10px; border-radius:3px; cursor:pointer;
    position:absolute; top:15px; right:15px;
}
.mobile-register-btn {
    background: linear-gradient(45deg, #FF6B6B, #556BFF); color:white; padding:8px; border:none; border-radius:5px; font-weight:600; margin-top:20px; width:120px;
}
.mobile-register-btn:hover { background-color:#FF6B6B; }

@media (max-width: 768px) {
    .nav-links, .register-btn { display:none; }
    .navbar-right .info { display:none; }
    .menu-toggle { display:block; }
}
@media (min-width: 769px) { .mobile-menu{ display:none; } }

/* ======= Container / content ======= */
.container {
    max-width: 90%; margin: 0 auto; background: none; padding: 0; text-align: center; margin-top: 50px;
}
h1 { font-size: 36px; color: #333; margin-bottom: 20px; }
p { font-size: 18px; color: #555; line-height: 1.6; text-align: justify; margin-bottom: 15px; }

/* ======= HTD Section (new content) ======= */
.htd-section {
    max-width: 1100px;
    margin: 40px auto;
    text-align: left;
    padding: 20px;
}
.htd-section h1 {
    font-size: 34px; color: #222; margin-bottom: 18px; letter-spacing: 1px;
}
.htd-section .lead {
    font-size: 16px; color: #444; line-height: 1.7; margin-bottom: 12px;
}
.htd-grid {
    display: flex; gap: 30px;flex-direction: column; align-items: flex-start; margin-top: 18px; margin-top: 18px;
}
.htd-figure { position: absolute;right: 0; top: 0; width: 620px;max-width: 45%;margin: 0;text-align: center; }
.htd-figure img { width: 100%; height: auto; border-radius: 8px; box-shadow: 0px 4px 8px rgba(0,0,0,0.1);display: block;object-fit: cover; }
.img-tag { margin-top:8px; font-size:13px; color:#666; }
.htd-content { position: relative; padding-right: 760px; min-height: 320px; }
.htd-content h2 { font-size:20px; margin-top:0; color:#333; }
.htd-content h3 { font-size:18px; margin:14px 0 8px; color:#222; }
.benefits-list, .programs-list { list-style-type: disc; padding-left:20px; margin-bottom:12px; color:#333; }
.benefits-list li, .programs-list li { margin:6px 0; font-size:15px; }

/* responsive for HTD */
@media (max-width: 768px) {
    .htd-grid { flex-direction: column; }
    .htd-figure { order: -1; margin-bottom:12px; }
    .htd-section { padding:12px; }
    .container { max-width:95%; padding:20px; margin:20px auto; }
    h1 { font-size:28px; }
    p { font-size:16px; }
}

/* ======= CTA button ======= */
.btn {
    display:inline-block; width:220px; padding:14px; background: linear-gradient(45deg,#FF6B6B,#556BFF); color:white; font-size:18px; text-decoration:none; border-radius:50px; font-weight:bold; text-align:center; box-shadow:0px 4px 10px rgba(0,0,0,0.2); transition:all .3s; margin-top:20px; margin-bottom:30px;
}
.btn:hover { transform: scale(1.05); box-shadow:0px 6px 15px rgba(0,0,0,0.3); }

/* ======= Social section (preserved) ======= */
.social-section { text-align:center; margin:40px 0; }
.social-section h2 { font-size:32px; font-weight:bold; color:#02042B; margin-bottom:10px; }
.social-section p { font-size:18px; color:#444; margin-bottom:20px; }
.social-icons { display:flex; justify-content:center; gap:15px; flex-wrap:wrap; }
.social-icons a img { width:50px; height:50px; border-radius:10px; transition:transform .3s; }
.social-icons a img:hover { transform:scale(1.1); }
@media (max-width:1024px) { .social-section h2{font-size:28px;} .social-icons a img{width:45px;height:45px;} }
@media (max-width:768px) { .social-section h2{font-size:24px;} .social-icons a img{width:40px;height:40px;} }
@media (max-width:480px) { .social-section h2{font-size:20px;} .social-icons a img{width:35px;height:35px;} }

/* ======= Footer (preserved) ======= */
.custom-footer { background-color:#222; color:white; padding:30px 0; text-align:center; }
.custom-footer-container { display:flex; justify-content:space-around; flex-wrap:wrap; padding:20px; }
.custom-footer-section { max-width:300px; margin:10px; }
.custom-footer-logo { width:100px; height:auto; margin-bottom:10px; }
.custom-footer-heading { font-size:18px; margin-bottom:10px; font-weight:bold; }
.custom-footer-text { font-size:14px; color:#ccc; margin:5px 0; }
.custom-footer-links { list-style:none; padding:0; }
.custom-footer-links li { margin:5px 0; }
.custom-footer-links a { color:white; text-decoration:none; transition:color .3s; }
.custom-footer-links a:hover { color:#00aaff; }
.custom-footer-bottom { margin-top:20px; border-top:1px solid #555; padding-top:10px; font-size:14px; color:#aaa; }

/* ======= WhatsApp button & chat box ======= */
.whatsapp-button {
    position: fixed; bottom: 20px; right: 20px; background-color: #25D366; color:#ffffff; font-size:16px; padding:10px 20px; border-radius:50px; box-shadow:0 4px 6px rgba(0,0,0,0.1); text-decoration:none; display:flex; align-items:center; gap:10px; z-index:1000;
}
.whatsapp-button .fa-whatsapp { font-size:20px; }
.whatsapp-chat-box {
    position: fixed; bottom: 80px; right: 20px; width: 300px; background-color: #ffffff; border-radius:10px; box-shadow:0 4px 6px rgba(0,0,0,0.2); display:none; flex-direction:column; overflow:hidden; z-index:1001;
}
.whatsapp-chat-header { background-color:#25D366; color:#ffffff; padding:10px; display:flex; justify-content:space-between; align-items:center; }
.whatsapp-chat-header h4 { margin:0; font-size:16px; }
.whatsapp-chat-header .close-btn { cursor:pointer; font-size:18px; }
.whatsapp-chat-body { padding:10px; font-size:14px; line-height:1.6; color:#333; }
.whatsapp-chat-footer { text-align:center; padding:10px; background-color:#f1f1f1; }
.whatsapp-chat-footer a { background-color:#25D366; color:#ffffff; padding:10px 20px; border-radius:5px; text-decoration:none; }

/* Small polish */
a { color: inherit; }
button { font-family: inherit; }




.bjt-btn-download.outline{
  display:inline-block;
  padding:6px 10px;
  border-radius:8px;
  border:1.5px solid #0b5ed7;
  color:#0b5ed7;
  background:transparent;
  font-weight:700;
  text-decoration:none;
  font-size:0.88rem;
}
.bjt-btn-download.outline:hover{
  background:rgba(11,94,215,0.06);
}
.bjt-btn-download.solid{
  display:inline-block;
  padding:6px 10px;
  border-radius:8px;
  border:none;
  color:#fff;
  background:linear-gradient(90deg,#f59e0b,#0b5cff);
  font-weight:700;
  text-decoration:none;
  font-size:0.88rem;
  box-shadow:0 10px 30px rgba(11,92,255,0.12);
}