* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f8fafc;
    color: #1e293b;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ABOUT HERO */
.about-hero {
    padding: 180px 0 80px;
    text-align: center;
    background: 
    linear-gradient(rgba(255,255,255,0.3), rgba(255,255,255,02)), 
    url("about.banner.png") center/cover no-repeat fixed;
    position: relative;
    min-height: 60vh;  /* Full screen height */
}

.hero-title { font-size: 3.5rem; margin-bottom: 1rem; }
.gradient-text {
    background: linear-gradient(135deg, #ff8c42, #1e40af);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-subtitle { font-size: 1.2rem; color: #282929; max-width: 700px; margin: 0 auto; }

/* MISSION & VISION */
.mission-vision { padding: 80px 0; }
/* Update your .grid to give the shadows room to breathe */
.grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 3rem; 
    padding: 20px; /* This gives space for the shadow to show up */
}

.card {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    /* We are using a slightly darker shadow to stand out against #f8fafc */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15); 
    transition: transform 0.3s ease;
    text-align: center;
    position: relative; 
    z-index: 1;
}

/* Ensure the team section background doesn't eat the shadow */

.card:hover { transform: translateY(-10px); }
.card-icon {
    font-size: 3rem;         
    color: #ff8c42;          
    margin-bottom: 1.5rem;   
    display: block;          
}
.card h3 { margin-bottom: 1rem; font-size: 1.5rem; color: #1e40af; }

/* TEAM */
.team { 
    padding: 80px 0; 
    background: #f8fafc; /* Change this to match your body color */
}
.section-title { font-size: 2.5rem; margin-bottom: 3rem; }
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff8c42, #1e40af);  /* YOUR COLORS */
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255,140,66,0.4);
    border: none;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(30,64,175,0.6);
    background: linear-gradient(135deg, #1e40af, #ff8c42);  /* Reverse for hover */
}

/* FOOTER */
.footer {
    padding: 3rem 0;
    text-align: center;
    background: #1e293b;
    color: white;
     margin-top: 4rem;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .grid { grid-template-columns: 1fr; }
    .nav-menu { display: none; }
    .hero-title { font-size: 2.5rem; }
}