/* Custom Fonts (optional: for a look closer to Marathi govt sites) */
 @import url('https://fonts.googleapis.com/css2?family=Tiro+Devanagari+Marathi:wght@400;700&display=swap'); 

/* --- General Styles --- */
body {
     font-family: 'Tiro Devanagari Marathi', sans-serif; 
    color: #333;
    /*font-family: 'Poppins', sans-serif ; */


}

.smart-header {
  font-family: 'Noto Sans Devanagari', sans-serif;
  position: relative;
  z-index: 1000;
}

/* 🔹 Topbar */
.topbar {
  background: linear-gradient(90deg, #004aad, #007bff, #009ffd);
  color: #fff;
  font-size: 0.72rem;
  animation: gradientMove 8s infinite alternate ease-in-out;
}
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
.gp-title {
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.25);
}
.contact-item i {
  color: #ffd500;
  margin-right: 6px;
}
.contact-item {
  color: #f8f9fa;
  font-weight: 500;
}

/* 🔹 Social Icons */
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #fff;
  font-size: 0.7rem;
  margin-left: 6px;
  transition: all 0.3s ease;
}
.social-links a.facebook { background-color: #3b5998; }
.social-links a.twitter { background-color: #1da1f2; }
.social-links a.linkedin { background-color: #0077b5; }
.social-links a.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 50%, #d6249f 75%, #285AEB 100%);
}
.social-links a:hover {
  transform: scale(1.15);
  filter: brightness(1.1);
}

/* 🔹 Navbar */
.main-navbar {
  background: #fff;
  /*border-top: 3px solid #004aad;*/
  transition: all 0.3s ease;
}
.main-navbar.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  z-index: 1001;
  animation: slideDown 0.4s ease forwards;
}
@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.main-navbar .nav-link {
  color: #333;
  font-weight: 600;
  padding: 0.9rem 1.3rem;
  transition: all 0.3s ease;
  position: relative;
}
.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
  color: #004aad;
}
.main-navbar .nav-link::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 50%;
  width: 0;
  height: 3px;
  background: #004aad;
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}
.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after {
  width: 60%;
}

/* 🔹 Mobile Menu */
.navbar-toggler {
  border: none;
  color: #004aad;
  font-size: 1.4rem;
}
.offcanvas {
  background-color: #f8f9fa;
}
.offcanvas-title {
  color: #004aad;
  font-weight: 700;
}
.offcanvas-body .nav-link {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid #e0e0e0;
  font-weight: 600;
  color: #333;
  transition: all 0.3s ease;
}
.offcanvas-body .nav-link:hover {
  background: #004aad;
  color: #fff;
}

/* 🔹 Responsive */
@media (max-width: 991px) {
  .topbar { display: none; }
  .navbar-brand { font-size: 1.1rem; }
}





/*Hero css slider */

/* === Hero Section Container === */
.hero-slider {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

/* === Background Images === */
.slider-image {
  position: relative;
  width: 100%;
  height: 90vh;
  background-size: cover;
  background-position: center;
  transition: transform 10s ease-in-out;
}

.zoom-bg {
  animation: zoomInOut 12s ease-in-out infinite;
}

/* === Gradient Overlay === */
.overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, rgba(0,0,0,0.65), rgba(0,0,0,0.25));
  backdrop-filter: blur(1px);
}

/* === Text Content === */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  padding: 20px;
  max-width: 850px;
  animation: fadeUp 1.2s ease both;
}

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 18px;
  text-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
}

/* === Custom Disc Indicators === */
.carousel-indicators.custom-indicators {
  bottom: 25px;
}

.carousel-indicators.custom-indicators button {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.4);
  border: none;
  margin: 0 6px;
  transition: all 0.4s ease;
}

.carousel-indicators.custom-indicators button.active {
  background: linear-gradient(135deg, #ffca28, #ffb300);
  box-shadow: 0 0 12px rgba(255, 193, 7, 0.8);
  transform: scale(1.3);
}

/* === Transition Animations === */
.carousel-fade .carousel-item {
  transition: opacity 1.2s ease-in-out;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translate(-50%, -40%);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@keyframes zoomInOut {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

/* === Responsive === */
@media (max-width: 992px) {
  .hero-slider, .slider-image { height: 70vh; }
  .hero-content h1 { font-size: 2.2rem; }
  .hero-content p { font-size: 1rem; }
}

@media (max-width: 768px) {
  .hero-slider, .slider-image { height: 55vh; }
  .hero-content h1 { font-size: 1.8rem; }
  .hero-content p { font-size: 0.95rem; }
  .carousel-indicators.custom-indicators { bottom: 15px; }
}














/*about us css */
/* --- Gram Panchayat Members Section Styles --- */
/* Section background gradient */
.grampanchayat-members {
  background: linear-gradient(180deg, #fff7e6 0%, #fff 100%);
  position: relative;
  overflow: hidden;
}

/* Title Styling */
.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #2d2d2d;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ffc107, #ff7b00);
  margin: 10px auto 0;
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-top: 10px;
}

/* Member Card */
.member-card {
  background: #ffffff;
  border-radius: 20px;
  text-align: center;
  padding: 25px 20px 35px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.member-card:hover {
  transform: translateY(-8px);
  border: 2px solid #ffc107;
  box-shadow: 0 10px 25px rgba(255, 193, 7, 0.25);
}

/* Image Styling */
.member-image-container {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 15px;
  border: 6px solid #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  background: #fff;
  transition: transform 0.4s ease;
}

.member-card:hover .member-image-container {
  transform: scale(1.08);
}

.member-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Info Section */
.member-info {
  margin-top: 10px;
}

.member-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
}

.member-designation {
  font-size: 0.95rem;
  color: #666;
  background: #fff8e1;
  display: inline-block;
  padding: 6px 15px;
  border-radius: 20px;
  margin-top: 5px;
}

/* Floating Decorative Circle Backgrounds */
.grampanchayat-members::before,
.grampanchayat-members::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.grampanchayat-members::before {
  width: 250px;
  height: 250px;
  background: #ffc107;
  top: -80px;
  right: -100px;
}

.grampanchayat-members::after {
  width: 300px;
  height: 300px;
  background: #ff7b00;
  bottom: -120px;
  left: -120px;
}

/* Mobile Responsiveness */
@media (max-width: 575.98px) {
  .section-title {
    font-size: 1.6rem;
  }

  .member-card {
    padding: 20px;
  }

  .member-image-container {
    width: 110px;
    height: 110px;
  }

  .member-name {
    font-size: 1rem;
  }

  .member-designation {
    font-size: 0.85rem;
    padding: 5px 10px;
  }
}















/* --- Gram Panchayat Info Section Styles --- */
/* Section Background */
.grampanchayat-info {
  background: linear-gradient(135deg, #fff8e1 0%, #fff 100%);
  position: relative;
  overflow: hidden;
}

/* Text Section */
.info-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease;
}

.subtitle {
  font-size: 1rem;
  color: #ffb300;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #2e2e2e;
  margin-bottom: 25px;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: #ffb300;
  border-radius: 2px;
  margin-top: 8px;
}

.description-text {
  color: #444;
  line-height: 1.8;
  font-size: 1.1rem;
  text-align: justify;
  margin-bottom: 30px;
}

/* Button */
.btn-info-more {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, #ffca28, #ffb300);
  color: #222;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.3);
  transition: all 0.3s ease;
}

.btn-info-more:hover {
  background: linear-gradient(135deg, #ffc107, #ffa000);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

/* Image Stack (Floating Design) */
.image-stack {
  position: relative;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.floating-bg {
  position: absolute;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 202, 40, 0.15), transparent);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
}

.floating-card {
  position: absolute;
  width: 65%;
  transition: transform 0.6s ease, box-shadow 0.4s ease;
}

.floating-card img {
  width: 100%;
  border-radius: 20px;
}

.card-1 {
  top: 0;
  left: 10%;
  transform: rotate(-6deg);
}

.card-2 {
  bottom: 0;
  right: 10%;
  transform: rotate(6deg);
}

.floating-card:hover {
  transform: scale(1.05) rotate(0deg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .grampanchayat-info {
    padding: 3rem 1rem;
  }
  .image-stack {
    height: auto;
    flex-direction: column;
  }
  .floating-card {
    position: relative;
    width: 90%;
    transform: none;
    margin-bottom: 20px;
  }
  .floating-bg {
    display: none;
  }
  .section-title {
    font-size: 2rem;
  }
}

/* Fade-in Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}







/* --- Village Stats Section Styles --- */

.village-stats {
    background-color: #fff; /* White background for contrast if used below a light section */
    /* Alternatively, if you want a subtle background like the image: */
    /* background-color: #f8f9fa; */
}

/* Stat Card Styling */
.stat-card {
    background-color: #f7f7f7; /* Light gray background matching the image */
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05); /* Soft shadow */
    transition: transform 0.2s;
    height: 100%; /* Ensure all cards are the same height */
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

/* Icon Styling */
.stat-icon {
    font-size: 2.5rem;
    color: #4CAF50; /* Green color matching the image icons */
    margin-bottom: 15px;
    display: block;
}

/* Number Styling */
.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529; /* Dark text color */
    margin-bottom: 5px;
}

/* Label Styling */
.stat-label {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 0;
    line-height: 1.3;
}

/* --- Mobile Responsiveness (Adjustments for small screens) --- */
@media (max-width: 767.98px) {
    /* On small screens (col-6), the icon and number sizes are slightly reduced */
    .stat-icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }

    .stat-card {
        padding: 20px 15px;
    }
}




/* --- Village Personnel and Committee Styles --- */

 
.card-custom {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* Soft shadow */
    overflow: hidden; /* Ensures header border radius is respected */
}

.card-header-custom {
     /* Bootstrap primary blue color */
    color: white;
    font-weight: 600;
    padding: 15px 20px;
    font-size: 1.1rem;
    border-bottom: none;
}



/* Styling for the Functionaries List */
.list-group-item {
    padding: 12px 20px;
    font-size: 0.95rem;
    border-color: #f0f0f0; /* Lighter borders between items */
}

.list-group-item:last-child {
    border-bottom: none;
}

/* Alternating background color for better readability (like zebra stripes) */
.list-group-item:nth-child(even) {
    background-color: #fcfcfc;
}

/* Styling for the Committees List */
.committee-list .list-group-item {
    font-weight: 500;
    color: #333;
    /* Add a simple dot or bullet point for clarity */
    list-style: disc;
    margin-left: 20px;
}
.committee-list {
    padding-left: 0; /* Override default list group padding */
}



.col1{
    background-color: #4caf50;
}

.col2{
    background-color: #ff0002;
}
















/* --- Testimonial Section Styles --- */
/* Background section */
.testimonial-section {
  background: linear-gradient(
      rgba(255, 255, 255, 0.8),
      rgba(255, 255, 255, 0.8)
    ),
    url("asset/img/bg-domain.png") center/cover fixed;
  position: relative;
  padding: 80px 0;
}

/* Section title */
.section-title {
  font-size: 2.2rem;
  color: #222;
  letter-spacing: 0.5px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #ffb703, #fb8500);
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* Testimonial card */
.testimonial-card {
  max-width: 850px;
  padding: 50px 40px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(253, 126, 20, 0.2);
  position: relative;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(253, 126, 20, 0.3);
}

/* Quote icon */
.quote-icon {
  font-size: 3.5rem;
  color: #fb8500;
  position: absolute;
  top: 25px;
  left: 25px;
  opacity: 0.2;
}

/* Testimonial text */
.testimonial-text {
  font-size: 1.15rem;
  color: #333;
  font-style: italic;
  line-height: 1.9;
  margin-bottom: 40px;
}

/* Author section */
.testimonial-author {
  margin-top: 15px;
}

.author-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fb8500;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.testimonial-card:hover .author-img {
  transform: scale(1.05);
}

.author-name {
  font-weight: 700;
  color: #222;
  font-size: 1.1rem;
}

.author-title {
  color: #6c757d;
  font-size: 0.9rem;
}

/* Carousel controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #fb8500;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .testimonial-card {
    padding: 30px 20px;
  }
  .testimonial-text {
    font-size: 1rem;
  }
  .quote-icon {
    font-size: 2.8rem;
  }
}









/* --- Photo Gallery Section Styles --- */

.photo-gallery-section {
    background-color: #ffffff; /* Clean white background */
}

/* Reusing the custom title style */
.photo-gallery-section .section-title-custom {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    padding-bottom: 10px;
    border-bottom: 2px solid #ffc107; /* Orange/Amber accent line */
    display: inline-block;
}

/* Individual Gallery Item Container */
.gallery-item {
    position: relative;
    overflow: hidden; /* Important for clean borders and effects */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    line-height: 0; /* Prevents extra spacing under the image */
}

/* Image Styling - ensures uniform look and height */
.gallery-img {
    width: 100%;
    height: 250px; /* Fixed height for consistent grid look */
    object-fit: cover; /* Ensures image fills the space without distortion */
    transition: transform 0.4s ease-in-out;
}

/* Hover Effect: Image Zoom */
.gallery-item:hover .gallery-img {
    transform: scale(1.08);
}

/* Overlay for Hover Effect (Caption) */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: rgba(13, 110, 253, 0.75);  */
    /*background: rgb(76 175 80 / 81%); */
    background: rgb(22 22 22 / 81%);

    opacity: 0; /* Hidden by default */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease-in-out;
}

/* Hover Effect: Show Overlay */
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Caption Text */
.gallery-caption {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    padding: 10px;
    border: 2px solid white;
    border-radius: 5px;

    display: -webkit-box;          /* Required for line clamping */
    -webkit-box-orient: vertical;  
    -webkit-line-clamp: 2;         /* Number of lines to show */
    overflow: hidden;               /* Hide overflow */
    text-overflow: ellipsis;        /* Show ... at the end */
}

/* Reusing the "More" button style */
.btn-info-more {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ffc107; 
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
}

.btn-info-more:hover {
    background-color: #e0a800;
    color: #000;
}


/* --- Mobile Responsiveness --- */
@media (max-width: 767.98px) {
    /* Reduce height of images on mobile for better screen space management */
    .gallery-img {
        height: 200px;
    }
}



/* --- Custom Modal (Lightbox) Styles --- */

.modal-content-custom {
    background-color: transparent; /* Remove white background */
    border: none;
}

.modal-body {
    position: relative;
    text-align: center;
}

#modalImage {
    max-height: 90vh; /* Limit height to 90% of viewport height */
    width: auto;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
}

/* Custom Close Button Position */
.btn-close-white {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1060; /* Above the image */
    opacity: 0.8;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    filter: drop-shadow(0 0 2px rgba(0, 0, 0, 1));
}

/* Caption Text */
.modal-caption-text {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 1rem;
    z-index: 1050;
    max-width: 80%;
}

/* Navigation Buttons Styling */
.modal-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.modal-nav-btn:hover {
    opacity: 1;
}

/*.modal-nav-btn .carousel-control-prev-icon,
.modal-nav-btn .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    padding: 10px;
    width: 40px;
    height: 40px;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}
*/
#prevImage {
    left: 5px;
}

#nextImage {
    right: 5px;
}

@media (max-width: 767.98px) {
    #modalImage {
        max-height: 80vh; 
    }
    .modal-nav-btn {
        width: 40px;
        height: 40px;
    }
}
















/* --- Notice Section Styles --- */
.notice-section {
  background: linear-gradient(180deg, #fffefc, #f8f9fa);
  position: relative;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: #212529;
  margin-bottom: 10px;
  position: relative;
}
.section-title::after {
  content: "";
  width: 80px;
  height: 3px;
  background: #ffc107;
  display: block;
  margin: 10px auto;
  border-radius: 3px;
}
.section-subtitle {
  color: #6c757d;
  font-size: 1rem;
}

/* Card Layout */
.notice-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}
.notice-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* Alternate layout */
.notice-card.reverse {
  flex-direction: column-reverse;
}
@media (min-width: 768px) {
  .notice-card.reverse {
    flex-direction: row-reverse;
  }
}

/* Image Section */
.notice-image-wrapper {
  flex: 1 1 40%;
  background: rgba(255, 193, 7, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.notice-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.notice-card:hover .notice-image {
  transform: scale(1.05);
}

/* Content Section */
.notice-content-box {
  flex: 1 1 60%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.notice-tag {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.notice-tag.urgent {
  background: #dc3545;
  color: #fff;
}
.notice-tag.general {
  background: #ffc107;
  color: #212529;
}
.notice-tag.sabha {
  background: #0d6efd;
  color: #fff;
}

.notice-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 10px;
}
.notice-description {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.notice-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px dashed #eee;
  padding-top: 10px;
  font-size: 0.9rem;
}
.notice-date {
  color: #6c757d;
}
.notice-read-more {
  color: #0d6efd;
  text-decoration: none;
  font-weight: 600;
}
.notice-read-more:hover {
  color: #084298;
}

/* Button */
.btn-info-more {
  display: inline-block;
  background-color: #ffc107;
  color: #000;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s;
}
.btn-info-more:hover {
  background-color: #e0a800;
}

/* Mobile */
@media (max-width: 767px) {
  .notice-card {
    flex-direction: column;
  }
  .notice-image-wrapper {
    flex: unset;
    height: 200px;
  }
  .notice-content-box {
    padding: 20px;
  }
  .notice-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}










/* --- Footer Section Styles --- */

/* ======= FOOTER BASE ======= */
.gp-footer {
  background: #111827;
  color: #e9ecef;
  font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

.footer-top {
  padding: 60px 0 40px;
  background: radial-gradient(circle at top left, rgba(255,193,7,0.08), rgba(255,193,7,0.02) 50%);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

/* ======= TITLES ======= */
.footer-title {
  color: #ffc107;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 6px;
  border-bottom: 2px solid rgba(255, 193, 7, 0.2);
}

/* ======= ABOUT BLOCK ======= */
.footer-text {
  color: #adb5bd;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* ======= SOCIAL ICONS ======= */
.social-row {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 193, 7, 0.1);
  color: #ffc107;
  transition: 0.3s ease;
}

.social-btn:hover {
  background: #ffc107;
  color: #111;
  transform: translateY(-2px);
}

/* ======= LINKS ======= */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #adb5bd;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffc107;
}

/* ======= CONTACT ======= */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  margin-bottom: 10px;
  color: #ced4da;
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-contact a {
  color: #ffc107;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.contact-icon {
  color: #ffc107;
  margin-right: 10px;
}

/* ======= BOTTOM STRIP ======= */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 15px 0;
  background: #0d1117;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  gap: 10px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: #adb5bd;
}

.footer-bottom .developer span {
  color: #ffc107;
  font-weight: 600;
}

/* ======= RESPONSIVE ======= */
@media (max-width: 767px) {
  .footer-top {
    padding: 40px 0 20px;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 6px;
  }
}
 
/*
.alt-main-footer {
    background-color: #f0f4f7;  
    color: #495057;  
    border-top: 5px solid #0d6efd;  
}

.alt-footer-heading {
    color: #0d6efd;  
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 5px;
    border-bottom: 1px solid #ced4da;  
}

.alt-footer-about {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6c757d;
}
 
.alt-footer-links, .alt-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.alt-footer-links li {
    margin-bottom: 8px; 
    position: relative;
    padding-left: 15px;
}
.alt-footer-links li::before {
    content: "•";
    color: #ffc107; 
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    position: absolute;
    left: 0;
}

.alt-footer-links a, .alt-footer-contact a {
    color: #495057;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.alt-footer-links a:hover, .alt-footer-contact a:hover {
    color: #0d6efd; 
}
 
.alt-footer-contact li {
    font-size: 0.95rem;
    color: #495057;
}

.alt-contact-icon {
    color: #0d6efd;
    margin-right: 10px;
    font-size: 1.1rem;
    width: 20px; 
}
 
.alt-social-icon {
    display: inline-block;
    width: 38px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    border-radius: 4px;  
    border: 1px solid #ced4da;
    background-color: transparent;
    color: #0d6efd;
    font-size: 1.1rem;
    margin-right: 10px;
    transition: all 0.3s;
}

.alt-social-icon:hover {
    background-color: #0d6efd;
    color: white;
    border-color: #0d6efd;
}
 
.alt-footer-bottom {
    background-color: #343a40;  
}

.alt-copyright-text {
    font-size: 0.85rem;
    color: #ced4da;  
}

 
@media (max-width: 767.98px) {
    .alt-footer-heading {
        margin-top: 15px;
        font-size: 1.2rem;
    }
     
    .footer-col {
        text-align: center;
    }

    .alt-footer-links li, .alt-footer-contact li {
        text-align: left; 
        display: inline-block;
        width: 100%;
    }
    
    .alt-footer-links li {
        padding-left: 0;  
    }
    .alt-footer-links li::before {
        left: -10px;  
        position: relative;
    }
    
    .alt-contact-icon {
        float: left;
    }
}*/






.bg-red{
    background-color: #ff0002;
}


.text-primary{
    color: #ff0002 !important;
}

.border-success{
    border-color: #4CAF50 !important;
}


.border-danger{
    border-color: #ff0002 !important;
}


.bg-success{
    background-color: #4CAF50 !important;
}

.btn-success{
    background-color: #4CAF50 !important;
}









 /* Limit to ~9 lines initially */
  #description-container.collapsed {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 9;
    -webkit-box-orient: vertical;
  }

  #loadMoreBtn {
    cursor: pointer;
    background-color: #f1f1f1;
    border-radius: 6px;
  }