body{margin:0;font-family:Arial}
header,footer{background:#0b3c5d;color:white;padding:15px;text-align:center}
nav a{color:white;margin:0 10px;text-decoration:none}
.hero{text-align:center;padding:40px}
.hero-img,.gallery-img{width:100%;max-height:350px;object-fit:cover}
.btn{background:#ff9800;color:white;padding:10px 20px;text-decoration:none}
.social a{color:white;margin:0 5px}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

.main-header {
    background-color: #0a3d62;
    color: #fff;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo h2 {
    font-size: 24px;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    font-size: 16px;
    transition: 0.3s;
}

.navbar a:hover {
    color: #fbc531;
}

.admin-btn {
    background-color: #fbc531;
    color: #000 !important;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: bold;
}
.site-footer {
    background-color: #0a3d62;
    color: #ffffff;
    padding: 40px 30px 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

.footer-container div {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-about h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-links h4,
.footer-social h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: #fbc531;
}

.footer-social a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #fbc531;
}

.footer-bottom {
    background-color: #062f4f;
    text-align: center;
    padding: 12px 0;
    font-size: 14px;
}

.contact-section {
    padding: 60px 20px;
    background-color: #f5f7fa;
}

.contact-container {
    max-width: 900px;
    margin: auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.contact-container h2 {
    text-align: center;
    margin-bottom: 15px;
    color: #0a3d62;
}

.contact-intro {
    text-align: center;
    font-size: 15px;
    margin-bottom: 40px;
    color: #555;
}

.contact-details {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-box {
    flex: 1;
    min-width: 250px;
    background: #f1f5f9;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}

.contact-box h4 {
    margin-bottom: 10px;
    color: #0a3d62;
}

.contact-box p,
.contact-box a {
    font-size: 15px;
    color: #333;
    text-decoration: none;
}

.contact-box a:hover {
    color: #fbc531;
}

.contact-message {
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
    color: #444;
}
.about-3d-section {
    padding: 70px 20px;
    background: linear-gradient(135deg, #eaf2f8, #fdfefe);
}

.about-3d-card {
    max-width: 950px;
    margin: auto;
    background: #ffffff;
    padding: 45px;
    border-radius: 12px;

    /* 3D EFFECT */
    border: 2px solid #0a3d62;
    box-shadow:
        0 15px 25px rgba(0,0,0,0.15),
        inset 0 0 10px rgba(255,255,255,0.5);

    transform: perspective(1000px) translateZ(0);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-3d-card:hover {
    transform: perspective(1000px) translateY(-6px);
    box-shadow:
        0 25px 40px rgba(0,0,0,0.25),
        inset 0 0 15px rgba(255,255,255,0.6);
}

.about-3d-card h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #0a3d62;
    font-size: 28px;
}

.about-3d-card p {
    font-size: 16px;
    line-height: 1.9;
    color: #333;
    margin-bottom: 18px;
}

.highlight-text {
    background: linear-gradient(90deg, #fbc531, #ffeaa7);
    padding: 15px;
    border-left: 6px solid #0a3d62;
    border-radius: 6px;
    font-weight: 500;
}

.mission-vision {
    display: flex;
    gap: 25px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.mv-box {
    flex: 1;
    min-width: 260px;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;

    /* Inner 3D Card */
    border: 1px solid #dcdde1;
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.mv-box h3 {
    color: #0a3d62;
    margin-bottom: 10px;
}
.gallery-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #eef2f7, #ffffff);
}

.gallery-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.gallery-title {
    font-size: 34px;
    color: #0a3d62;
    margin-bottom: 10px;
}

.gallery-subtitle {
    font-size: 15px;
    color: #555;
    margin-bottom: 45px;
}

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

/* CARD */
.gallery-card {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid #0a3d62;

    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
}

.gallery-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 30px 55px rgba(0,0,0,0.35);
}

/* IMAGE */
.gallery-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

/* CAPTION */
.gallery-caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 12px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
}
/* ===== DONATE PAGE 3D DESIGN ===== */
.donate-page{
    min-height:80vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background:linear-gradient(135deg,#eef2ff,#f9fbff);
    padding:50px 20px;
}

.donate-3d-card{
    max-width:520px;
    background:#ffffff;
    padding:40px;
    border-radius:16px;
    border:2px solid #e0e6ff;
    box-shadow:
        0 15px 35px rgba(13,44,90,0.2),
        inset 0 0 0 1px #ffffff;
    text-align:center;
    transform:translateY(0);
    transition:0.3s ease;
}

.donate-3d-card:hover{
    transform:translateY(-6px);
    box-shadow:
        0 25px 45px rgba(13,44,90,0.25);
}

.donate-3d-card h2{
    color:#0d2c5a;
    margin-bottom:15px;
    font-size:26px;
}

.donate-desc{
    font-size:15px;
    color:#444;
    line-height:1.6;
    margin-bottom:12px;
}

/* UPI BOX */
.upi-box{
    margin:25px 0;
    padding:20px;
    border-radius:12px;
    border:2px dashed #1f4fa3;
    background:#f4f7ff;
}

.upi-box h3{
    color:#1f4fa3;
    margin-bottom:8px;
}

.upi-id{
    font-size:20px;
    font-weight:bold;
    color:#0d2c5a;
}

.upi-box span{
    font-size:13px;
    color:#555;
}

/* 3D BUTTON */
.donate-btn-3d{
    margin-top:20px;
    background:linear-gradient(135deg,#f9b233,#f4a100);
    border:none;
    padding:15px 25px;
    font-size:16px;
    font-weight:bold;
    border-radius:12px;
    cursor:pointer;
    box-shadow:0 6px 0 #c88400;
    transition:0.2s ease;
}

.donate-btn-3d:hover{
    transform:translateY(2px);
    box-shadow:0 3px 0 #c88400;
}

/* TRUST TEXT */
.trust-note{
    margin-top:18px;
    font-size:13px;
    color:#666;
    line-height:1.5;
}
/* ===== CONTACT PAGE PROFESSIONAL ===== */
.contact-section{
    padding:70px 20px;
    background:#f4f6fb;
}

.contact-container{
    max-width:1200px;
    margin:auto;
}

.contact-title{
    text-align:center;
    font-size:32px;
    color:#0d2c5a;
    margin-bottom:10px;
}

.contact-subtitle{
    text-align:center;
    max-width:700px;
    margin:0 auto 50px;
    color:#555;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

/* CARD STYLE */
.contact-card{
    background:#ffffff;
    border-radius:16px;
    padding:35px;
    box-shadow:0 12px 30px rgba(0,0,0,0.12);
    border:1px solid #e6ecff;
}

.contact-card h3{
    margin-bottom:25px;
    color:#0d2c5a;
    font-size:22px;
}

/* INFO ITEMS */
.info-item{
    display:flex;
    gap:15px;
    align-items:flex-start;
    margin-bottom:20px;
}

.info-item span{
    font-size:22px;
}

.info-item strong{
    display:block;
    color:#1f4fa3;
    margin-bottom:4px;
}

.info-item p,
.info-item a{
    margin:0;
    color:#444;
    text-decoration:none;
}

/* MAP */
.map-card iframe{
    width:100%;
    height:280px;
    border:none;
    border-radius:12px;
}

/* FOOT NOTE */
.contact-note{
    margin-top:40px;
    text-align:center;
    color:#444;
}

/* RESPONSIVE */
@media(max-width:900px){
    .contact-grid{
        grid-template-columns:1fr;
    }
}

