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

body{
    background:#f4f4f4;
    color:#333;
    line-height:1.6;
}

header{
    background:#0b3d91;
    color:white;
    text-align:center;
    padding:30px 20px;
}

header h1{
    font-size:40px;
}

header p{
    font-size:18px;
    margin-top:10px;
}


.hero{
    position:relative;
    background:linear-gradient(135deg,#0b3d91,#1565c0,#1e88e5);
    color:white;
    text-align:center;
    padding:100px 20px;
    overflow:hidden;
}

.hero::before{
    content:"";
    position:absolute;
    top:-50%;
    left:-50%;
    width:200%;
    height:200%;
    background:radial-gradient(rgba(255,255,255,.12),transparent 70%);
    animation:rotateBG 20s linear infinite;
}

.hero-content{
    position:relative;
    z-index:2;
}

.hero-logo{
    width:120px;
    margin-bottom:20px;
    animation:float 3s ease-in-out infinite;
}

.hero h1{
    font-size:48px;
    margin-bottom:10px;
    letter-spacing:2px;
}

.typing-text{
    font-size:28px;
    color:#ffd54f;
    margin-bottom:20px;
    font-weight:bold;
}

.hero-tagline{
    font-size:24px;
    margin-bottom:30px;
    font-weight:bold;
}

.hero-btn{
    display:inline-block;
    background:#ffd54f;
    color:#0b3d91;
    padding:14px 35px;
    border-radius:40px;
    text-decoration:none;
    font-weight:bold;
    transition:0.3s;
}

.hero-btn:hover{
    transform:scale(1.08);
    box-shadow:0 0 20px rgba(255,213,79,.8);
}

.guru-photo{
    width:240px;
    margin-top:40px;
    border-radius:20px;
    border:5px solid white;
    box-shadow:0 10px 30px rgba(0,0,0,.3);
}

@keyframes float{
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(-10px);}
}

@keyframes rotateBG{
    from{transform:rotate(0deg);}
    to{transform:rotate(360deg);}
}

.hero h2{
    font-size:32px;
    margin-bottom:15px;
}

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

.about,
.mission,
.contact{
    background:white;
    margin:20px;
    padding:25px;
    border-radius:10px;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

h2{
    color:#0b3d91;
    margin-bottom:15px;
}

ul{
    padding-left:20px;
}

li{
    margin:10px 0;
}

footer{
    background:#0b3d91;
    color:white;
    text-align:center;
    padding:20px;
    margin-top:20px;
}
/* ===== Gallery ===== */

.gallery{
    padding:60px 20px;
    text-align:center;
}

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

.gallery-grid img{
    width:100%;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,.2);
    transition:.3s;
}

.gallery-grid img:hover{
    transform:scale(1.05);
}

/* ===== Donation ===== */

.donate{
    background:#ffffff;
    padding:60px 20px;
    text-align:center;
}

.qr-code{
    width:220px;
    max-width:90%;
    margin:25px auto;
    display:block;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,.2);
}

/* ===== Footer ===== */

footer{
    background:#0b3d91;
    color:white;
    text-align:center;
    padding:35px 20px;
}

footer h3{
    font-size:28px;
    margin-bottom:15px;
}

footer p{
    margin:8px 0;
}

/* ===== Mobile ===== */

@media(max-width:768px){

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

.typing-text{
    font-size:22px;
}

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

.hero-btn{
    display:block;
    width:220px;
    margin:20px auto;
}

.guru-photo{
    display:block;
    margin:30px auto 0;
    width:220px;
}
