body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, sans-serif;
    /* background: #f4f6f8; */
    background: linear-gradient(90deg, #0a1f44, #123a7a);
}

/* Navigation bar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, #0a1f44, #123a7a);
    padding: 15px 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Logo */
.logo {
    color: #ffd700;
    font-size: 22px;
    font-weight: bold;
}

/* Menu */
.menu {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.menu li {
    position: relative;
}

.menu li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.menu li a:hover {
    background-color: #ffd700;
    color: #0a1f44;
}

/* Dropdown container */
.dropdown {
    position: absolute;
    top: 45px;
    left: 0;
    min-width: 220px;
    background: linear-gradient(180deg, #f9fbff, #eef3ff);
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    display: none;
    overflow: hidden;
    z-index: 1000;
    animation: fadeIn 0.25s ease-in-out;
}

/* Dropdown animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dropdown links */
.dropdown a {
    display: block;
    padding: 13px 18px;
    font-size: 15px;
    color: black;
    text-decoration: none;
    /* background: #2c3e50; */
    background: linear-gradient(90deg, #0a1f44, #123a7a);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(10, 31, 68, 0.08);
}

.dropdown a:last-child {
    border-bottom: none;
}

/* Hover effect for dropdown items */
.dropdown a:hover {
    background: linear-gradient(90deg, #ffd700, #ffec8b);
    color: #0a1f44;
    padding-left: 24px;
}

/* Show dropdown */
.menu li:hover .dropdown {
    display: block;
}
/* slide show */
slideshow-container {
    position: relative;
    width: 90%;
    max-width: 900px;
    height: 400px;
    margin: 50px auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    background: #000;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.active {
    opacity: 1;
    z-index: 1;
}

/* Optional soft overlay */
.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0,0,0,0.2),
        rgba(0,0,0,0.5)
    );
    z-index: 2;
}

.caption {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 3;
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    text-shadow: 0 4px 10px rgba(0,0,0,0.6);
}
/* section for news and governor */
/* section wrapper */
.info-section {
    display: flex;
    gap: 30px;
    padding: 50px;
    max-width: 1200px;
    margin: auto;
}

.box {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* NEWS */
.news {
    flex: 2;
    position: relative;
}

.news h2 {
    color: #0a1f44;
    border-bottom: 3px solid #ffd700;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

/* Scrolling headline */
.headline-ticker {
    background: linear-gradient(90deg, #0a1f44, #123a7a);
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    font-weight: 600;
    height: 50px;
}

.headline-text {
    white-space: nowrap;
    animation: scrollText 15s linear infinite;
}

@keyframes scrollText {
    from { transform: translateX(100%); }
    to { transform: translateX(-100%); }
}

/* Slideshow */
.news-slide {
    display: none;
    animation: fadeSlide 0.8s ease-in-out;
}

.news-slide.active {
    display: block;
}

.news-slide img {
    width: 100%;
    max-height: 220px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

.news-slide h4 {
    color: #123a7a;
    margin-bottom: 8px;
}

.news-slide p {
    color: #555;
    line-height: 1.6;
    font-size: 15px;
}

.read-more {
    display: inline-block;
    margin-top: 10px;
    color: #123a7a;
    font-weight: 600;
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}

@keyframes fadeSlide {
    from { opacity: 0; transform: translateX(15px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Controls */
.controls {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.controls button {
    background: #0a1f44;
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.controls button:hover {
    background: #ffd700;
    color: #0a1f44;
}

/* GOVERNOR */
.governor {
    flex: 1;
    text-align: center;
}

.governor h2 {
    color: #0a1f44;
    border-bottom: 3px solid #ffd700;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.governor img {
    width: 100%;
    max-width: 250px;
    border-radius: 50%;
    border: 6px solid #ffd700;
    box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}

.governor p {
    margin-top: 15px;
    font-weight: 600;
    color: #123a7a;
}

@media (max-width: 900px) {
    .info-section {
        flex-direction: column;
    }
}

/* testing */
.info-section {
    display: flex;
    gap: 30px;
    padding: 50px;
    max-width: 1200px;
    margin: auto;
}

.box {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* NEWS */
.news {
    flex: 2;
    position: relative;
}

.news h2 {
    color: #0a1f44;
    border-bottom: 3px solid #ffd700;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

/* Scrolling headline */
.headline-ticker {
    background: linear-gradient(90deg, #0a1f44, #123a7a);
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    font-weight: 600;
}

.headline-text {
    white-space: nowrap;
    animation: scrollText 15s linear infinite;
}

@keyframes scrollText {
    from { transform: translateX(100%); }
    to { transform: translateX(-100%); }
}

/* Slideshow */
.news-slide {
    display: none;
    animation: fadeSlide 0.8s ease-in-out;
}

.news-slide.active {
    display: block;
}

.news-slide img {
    width: 50%;
    max-height: 220px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

.news-slide h4 {
    color: #123a7a;
    margin-bottom: 8px;
}

.news-slide p {
    color: #555;
    line-height: 1.6;
    font-size: 15px;
}

.read-more {
    display: inline-block;
    margin-top: 10px;
    color: #123a7a;
    font-weight: 600;
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}

@keyframes fadeSlide {
    from { opacity: 0; transform: translateX(15px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Controls */
.controls {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.controls button {
    background: linear-gradient(90deg, #0a1f44, #123a7a);
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.controls button:hover {
    background: #ffd700;
    color: #0a1f44;
}

/* GOVERNOR */
.governor {
    flex: 1;
    text-align: center;
}

.governor h2 {
    color: #0a1f44;
    border-bottom: 3px solid #ffd700;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.governor img {
    width: 100%;
    max-width: 250px;
    border-radius: 50%;
    border: 6px solid #ffd700;
    box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}

.governor p {
    margin-top: 15px;
    font-weight: 600;
    color: #123a7a;
}

@media (max-width: 900px) {
    .info-section {
        flex-direction: column;
    }
}
/* our company section */
 /* Section */
 .three-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card */
.card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;

    /* Entrance animation default state */
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

/* Gold accent */
.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #ffd700, #ffec8b);
}

/* Icon */
.card-icon {
    font-size: 50px;
    color: #0a1f44;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.card h3 {
    color: #0a1f44;
    font-size: 22px;
    margin-bottom: 12px;
}

.card p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

/* Hover effect */
.card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.card:hover .card-icon {
    transform: scale(1.2) rotate(5deg);
    color: #ffd700;
}

/* When card is visible */
.card.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
    .three-section {
        grid-template-columns: 1fr;
    }
}
/* SECTION GENERAL */
.section{
    padding:80px 30px;
    max-width:1200px;
    margin:auto;
}

/* HEADINGS */
.section h2{
    text-align:center;
    font-size:34px;
    color:#0a1f44;
    margin-bottom:50px;
    position:relative;
}
.section h2::after{
    content:"";
    width:80px;
    height:4px;
    background:#ffd700;
    display:block;
    margin:10px auto 0;
    border-radius:4px;
}

/* =====================
   COMMISSIONER MESSAGE
===================== */
.commissioner{
    display:grid;
    grid-template-columns:1fr 2fr;
    gap:40px;
    align-items:center;
}

.commissioner img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,0.2);
}

.commissioner p{
    color:#555;
    line-height:1.8;
    font-size:16px;
}

.signature{
    margin-top:20px;
    font-weight:bold;
    color:#0a1f44;
}

/* =====================
   ACHIEVEMENT COUNTER
===================== */
.counters{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    text-align:center;
}

.counter-box{
    background:#ffffff;
    padding:40px 20px;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,0.12);
    transition:0.4s ease;
}

.counter-box:hover{
    transform:translateY(-10px);
}

.counter-number{
    font-size:42px;
    font-weight:bold;
    color:#ffd700;
}

.counter-box p{
    margin-top:10px;
    color:#0a1f44;
    font-weight:600;
}

/* =====================
   CORE VALUES
===================== */
.values{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    text-align:center;
}

.value-box{
    background:#ffffff;
    padding:35px 20px;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,0.12);
    transition:0.4s ease;
}

.value-box:hover{
    transform:translateY(-12px);
    background:#f5f8ff;
}

.value-icon{
    font-size:45px;
    color:#ffd700;
    margin-bottom:15px;
}

.value-box h4{
    color:#0a1f44;
    margin-bottom:10px;
}

.value-box p{
    color:#555;
    font-size:14px;
}

/* =====================
   SCROLL ANIMATION
===================== */
.animate{
    opacity:0;
    transform:translateY(60px);
    transition:all 0.8s ease;
}

.animate.show{
    opacity:1;
    transform:translateY(0);
}

/* RESPONSIVE */
@media(max-width:900px){
    .commissioner{
        grid-template-columns:1fr;
    }
    .counters{
        grid-template-columns:repeat(2,1fr);
    }
    .values{
        grid-template-columns:1fr;
    }
}
/* About Section */
.about-section {
    padding: 80px 30px;
    /* background: #ffffff; */
    background: linear-gradient(90deg, #0a1f44, #123a7a);
}

.about-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Image */
.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Content */
.about-content h2 {
    font-size: 36px;
    color: white;
    margin-bottom: 15px;
    position: relative;
}

.about-content h2::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #ffd700;
    display: block;
    margin-top: 10px;
    border-radius: 3px;
}

.about-content p {
    color: white;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

/* Mission & Vision boxes */
.mission-vision {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.mv-box {
    flex: 1;
    background: #f5f8ff;
    padding: 20px;
    border-radius: 15px;
    border-left: 5px solid #ffd700;
    transition: 0.3s ease;
}

.mv-box:hover {
    background: #e9f0ff;
    transform: translateY(-5px);
}

.mv-box h4 {
    margin: 0 0 10px;
    color: #0a1f44;
}

.mv-box p {
    margin: 0;
    font-size: 14px;
    color: #000;
}

/* Responsive */
@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
    }
}
/* department section */
.departments-section {
    padding: 80px 10%;
    /* background: linear-gradient(135deg, #f5f9ff, #e6f0ff); */
    background: linear-gradient(90deg, #0a1f44, #123a7a);
    text-align: center;
}

.section-title {
    font-size: 32px;
    margin-bottom: 50px;
    color: #eef3ff;
}

.department-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.department-card {
    width: 300px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: 0.4s ease;
    opacity: 0;
    transform: translateY(50px);
}

.department-card.show {
    opacity: 1;
    transform: translateY(0);
}

.department-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.department-img {
    position: relative;
    overflow: hidden;
}

.department-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 51, 102, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.4s ease;
}

.department-img:hover .overlay {
    opacity: 1;
}

.overlay button {
    padding: 10px 20px;
    border: none;
    background: #00ccff;
    color: white;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.overlay button:hover {
    background: #0099cc;
}

.department-card h3 {
    margin: 15px 0 5px;
    color: #003366;
}

.department-card p {
    color: #555;
    margin-bottom: 20px;
}
/* modal styling */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
}

.modal-content {
    background: white;
    margin: 8% auto;
    padding: 30px;
    width: 60%;
    border-radius: 15px;
    animation: fadeIn 0.5s ease;
}

.close {
    float: right;
    font-size: 28px;
    cursor: pointer;
}

@keyframes fadeIn {
    from {opacity: 0; transform: scale(0.8);}
    to {opacity: 1; transform: scale(1);}
}

footer {
    /* background: linear-gradient(135deg, #0a1f44, #123a7a); */
    background: linear-gradient(90deg, #0a1f44, #123a7a);
    color: #ffffff;
    padding: 60px 8% 30px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-box {
    flex: 1;
    min-width: 260px;
}

.footer-box h3 {
    margin-bottom: 20px;
    border-bottom: 3px solid #ffd700;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-box p {
    color: #dcdcdc;
    font-size: 14px;
    line-height: 1.6;
}

/* Glowing Social Icons */
.social-icons {
    margin-top: 20px;
}

.social-icons a {
    display: inline-block;
    margin-right: 12px;
    font-size: 20px;
    color: #ffffff;
    background: rgba(255,255,255,0.1);
    padding: 14px;
    border-radius: 50%;
    transition: 0.4s ease;
    position: relative;
}

.social-icons a:hover {
    background: #ffd700;
    color: #0a1f44;
    box-shadow: 0 0 15px #ffd700,
                0 0 30px #ffd700,
                0 0 45px #ffd700;
    transform: translateY(-6px) scale(1.1);
}

/* Newsletter Form */
.newsletter input[type="email"] {
    width: 70%;
    padding: 12px;
    border: none;
    border-radius: 30px;
    outline: none;
    margin-right: 8px;
}

.newsletter button {
    padding: 12px 20px;
    border: none;
    border-radius: 30px;
    background: #ffd700;
    color: #0a1f44;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter button:hover {
    background: #ffcc00;
    box-shadow: 0 0 10px #ffd700;
}

/* Google Map */
.map-container iframe {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    border: none;
    margin-top: 15px;
}

/* Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 14px;
    color: #cccccc;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }

    .newsletter input[type="email"] {
        width: 100%;
        margin-bottom: 10px;
    }
}
/* chieftaincy */
.chieftaincy-section {
    padding: 70px 5%;
    background: linear-gradient(90deg, #0a1f44, #123a7a);
    text-align: center;
    color: white;
    border-radius: 15px;
    
}

.chieftaincy-section h2 {
    color: white;
    margin-bottom: 40px;
}

/* Slider container */
.slider-container {
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    margin: auto;
}

.slider {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.chief-card {
    min-width: 280px;
    margin: 0 15px;
    background: #ffffff;
    color: #333;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: 0.3s;
}

.chief-card:hover {
    transform: translateY(-10px);
}

.chief-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #ffd700;
    object-fit: cover;
}

.chief-card h3 {
    margin: 12px 0 5px;
    color: #0b3d2e;
}

/* Arrows */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffd700;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 18px;
    color: #0b3d2e;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.arrow:hover {
    background: #e6c200;
}

.left {
    left: 10px;
}

.right {
    right: 10px;
}

/* Modal Background */
.modal{
    display:none;
    position:fixed;
    z-index:999;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    animation:fadeIn 0.4s ease;
}

/* Modal Box */
.modal-content{
    background:white;
    width:90%;
    max-width:600px;
    margin:8% auto;
    padding:30px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.3);
    animation:slideDown 0.4s ease;
}

.modal-content h2{
    color:#008751;
}

.close-btn{
    float:right;
    font-size:28px;
    cursor:pointer;
    color:#444;
}

.close-btn:hover{
    color:red;
}

/* Animations */
@keyframes fadeIn{
    from{opacity:0;}
    to{opacity:1;}
}

@keyframes slideDown{
    from{transform:translateY(-50px); opacity:0;}
    to{transform:translateY(0); opacity:1;}
}.arms-section{
    background: linear-gradient(90deg, #0a1f44, #123a7a);
    padding:70px 30px;
    text-align:center;
}

.arms-section h2{
    font-size:30px;
    color:white;
    margin-bottom:40px;
    font-weight:bold;
}

.arms-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.arms-card{
    background:white;
    border-radius:20px;
    padding:25px;
    box-shadow:0 8px 20px rgba(0,0,0,0.1);
    transition:0.4s ease;
}

.arms-card:hover{
    transform:translateY(-10px) scale(1.03);
    box-shadow:0 12px 30px rgba(0,0,0,0.2);
}

.arms-card img{
    width:100%;
    height:280px;
    object-fit:cover;
    border-radius:15px;
    margin-bottom:15px;
}

.arms-card h3{
    color:#0a1f44;
    margin-bottom:8px;
}

.arms-card p{
    font-size:14px;
    margin:4px 0;
}
/* chieftaincy paramount rulers */

.chieftaincy-section{
    padding:80px 20px;
    text-align:center;
     background: linear-gradient(90deg, #0a1f44, #123a7a);
}

.chieftaincy-section h2{
    font-size:32px;
    color:white;
    margin-bottom:10px;
}

.sub-text{
    color:white;
    margin-bottom:50px;
}

.chieftaincy-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    max-width:1100px;
    margin:auto;
}

.chieftaincy-card{
    background:white;
    padding:40px 25px;
    border-radius:20px;
    text-decoration:none;
    color:#333;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
    transition:0.4s ease;
    position:relative;
    overflow:hidden;
}

.chieftaincy-card:hover{
    transform:translateY(-10px) scale(1.03);
    box-shadow:0 15px 35px rgba(0,0,0,0.2);
}

.chieftaincy-card .icon{
    font-size:50px;
    margin-bottom:20px;
}

.chieftaincy-card h3{
    color:#8b5e3c;
    margin-bottom:15px;
}

.chieftaincy-card p{
    font-size:14px;
    line-height:1.6;
}

/* Golden hover glow */
.chieftaincy-card::before{
    content:"";
    position:absolute;
    width:100%;
    height:5px;
    background:gold;
    top:0;
    left:0;
    transition:0.4s;
}

.chieftaincy-card:hover::before{
    height:100%;
    opacity:0.05;
}
/* director and governors section */

.leadership-section{
    background: linear-gradient(90deg, #0a1f44, #123a7a);
    padding:70px 20px;
    text-align:center;
}

.leadership-section h2{
    font-size:32px;
    margin-bottom:50px;
    color:white;
    position:relative;
}

.leaders-container{
    display:flex;
    justify-content:center;
    gap:50px;
    flex-wrap:wrap;
}

.leader-card{
    background:white;
    border-radius:20px;
    width:320px;
    padding:25px;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
    transition:0.4s ease;
}

.leader-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 40px rgba(0,135,81,0.3);
}

.leader-card img{
    width:100%;
    height:400px;
    object-fit:cover;
    border-radius:15px;
}

.leader-card h3{
    margin-top:20px;
    color:#0a1f44;
    font-size:20px;
}

.leader-card p{
    margin-top:8px;
    font-weight:500;
    color:#555;
}

/* Responsive */
@media(max-width:768px){
    .leaders-container{
        flex-direction:column;
        align-items:center;
    }
}
/* Monthly Publications */
.publications-section {
    padding: 40px;
    background: #f7f7f7;
}

.pub-title {
    text-align: center;
    font-size: 30px;
    margin-bottom: 30px;
    font-weight: bold;
}

.pub-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.pub-card {
    width: 100%;
    height: 220px;
    perspective: 1000px;
}

.pub-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.pub-card:hover .pub-inner {
    transform: rotateY(180deg);
}

.pub-front, .pub-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    padding: 15px;
    color: #fff;
}

.pub-front {
    background: #004aad;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: bold;
}

.pub-back {
    background: #001f54;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.pub-btn {
    margin: 5px auto;
    padding: 8px 20px;
    background: #ffcc00;
    color: black;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

.pub-btn:hover {
    background: #ffdb4d;
}

/* Modal */
.pub-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
}

.pub-modal-content {
    background: white;
    padding: 15px;
    width: 70%;
}
.close-modal {
    float: right;
    font-size: 25px;
    cursor: pointer;
}
/* delete files */
.admin-pub-card {
    background: #fff;
    padding: 15px;
    margin: 10px 0;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 2px 6px rgba(0,0,0,0.2);
}

.delete-btn {
    background: red;
    color: white;
    padding: 8px 14px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

.delete-btn:hover {
    background: darkred;
}
/* projects */
.projects-section {
  padding: 40px;
  background: linear-gradient(90deg, #0a1f44, #123a7a);
}

.projects-section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: bold;
  color: white;
}

.projects-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.project-card {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: .3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-card img {
  width: 100%;
  height: 180px;
  border-radius: 8px;
  object-fit: cover;
}

.project-card h3 {
  margin: 15px 0 10px;
  font-size: 20px;
}

.project-card p {
  font-size: 14px;
  color: white;
}

.project-actions {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
}

.view-btn, .download-btn {
  flex: 1;
  padding: 8px 12px;
  margin: 0 5px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

.view-btn {
  background: #007bff;
  color: #fff;
}

.download-btn {
  background: #28a745;
  color: #fff;
}
/* nav */s
/* NAVBAR BASE */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #004080;
    padding: 12px 5px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
}

.logo {
    color: white;
    font-size: 24px;
    font-weight: 800;
}

/* MENU DESKTOP */
.menu {
    display: flex;
    gap: 20px;
    list-style: none;
}

.menu li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 10px;
}

/* DROPDOWN */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background: white;
    top: 40px;
    min-width: 260px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.3);
}

.dropdown-menu li a {
    color: #004080;
    padding: 10px 15px;
    display: block;
    border-bottom: 1px solid #f1f1f1;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: white;
    transition: 0.3s;
}

/* MOBILE STYLES */
@media(max-width: 900px) {

    .hamburger {
        display: flex;
    }

    .menu {
        flex-direction: column;
        position: fixed;
        top: 65px;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: #004080;
        padding-top: 30px;
        transition: 0.4s ease-in-out;
    }

    .menu.show {
        right: 0;
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown-menu {
        position: static;
        background: #003060;
        border-left: 4px solid white;
    }

    .dropdown-menu li a {
        color: white;
    }

    .dropdown-btn::after {
        content: '▾';
        margin-left: 5px;
    }

    /* MOBILE DROPDOWN TOGGLE */
    .dropdown.open .dropdown-menu {
        display: block;
    }
}
/* ============================
   RESPONSIVE NAVIGATION FIX
============================ */

.navbar {
    width: 100%;
    padding: 12px 2px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #003366;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

.logo {
    font-size: 22px;
    font-weight: bold;
    color: white;
}

/* Hide menu on small screens */
.menu {
    list-style: none;
    display: flex;
    gap: 25px;
}

.menu li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

/* HAMBURGER BUTTON */
.hamburger {
    width: 35px;
    cursor: pointer;
    display: none;
}

.hamburger span {
    display: block;
    height: 4px;
    width: 100%;
    margin: 6px 0;
    background: white;
    border-radius: 4px;
}

/* ============================
   SMALL PHONE RESPONSIVENESS
============================ */
@media (max-width: 768px) {

    .hamburger {
        display: block;
    }

    .menu {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #003366;
        display: none;
        flex-direction: column;
        text-align: left;
        padding: 15px 10px;
    }

    .menu.show {
        display: flex;
    }

    .menu li {
        margin: 10px 0;
    }

    .menu li a {
        font-size: 15px;
        padding: 10px 0;
        display: block;
    }
}

/* Super small phones (≤ 360px) */
@media (max-width: 360px) {
    .logo {
        font-size: 18px;
    }

    .hamburger {
        transform: scale(0.9);
    }

    .menu li a {
        font-size: 14px;
    }
}
/* downloadable files */
<style>
.download-btn {
  background-color: #0066cc;
  color: white;
  padding: 12px 20px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.dropdown-container {
  position: relative;
  display: inline-block;
}

.dropdown-list {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 220px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  border-radius: 6px;
  z-index: 10;
}

.dropdown-list a {
  color: #333;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  border-bottom: 1px solid #eee;
}

.dropdown-list a:hover {
  background-color: #f1f1f1;
}
.download-links li a{
    text-decoration: none;
    color: white;
    text-transform: capitalize;
    font-size: 13px;
    list-style-type: none;
}
ul{
list-style-type: none;
text-decoration: none;
}
