html{
scroll-behavior:smooth;
}

body{
margin:0;
font-family:Arial, sans-serif;
background:#f5f7fb;
color:#333;
}

/* NAVBAR */

nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 40px;
background:#0b3d6d;
color:white;
position:sticky;
top:0;
z-index:1000;
}

.logo{
display:flex;
align-items:center;
gap:12px;
font-size:22px;
font-weight:bold;
}

.logo img{
height: 55px;
filter: brightness(1.3);
border-radius: 8px;
}
.logo span{
font-size:24px;
font-weight:bold;
}
nav{
box-shadow:0 4px 20px rgba(0,0,0,0.2);
}

nav a{
color:white;
text-decoration:none;
margin-left:20px;
font-weight:500;
}

/* HERO */

.hero{
height:100vh;
background:url("images/hero-robotics.png") center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
position:relative;
}

.hero::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
}

.hero-content{
position:relative;
max-width:700px;
}

.hero h1{
font-size:48px;
margin-bottom:20px;
}

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

.hero-btn{
display:inline-block;
margin-top:25px;
padding:14px 30px;
background:#ffcc00;
color:#0b2c5f;
font-weight:bold;
border-radius:6px;
text-decoration:none;
}

/* SECTION */

.container{
max-width:1100px;
margin:auto;
padding:70px 20px;
}

/* SCHOOL LOGOS */

.schools{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:40px;
margin-top:30px;
}

.schools img{
height:60px;
opacity:0.9;
}

/* PROGRAM CARDS */

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
margin-top:30px;
}

.card{
background:white;
padding:25px;
border-radius:8px;
box-shadow:0 4px 10px rgba(0,0,0,0.08);
}

.card h3{
color:#0b3d6d;
}

/* PROJECTS */

.projects{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:20px;
margin-top:30px;
}

.project{
background:white;
border-radius:8px;
overflow:hidden;
box-shadow:0 4px 10px rgba(0,0,0,0.1);
}

.project img{
width:100%;
height:200px;
object-fit:cover;
}

.project p{
padding:12px;
font-weight:bold;
}

/* FEATURES */

.features{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
margin-top:30px;
}

.feature{
background:white;
padding:20px;
border-radius:8px;
box-shadow:0 4px 10px rgba(0,0,0,0.08);
}

/* VIDEO */

.video-grid{
display:grid;
grid-template-columns:repeat(auto-fit, minmax(300px, 1fr));
gap:20px;
margin-top:30px;
}

.video-grid iframe{
width:100%;
aspect-ratio:16/9;   /* 🔥 THIS is key */
border-radius:12px;
box-shadow:0 8px 20px rgba(0,0,0,0.1);
}


/* TESTIMONIAL - PREMIUM UI */

.testimonials{
background:linear-gradient(135deg,#eef3fb,#dfe9f7);
padding:100px 20px;
text-align:center;
position:relative;
}

.testimonials h2{
font-size:34px;
margin-bottom:50px;
color:#0b3d6d;
}

/* CARD */

.testimonial-box{
max-width:650px;
margin:auto;

/* NEW PREMIUM BACKGROUND */
background:linear-gradient(135deg, #ffffff, #f7f9fc);

/* SOFT BORDER */
border:1px solid rgba(0,0,0,0.05);

/* BETTER SHADOW */
box-shadow:0 15px 40px rgba(0,0,0,0.12);

padding:40px 30px;
border-radius:18px;

transition:all 0.3s ease;
}
.testimonial-box:hover{
transform:translateY(-5px);
box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

/* IMAGE */

.testimonial-box img{
width:90px;
height:90px;
border-radius:50%;
object-fit:cover;
border:4px solid #eef3fb;
margin-bottom:15px;
}

/* TEXT */

.testimonial-text{
font-style:italic;
font-size:15px;
line-height:1.7;
color:#555;
margin-bottom:20px;
}

/* NAME */

.testimonial-name{
font-weight:bold;
font-size:18px;
color:#0b3d6d;
}

/* ROLE */

.testimonial-role{
font-size:14px;
color:#777;
margin-top:4px;
}

/* BUTTONS */

.testimonial-buttons{
margin-top:20px;
}

.testimonial-buttons button{
padding:8px 16px;
margin:5px;
border:none;
background:#0b3d6d;
color:white;
border-radius:20px;
cursor:pointer;
transition:0.3s;
}

.testimonial-buttons button:hover{
background:#082c50;
}
/* TESTIMONIAL HEADLINE */

#t-highlight{
font-size:20px;
font-weight:600;
color:#0b3d6d;
margin-bottom:10px;
}
/* DOTS */

.dots{
margin-top:20px;
}

.dot{
display:inline-block;
width:10px;
height:10px;
margin:5px;
background:#bbb;
border-radius:50%;
cursor:pointer;
}

.dot.active{
background:#0b3d6d;
}

/* FOUNDER */

.founder{
text-align:center;
}

.founder img{
height:150px;
border-radius:100px;
margin-bottom:20px;
}

/* FORM */

.cta{
background:#0b2c5f;
color:white;
text-align:center;
padding:70px 20px;
}

form{
max-width:500px;
margin:auto;
display:flex;
flex-direction:column;
gap:12px;
margin-top:20px;
}

form input,form textarea{
padding:12px;
border:none;
border-radius:6px;
}

form button{
background:#ffcc00;
border:none;
padding:12px;
font-weight:bold;
border-radius:6px;
cursor:pointer;
}

/* FOOTER */

footer{
background:#081f40;
color:white;
text-align:center;
padding:30px;
}

/* WHATSAPP */

.whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
color:white;
padding:15px 18px;
border-radius:50px;
text-decoration:none;
font-weight:bold;
}
/* TEAM SECTION */

.team-cards{
display:flex;
justify-content:center;
margin-top:30px;
}

.team-card{
background:white;
padding:30px;
border-radius:12px;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
max-width:320px;
text-align:center;
transition:0.3s;
}

.team-card:hover{
transform:translateY(-5px);
}

.team-card img{
width:140px;
height:140px;
border-radius:50%;
object-fit:cover;
margin-bottom:15px;
}

.team-card h3{
color:#0b3d6d;
margin-bottom:5px;
}

.team-card h4{
color:#666;
font-weight:500;
margin-bottom:10px;
}

.team-card ul{
text-align:left;
margin-top:10px;
font-size:14px;
}
/* TEAM GRID */

.team-grid{
display:flex;
justify-content:center;
gap:40px;
flex-wrap:wrap;
margin-top:40px;
}

/* TEAM CARD */

.team-card{
background:linear-gradient(135deg, #ffffff, #f7f9fc);
padding:30px;
border-radius:16px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
text-align:center;
transition:0.3s;
}

.team-card:hover{
transform:translateY(-6px);
box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

/* IMAGE */

.team-card img{
width:140px;
height:140px;
border-radius:50%;
object-fit:cover;
margin-bottom:15px;
border:4px solid #eef3fb;
}

/* TEXT */

.team-card h3{
color:#0b3d6d;
margin-bottom:5px;
}

.team-card h4{
color:#666;
font-weight:500;
margin-bottom:10px;
}

.team-card p{
font-size:14px;
color:#555;
margin-bottom:10px;
}

.team-card ul{
text-align:left;
font-size:14px;
padding-left:18px;
}
.team-card{
width:320px;
}

.team-card img{
width:140px;
height:140px;
border-radius:50%;
object-fit:cover;
object-position:top center;
}
.team-card{
border:1px solid rgba(0,0,0,0.05);
}
#team{
background:linear-gradient(180deg,#f7f9fc,#eef3fb);
padding-top:60px;
padding-bottom:60px;
}
/* SERVICES */

.services{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:25px;
margin-top:30px;
}

.service-card{
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 4px 15px rgba(0,0,0,0.08);
text-align:center;
transition:0.3s;
}

.service-card:hover{
transform:translateY(-5px);
box-shadow:0 8px 25px rgba(0,0,0,0.15);
}

.service-card h3{
color:#0b3d6d;
margin-bottom:10px;
}

.service-card p{
font-size:14px;
color:#555;
}

.service-card button{
margin-top:15px;
padding:10px 20px;
background:#0b3d6d;
color:white;
border:none;
border-radius:6px;
cursor:pointer;
font-weight:bold;
}
.photo-grid{
display:grid;
grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));
gap:15px;
margin-top:30px;
}

.photo-grid img{
width:100%;
aspect-ratio:4/3;   /* 🔥 better than fixed height */
object-fit:cover;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
display:block;
}