.hesperiden.tparrows {
    display: none !important;
}

header .navbar-brand {
    padding: 0px !important;
}

header .navbar-brand img {
    max-height: 80px;
}

/* .btn.btn-large {
        font-size: 14px;
        padding: 0px 0px !important;
    } */

/* Main Layout */
section.extra-big-section {
    /* padding-top: 160px; */
    padding-bottom: 100px !important;
}

section {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
}

:root {
    --hex-width: 150px;
    --hex-height: calc(var(--hex-width) * 0.866);
    --hex-margin: 20px;
    --primary-color: #E7E4DF;
    --active-color: #2c3e50;
    --text-color: #5D4037;
    /* Brown color for default text */
    --light-text: #fff;
    --shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    --overlay-color: rgba(0, 0, 0, 0.5);
    /* Reduced opacity for better visibility */
}

.menu-container {
    flex: 0 0 50%;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
}

.content-container {
    flex: 1;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hex-grid {
    display: flex;
    position: relative;
    height: calc(3 * var(--hex-height) + 2 * var(--hex-margin));
    min-height: 100%;
}

.hex-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hex-column:nth-child(2) {
    margin-top: -139px !important;
}

.hex-column:nth-child(4) {
    margin-top: -139px !important;
}

.hexagon {
    width: var(--hex-width);
    height: var(--hex-height);
    background: var(--primary-color);
    clip-path: polygon(25% 0%, 75% 0%,
            100% 50%, 75% 100%,
            25% 100%, 0% 50%);
    margin: calc(var(--hex-margin) / 2) 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    /* Default brown text */
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow);
}

.hexagon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay-color);
    clip-path: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hexagon:hover,
.hexagon.active {
    color: var(--light-text);
    /* White text on hover/active */
}

.hexagon:hover::before,
.hexagon.active::before,
.hexagon[style*="background-image"]::before {
    opacity: 0.7;
    /* Reduced overlay opacity */
}

.hexagon.active::before {
    background: rgba(0, 0, 0, 0.7);
    /* Darker overlay for active state */
}

.hexagon:hover {
    transform: scale(1.05);
    /* Subtler scale effect */
    z-index: 10;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.hexagon.active {
    transform: scale(1.05);
    /* Subtler scale effect */
    z-index: 10;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.hex-icon {
    font-size: 20px;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
    position: relative;
    z-index: 1;
    color: inherit;
    /* Inherits the current text color */
}

.hex-text {
    font-size: 12px;
    text-align: center;
    padding: 0 0.5rem;
    position: relative;
    z-index: 1;
    color: inherit;
    /* Inherits the current text color */
    transition: color 0.3s ease;
}

.content-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    transition: opacity 0.5s ease;
}

.content-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    /* color: var(--active-color); */
    font-weight: 600;
}

.content-desc {
    font-size: 1.2rem;
    line-height: 1.6;
    /* color: var(--text-color); */
    max-width: 600px;
}

/* Responsive Design */
@media (max-width: 1600px) {
    :root {
        --hex-width: 180px;
    }
}

@media (max-width: 1400px) {
    :root {
        --hex-width: 160px;
    }

    .content-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 1200px) {
    :root {
        --hex-width: 140px;
    }

    .content-img {
        height: 350px;
    }
}

@media (max-width: 992px) {
    body {
        flex-direction: column;
    }

    .menu-container,
    .content-container {
        flex: 1;
        width: 100%;
        padding: 2rem;
    }

    .hex-grid {
        margin: 0 auto;
    }

    .content-container {
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    }

    :root {
        --hex-width: 120px;
    }

    .hex-icon {
        font-size: 1.8rem;
    }

    .content-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    :root {
        --hex-width: 100px;
        --hex-margin: 15px;
    }

    .hex-icon {
        font-size: 1.5rem;
    }

    .hex-text {
        font-size: 0.9rem;
    }

    .content-img {
        height: 300px;
    }
}

@media (max-width: 576px) {
    :root {
        --hex-width: 80px;
    }

    .hex-icon {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }

    .hex-text {
        font-size: 0.7rem;
    }

    .content-title {
        font-size: 1.8rem;
    }

    .content-desc {
        font-size: 1rem;
    }
}
.breadcrumb-bg-img {
    background-image: url("/static/newtheme/assets/img/bgimage.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    height: 350px;
    padding-top: 136px;
}

/* Overlay effect */
.opacity-light {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    z-index: 1;
}

/* Optional blue color overlay */
.bg-bay-of-many-blue {
    background-color: #1c4e80;
}

/* Ensure content sits above the overlay */
.breadcrumb-bg-img .container {
    position: relative;
    z-index: 2;
}
.htab-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Arial', sans-serif;
}

/* Tab Buttons */
.htabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.htab {
    background-color: #e0e0e0;
    border: none;
    padding: 10px 25px;
    cursor: pointer;
    width:250px;
    font-size: 25px;
    border-radius: 6px;
    margin: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.htab:hover {
    background-color: #C19052;
    color: #fff;
}

.htab.active {
    background-color: #C19052;
    color: #fff;
    font-weight: 600;
}

/* Content Sections */
.htab-content {
    display: none;
    text-align: center;
}

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

/* Optional: Image Styling */
.htab-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Optional: Hide heading if needed */
.htab-content h2 {
    display: none;
}
.custom-vtab-content-wrapper {
display: flex;
flex-wrap: wrap;
gap: 20px;
padding: 20px;
}

/* Vertical Tab Buttons */
.custom-vtab-buttons {
display: flex;
flex-direction: column;
width: 300px;
gap: 10px;
}

.custom-vtab-btn {
background-color: #f1f1f1;
border: 2px solid #ccc;
color: black;
font-size: 18px;
padding: 12px 16px;
text-align: left;
border-radius: 6px;
cursor: pointer;
transition: all 0.3s ease;
font-weight: 500;
}

.custom-vtab-btn:hover {
background-color: #C19052;
color: #fff;
}

.custom-vtab-btn.active {
background-color: #C19052;
color: #fff;
font-weight: 600;
border-color: #C19052;
}

/* Content Styling */
.custom-vtab-content {
flex: 1;
}

.custom-vtab-panel {
display: none;
background-color: #fff;
padding: 20px;
border-radius: 8px;
animation: fadeIn 0.3s ease-in-out;
}

.custom-vtab-panel.active {
display: block;
}

.custom-vtab-panel h1 {
font-size: 24px;
margin-bottom: 15px;
color: #000;
}

.custom-vtab-panel p,
.custom-vtab-panel ul li,
.custom-vtab-panel table td,
.custom-vtab-panel table th {
font-size: 16px;
line-height: 1.6;
color: #333;
}

.custom-vtab-panel table {
width: 100%;
border-collapse: collapse;
margin-top: 10px;
}

.custom-vtab-panel table th,
.custom-vtab-panel table td {
border: 1px solid #ccc;
padding: 10px;
}

.custom-vtab-panel table th {
background-color: #f5f5f5;
font-weight: bold;
}

.custom-vtab-panel a.btn,
.custom-vtab-panel a.thm-btn {
background-color: #C19052;
color: #fff;
border: none;
border-radius: 6px;
padding: 10px 20px;
font-size: 16px;
text-decoration: none;
display: inline-block;
float: right;
margin-top: 10px;
transition: background-color 0.3s ease;
}

.custom-vtab-panel a.btn:hover,
.custom-vtab-panel a.thm-btn:hover {
background-color: #000;
}

@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

@media (max-width: 768px) {
.custom-vtab-content-wrapper {
flex-direction: column;
}
.custom-vtab-buttons {
width: 100%;
flex-direction: row;
overflow-x: auto;
flex-wrap: nowrap;
}
.custom-vtab-btn {
flex: 1;
min-width: 200px;
white-space: nowrap;
}
}
.gallery-grid1 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 16px;
      padding: 20px 0;
    }

    .gallery-grid1 a {
      display: block;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .gallery-grid1 a:hover {
      transform: scale(1.03);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }

    .gallery-grid1 img {
      width: 100%;
      height: 200px; /* fixed height */
      object-fit: cover; /* crop image to fill */
      display: block;
      transition: transform 0.3s ease;
    }

    .gallery-grid1 a:hover img {
      transform: scale(1.05);
    }
.gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr); /* 4 images per row */
      gap: 20px;
      padding: 20px;
      max-width: 1300px;
      margin: auto;
    }

    .gallery-grid a {
      display: block;
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }

    .gallery-grid a:hover {
      transform: scale(1.03);
    }

    .gallery-grid img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      border-radius: 12px;
      transition: transform 0.3s ease;
    }

    /* Responsive for tablets and phones */
    @media (max-width: 992px) {
      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 576px) {
      .gallery-grid {
        grid-template-columns: 1fr;
      }
    }
.flip-card-wrapper {
        width: 400px;
        height: 400px;
        perspective: 1000px; /* Enables 3D effect */
      }
  
      .flip-card-inner {
        position: relative;
        width: 100%;
        height: 100%;
        transition: transform 0.8s ease;
        transform-style: preserve-3d;
      }
  
      .flip-card-wrapper:hover .flip-card-inner {
        transform: rotateY(180deg);
      }
  
      .flip-card-front,
      .flip-card-back {
        position: absolute;
        width: 100%;
        height: 100%;
        backface-visibility: hidden;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
        background-color: #fff;
      }
  
      .flip-card-front {
        z-index: 2;
      }
  
      .flip-card-back {
        transform: rotateY(180deg);
        background-color: #f9f9f9;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
      }
  
      .flip-card-image {
        width: 100%;
        height: 60%;
        object-fit: cover;
      }
  
      .flip-card-content {
        padding: 20px;
        text-align: center;
      }
  
      .know-more-button {
        margin-top: 15px;
        padding: 10px 20px;
        background-color: #C19052;
        color: #fff;
        border: none;
        border-radius: 6px;
        font-size: 1rem;
        cursor: pointer;
        transition: background-color 0.3s ease;
      }
  
      .know-more-button:hover {
        background-color: #a5743f;
      }
  
      @media (max-width: 400px) {
        .flip-card-wrapper {
          width: 90%;
          height: auto;
        }
  
        .flip-card-image {
          height: 180px;
        }
      }
.card-container1 {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
      }
  
      .card1 {
        background: #fff;
        border-radius: 15px;
        padding: 20px;
        width: 100%;
        max-width: 300px;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        overflow: hidden;
        position: relative;
      }
  
      .card1:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
      }
  
      .image-wrapper1 {
        width: 100px;
        height: 100px;
        margin: 0 auto 15px;
        position: relative;
      }
  
      .image-wrapper1 img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: transform 0.6s ease;
        animation: fadeInZoom 0.8s ease-in-out;
      }
  
      /* Rotate on hover */
      .card1:hover .image-wrapper1 img {
        transform: rotate(360deg);
      }
  
      /* Image load animation */
      @keyframes fadeInZoom {
        0% {
          opacity: 0;
          transform: scale(0.8);
        }
        100% {
          opacity: 1;
          transform: scale(1);
        }
      }
  
      @media (max-width: 768px) {
        .card-container1 {
          flex-direction: column;
          align-items: center;
        }
      }
.center-card {
      display: flex;
      justify-content: center;
      margin-bottom: 50px;
    }

    .center-card .official-card {
      max-width: 450px;
      width: 100%;
    }

    .officials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }

    .official-card {
      background: #fff;
      border-radius: 12px;
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 20px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .official-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    }

    .official-card img {
      width: 100px;
      height: 100px;
      object-fit: cover;
      border-radius: 50%;
      transition: transform 0.3s ease;
      flex-shrink: 0;
    }

    .official-card:hover img {
      transform: scale(1.05);
    }

    .official-info {
      text-align: left;
    }

    .official-info h4 {
      font-size: 1.1rem;
      font-weight: 600;
      color: #333;
      margin: 5px 0;
    }

    .official-info p {
      font-size: 1rem;
      font-weight: 500;
      color: #C19052;
      margin: 0 0 5px;
    }

    .official-info h6 {
      font-size: 0.9rem;
      font-weight: 400;
      color: #666;
      margin: 0;
      line-height: 1.4;
    }

    /* Responsive for tablets and phones */
    @media (max-width: 992px) {
      .officials-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .officials-grid {
        grid-template-columns: 1fr;
      }

      .official-card {
        flex-direction: column;
        text-align: center;
      }

      .official-info {
        text-align: center;
      }
    }
.contact-page-google-map iframe{
        width: 1290px !important;
        height: 450px !important;
    }
.team1-style-01 {
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        padding: 20px;
        height: 100%;
      }
  
      .team1-style-01:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
      }
  
      .team1-style-01 figure {
        margin: 0;
        overflow: hidden;
        position: relative;
      }
  
      .team1-style-01 figure img {
        width: 150px;
        height: 150px;
        object-fit: cover;
        border-radius: 50%;
        transition: transform 0.4s ease;
        margin-bottom: 15px;
      }
  
      .team1-style-01:hover figure img {
        transform: scale(1.08);
      }
  
      .team1-style-01 figcaption {
        text-align: center;
      }
  
      .team1-style-01 figcaption span {
        display: block;
        font-size: 1.1rem;
        font-weight: 600;
        color: #000;
        margin-bottom: 5px;
      }
  
      .team1-style-01 figcaption p {
        font-size: 0.95rem;
        margin-bottom: 5px;
      }
  
      .team1-style-01 figcaption p:last-child {
        font-size: 0.85rem;
        color: #777;
      }

      .custom-accordion-wrapper {
        padding: 40px 20px;
        #background-color: #f5f5f5;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      }
  
      .custom-accordion {
        max-width: 1200px;
        margin: auto;
      }
  
      .custom-accordion-item {
        background: #fff;
        border: 1px solid #ddd;
        margin-bottom: 10px;
        border-radius: 6px;
        overflow: hidden;
        box-shadow: 0 2px 6px rgba(0,0,0,0.08);
      }
  
      .custom-accordion-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 20px;
        background-color: #c19052;
        color: white;
        cursor: pointer;
        font-size: 17px;
        font-weight: 600;
        transition: background 0.3s ease;
      }
  
      .custom-accordion-header:hover {
        background-color: #000;
      }
  
      .custom-accordion-title {
        display: flex;
        align-items: center;
        gap: 12px;
      }
  
      .number-circle {
        background-color: white;
        color: #c19052;
        font-weight: bold;
        border-radius: 50%;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
      }
  
      .custom-icon {
        font-size: 22px;
        font-weight: bold;
        transition: transform 0.3s ease;
      }
  
      .custom-accordion-content {
        background-color: #fafafa;
        max-height: 0;
        overflow: hidden;
        padding: 0 20px;
        transition: max-height 0.4s ease, padding 0.3s ease;
      }
  
      .custom-accordion-content.show {
        #padding: 16px 20px;
      }
  
      .custom-accordion-content p {
        margin: 0;
        color: #333;
        line-height: 1.6;
      }
.custom-list,
.custom-list ul,
.custom-list ol {
  list-style-type: disc !important;
  padding-left: 20px !important;
  margin-left: 0;
}

/* Nested list - different style if needed */
.custom-list ul ul {
  list-style-type: circle !important;
  padding-left: 20px !important;
}

/* Bullet color */
.custom-list li::marker {
  color: #A0522D !important; /* Brown */
}

/* Optional: content color */
.custom-list li {
  color: #333;
  text-align: justify;
  margin-bottom: 8px;
}
