/* =========================
   GLOBAL STYLES
========================= */

:root{
    --primary:#0D6EFD;
    --secondary:#00D8FF;
    --accent:#FFB547;

    --dark:#0A1931;
    --text:#1E293B;
    --muted:#64748B;

    --white:#FFFFFF;
    --light:#F8FAFC;

    --shadow:0 15px 40px rgba(0,0,0,0.08);
    --radius:18px;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    color:var(--text);
    background:#fff;
    overflow-x:hidden;
    line-height:1.7;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

section{
    padding:100px 0;
}

/* =========================
   BUTTONS
========================= */

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 30px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.btn-primary{
    background:var(--primary);
    color:#fff;
}

.btn-primary:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(13,110,253,.25);
}

.btn-secondary{
    border:2px solid var(--primary);
    color:var(--primary);
}

.btn-secondary:hover{
    background:var(--primary);
    color:#fff;
}

/* =========================
   HEADER
========================= */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#fff;
    z-index:1000;
    box-shadow:0 2px 20px rgba(0,0,0,.04);
}

.navbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:90px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo img{
    height:60px;
    width:auto;
}

.logo span {
    font-size: 20px;
    font-weight: 900;
    color: #2d30c8; /* Change according to background */
}

.nav-menu{
    display:flex;
    gap:35px;
}

.nav-menu a{
    color:var(--dark);
    font-weight:500;
}

.nav-menu a:hover{
    color:var(--primary);
}

.mobile-menu{
    display:none;
}

/* =========================
   HERO
========================= */

.hero{
    padding-top:160px;
    padding-bottom:120px;
    background:
    linear-gradient(
    135deg,
    #ffffff,
    #f5f9ff);
}

.hero-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.tagline{
    display:inline-block;
    background:#EAF2FF;
    color:var(--primary);
    padding:10px 18px;
    border-radius:50px;
    margin-bottom:20px;
    font-weight:600;
}

.hero h1{
    font-family:'Poppins',sans-serif;
    font-size:4rem;
    line-height:1.15;
    font-weight:800;
    color:var(--dark);
}

.hero h1 span{
    color:var(--primary);
}

.hero p{
    margin-top:25px;
    color:var(--muted);
    font-size:1.1rem;
}

.hero-buttons{
    margin-top:35px;
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.hero-right img{
    max-width:550px;
    margin:auto;
}

/* =========================
   STATS
========================= */

.stats{
    background:#fff;
    margin-top:-40px;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.stat-card{
    background:#fff;
    border-radius:var(--radius);
    padding:35px;
    text-align:center;
    box-shadow:var(--shadow);
}

.stat-card h2{
    font-size:3rem;
    color:var(--primary);
}

.stat-card p{
    color:var(--muted);
}

/* =========================
   SECTION HEADER
========================= */

.section-header{
    text-align:center;
    margin-bottom:60px;
}

.section-header span{
    color:var(--primary);
    font-weight:700;
    letter-spacing:1px;
}

.section-header h2{
    margin-top:15px;
    font-size:2.8rem;
    color:var(--dark);
    font-family:'Poppins',sans-serif;
}

/* =========================
   ABOUT
========================= */

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-image img{
    border-radius:20px;
    box-shadow:var(--shadow);
}

.about-content p{
    margin-bottom:20px;
    color:var(--muted);
}

/* =========================
   PROGRAMS
========================= */

.programs{
    background:var(--light);
}

.program-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.program-card{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:var(--shadow);
    transition:.3s;
}

.program-card:hover{
    transform:translateY(-10px);
}

.program-card i{
    font-size:3rem;
    color:var(--primary);
}

.program-card h3{
    margin:20px 0 10px;
    font-size:1.5rem;
}

.program-card p{
    color:var(--primary);
    font-weight:600;
}

.program-card ul{
    margin-top:20px;
}

.program-card li{
    padding:8px 0;
    color:var(--muted);
}

/* =========================
   FOOTER PREP
========================= */

.footer{
    background:var(--dark);
    color:#fff;
}

.solution-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:50px;
}

.solution-card{

background:white;

padding:35px;

border-radius:20px;

box-shadow:
0 15px 40px rgba(0,0,0,.06);

transition:.3s;
}

.solution-card:hover{

transform:translateY(-10px);

box-shadow:
0 25px 60px rgba(13,110,253,.15);

}

.solution-card h3{

margin-bottom:15px;

color:var(--primary);

}

.contact-form{

max-width:800px;

margin:auto;

display:flex;

flex-direction:column;

gap:20px;
}

.contact-form input,
.contact-form textarea{

padding:18px;

border:1px solid #dbe3ef;

border-radius:15px;

font-size:16px;

font-family:inherit;
}

.contact-form textarea{

resize:none;
}

.whatsapp-btn{

position:fixed;

bottom:25px;

right:25px;

width:65px;

height:65px;

background:#25D366;

color:white;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

font-size:30px;

z-index:9999;

box-shadow:
0 10px 30px rgba(0,0,0,.2);
}

.gallery-filter{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:15px;
margin-bottom:50px;
}

.filter-btn{
padding:12px 24px;
border:none;
border-radius:50px;
background:#f1f5f9;
cursor:pointer;
font-weight:600;
transition:.3s;
}

.filter-btn:hover,
.filter-btn.active{
background:var(--primary);
color:white;
}

.gallery-grid{
display:grid;
grid-template-columns:
repeat(auto-fill,minmax(300px,1fr));
gap:25px;
}

.gallery-item{
overflow:hidden;
border-radius:20px;
box-shadow:0 15px 40px rgba(0,0,0,.08);
background:white;
}

.gallery-item img{
width:100%;
height:280px;
object-fit:cover;
transition:.4s;
}

.gallery-item:hover img{
transform:scale(1.08);
}

.gallery-caption{
padding:20px;
}

.gallery-caption h3{
margin-bottom:10px;
}

.competition-banner{

background:linear-gradient(
135deg,
#0D6EFD,
#00D8FF);

padding:60px;

border-radius:25px;

color:white;

text-align:center;
}

.event-card{

background:white;

padding:35px;

border-radius:20px;

box-shadow:
0 15px 40px rgba(0,0,0,.08);

transition:.3s;
}

.event-card:hover{

transform:translateY(-10px);

box-shadow:
0 25px 60px rgba(13,110,253,.15);

}

.event-grid{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(300px,1fr));

gap:30px;
}

.blog-grid{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(320px,1fr));
gap:30px;
}

.blog-card{

background:white;

border-radius:20px;

overflow:hidden;

box-shadow:
0 15px 40px rgba(0,0,0,.08);

transition:.3s;
}

.blog-card:hover{

transform:translateY(-10px);

box-shadow:
0 25px 60px rgba(13,110,253,.15);

}

.blog-card img{

height:220px;

width:100%;

object-fit:cover;
}

.blog-content{

padding:25px;
}

.blog-content h3{

margin-bottom:15px;
}

/* =========================
   TESTIMONIALS
========================= */

.testimonials {
  padding: 100px 0;
  background: #f8fafc;
}

.testimonials .solution-card {
  text-align: center;
}

.testimonials .solution-card p {
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 20px;
}

.testimonials .solution-card h4 {
  margin-bottom: 5px;
  color: #1e88e5;
  font-size: 18px;
}

.testimonials .solution-card span {
  color: #666;
  font-size: 14px;
}

.article-page {
  padding: 120px 0 80px;
}

.article-container {
  max-width: 900px;
  margin: auto;
}

.article-container img {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 30px;
}

.article-container h1 {
  margin-bottom: 20px;
  font-size: 42px;
}

.article-container h2 {
  margin-top: 30px;
  margin-bottom: 15px;
  color: #0f172a;
}

.article-container p {
  line-height: 1.9;
  color: #555;
  margin-bottom: 20px;
}