/* 🔒 FIXED HEADER */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #fff;
}

/* Prevent content hiding under header */
body {
    padding-top: 170px;  /* adjust based on header height */
    font-family: "Noto Sans Devanagari", Arial, sans-serif;
    background: #f2f7ff;
    color: #000000;
    margin: 0;
}

/* 🟦 Main Header */
.main-header {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    padding: 15px 20px;
    background: #fff;
}

.top-bar {
    background: #031a3b;
    color: #fff;
    padding: 8px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.top-bar .left-info span {
    margin-right: 20px;
}

.social-icons i {
    color: #fff;
    margin-left: 12px;
    cursor: pointer;
    font-size: 17px;
}

.social-icons i:hover {
    opacity: 0.7;
}
/* 🔵 Top Bar */
.top-bar {
    background: #031a3b;
    color: #fff;
    padding: 8px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    height: 50px;
}

.top-bar .left-info span {
    margin-right: 20px;
}

.social-icons {
    color: #fff;
    margin-left: 20px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    gap: 20px;
    margin-top: 3px;
}

.social-icons i:hover {
    opacity: 0.7;
}

.logo img {
    height: 120px;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 20px;   /* 🔥 space between National Emblem & 75 Years */
}

.navbar {
    display: flex;
    gap: 25px;
    padding: 15px 30px;
    align-items: center;
    margin-left: 70px;
}

.navbar a {
    color: #000000;
    text-decoration: none;
    font-size: 16px;
    position: relative;
    padding: 5px 0;
    font-weight: bold;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    border-radius: 10px;
}

/* Underline animation */
.navbar a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    left: 0;
    bottom: -5px;
    background: #ffcc00;
    transition: width 0.3s ease;
}

.navbar a:hover::after {
    width: 100%;
}

/* Dropdown */
.dropdown {
    position: relative;
}

/* Make hover area continuous */
.dropdown > a {
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 35px;
    left: 0;
    background: #ffffff;
    min-width: 200px;
    border-top: 4px solid #ffcc00; /* 🔶 dropdown line */
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 100;
}

.dropdown-content a {
    color: #003e80;
    padding: 10px 15px;
    display: block;
    font-size: 14px;
}

.dropdown-content a:hover {
    background: #f1f5ff;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Complaint Button */
/* .complaint-btn{
    justify-content: center;
    gap: 15px;
    position: absolute;
    top: 140px;
    right: 350px;
}

.complaint-btn a {
    border: 2px solid #0057d8;
    padding: 8px 18px;
    border-radius: 4px;
    color: #0057d8;
    font-size: 18px;
    text-decoration: none;
}

.complaint-btn a:hover {
    background: #0057d8;
    color: white;
} */

/* Default (Desktop View) */
        .image-container {
            display: flex;
            justify-content: center;
            gap: 5px;
            position: absolute;
            top: 60px;
            right: 30px;
        }

        .icon-img {
            height: 70px;
            border-radius: 8px;
        }

        /* Tablet View */
        @media (max-width: 991px) {
            .icon-img {
                height: 70px;
            }

            .image-container {
                top: 15px;
                right: 10px;
            }
        }

        /* Mobile View */
        @media (max-width: 600px) {
            .image-container {
                position: static; /* remove absolute for better responsiveness */
                justify-content: center;
                margin-top: 5px;
            }

            .icon-img {
                height: 45px; /* reduce size on mobile */
            }
        }

        /* Very small screens */
        @media (max-width: 400px) {
            .icon-img {
                height: 35px;
            }
        }


    .scroll-left {
        width: 100%;
        height: 60px;
        overflow: hidden;
        position: relative;
        display: flex;
        align-items: center;

        background: linear-gradient(to right, #003e80, #007bff); /* Modern gradient */
        color: #fff; /* Text color white */
        border: none;
        border-radius: 0;
        box-shadow: 0 4px 20px rgba(0,0,0,0.3); /* Soft shadow */
    }

    .scroll-left p {
        position : absolute;
        white-space: nowrap;
        font-size: 22px;
        font-weight: 600;
        padding: 0 15px;
        animation: scroll-left 10s linear infinite;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.5); /* Smooth text glow */
    }

    /* Hover â†’ pause */
    .scroll-left:hover p {
        animation-play-state: paused;
    }

    /* Keyframes */
    @keyframes scroll-left {
        0%   { transform: translateX(100%); }
        100% { transform: translateX(-100%); }
    }

    @keyframes scroll-left {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
    }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Heading */
.container h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 40px;
    font-weight: bold;
    color: #222;
    margin-top: 120px;
}

.container h2::after {
    content: "";
    display: block;
    width: 10%;                 /* 🔥 underline width */
    height: 3px;
    background: #0066cc;
    margin: 20px auto 0;        /* center underline */
}


/* Carousel wrapper */
#myCarousel {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    background: #000;
}

/* Carousel images */
#myCarousel .item img {
    width: 1000px;
    height: 600px;
    object-fit:fill;
}

/* Indicators */
.carousel-indicators li {
    background-color: #bbb;
}

.carousel-indicators .active {
    background-color: #0d6efd;
}

/* Controls */
.carousel-control.left,
.carousel-control.right {
    background-image: none;
    opacity: 0.7;
}

.carousel-control:hover {
    opacity: 1;
}

/* Control icons */
.carousel-control .glyphicon {
    font-size: 32px;
    color: #fff;
}

/* Mobile responsive */
@media (max-width: 768px) {
    #myCarousel .item img {
        height: 260px;
    }

    .container h2 {
        font-size: 22px;
    }
}

        @keyframes slideText {
            0% {
                transform: translateX(100%);
            }

            100% {
                transform: translateX(-100%);
            }
        }

        /* ===== MAIN CONTENT GRID ===== */
        .main-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 30px;
            padding: 40px 0;
        }

        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        /* ===== CARD STYLES ===== */
        .card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
        }

            .card:hover {
                transform: translateY(-10px);
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            }

        .card-header {
            padding: 20px;
            color: white;
            font-weight: 600;
            font-size: 1.2rem;
            position: relative;
            overflow: hidden;
        }

            .card-header::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
                transform: translateX(-100%);
                transition: transform 0.6s;
            }

        .card:hover .card-header::before {
            transform: translateX(100%);
        }

        .card-body {
            padding: 25px;
        }

        /* Card Header Color Schemes */
        .important-persons .card-header {
            /* background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); */
            background: orangered;
        }

        .mission .card-header {
            /* background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); */
            background: orangered;
        }

        .objectives .card-header {
            /* background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); */
            background: orangered;
        }

        .achievements .card-header {
            /* background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); */
            background: orangered;
        }

        /* ===== PERSON ITEM STYLES ===== */
        .person-item {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
            padding: 15px;
            border-radius: 15px;
            /* background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%); */
            background: rgb(211, 211, 211);
            transition: all 0.3s ease;
        }

            .person-item:hover {
                transform: scale(1.02);
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            }

        .person-avatar {
            width: 100px;
            height: 100px;
            border-radius: 10%;
            /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
            background: none;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
        }

        /* ===== OBJECTIVES AND ACHIEVEMENTS STYLES ===== */
        .objectives-list {
            max-height: 400px;
            overflow-y: auto;
            padding-right: 10px;
        }

            .objectives-list::-webkit-scrollbar {
                width: 6px;
            }

            .objectives-list::-webkit-scrollbar-track {
                background: #f1f1f1;
                border-radius: 3px;
            }

            .objectives-list::-webkit-scrollbar-thumb {
                background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
                border-radius: 3px;
            }

        .objective-item {
            padding: 15px;
            margin-bottom: 10px;
            border-left: 4px solid #43e97b;
            background: linear-gradient(135deg, #f0fff4 0%, #e6fffa 100%);
            border-radius: 0 10px 10px 0;
            transition: all 0.3s ease;
        }

            .objective-item:hover {
                transform: translateX(5px);
                box-shadow: 0 3px 10px rgba(67, 233, 123, 0.3);
            }

         /* ===== Section Wrapper ===== */
        .executive-section {
            /* background: linear-gradient(135deg, #91ee97 0%, #454546 100%); */
            padding: 50px 15px;
        }

        /* ===== Title ===== */
        .executive-section .title {
            margin: 0 auto 30px;
            padding-bottom: 10px;
            width: fit-content;
            max-width: 90%;
            font-size: 26px;
            font-weight: 700;
            color: black;
            text-align: center;
            border-bottom: 3px solid #0066cc;
            letter-spacing: 0.5px;
        }

        /* ===== Table ===== */
        .executive-section table {
            width: 85%;
            margin: auto;
            border-collapse: collapse;
            background: #ffffff;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
            border-radius: 10px;
            overflow: hidden;
        }

        /* ===== Table Header ===== */
        .executive-section th {
            /* background: #0066cc; */
            background: orangered;
            color: #ffffff;
            padding: 14px;
            font-size: 16px;
            text-align: left;
        }

        /* ===== Table Data ===== */
        .executive-section td {
            padding: 12px 15px;
            font-size: 18px;
            color: #333;
            border-bottom: 1px solid #ddd;
            font-weight: bold;
        }

       /* Even Row */
        tr:nth-child(even) {
            background: rgba(180, 210, 255, 0.25);
        }

        /* Odd Row */
        tr:nth-child(odd) {
            background: rgba(230, 240, 255, 0.35);
        }

        /* Hover Effect */
        tr:hover {
            background: #d9e6fb;
            transform: scale(1.01);
            transition: 0.3s ease-in-out;
        }

        /* ===== Last Row Border Fix ===== */
        .executive-section tr:last-child td {
            border-bottom: none;
        }

        /* ===== Responsive ===== */
        @media (max-width: 768px) {
            .executive-section table {
                width: 100%;
            }

            .executive-section .title {
                font-size: 22px;
            }

            .executive-section th,
            .executive-section td {
                font-size: 14px;
                padding: 10px;
            }
        }

/* 🔵 Full Footer */
.big-footer {
    background: #0a1f44;
    color: #ffffff;
    padding: 40px;
    font-family: sans-serif;
}

iframe{
    border-radius: 10px;
    display: flex;
    margin: 60px auto;
}   

/* Footer Top Section */
.footer-top {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* Logo Section */
.footer-logo img {
    height: 100px;
    margin-bottom: 15px;
    mix-blend-mode: multiply;
    background: transparent;   /* remove background */
    display: block;
}

.footer-logo p {
    margin: 8px 0 15px 0;
    line-height: 1.5;
}

/* Lists */
.footer-col h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: bold;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
    font-size: 16px;
}

.contact-info li {
    margin-bottom: 12px;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Footer Bottom Row */
.footer-bottom {
    border-top: 1px solid #ffffff33;
    padding-top: 20px;
    text-align: center;
    color: #fff;
    margin-left: 20px;
    cursor: pointer;
    font-size: 18px;
    gap: 20px;
    margin-top: 3px;
}

.footer-bottom p {
    margin-bottom: 10px;
    font-size: 18px;
}

/* Social Icons */
.footer-social i {
    margin: 0 10px;
    font-size: 22px;
    background: #fff;
    color: #0a1f44;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
}

.footer-social i:hover {
    opacity: 0.8;
}

/* Responsive Footer */
@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social i {
        margin-top: 10px;
    }
}
