body{
font-family:'Inter',sans-serif;
margin:0;
background:#f8fafc;
color:#111827;
line-height:1.6;
}

.container{
width:92%;
max-width:1500px;
margin:auto;
}

.center{text-align:center}

/* HEADER */


.header{
position:fixed;
width:100%;
padding:8px 0;
background:rgb(255, 255, 255);
box-shadow:0 5px 20px rgba(0,0,0,.05);
z-index:1000;
}


/* NAV WRAPPER */
.nav{
display:flex;
justify-content:space-between;
align-items:center;
position:relative;
}

/* LOGO IMAGE */
.logo img{
height:55px;
width:auto;
display:block;
}

/* NAV LINKS */
nav{
display:flex;
align-items:center;
}

nav a{
margin-left:28px;
text-decoration:none;
color:#0f172a;
font-weight:500;
position:relative;
font-size:15px;
}

/* ACTIVE */
nav a.active{
color:#2563eb;
}

/* HOVER UNDERLINE */
nav a::after{
content:"";
position:absolute;
bottom:-6px;
left:0;
width:0;
height:2px;
background:#2563eb;
transition:.3s;
}

nav a:hover::after{
width:100%;
}

/* MENU ICON */
.menu-toggle{
display:none;
font-size:26px;
cursor:pointer;
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media(max-width:1024px){
nav a{
margin-left:20px;
font-size:14px;
}
}

/* MOBILE */
@media(max-width:768px){

/* show menu */
.menu-toggle{
display:block;
}

/* dropdown nav */
nav{
position:absolute;
top:70px;
right:0;
width:100%;
background:white;
flex-direction:column;
align-items:center;
padding:20px 0;
gap:20px;

opacity:0;
pointer-events:none;
transform:translateY(-10px);
transition:.3s ease;
}

/* active state */
nav.active{
opacity:1;
pointer-events:auto;
transform:translateY(0);
}

/* links reset */
nav a{
margin:0;
font-size:16px;
}
}


/* DROPDOWN WRAPPER */
.dropdown{
position:relative;
}

/* BUTTON */
.drop-btn{
cursor:pointer;
}

/* MENU */
.dropdown-menu{
position:absolute;
top:30px;
left:0;
background:white;
border-radius:10px;
box-shadow:0 20px 50px rgba(0,0,0,.12);
padding:10px 0;
min-width:220px;

opacity:0;
pointer-events:none;
transform:translateY(10px);
transition:.3s ease;
z-index:999;
}

/* ITEMS */
.dropdown-menu a{
display:flex;
align-items:center;
gap:10px;
padding:12px 18px;
color:#0f172a;
font-size:14px;
text-decoration:none;
margin:0;
}

/* ICON */
.dropdown-menu a span{
font-size:16px;
}

/* HOVER */
.dropdown-menu a:hover{
background:#f1f5f9;
}

/* SHOW ON HOVER (DESKTOP) */
.dropdown:hover .dropdown-menu{
opacity:1;
pointer-events:auto;
transform:translateY(0);
}

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

@media(max-width:768px){

/* dropdown inside menu */
.dropdown{
width:100%;
text-align:center;
}

/* button full width */
.drop-btn{
display:block;
width:100%;
}

/* menu becomes inline block */
.dropdown-menu{
position:static;
box-shadow:none;
background:#f8fafc;
border-radius:8px;
margin-top:10px;
padding:10px 0;

opacity:1;
pointer-events:auto;
transform:none;

display:none;
}

/* show when active */
.dropdown.active .dropdown-menu{
display:block;
}

/* items */
.dropdown-menu a{
justify-content:center;
}

}



/* HERO */

.hero{
height:100vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
background:url("Assets/ETC1.png") center/cover fixed;
position:relative;
}

.overlay{
position:absolute;
inset:0;
background:rgba(20, 20, 20, 0.656);
}

.hero-content{
position:relative;
color:white;
max-width:720px;
}

.hero h1{
font-size:64px;
font-family:'Playfair Display',serif;
}

.hero p{
font-size:20px;
margin-top:10px;
}


/* BUTTON */

.btn-primary{
background:#3b82f6;
color:white;
padding:14px 36px;
border:none;
border-radius:8px;
cursor:pointer;
transition:.3s;
}

.btn-primary:hover{
transform:translateY(-4px);
box-shadow:0 20px 40px rgba(59,130,246,.4);
}


/* SECTIONS */

.section{
padding:140px 0;
}

.section-title{
font-size:42px;
font-family:'Playfair Display',serif;
}

.divider{
width:80px;
height:3px;
background:#3b82f6;
margin:20px auto 40px;
}


/* PROGRAMS */

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

.program-card{
background:white;
border-radius:16px;
padding:20px;
box-shadow:0 20px 40px rgba(0,0,0,.08);
transition:.35s;
}

.program-card img{
width:100%;
border-radius:12px;
margin-bottom:10px;
}

.program-card:hover{
transform:translateY(-12px);
box-shadow:0 35px 80px rgba(0,0,0,.15);
}


/* COUNTERS */

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

.counter-box{
text-align:center;
padding:40px;
background:white;
border-radius:16px;
box-shadow:0 20px 40px rgba(0,0,0,.08);
transition:.3s;
}

.counter-box:hover{
transform:translateY(-8px);
}

.counter{
font-size:48px;
color:#3b82f6;
}

.counter-box i{
width:40px;
height:40px;
color:#3b82f6;
}


/* BENEFITS */

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

.benefit-card{
background:white;
padding:30px;
border-radius:16px;
box-shadow:0 20px 40px rgba(0,0,0,.08);
transition:.3s;
}

.benefit-card:hover{
transform:translateY(-10px);
}

.benefit-card i{
width:40px;
height:40px;
color:#3b82f6;
}






.training-section{
padding:140px 0;
background:#f8fafc;
}

.section-title{
font-size:44px;
text-align:center;
font-family:'Playfair Display',serif;
}

.section-desc{
text-align:center;
max-width:720px;
margin:20px auto 60px;
color:#64748b;
font-size:18px;
}

.training-grid{
display:grid;
grid-template-columns:1.1fr 1fr;
gap:40px;
}


/* PROGRAM PANEL */

.programs-panel{
background:white;
border-radius:18px;
box-shadow:0 25px 50px rgba(0,0,0,.08);
overflow:hidden;
}

.panel-header{
display:flex;
align-items:center;
gap:10px;
padding:24px;
border-bottom:1px solid #e5e7eb;
font-weight:600;
}

.program{
border-bottom:1px solid #eee;
cursor:pointer;
transition:.3s;
}

.program:hover{
background:#f9fafb;
}

.program-head{
display:flex;
align-items:center;
gap:14px;
padding:22px 24px;
}

.program-head h4{
margin:0;
font-size:17px;
}

.program-head p{
margin:3px 0 0;
font-size:14px;
color:#6b7280;
}

.icon-box{
width:42px;
height:42px;
background:#e0f2fe;
display:flex;
align-items:center;
justify-content:center;
border-radius:12px;
color:#0284c7;
}

.arrow{
margin-left:auto;
transition:.3s;
}

.program.open .arrow{
transform:rotate(180deg);
}

.program-body{
max-height:0;
overflow:hidden;
padding:0 24px;
color:#64748b;
transition:max-height .4s ease;
}



/* FORM PANEL */

.enroll-panel{
background:white;
border-radius:18px;
box-shadow:0 25px 50px rgba(0,0,0,.08);
overflow:hidden;
}

.enroll-header{
background:#e8f3f2;
padding:26px;
}

.enroll-form{
padding:30px;
}


/* FLOATING INPUT */

.input-group{
position:relative;
margin-bottom:22px;
}

.input-group input,
.input-group select,
.input-group textarea{
width:100%;
padding:14px;
border:1px solid #d1d5db;
border-radius:10px;
background:white;
outline:none;
}

.input-group label{
position:absolute;
left:14px;
top:14px;
color:#6b7280;
font-size:14px;
transition:.2s;
background:white;
padding:0 4px;
}

.input-group input:focus + label,
.input-group input:valid + label,
.input-group textarea:focus + label,
.input-group textarea:valid + label,
.input-group select:focus + label,
.input-group select:valid + label{
top:-8px;
font-size:12px;
color:#2563eb;
}

textarea{
height:90px;
resize:none;
}


/* BUTTON */

.btn-enroll{
width:100%;
padding:14px;
background:#2563eb;
color:white;
border:none;
border-radius:10px;
cursor:pointer;
font-size:16px;
transition:.3s;
}

.btn-enroll:hover{
transform:translateY(-3px);
box-shadow:0 12px 25px rgba(37,99,235,.35);
}


/* REVEAL ANIMATION */

.reveal{
opacity:0;
transform:translateY(40px);
transition:all .8s ease;
}

.reveal.active{
opacity:1;
transform:translateY(0);
}


/* RESPONSIVE */

@media(max-width:900px){

.training-grid{
grid-template-columns:1fr;
}

}

/* CTA */

.cta{
padding:200px 0;
background:url("https://images.unsplash.com/photo-1605810230434-7631ac76ec81?auto=format&fit=crop&w=2000&q=80") center/cover;
color:white;
position:relative;
}

.cta .container{
position:relative;
}


/* FOOTER */

/* BACKGROUND ANIMATION */
.footer {
    position: relative;
    padding: 100px 0 40px;
    color: white;
    overflow: hidden;
    background: linear-gradient(-45deg, #020617, #0f172a, #020617, #1e293b);
    background-size: 400% 400%;
    animation: gradientMove 12s ease infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% }
    50% { background-position: 100% }
    100% { background-position: 0% }
}

/* GLASS CONTAINER */
.footer-glass {
    backdrop-filter: blur(20px);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 50px;
}

/* GRID */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 50px;
}

/* BRAND */
.footer-brand h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.footer-brand p {
    color: #cbd5f5;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* LINKS */
.footer-grid h4 {
    margin-bottom: 15px;
}

.footer-grid a {
    display: block;
    color: #9ca3af;
    margin-bottom: 10px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-grid a:hover {
    color: #60a5fa;
    transform: translateX(6px);
}

/* SOCIAL */
.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #3b82f6;
    box-shadow: 0 0 15px #3b82f6;
    transform: translateY(-5px);
}

/* NEWSLETTER */
.newsletter {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.newsletter input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 6px;
    outline: none;
}

.newsletter button {
    background: #3b82f6;
    border: none;
    padding: 10px 14px;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter button:hover {
    background: #2563eb;
}

/* CONTACT */
.footer-contact {
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 20px;
    color: #9ca3af;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* BOTTOM */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    color: #6b7280;
}

/* WHATSAPP */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 55px;
    height: 55px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    z-index: 999;
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* CONTAINER */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .footer-glass {
        padding: 30px;
    }

    .footer-grid {
        gap: 30px;
    }

    .footer-contact {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .newsletter {
        flex-direction: column;
    }

    .newsletter button {
        width: 100%;
    }
}

@media (max-width: 480px) {

    .footer {
        padding: 70px 0 30px;
    }

    .footer-brand h2 {
        font-size: 22px;
    }
}


/* REVEAL */

.reveal{
opacity:0;
transform:translateY(50px);
transition:all .8s ease;
}

.reveal.active{
opacity:1;
transform:translateY(0);
}



/* ================= GLOBAL SAFETY ================= */

img{
max-width:100%;
height:auto;
display:block;
}

body{
overflow-x:hidden;
}

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

@media(max-width:1024px){
.hero{
min-height:80vh;
padding:100px 20px;
}
}

@media(max-width:768px){
.hero{
min-height:auto;
padding:90px 20px;
}
}

/* ================= TEXT SCALE ================= */

@media(max-width:1024px){
.hero h1{
font-size:48px;
}

.hero p{
font-size:18px;
}
}

@media(max-width:768px){
.hero h1{
font-size:32px;
}

.hero p{
font-size:15px;
}
}

/* ================= PROGRAM GRID ================= */

@media(max-width:1024px){
.program-grid{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:768px){
.program-grid{
grid-template-columns:1fr;
}
}

/* ================= COUNTERS ================= */

@media(max-width:1024px){
.counter-grid{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:600px){
.counter-grid{
grid-template-columns:1fr;
}
}

/* ================= BENEFITS ================= */

@media(max-width:1024px){
.benefits-grid{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:600px){
.benefits-grid{
grid-template-columns:1fr;
}
}

/* ================= TRAINING SECTION ================= */

@media(max-width:1024px){
.training-grid{
grid-template-columns:1fr;
gap:40px;
}
}

/* ================= ENROLL FORM (NO DESIGN CHANGE) ================= */

@media(max-width:768px){

.enroll-panel{
width:100%;
}

.enroll-form{
padding:24px;
}

/* keep original styles, only spacing */
.input-group{
margin-bottom:18px;
}

}

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

@media(max-width:768px){
.cta{
padding:100px 20px;
}
}

/* ================= FOOTER ================= */
/* 
@media(max-width:1024px){
.footer-grid{
grid-template-columns:repeat(2,1fr);
gap:30px;
}
}

@media(max-width:600px){
.footer-grid{
grid-template-columns:1fr;
text-align:center;
}
} */

/* ================= BUTTON FIX ================= */

@media(max-width:768px){
.btn-primary{
width:100%;
max-width:260px;
}
}

/* ================= SECTION SPACING ================= */

@media(max-width:768px){
.section{
padding:90px 20px;
}
}

@media(max-width:480px){
.section{
padding:70px 16px;
}
}