.act {
    color: #70bda8;
}


/* Tabs Start */
.tabs {
    background-color: #003366; /* Dark blue color */
    border-radius: 5px;
    overflow: hidden;
}

.tab-links {
    display: flex;
}

.tab-link {
    flex: 1;
    padding: 15px;
    background-color: #003366; /* Dark blue color */
    color: white;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s;
}

.tab-link:hover {
    background-color: #00509e; /* Lighter blue on hover */
}

.tab-link.active {
    background-color: #00509e; /* Active tab color */
}

.tab-content {
    padding: 20px;
    background-color: white;
}

.tab {
    display: none;
}

.tab.active {
    display: block;
}

.fish-container {
    display: flex;
    flex-flow:  wrap ; 
    width: 100%;
    margin: 0 auto;
}

.fish-item{

    display: flex;
    justify-content: center;
    width: 21%;
    margin: 20px;
    text-align: center;

}

/* Responsive styles */
@media (max-width: 600px) {
    .tab-link {
        font-size: 14px;
        padding: 10px;
    }
}


/* Container */
.card-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Fish Card */
.fish-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    width: 100%;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
}

/* Image */
.fish-card img {
    width: 81%;
    height: auto;
    display: block;
    margin: 18px auto;

}

.fish-card img:hover {
    transform: scale(1.2);
}

/* Card Content */
.card-content {
    padding: 15px;
    text-align: center;
}

.short-desc {
    margin-top: 8px;
    color: #555;
}

.full-desc {
    margin-top: 10px;
    color: #333;
    font-size: 14px;
    line-height: 1.4;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    transform: scale(0);
}

/* Hover effect */
.fish-card:hover {
    transform: translateY(-10px);
}

.fish-card:hover .full-desc {
    opacity: 1;
    height: auto;
    transform: scale(1);
}

/* Responsive Design */


@media (min-width: 768px) {
    .fish-card img {
        height: 120px;
        width: 200px;
    }
}

@media (max-width: 768px) {
    .fish-card {
        width: 500px;
    }
    .fish-card .full-desc {
        opacity: 1;
        height: auto;
    }
    .fish-item {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .fish-card {
        width: 90%;
    }
    .fish-item {
        width: 100%;
    }
}

/* Tabs End */

/* nav start  */

/* nav end  */

@media(prefers-reduced-motion: reduce) {
    .navbar-toggler {
        transition: none
    }
}

.navbar-toggler:hover {
    text-decoration: none
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: 0 0 0 .25rem
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%
}

.navbar-nav-scroll {
    max-height: var(--bs-scroll-height, 75vh);
    overflow-y: auto
}

@media(min-width: 576px) {
    .navbar-expand-sm {
        flex-wrap: nowrap;
        justify-content: flex-start
    }

    .navbar-expand-sm .navbar-nav {
        flex-direction: row
    }

    .navbar-expand-sm .navbar-nav .dropdown-menu {
        position: absolute
    }

    .navbar-expand-sm .navbar-nav .nav-link {
        padding-right: .5rem;
        padding-left: .5rem
    }

    .navbar-expand-sm .navbar-nav-scroll {
        overflow: visible
    }

    .navbar-expand-sm .navbar-collapse {
        display: flex !important;
        flex-basis: auto
    }

    .navbar-expand-sm .navbar-toggler {
        display: none
    }
}

@media(min-width: 768px) {
    .navbar-expand-md {
        flex-wrap: nowrap;
        justify-content: flex-start
    }

    .navbar-expand-md .navbar-nav {
        flex-direction: row
    }

    .navbar-expand-md .navbar-nav .dropdown-menu {
        position: absolute
    }

    .navbar-expand-md .navbar-nav .nav-link {
        padding-right: .5rem;
        padding-left: .5rem
    }

    .navbar-expand-md .navbar-nav-scroll {
        overflow: visible
    }

    .navbar-expand-md .navbar-collapse {
        display: flex !important;
        flex-basis: auto
    }

    .navbar-expand-md .navbar-toggler {
        display: none
    }
}

@media(min-width: 1048px) {
    .navbar-expand-lg {
        flex-wrap: nowrap;
        justify-content: flex-start
    }

    .navbar-expand-lg .navbar-nav {
        flex-direction: row
    }

    .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: .5rem;
        padding-left: .5rem
    }

    .navbar-expand-lg .navbar-nav-scroll {
        overflow: visible
    }

    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto
    }

    .navbar-expand-lg .navbar-toggler {
        display: none
    }
}

@media(min-width: 1200px) {
    .navbar-expand-xl {
        flex-wrap: nowrap;
        justify-content: flex-start
    }

    .navbar-expand-xl .navbar-nav {
        flex-direction: row
    }

    .navbar-expand-xl .navbar-nav .dropdown-menu {
        position: absolute
    }

    .navbar-expand-xl .navbar-nav .nav-link {
        padding-right: .5rem;
        padding-left: .5rem
    }

    .navbar-expand-xl .navbar-nav-scroll {
        overflow: visible
    }

    .navbar-expand-xl .navbar-collapse {
        display: flex !important;
        flex-basis: auto
    }

    .navbar-expand-xl .navbar-toggler {
        display: none
    }
}

@media(min-width: 1400px) {
    .navbar-expand-xxl {
        flex-wrap: nowrap;
        justify-content: flex-start
    }

    .navbar-expand-xxl .navbar-nav {
        flex-direction: row
    }

    .navbar-expand-xxl .navbar-nav .dropdown-menu {
        position: absolute
    }

    .navbar-expand-xxl .navbar-nav .nav-link {
        padding-right: .5rem;
        padding-left: .5rem
    }

    .navbar-expand-xxl .navbar-nav-scroll {
        overflow: visible
    }

    .navbar-expand-xxl .navbar-collapse {
        display: flex !important;
        flex-basis: auto
    }

    .navbar-expand-xxl .navbar-toggler {
        display: none
    }
}

.brth {
    width: 85%;
    margin: 0 auto;
}


.spc {
    margin: 35px;
    text-align: center;
}

ul li {
    list-style: none;
}

.lex{
    display: flex;
}

.whit {
    color: #ffffff;
}

.fsiz {
            font-size: 55px;
        padding-bottom: 63px;
}
  .respo {
        margin: 0 auto;
        width: 90%;
    }

    .wit {
        color: white;
    }

    @media (max-width: 400px) {

         .log {
            width: 47vw;
            height: 27vh;
        }
    }

    @media (max-width: 950px) and (min-width: 769px) {

        .fish-container {
            width: 1009px;
            margin: 0 auto;
        }

    }


.bor {
     border-radius: 100px;
}


.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  padding: 4px 13px;
  font-size: 30px;
  z-index: 1000;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
  text-align: center;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  color: white;
  text-decoration: none;
}


/* teams start */


.lead {
    width: 20%;
}

.leader-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background-color: #fff;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
}

    .leader-section img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 20px;
}

    .leader-info {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

    .leader-info h2 {
    margin: 0 0 10px;
    font-size: 2em;
    color: #333;
}

    .leader-info h4 {
    margin: 0 0 10px;
    color: #555;
    font-weight: 500;
}

    .leader-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

    .leader-info strong {
    color: #222;
}

@media (min-width: 768px) {
    .leader-section {
    flex-direction: row;
    gap: 40px;
    }

    .leader-section img {
    margin-bottom: 0;
    }
}

    @media (max-width: 767px) {
    .leader-section {
    flex-direction: column;
    text-align: center;
    }

    .leader-info {
    padding: 10px;
    }
}

    .ima {
    height: 330px;
}

    .team-section {
    max-width: 1200px;
    margin: auto;
    padding: 30px 20px;
    background-color: #fff;
    border-radius: 10px;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: #333;
}

.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 20px;
}

.team-card {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    flex: 1 1 calc(25% - 20px); /* Default: 4 columns */
    max-width: calc(25% - 20px);
}

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

.team-card img {
    width: 100%;
    height: 250px; /* or adjust based on your preferred height */
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.3s ease;
}

.team-card:hover img {
transform: scale(0.95);
}

.team-card h3 {
    margin: 10px 0 5px;
    font-size: 1.2rem;
    color: #333;
    font: bolder;
    color: #102147;
}

.team-card p.role {
    color: #000000;
    font-size: 0.9rem;
    font: bolder;
}

.team-card p.description {
    font-size: 0.85rem;
    color: #555;
    margin-top: 10px;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
    .team-card {
    flex: 1 1 calc(25% - 20px);
    max-width: calc(25% - 20px);
    }
}

@media (max-width: 1047px) {
    .team-card {
    flex: 1 1 calc(33.33% - 20px);
    max-width: calc(33.33% - 20px);
    }
}

@media (max-width: 768px) {
    .team-card {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .team-card {
    flex: 1 1 100%;
    max-width: 100%;
    }
}

    .team-card img:hover {
  transform: scale(0.99);
  transition: transform 0.3s ease;
}

/* teams end  */

/* gallery start */

 
  /* Masonry container using CSS columns */
  .gallery {
    column-count: 4;
    column-gap: 1rem;
    width: 95%;
    max-width: 1200px;
    margin: 3rem auto;
  }

  /* For smaller screens reduce columns */
  @media (max-width: 900px) {
    .gallery {
      column-count: 3;
    }
  }
  @media (max-width: 600px) {
    .gallery {
      column-count: 2;
      column-gap: 0.75rem;
    }
    h1 {
      font-size: 1.8rem;
    }
  }
  @media (max-width: 400px) {
    .gallery {
      column-count: 1;
      column-gap: 0;
    }
  }

  /* Gallery item styling */
  .gallery-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
      0 0 8px #40309Caa,
      0 0 18px #40309Caa;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #222;
  }

  .gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    border-radius: 16px;
  }

  .gallery-item:hover {
    transform: scale(1.03);
    box-shadow:
      0 0 20px #40309Cff,
      0 0 40px #40309Cff;
  }

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

  .he1 {
    text-align: center;
    margin: 1rem;
  }

  .read-more {
        background-color: #3A2A96;
        color: #fff;
        border-radius: 5px;
        border: none;
        padding: 8px 13px;
  }
/* gallery end */