html{
    scroll-behavior:smooth;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    line-height:1.6;
    background:#f8f9fa;
    color:#333;
}

/* NAVBAR */

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 8%;
    background:#ffffff;
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
    position:sticky;
    top:0;
    z-index:1000;
    position:sticky;
    top:0;
    z-index:1000;
    background:white;
}


.logo img{
    width:140px;
}

.nav-links{
    display:flex;
    list-style:none;
}

.nav-links li{
    margin-left:25px;
}

.nav-links a{
    text-decoration:none;
    color:#111;
    font-weight:600;
    transition:0.3s;
}

.nav-links a:hover{
    color:#00bcd4;
}

/* HERO */

.hero{
    height:100vh;

    background: linear-gradient(
        rgba(0,0,0,0.3),
        rgba(0,0,0,0.3)
    ),
    url("../images/hero.jpg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-content{
    opacity:1;
    text-align:center;
    color:white;
    text-shadow:2px 2px 8px rgba(0,0,0,0.8);
}

.hero-content h1{
    animation:fadeUp 1s ease forwards;
    animation-delay:0.2s;
}

.hero-content p{
    animation:fadeUp 1.5s ease forwards;
    animation-delay:0.5s;opacity:0;
}

.hero-content .btn{
    animation:fadeUp 2s ease forwards;
    animation-delay:0.8s;opacity:0;
}

.btn:hover{
    background:#0097a7;
}

/* ABOUT */

.about{
    padding: 80px 10%;
    background: #fff;
}

.about .container{
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about h2{
    color: #00bcd4;
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.about h3{
    color: #333;
    margin-bottom: 20px;
    font-size: 2rem;
}

.about p{
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* FLAGSHIP INITIATIVES */

.initiatives{
    padding:80px 10%;
    background:#f8f9fa;
}

.initiatives h2{
    text-align:center;
    color:#00bcd4;
    margin-bottom:40px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.card{
    background:white;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
    transition:0.3s;
}

.card:hover{
    transform:translateY(-5px);
}

.card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.card h3{
    padding:15px;
    color:#00bcd4;
}

.card p{
    padding:0 15px 20px;
    line-height:1.6;
}

/* LEADERSHIP */

.leaders{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.leader-card{
    background:white;
    padding:20px;
    border-radius:15px;
    text-align:center;
    width:300px;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.leader-card img{
    width:200px;
    height:200px;
    object-fit:cover;
    border-radius:50%;
    margin-bottom:15px;
}

/* FOOTER */

footer{
    background:#111;
    color:white;
    text-align:center;
    padding:40px 20px;
}

footer h3{
    color:#00bcd4;
    margin-bottom:15px;
}

footer p{
    margin:10px 0;
    line-height:1.6;
}

/* MOBILE */

@media(max-width:768px){

    .navbar{
        flex-direction:column;
    }

    .nav-links{
        margin-top:15px;
        flex-wrap:wrap;
        justify-content:center;
    }

    .nav-links li{
        margin:10px;
    }

   .hero h1{
    font-size:2rem;
    line-height:1.2;
    padding:0 10px;
}
.hero-content{
    width:95%;
    padding:20px;
}

.hero p{
    font-size:1rem;
    line-height:1.6;
}

} /* End mobile navbar/hero */

/* CALL TO ACTION */

.cta{
    background:#00bcd4;
    color:white;
    text-align:center;
    padding:80px 10%;
}

.cta h2{
    margin-bottom:20px;
    font-size:2rem;
}

.cta p{
    max-width:800px;
    margin:0 auto 30px;
    line-height:1.8;
}

.btn{
    display:inline-block;
    padding:12px 30px;
    background:white;
    color:#00bcd4;
    text-decoration:none;
    border-radius:30px;
    font-weight:bold;
}

/* PAGE HEADER */

.page-header{
    background:#00bcd4;
    color:white;
    text-align:center;
    padding:80px 20px;
}

.stats{
    display:flex;
    justify-content:center;
    gap:30px;
    padding:60px 10%;
    flex-wrap:wrap;
    background:white;
}

.stat-box{
    text-align:center;
    padding:20px;
}

.stat-box h2{
    color:#00bcd4;
    font-size:3rem;
}

.stat-box p{
    font-weight:bold;
}

@keyframes fadeUp {
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.partner{
    padding:80px 10%;
    text-align:center;
    background:#f8f9fa;
}

.partner h2{
    color:#00bcd4;
    margin-bottom:20px;
}

.partner p{
    max-width:800px;
    margin:auto;
    line-height:1.8;
}

.contact{
    padding:80px 10%;
    text-align:center;
    background:#f8f9fa;
}

.contact h2{
    color:#00bcd4;
    margin-bottom:20px;
}

.contact p{
    color:#666;
    margin-bottom:20px;
}

.contact form{
    max-width:700px;
    margin:0 auto;
}

.contact input,
.contact textarea{
    width:100%;
    padding:15px;
    margin:10px 0;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:16px;
    box-sizing:border-box;
}

.contact button{
    background:#00bcd4;
    color:white;
    border:none;
    padding:15px 30px;
    border-radius:8px;
    cursor:pointer;
    font-size:16px;
    transition:0.3s;
}

.contact button:hover{
    background:#0097a7;
}

.contact-details{
    margin-top:40px;
}

/* =========================
   Initiative Pages
========================= */

.page-hero {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.page-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.5);
    padding: 20px;
    border-radius: 10px;
    color: white;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.initiative-content {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

.initiative-content h2 {
    color: #4cc9d9;
    margin-bottom: 20px;
}

.initiative-content p,
.initiative-content li {
    line-height: 1.8;
    font-size: 1.05rem;
}

.initiative-gallery {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.initiative-gallery h2 {
    text-align: center;
    color: #4cc9d9;
    margin-bottom: 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.03);
}

.initiative-cta {
    text-align: center;
    padding: 70px 20px;
    background: #f5f9fa;
}

.initiative-cta h2 {
    color: #4cc9d9;
    margin-bottom: 20px;
}

.initiative-cta .btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: #4cc9d9;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
}

.back-home {
    padding: 20px 40px;
}

.back-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #4cc9d9;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s ease;
}

.back-btn:hover {
    background: #36b4c4;
    transform: translateY(-2px);
}

.flagship-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s ease;
}

.flagship-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {

    /* HERO TEXT */
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    /* PAGE HERO */
    .page-hero {
        height: 250px;
    }

    /* INITIATIVE SECTIONS */
   section {
    padding: 70px 20px;
}

.initiative-content {
    max-width: 1000px;
    margin: auto;
    padding: 20px 0;
}

    /* GALLERY */
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid img {
        height: 220px;
    }

    /* FLAGSHIP CARDS (HOME PAGE) */
    .flagship-grid {
        grid-template-columns: 1fr;
    }

    .flagship-card {
        margin-bottom: 20px;
    }

    /* BACK BUTTON */
.back-home {
    padding: 15px 25px;
}

.back-btn {
    display: inline-block;
    padding: 10px 18px;
    background: #f4f4f4;
    color: #0b6b75;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
}

.back-btn:hover {
    background: #e6e6e6;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: auto;
}

.video-grid iframe {
    width:100%;
    height:280px;
    border-radius:12px;
    box-shadow:0 4px 12px rgba(0,0,0,0.15);
}

} /* End media query */

@media (max-width: 768px) {

    .page-hero {
        height: 220px !important;
        position: relative;
        overflow: hidden;
    }

    .page-hero img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .hero-content {
        bottom: 10px;
        padding: 10px;
        font-size: 14px;
    }
}