/* Reset & Box Sizing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}
/* Navbar */
.navbar-custom {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 10px 40px !important;
    border: 1px solid #ddd !important;
    border-radius: 50px !important;
    margin: 20px auto !important;
    width: 90% !important;
    background-color: white !important;
    height: 72px !important;
}

/* Logo */
.brand-img {
    height: 45px !important;
    width: auto !important;
}

/* Nav Links */
.nav-links {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 30px !important;
    list-style: none !important;
    height: 100% !important;
    transform: translateY(2px) !important;
    padding-left: 0 !important;
    margin: 0 !important;
}

.nav-links li a {
    text-decoration: none !important;
    color: #333 !important;
    font-size: 17px !important;
    font-weight: 700 !important; /* ganti 600 jadi 700 */
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
    transition: 0.3s ease !important;
}


.nav-links li a:hover {
    color: #8b0000 !important;
    transform: translateY(-2px) !important;
}

/* Nav Auth */
.nav-auth {
    display: flex !important;
    align-items: center !important;
}

.btn-nav {
    border-radius: 20px !important;
    border: 1px solid #333 !important;
    background: #fff !important;
    padding: 6px 16px !important;
    margin-left: 8px !important;
    cursor: pointer !important;
    text-decoration: none !important;
    color: #333 !important;
    display: inline-flex !important;
    align-items: center !important;
    transition: 0.3s !important;
}

.btn-nav:hover {
    background: #333 !important;
    color: #fff !important;
}


/* Hero */
.hero {
    text-align: center;
    padding: 100px 20px;
    background-image: url('EnglishNestBG.png');
    background-size: cover;
    background-position: center;
    min-height: 550px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.btn-pill {
    padding: 10px 45px;
    border-radius: 50px;
    border: 1px solid #333;
    background: #fff;
    margin: 5px;
    cursor: pointer;
}

.why-section {
    padding: 80px 10%;
    text-align: center;
    background: #f9f9f9;
}

.why-desc {
    max-width: 700px;
    margin: 0 auto 40px;
    color: #555;
    line-height: 1.6;
}

.why-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.why-card {
    width: 260px;
    padding: 25px;
    border-radius: 15px;
    background: white;
    border: 1px solid #eee;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #f7f7f7;
  color: #222;
}

/* ===== Statistics Card ===== */
.stats-wrapper {
  padding: 40px 20px;
}

.stats-card {
  max-width: 1200px;
  margin: auto;
  background: #fff;
  border-radius: 20px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  overflow: hidden;
}

.stat {
  padding: 30px 20px;
  text-align: center;
  border-right: 1px solid #eee;
}

.stat:last-child {
  border-right: none;
}

.stat h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
}

.stat p {
  font-size: 14px;
  color: #555;
  line-height: 1.4;
}

.note {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #888;
}


@import url('https://fonts.googleapis.com/css2?family=Segoe+UI:wght@300;400;600&family=Open+Sans:wght@300;400;600&display=swap');

LEARNING MATERIALS SECTION (GAMBAR SAMPING TEKS)
   ========================================= */
.learning-section {
    padding: 80px 0;
    background-color: #fff;
    overflow: hidden;
}

.learning-section-container {
    display: flex;
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    align-items: center;
    gap: 50px;
}

.learning-image-wrapper {
    flex: 1.2;
    position: relative;
    max-width: 50%; /* Mencegah gambar terlalu besar */
}

.main-image {
    width: 100%;
    height: 500px; /* Tinggi gambar agar terlihat pas */
    object-fit: cover;
    border-bottom-right-radius: 200px; /* Efek melengkung khas */
    display: block;
    box-shadow: 10px 10px 30px rgba(0,0,0,0.05);
}

.learning-text-content {
    flex: 1;
}

.main-title {
    font-size: 3.2rem;
    font-weight: 300;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.1;
}

.green-underline {
    position: relative;
    text-decoration: none;
    border-bottom: 4px solid #a4d4ec; 
    padding-bottom: 2px;
}

.bold-text {
    font-size: 1.15rem;
    font-weight: 600;
    color: #222;
    line-height: 1.5;
    margin-bottom: 20px;
}

.normal-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.outline-button {
    display: inline-block;
    padding: 12px 35px;
    border: 1.5px solid #a4d4ec;
    color: #333;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease-in-out;
}

.outline-button:hover {
    background-color: #a4d4ec;
    color: #fff;
}

/* ========================================= */

/* Responsif Mobile */
@media (max-width: 992px) {
    .career-container {
        flex-direction: column;
        text-align: center;
        width: 90%;
    }

    .main-image {
        height: 350px;
        border-bottom-right-radius: 100px;
    }

    .main-title {
        font-size: 2.5rem;
    }
}

/* ===== Quote Section ===== */
.quote-section {
  background: #fff;
  text-align: center;
  padding: 80px 20px;
}

.quote-icon {
  font-size: 48px;
  color: #a4d4ec;
  margin-bottom: 20px;
}

.quote-section h1 {
  font-size: 36px;
  font-weight: 400;
  line-height: 1.4;
  max-width: 900px;
  margin: 0 auto 30px;
}

.underline {
  width: 80px;
  height: 4px;
  background: #a4d4ec; 
  margin: 0 auto 25px;
}

.cta {
  font-size: 16px;
  color: #333;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .stats-card {
    grid-template-columns: 1fr 1fr;
  }

  .stat {
    border-right: none;
    border-bottom: 1px solid #eee;
  }

  .stat:last-child {
    border-bottom: none;
  }

  .quote-section h1 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .stats-card {
    grid-template-columns: 1fr;
  }
}

.process-section {
    padding: 70px 10%;
    text-align: center;
}

.process-steps {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
}

.process-steps div {
    padding: 15px 25px;
    border: 1px solid #ddd;
    border-radius: 30px;
}

.learning-process {
    padding: 100px 10%;
    background: linear-gradient(to bottom, #f9f9f9, #ffffff);
    text-align: center;
}

.process-intro {
    max-width: 700px;
    margin: 0 auto 70px;
    color: #555;
    line-height: 1.7;
}

/* Timeline */
.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 50px;
    position: relative;
}

/* Card */
.process-card {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 900px;
}

.process-card.left {
    align-self: flex-start;
}

.process-card.right {
    align-self: flex-end;
    flex-direction: row-reverse;
}

/* Number */
.step-number {
    font-size: 3.2rem;
    font-weight: 800;
    color: #a4d4ec;
    opacity: 0.9;
    min-width: 90px;
}

/* Content */
.process-content {
    background: white;
    padding: 30px 35px;
    border-radius: 18px;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: left;
}

.process-content h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.process-content p {
    color: #555;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .process-card,
    .process-card.right {
        flex-direction: column;
        align-self: center;
        text-align: center;
    }

    .process-content {
        text-align: center;
    }
}

/* CLEAN TESTIMONIAL */
.testimonial-clean {
    position: relative;
    padding: 160px 15% 200px;
    text-align: center;
    background: #fff;
}

.quote-icon {
    font-size: 90px;
    color: #a4d4ec;
    margin-bottom: 30px;
}

.quote {
    font-size: 1.4rem;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 40px;
    color: #333;
    font-style: italic;
}

.name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.role {
    font-size: 0.95rem;
    color: #666;
}

/* NAV ARROWS */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 36px;
    color: #a4d4ec;
    cursor: pointer;
    transition: 0.3s;
}

.nav-arrow:hover {
    transform: translateY(-50%) scale(1.2);
}

.nav-arrow.left {
    left: 8%;
}

.nav-arrow.right {
    right: 8%;
}

/* Footer */
.footer {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding: 60px 10%;
    border-top: 1px solid #eee;
    background: #fff;
}

.footer-brand {
    width: 35%;
}

.footer-brand p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.link-column h5 {
    margin-bottom: 20px;
    font-size: 1rem;
    font-weight: bold;
}

.link-column a {
    display: block;
    text-decoration: none;
    color: #555;
    font-size: 0.9rem;
    margin-bottom: 8px;
    transition: 0.2s;
}

.link-column a:hover {
    text-decoration: underline;
    color: #000;
}

/* Responsive Footer */
@media (max-width: 900px) {
    .footer {
        flex-direction: column;
        gap: 40px;
    }

    .footer-brand {
        width: 100%;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 30px;
    }
}


/* Modal */
.custom-modal {
    border-radius: 30px !important;
}

/* FIX TIMELINE ALIGNMENT */
.process-timeline {
    align-items: center;
}

/* Card width control */
.process-card {
    width: 100%;
    max-width: 900px;
    padding: 0 40px;
}

/* Left & Right spacing */
.process-card.left {
    margin-right: auto;
}

.process-card.right {
    margin-left: auto;
}
