/* ===== RESET AND BASE STYLES ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        /* ===== HEADER STYLES ===== */
        .header-top {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 10px 0;
            position: relative;
        }

        .social-links {
            display: flex;
            gap: 15px;
            justify-content: center;
        }

            .social-links a {
                color: white;
                font-size: 18px;
                transition: all 0.3s ease;
                padding: 8px;
                border-radius: 50%;
                background: rgba(255, 255, 255, 0.1);
            }

                .social-links a:hover {
                    transform: translateY(-3px);
                    background: rgba(255, 255, 255, 0.2);
                }

        .header-main {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            padding: 20px 0;
            position: relative;
            overflow: hidden;
        }

            .header-main::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><polygon fill="rgba(255,255,255,0.1)" points="0,20 100,0 100,20"/></svg>');
                background-size: 100px 20px;
            }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            font-size: medium;
        }

        .header-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            color: white;
            position: relative;
            z-index: 2;
        }

        .logo-section h2 {
            font-size: 2.2rem;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .emblem {
            text-align: right;
        }

        .welcome-banner {
            background: linear-gradient(45deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
            padding: 15px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .welcome-text {
            font-size: 1.1rem;
            color: #333;
            animation: slideText 20s linear infinite;
        }

        @keyframes slideText {
            0% {
                transform: translateX(100%);
            }

            100% {
                transform: translateX(-100%);
            }
        }

        .slogan-box {
            display: flex;
            justify-content: center;
            gap: 100px; /* चार शब्दांमध्ये अंतर */
            margin-top: 20px;
            flex-wrap: wrap;   
            text-align: center;
        }

        .slogan-box span {
            font-size: 28px;
            font-weight: 700;
            font-family: "Noto Sans Devanagari", sans-serif;
            
            /* सुंदर रंगाचा इफेक्ट */
            background: linear-gradient(90deg, #ff6a00, #04ee2b);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;

            text-shadow: 1px 1px 3px rgba(0,0,0,0.25);
            transition: 0.3s ease;
        }

        .slogan-box span:hover {
            transform: scale(1.1);
        }

        @media (max-width: 768px) {
            .slogan-box {
                gap: 25px;               /* 🔹 reduce gap */
                margin-top: 10px;
            }

            .slogan-box span {
                font-size: 18px;         /* 🔹 smaller text */
                display: block;
                width: 15%;       /* 🔹 one word per line */
            }
        }

        h2 {
            text-align: center;
            margin: 20px;
        }

        .container h2 {
            text-align: center;
            margin-top: 40px;
        }
        .history-text {
            white-space: pre-wrap;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ===== HERO SECTION ===== */
        .hero-section {
            min-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

            .hero-section::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
            }

        /* ===== 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.1);
            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%);
        }

        .mission .card-header {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }

        .objectives .card-header {
            background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
        }

        .achievements .card-header {
            background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
        }

        /* ===== 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%);
            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%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
            object-fit: cover;
        }

        /* ===== 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);
            }

        /* ===== COMMITTEE SECTION ===== */
        .committee-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 50px 0;
            color: white;
        }

        .committee-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            margin-top: 30px;
            justify-content: center;
        }

        .committee-member {
            flex: 1 1 calc(25% - 25px);
            min-width: 250px;
            max-width: 300px;
            text-align: center;
            padding: 25px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;    
        }

            .committee-member:hover {
                transform: translateY(-10px);
                background: rgba(255, 255, 255, 0.2);
            }

        /* ===== IMAGE CONTAINERS ===== */
        .image-container {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .person-avatar1 {
            display: block;
            margin: 0 auto;
            max-width: 120px;
            border-radius: 50%;
        }

        .member-avatar {
            width: 80px;
            height: 80px;
            margin: 0 auto 15px;
            border-radius: 50%;
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
        }

        /* ===== STATISTICS SECTION ===== */
        .stats-section {
            padding: 50px 0;
            background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
        }

        .stats-table {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

            .stats-table table {
                width: 100%;
                border-collapse: collapse;
            }

            .stats-table th {
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                color: white;
                padding: 15px;
                font-weight: 600;
            }

            .stats-table td {
                padding: 15px;
                border-bottom: 1px solid #eee;
            }

            .stats-table tr:hover {
                background: linear-gradient(135deg, #f8f9ff 0%, #fef7ff 100%);
            }

        /* ===== GALLERY SECTION ===== */

        :root {
        --bg: #0f172a;
        --card: #111827;
        --accent: #38bdf8;
        --text: #525253;
        }

    /* * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        font-family: system-ui, sans-serif;
    } */

    .gallery-section-container {
        margin: 0;
        padding: 0;
        font-family: system-ui, sans-serif;
        margin-top: 0;
        margin-bottom: 40px;
    }
    
    h1 {
      text-align: center;
      margin-bottom: 2rem;
      font-weight: 600;
      letter-spacing: 1px;
    }

    .gallery-section-container h2 {
        text-align: center;
        margin-bottom: 2rem;
        font-size: 12px;
        color: orangered;
    }

    /* Filter buttons */
    .filters {
      display: flex;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
      margin-bottom: 2.5rem;
      margin-top: 20px;
    }

    .filters button {
      padding: 0.6rem 1.4rem;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.15);
      background: rgba(255,255,255,0.05);
      color: var(--text);
      cursor: pointer;
      backdrop-filter: blur(10px);
      transition: all 0.3s ease;
      font-weight: bold;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      font-size: 13px;
    }

    .filters button:hover,
    .filters button.active {
      background: var(--accent);
      color: #020617;
      border-color: var(--accent);
    }

    /* Gallery */
    .gallery-card {
      /* display: grid;
      grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
      gap: 0.1rem; */
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 30px;
        justify-content: center;
        margin-bottom: 40px;
    }

    .gallery-card .item {
      /* position: relative;
      overflow: hidden;
      border-radius: 16px;
      background: var(--card);
      transform: scale(1);
      transition: transform 0.3s ease, opacity 0.3s ease;
      gap: 1.5rem;
      margin: 40px; */
        flex: 1 1 calc(20% - 20px);
        min-width: 200px;
        max-width: 260px;
        position: relative;
        overflow: hidden;
        border-radius: 15px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        cursor: pointer;
        aspect-ratio: 4/3;
    }

    .item.hide {
      opacity: 0;
      transform: scale(0.8);
      pointer-events: none;
    }

    .item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }

    .item video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }

    .item:hover img {
      transform: scale(1.1);
    }

    .label {
      position: absolute;
      bottom: 0;
      width: 100%;
      padding: 0.8rem;
      background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
      font-size: 0.9rem;
      letter-spacing: 0.5px;
    }

    .lightbox{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.85);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:9999;
}

.lightbox img, 
.lightbox video{
    max-width:90%;
    max-height:90%;
    border-radius:12px;
}

.lightbox .close{
    position:absolute;
    top:20px;
    right:30px;
    font-size:32px;
    color:#fff;
    cursor:pointer;
}


        iframe{
            border-radius: 10px;
            display: flex;
            margin: 20px auto;
        } 

        /* Caption overlay */
    .slide-caption {
        position: absolute;
        bottom: 40%;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;

        backdrop-filter: blur(0.5px);
        -webkit-backdrop-filter: blur(6px);

        padding: 15px 25px;
        border-radius: 8px;
        color: #ffffff;
        border: 2px solid black;
    }

    /* Heading */
    .slide-caption h2 {
        margin: 0;
        font-size: 30px;
        font-weight: bold;
        text-shadow: 1px 1px 5px #000;
    }

    /* Sub text */
    .slide-caption p {
        margin-top: 6px;
        font-size: 18px;
        text-shadow: 1px 1px 4px #000;
    }

        /* ===== FOOTER STYLES ===== */
        .footer {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            color: white;
            text-align: center;
            padding: 30px 0;
        }

        /* ===== SECTION TITLES ===== */
        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }

            .section-title h2 {
                font-size: 2.5rem;
                color: #333;
                margin-bottom: 10px;
                position: relative;
                display: inline-block;
            }

                .section-title h2::after {
                    content: '';
                    position: absolute;
                    bottom: -10px;
                    left: 50%;
                    transform: translateX(-50%);
                    width: 60px;
                    height: 4px;
                    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                    border-radius: 2px;
                }

        .marquee-container {
            width: 100%;
            overflow: hidden;
            background: linear-gradient(to right, #667eea, #764ba2);
            color: white;
            font-weight: bold;
            font-size: 25px;
            padding: 10px 0;
            position: relative;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .marquee-container1 {
            width: 100%;
            overflow: hidden;
            background: linear-gradient(180deg, #f0efef 0%, #e7e4e4 100%);
            color: white;
            font-weight: bold;
            font-size: 25px;
            padding: 10px 0;
            position: relative;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        /* ===== ANIMATIONS ===== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.8s ease-out;
        }

        /* ===== SCROLLBAR STYLING ===== */
        ::-webkit-scrollbar {
            width: 12px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 6px;
        }

            ::-webkit-scrollbar-thumb:hover {
                background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
            }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 1200px) {
            .committee-member {
                flex: 1 1 calc(33.333% - 25px);
            }

            .gallery-item {
                flex: 1 1 calc(33.333% - 20px);
            }
        }

        @media (max-width: 768px) {
            .main-content {
                grid-template-columns: 1fr;
            }

            .header-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .committee-member {
                flex: 1 1 calc(50% - 25px);
            }

            .gallery-item {
                flex: 1 1 calc(50% - 20px);
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .caption {
                font-size: 0.9rem;
                padding: 12px 8px 8px;
                transform: translateY(0);
                background: rgba(0, 0, 0, 0.7);
            }
        }

        @media (max-width: 480px) {
            .committee-member {
                flex: 1 1 100%;
            }

            .gallery-item {
                flex: 1 1 100%;
                max-width: 100%;
            }
        }
        .person-avatar {
            height:150px;
            width:100px;
        }

/* slider */

/* 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: 100%;
    height: 100%;
    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;
    }
}

/* --------------------
   TABLET
-------------------- */
@media (max-width: 992px) {
  #myCarousel .item img {
    height: 380px;
  }

  .slide-caption h2 {
    font-size: 1.6rem;
  }
}

/* --------------------
   MOBILE
-------------------- */
@media (max-width: 768px) {

  #myCarousel .item img {
    height: 260px;
  }

  .slide-caption {
    padding: 8px 12px;
    width: 50%;
  }

  .slide-caption h2 {
    font-size: 1.2rem;
  }

  .slide-caption p {
    font-size: 0.9rem;
  }

  /* Hide arrows on mobile (optional) */
  .carousel-control {
    display: none;
  }
}

/* --------------------
   SMALL PHONES
-------------------- */
@media (max-width: 480px) {
  #myCarousel .item img {
    height: 220px;
  }

  .slide-caption h2 {
    font-size: 1.05rem;
  }
}

        @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;
        }



/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {

  /* Stack sidebar + content */
  .main-content {
    flex-direction: column;
  }

  .sidebar,
  .main-area {
    width: 100%;
  }

  /* Center person cards */
  .person-item {
    flex-direction: column;
    text-align: center;
  }

  .person-avatar {
    width: 90px;
    height: 90px;
  }

  /* Headings */
  .card-header h3 {
    font-size: 1.2rem;
    text-align: center;
  }

  /* Content text */
  .objective-description {
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: justify;
  }

  /* Card spacing */
  .card {
    margin-bottom: 20px;
  }

  /* Reduce padding if needed */
  .card-body {
    font-size: 12px;
    padding: 15px;
  }
}

/* =========================
   SMALL PHONES
========================= */
@media (max-width: 480px) {

  .person-avatar {
    width: 75px;
    height: 75px;
  }

  .card-header h3 {
    font-size: 1.05rem;
  }

  .objective-description {
    font-size: 0.85rem;
  }
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {

  .stats-section {
    padding: 25px 0;
  }

  .stats-section h2 {
    font-size: 1.4rem;
  }

  /* Smaller table text */
  .stats-section table {
    font-size: 0.9rem;
  }

  .stats-section table td,
  .stats-section table th {
    padding: 10px;
  }

  /* Allow smooth scroll */
  .table-responsive {
    -webkit-overflow-scrolling: touch;
  }
}

/* =========================
   CARD STYLE (SMALL PHONES)
========================= */
@media (max-width: 480px) {

  .stats-section table,
  .stats-section thead,
  .stats-section tbody,
  .stats-section th,
  .stats-section td,
  .stats-section tr {
    display: block;
    width: 100%;
  }

  .stats-section thead {
    display: none;
  }

  .stats-section tr {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px;
    background: #fff;
  }

  .stats-section td {
    display: flex;
    justify-content: space-between;
    padding: 8px 5px;
    border: none;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
  }

  .stats-section td:last-child {
    border-bottom: none;
  }

  .stats-section td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #333;
    padding-right: 10px;
  }
}

