/* =====================================================
AARAL ACADEMY — CLEAN CONTENT STYLESHEET (NO HEADER/NAV)
===================================================== */

/* ===== RESET ===== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    }
    
    :root{
    --primary:#1e3a8a;
    --secondary:#2563eb;
    --accent:#f59e0b;
    --light:#f8fafc;
    --dark:#111827;
    --text:#333;
    }
    
    body{
    font-family:'Poppins',sans-serif;
    color:var(--text);
    line-height:1.6;
    background:#fff;
    }
    
    /* ===== CONTAINER ===== */
    .container {
    max-width: 1600px;
    margin:auto;
    padding:0 20px;
    }
    
    /* =====================================================
    COMMON SECTIONS
    ===================================================== */
    section{
    padding:60px 0;
    }
    
    .section-title{
    text-align:center;
    font-size:32px;
    color:var(--primary);
    margin-bottom:20px;
    }
    
    .section-subtitle{
    text-align:center;
    color:#666;
    margin-bottom:40px;
    }
    
    /* ============================
    SYLLABUS PAGE
    ============================ */
    .syllabus-section {
    padding:60px 0;
    }
    
    .syllabus-card {
    background:#fff;
    padding:35px;
    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    border-left:5px solid var(--accent);
    }
    
    .syllabus-card h1.page-title{
    font-size:32px;
    color:var(--primary);
    text-align:center;
    margin-bottom:10px;
    }
    
    .page-subtitle{
    text-align:center;
    color:#666;
    margin-bottom:30px;
    }
    
    .syllabus-card h2{
    font-size:26px;
    color:var(--primary);
    margin-bottom:20px;
    }
    
    .syllabus-details h3{
    font-size:20px;
    color:var(--secondary);
    margin-top:25px;
    margin-bottom:10px;
    }
    
    .syllabus-details ul{
    list-style:none;
    padding:0;
    }
    
    .syllabus-details ul li{
    padding:10px 12px;
    margin-bottom:8px;
    background:#f5f7fb;
    border-radius:6px;
    }
    
    .syllabus-details ul li::before{
    content:"✔ ";
    color:var(--accent);
    font-weight:bold;
    }
    
    /* =====================================================
    GROUP 4 PAGE
    ===================================================== */
    .group4-section{
    background:var(--light);
    margin-top:200px;
    }
    
    .group4-card{
    background:#fff;
    padding:40px;
    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    text-align:center;
    max-width:700px;
    margin:auto;
    }
    
    .group4-details{
    text-align:left;
    margin-bottom:25px;
    }
    
    .group4-details h3{
    color:var(--primary);
    margin-bottom:10px;
    }
    
    .group4-details ul{
    padding-left:20px;
    }
    
    .group4-details li{
    margin-bottom:8px;
    }
    
    .apply-btn{
    display:inline-block;
    background:var(--secondary);
    color:#fff;
    padding:12px 25px;
    border-radius:6px;
    text-decoration:none;
    font-weight:600;
    }
    
    .apply-btn:hover{
    background:var(--primary);
    }
    
    /* =====================================================
    ABOUT PAGE
    ===================================================== */
    .about{
    max-width:900px;
    margin:auto;
    text-align:center;
    margin-top:150px;
    padding:80px 20px;
    }
    
    .section-title::after{
    content:"";
    width:70px;
    height:4px;
    background:var(--accent);
    display:block;
    margin:12px auto 0;
    border-radius:3px;
    }
    
    .about-content p{
    font-size:16px;
    color:#555;
    line-height:1.9;
    margin-bottom:22px;
    }
    
    /* =====================================================
    FOOTER
    ===================================================== */
    .footer{
    background:var(--dark);
    color:#ccc;
    padding:50px 0 20px;
    }
    
    .footer-content{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:30px;
    margin-bottom:30px;
    }
    
    .footer-section h3{
    color:var(--accent);
    margin-bottom:15px;
    }
    
    .footer-section a{
    color:#ccc;
    text-decoration:none;
    }
    
    .footer-section a:hover
    
    .footer-bottom{
    text-align:center;
    border-top:1px solid rgba(255,255,255,0.1);
    padding-top:15px;
    font-size:14px;
    }
    /* ===== GLOBAL RESPONSIVE FIXES ===== */

/* prevent horizontal scrolling */
html, body{
    overflow-x:hidden;
}

/* responsive images */
img{
    max-width:100%;
    height:auto;
}

/* responsive videos/iframes */
iframe, video{
    max-width:100%;
}

/* flexible layout helpers */
.row, .cards, .grid{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
}

/* make columns flexible */
.col, .card{
    flex:1 1 300px;
}

/* fix long text breaking layout */
p, h1, h2, h3, h4, h5, h6{
    word-wrap:break-word;
}

/* ===== MOBILE RESPONSIVE ===== */

@media (max-width:768px){

/* stack layouts vertically */
.row, .cards, .grid{
    flex-direction:column;
}

/* full width elements */
.card, .box, .content{
    width:100% !important;
}

/* reduce padding */
.container, .content, section{
    padding-left:15px;
    padding-right:15px;
}

/* smaller headings */
h1{
    font-size:24px;
}

h2{
    font-size:20px;
}

h3{
    font-size:18px;
}

}