body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: white;
    color: black;
    text-align: center;
}

.container {
    padding: 100px 20px;
}

.quote {
    font-size: 26px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.academy {
    font-size: 24px;
    font-weight: bold;
    color: purple;
    text-decoration: underline;
}

.tagline {
    font-size: 18px;
    color: purple;
    margin-top: 8px;
}

/* Navigation Tabs */
.tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.tab {
    padding: 10px 20px;
    background: purple;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
}

.tab:hover {
    background: #6a0dad;
}

.content-box {
    max-width: 900px;
    margin: 20px auto;
    text-align: left;
    line-height: 1.6;
    font-size: 18px;
}

/* Colors */
.blue { color: #4285F4; }
.red { color: #DB4437; }
.yellow { color: #F4B400; }
.green { color: #0F9D58; }

/* Social icons */
.social-links {
    margin-top: 30px;
}

.social-links a {
    text-decoration: none;
    margin: 0 12px;
    font-size: 22px;
    color: purple;
    font-weight: bold;
}

.social-links a:hover {
    color: #6a0dad;
}
/* ===== HEADER ===== */
.header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 15px;
    border-bottom: 2px solid purple;
    background: #faf7ff;
}

.logo {
    width: 70px;
    height: 70px;
}

.header-text {
    text-align: left;
}

.site-title {
    font-size: 28px;
    font-weight: bold;
    color: purple;
}

.site-tagline {
    font-size: 14px;
    color: purple;
}

/* ===== FOOTER ===== */
.footer {
    margin-top: 40px;
    padding: 15px;
    background: purple;
    color: white;
    font-size: 14px;
}

/* Mobile */
@media (max-width:768px){
    .header{
        flex-direction: column;
        text-align:center;
    }
    .header-text{
        text-align:center;
    }
}

/* ===== COURSES SECTION ===== */
.courses-section{
    padding:40px 20px;
    text-align:center;
}

.course-title{
    font-size:28px;
    margin-bottom:30px;
}

/* container */
.course-container{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

/* card */
.course-card{
    width:280px;
    background:white;
    border-radius:10px;
    box-shadow:0 4px 12px rgba(0,0,0,0.15);
    padding:15px;
    transition:0.3s;
}

.course-card:hover{
    transform:translateY(-8px);
}

/* image */
.course-card img{
    width:100%;
    height:300px;
    object-fit:cover;
    border-radius:8px;
}

/* title */
.course-card h3{
    margin:15px 0;
    font-size:20px;
}

/* PURPLE BUTTON */
.course-btn{
    display:inline-block;
    background:purple;
    color:white;
    padding:10px 18px;
    border-radius:6px;
    text-decoration:none;
    font-weight:bold;
    transition:0.3s;
}

.course-btn:hover{
    background:#5e0b87;
}
.founder-container{
    display:flex;
    align-items:center;
    gap:30px;
    margin-top:20px;
}

.founder-img{
    width:220px;
    border-radius:10px;
    box-shadow:0px 0px 10px gray;
}

@media screen and (max-width:768px){
    .founder-container{
        flex-direction:column;
        text-align:center;
    }

    .founder-img{
        width:180px;
    }
}
.download-btn
{
display:inline-block;
    background:purple;
    color:white;
    padding:10px 18px;
    border-radius:6px;
    text-decoration:none;
    font-weight:bold;
    transition:0.3s;
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width:768px){

.container{
padding:40px 15px;
}

.quote{
font-size:18px;
}

.academy{
font-size:20px;
}

.tagline{
font-size:16px;
}

/* tabs */
.tabs{
flex-direction:column;
gap:10px;
}

.tab{
width:100%;
}

/* header */
.header{
flex-direction:column;
text-align:center;
}

.header-text{
text-align:center;
}

.site-title{
font-size:22px;
}

.site-tagline{
font-size:13px;
}

.logo{
width:60px;
height:60px;
}

/* social */
.social-links a{
font-size:20px;
}

/* footer */
.footer{
font-size:12px;
padding:10px;
}

/* course cards */
.course-container{
flex-direction:column;
align-items:center;
}

.course-card{
width:95%;
}

/* founder */
.founder-container{
flex-direction:column;
text-align:center;
}

.founder-img{
width:180px;
}

}

