*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:Arial;
    background:#f4f4f4;
    color:#333;
}

/* NAVBAR */

nav{
    background:white;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:15px 40px;

    box-shadow:0 2px 10px rgba(0,0,0,0.1);

    position:sticky;

    top:0;

    z-index:1000;
}

.logo-section{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo-section img{
    width:70px;
    height:70px;
    border-radius:50%;
}

.logo-section h2{
    color:#0d47a1;
}

nav ul{
    display:flex;
    list-style:none;
    gap:30px;
}

nav ul li a{
    text-decoration:none;
    color:black;
    font-weight:bold;
    transition:0.3s;
}

nav ul li a:hover{
    color:#0d47a1;
}

/* HERO */

.hero{
    height:90vh;

    background:url('images/banner.jpeg');

    background-size:cover;

    background-position:center;

    position:relative;
}

/* OVERLAY */

.overlay{
    width:100%;
    height:100%;

    background:rgba(0,0,0,0.6);

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    color:white;

    padding:20px;
}

.overlay h1{
    font-size:65px;
    margin-bottom:20px;
}

.overlay p{
    font-size:24px;
    margin-bottom:30px;
}

.overlay button{
    padding:15px 35px;

    border:none;

    background:#ff9800;

    color:white;

    font-size:18px;

    border-radius:8px;

    cursor:pointer;

    transition:0.3s;
}

.overlay button:hover{
    background:#ff7700;
    transform:scale(1.05);
}

/* ABOUT */

.about{
    padding:80px 20px;

    background:white;

    text-align:center;
}

.about h2{
    font-size:42px;
    margin-bottom:30px;
    color:#0d47a1;
}

.about-box{
    max-width:700px;

    margin:auto;

    background:#f9f9f9;

    padding:40px;

    border-radius:15px;

    box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.about-box p{
    margin:20px 0;
    font-size:20px;
    line-height:1.7;
}

/* TEAM */

.team{
    padding:80px 20px;
    background:#f4f4f4;
    text-align:center;
}

.team h2{
    font-size:42px;
    margin-bottom:50px;
    color:#0d47a1;
}

.team-container{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.member-card{
    width:280px;

    background:white;

    padding:35px 20px;

    border-radius:20px;

    box-shadow:0 5px 20px rgba(0,0,0,0.1);

    transition:0.3s;
}

.member-card:hover{
    transform:translateY(-10px);
}

.member-card h3{
    color:#0d47a1;
    margin-bottom:15px;
    font-size:22px;
}

.member-card p{
    color:#555;
    font-size:18px;
}

/* POSTS */

.posts{
    padding:80px 20px;
}

.posts h2{
    text-align:center;
    font-size:42px;
    margin-bottom:50px;
    color:#0d47a1;
}

.post-container{
    display:flex;

    justify-content:center;

    gap:30px;

    flex-wrap:wrap;
}

/* CARDS */

.card{
    width:320px;

    background:white;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 5px 20px rgba(0,0,0,0.1);

    transition:0.3s;
}

.card:hover{
    transform:translateY(-10px);
}

.card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.card h3{
    padding:20px 20px 10px;
}

.card p{
    padding:0 20px 25px;
    line-height:1.6;
}

/* REELS */

.reels{
    background:white;

    padding:80px 20px;

    text-align:center;
}

.reels h2{
    font-size:42px;
    margin-bottom:40px;
    color:#0d47a1;
}

.reels video{
    width:55%;

    max-width:500px;

    border-radius:20px;

    box-shadow:0 5px 20px rgba(0,0,0,0.2);
}

/* CONTACT */

.contact{
    padding:80px 20px;

    text-align:center;
}

.contact h2{
    font-size:42px;
    margin-bottom:40px;
    color:#0d47a1;
}

.contact-box{
    max-width:700px;

    margin:auto;

    background:white;

    padding:40px;

    border-radius:20px;

    box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.contact-box a{
    text-decoration:none;
    color:#333;
}

.contact-box p{
    margin:25px 0;

    font-size:22px;

    transition:0.3s;
}

.contact-box p:hover{
    color:#0d47a1;
    transform:scale(1.03);
}

/* FOOTER */

footer{
    background:#0d47a1;

    color:white;

    text-align:center;

    padding:25px;

    margin-top:40px;
}