*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f7f7f7;
    padding-top:110px;
}

/* HEADER */

header{
    position:fixed;
    top:40px;
    width:100%;
    z-index:999;
    background:rgba(23,69,143,.90);
    backdrop-filter:blur(8px);
    transition:.3s;
}

header.scrolled{
    background:#17458F;
    box-shadow:0 5px 20px rgba(0,0,0,.2);
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    display:flex;
    align-items:center;
    text-decoration:none;
    color:white;
}

.logo img{
    width:55px;
    margin-right:12px;
}

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

.logo small{
    color:#ffd6e6;
}

nav ul{
    display:flex;
    list-style:none;
}

nav ul li{
    margin-left:28px;
}

nav ul li a{
    color:white;
    text-decoration:none;
    font-weight:500;
    transition:.3s;
}

nav ul li a:hover{
    color:#D91B5C;
}

.join-btn{

    background:#D91B5C;
    color:white;
    text-decoration:none;
    padding:12px 24px;
    border-radius:30px;
    transition:.3s;

}

.join-btn:hover{

    background:white;
    color:#17458F;

}

.menu-toggle{

    display:none;
    color:white;
    font-size:28px;
    cursor:pointer;

}
/*==============================
TOP BAR
==============================*/

.top-bar{
    background:#0d2f66;
    color:#fff;
    font-size:14px;
    padding:8px 0;
}

.top-bar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
}

.top-left{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.top-left span{
    display:flex;
    align-items:center;
    gap:6px;
}

.top-right{
    display:flex;
    gap:15px;
}

.top-right a{
    color:#fff;
    transition:.3s;
    font-size:16px;
}

.top-right a:hover{
    color:#D91B5C;
}

/* HERO */

.hero-slider{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    background-size:cover;
    background-position:center;
    opacity:0;
    transition:opacity 1s ease-in-out;
}

.slide.active{
    opacity:1;
}

.overlay{
    width:100%;
    height:100%;
    background:linear-gradient(rgba(23,69,143,.60),rgba(217,27,92,.55));
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
    padding:20px;
}

.overlay h1{
    font-size:64px;
    margin-bottom:20px;
}

.overlay p{
    font-size:24px;
    max-width:800px;
    margin-bottom:30px;
    line-height:1.6;
}

.hero{
    height:90vh;

    background:
    linear-gradient(
        rgba(23,69,143,.8),
        rgba(217,27,92,.7)
    ),
    url('../images/hero.jpg');

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;
}

.hero-overlay{
    color:white;
}

.hero-overlay h1{
    font-size:60px;
    margin-bottom:20px;
}

.hero-overlay p{
    font-size:22px;
    max-width:700px;
    margin:auto;
    margin-bottom:30px;
}

.btn{
    display:inline-block;
    background:#D91B5C;
    color:white;
    padding:15px 35px;
    border-radius:30px;
    text-decoration:none;
}

.btn:hover{
    background:#b6154c;
}

.president-message{
    padding:90px 0;
    background:#ffffff;
}

.president-message .container{
    display:flex;
    align-items:center;
    gap:60px;
    flex-wrap:wrap;
}

.president-image{
    flex:1;
    text-align:center;
}

.president-image img{
    width:100%;
    max-width:380px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.president-content{
    flex:1;
}

.welcome-tag{
    background:#D91B5C;
    color:#fff;
    padding:8px 16px;
    border-radius:20px;
    font-size:14px;
}

.president-content h2{
    margin:20px 0;
    color:#17458F;
    font-size:36px;
}

.president-content p{
    line-height:1.8;
    margin-bottom:18px;
    color:#555;
}

.president-content h4{
    color:#17458F;
}

.motto{
    background:linear-gradient(135deg,#17458F,#D91B5C);
    color:white;
    text-align:center;
    padding:80px 20px;
}

.motto h2{
    font-size:42px;
    margin-bottom:20px;
}

.motto p{
    max-width:800px;
    margin:auto;
    font-size:20px;
    line-height:1.8;
}

.focus{
    padding:90px 0;
    background:#f7f9fc;
}

.focus .container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.focus-card{
    background:#fff;
    padding:30px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    transition:.3s;
}

.focus-card:hover{
    transform:translateY(-8px);
}

.focus-card h3{
    color:#17458F;
    margin-bottom:15px;
}

/* FOOTER */

footer{
    background:#17458F;
    color:white;
    text-align:center;
    padding:30px;
}

.footer-content h3{
    margin-bottom:10px;
}

/* SECTION TITLES */

.section-title{
    text-align:center;
    margin-bottom:40px;
}

.section-title h2{
    color:#17458F;
    font-size:40px;
}

/* ABOUT */

.about-section{
    padding:80px 10%;
    background:white;
}

.about-content{
    max-width:900px;
    margin:auto;
}

.about-text{
    text-align:center;
    line-height:1.8;
    font-size:18px;
    color:#444;
}

/* STATS */

.stats{
    background:#17458F;
    color:white;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));

    gap:20px;

    padding:60px 10%;
}

.stat-box{
    text-align:center;
}

.stat-box h3{
    font-size:50px;
    color:#D91B5C;
}

.stat-box p{
    font-size:20px;
}

/* SERVICES */

.services{
    padding:80px 10%;
    background:#f7f7f7;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.service-card{
    background:white;
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,.1);

    transition:.4s;
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-card h3{
    color:#17458F;
    margin-bottom:15px;
}

.service-card p{
    color:#555;
    line-height:1.7;
}

.events{
background:#f8f8f8;
}

.events .container{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.event-card{
background:white;
padding:30px;
border-radius:15px;
box-shadow:0 5px 20px rgba(0,0,0,.1);
}

.event-card h3{
color:#17458F;
margin-bottom:15px;
}

.event-card a{
display:inline-block;
margin-top:20px;
color:#D91B5C;
text-decoration:none;
font-weight:bold;
}

.join{
background:linear-gradient(135deg,#17458F,#D91B5C);
color:white;
text-align:center;
padding:100px 20px;
}

.join h2{
font-size:45px;
margin-bottom:20px;
}

.join p{
font-size:22px;
margin-bottom:30px;
max-width:700px;
margin-left:auto;
margin-right:auto;
}

@media(max-width:992px){

nav{

position:absolute;
top:80px;
left:-100%;
width:100%;
background:#17458F;
transition:.4s;

}

nav.active{

left:0;

}

nav ul{

flex-direction:column;

}

nav ul li{

margin:20px;

}

.menu-toggle{

display:block;

}

.join-btn{

display:none;

}

.about .container,
.services .container,
.events .container,
.statistics .container{

grid-template-columns:1fr;

display:grid;

}

.hero-overlay h1{

font-size:38px;

}

.hero-overlay p{

font-size:18px;

}

}


/*==============================
ABOUT PAGE
==============================*/

.page-banner{
    height:45vh;
    background:
    linear-gradient(rgba(23,69,143,.80),rgba(217,27,92,.75)),
    url('../images/about-banner.jpg');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;
}

.banner-overlay h1{
    font-size:55px;
    margin-bottom:15px;
}

.banner-overlay p{
    font-size:22px;
}

.about-section{
    padding:90px 0;
}

.about-section .container{
    display:flex;
    gap:50px;
    align-items:center;
    flex-wrap:wrap;
}

.about-image,
.about-text{
    flex:1;
}

.about-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.about-text h2{
    color:#17458F;
    margin-bottom:20px;
}

.about-text p{
    line-height:1.9;
    margin-bottom:20px;
}

.mission-section{
    background:#f7f9fc;
    padding:90px 0;
}

.mission-section .container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.info-card{
    background:#fff;
    padding:35px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.info-card h3{
    color:#17458F;
    margin-bottom:15px;
}

.info-card ul{
    padding-left:20px;
}

.history{
    padding:90px 0;
    text-align:center;
}

.history h2{
    color:#17458F;
    margin-bottom:25px;
}

.history p{
    max-width:900px;
    margin:0 auto 20px;
    line-height:1.9;
}

.four-way{
    background:#17458F;
    color:#fff;
    padding:90px 20px;
    text-align:center;
}

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

.test-grid div{
    background:#fff;
    color:#17458F;
    padding:25px;
    border-radius:12px;
    font-weight:600;
}

.join-benefits{
    padding:90px 0;
}

.join-benefits .container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.benefit-card{
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    text-align:center;
    transition:.3s;
}

.benefit-card:hover{
    transform:translateY(-8px);
}

.benefit-card h3{
    color:#17458F;
    margin-bottom:15px;
}

.leaders{
    background:#f7f9fc;
    padding:90px 0;
}

.leaders .container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.leader{
    background:#fff;
    text-align:center;
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.leader img{
    width:180px;
    height:180px;
    object-fit:cover;
    border-radius:50%;
    margin-bottom:20px;
}

.projects-page{
    padding:90px 0;
}

.projects-page .container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
    gap:35px;
}

.project-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.project-card:hover{
    transform:translateY(-10px);
}

.project-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.project-content{
    padding:25px;
}

.project-content h3{
    color:#17458F;
    margin-bottom:15px;
}

.project-content p{
    line-height:1.7;
    margin-bottom:20px;
    color:#555;
}

.project-content a{
    text-decoration:none;
    color:#D91B5C;
    font-weight:600;
}

/*===========================
LEADERSHIP PAGE
===========================*/

.leadership-intro{

padding:80px 0;
text-align:center;

}

.leadership-intro p{

max-width:900px;
margin:auto;
line-height:1.8;

}

.leadership-team{

padding-bottom:100px;

}

.leadership-team .container{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(270px,1fr));
gap:30px;

}

.leader-card{

background:#fff;
border-radius:18px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,.08);
transition:.35s;

}

.leader-card:hover{

transform:translateY(-10px);

}

.leader-card img{

width:100%;
height:320px;
object-fit:cover;

}

.leader-info{

padding:25px;
text-align:center;

}

.leader-info h3{

color:#17458F;
margin-bottom:8px;

}

.leader-info span{

display:block;
color:#D91B5C;
font-weight:600;
margin-bottom:15px;

}

.leader-info p{

font-size:15px;
line-height:1.7;

}

.leader-social{

margin-top:20px;

}

.leader-social a{

display:inline-block;
margin:0 8px;
color:#17458F;
font-size:18px;
transition:.3s;

}

.leader-social a:hover{

color:#D91B5C;

}

.rotary-sponsor{

background:#f5f8fd;
padding:90px 0;

}

.rotary-sponsor .container{

display:flex;
align-items:center;
gap:60px;
flex-wrap:wrap;

}

.sponsor-image,
.sponsor-content{

flex:1;

}

.sponsor-image img{

width:100%;
border-radius:20px;
box-shadow:0 10px 25px rgba(0,0,0,.15);

}

.sponsor-content h2{

color:#17458F;
margin-bottom:20px;

}

.sponsor-content p{

line-height:1.9;

}

/*==============================
NEWS PAGE
==============================*/

.featured-news{

padding:90px 0;

}

.featured-news .container{

display:flex;
gap:50px;
align-items:center;
flex-wrap:wrap;

}

.featured-image,
.featured-content{

flex:1;

}

.featured-image img{

width:100%;
border-radius:18px;
box-shadow:0 10px 25px rgba(0,0,0,.12);

}

.news-category{

display:inline-block;
background:#D91B5C;
color:white;
padding:8px 18px;
border-radius:30px;
margin-bottom:20px;
font-size:14px;

}

.featured-content h2{

color:#17458F;
margin-bottom:20px;

}

.news-date{

font-weight:600;
margin-bottom:20px;
color:#555;

}

.featured-content p{

line-height:1.8;
margin-bottom:20px;

}

.news-grid{

padding-bottom:100px;

}

.news-grid .container{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(330px,1fr));
gap:35px;

}

.news-card{

background:white;
border-radius:18px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,.08);
transition:.3s;

}

.news-card:hover{

transform:translateY(-10px);

}

.news-card img{

width:100%;
height:220px;
object-fit:cover;

}

.news-content{

padding:25px;

}

.news-content span{

background:#17458F;
color:white;
padding:5px 12px;
border-radius:20px;
font-size:13px;

}

.news-content h3{

margin:20px 0 15px;
color:#17458F;

}

.news-content p{

line-height:1.7;
margin-bottom:20px;

}

.news-content a{

color:#D91B5C;
text-decoration:none;
font-weight:600;

}

.newsletter{

background:linear-gradient(135deg,#17458F,#D91B5C);
padding:90px 20px;
text-align:center;
color:white;

}

.newsletter p{

margin:20px 0 30px;

}

.newsletter form{

display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;

}

.newsletter input{

padding:15px;
width:350px;
border:none;
border-radius:30px;
outline:none;

}

.newsletter button{

padding:15px 30px;
border:none;
border-radius:30px;
background:white;
color:#17458F;
font-weight:bold;
cursor:pointer;

}

.newsletter button:hover{

background:#D91B5C;
color:white;

}

/*=========================
GALLERY
==========================*/

.gallery-section{

padding:90px 5%;

}

.gallery-filter{

text-align:center;
margin-bottom:40px;

}

.gallery-filter button{

padding:12px 25px;
margin:5px;
border:none;
background:#17458F;
color:white;
border-radius:30px;
cursor:pointer;

}

.gallery-filter button.active,
.gallery-filter button:hover{

background:#D91B5C;

}

.gallery-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:20px;

}

.gallery-grid img{

width:100%;
height:280px;
object-fit:cover;
border-radius:15px;
transition:.4s;

}

.gallery-grid img:hover{

transform:scale(1.05);

}

/*=========================
CONTACT
==========================*/

.contact-page{

padding:90px 0;

}

.contact-page .container{

display:flex;
gap:60px;
flex-wrap:wrap;

}

.contact-form,
.contact-details{

flex:1;

}

.contact-form form{

display:flex;
flex-direction:column;
gap:20px;

}

.contact-form input,
.contact-form textarea{

padding:15px;
border:1px solid #ddd;
border-radius:10px;
font-size:16px;

}

.contact-details .info{

margin-bottom:25px;

}

.contact-details h4{

color:#17458F;

}

.social-links{

margin-top:30px;

}

.social-links a{

display:inline-block;
margin-right:15px;
font-size:24px;
color:#17458F;

}

.social-links a:hover{

color:#D91B5C;

}

.map iframe{

width:100%;
height:500px;
border:0;

}