*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#0a0a0a;
    color:#ffffff;
    line-height:1.8;
}

a{
    text-decoration:none;
}

section{
    padding:60px 8%;
}

/* ================= NAVBAR ================= */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:rgba(10,10,10,0.95);
    backdrop-filter:blur(10px);
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:25px 8%;
    z-index:1000;
    border-bottom:1px solid rgba(212,175,55,0.1);
}

.logo{
    font-size:28px;
    font-weight:700;
    color:#D4AF37;
}

.logo i{
    margin-right:10px;
}

nav{
    display:flex;
    gap:30px;
}

nav a{
    color:#ffffff;
    font-weight:500;
    transition:0.3s;
}

nav a:hover{
    color:#D4AF37;
}

/* ================= HERO ================= */

.hero{
    min-height:100vh;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
    padding-top:150px;
}

.hero-left{
    flex:1;
}
.hero h1{
    max-width:650px;
    line-height:1.1;
}

.hero-badge{
    display:inline-block;
    background:rgba(212,175,55,0.15);
    color:#D4AF37;
    padding:10px 20px;
    border-radius:50px;
    margin-bottom:25px;
}

.hero h1{
    font-size:80px;
    line-height:1.15;
    max-width:700px;
}

.hero p{
     max-width:650px;
    color:#bdbdbd;
    margin-bottom:20px;
    font-size:18px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-top:40px;
}

.primary-btn{
    background:#D4AF37;
    color:#000;
    padding:15px 35px;
    border-radius:10px;
    font-weight:600;
}

.secondary-btn{
    border:2px solid #D4AF37;
    color:#D4AF37;
    padding:15px 35px;
    border-radius:10px;
}

.hero-right{
    flex:1;
    display:flex;
    justify-content:center;
}

.hero-right img{
    width:100%;
    max-width:750px;
    border-radius:30px;
    box-shadow:0 20px 50px rgba(0,0,0,0.5);
}
/* ================= TRUST BAR ================= */

.trust-bar{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:-50px;
}

.trust-item{
    background:#111;
    border:1px solid rgba(212,175,55,0.15);
    padding:40px 20px;
    border-radius:20px;
    text-align:center;
}

.trust-item h2{
    font-size:48px;
    color:#D4AF37;
    margin-bottom:10px;
}

.trust-item p{
    color:#bdbdbd;
}

/* ================= SECTION TITLE ================= */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#D4AF37;
    font-size:22px;
    letter-spacing:4px;
    font-weight:700;
}

.section-title h2{
    font-size:48px;
    margin-top:20px;
    margin-bottom:20px;
}

/* ================= ABOUT ================= */

.about-content{
    max-width:900px;
    margin:auto;
    text-align:center;
}

.about-content p{
    color:#bdbdbd;
    margin-bottom:25px;
    font-size:18px;
}

/* ================= FEATURE CARDS ================= */

.feature-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.feature-card{
    background:#111;
    border:1px solid rgba(212,175,55,0.15);
    border-radius:20px;
    padding:40px 30px;
    transition:0.3s;
}

.feature-card:hover{
    transform:translateY(-10px);
    border-color:#D4AF37;
}

.feature-card i{
    font-size:45px;
    color:#D4AF37;
    margin-bottom:25px;
}

.feature-card h3{
    margin-bottom:20px;
    font-size:24px;
}

.feature-card p{
    color:#bdbdbd;
}

/* ================= PROGRAMS ================= */

.program-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.program-card{
    background:#111;
    border-radius:20px;
    padding:40px 30px;
    border:1px solid rgba(212,175,55,0.15);
}

.program-card h3{
    color:#D4AF37;
    margin-bottom:20px;
    font-size:24px;
}

.program-card p{
    color:#bdbdbd;
}

/* ================= LEARNING PROCESS ================= */

.process-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:20px;
}

.process-step{
    background:#111;
    padding:35px 20px;
    border-radius:20px;
    text-align:center;
    border:1px solid rgba(212,175,55,0.15);
}

.process-step i{
    font-size:40px;
    color:#D4AF37;
    margin-bottom:20px;
}

.process-step h3{
    font-size:18px;
}/* ================= FACULTY ================= */

.faculty-content{
    max-width:900px;
    margin:auto;
    text-align:center;
}

.faculty-content p{
    color:#bdbdbd;
    font-size:18px;
    margin-bottom:25px;
}

/* ================= RESULTS ================= */

.results-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.result-card{
    background:#111;
    border:1px solid rgba(212,175,55,0.15);
    border-radius:20px;
    padding:50px 20px;
    text-align:center;
}

.result-card h3{
    font-size:60px;
    color:#D4AF37;
    margin-bottom:10px;
}

.result-card p{
    color:#bdbdbd;
}

/* ================= TESTIMONIALS ================= */

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.testimonial-card{
    background:#111;
    border:1px solid rgba(212,175,55,0.15);
    padding:35px;
    border-radius:20px;
}

.testimonial-card p{
    color:#bdbdbd;
    font-style:italic;
}

/* ================= FAQ ================= */

.faq-item{
    background:#111;
    border:1px solid rgba(212,175,55,0.15);
    padding:30px;
    border-radius:20px;
    margin-bottom:20px;
}

.faq-item h3{
    color:#D4AF37;
    margin-bottom:15px;
}

.faq-item p{
    color:#bdbdbd;
}

/* ================= CTA ================= */

.cta-section{
    text-align:center;
    background:linear-gradient(
        135deg,
        rgba(212,175,55,0.08),
        rgba(212,175,55,0.02)
    );
    border-radius:30px;
}

.cta-section h2{
    font-size:56px;
    margin-bottom:25px;
}

.cta-section p{
    max-width:700px;
    margin:auto;
    color:#bdbdbd;
    margin-bottom:40px;
}

/* ================= CONTACT ================= */

.contact{
    text-align:center;
}

.contact p{
    color:#bdbdbd;
    margin-bottom:15px;
    font-size:18px;
}

/* ================= FOOTER ================= */

footer{
    padding:40px;
    text-align:center;
    border-top:1px solid rgba(212,175,55,0.1);
    color:#bdbdbd;
}

/* ================= MOBILE ================= */

@media(max-width:992px){

.hero{
    flex-direction:column;
}

.hero h1{
    font-size:52px;
}

.feature-grid,
.program-grid,
.results-grid,
.testimonial-grid{
    grid-template-columns:1fr 1fr;
}

.process-grid{
    grid-template-columns:repeat(3,1fr);
}

.trust-bar{
    grid-template-columns:1fr 1fr;
}

}

@media(max-width:768px){

nav{
    display:none;
}

.hero h1{
    font-size:40px;
}

.section-title h2{
    font-size:36px;
}

.feature-grid,
.program-grid,
.results-grid,
.testimonial-grid,
.process-grid,
.trust-bar{
    grid-template-columns:1fr;
}

.cta-section h2{
    font-size:40px;
}

}.feature-card:hover,
.program-card:hover,
.result-card:hover,
.testimonial-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(212,175,55,0.2);
    transition: 0.3s;
}.about-container{
    display:flex;
    align-items:center;
    gap:60px;
}

.about-image{
    flex:1;
}

.about-image img{
    max-width:500px;
    height:200%;
    border-radius:25px;
    box-shadow:0 20px 50px rgba(0,0,0,0.4);
}
.about-content{
    flex:1;
}.about-features{
    margin-top:30px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}

.about-features div{
    color:#D4AF37;
    font-weight:600;
    font-size:18px;
}