/* --- Global Styles & Variables --- */
:root {
    --color-primary: #F26522; /* MASA Orange */
    --color-secondary: #00AEEF; /* UniPod Blue */
    --color-dark: #333333;
    --color-light: #f7f7f7;
    --color-text: #555555;
    --font-family: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--color-text);
    line-height: 1.6;
    background-color: #fff;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    color: var(--color-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; font-weight: 800; }
h2 { font-size: 2.5rem; font-weight: 700; }
h3 { font-size: 1.5rem; }

p { margin-bottom: 1rem; }
a { color: var(--color-primary); text-decoration: none; }

/* --- Buttons --- */
.button {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
}

.button-primary {
    background-color: var(--color-primary);
    color: #fff;
    border: 2px solid var(--color-primary);
}

.button-primary:hover {
    background-color: #d85416;
    border-color: #d85416;
    transform: translateY(-2px);
}

.button-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    padding: 8px 20px;
}

.button-secondary:hover {
    background-color: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
}


/* --- Header --- */
.main-header {
    background: #f4f4f4;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main-header .logo img {
    width: auto;
    height: 101px;
}
.main-nav a { margin-left: 20px; font-weight: 700; color: var(--color-dark); }
.main-nav a:hover { color: var(--color-primary); }

/* --- Hero Section --- */
.hero-section {
    background: url('00.jpg') no-repeat center center/cover;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
}
.hero-content { position: relative; max-width: 800px; }
.hero-content h1, .hero-content p { color: #fff; }
.hero-content .hero-logo { width: 300px; margin-bottom: 1.5rem; }
.hero-content p { font-size: 1.2rem; margin: 1rem 0 2rem; }
.deadline-text { display: block; margin-top: 1rem; opacity: 0.8; }

/* --- General Section Styling --- */
.content-section, .benefits-section, .partners-section {
    padding: 80px 0;
}
.centered-title { text-align: center; margin-bottom: 3rem; }
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.image-content img { width: 100%; border-radius: 8px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

/* --- Benefits Section --- */
.benefits-section { background-color: var(--color-light); }
.benefits-layout-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 3rem;
}
.benefits-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.benefits-list { display: flex; flex-direction: column; gap: 2rem; }
.benefit-item { display: flex; align-items: flex-start; gap: 1.5rem; }
.benefit-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.benefit-icon svg { width: 28px; height: 28px; }
.benefit-text p { margin-bottom: 0; color: var(--color-text); }
.benefit-text h3 { margin-bottom: 0.5rem; }

/* --- ADDED: Info Session Recording Section --- */
.recording-section {
    background-color: #fffaf5; /* A very light orange to stand out */
    text-align: center;
}
.recording-section .container {
    max-width: 750px; /* Constrain width for readability */
}
.recording-icon {
    color: var(--color-primary);
    margin: 0 auto 1rem;
}
.recording-icon svg {
    width: 60px;
    height: 60px;
}
.recording-section h2 {
    margin-bottom: 1rem;
}
.recording-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--color-text);
}


/* --- Program Journey Section --- */
.key-dates-timeline {
    display: flex;
    justify-content: space-around;
    position: relative;
}
.key-dates-timeline::before { /* The connecting line */
    content: '';
    position: absolute;
    top: 12px; /* Vertically align with the center of the dot */
    left: 10%;
    width: 80%;
    height: 3px;
    background-color: var(--color-primary);
    z-index: 1; /* Place line below dots and text */
}
.timeline-item { 
    text-align: center; 
    position: relative; 
    z-index: 2; /* Place items above the line */
}
.timeline-dot {
    width: 28px;
    height: 28px;
    background-color: #fff;
    border: 4px solid var(--color-primary);
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    z-index: 3; /* Dot is on top of everything */
}
.timeline-item h4 { 
    font-size: 1rem;
    color: var(--color-text);
    background: #fff; /* Match section background to hide line */
    padding: 0 10px; /* Space around text */
    display: inline-block; /* Allow padding to work */
    margin-top: 0.75rem;
}
.timeline-item p { 
    font-size: 1.2rem; 
    font-weight: bold; 
    color: var(--color-dark); 
    margin-top: 0.25rem;
}

.monthly-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.month-card {
    background-color: var(--color-light);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--color-primary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.month-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}
.month-card h4 { margin-bottom: 0.75rem; color: var(--color-primary); }
.month-card p { font-size: 0.95rem; margin-bottom: 0.5rem; }
.month-card p strong { color: var(--color-dark); }
.month-card:nth-child(2) { border-color: var(--color-secondary); }
.month-card:nth-child(2) h4 { color: var(--color-secondary); }
.month-card:nth-child(3) { border-color: var(--color-primary); } /* Keep consistent */
.month-card:nth-child(3) h4 { color: var(--color-primary); }
.month-card:nth-child(4) { border-color: var(--color-secondary); } /* Alternate color */
.month-card:nth-child(4) h4 { color: var(--color-secondary); }


/* --- Apply & Timeline Section --- */
.apply-section { background: var(--color-light); } 
.apply-section ul { list-style-type: none; }
.apply-section ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 0.5rem;
}
.apply-section ul li::before {
    content: '✔';
    color: var(--color-primary);
    position: absolute;
    left: 0;
}
.apply-section .button-primary { margin-top: 1.5rem; } 


/* --- Partners Section --- */
.partners-section { background-color: #f7f7f7; } 
.logos-container { display: flex; justify-content: center; align-items: center; }
.logos-container img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease;
}
.logos-container img:hover { filter: grayscale(0%); opacity: 1; }

/* --- Footer --- */
.main-footer {
    background-color: var(--color-dark);
    color: #fff;
    padding: 60px 0 20px;
}
.main-footer a { color: #fff; opacity: 0.8; }
.main-footer a:hover { opacity: 1; text-decoration: underline; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 40px;
}
.footer-logo { width: 150px; margin-bottom: 1rem; }
.footer-grid h4 { color: #fff; margin-bottom: 1rem; }
.footer-nav a { display: block; margin-bottom: 0.5rem; }
.footer-contact p { margin-bottom: 1rem; }
.copyright {
    text-align: center;
    opacity: 0.6;
    font-size: 0.9rem;
    border-top: 1px solid #555;
    padding-top: 20px;
}

/* --- Animation --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.benefit-item.animate-on-scroll:nth-child(2) { transition-delay: 0.2s; }
.benefit-item.animate-on-scroll:nth-child(3) { transition-delay: 0.4s; }
.month-card.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.month-card.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.month-card.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }


/* --- Responsive Design --- */
@media (max-width: 992px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .benefits-layout-grid { grid-template-columns: 1fr; }
    .monthly-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .two-column { grid-template-columns: 1fr; }
    .hero-content .hero-logo { width: 250px; }
    .main-header .container { flex-direction: column; gap: 1rem;}
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
	.footer-logo-about { display: flex; flex-direction: column; align-items: center; }
    .apply-section .two-column .image-content { grid-row-start: 1; }

    /* Responsive Timeline */
    .key-dates-timeline { flex-direction: column; align-items: center; gap: 2.5rem; }
    .key-dates-timeline::before { display: none; }
    .timeline-item h4 { margin-top: 0.5rem; }
}