/* =========================
   GLOBAL RESET
========================= */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =========================
   BODY
========================= */

body{
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #222222;
}

/* =========================
   TOP BAR
========================= */

.top-bar{
    width: 100%;
    background: #0b2c6b;
    color: #ffffff;
    font-size: 14px;
}

.top-bar-container{
    width: 90%;
    margin: auto;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 10px 0;
}

/* LEFT SIDE */

.top-left{
    display: flex;
    gap: 25px;
}

.top-left span{
    display: flex;
    align-items: center;
    gap: 8px;
}

/* RIGHT SIDE */

.top-right{
    display: flex;
    gap: 15px;
}

.top-right a{
    color: #ffffff;
    transition: 0.3s;
}

.top-right a:hover{
    color: #f4b400;
}



/* =========================
   NAVBAR
========================= */

.header{
    width: 100%;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.navbar{
    width: 90%;
    margin: auto;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px 0;
    position: relative;
}

/* LOGO */

.logo img{
    width: 70px;
}

/* NAV LINKS */

.nav-links{
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links li{
    position: relative;
}
/* MENU UNDERLINE */

.nav-links > li::after{
    content: '';

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 3px;

    background: #f4b400;

    border-radius: 20px;

    transition: 0.3s;
}

/* HOVER EFFECT */

.nav-links > li:hover::after{
    width: 100%;
}


/* ACTIVE MENU */

.nav-links > li.active::after{
    width: 100%;
}

.nav-links > li.active > a{
    color: #f4b400;
}

.nav-links li a{
    text-decoration: none;
    color: #222222;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s;

    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu .nav-links > li > a:hover{
    color: #f4b400;
}


/* =========================
   SUBMENU DROPDOWN
========================= */

/* PARENT */

.dropdown-submenu{
    position: relative;
}

/* SUBMENU */

.submenu{
    position: absolute;

    top: 0;
    left: 100%;

    min-width: 240px;

    background: #ffffff;

    border-radius: 12px;

    padding: 12px 0;

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);

    opacity: 0;
    visibility: hidden;

    transition: 0.3s ease;

    z-index: 999;
}

/* SHOW SUBMENU */

.dropdown-submenu:hover .submenu{
    opacity: 1;
    visibility: visible;
}

/* SUBMENU LINKS */

.submenu li{
    width: 100%;
}

.submenu li a{
    display: block;

    padding: 12px 20px;

    font-size: 15px;

    color: #333333;

    transition: 0.3s;
}

/* HOVER */

.submenu li a:hover{
    background: #f5f7fb;

    color: #0b2c6b;
}

/* =========================
   SECTION SCROLL OFFSET
========================= */

#vision-mission{
    scroll-margin-top: 200px;
}
/* =========================
   MOBILE MENU TOGGLE
========================= */

.menu-toggle{
    display: none;

    font-size: 28px;

    color: #0b2c6b;

    cursor: pointer;
}




/* MOBILE NAVIGATION */

@media (max-width: 1024px){

    .menu-toggle{
        display: block !important;
    }


    
    /* NAV MENU */

    .nav-menu{
        position: absolute;

        top: 100%;
        left: 0;

        width: 100%;

        background: #ffffff;

        padding: 25px 0;

        box-shadow: 0 10px 25px rgba(0,0,0,0.08);

        display: none;
        z-index: 9999;
    }

    /* ACTIVE */

    .nav-menu.active{
        display: block;
    }

    /* LINKS */

    .nav-links{
        flex-direction: column;

        align-items: flex-start;

        width: 90%;

        margin: auto;

        gap: 0;
    }

    /* ITEMS */

    .nav-links li{
        width: 100%;
    }

    /* LINKS */

    .nav-links li a{
        display: flex;

        justify-content: space-between;

        width: 100%;

        padding: 16px 0;

        border-bottom: 1px solid #eeeeee;
    }


  .nav-links > li::after{
        display: none !important;
    }

    .nav-links > li > a.active-link::after{
        display: none !important;
    }


    /* DROPDOWN */

    .dropdown-menu{
        position: static;

        opacity: 1;
        visibility: visible;

        transform: none;

        display: none;

        width: 100%;

        box-shadow: none;

        padding-left: 15px;
    }

    /* ACTIVE DROPDOWN */

.dropdown.active .dropdown-menu{

    display: block !important;

    opacity: 1 !important;

    visibility: visible !important;

    transform: translateY(0) !important;

}

    .logo{
    flex: 1;
}

.menu-toggle{
    margin-left: auto;
}



 .about-main-container{
        flex-direction: column;
        gap: 40px;
    }

        .leadership-intro-container{
        grid-template-columns: 1fr;
    }


        .president-container{
        grid-template-columns: 1fr;
    }


    .public-health-container{
        grid-template-columns: 1fr;
    }

      .why-padcog-container{
        grid-template-columns: 1fr;
    }

        .objectives-container{
        grid-template-columns: 1fr;
    }




/* ABOUT PAGE */

.about-main-container{
    flex-direction: column;
    gap: 40px;
}

.about-vm-container{
    grid-template-columns: 1fr;
}

.core-values-container{
    grid-template-columns: repeat(2, 1fr);
}

.objectives-container{
    grid-template-columns: 1fr;
}

.public-health-container{
    grid-template-columns: 1fr;
}

.why-padcog-container{
    grid-template-columns: 1fr;
}
}









/* DROPDOWN */

.dropdown-menu{
    transform: translateY(15px);
    position: absolute;
    top: 40px;
    left: 0;

    background: #ffffff;

    min-width: 230px;

    list-style: none;

    padding: 15px 0;

    border-radius: 8px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);

    opacity: 0;
    visibility: hidden;

    transition: 0.3s;

    z-index: 999;
}

.dropdown-menu li{
    padding: 0;
}

.dropdown-menu li a{
    display: block;

    padding: 14px 22px;

    font-size: 14px;
    font-weight: 500;

    color: #222222;

    transition: 0.3s;
}

/* DROPDOWN HOVER */

.dropdown-menu li a:hover{
    background: rgba(11,44,107,0.06);

    color: #0b2c6b;

    padding-left: 28px;
}


/* SHOW DROPDOWN - DESKTOP ONLY */

@media (min-width: 1025px){

    .dropdown:hover .dropdown-menu{

        opacity: 1;
        visibility: visible;
        transform: translateY(0);

    }

}

/* BUTTON */

.nav-btn a{
    text-decoration: none;

    background: #f4b400;
    color: #ffffff;

    padding: 12px 28px;

    border-radius: 40px;

    font-weight: 600;

    transition: 0.3s;
}

.nav-btn a:hover{
    background: #0b2c6b;
}







/* =========================
   HERO SECTION
========================= */

.hero{
    width: 100%;
    height: 95vh;
    position: relative;
    overflow: hidden;
}

/* HERO SLIDE */

.hero-slide{
    width: 100%;
    height: 100%;

    position: relative;

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: flex-start;
}

/* OVERLAY */

.overlay{
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background:
linear-gradient(
    to right,
    rgba(0,0,0,0.72),
    rgba(0,0,0,0.30)
);
}

/* HERO CONTENT */

.hero-content{
    position: relative;
    z-index: 2;

    width: 90%;
    max-width: 950px;

    margin-left: 80px;
    padding-top: 180px;
}

/* BADGE */

.hero-badge{
    display: inline-block;

    background: rgba(255,255,255,0.12);

    border: 1px solid rgba(255,255,255,0.25);

    color: #ffffff;

    padding: 10px 22px;

    border-radius: 50px;

    font-size: 13px;
    font-weight: 500;

    letter-spacing: 1px;

    margin-bottom: 30px;

    backdrop-filter: blur(10px);
}

/* TITLE */

.hero-content h1{
    font-size: 74px;
    line-height: 1.15;

    font-weight: 800;

    color: #ffffff;

    margin-bottom: 35px;

    max-width: 950px;
}

/* YELLOW TEXT */

.hero-content h1 span{
    color: #f4b400;
}

/* DESCRIPTION */

.hero-content p{
    font-size: 19px;
    line-height: 1.9;

    color: rgba(255,255,255,0.92);

    max-width: 820px;

    margin-bottom: 45px;
}



/* =========================
   HERO CONTENT ANIMATION
========================= */

.hero-content{
    animation: heroFade 1.2s ease;
}

/* KEYFRAMES */

@keyframes heroFade{

    from{
        opacity: 0;
        transform: translateY(40px);
    }

    to{
        opacity: 1;
        transform: translateY(0);
    }

}



/* HERO IMAGE ANIMATION */

.hero-slide{
    animation: heroZoom 8s ease-in-out infinite;
}


/* HERO ZOOM */

@keyframes heroZoom{

    0%{
        transform: scale(1);
    }

    100%{
        transform: scale(1.05);
    }

}


/* BUTTON AREA */

.hero-buttons{
    display: flex;
    gap: 14px;
}

/* ALL BUTTONS */

.hero-buttons a{
    display: inline-flex;
    align-items: center;
    gap: 10px;

    text-decoration: none;

    padding: 14px 24px;

    border-radius: 50px;

    font-size: 15px;
    font-weight: 600;

    transition: 0.3s ease;
    white-space: nowrap;
}

/* PRIMARY BUTTON */

.btn-primary{
    background: #0b2c6b;
    color: #ffffff;
}

.btn-primary:hover{
    background: #ffffff;
    color: #0b2c6b;
}

/* YELLOW BUTTON */

.btn-yellow{
    background: #f4b400;
    color: #ffffff;
}

.btn-yellow:hover{
    background: #ffffff;
    color: #0b2c6b;
}

/* OUTLINE BUTTON */

.btn-outline{
    border: 2px solid rgba(255,255,255,0.35);
    color: #ffffff;
}

.btn-outline:hover{
    background: #ffffff;
    color: #0b2c6b;
}





/* SLIDES */

.hero-slide{
    position: absolute;

    top: 0;
    left: 0;

    opacity: 0;

    transition: opacity 1.5s ease-in-out;
}

/* ACTIVE SLIDE */

.hero-slide.active{
    opacity: 1;
    z-index: 1;
}




/* =========================
   HERO DOTS
========================= */

.hero-dots{
    position: absolute;

    bottom: 40px;
    left: 80px;

    z-index: 5;

    display: flex;
    gap: 12px;
}

/* DOT */

.dot{
    width: 14px;
    height: 14px;

    border-radius: 50%;

    background: rgba(255,255,255,0.4);

    cursor: pointer;

    transition: 0.3s;
}

/* ACTIVE DOT */

.active-dot{
    background: #f4b400;
}





/* =========================
   ABOUT PREVIEW
========================= */

.about-preview{
    width: 100%;
    padding: 80px 0 40px;
    background: #ffffff;
}

/* CONTAINER */

.about-container{
    width: 90%;
    margin: auto;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 70px;
}

/* IMAGE */

.about-image{
    flex: 1;
}

.about-image img{
    width: 100%;

    border-radius: 20px;

    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* CONTENT */

.about-content{
    flex: 1;
}

/* TAG */

.section-tag{
    display: inline-block;

    color: #0b2c6b;

    font-size: 14px;
    font-weight: 600;

    margin-bottom: 20px;
}

/* TITLE */

.about-content h2{
    font-size: 48px;
    line-height: 1.2;

    color: #0b2c6b;

    margin-bottom: 14px;
}

/* YELLOW LINE */

.title-line{
    width: 70px;
    height: 4px;

    background: #f4b400;

    border-radius: 20px;

    margin-bottom: 30px;
}

/* TEXT */

.about-content p{
    font-size: 20px;
    line-height: 1.9;

    color: #555555;

    margin-bottom: 35px;
}

/* BUTTON */

.about-btn{
    display: inline-block;

    text-decoration: none;

    background: #0b2c6b;
    color: #ffffff;

    padding: 15px 35px;

    border-radius: 50px;

    font-weight: 600;

    transition: 0.3s;
}

.about-btn:hover{
    background: #f4b400;
}






/* CONTAINER */

.vm-container{
    width: 90%;
    margin: auto;

    display: flex;
    gap: 30px;
}

/* CARD */

.vm-card{
    flex: 1;

    background: #f5f7fa;

    padding: 45px;

    border-radius: 20px;

    transition: 0.3s;

    display: flex;
    align-items: flex-start;
    gap: 25px;
}

/* HOVER */

.vm-card:hover{
    transform: translateY(-5px);
}

/* ICON */

.vm-icon{
    width: 70px;
    height: 70px;

    background: #0b2c6b;

    color: #ffffff;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;

    flex-shrink: 0;
    margin-top: 45px;
}

/* TITLE */

.vm-card h3{
    font-size: 30px;

    color: #0b2c6b;

    margin-bottom: 20px;
}

/* TEXT */

.vm-card p{
    font-size: 17px;
    line-height: 1.9;

    color: #555555;
}


/* =========================
   VISION & MISSION
========================= */

.vision-mission{
    width: 100%;
    padding-bottom: 40px;
    background: #ffffff;
}



/* =========================
   SERVICES
========================= */

.services{
    width: 100%;
    padding: 60px 0;
    background: #f5f7fa;
}


/* HEADER */

.services-header{
    width: 90%;
    max-width: 800px;

    margin: auto;

    text-align: center;

    margin-bottom: 70px;
    padding-top: 0px;

}

/* TITLE */

.services-header h2{
    font-size: 48px;

    color: #0b2c6b;

    margin-bottom: 15px;
}

/* CENTER LINE */

.center-line{
    margin-left: auto;
    margin-right: auto;
}

/* TEXT */

.services-header p{
    font-size: 17px;
    line-height: 1.9;

    color: #555555;

    margin-top: 30px;
}


/* STICKY HEADER */

.header{
    position: relative;

    width: 100%;

    z-index: 999;

    transition: all 0.4s ease;
}

/* FIXED HEADER */

.header.sticky{
    position: fixed;

    top: 0;
    left: 0;

    background: #ffffff;

    animation: slideDown 0.4s ease;

    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* ANIMATION */

@keyframes slideDown{

    from{
        transform: translateY(-100%);
    }

    to{
        transform: translateY(0);
    }

}

/* CONTAINER */

.services-container{
    width: 92%;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(6, 1fr);

    gap: 20px;
}

/* CARD */

.service-card{
    background: #ffffff;

    padding: 35px 22px;    
    border-radius: 20px;

    text-align: center;

    transition: 0.3s;

    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* HOVER */

.service-card:hover{
    transform: translateY(-8px);
}

/* ICON */

.service-icon{
    width: 80px;
    height: 80px;

    margin: auto;

    background: #0b2c6b;
    color: #ffffff;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;

    margin-bottom: 30px;
}

/* TITLE */

.service-card h3{
    font-size: 18px;

    color: #0b2c6b;

    margin-bottom: 20px;
}

/* TEXT */

.service-card p{
    font-size: 14px;
    line-height: 1.8;

    color: #555555;
}






/* =========================
   WHY JOIN PADCOG
========================= */

.join-section{
    width: 100%;

    padding: 10px 0;

    background: #0b2c6b;
}

/* CONTAINER */

.join-container{
    width: 90%;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 70px;
}

/* CONTENT */

.join-content{
    flex: 1;
}

/* TITLE */

.join-content h2{
    font-size: 48px;

    color: #ffffff;

    margin-bottom: 15px;
}

/* TEXT */

.join-content p{
    font-size: 17px;
    line-height: 1.9;

    color: rgba(255,255,255,0.88);

    margin-bottom: 35px;
}

/* BENEFITS */
.join-benefits{
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px 40px;

    margin-bottom: 35px;
}

/* ITEM */

.benefit-item{
    display: flex;
    align-items: center;

    gap: 15px;

    margin-bottom: 20px;
}

/* ICON */

.benefit-item i{
    color: #f4b400;

    font-size: 22px;
}

/* TEXT */

.benefit-item span{
    font-size: 17px;
    font-weight: 500;

    color: #ffffff;
}

/* IMAGE */

.join-image{
    flex: 1;
}

.join-image img{
    width: 100%;

    border-radius: 20px;

    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}


/* =========================
   NEWS SECTION
========================= */

.news-section{
    width: 100%;

    padding: 100px 0;

    background: #ffffff;
}

/* HEADER */

.news-header{
    width: 90%;
    max-width: 800px;

    margin: auto;

    text-align: center;

    margin-bottom: 70px;
}

/* TITLE */

.news-header h2{
    font-size: 48px;

    color: #0b2c6b;

    margin-bottom: 15px;
}

/* TEXT */

.news-header p{
    font-size: 17px;
    line-height: 1.9;

    color: #555555;

    margin-top: 30px;
}

/* GRID */

.news-container{
    width: 90%;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 30px;
}

/* CARD */

.news-card{
    background: #ffffff;

    border-radius: 20px;

    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0,0,0,0.06);

    transition: 0.3s;
    position: relative;
    overflow: visible;
}

/* HOVER */

.news-card:hover{
    transform: translateY(-6px);
}

/* IMAGE */

.news-image img{
    width: 100%;
    height: 240px;

    object-fit: cover;

    display: block;

    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.news-image{
    position: relative;
    overflow: visible;
    z-index: 5;
}

/* DATE CARD */

.news-badge{
    display: flex;
    flex-direction: column;
    position: absolute;

    top: 15px;
    right: 15px;

    width: 55px;

    background: #ffffff;

    border-radius: 6px;

    overflow: hidden;

    text-align: center;

    box-shadow: 0 6px 18px rgba(0,0,0,0.12);

    z-index: 20;
}

/* DAY */

.news-badge .day{
    display: block;

    font-size: 20px;
    font-weight: 700;

    color: #0b2c6b;

    padding: 8px 0 4px;
}

/* MONTH */

.news-badge .month{
    display: block;

    background: #f5f7fa;

    font-size: 12px;
    font-weight: 700;

    color: #555555;

    padding: 6px 0;
}

/* SHORT YELLOW LINE */

.news-badge .month::before{
    content: '';

    display: block;

    width: 22px;
    height: 3px;

    background: #f4b400;

    margin: 0 auto 6px;

    border-radius: 20px;
}

/* CONTENT */

.news-content{
    padding: 30px;
}

/* DATE */

.news-date{
    display: inline-block;

    font-size: 14px;
    font-weight: 500;

    color: #f4b400;

    margin-bottom: 18px;
}

/* TITLE */

.news-content h3{
    font-size: 24px;
    line-height: 1.4;

    color: #0b2c6b;

    margin-bottom: 18px;
}

/* TEXT */

.news-content p{
    font-size: 16px;
    line-height: 1.8;

    color: #555555;

    margin-bottom: 25px;
}

/* LINK */

.news-content a{
    text-decoration: none;

    color: #0b2c6b;

    font-weight: 600;
}

















/* =========================
   QUICK ACCESS
========================= */

.quick-access{
    width: 100%;

    padding: 80px 0;

    background: #ffffff;
}

/* HEADER */

.quick-header{
    width: 90%;
    margin: auto;

    margin-bottom: 35px;
}

/* TITLE */

.quick-header h2{
    font-size: 42px;

    color: #0b2c6b;
}

/* GRID */

.quick-container{
    width: 90%;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(6, 1fr);

    gap: 20px;
}

/* CARD */

.quick-card{
    background: #ffffff;

    border: 1px solid #e5e7eb;

    border-radius: 10px;

    padding: 28px 15px;

    text-align: center;

    transition: 0.3s;
    text-decoration: none;

    color: inherit;

    display: flex;
}



/* HOVER */

.quick-card:hover{
    transform: translateY(-5px);

    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ICON */

.quick-card i{
    font-size: 2.2rem;

    color: #0b2c6b;

    margin-bottom: 18px;
}

.quick-card{

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 24px;

    min-height: 110px;

}

/* TEXT */

.quick-card span{
    display: block;

    font-size: 1rem;
    font-weight: 600;

    line-height: 1.5;

    color: #333333;
}










/* =========================
   FOOTER
========================= */

.footer{
    width: 100%;

    background: #071d49;

    color: #ffffff;

    padding-top: 80px;
}

/* CONTAINER */

.footer-container{
    width: 90%;
    margin: auto;

    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;

    gap: 50px;

    padding-bottom: 60px;
}

/* LOGO */

.footer-about img{
    width: 85px;

    margin-bottom: 25px;
}

/* TEXT */

.footer-about p{
    font-size: 16px;
    line-height: 1.9;

    color: rgba(255,255,255,0.82);

    margin-bottom: 30px;
}

/* SOCIALS */

.footer-socials{
    display: flex;
    gap: 15px;
}

/* ICON */

.footer-socials a{
    width: 42px;
    height: 42px;

    background: rgba(255,255,255,0.08);

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    text-decoration: none;

    transition: 0.3s;
}

/* HOVER */

.footer-socials a:hover{
    background: #f4b400;
}

/* TITLE */

.footer-col h3{
    font-size: 24px;

    margin-bottom: 28px;
}

/* LIST */

.footer-col ul{
    list-style: none;
}

/* LIST ITEM */

.footer-col ul li{
    margin-bottom: 18px;
}

/* LINKS */

.footer-col ul li a{
    text-decoration: none;

    color: rgba(255,255,255,0.82);

    transition: 0.3s;
}

/* HOVER */

.footer-col ul li a:hover{
    color: #f4b400;
}

/* CONTACT */

.footer-contact li{
    display: flex;
    align-items: flex-start;

    gap: 12px;

    color: rgba(255,255,255,0.82);

    line-height: 1.7;
}

/* COPYRIGHT */

.footer-bottom{
    border-top: 1px solid rgba(255,255,255,0.08);

    text-align: center;

    padding: 25px 0;
}

/* COPYRIGHT TEXT */

.footer-bottom p{
    font-size: 15px;

    color: rgba(255,255,255,0.7);
}







/* =========================================
   RESPONSIVE DESIGN
========================================= */

/* LARGE TABLETS */

@media (max-width: 1200px){

    .navbar,
    .top-bar-container,
    .about-container,
    .vm-container,
    .core-container,
    .join-container,
    .news-container,
    .quick-container,
    .footer-container{
        width: 95%;
    }




}



/* TABLETS */

@media (max-width: 1024px){

    /* NAVBAR */
/* TOP BAR */

.top-bar-container{
    flex-direction: column;

    gap: 12px;

    text-align: center;
}

.top-left,
.top-right{
    justify-content: center;

    flex-wrap: wrap;
}

/* NAVBAR */

.navbar{
    display: grid;

    grid-template-columns: 1fr auto 1fr;

    align-items: center;
}

/* LOGO */

.logo{
    justify-self: start;
}

/* JOIN BUTTON */

.nav-btn{
    display: flex;

    justify-content: center;
}

/* BUTTON */

.nav-btn a{
    padding: 12px 32px;
}

/* HAMBURGER */

.menu-toggle{
    margin-left: auto;

    order: 2;
}
  

    /* HERO */

    .hero-content{
        width: 80%;
    }

    .hero-content h1{
        font-size: 54px;
    }


    /* ABOUT */

    .about-container{

        flex-direction: column;

        gap: 40px;

    }

    .about-image,
    .about-content{

        width: 100%;

    }

    /* VISION MISSION */

    .vm-container{
        flex-direction: column;
    }

    /* CORE FUNCTIONS */

    .core-container{
        grid-template-columns: repeat(3, 1fr);
    }

    /* JOIN */


    .join-container{
        flex-direction: column;
        gap: 50px;
    }


    /* NEWS */

    .news-container{
        grid-template-columns: repeat(2, 1fr);
    }

    /* QUICK ACCESS */

    .quick-container{
        grid-template-columns: repeat(3, 1fr);
    }

    /* FOOTER */

    .footer-container{
        grid-template-columns: repeat(2, 1fr);
    }





    .dropdown-menu{

    position: static !important;

    opacity: 1;

    visibility: visible;

    transform: none;

    display: none;

    width: 100%;

    box-shadow: none;

    background: #f8f9fb;

    margin-top: 5px;

    border-radius: 8px;

}









}



/* MOBILE */

@media (max-width: 768px){

    /* TOP BAR */

    .top-bar{
        display: block;
    }

    .top-left{
    flex-direction: column;

    gap: 8px;
}

    /* NAVBAR */

    .navbar{
        padding: 18px 0;
    }

   

    /* HERO */

    .hero{
        height: auto;
    }

    .hero-slide{
        padding-top: 140px;
        padding-bottom: 120px;
    }

    .hero-content{
        width: 90%;
    }

    .hero-content h1{
        font-size: 42px;
        line-height: 1.3;
    }

    .hero-content p{
        font-size: 17px;
    }

    .hero-buttons{
        flex-direction: column;
        align-items: flex-start;
    }

    /* ABOUT */

    .about-content h2{
        font-size: 40px;
    }

    /* CORE */

    .core-container{
        grid-template-columns: repeat(2, 1fr);
    }

    /* NEWS */

    .news-container{
        grid-template-columns: 1fr;
    }

    /* QUICK */

    .quick-container{
        grid-template-columns: repeat(2, 1fr);
    }

    /* FOOTER */

    .footer-container{
        grid-template-columns: 1fr;
    }


    .about-content h2{

    font-size: 32px;

    }

    .about-content p{

        font-size: 16px;

        line-height: 1.8;

    }


.core-values-container{
    grid-template-columns: 1fr;
}
}



/* SMALL MOBILE */

@media (max-width: 576px){

    .hero-content h1{
        font-size: 34px;
    }

    .hero-content p{
        font-size: 16px;
    }

    .about-content h2,
    .news-header h2,
    .quick-header h2{
        font-size: 34px;
    }

    .core-container{
        grid-template-columns: 1fr;
    }

    .quick-container{
        grid-template-columns: 1fr;
    }

}






/* =========================================
   SCROLL ANIMATIONS
========================================= */

/* HIDDEN STATE */

.reveal{
    opacity: 0;

    transform: translateY(100px);

    transition:
        opacity 1s ease,
        transform 1s ease;
}

/* ACTIVE */

.reveal.active{
    opacity: 1;

    transform: translateY(0);
}


/*===========================================================================================================================================================================*/

/* =========================
   ABOUT US PAGE HERO
========================= */

.page-hero{
    width: 100%;
    height: 420px;

    position: relative;

    background:
        url('../images/hero/hero1.png');

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    overflow: hidden;
}

/* OVERLAY */

.page-overlay{
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background:
        linear-gradient(
            rgba(0,0,0,0.70),
            rgba(0,0,0,0.70)
        );
}

/* CONTENT */

.page-hero-content{
    position: relative;

    z-index: 2;
}

/* TITLE */

.page-hero-content h1{
    font-size: 64px;

    color: #ffffff;

    margin-bottom: 18px;
}

/* TEXT */

.page-hero-content p{
    font-size: 20px;

    color: rgba(255,255,255,0.88);
}




/* =========================
   ABOUT MAIN
========================= */

.about-main{
    width: 100%;

    padding: 120px 0;

    background: #ffffff;
}

/* CONTAINER */

.about-main-container{
    width: 90%;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 70px;
}

/* IMAGE */

.about-main-image{
    flex: 1;
}

.about-main-image img{
    width: 100%;

    border-radius: 20px;

    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* CONTENT */

.about-main-content{
    flex: 1;
}

/* TITLE */

.about-main-content h2{
    font-size: 50px;

    color: #0b2c6b;

    margin-bottom: 15px;
}

/* TEXT */

.about-main-content p{
    font-size: 18px;
    line-height: 1.9;

    color: #555555;

    margin-bottom: 28px;
}







/* =========================
   ABOUT VISION & MISSION
========================= */

.about-vm{
    width: 100%;

    padding: 60px 0;
    background: #ffffff;
}

/* CONTAINER */

.about-vm-container{
    width: 90%;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 35px;
}

/* CARD */

.about-vm-card{
    background: #f5f7fa;

    padding: 50px;

    border-radius: 25px;

    transition: 0.3s;
}

/* HOVER */

.about-vm-card:hover{
    transform: translateY(-6px);
}

/* ICON */

.about-vm-icon{
    width: 85px;
    height: 85px;

    background: #0b2c6b;

    color: #ffffff;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 34px;

    margin-bottom: 30px;
}

/* TITLE */

.about-vm-card h3{
    font-size: 34px;

    color: #0b2c6b;

    margin-bottom: 20px;
}

/* TEXT */

.about-vm-card p{
    font-size: 17px;
    line-height: 1.9;

    color: #555555;
}





/* =========================
   CORE VALUES
========================= */

.core-values{
    width: 100%;

    padding: 120px 0;

    background: #f8fafc;
}

/* HEADER */

.core-values-header{
    width: 90%;
    max-width: 800px;

    margin: auto;

    text-align: center;

    margin-bottom: 70px;
}

/* TITLE */

.core-values-header h2{
    font-size: 48px;

    color: #0b2c6b;

    margin-top: 15px;
}

/* GRID */

.core-values-container{
    width: 90%;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 30px;
}

/* CARD */

.core-value-card{
    background: #ffffff;

    padding: 45px 35px;

    border-radius: 20px;

    text-align: center;

    transition: 0.3s;

    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* HOVER */

.core-value-card:hover{
    transform: translateY(-8px);
}

/* ICON */

.core-value-card i{
    font-size: 42px;

    color: #0b2c6b;

    margin-bottom: 25px;
}

/* TITLE */

.core-value-card h3{
    font-size: 24px;

    color: #0b2c6b;

    margin-bottom: 20px;
}

/* TEXT */

.core-value-card p{
    font-size: 16px;
    line-height: 1.8;

    color: #555555;
}


/* =========================
   STRATEGIC OBJECTIVES
========================= */

.objectives-section{
    width: 100%;

    padding: 120px 0;

    background: #ffffff;
}

/* CONTAINER */

.objectives-container{
    width: 90%;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1.2fr;

    gap: 70px;

    align-items: center;
}

/* LEFT */

.objectives-content h2{
    font-size: 50px;

    color: #0b2c6b;

    margin-bottom: 15px;
}

/* TEXT */

.objectives-content p{
    font-size: 18px;
    line-height: 1.9;

    color: #555555;
}

/* RIGHT */

.objectives-list{
    display: flex;
    flex-direction: column;

    gap: 25px;
}

/* ITEM */

.objective-item{
    display: flex;
    align-items: flex-start;

    gap: 18px;

    background: #f8fafc;

    padding: 25px 30px;

    border-radius: 18px;

    transition: 0.3s;
}

/* HOVER */

.objective-item:hover{
    transform: translateX(8px);
}

/* ICON */

.objective-item i{
    font-size: 22px;

    color: #f4b400;

    margin-top: 4px;
}

/* TEXT */

.objective-item span{
    font-size: 17px;
    line-height: 1.8;

    color: #333333;
}






/* =========================
   PUBLIC HEALTH ROLE
========================= */

.public-health-role{
    width: 100%;

    padding: 120px 0;

    background: #0b2c6b;
}

/* CONTAINER */

.public-health-container{
    width: 90%;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;
}

/* IMAGE */

.public-health-image img{
    width: 100%;

    border-radius: 20px;

    box-shadow: 0 15px 40px rgba(0,0,0,0.18);
}

/* LIGHT TAG */

.light-tag{
    color: #ffffff;
}

/* TITLE */

.public-health-content h2{
    font-size: 50px;
    line-height: 1.3;

    color: #ffffff;

    margin-bottom: 15px;
}

/* TEXT */

.public-health-content p{
    font-size: 18px;
    line-height: 1.9;

    color: rgba(255,255,255,0.88);

    margin-bottom: 28px;
}

/* LINE */

.public-health-content .title-line{
    margin-bottom: 35px;
}




/* =========================
   WHY PADCOG MATTERS
========================= */

.why-padcog{
    width: 100%;

    padding: 120px 0;

    background: #ffffff;
}

/* CONTAINER */

.why-padcog-container{
    width: 90%;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;
}

/* TITLE */

.why-padcog-content h2{
    font-size: 50px;
    line-height: 1.3;

    color: #0b2c6b;

    margin-bottom: 15px;
}

/* TEXT */

.why-padcog-content p{
    font-size: 18px;
    line-height: 1.9;

    color: #555555;

    margin-bottom: 28px;
}

/* STATS */

.why-padcog-stats{
    display: flex;
    flex-direction: column;

    gap: 25px;
}

/* CARD */

.why-stat-card{
    background: #f8fafc;

    padding: 35px;

    border-radius: 20px;

    transition: 0.3s;
}

/* HOVER */

.why-stat-card:hover{
    transform: translateY(-6px);
}

/* TITLE */

.why-stat-card h3{
    font-size: 26px;

    color: #0b2c6b;

    margin-bottom: 15px;
}

/* TEXT */

.why-stat-card p{
    font-size: 16px;
    line-height: 1.8;

    color: #555555;
}





/* =========================
   ABOUT CTA
========================= */

.about-cta{
    width: 100%;

    padding: 120px 0;

    background:
        linear-gradient(
            rgba(11,44,107,0.92),
            rgba(11,44,107,0.92)
        ),
        url('../images/hero/hero2.png');

    background-size: cover;
    background-position: center;

    text-align: center;
}

/* CONTENT */

.about-cta-content{
    width: 90%;
    max-width: 900px;

    margin: auto;
}

/* TITLE */

.about-cta-content h2{
    font-size: 58px;

    color: #ffffff;

    margin-bottom: 25px;
}

/* TEXT */

.about-cta-content p{
    font-size: 20px;
    line-height: 1.9;

    color: rgba(255,255,255,0.88);

    margin-bottom: 45px;
}

/* BUTTONS */

.about-cta-buttons{
    display: flex;
    justify-content: center;

    gap: 18px;

    flex-wrap: wrap;
}

/* CTA BUTTON LINKS */

.about-cta-buttons a{
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 16px 32px;

    border-radius: 50px;

    text-decoration: none;

    font-size: 16px;
    font-weight: 600;
}






/*=============================================================================================*/




/* =========================
   LEADERSHIP INTRO
========================= */

.leadership-intro{
    width: 100%;

    padding: 120px 0;

    background: #ffffff;
}

/* CONTAINER */

.leadership-intro-container{
    width: 90%;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;
}

/* TITLE */

.leadership-intro-content h2{
    font-size: 50px;

    color: #0b2c6b;

    margin-bottom: 15px;
}

/* TEXT */

.leadership-intro-content p{
    font-size: 18px;
    line-height: 1.9;

    color: #555555;

    margin-bottom: 28px;
}

/* IMAGE */

.leadership-intro-image img{
    width: 100%;

    border-radius: 20px;

    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}



/* =========================
   EXECUTIVES SECTION
========================= */

.executives-section{
    width: 100%;

    padding: 120px 0;

    background: #f8fafc;
}

/* HEADER */

.executives-header{
    width: 90%;
    max-width: 850px;

    margin: auto;

    text-align: center;

    margin-bottom: 70px;
}

/* TITLE */

.executives-header h2{
    font-size: 50px;

    color: #0b2c6b;

    margin-top: 15px;
    margin-bottom: 20px;
}

/* TEXT */

.executives-header p{
    font-size: 18px;
    line-height: 1.9;

    color: #555555;
}

/* GRID */

.executives-container{
    width: 90%;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 35px;
}

/* CARD */

.executive-card{
    background: #ffffff;

    border-radius: 25px;

    overflow: hidden;

    transition: 0.3s;

    box-shadow: 0 12px 35px rgba(0,0,0,0.05);
}

/* HOVER */

.executive-card:hover{
    transform: translateY(-10px);
}

/* IMAGE */

.executive-image img{
    width: 100%;
    height: 320px;

    object-fit: cover;
}

/* CONTENT */

.executive-content{
    padding: 35px 30px;
}

/* NAME */

.executive-content h3{
    font-size: 26px;

    color: #0b2c6b;

    margin-bottom: 10px;
}

/* POSITION */

.executive-content span{
    display: inline-block;

    font-size: 15px;
    font-weight: 600;

    color: #f4b400;

    margin-bottom: 20px;
}

/* TEXT */

.executive-content p{
    font-size: 16px;
    line-height: 1.8;

    color: #555555;
}



/* =========================
   PRESIDENT MESSAGE
========================= */

.president-message{
    width: 100%;

    padding: 120px 0;

    background: #0b2c6b;
}

/* CONTAINER */

.president-container{
    width: 90%;
    margin: auto;

    display: grid;
    grid-template-columns: 420px 1fr;

    gap: 70px;

    align-items: center;
}

/* IMAGE */

.president-image img{
    width: 100%;

    border-radius: 25px;

    box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}

/* TITLE */

.president-content h2{
    font-size: 50px;
    line-height: 1.3;

    color: #ffffff;

    margin-bottom: 15px;
}

/* TEXT */

.president-content p{
    font-size: 18px;
    line-height: 1.9;

    color: rgba(255,255,255,0.88);

    margin-bottom: 28px;
}

/* SIGNATURE */

.president-signature{
    margin-top: 40px;
}

/* NAME */

.president-signature h3{
    font-size: 28px;

    color: #ffffff;

    margin-bottom: 10px;
}

/* POSITION */

.president-signature span{
    font-size: 16px;

    color: #f4b400;

    font-weight: 600;
}





















/* ===================== */
/* PRIMARY BUTTON */
/* ===================== */

.btn-primary{
    display: inline-block;
    background: #f4b400;
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-primary:hover{
    background: #0d2c6c;
    transform: translateY(-3px);
    color: white;
}


/* =========================
   RESOURCES HUB
========================= */

.resources-hub{
    width: 100%;
    padding: 100px 5%;
    background: #f5f7fb;
}

/* HEADER */

.resources-header{
    max-width: 900px;
    margin: auto;
    text-align: center;
    margin-bottom: 50px;
}

.resources-header h2{
    font-size: 54px;
    line-height: 1.2;
    color: #0b2c6b;
    margin-top: 15px;
    margin-bottom: 20px;
}

.resources-header p{
    font-size: 18px;
    line-height: 1.9;
    color: #555;
    margin-top: 30px;
}

/* SEARCH AREA */

.resources-search-area{
    max-width: 850px;
    margin: auto;
    margin-bottom: 45px;
}

.resources-search-box{
    background: #ffffff;
    border-radius: 18px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.resources-search-box i{
    color: #0b2c6b;
    font-size: 18px;
}

.resources-search-box input{
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    font-family: inherit;
    background: transparent;
}

/* CATEGORIES */

.resource-categories{
    max-width: 1100px;
    margin: auto;

    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.resource-filter{
    background: #ffffff;
    border: 1px solid #d9dfeb;
    padding: 14px 22px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: #444;
    cursor: pointer;
    transition: 0.3s ease;
}

.resource-filter:hover{
    background: #0b2c6b;
    color: #ffffff;
    border-color: #0b2c6b;
}

.resource-filter.active{
    background: #f4b400;
    color: #ffffff;
    border-color: #f4b400;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width: 768px){

    .resources-hub{
        padding: 70px 20px;
    }

    .resources-header h2{
        font-size: 40px;
    }

    .resources-header p{
        font-size: 16px;
    }

    .resources-search-box{
        padding: 16px 18px;
    }

    .resource-categories{
        justify-content: flex-start;
    }

}


/* =========================
   FEATURED RESOURCES
========================= */

.featured-resources{
    width: 100%;
    padding: 100px 5%;
    background: #ffffff;
}

/* HEADER */

.featured-header{
    max-width: 850px;
    margin: auto;
    text-align: center;
    margin-bottom: 70px;
}

.featured-header h2{
    font-size: 52px;
    color: #0b2c6b;
    margin-top: 15px;
    margin-bottom: 20px;
}

.featured-header p{
    font-size: 18px;
    line-height: 1.9;
    color: #555;
    margin-top: 30px;
}




/* ICON */

.resource-icon{
    width: 80px;
    height: 80px;
    background: #0b2c6b;
    color: #ffffff;
    border-radius: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;

    margin-bottom: 30px;
}

/* TYPE */

.resource-type{
    display: inline-block;
    background: rgba(244,180,0,0.12);
    color: #c79200;
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 22px;
}

/* TITLE */

.resource-content h3{
    font-size: 28px;
    line-height: 1.4;
    color: #0b2c6b;
    margin-bottom: 18px;
}



/* META */

.resource-meta{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.resource-meta span,
.resource-meta a{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #0b2c6b;
    text-decoration: none;
    transition: 0.3s ease;
}


.resource-meta a:hover{
    color: #f4b400;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width: 1100px){

    .featured-resources-grid{
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width: 768px){

    .featured-resources{
        padding: 70px 20px;
    }

    .featured-header h2{
        font-size: 40px;
    }

    .featured-header p{
        font-size: 16px;
    }

    .featured-resources-grid{
        grid-template-columns: 1fr;
    }

    .resource-card{
        padding: 30px;
    }

}


/* =========================
   NEWS FEED  revisit this to know the sheet linked to it as it confuses with news page
========================= */

.publications-section{
    width: 100%;
    padding: 100px 5%;
    background: #ffffff;
}

/* HEADER */

.publications-header{
    max-width: 850px;
    margin: auto;
    text-align: center;
    margin-bottom: 70px;
}

.publications-header h2{
    font-size: 52px;
    color: #0b2c6b;
    margin-top: 15px;
    margin-bottom: 20px;
}

.publications-header p{
    font-size: 18px;
    line-height: 1.9;
    color: #555;
    margin-top: 30px;
}

/* TABLE */

.publications-table{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

/* ITEM */

.publication-item{
    background: #f7f9fc;
    border-radius: 24px;
    padding: 30px 35px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;

    border: 1px solid #e6ebf3;

    transition: 0.3s ease;

    max-width: 1100px;
    margin: auto;
    width: 100%;
}

.publication-item:hover{
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* LEFT */

.publication-left{
    display: flex;
    align-items: center;
    gap: 25px;
}

/* ICON */

.publication-icon{
    width: 75px;
    height: 75px;

    background: #0b2c6b;
    color: #ffffff;

    border-radius: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;

    flex-shrink: 0;
}

/* INFO */

.publication-info h3{
    font-size: 26px;
    line-height: 1.5;
    color: #0b2c6b;
    margin-bottom: 10px;
}

.publication-info span{
    font-size: 15px;
    color: #777;
}

/* BUTTON */

.publication-btn{
    background: #f4b400;
    color: #ffffff;

    padding: 14px 24px;

    border-radius: 50px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition: 0.3s ease;

    white-space: nowrap;
}

.publication-btn:hover{
    background: #0b2c6b;
    transform: translateY(-2px);
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width: 900px){

    .publication-item{
        flex-direction: column;
        align-items: flex-start;
    }

}

@media(max-width: 768px){

    .publications-section{
        padding: 70px 20px;
    }

    .publications-header h2{
        font-size: 40px;
    }

    .publications-header p{
        font-size: 16px;
    }

    .publication-item{
        padding: 25px;
    }

    .publication-left{
        flex-direction: column;
        align-items: flex-start;
    }

    .publication-info h3{
        font-size: 22px;
    }

}



/* NEWS GRID */

.news-grid{
    width: 90%;
    margin: auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;
}




/* BACK BUTTON */

.back-news-btn{
    display: inline-block;

    background: #0b2c6b;
    color: #ffffff;

    text-decoration: none;

    padding: 15px 28px;

    border-radius: 50px;

    font-weight: 700;

    transition: 0.3s ease;
}

.back-news-btn:hover{
    background: #f4b400;
}

/* MOBILE */

@media(max-width: 768px){

    .news-details-section{
        padding: 60px 20px;
    }

    .news-details-image img{
        height: 260px;
    }

    .news-details-content{
        padding: 30px;
    }

    .news-details-content h1{
        font-size: 34px;
    }

    .news-details-content p{
        font-size: 16px;
    }

}





/* =========================
   NEWS DETAILS PAGE
========================= */

.news-details-section{
    width: 100%;
    padding: 100px 0;
    background: #f5f7fa;
}

.news-details-container{
    width: 85%;
    max-width: 1100px;
    margin: auto;

    background: #ffffff;

    border-radius: 24px;

    overflow: hidden;

    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

.news-details-image img{
    width: 100%;
    height: 500px;

    object-fit: cover;
    display: block;
}

.news-details-content{
    padding: 50px;
}

.news-details-date{
    display: inline-block;

    background: #f4b400;
    color: #ffffff;

    padding: 8px 18px;

    border-radius: 30px;

    font-size: 14px;
    font-weight: 600;

    margin-bottom: 25px;
}

.news-details-content h1{
    font-size: 48px;
    line-height: 1.3;

    color: #0b2c6b;

    margin-bottom: 30px;
}

.news-details-content p{
    font-size: 18px;
    line-height: 2;

    color: #555555;

    white-space: pre-line;
}

.back-news-btn{
    display: inline-block;

    margin-top: 40px;

    background: #0b2c6b;
    color: #ffffff;

    padding: 14px 28px;

    border-radius: 40px;

    text-decoration: none;

    font-weight: 600;

    transition: 0.3s ease;
}

.back-news-btn:hover{
    background: #f4b400;
}

/* MOBILE */

@media(max-width:768px){

    .news-details-content{
        padding: 30px 22px;
    }

    .news-details-content h1{
        font-size: 32px;
    }

    .news-details-content p{
        font-size: 16px;
    }

    .news-details-image img{
        height: 280px;
    }

}






/* =========================
   MEDIA GALLERY ALBUMS
========================= */

.media-gallery-section{
    width: 100%;
    padding: 50px 0 100px;
    background: #f5f7fa;
}

/* GRID */

.media-gallery-grid{
    width: 92%;
    margin: auto;

    display: grid;

    grid-template-columns:
    repeat(auto-fit, minmax(320px, 1fr));

    gap: 35px;
}

/* CARD */

.media-album-card{
    background: #ffffff;

    border-radius: 24px;

    overflow: hidden;

    border: 2px solid #dbe7ff;

    transition: 0.4s ease;

    position: relative;
}

/* HOVER */

.media-album-card:hover{
    transform: translateY(-8px);

    box-shadow:
    0 15px 40px rgba(0,0,0,0.08);
}

/* IMAGE AREA */

.media-album-image{
    position: relative;

    padding: 18px;
}

/* IMAGE */

.media-album-image img{
    width: 100%;
    height: 320px;

    object-fit: cover;

    border-radius: 18px;

    display: block;
}

/* VIEW BUTTON */

.media-view-btn{
    position: absolute;

    right: 35px;
    bottom: 35px;

    background: #ffffff;

    color: #222222;

    text-decoration: none;

    padding: 14px 26px;

    border-radius: 40px;

    font-weight: 700;

    font-size: 18px;

    transition: 0.3s ease;
}

/* HOVER */

.media-view-btn:hover{
    background: #0b2c6b;
    color: #ffffff;
}

/* CONTENT */

.media-album-content{
    padding: 0 24px 30px;
}

/* TITLE */

.media-album-content h3{
    font-size: 28px;
    line-height: 1.3;

    color: #0b5e2b;

    margin-bottom: 18px;
}

/* TEXT */

.media-album-content p{
    font-size: 16px;

    color: #555555;

    margin-bottom: 14px;
}

/* IMAGE COUNT */

.media-album-content span{
    font-size: 18px;

    color: #6b7280;
}


.media-title-section{
    padding-top: 40px !important;
    padding-bottom: 0px !important;
}



/* =========================
   GALLERY VIEWER
========================= */

.gallery-viewer-section{
    width: 100%;
    min-height: 100vh;

    background: #111111;

    padding: 40px 0;
}

/* CONTAINER */

.gallery-viewer-container{
    width: 95%;
    max-width: 1500px;

    margin: auto;
}

/* TOP BAR */

.gallery-top-bar{
    display: flex;

    justify-content: space-between;
    align-items: center;

    margin-bottom: 30px;

    color: #ffffff;
}

/* TITLE */

.gallery-top-bar h1{
    font-size: 38px;
    margin-bottom: 10px;
}

/* COUNTER */

.gallery-top-bar span{
    color: rgba(255,255,255,0.72);

    font-size: 18px;
}

/* CLOSE BUTTON */

.gallery-close-btn{
    width: 55px;
    height: 55px;

    border-radius: 50%;

    background: rgba(255,255,255,0.08);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    text-decoration: none;

    font-size: 22px;

    transition: 0.3s ease;
}

/* HOVER */

.gallery-close-btn:hover{
    background: #ffffff;
    color: #111111;
}

/* MAIN IMAGE AREA */

.gallery-main-image{
    position: relative;

    width: 100%;
    height: 75vh;

    border-radius: 24px;

    overflow: hidden;

    background: #000000;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* MAIN IMAGE */

.gallery-main-image img{
    width: 100%;
    height: 100%;

    object-fit: contain;
}

/* NAVIGATION BUTTONS */

.gallery-nav{
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 60px;
    height: 60px;

    border: none;

    border-radius: 50%;

    background: rgba(255,255,255,0.12);

    color: #ffffff;

    font-size: 22px;

    cursor: pointer;

    z-index: 5;

    transition: 0.3s ease;
}

/* HOVER */

.gallery-nav:hover{
    background: #ffffff;
    color: #111111;
}

/* LEFT */

.prev-btn{
    left: 25px;
}

/* RIGHT */

.next-btn{
    right: 25px;
}

/* THUMBNAILS */

.gallery-thumbnails{
    display: flex;

    gap: 15px;

    margin-top: 25px;

    overflow-x: auto;

    padding-bottom: 10px;
}

/* THUMB */

.gallery-thumb{
    width: 120px;
    height: 90px;

    object-fit: cover;

    border-radius: 14px;

    cursor: pointer;

    opacity: 0.6;

    transition: 0.3s ease;

    border: 3px solid transparent;

    flex-shrink: 0;
}

/* ACTIVE */

.active-thumb{
    opacity: 1;

    border-color: #f4b400;
}

/* HOVER */

.gallery-thumb:hover{
    opacity: 1;
}

/* MOBILE */

@media(max-width:768px){

    .gallery-top-bar{
        flex-direction: column;
        align-items: flex-start;

        gap: 20px;
    }

    .gallery-top-bar h1{
        font-size: 28px;
    }

    .gallery-main-image{
        height: 55vh;
    }

    .gallery-nav{
        width: 50px;
        height: 50px;
    }

    .gallery-thumb{
        width: 90px;
        height: 70px;
    }

}






/* =========================
   CONTACT HERO TAG
========================= */

.page-hero .section-tag{
    display: inline-block;

    padding: 10px 22px;

    background: rgba(255,255,255,0.12);

    border: 1px solid rgba(255,255,255,0.25);

    border-radius: 40px;

    font-size: 14px;
    font-weight: 600;

    letter-spacing: 1px;

    margin-bottom: 22px;

    color: #ffffff;
}


/* =========================
   CONTACT SECTION
========================= */

.contact-section{
    width: 100%;

    padding: 100px 0;

    background: #f5f7fa;
}

/* CONTAINER */

.contact-container{
    width: 92%;
    max-width: 1300px;

    margin: auto;

    display: grid;

    grid-template-columns:
    repeat(auto-fit, minmax(400px, 1fr));

    gap: 50px;

    align-items: center;
}

/* =========================
   LEFT SIDE
========================= */

.contact-info h2{
    font-size: 52px;

    line-height: 1.2;

    color: #0b2c6b;

    margin: 25px 0;
}

.contact-info p{
    font-size: 18px;

    line-height: 1.9;

    color: #555555;

    margin-bottom: 40px;
}

/* CONTACT ITEM */

.contact-item{
    display: flex;

    align-items: flex-start;

    gap: 20px;

    margin-bottom: 30px;
}

/* ICON */

.contact-icon{
    width: 65px;
    height: 65px;

    border-radius: 18px;

    background: #0b2c6b;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    font-size: 22px;

    flex-shrink: 0;
}

/* ITEM TITLE */

.contact-item h3{
    font-size: 22px;

    margin-bottom: 8px;

    color: #111111;
}

/* ITEM TEXT */

.contact-item span{
    font-size: 17px;

    color: #666666;

    line-height: 1.7;
}

/* =========================
   FORM BOX
========================= */

.contact-form-box{
    background: #ffffff;

    padding: 50px;

    border-radius: 28px;

    box-shadow:
    0 15px 40px rgba(0,0,0,0.08);
}

/* FORM GROUP */

.form-group{
    margin-bottom: 25px;
}

/* INPUTS */

.form-group input,
.form-group textarea{
    width: 100%;

    padding: 18px 22px;

    border: 1px solid #dbe1ea;

    border-radius: 16px;

    outline: none;

    font-size: 16px;

    font-family: inherit;

    transition: 0.3s ease;

    background: #f9fbfd;
}

/* FOCUS */

.form-group input:focus,
.form-group textarea:focus{
    border-color: #0b2c6b;

    background: #ffffff;
}

/* BUTTON */

.contact-btn{
    width: 100%;

    padding: 18px;

    border: none;

    border-radius: 16px;

    background: #0b2c6b;

    color: #ffffff;

    font-size: 17px;
    font-weight: 600;

    cursor: pointer;

    transition: 0.3s ease;
}

/* HOVER */

.contact-btn:hover{
    background: #f4b400;

    color: #111111;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .contact-section{
        padding: 70px 0;
    }

    .contact-container{
        grid-template-columns: 1fr;
    }

    .contact-info h2{
        font-size: 38px;
    }

    .contact-form-box{
        padding: 30px 25px;
    }

}






/* =========================
   FORM RESPONSE MESSAGES
========================= */

.success-message{
    color: green;

    font-weight: 600;

    margin-bottom: 20px;
}

.error-message{
    color: red;

    font-weight: 600;

    margin-bottom: 20px;
}


















/* =========================
   HEADER BUTTONS
========================= */

.nav-btns{

    display:flex;
    align-items:center;
    gap:12px;

}

.login-btn{

    padding:12px 24px;
    border:2px solid var(--primary-color);
    border-radius:50px;

    text-decoration:none;
    font-weight:600;

    color:var(--primary-color);

    transition:0.3s;

}

.login-btn:hover{

    background:var(--primary-color);
    color:#fff;

}

.join-btn{

    padding:12px 24px;
    border-radius:50px;

    background:var(--primary-color);

    color:#ffffff;
    text-decoration:none;
    background: rgb(222, 179, 37);

    font-weight:600;

    transition:0.3s;

}

.join-btn:hover{

    opacity:0.9;
    background:var(--primary-color);
    color:#fff;
    background: #0b2c6b;

}







/* =========================
   ACTIVE NAVIGATION LINK
========================= */

.nav-links > li > a.active-link{

    font-weight: 700;

}

.nav-links > li > a.active-link::after{

    content: "";

    position: absolute;

    left: 0;

    bottom: -8px;

    width: 100%;

    height: 3px;

    background: #f4b400;

    border-radius: 20px;

}


/* =================================
   ABOUT PAGE MOBILE FIX
================================= */

@media (max-width:768px){

    .about-main-container,
    .leadership-intro-container,
    .president-container,
    .objectives-container,
    .public-health-container,
    .why-padcog-container{
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .about-main-content,
    .objectives-content,
    .public-health-content,
    .why-padcog-content{
        width: 100% !important;
    }

    .about-main-content h2,
    .objectives-content h2,
    .public-health-content h2,
    .why-padcog-content h2{
        font-size: 34px !important;
        line-height: 1.3 !important;
    }

    .about-main-image,
    .public-health-image,
    .leadership-intro-image,
    .president-image{
        order: -1;
    }

    .about-main-image img,
    .public-health-image img,
    .leadership-intro-image img,
    .president-image img{
        width: 100%;
        display: block;
    }
}



