*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    margin:0;
    font-family:Arial, Helvetica, sans-serif;

    background-image:
        linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
        url("image/home.jpg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    background-attachment:fixed;

    color:white;
}

header{
    background:#101316;
    color:white;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 60px;
}

nav ul{
    list-style:none;
    display:flex;
}

nav ul li{
    margin-left:30px;
}

nav ul li a{
    color:white;
    text-decoration:none;
    font-weight:bold;
}

nav ul li a:hover{
    color:#ffd700;
}

.hero{
    text-align:center;
    padding:100px 20px;
    background:linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.6)),
    url("image/home.jpg");
    background-size:cover;
    background-position:center;
    color:white;
}

.hero h1{
    font-size:48px;
    margin-bottom:20px;
}

.hero p{
    max-width:800px;
    margin:auto;
    line-height:1.8;
}

.button{
    display:inline-block;
    margin-top:30px;
    padding:15px 35px;
    background:#ffd700;
    color:#003366;
    text-decoration:none;
    border-radius:5px;
    font-weight:bold;
}

.button:hover{
    background:white;
}

.services{
    padding:60px;
    text-align:center;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin-top:40px;
}

.card{
    background:rgba(9, 9, 9, 0.899);
    padding:30px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
}

.card:hover{
    transform:translateY(-8px);
    transition:.3s;
}

.page{
    padding:80px;
    text-align:center;
}

.page p{
    margin-top:20px;
    line-height:1.8;
}

footer{
    background:#003366;
    color:rgb(12, 10, 10);
    text-align:center;
    padding:20px;
    margin-top:40px;
}
.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo img{
    width:70px;
    height:70px;
    object-fit:cover;
    border-radius:50%;   /* Remove this line if you want a square logo */
}

.logo h2{
    color:white;
    font-size:26px;
}
.hero,
.services,
.page,
.contact,
footer{
    background:rgba(226, 209, 22, 0.65);
    border-radius:15px;
    margin:30px;
    padding:40px;
}
.gallery{
    padding:80px 10%;
    text-align:center;
}

.gallery h2{
    font-size:38px;
    color:#090908f3;
    margin-bottom:50px;
}

.gallery-container{
    display:flex;
    flex-direction:column;
    gap:40px;
}

.gallery-card{
    display:flex;
    align-items:center;
    background:rgba(255,255,255,0.95);
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
}

.gallery-card img{
    width:45%;
    height:350px;
    object-fit:cover;
}

.gallery-text{
    width:55%;
    padding:40px;
    text-align:left;
}

.gallery-text h3{
    color:#131311ec;
    margin-bottom:20px;
    font-size:30px;
}

.gallery-text p{
    color:#333;
    line-height:1.8;
    font-size:18px;
}

.gallery-card:nth-child(even){
    flex-direction:row-reverse;
}

@media(max-width:900px){

.gallery-card,
.gallery-card:nth-child(even){
    flex-direction:column;
}

.gallery-card img,
.gallery-text{
    width:100%;
}

.gallery-card img{
    height:250px;
}

.gallery-text{
    text-align:center;
}

}
.about-us{
    width:90%;
    margin:auto;
    padding:60px 0;
}

.about-us h1{
    text-align:center;
    font-size:42px;
    color:#f4b400;
    margin-bottom:20px;
}

.intro{
    text-align:center;
    font-size:18px;
    max-width:900px;
    margin:0 auto 50px;
    line-height:1.8;
    color:white;
}

.about-card{
    display:flex;
    align-items:center;
    gap:40px;
    margin-bottom:60px;
    background:rgba(255,255,255,0.95);
    padding:25px;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,.2);
}

.about-card.reverse{
    flex-direction:row-reverse;
}

.about-card img{
    width:45%;
    height:320px;
    object-fit:cover;
    border-radius:10px;
}

.about-text{
    width:55%;
}

.about-text h2{
    color:#d98c00;
    margin-bottom:15px;
    font-size:30px;
}

.about-text p{
    color:#333;
    line-height:1.8;
    font-size:17px;
}

@media(max-width:768px){

.about-card,
.about-card.reverse{
    flex-direction:column;
}

.about-card img,
.about-text{
    width:100%;
}

.about-text{
    text-align:center;
}

}
.contact-page{
    padding:60px 8%;
    text-align:center;
}

.contact-page h1{
    font-size:42px;
    color:#f4b400;
    margin-bottom:20px;
}

.contact-container{
    display:flex;
    gap:40px;
    margin-top:40px;
    flex-wrap:wrap;
}

.contact-info{
    flex:1;
    min-width:300px;
    background:rgba(255,255,255,0.95);
    padding:30px;
    border-radius:15px;
    color:#333;
    text-align:left;
    box-shadow:0 8px 20px rgba(0,0,0,.2);
}

.contact-info h2{
    color:#d98c00;
    margin-bottom:20px;
}

.contact-info p{
    margin-bottom:15px;
    line-height:1.7;
}

.map{
    flex:1;
    min-width:300px;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,.2);
}

.map iframe{
    width:100%;
    height:450px;
}
.contact-page{
    padding:70px 8%;
    text-align:center;
}

.contact-page h1{
    font-size:42px;
    color:#f4b400;
    margin-bottom:15px;
}

.contact-container{
    display:flex;
    justify-content:space-between;
    gap:40px;
    margin-top:40px;
    flex-wrap:wrap;
}

.contact-info{
    flex:1;
    min-width:320px;
    background:rgba(255,255,255,0.95);
    padding:30px;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,0.2);
    text-align:left;
    color:#333;
}

.contact-info h2{
    color:#d98c00;
    margin-bottom:20px;
}

.contact-info h3{
    margin-top:20px;
    color:#003366;
}

.contact-info p{
    line-height:1.8;
    margin-bottom:12px;
}

.map{
    flex:1;
    min-width:320px;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,0.2);
}

.map iframe{
    width:100%;
    height:450px;
    border:0;
}
.contact-page{
    width:90%;
    margin:auto;
    padding:70px 0;
    text-align:center;
}

.contact-page h1{
    font-size:42px;
    color:#f4b400;
    margin-bottom:15px;
}

.contact-page p{
    font-size:18px;
}

.contact-container{
    display:flex;
    gap:40px;
    margin-top:40px;
    flex-wrap:wrap;
}

.contact-info{
    flex:1;
    min-width:320px;
    background:#ffffff;
    color:#333;
    padding:30px;
    border-radius:15px;
    box-shadow:0 10px 20px rgba(0,0,0,.2);
    text-align:left;
}

.contact-info h2{
    color:#d98c00;
    margin-bottom:20px;
}

.contact-info h3{
    margin-top:25px;
    color:#333;
}

.contact-info p{
    line-height:1.8;
    margin-bottom:15px;
}

.map{
    flex:1;
    min-width:320px;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 20px rgba(0,0,0,.2);
}

.map iframe{
    width:100%;
    height:450px;
}

@media(max-width:768px){

.contact-container{
    flex-direction:column;
}

}
.computer-lessons{
    background:#ffffff;
    margin:60px auto;
    width:90%;
    padding:50px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.2);
}

.lesson-content h2{
    color:#f4b400;
    font-size:38px;
    margin-bottom:20px;
}

.lesson-content h3{
    color:#333;
    margin-top:25px;
}

.lesson-content p{
    color:#555;
    line-height:1.8;
    font-size:18px;
}

.lesson-content ul{
    margin-top:20px;
    line-height:2;
    font-size:18px;
    color:#333;
}

.lesson-content .button{
    display:inline-block;
    margin-top:30px;
    padding:12px 30px;
    background:#f4b400;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    font-weight:bold;
}

.lesson-content .button:hover{
    background:#d98c00;
}