/* Reset */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins', sans-serif;
}

html{
scroll-behavior:smooth;
}

.container{
max-width:1200px;
margin:auto;
padding:0 20px;
}

/* Navbar */

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:3px 8%;
background:#20212284;
color:white;
position: fixed;
top:0;
width: 100%;
z-index:1000;
backdrop-filter: blur(10px);
}

.nav-links{
display:flex;
list-style:none;
}

.nav-links li{
margin-left:25px;
}

.nav-links a{
text-decoration:none;
color:rgb(200, 113, 26);
font-size:16px;
}

.nav-links a:hover{
color:#ffffff;
}

/* Mobile menu */

.menu-toggle{
display:none;
font-size:28px;
cursor:pointer;
}

@media(max-width:768px){

.nav-links{
position:absolute;
top:60px;
right:20px;
width:220px;
background:#000000;
flex-direction:column;
display:none;
padding:15px 0;
border-radius:12px; /* rounded corners */
box-shadow:0 10px 30px rgba(133, 68, 14, 0.416); /* card shadow */
backdrop-filter: blur(10px);
animation: fadeIn 0.3s ease;
}

.nav-links li{
margin:20px 0;
text-align:center;
}

.menu-toggle{
display:block;
}

.nav-links.active{
display:flex;
}

@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(-10px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

}

/* Hero Section */

.hero{
position:relative;
height:100vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
overflow:hidden;
padding:0 20px;
}

.hero-content{
max-width:700px;
}

.hero h1{
font-size:30px;
margin-bottom:20px;
color:rgba(245, 142, 39, 0.667);
}

.hero p{
font-size:18px;
margin-bottom:30px;
line-height:1.6;
}

.hero-buttons{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.btn-primary{
background:rgb(200, 113, 26);
color:white;
padding:12px 25px;
text-decoration:none;
border-radius:6px;
font-weight:bold;
transition:0.3s;
}

.btn-primary:hover{
background:rgb(255, 255, 255);
color: rgb(200, 113, 26);
}

.btn-secondary{
border:2px solid rgb(200, 113, 26);
color:#ca722a;
padding:12px 25px;
text-decoration:none;
border-radius:6px;
font-weight:bold;
transition:0.3s;
}

.btn-secondary:hover{
background:white;
color:rgb(200, 113, 26);
}

@media (max-width:768px){

.hero{
padding:0 50px;
}

.hero h1{
font-size:28px !important;
line-height:1.3;
}

.hero p{
font-size:15px;
}

.hero-buttons{
gap:12px;
}

}

/* Statistics Section */

.stats{
padding:60px 10%;

background:
url("../images/backgrounds/main-bg.jpg");

background-size:cover;
background-position:center;
background-attachment:fixed;
}

.stats-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:30px;
text-align:center;
}

.stat-box h2{
font-size:40px;
color:rgb(200, 113, 26);
margin-bottom:10px;
}

.stat-box p{
font-size:16px;
color:#bcb2b2d0;
}

/* Features Section */

.features{
padding:80px 0;
text-align:center;

background:
url("../images/backgrounds/main-bg.jpg");

background-size:cover;
background-position:center;
background-attachment:fixed;
}

.section-title{
font-size:36px;
margin-bottom:50px;
color:rgb(200, 113, 26);
font-weight:600;
letter-spacing:0.5px;
}

.features-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.feature-card{
background:rgb(40, 43, 43);
padding:30px;
border-radius:10px;
box-shadow:0 5px 15px rgb(200, 113, 26);
transition:opacity 0.6s ease, transform 0.6s ease;
}

.feature-card:hover{
transform:translateY(-10px);
box-shadow:0 15px 30px rgba(0,0,0,0.15);
}

.feature-card h3{
margin-bottom:15px;
color:rgb(255, 255, 255);
}

.feature-card p{
color:rgb(200, 113, 26);
line-height:1.6;
}

/* Courses Section */

.courses{
padding:80px 0;
text-align:center;

background:
url("../images/backgrounds/main-bg.jpg");

background-size:cover;
background-position:center;
background-attachment:fixed;
}

.courses-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
margin-top:40px;
}

.course-card{
background:rgb(40, 43, 43);
padding:30px;
border-radius:10px;
box-shadow:0 5px 15px rgb(200, 113, 26);
transition:opacity 0.6s ease, transform 0.6s ease;
}

.course-card:hover{
transform:translateY(-10px) scale(1.02);
box-shadow:0 15px 30px rgba(0,0,0,0.15);
}

.course-card h3{
margin-bottom:15px;
color:rgb(255, 255, 255);
}

.course-card p{
margin-bottom:20px;
color:rgb(200, 113, 26);
}

.course-btn{
display:inline-block;
padding:10px 20px;
background:#504747;
color:rgb(255, 255, 255);
text-decoration:none;
border-radius:6px;
font-weight:bold;
}

.course-btn:hover{
background:rgb(200, 113, 26);
}

/* Testimonials Section */

.testimonials{
padding:80px 0;
text-align:center;

background:
url("../images/backgrounds/main-bg.jpg");

background-size:cover;
background-position:center;
background-attachment:fixed;
}

.testimonials-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
margin-top:40px;
}

.testimonial-card{
background: rgb(40, 43, 43);
padding:30px;
border-radius:10px;
box-shadow:0 5px 15px rgb(200, 113, 26);
transition:opacity 0.6s ease, transform 0.6s ease;
}

.testimonial-card:hover{
transform:translateY(-8px);
}

.testimonial-card p{
font-style:italic;
color:#ffffff;
margin-bottom:20px;
}

.testimonial-card h4{
color:rgb(200, 113, 26);
}

/* Enquiry Section */

.enquiry{
padding:80px 0;
text-align:center;
color:white;

background:
linear-gradient(rgba(66, 79, 74, 0.313), rgba(106, 64, 24, 0.559)),
url("../images/backgrounds/main-bg.jpg");

background-size:cover;
background-position:center;
background-attachment:fixed;
}

.enquiry-container{
max-width:600px;
margin:auto;
margin-top:40px;
padding:0 20px;
}

.enquiry-form{
display:flex;
flex-direction:column;
gap:15px;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea{
padding:12px;
border:none;
border-radius:6px;
font-size:16px;
width:100%;
max-width:100%;
}

.enquiry-form textarea{
height:100px;
resize:none;
}

.enquiry-form button{
padding:12px;
background:rgb(200, 113, 26);
border:none;
border-radius:6px;
font-size:16px;
font-weight:bold;
cursor:pointer;
}

.enquiry-form button:hover{
background:rgb(200, 113, 26);
}

/* WhatsApp Button */

.whatsapp-btn{
    position:fixed;
    bottom:20px;
    right:20px;
    background:#25D366;
    color:white;
    font-size:28px;
    
    width:55px;
    height:55px;
    display:flex;
    align-items:center;
    justify-content:center;
    
    border-radius:50%;
    text-decoration:none;
    box-shadow:0 8px 20px rgba(0, 0, 0, 0.61);
    z-index:1000;
}

.whatsapp-btn:hover{
    transform:scale(1.1);
}

/* Footer */

.footer{
background:rgb(20, 21, 21);
color:rgb(200, 113, 26);
padding:60px 10% 20px;
}

.footer-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:40px;
margin-bottom:40px;
}

.footer h3{
margin-bottom:15px;
}

.footer p{
color:#ffffff;
line-height:1.6;
}

.footer-links ul{
list-style:none;
}

.footer-links li{
margin-bottom:10px;
}

.footer-links a{
text-decoration:none;
color:#ffffff;
}

.footer-links a:hover{
color:#bda146;
}

.footer-bottom{
    text-align:center;
    border-top:1px solid rgba(255,255,255,0.1);
    margin-top:40px;
    padding-top:15px;
    font-size:13px;
    color:#9ca3af;
}

.designed-by{
    margin-top:10px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;
}

.designed-by span{
    font-size:13px;
    color:#9ca3af;
}

.designed-by img{
    height:20px;
    width:auto;
    transition:0.3s;
}

.designed-by img:hover{
    transform:scale(1.1);
}

/*LOGO*/

.logo a{
text-decoration:none;
color:white;
font-size:22px;
font-weight:600;
}

/* Scroll Animation */

.feature-card,
.course-card,
.testimonial-card{
opacity:0;
transform:translateY(40px);
transition:all 0.6s ease;
}

.show{
opacity:1;
transform:translateY(0);
}

/* Page Hero */

.page-hero{
padding:70px 10%;
background:
linear-gradient(rgba(66, 79, 74, 0.158), rgba(106, 64, 24, 0.427)),
url("../images/backgrounds/page-hero.jpg");
text-align:center;
}

.page-hero h1{
font-size:25px;
color:rgba(243, 148, 46, 0.87);
margin-bottom:20px;
}

.page-hero p{
max-width:600px;
margin:auto;
color:rgb(255, 255, 255);
line-height:1.6;
}

/* Courses Page */

.courses-page{
padding:80px 0;
background:
url("../images/backgrounds/page-bg.jpg");
}

.courses-page ul{
margin:20px 0;
padding-left:20px;
}

.courses-page li{
margin-bottom:8px;
color:#ffffff;
}

/* Contact Page */

.contact-section{
padding:80px 0;
background:
url("../images/backgrounds/page-bg.jpg");
}

.contact-container{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
}

.contact-info h3{
margin-bottom:20px;
color:#ce7918;
}

.contact-info p{
margin-bottom:10px;
color:#ffffff;
}

.contact-form form{
display:flex;
flex-direction:column;
gap:15px;
}

.contact-form input,
.contact-form textarea{
padding:12px;
border-radius:6px;
border:1px solid #df8415;
font-size:16px;
}

.contact-form textarea{
height:120px;
resize:none;
}

.contact-form button{
padding:12px;
background:#f19034;
border:none;
border-radius:6px;
color:white;
font-weight:bold;
cursor:pointer;
}

.contact-form button:hover{
background:#0ea5e9;
}

/* Mobile */

@media(max-width:768px){

.contact-container{
grid-template-columns:1fr;
}

}

/* Testimonials Page */

.testimonials-page{
padding:80px 0;
background:
url("../images/backgrounds/page-bg.jpg");
text-align:center;
}

.testimonials-page .testimonials-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
margin-top:40px;
}

.testimonials-page .testimonial-card{
background:rgb(40, 43, 43);
padding:30px;
border-radius:10px;
box-shadow:0 15px 25px rgb(200, 113, 26);
transition:0.3s;
}

.testimonials-page .testimonial-card:hover{
transform:translateY(-8px);
}

.testimonials-page .testimonial-card p{
font-style:italic;
color:#ffffff;
margin-bottom:20px;
}

.testimonials-page .testimonial-card h4{
color:rgb(200, 113, 26);
}

/* Blog Page */

.blog-section{
padding:80px 0;
background:
url("../images/backgrounds/page-bg.jpg");
text-align:center;
}

.blog-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
margin-top:40px;
}

.blog-card{
background:rgba(16, 15, 15, 0.779);
padding:30px;
border-radius:10px;
box-shadow:0 5px 15px rgba(220, 110, 26, 0.452);
transition:0.3s;
text-align:left;
}

.blog-card:hover{
transform:translateY(-8px);
}

.blog-card h3{
margin-bottom:15px;
color:#df5b13;
}

.blog-card p{
margin-bottom:20px;
color:#ffffff;
}

.blog-card a{
text-decoration:none;
display:inline-block;
padding:10px 20px;
background:#c75b26;
color:white;
border-radius:6px;
font-weight:bold;
transition:0.3s;
}

.blog-card a:hover{
background:#9b3100;
}

/* Mobile */
@media(max-width:768px){
.blog-card{
text-align:center;
}
}

/* Founder Section */

.founder{
padding:80px 0;

background:
url("../images/backgrounds/main-bg.jpg");

background-size:cover;
background-position:center;
background-attachment:fixed;
}

.founder-container{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.founder-image img{
width:100%;
border-radius:10px;
box-shadow:0 10px 25px rgba(207, 107, 20, 0.486);
}

.founder-content h3{
font-size:35px;
margin:10px 0 20px;
color:#dd8520;
}

.founder-content h4{
color:#ffffff;
}

.founder-content p{
margin-bottom:15px;
color:#979595;
line-height:1.6;
}

/* Mobile */

@media(max-width:768px){

.founder-container{
grid-template-columns:1fr;
text-align:center;
}

/* Order control */

.founder-content h2{
order:1;
}

.founder-image{
order:2;
margin:20px 0;
}

.founder-content{
order:3;
}

}

/* Co Founder Section */

.cofounder{
padding:80px 0;

background:
url("../images/backgrounds/main-bg.jpg");

background-size:cover;
background-position:center;
background-attachment:fixed;
}

.cofounder-container{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.cofounder-image img{
width:100%;
border-radius:10px;
box-shadow:0 10px 25px rgba(207, 107, 20, 0.486);
}

.cofounder-content h3{
font-size:35px;
margin:10px 0 20px;
color:#dd8520;
}

.cofounder-content h4{
color:#ffffff;
}

.cofounder-content p{
margin-bottom:15px;
color:#979595;
line-height:1.6;
}

@media(max-width:768px){

.cofounder-container{
grid-template-columns:1fr;
text-align:center;
}

.cofounder-image{
order:1;
}

.cofounder-content{
order:2;
}

}

/* Hero Video Background */

.hero-video{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
z-index:-2;
}

.hero-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0, 0, 0, 0.881);
z-index:-1;
}

@media(max-width:768px){

section{
padding:60px 20px;
}

.section-title{
font-size:28px;
margin-bottom:30px;
}

.hero{
height:auto;
padding:120px 20px;
}

.hero h1{
font-size:32px;
}

.hero-buttons{
flex-direction:column;
gap:15px;
}

}

.logo img{
    height: 45px;   /* adjust as needed */
    width: auto;
    cursor: pointer;
    margin-left: -25px;
}

/* Blog Detail Page Background */

.blog-content{
padding:80px 0;

background:
url("../images/backgrounds/page-bg.jpg");

background-size:cover;
background-position:center;
background-attachment:fixed;
}

.blog-content h2{
color:rgb(200, 113, 26);
margin-bottom:10px;
}

.blog-content p{
color:#ffffff;
margin-bottom:20px;
line-height:1.6;
}