/* ============================= */
/* 🔷 Global Layout */
/* ============================= */

html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
	 padding-top: 115px;
}

main {
    flex: 1;
}
/* ============================= */
/* 🔷 Top Header  */
/* ============================= */
.top-header {
    background:#063070;
    color: white;
    font-size: 13px;
    padding: 6px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1100;
}

/* Right Section */
.top-header .top-right {
    gap: 10px;
}

/* Font buttons */
.font-btn {
    cursor: pointer;
    padding: 0px 6px;
    border: 1px solid #fff;
    margin-left: 15px;
    border-radius: 3px;
}

.font-btn:hover {
    background: #c3f277;
    color: #000;
}

/* Language dropdown */
.lang-select {
    background: khaki;
    color: black;
    border: 1px solid white;
    font-size: 12px;
    padding: 2px;
}

/* Icons */
.top-header .top-right i {
    margin-left: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.top-header .top-right i:hover {
    color: #c3f277;
    transform: scale(1.2);
}
/* ============================= */
/* 🔷 Navbar / Header Styles */
/* ============================= */
.logo-img {
    height: 70px;  
    width: auto;
    object-fit: contain;
	background: white;
	border-radius:50px;
	filter: drop-shadow(0 0 2px rgba(0,0,0,0.5));
}
.navbar {
    background: linear-gradient(90deg, #32c482, #111112);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    height: 85px; 
    display: flex;
    align-items: center;  
    transition: 0.3s;
	position: fixed;
    top: 30px;
    width: 100%;
    z-index: 1000;
}
.navbar-brand {
    font-family: 'Roboto Slab', serif;
    font-weight: 800;
    font-size: 2rem;
    color: #ffffff;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.navbar-brand:hover {
    color: #c3f277;
    transform: scale(1.1);
	text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}
.navbar-nav .nav-link {
    font-weight: 600;
    color: #ffffff;
    margin: 0 0.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: '';
    display: block;
    width: 0%;
    height: 2px;
    background: #c3f277;
    transition: width 0.3s;
    margin-top: 5px;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-nav .nav-link:hover {
    color: #c3f277;
}
.navbar-nav .nav-link.active {
    color: #c3f277;
}
.navbar-toggler {
    border: none;
    outline: none;
	border: 1px solid #fff;
    padding: 5px 8px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Responsive tweaks */
@media (max-width: 991px) {
    .navbar-brand {
        font-size: 1.6rem;
    }
    .navbar-nav .nav-link {
        margin: 0.5rem 0;
        font-size: 1rem;
    }
}
/* ============================= */
/* 📱 PREMIUM MOBILE HEADER */
/* ============================= */
@media (max-width: 768px) {
    .top-header {
        display: none;
    }
    .navbar {
        top: 0;
        height: 70px;
        padding: 5px 10px;
    }
    .logo-img {
        height: 40px;
        border-radius: 50%;
    }
    .navbar-brand {
        font-size: 1.1rem;
        font-weight: 900;
        line-height: 1.2;
    }
    .navbar-toggler {
        padding: 5px 8px;
        border-radius: 5px;
    }
    .navbar-collapse {
        background: #050d53;
        margin-top: 17px;
        padding: 0px;
        border-radius: 8px;
        text-align: center;
    }
    .navbar-nav .nav-link {
        font-size: 1rem;
        padding: 10px;
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }

    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
	.carousel-item img {
        height: 250px !important;
    }
    body {
        padding-top: 70px;
    }
}
/* ============================= */
/* 🔷 Typography */
/* ============================= */

section h2 {
    font-weight: bold;
    margin-bottom: 15px;
}

section p {
    font-size: 1rem;
    color: #555;
}

section ul li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

/* ============================= */
/* 🔷 Slider */
/* ============================= */

.carousel-item img {
    height: 400px;
   /* object-fit: cover; */
}
#slider {
    margin-top:0;
}
/* ============================= */
/* 🔷 Welcome Section */
/* ============================= */
.welcome-section {
    padding: 25px 0;
    background: linear-gradient(135deg, #28dfd3, #111112);
    color: white;
    position: relative;
    overflow: hidden;
}
.welcome-section::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 10%, transparent 10%);
    background-size: 50px 50px;
    animation: moveBg 20s linear infinite;
}

@keyframes moveBg {
    0% { transform: translate(0,0); }
    100% { transform: translate(-50px,-50px); }
}
.welcome-text {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.highlight {
    color: #c3f277;
    text-shadow: 0 0 10px rgba(195, 242, 119, 0.7);
}
.welcome-subtext {
    font-size: 1.1rem;
    margin-top: 10px;
    opacity: 0.9;
	color: #ffffff; 
    position: relative;
    z-index: 2;
    text-align: center;
}
@media (max-width: 768px) {
    .welcome-text {
        font-size: 2rem;
    }
}
/* ============================= */
/* 🔷 Official Card */
/* ============================= */

.official-card {
    text-align: left;
    padding: 10px;
    transition: 0.3s;
}

.official-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    box-shadow: 2px 0px 8px 2px black;
}

.official-card h5 {
    margin-top: 10px;
    font-weight: bold;
}

.official-card p {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.official-card:hover {
    transform: translateY(-5px);
}

/* ============================= */
/* 🔘 Social Icons */
/* ============================= */

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: #2c3e50;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    text-decoration: none;
}

.social-icons a:hover {
    background: #0d6efd;
}

/* ============================= */
/* 🔷 Objective Section */
/* ============================= */

.section-heading {
    font-weight: bold;
    margin-top: 25px;
    margin-bottom: 10px;
}

/* ============================= */
/* 🔷 Facility Card */
/* ============================= */

.facility-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center; /* ✅ center fix */
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.facility-card i {
    font-size: 40px;
    color: #0d6efd;
    margin-bottom: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.facility-card h5 {
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

.facility-card p {
    color: #666;
    font-size: 0.95rem;
    text-align: center !important;
}

.facility-card:hover {
    transform: translateY(-8px);
    background: #e9f2ff;
}
/* ============================= */
/* 🔷 Mission Vision Values */
/* ============================= */

.main-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.container p {
    color: #666;
    line-height: 1.8;
    text-align: justify;
    font-size: 1rem;
}
/* ============================= */
/* 🔽 Smooth Top-to-Bottom Dropdown */
/* ============================= */

.navbar .dropdown {
    position: relative;
}

.navbar .dropdown-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px); 
    transition: all 0.4s ease;
    margin-top: 0;
}

.navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); 
}
.dropdown-menu {
    border-radius: 8px;
    padding: 8px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.dropdown-item:hover {
    background-color: #f1f1f1;
}
.dropdown-toggle::after {
    display: none !important;
}
/* ============================= */
/* 🔷 Footer */
/* ============================= */

footer {
    margin-top: auto;
    background-color: rgb(2 45 37) !important;
}

footer a {
    color: white; 
    text-decoration: none;
}
/* ============================= */
/* 🔷 PREMIUM HERO SECTION */
/* ============================= */

.hero {
    position: relative;
    height: 250px;
    background: url('../slider/hero.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 0;
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(75 0 130 / 42%), rgb(186 85 211 / 50%));
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}
.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}
.breadcrumb-box {
    font-size: 1rem;
}

.breadcrumb-box a {
    color: #c3f277;
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb-box span {
    color: #fff;
}

.breadcrumb-box a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero {
        height: 150px;
        padding: 10px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .breadcrumb-box {
        font-size: 0.9rem;
    }
}
/* 🔷 Chairman Circle Image */
.chairman-img {
    width: 100%;
    max-width: 425px; 
    aspect-ratio: 1/1; 
    object-fit: cover;
    border-radius: 50% !important;
    border: 4px solid #c3f277;
    transition: all 0.5s ease;
    opacity: 0;
    transform: scale(0.8);
}
.chairman-img.show {
    opacity: 1;
    transform: scale(1);
}

.chairman-img:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* 🔷 Member Card Premium */
.member-card {
    background: linear-gradient(135deg, #f0f0f0, #a8d6bf);
    padding: 8px 0px;
    border-radius: 12px;
    transition: 0.4s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
}

.member-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

/* 🔷 Image Frame */
.member-img-box {
    width: 180px;
    height: 180px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: #fff;
    padding: 6px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

/* 🔷 Image */
.member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: 0.4s;
}

.member-card:hover .member-img {
    transform: scale(1.1);
}

/* 🔷 Text */
.member-name {
    color: #a52a2a;
    font-weight: 700;
    margin-bottom: 5px;
}
/* ============================= */
/* 🔷 Complaint Section */
/* ============================= */

.complaint-card {
    display: flex;
    max-width: 900px;
    margin: auto;
    background: #96a0bc;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.complaint-left {
    width: 45%; 
    background: #3aa0b0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.complaint-left img {
    width: 70%;
}
.complaint-right {
    width: 55%;
    padding: 15px; 
}

.complaint-right h4 {
    font-size: 18px;
}

.complaint-right input {
    padding: 6px;
    font-size: 14px;
}

.complaint-right .btn {
    padding: 6px 10px;
    font-size: 13px;
}
@media (max-width: 768px) {
    .complaint-card {
        flex-direction: column;
        max-width: 100%;
    }

    .complaint-left,
    .complaint-right {
        width: 100%;
    }
}
/* 🔐 Navbar Login Button */
.login-btn {
    background: linear-gradient(135deg, #c3f277, #0d6efd);
    color: #000 !important;
    border-radius: 30px;
    padding: 6px 16px !important;
    font-weight: 600;
    transition: 0.3s;
}

    /* Hover */
    .login-btn:hover {
        background: linear-gradient(135deg, #0d6efd, #c3f277);
        color: #fff !important;
        transform: scale(1.05);
    }