html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 14px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}


.navbar-nav .nav-link {
    padding: 0.75rem 1rem;
    border-right: 1px solid white;
    position: relative;
}

.navbar-nav .nav-item:last-child .nav-link {
    border-right: none;
}

.nav-link.dropdown-toggle::after {
    display: none;
}

.nav-link.has-dropdown::after {
    content: "+";
    position: absolute;
    right: 10px;
    font-weight: bold;
    font-size: 14px;
}

.top-bar {
    background-color: darkblue;
    color: white;
    padding: 5px 0;
    font-size: 14px;
}

.contact-icon {
  font-size: 1.1rem;
}

.top-bar strong {
  color: #ffffff;
}

@media (max-width: 767px) {
  .top-bar {
    font-size: 0.9rem;
  }
}

.navbar {
    background-color: #1A8731;
}

.nav-link {
    color: white !important;
    font-weight: 500;
   
}

    .nav-link:hover,
    .dropdown-item:hover {
        background-color: #14662A;
        color: #fff !important;
    }

/* Style for dropdown menu */
.dropdown-menu {
    background-color: #1A8731; /* white background */
    border: 1px solid #ffffff; /* green border */
    border-radius: 8px;
    padding: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    min-width: 200px;
}


    /* Style for each dropdown item */
    .dropdown-menu .dropdown-item {
        color: #ffffff;
        padding: 10px 20px;
        font-weight: 500;
        border:1px solid;
        transition: background-color 0.3s, color 0.3s;
    }

        /* Hover effect */
        .dropdown-menu .dropdown-item:hover {
            background-color: #14662A; /* green background on hover */
            color: #ffffff; /* white text on hover */
        }


.plus-icon {
    font-weight: bold;
    margin-left: 4px;
}

/* News Ticker Styles */
.news-section {
    background-color: #003366;
    color: white;
    font-family: 'Segoe UI', sans-serif;
    overflow: hidden;
    border-top: 2px solid #ffa500;
    border-bottom: 2px solid #ffa500;
}

.news-title {
    background-color: #ffa500;
    color: black;
    padding: 10px 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
}

    .news-title i {
        color: black;
    }

.news-ticker-container {
    position: relative;
    overflow: hidden;
    height: 45px;
}

.news-ticker {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: scroll-left 25s linear infinite;
    font-size: 16px;
    line-height: 45px;
}

    .news-ticker:hover {
        animation-play-state: paused;
    }

.ticker-item {
    margin-right: 60px;
    display: inline-block;
}

    .ticker-item i {
        color: #ffa500;
        margin-right: 8px;
    }

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

@media (max-width: 576px) {
    .news-title {
        font-size: 16px;
        padding: 8px 12px;
    }

    .news-ticker {
        font-size: 14px;
    }

}
.marquee-container {
    height: 200px; /* Height of visible area */
    overflow: hidden;
    position: relative;
    background: #f1f1f1;
    border: 1px solid #ccc;
}

.marquee-content {
    position: absolute;
    width: 100%;
    animation: scroll-up 15s linear infinite;
}

@keyframes scroll-up {
    0% {
        top: 100%;
    }

    100% {
        top: -100%;
    }
}

.marquee-item {
    padding: 8px 16px;
    font-size: 16px;
    color: #004080;
}

.section-title {
    font-weight: bold;
    font-size: 18px;
    border-bottom: 3px solid #ffc107;
    margin-bottom: 8px;
    padding-bottom: 4px;
}

.chairman-card {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

    .chairman-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

.chairman-img {
    border: 4px solid #198754; /* Bootstrap success color */
    padding: 2px;
    background: #fff;
}

.news-card {
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
}

.news-marquee {
    height: 260px;
    overflow: hidden;
    position: relative;
    padding: 0.5rem 1rem;
}

.news-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    animation: scroll-up 12s linear infinite;
}

    .news-list li {
        padding: 8px 0;
        border-bottom: 1px dashed #ddd;
        font-size: 14px;
        color: #333;
    }

@keyframes scroll-up {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-100%);
    }
}

/* Smooth hover pause effect */
.news-marquee:hover .news-list {
    animation-play-state: paused;
}

.section-box {
    border: 1px solid #f5d142;
    border-radius: 8px;
    text-align: center;
    padding: 30px 10px 15px;
    margin: 10px;
    transition: all 0.3s ease-in-out;
}

    .section-box:hover {
        box-shadow: 0 0 15px rgba(255, 204, 0, 0.5);
        transform: translateY(-5px);
    }

.section-icon {
    width: 60px;
    height: 60px;
    border: 2px solid #f5c518;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    background-color: white;
    font-size: 24px;
    color: #f5c518;
}

.section-title {
    font-weight: bold;
    font-size: 1.1rem;
}

.equal-height {
    height: 100%;
}

.chairman-card, .news-card {
    background-color: #f8f9fa;
    min-height: 100%;
    border-radius: 10px;
}

.news-marquee {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.news-list {
    list-style: none;
    padding-left: 1rem;
    animation: scroll-up 12s linear infinite;
    margin-bottom: 0;
}

    .news-list li {
        padding: 6px 0;
        font-size: 14px;
        border-bottom: 1px solid #e0e0e0;
    }

@keyframes scroll-up {
    0% {
        transform: translateY(0%);
    }

    100% {
        transform: translateY(-100%);
    }
}

.card-header {
    border-radius: 10px 10px 0 0;
}

.chairman-img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border: 4px solid #dee2e6;
}


.footer-top h5 {
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: 2px solid #198754;
    display: inline-block;
    padding-bottom: 6px;
}

.footer-top .social-icons a:hover {
    color: #198754 !important;
}

.footer-top .footer-links a:hover {
    color: #198754 !important;
    text-decoration: underline;
}




.grievance-card {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: 0.3s;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    background: #fff;
}

.grievance-icon {
    font-size: 40px;
    color: orange;
    margin-bottom: 15px;
}

.grievance-text {
    font-size: 18px;
    color: #2c2c2c;
    margin-bottom: 10px;
}

.click-here {
    color: #292b63;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}


.video-feature .video-play i {
    transition: transform 0.3s ease-in-out;
}

.video-feature .video-play:hover i {
    transform: scale(1.2);
}

.bg-image {
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.owl-carousel .card {
    margin: 10px;
    transition: transform 0.3s ease-in-out;
}

    .owl-carousel .card:hover {
        transform: translateY(-5px);
    }
.status-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    color: white;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease-in-out;
}


.icon-circle {
    width: 70px;
    height: 70px;
    border: 2px solid #ffc107; /* Yellow border */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    transition: 0.3s ease;
}

.icon-circle:hover {
    background-color: #ffc107;
    color: white !important;
    transform: scale(1.1);
}


.overlay {
    z-index: 0;
}

.link-box {
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(0,0,0,0.4);
    border-radius: 8px;
    transition: transform 0.3s, background 0.3s;
}

    .link-box:hover {
        background: rgba(255,193,7,0.2);
        transform: translateY(-5px);
    }

.icon-circle {
    margin: auto;
    width: 60px;
    height: 60px;
    border: 2px solid #ffc107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, color 0.3s;
}

    .icon-circle:hover {
        background: #ffc107;
        color: #fff;
    }














