.fs-90 {
    font-size: 2.625rem;
}

/* Define the keyframes for rotating */
@keyframes rotate-logo {
    0% {
        transform: rotateY(0deg);
        /* Start from 0 degrees */
    }

    50% {
        transform: rotateY(180deg);
        /* Rotate to 180 degrees */
    }

    100% {
        transform: rotateY(0deg);
        /* Return to 0 degrees */
    }
}

/* Apply animation to the images */
.navbar-brand img {
    animation: rotate-logo 4s infinite;
    /* 4 seconds for one full cycle */
    animation-timing-function: ease-in-out;
    /* Smooth easing */
}

/* Top Section */
.top-section {
    /* Light Pinkish Background */
    padding: 5px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.top-left button,
.top-right button {
    /* background: white;
    border: none;
    padding: 0px 10px;
    margin: 0 5px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 10px; */

    background: none;
    border: 1px solid #ddd;
    /* padding: 0px 10px; */
    margin: 0 5px;
    cursor: pointer;
    font-weight: bold;
    color: #fff;
    /* border-radius: 10px;*/
}

.top-left button:hover,
.top-right button:hover {
    background: #b98e44;
    color: white;
}

/* Extra Header Section */
.extra-header {
    /* background: linear-gradient(to right, #d63384, #e83e8c); */
    color: white;
    text-align: center;
    /* padding: 10px 20px; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* border-bottom: 3px solid #c82333; */
}

/* Logo Sections */
.left-logos,
.right-logos {
    display: flex;
    align-items: center;
    gap: 10px;
}

.left-logos img,
.right-logos img {
    height: 90px;
    /* width: 150px;
    height: 150px; */
}

/* Center Heading */
.header-text h1 {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}

.header-text p {
    font-size: 14px;
    margin: 5px 0 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-section {
        flex-direction: column;
        text-align: center;
    }

    .extra-header {
        flex-direction: column;
        text-align: center;
    }

    .left-logos,
    .right-logos {
        margin-bottom: 10px;
    }

    .header-text h1 {
        font-size: 18px;
    }

    .header-text p {
        font-size: 12px;
    }
}

@media (max-width: 1200px) {
    header .container-fluid {
        padding-left: 0px !important;
    }
}

.swiper-slide.cover-background {
    position: relative;
    background-size: cover;
    background-position: center;
    z-index: 0;
    overflow: hidden;
}

.swiper-slide.cover-background::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0);
    /* Adjust this for the desired opacity */
    z-index: 1;
}

.swiper-slide .container {
    position: relative;
    z-index: 2;
}

.cover-background-overlay {
    position: relative;
    overflow: hidden;
}

.cover-background-overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Adjust opacity/color as needed */
    z-index: 1;
    pointer-events: none;
    border-radius: 6px;
}

.dark-theme {
    background-color: #121212;
    color: #ffffff;
}

.dark-theme .navbar,
.dark-theme .top-section {
    background-color: #1e1e1e !important;
}

.dark-theme a,
.dark-theme button {
    color: #ffffff !important;
}


.mt-30px {
    margin-top: 65px !important;
}

/* Main Layout */
.wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    transition: all 0.5s ease;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    min-height: 500px;
}

.wrapper.shifted {
    justify-content: flex-start;
    transform: translateX(-150px);
}

/* Hexagon Grid */
.hex-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.5s ease;
    gap: 10px;
}

.hex-row {
    display: flex;
    margin-bottom: -30px;
}

.hex-row:nth-child(even) {
    transform: translateX(80px);
}

/* Individual Hexagons */
.hex {
    width: 120px;
    height: 120px;
    border-radius: 50%; /* Makes it a perfect circle */
    background-color: #07507D !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 24px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1;
    /* background-color: transparent !important;
    background-image: var(--bg-image) !important; */
}


/* Hover State - Clear Background Image */
/* .hex:hover {
    transform: scale(1.2);
    z-index: 10;
    background-color: transparent !important;
    background-image: var(--bg-image) !important;
} */

/* Active State */
.hex.active {
    transform: scale(1.2);
    z-index: 20;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    background-color: transparent;
    background-image: var(--bg-image);
}

/* Content Display */
.content-display {
    width: 550px;
    /* height: auto; */
    height: 600px;
    /* background: white; */
    padding: 30px;
    border-radius: 10px;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
    display: none;
    animation: fadeIn 0.5s;
    position: absolute;
    right: 50px;
    top: 50%;
    left: 80%;
    transform: translateY(-50%);
}

.content-display.active {
    display: block;
}

#hex-title {
    color: #333;
    margin-bottom: 20px;
    font-size: 28px;
}

#hex-description {
    color: #666;
    line-height: 1.6;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .wrapper.shifted{
        transform: translateX(-10px);

    }
    .hex{
        width:120px;
        height:120px;
    }
    .content-display{
        left:60%;
        width:500px;
    }
}


/* Responsive Design */
@media (max-width: 1000px) {
    .wrapper.shifted {
        transform: none;
        flex-direction: column;
        align-items: center;
    }

    .content-display {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin: 30px auto;
        width: 90%;
        max-width: 400px;
    }

    .hex-row:nth-child(even) {
        transform: none;
    }

    .hex {
        width: 120px;
        height: 120px;
        font-size: 18px;
    }
}

/* :root {
    --base-color: #b98e44;
    --primary: #b98e44;
    --secondary: #d4a24e;
    --bg: #f9f5ee;
    --text: #3a3226;
}

body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    background: var(--bg);
    color: var(--text);
} */

.tab-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    /* background: linear-gradient(90deg, #f1e8d8, #f5efe5); */
    /* box-shadow: 0 5px 15px rgba(0,0,0,0.1); */
}

.tab-button {
    padding: 10px 80px;
    border: none;
    /* background: rgba(255,255,255,0.7);
      color: #7a6b54; */
    /* background-color: #1d3b4d; */
    color: var(--white);
    /* font-weight: bold; */
    font-size: 16px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    /* border: 1px solid rgba(185, 142, 68, 0.2); */
}

.tab-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(90deg, transparent, var(--primary), transparent); */
    transition: 0.5s;
}

.tab-button:hover {
    /* color: #4a3f30; */
    transform: translateY(-3px);
    /* box-shadow: 0 5px 15px rgba(185, 142, 68, 0.2); */
}

.tab-button.active {
    /* background: linear-gradient(135deg, #9A7635, #805814); */
    color: white;
    font-weight: bold;
    /* box-shadow: 0 0 10px #9A7635, 0 0 20px rgba(185, 142, 68, 0.5); */
}


.tab-button.active::before {
    left: 100%;
}

.tab-content {
    display: none;
    padding: 30px;
    /* background: rgba(255, 255, 255, 0.9); */
    backdrop-filter: blur(10px);
    border-radius: 15px;
    margin: 0 auto;
    max-width: 1200px !important;
    /* border: 1px solid rgba(185, 142, 68, 0.1); */
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.1); */
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-content h4 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 25px;
    /* color: var(--primary); */
    /* text-shadow: 0 0 10px rgba(185, 142, 68, 0.2); */
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    color: #07507D;
}

.tab-content h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    /* background: linear-gradient(90deg, transparent, var(--primary), transparent); */
}

.marquee-container {
    height: 300px;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    /* background: rgba(255, 255, 255, 0.7); */
    /* border: 1px solid rgba(185, 142, 68, 0.1); */
}

.marquee-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30px;
    /* background: linear-gradient(180deg, rgba(249, 245, 238, 1), transparent); */
    z-index: 2;
}

.marquee-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    /* background: linear-gradient(0deg, rgba(249, 245, 238, 1), transparent); */
    z-index: 2;
}

.marquee-container:hover .news-grid {
    animation-play-state: paused;
}

.news-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /* gap: 10px;
    padding: 10px; */
    animation: scroll-up 25s linear infinite;
}

.news-box {
    /* background: rgba(255, 255, 255, 0.9); */
    /* border-left: 4px solid var(--primary); */
    padding: 20px;
    border-radius: 8px;
    text-align: left;
    width: calc(50% - 10px);
    box-sizing: border-box;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    color:#07507D;
    /* box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05); */
}

.news-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(90deg, transparent, rgba(185, 142, 68, 0.1), transparent); */
    transition: 0.5s;
}

.news-box:hover {
    transform: translateY(-5px);
    /* box-shadow: 0 10px 20px rgba(185, 142, 68, 0.2);
    background: rgba(255, 255, 255, 1); */
}

.news-box:hover::before {
    left: 100%;
}

.news-box i {
    margin-right: 15px;
    /* color: var(--primary); */
    font-size: 20px;
}

.news-date {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    /* color: var(--primary); */
    opacity: 0.8;
}

@keyframes scroll-up {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

@media (max-width: 768px) {
    .tab-container {
        flex-direction: column;
        align-items: center;
    }

    .tab-button {
        width: 80%;
    }

    .news-box {
        width: 100%;
    }

    .marquee-container {
        height: 400px;
    }
}

/* Glow effect for the entire container */
.tab-content.active {
    position: relative;
}

.tab-content.active::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 20px;
    /* background: linear-gradient(45deg, var(--primary), var(--secondary)); */
    z-index: -1;
    filter: blur(20px);
    opacity: 0.15;
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    0% {
        opacity: 0.1;
    }

    100% {
        opacity: 0.2;
    }
}

.breadcrumb-bg-image {
    background-image: url(/static/medical/assets/img/imgbc.svg);
    height: 100px !important;
    padding: 20px !important;

    /* Keep within container */
    width: 100%;          /* Match container width */
    max-width: 100%;      /* Prevent overflow */
    position: relative;
}

/* Container for Tabs */
.tabShell {
    width: 100%;
    /* max-width: 80%; */
    margin: 50px auto;
    font-family: 'Segoe UI', sans-serif;
}

.course-tab-content .tabShell {
    max-width: 100% !important;
}

.tabSwitcher {
    display: flex;
    border-bottom: 3px solid #07507D;
    background: linear-gradient(to right, #fefefe, #fffaf2);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.tabBtnAlt,
.tabBtnAlt1,
.tabBtnAlt2,
.tabBtnAlt3,
.tabBtnAlt4 {
    flex: 1;
    padding: 14px 20px;
    text-align: center;
    cursor: pointer;
    background-color: #f9fcfd;
    color: #333;
    transition: all 0.3s ease;
    font-weight: bold;
    border-right: 1px solid #07507D;
}

.tabBtnAlt:last-child,
.tabBtnAlt1:last-child,
.tabBtnAlt2:last-child,
.tabBtnAlt3:last-child,
.tabBtnAlt4:last-child {
    border-right: none;
}

.tabBtnAlt.active,
.tabBtnAlt1.active,
.tabBtnAlt2.active,
.tabBtnAlt3.active,
.tabBtnAlt4.active {
    background-color: #07507D;
    color: white;
    border-bottom: 3px solid #07507D;
}

.tabContentBox,
.tabContentBox1,
.tabContentBox2,
.tabContentBox3{
    padding: 20px;
    border: 1px solid #f9fcfd;
    /* background-color: #fffefb; */
    border-radius: 0 0 10px 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: opacity 0.4s ease;
        padding-bottom:60px;

}

.tabContentBox.hidden,
.tabContentBox1.hidden,
.tabContentBox2.hidden,
.tabContentBox3.hidden,
.tabContentBox4.hidden {
    display: none;
}

/* Add animation when switching tabs */
.tabContentBox.fadeIn,
.tabContentBox1.fadeIn,
.tabContentBox2.fadeIn,
.tabContentBox3.fadeIn,
.tabContentBox4.fadeIn {
    animation: fadeInTab 0.5s ease;
}

@keyframes fadeInTab {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 600px) {
    .tabBtnAlt,
    .tabBtnAlt1,
    .tabBtnAlt2,
    .tabBtnAlt3,
    .tabBtnAlt4 {
        padding: 10px;
        font-size: 14px;
    }
}

.nabh-heading {
    font-size: 30px;
    text-align: center;
    color:#07507D;
}

.nabh-section {
    background-color: #f9fcfd;
    padding: 20px;
    margin-bottom: 30px;
    border-left: 5px solid #07507D;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
}

.nabh-section h2 {
    background-color: #07507D;
    color: white;
    padding-left: 20px;
    border-radius: 5px;
    font-size: 20px;
    margin-bottom: 10px;
}

.nabh-list {
    padding-left: 20px;
    margin-top: 20px;
}

.nabh-core-heading {
    color: #c19052;
    /* margin-top: 30px; */
    font-size: 20px;
    margin: auto;
}

.nabh-core-list {
    /* padding-left: 20px !important; */
    column-count: 2;
    column-gap: 40px;
}

.nadbh-pl {
    padding-left: 20px !important;
}

.art-centre-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.art-banner {
    background: linear-gradient(90deg, #C19052, #b98e44);
    color: white;
    padding: 20px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.art-banner h2 {
    font-size: 32px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: bold;
}

.art-banner p {
    font-size: 18px;
    margin: 0;
}

.art-block {
    background-color: #fafafa;
    border-left: 5px solid #C19052;
    padding: 25px 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease-in-out;
}

.art-block:hover {
    transform: translateY(-3px);
}

.art-block h4 {
    color: #C19052;
    font-size: 22px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.art-block h4::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #C19052;
    font-size: 20px;
}

.art-block p,
.art-block ul {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}

.art-block ul {
    padding-left: 20px;
    margin-top: 10px;
}

.art-block ul li {
    margin-bottom: 8px;
}

.responsive-team-img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    max-height: 800px;
    /* default desktop size */
}

/* Default (extra large) */
.swiper-wrapper-slide {
    height: 750px !important;
}

/* 1601px – 1800px */
@media (max-width: 1800px) and (min-width: 1601px) {
    .swiper-wrapper-slide {
        height: 730px !important;
    }
}

/* 1400px – 1600px */
@media (max-width: 1600px) and (min-width: 1400px) {
    .responsive-team-img {
        max-height: 700px;
    }
    .swiper-wrapper-slide {
        height: 650px !important;
    }
}

/* 1200px – 1399px */
@media (max-width: 1399px) and (min-width: 1200px) {
    .responsive-team-img {
        max-height: 750px;
    }
    .swiper-wrapper-slide {
        height: 500px !important;
    }
    .breadcrumb-bg-image {
        height: 100px !important;
    }
}

   /* .vision-mission-section {
    overflow: hidden;
    background-color: #0a1f2c; 
    position: relative;
    margin-top: 0.5rem; 
  }
  
  .vision-mission-section .container {
    max-width: 90% !important;
  }
  
  .vision-mission-section .text-base-color {
    color: #C19052; 
  }
  
  .vision-mission-section h3 {
    font-weight: 400;
    letter-spacing: -1px;
    color: white;
    font-size: 1.813rem;
  }
  
  .vision-mission-section p {
    text-align: justify;
    margin-bottom: 0.5rem;
  }
  
  .vision-mission-section .slider-navigation-style-04 {
    background-color: #16263a; 
    cursor: pointer;
  }
  
  .vision-mission-section .slider-navigation-style-04 i {
    color: white;
  }
  
  .vision-mission-section .swiper-slide > div {
    flex: 1 1 45%;
    background: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  
  .vision-mission-section h5 {
    font-size: 20px;
    color: #C19052;
    margin-bottom: 10px;
  }
  
  .vision-mission-section .custom-list {
    padding-left: 20px;
    margin: 0;
    text-align: justify;
  }
  
  .vision-mission-section .custom-list li {
    margin-bottom: 8px;
  }
  
  .vision-mission-section .outside-box-right-25 {
    margin-right: -25px;
  }
  
  .vision-mission-section .text-outline {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
    color: transparent;
  }
  
  .vision-mission-section .position-absolute {
    position: absolute;
  }
  
  .vision-mission-section .bottom-minus-40px {
    bottom: -40px;
  }
  
  .vision-mission-section .text-center {
    text-align: center;
  }
  
  .vision-mission-section .opacity-05 {
    opacity: 0.05;
  }
  
  @media (min-width: 1400px) and (max-width: 1599px) {
    .vision-mission-section .container {
        max-width: 100% !important;
      }

      .vision-mission-section .outside-box-right-25 {
        margin-bottom: 200px;
      }
}
@media (min-width: 1600px) {
   
      .vision-mission-section .outside-box-right-25 {
        margin-bottom: 150px;
      }
}
@media (min-width: 1800px) {
   
    .vision-mission-section .outside-box-right-25 {
      margin-bottom: 50px;
    }
}
@media (min-width: 1200px) and (max-width: 1399px) {
    .vision-mission-section .container {
        max-width: 100% !important;
      }
      .vision-mission-section .outside-box-right-25 {
        margin-bottom: 250px;
      }
} */
.accordion-style-02 .accordion-header {
    /* background: linear-gradient(to right, #f0f4ff, #e8f0fc); */
    background-color: #f2e7d8 !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.07);
    padding: 15px;
}

.peripheral-dispensaries {
    font-family: "Segoe UI", Arial, sans-serif;
    line-height: 1.6;
    /* background: #f8f9fa; */
    margin: 0;
    padding: 0;
    color: #333;
  }
  
  .peripheral-dispensaries .container {
    /* max-width: 1100px; */
    margin: auto;
    padding: 20px;
  }
  
  .peripheral-dispensaries h2 {
    text-align: center;
    /* color: #2c3e50; */
    margin-bottom: 20px;
  }
  
  /* .peripheral-dispensaries h3 {
    margin-top: 30px;
    color: #c19052;
    border-left: 5px solid #c19052;
    padding-left: 10px;
  } */
  
  .peripheral-dispensaries ul {
    list-style: none;
    padding: 0;
  }
  
  .peripheral-dispensaries ul li {
    padding: 6px 0;
    position: relative;
    padding-left: 20px;
  }
  
  .peripheral-dispensaries ul li::before {
    content: "✔";
    color: #07507D;
    font-weight: bold;
    position: absolute;
    left: 0;
  }
  
  .peripheral-dispensaries .card {
    background: #fff;
    padding: 20px;
    margin: 15px 0;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  }
  
  .peripheral-dispensaries .dispensary-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 3fr));
    gap: 15px;
  }
  
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .peripheral-dispensaries .disp-card {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    border-left: 4px solid #07507D;
    box-shadow: 0 3px 8px rgba(0,0,0,0.05);
  
    /* animation setup */
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
  }
  
  .peripheral-dispensaries .disp-card h4 {
    margin: 0;
    color: #2c3e50;
  }
  
  .peripheral-dispensaries .disp-card span {
    color: #c19052;
    font-weight: bold;
  }
  
  .peripheral-dispensaries p {
    margin: 10px 0;
  }
  
  /* Staggered animation for each card */
  .dispensary-list .disp-card:nth-child(1) { animation-delay: 0.1s; }
  .dispensary-list .disp-card:nth-child(2) { animation-delay: 0.3s; }
  .dispensary-list .disp-card:nth-child(3) { animation-delay: 0.5s; }
  .dispensary-list .disp-card:nth-child(4) { animation-delay: 0.7s; }
  .dispensary-list .disp-card:nth-child(5) { animation-delay: 0.9s; }
  .dispensary-list .disp-card:nth-child(6) { animation-delay: 1.1s; }

  .ps {
    /* max-width: 1500px; */
    margin: auto;
    padding: 20px;
  }
  .ps h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 20px;
  }
  .ps h3 {
    margin-top: 25px;
    color: #000;
    border-left: 5px solid #07507D;
    background-color: #EDF8FF;
    font-size:20px !important;
    padding-left: 10px;
  }
  .ps .card-ps {
    background: #fff;
    padding: 20px;
    margin: 15px 0;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  }
  .ps ul {
    list-style: none;
    padding: 0;
  }
  .ps ul li {
    padding: 6px 0;
    position: relative;
    padding-left: 20px;
  }
  .ps ul li::before {
    content: "✔";
    color: #07507D;
    font-weight: bold;
    position: absolute;
    left: 0;
  }
  .ps table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
  }
  .ps table th,
  .ps table td {
    border: 1px solid #ddd;
    padding: 10px;
    background: #f9f5ee;
    text-align: left;
  }
  .ps table th {
    background: #c19052;
    color: #fff;
  }

  .citizen-charter {
    padding: 20px;
    background: #fdfdfd;
    border-radius:15px;
  }
  
  /* .citizen-charter h2 {
    font-size: 22px;
    margin-top: 30px;
    background-color: #f2e7d8;
    border-left: 5px solid #c19052;

    position: relative;
    padding-left: 12px;
  } */
  
  /* .citizen-charter h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    height: 70%;
    width: 4px;
    background: #c19052;
    border-radius: 2px;
  } */
  
  .citizen-charter table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
  }
  
  .citizen-charter th {
    background: #07507D;
    color: #fff;
    padding: 12px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
  }
  
  .citizen-charter td {
    padding: 10px;
    border: 1px solid #e6e6e6;
    font-size: 15px;
  }
  
  .citizen-charter table tr:nth-child(even) {
    background: #fafafa;
  }
  
  /* .citizen-charter table tr:hover {
    background: #eaf3fb;
    transition: background 0.3s ease;
  } */
  
  .citizen-charter ul {
    margin: 10px 0 10px 25px;
    list-style: none;
    padding-left: 0;
  }
  
  .citizen-charter ul li {
    margin: 8px 0;
    padding-left: 20px;
    position: relative;
  }
  
  .citizen-charter ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #c19052;
    font-size: 14px;
    font-weight: bold;
  }
  
  .citizen-charter p {
    margin: 12px 0;
    text-align: justify;
    font-size: 15px;
    line-height: 1.7;
  }

  .awards-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px; /* space between images */
    margin-top: 15px;
    flex-wrap: nowrap; 
    flex-direction: row;
  }
  
  .awards-gallery img {
    width: 700px;   /* fixed width */
    height: 500px;  /* fixed height */
    object-fit: cover; /* ensures image is cropped nicely */
    border-radius: 8px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
  }
  
  .awards-gallery img:hover {
    transform: scale(1.05); /* zoom effect on hover */
  }

  .mmc-container {
  background-color: #ffffff; /* White background */
  border-radius: 10px;       /* Rounded corners */
  margin-top: 20px;          /* Space from top */
  padding: 20px;             /* Inner spacing */
  box-shadow: 0 2px 8px rgba(0,0,0,0.1); /* Optional soft shadow */
}

/* General Section Styling */
.facility-section {
  /* padding: 60px 20px; */
  background: #f8f9fb;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.facility-section .section-title {
  text-align: center;
  /* font-size: 2.2rem; */
  font-size: 30px; 
  color: #333;
  margin-bottom: 10px;
  font-weight: bold;
}

.facility-section .section-subtitle {
  text-align: center;
  font-size: 1.4rem;
  color: #666;
  margin-bottom: 40px;
  font-weight: 500;
}

/* Facility Grid Layout */
/* .facility-section .facility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 25px;
} */

/* Facility Card Styling */
.facility-section .facility-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  /* width:800px; */
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom:20px;
}

.facility-section .facility-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.facility-section .facility-card h3 {
  font-size: 1.3rem;
  color: #c19052;
  margin-bottom: 15px;
  border-left: 5px solid #c19052;
  padding-left: 10px;
  background: #f9f5ee;
}

/* Custom List Styling */
.facility-section .new-custom-list {
  list-style: none;
  padding-left: 0;
}

.facility-section .new-custom-list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 28px;
  line-height: 1.6;
  color: #444;
  font-size: 1rem;
}

.facility-section .new-custom-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #c19052;
  font-weight: bold;
  font-size: 1.1rem;
}

.acc-container {
      width: 100%;
      /* max-width: 1200px; */
    }

    .acc {
      background-color: #EDF8FF;
      color: #000;
      padding: 20px;
      font-size: 20px;
      text-align: center;
      border: none;
      cursor: pointer;
      position: relative;
      transition: border-radius 0.3s ease;
      width: 100%;
      margin-bottom: 0;
      border-radius: 30px;
    }

    .acc.active {
      background-color: #07507D;
      color:#fff;
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0;
    }

    .acc::after {
      content: "▼";
      /* Down arrow */
      font-size: 14px;
      position: absolute;
      right: 30px;
      top: 50%;
      transform: translateY(-50%);
      transition: transform 0.3s ease;
    }

    .acc.active::after {
      content: "▲";
      /* Up arrow */
    }

    .panel-acc {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      background: white;
      border-radius: 0 0 15px 15px;
      margin-bottom: 10px;
    }

    .panel-acc-content {
      padding: 20px;
      background-color: #fafdff;
    }

    .desc-acc {
      font-size: 16px;
      line-height: 1.5;
      margin-bottom: 20px;
    }

    .grid-acc {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }

    .card-acc {
      width: 200px;
      text-align: center;
    }

    .placeholder-acc {
      width: 100%;
      height: 200px;
      background-color: #4B255F;
      border-radius: 8px;
    }

    .placeholder-acc img {
      width: 100%;
      height: 100%;
      object-fit: cover; /* fills the box without stretching */
      border-radius: 8px;
    }

    .card-acc-title {
      font-weight: bold;
      margin-top: 10px;
    }

    .card-acc-caption {
      font-size: 14px;
      color: #333;
    }

    .custom-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.custom-table th,
.custom-table td {
  border: 1px solid #ccc;
  padding: 8px;
  text-align: left;
  vertical-align: top;
}

.custom-table thead {
  background: #f2f2f2;
}

.custom-table tr:nth-child(even) {
  background: #fafafa;
}
.camp-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.camp-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}
.camp-card:hover {
    transform: translateY(-5px);
}
.camp-content {
    padding: 20px;
}
.camp-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}
.camp-date {
    font-size: 14px;
    /* color: #666; */
    margin-bottom: 15px;
}
.camp-description {
    font-size: 14px;
    color: #000;
    line-height: 1.5;
    margin-bottom: 15px;
}

/* -------- Image Section -------- */
.camp-images {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 0 20px 20px 20px;
}

.camp-images img {
    width: 100%;
    max-width: 280px;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    flex: 1 1 calc(33.33% - 15px); /* default: 3 per row */
}

/* ---- Special handling ---- */

/* Single image -> centered and bigger */
.camp-images:has(img:only-child) img {
    flex: 1 1 100%;
    max-width: 400px;
}

/* Two images -> centered side by side */
.camp-images:has(img:nth-child(2):last-child) img {
    flex: 1 1 calc(45% - 15px);
    max-width: 350px;
}

/* Responsive */
@media(max-width: 900px){
    .camp-images img {
        flex: 1 1 calc(50% - 15px); /* 2 per row */
    }
}
@media(max-width: 600px){
    .camp-images img {
        flex: 1 1 100%; /* 1 per row */
    }
}

.media-club:hover .overlay {
    opacity: 1;
}

.unique-card {
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s;
  cursor: pointer;
}

.unique-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.card-image img {
  width: 100%;
  border-radius: 15px 15px 0 0;
  transition: transform 0.5s;
}

.unique-card:hover .card-image img {
  transform: scale(1.1);
}

.card-content h3 {
  font-size: 1.5rem;
  color: #C19052;
  margin: 15px 0 10px;
}

.card-content p {
  font-size: 0.9rem;
  line-height: 1.4;
  color: #333;
}

.card-badge {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 15px;
  background: #C19052;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
}
