/* ========================================
   GUDA Website - Master CSS
   Gandhinagar Urban Development Authority
   ======================================== */

/* ========== ROOT VARIABLES ========== */
:root {
    --primary-color: #1a4d8f;
    --secondary-color: #0d2d5e;
    --accent-green: #00c853;
    --accent-blue: #00b4ff;
    --accent-pink: #ff4081;
    --accent-orange: #ff9800;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --footer-bg: #1a1a1a;
    --header-height: 120px;
}

/* ========== GLOBAL RESET ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* ========== TOP INFO BAR ========== */
.top-info-bar {
    background-color: var(--secondary-color);
    color: white;
    padding: 8px 0;
    font-size: 13px;
}

.top-info-bar a {
    color: white;
    margin-left: 20px;
}

.top-info-bar a:hover {
    color: var(--accent-blue);
}

/* ========== HEADER ========== */
.site-header {
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-logo-section {
    padding: 5px 0;
    border-bottom: 1px solid var(--border-color);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    width: auto;
    height: 80px;
}

.logo-text h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
}

.logo-text p {
    font-size: 18px;
    color: var(--text-light);
    margin: 0;
}

/* ========== NAVIGATION ========== */
.main-navigation {
    background-color: var(--primary-color);
}

.navbar {
    padding: 0;
}

.navbar-nav {
    width: 100%;
}

.navbar-nav .nav-item {
    position: relative;
    padding: 0px 6px;
}

.navbar-nav .nav-link {
    color: white;
    padding: 18px 25px;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background-color: rgba(255,255,255,0.1);
    color: var(--accent-blue);
}

.navbar-toggler {
    border-color: rgba(255,255,255,0.5);
    padding: 8px 12px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ========== HERO SLIDER - NEW DESIGN ========== */
/* Base Styles */
.auda-smart-city-hero {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: #ffffff;
}

/* Carousel Styles */
#smartCityCarousel {
    height: 100vh;
    min-height: 400px;
    max-height: 400px;
}

#smartCityCarousel .carousel-item {
    height: 100%;
}

#smartCityCarousel .carousel-item img {
    height: 100vh;
    min-height: 400px;
    max-height: 400px;
    object-fit: cover;
    object-position: center;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 94, 175, 0.1) 0%, rgba(45, 156, 219, 0.1) 100%);
}

.carousel-caption {
    position: absolute;
    bottom: 25%;
    left: 10%;
    right: 10%;
    text-align: left;
    z-index: 10;
    padding: 0;
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
}

.slide-description {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    line-height: 1.4;
}

/* Carousel Controls */
#smartCityCarousel .carousel-indicators {
    bottom: 50px;
    margin: 0;
    justify-content: flex-start;
    left: 10%;
}

#smartCityCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    margin-right: 10px;
    opacity: 0.7;
}

#smartCityCarousel .carousel-indicators button.active {
    background: white;
    opacity: 1;
}

#smartCityCarousel .carousel-control-prev,
#smartCityCarousel .carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    backdrop-filter: blur(5px);
    opacity: 0.8;
    transition: all 0.3s ease;
}

#smartCityCarousel .carousel-control-prev {
    left: 30px;
}

#smartCityCarousel .carousel-control-next {
    right: 30px;
}

#smartCityCarousel .carousel-control-prev:hover,
#smartCityCarousel .carousel-control-next:hover {
    background: rgba(13, 94, 175, 0.9);
    opacity: 1;
}

/* Content Section */
.auda-content-section {
    background: #f6f6f6;
    color: white;
    height: 100vh;
    min-height: 400px;
    max-height: 400px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgb(0 0 0 / 30%) transparent;
}

.auda-content-section::-webkit-scrollbar {
    width: 6px;
}

.auda-content-section::-webkit-scrollbar-track {
    background: transparent;
}

.auda-content-section::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.content-wrapper {
    padding: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Section Header */
.section-header {
    margin-bottom: 40px;
}

.main-title {
    margin-bottom: 20px;
}

.title-line {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.1;
}

.title-line.highlight {
    color: #2d9cdb;
    background: linear-gradient(90deg, #2d9cdb, #27ae60);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.initiative-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, #27ae60, #2ecc71);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.initiative-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
}

/* AUDA Welcome Card */
.auda-welcome-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 35px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.welcome-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.auda-logo {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2d9cdb, #0d5eaf);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}

.welcome-title h3 {
    font-size: 1.6rem;
    margin: 0 0 5px 0;
    font-weight: 700;
}

.auda-text {
    color: #2d9cdb;
    position: relative;
}

.auda-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #2d9cdb, transparent);
}

.welcome-title p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.vision-section h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2d9cdb;
}

.vision-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.auda-info-block {
    padding: 50px 0;
    background-color: #ffffff;
    background-image: url(logo.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

/* Profile Card */
.profile-card img {
  width: 100%;
  max-width: 180px;
  border-radius: 12px;
  margin-bottom: 15px;
}

.profile-card h5 {
  color: #b11e3c;
  font-weight: 600;
  margin-bottom: 5px;
}

.profile-card p {
  font-size: 14px;
  color: #444;
}

/* Center Content */
.section-title {
  color: #b11e3c;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-text {
  color: #555;
  line-height: 1.7;
}

.read-more {
  color: #2a6df4;
  font-weight: 600;
  text-decoration: none;
}

/* Quick Links */
.quick-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quick-links .ql {
  padding: 12px 16px;
  border-radius: 10px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,.08);
}

/* Color Variants */
.ql.pink { background: #f14c7e; }
.ql.purple { background: #7b6cf6; }
.ql.blue { background: #4bb3ff; }
.ql.yellow { background: #f7b731; }
.ql.green { background: #2ecc71; }

/* 📱 Mobile */
@media (max-width: 767px) {
  .section-title {
    text-align: center;
  }

  .section-text {
    text-align: justify;
  }

  .quick-links {
    margin-top: 20px;
  }
}

/*leadership section*/
.leadership-section {
    width: 100%;
    font-family: Arial, sans-serif;
  }

  .leaders-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
  }

  .leader-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    color: inherit;
  }

  .leader-card:last-child {
    border-bottom: none;
  }

  .leader-card.active,
  .leader-card:hover {
    background: #fef9e0;
    border-left: 4px solid #f0c300;
  }

  .leader-card:not(.active):not(:hover) {
    border-left: 4px solid transparent;
  }

  .leader-photo {
    width: 58px;
    height: 68px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
    background: #e0e0e0;
  }

  .leader-photo-placeholder {
    width: 58px;
    height: 68px;
    border-radius: 4px;
    flex-shrink: 0;
    background: #d0d8e4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 1.6rem;
  }

  .leader-info {
    flex: 1;
    min-width: 0;
  }

  .leader-name {
    font-size: 0.88rem;
    font-weight: bold;
    color: #222;
    margin: 0 0 4px;
    line-height: 1.35;
  }

  .leader-position {
    font-size: 0.78rem;
    color: #555;
    margin: 0;
    line-height: 1.35;
  }

  .leader-link-tag {
    font-size: 0.68rem;
    font-weight: bold;
    color: #1a5276;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    flex-shrink: 0;
  }

  .leader-link-tag:hover {
    text-decoration: underline;
  }

  /* Arrow icon using CSS — no font-awesome needed */
  .ext-icon::after {
    content: "↗";
    font-size: 0.75rem;
  }

  @media (max-width: 480px) {
    .leadership-section {
      max-width: 100%;
    }

    .leader-photo,
    .leader-photo-placeholder {
      width: 50px;
      height: 58px;
    }
  }

/* Quick Links */
.quick-links-section {
    margin-bottom: 35px;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.quick-link-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    text-decoration: none;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.quick-link-card:hover {
    background: rgba(45, 156, 219, 0.2);
    border-color: #2d9cdb;
    transform: translateY(-3px);
    text-decoration: none;
    color: white;
}

.link-icon1 {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(45, 156, 219, 0.2), rgba(39, 174, 96, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #2d9cdb;
}

.link-text {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: auto;
}

.stat-item {
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #2d9cdb;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 1399px) {
    .slide-title {
        font-size: 3rem;
    }
    
    .title-line {
        font-size: 2.5rem;
    }
}

@media (max-width: 1199px) {
    .slide-title {
        font-size: 2.5rem;
    }
    
    .slide-description {
        font-size: 1.3rem;
    }
    
    .title-line {
        font-size: 2.2rem;
    }
    
    .content-wrapper {
        padding: 35px 30px;
    }
}

@media (max-width: 991px) {
    .auda-smart-city-hero .row {
        flex-direction: column;
    }
    
    #smartCityCarousel,
    .auda-content-section {
        height: 50vh;
        min-height: 400px;
        max-height: 400px;
    }
    
    .carousel-caption {
        bottom: 15%;
    }
    
    .slide-title {
        font-size: 2.2rem;
    }
    
    .slide-description {
        font-size: 1.1rem;
    }
    
    .title-line {
        font-size: 2rem;
    }
    
    .content-wrapper {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    #smartCityCarousel,
    .auda-content-section {
        height: auto;
        min-height: 400px;
    }
    
    .carousel-caption {
        bottom: 10%;
        left: 5%;
        right: 5%;
    }
    
    .slide-title {
        font-size: 1.8rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    #smartCityCarousel .carousel-control-prev,
    #smartCityCarousel .carousel-control-next {
        width: 45px;
        height: 45px;
    }
    
    .title-line {
        font-size: 1.8rem;
    }
    
    .content-wrapper {
        padding: 25px 20px;
    }
    
    .quick-links-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-section {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
}

@media (max-width: 575px) {
    #smartCityCarousel {
        min-height: 350px;
    }
    
    .slide-title {
        font-size: 1.5rem;
    }
    
    .slide-description {
        font-size: 0.9rem;
    }
    
    .title-line {
        font-size: 1.5rem;
    }
    
    .auda-logo {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .welcome-title h3 {
        font-size: 1.3rem;
    }
    
    .leader-name {
        font-size: 0.95rem;
    }
    
    .stats-section {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 400px) {
    .content-wrapper {
        padding: 20px 15px;
    }
    
    .carousel-caption {
        bottom: 5%;
    }
    
    .title-line {
        font-size: 1.3rem;
    }
    
    .initiative-badge {
        font-size: 0.8rem;
        padding: 8px 15px;
    }
}

/* Responsive for new hero design */
@media (max-width: 991px) {
    .hero-slide-wrapper {
        flex-direction: column;
        height: auto;
    }
    
    .hero-slide-main {
        height: 400px;
    }
    
    .hero-officials-sidebar {
        width: 100%;
        max-height: 400px;
    }
    
    .hero-content-center h1 {
        font-size: 40px;
    }
    
    .hero-slider-new .carousel-control-next {
        right: 30px;
    }
}

@media (max-width: 768px) {
    .hero-slide-main {
        height: 350px;
    }
    
    .hero-content-center h1 {
        font-size: 32px;
    }
    
    .official-card-new {
        padding: 12px;
    }
    
    .official-card-new img {
        width: 60px;
        height: 60px;
    }
    
    .official-info-new h4 {
        font-size: 13px;
    }
    
    .official-info-new p {
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .hero-slide-main {
        height: 300px;
    }
    
    .hero-content-center h1 {
        font-size: 28px;
    }
    
    .hero-officials-sidebar {
        padding: 15px 10px;
    }
}

/* ========== BUTTONS ========== */
.btn-primary-custom {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 35px;
    border-radius: 5px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 77, 143, 0.3);
}



/* ========== PHOTO GALLERY ========== */
.home-gallery-section {
    padding: 40px 0;
    background: transparent;
}

.section-title1 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 22px;
}

.section-title1::before {
    content: "";
    width: 4px;
    height: 24px;
    background: #f15a24;
}

.view-all {
    font-size: 14px;
    color: #0d6efd;
    text-decoration: none;
    font-weight: 600;
}

.gallery-grid img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform .3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* ===== CITIZEN COMMUNICATION ===== */

.citizen-box {
    background: #eaf6ff;
    border-radius: 10px;
    padding: 20px;
}

.citizen-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: #fff;
    border-radius: 8px;
    margin-bottom: 12px;
}

.citizen-item i {
    font-size: 26px;
    color: #0d6efd;
}

.citizen-item h6 {
    margin: 0;
    font-weight: 700;
}

.citizen-item small {
    color: #555;
}

.emergency-list {
    margin-top: 15px;
}

.emergency-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.emergency-item:last-child {
    border-bottom: none;
}

.emergency-item i {
    font-size: 24px;
}

.ambulance { color: #dc3545; }
.hearse { color: #0d6efd; }

/* ===== IMAGE LIGHTBOX ===== */

.image-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
}

.image-lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
}

.image-lightbox span {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
}



/* ========== SOCIAL MEDIA SECTION ========== */
.social-section {
    padding: 60px 0;
}

.social-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.social-btn {
    padding: 20px;
    color: white;
    font-weight: 600;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.social-btn.facebook {
    background-color: #3b5998;
}

.social-btn.instagram {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.social-btn.youtube {
    background-color: #ff0000;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* ========== PARTNER LOGOS SLIDER ========== */
.minimal-gov-section {
    background: #ffffff;
    border: 0px solid #dee2e6;
    overflow: hidden;
}

.simple-agency {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 100%;
    margin: 0 5px;
}

.simple-agency:hover {
    border-color: #0d6efd;
    background-color: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.simple-agency h6 {
    font-size: 1.1rem;
    color: #2c3e50;
}

.simple-agency p {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #34495e;
    min-height: 60px;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background: #0d6efd;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

.carousel-control-prev {
    left: 0px;
}

.carousel-control-next {
    right: 0px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: #0b5ed7;
}

.carousel-indicators [data-bs-target] {
    background-color: #0d6efd;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
}

.carousel-indicators {
    margin-bottom: 0;
    position: relative;
    margin-top: 20px;
}

.btn-sm {
    padding: 5px 15px;
    font-size: 0.85rem;
    border-radius: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
    
    .simple-agency {
        margin: 0 2px;
    }
    
    .simple-agency h6 {
        font-size: 1rem;
    }
    
    .simple-agency p {
        font-size: 0.8rem;
        min-height: 70px;
    }
    
    .simple-agency p br {
        display: none;
    }
}

@media (max-width: 576px) {
    .minimal-gov-section {
        margin: 10px;
    }
    
    .simple-icon i {
        font-size: 1.5rem !important;
    }
    
    .simple-agency p {
        min-height: auto;
    }
}

/* ========== FOOTER ========== */
.site-footer {
    background-color: var(--footer-bg);
    color: #999;
    padding: 60px 0 20px;
}

.footer-logo-section {
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 50px;
    height: 50px;
}

.footer-logo h3 {
    color: white;
    font-size: 24px;
    margin: 0;
}

.footer-info p {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.last-updated {
    background-color: rgba(255,255,255,0.05);
    padding: 10px 15px;
    border-left: 3px solid var(--accent-green);
    font-size: 13px;
}

.footer-heading {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent-green);
}

.footer-links li {
    margin-bottom: 10px;
}
.footer-links ol, ul {
    padding: 0px;
}

.footer-links a {
    color: #999;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-blue);
    padding-left: 5px;
}

.footer-links a::before {
    content: '›';
    margin-right: 8px;
    color: var(--accent-green);
}

.contact-info li {
    margin-bottom: 15px;
    font-size: 14px;
    display: flex;
    align-items: start;
    gap: 10px;
}

.contact-info i {
    color: var(--accent-green);
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 0px;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.footer-bottom-links a {
    color: #999;
    font-size: 12px;
}

.footer-bottom-links a:hover {
    color: var(--accent-blue);
}

/* ========== UTILITY CLASSES ========== */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.text-primary-custom {
    color: var(--primary-color);
}

.text-accent {
    color: var(--accent-blue);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 991px) {
    .hero-content-center h1 {
        font-size: 36px;
    }
    
    .hero-slide-wrapper {
        flex-direction: column;
        height: auto;
    }
    
    .hero-slide-main {
        height: 400px;
    }
    
    .hero-officials-sidebar {
        width: 100%;
        max-height: 400px;
    }
    
    .navbar-nav .nav-link {
        padding: 12px 20px;
    }
}

@media (max-width: 768px) {
    .hero-slide-main {
        height: 350px;
    }
    
    .hero-content-center h1 {
        font-size: 28px;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    .about-section {
        padding: 50px 0;
    }
    
    .quick-links-sidebar {
        position: static;
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .logo-text h1 {
        font-size: 20px;
    }
    
    .logo-text p {
        font-size: 12px;
    }
    
    .hero-content-center h1 {
        font-size: 24px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ========== SCROLLBAR STYLING ========== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}


/*about us page*/
ul.smallpoint li {
    background: url(smallbulet.jpg) no-repeat left 5px;
    padding-left: 25px;
    color: #666666;
    line-height: 25px;
    vertical-align: top;
}


/*--- news & events setion ---*/
.news-box {
    width: 100%;
    font-family: Arial, sans-serif;
  }

  .news-scroll {
    height: 60vh;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 0 12px;
  }

  /* Custom scrollbar */
  .news-scroll::-webkit-scrollbar { width: 5px; }
  .news-scroll::-webkit-scrollbar-track { background: #f5f5f5; }
  .news-scroll::-webkit-scrollbar-thumb { background: #bbb; border-radius: 4px; }

  .news-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
  }

  .news-row:last-child {
    border-bottom: none;
  }

  .news-date {
    flex-shrink: 0;
    font-size: 0.72rem;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 3px 6px;
    text-align: center;
    color: #444;
    white-space: nowrap;
  }

  .news-content {
    flex: 1;
    min-width: 0;
  }

  .news-new-badge {
    display: inline-block;
    margin-bottom: 2px;
  }

  .news-new-badge img {
    height: 13px;
    vertical-align: middle;
  }

  .news-title {
    display: block;
    font-size: 0.85rem;
    color: #222;
    line-height: 1.4;
    word-break: break-word;
  }

  .news-pdf-link {
    flex-shrink: 0;
    font-size: 1.3rem;
    color: #c0392b;
    text-decoration: none;
    line-height: 1;
    transition: color 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
  }

  .news-pdf-link:hover {
    color: #922b21;
    transform: scale(1.15);
  }

  /* PDF icon via inline SVG */
  .news-pdf-link svg .icon-body { fill: #c0392b; }
  .news-pdf-link:hover svg .icon-body { fill: #922b21; }




  /*---- approval confirmation system ---*/
  .acs-wrapper {
    width: 100%;
    font-family: Arial, sans-serif;
  }

  .acs-month-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
  }

  .acs-month {
    background: #fff;
    border: 1px solid #dde4ed;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    transition: box-shadow 0.2s;
  }

  .acs-month:hover {
    box-shadow: 0 4px 14px rgba(26,82,118,0.13);
  }

  .acs-month h2 {
    font-size: 0.82rem;
    font-weight: bold;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: linear-gradient(90deg, #1a5276, #2471a3);
    color: #fff;
    padding: 9px 14px;
    margin: 0;
  }

  .acs-links {
    display: flex;
    flex-direction: column;
  }

  .acs-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    text-decoration: none;
    color: #1a5276;
    font-size: 0.85rem;
    border-bottom: 1px solid #f0f3f7;
    transition: background 0.2s, color 0.2s, padding-left 0.2s;
  }

  .acs-links a:last-child {
    border-bottom: none;
  }

  .acs-links a:hover {
    background: #eaf1fb;
    color: #154360;
    padding-left: 18px;
  }

  .acs-links a:hover .pdf-body {
    fill: #154360;
  }

  .acs-links a .link-label {
    flex: 1;
  }

  .acs-links a .link-arrow {
    font-size: 0.75rem;
    color: #aac;
    transition: transform 0.2s, color 0.2s;
  }

  .acs-links a:hover .link-arrow {
    transform: translateX(3px);
    color: #1a5276;
  }

  @media (max-width: 480px) {
    .acs-month-grid {
      grid-template-columns: 1fr;
    }
  }