/* Custom styles */
:root {
  /* Base Colors */
  --color-primary-1: #fbcc34;
  /* Main color (blue on this site) */
  --color-primary-2: #2fa557;
  /* Secondary main color (red on this site) */
  --color-accent-1: #2fa557;
  /* Accent color (yellow on this site) */

  /* Neutral Colors */
  --color-neutral-light: #ffffff;
  /* Light (white) */
  --color-neutral-dark: #000000;
  /* Dark (black) */
  --color-neutral-gray-light: #e3e3e3;
  /* Light gray */
  --color-neutral-gray-medium: #747474;
  /* Medium gray */
  --color-neutral-gray-dark: #a6a6a6;
  /* Dark gray */

  /* Secondary Colors */
  --color-secondary-dark-1: #fbcc34;
  /* Dark red (secondary on this site) */
  --color-secondary-dark-2: #2fa557;
  /* Dark blue */

  /* Shadows */
  --shadow-text: rgba(0, 0, 0, 0.8);
  /* Text shadow */

  /* Gradients and Borders */
  --gradient-border: linear-gradient(
    to right,
    var(--color-primary-2),
    var(--color-accent-1)
  );
}

body {
  font-family: "Montserrat", sans-serif;
}
.brand-name {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #036454;
  text-transform: uppercase;
  letter-spacing: 2.4px;
}

/* Header Section Starts Here */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
}
/* Full height between header and footer */
.maintenance-section {
  min-height: calc(
    100vh - 120px
  ); /* adjust 120px if header + footer height is different */
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff8e1; /* light yellow background */
  text-align: center;
  padding: 0 10px;
}

/* Content styling */
.maintenance-content h2 {
  font-size: 2.5rem;
  color: #fbcc34;
  font-weight: bold;
  animation: blink 2s infinite;
}

.maintenance-content p {
  font-size: 1.2rem;
  margin-top: 20px;
  color: #333;
}
.maintenance-banner {
  width: 100%;
  overflow: hidden;
  background: var(--color-primary-1);
  padding: 12px 0;
  border-radius: 8px;
}

.maintenance-text {
  display: inline-block;
  white-space: nowrap;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  animation: scroll-right-left 15s linear infinite;
}

@keyframes scroll-right-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Blink effect */
@keyframes blink {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}

ul.list-social-links {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 10px;
}

.social-hover-icon {
  display: none;
}

a:hover .social-icon {
  display: none;
}

a:hover .social-hover-icon {
  display: inline;
}

.btn-login {
  background: var(--color-primary-2);
  border: none;
  padding: 12px 20px 10px 20px;
  border-radius: 6px;
  font-family: "Montserrat";
  font-size: 15px;
  font-weight: 500;
  line-height: 18.29px;
  color: var(--color-neutral-light);
}

.btn-login .login-user-icon {
  width: 17px;
  height: 17px;
  margin-right: 8px;
  margin-bottom: 2px;
}

.btn-sponsorship {
  background: var(--color-neutral-light);
  border: none;
  padding: 9px 16px;
  border-radius: 6px;
  font-family: "Montserrat";
  font-size: 15px;
  font-weight: 600;
  line-height: 18.29px;
  color: var(--color-primary-1);
}

.nav-bg {
  background-color: var(--color-primary-1);
}

/* Header Section Ends Here */

/* Hero Section Starts Here */
.hero-carousel {
  position: relative;
}

.hero-carousel .owl-carousel .item img {
  width: 100%;
  height: auto;
}

.hero-carousel .carousel-caption {
  position: absolute;
  bottom: 20%;
  left: 7%;
  right: auto;
  transform: translateY(-50%);
  color: var(--color-neutral-light);
  text-shadow: 0 2px 10px var(--shadow-text);
  text-align: start;
}

.hero-carousel .carousel-caption h1 {
  font-family: "Montserrat";
  font-size: 44px;
  font-weight: 700;
  line-height: 53.64px;
}

.hero-carousel .carousel-caption p {
  font-family: "Montserrat";
  font-size: 18px;
  font-weight: 600;
  line-height: 21.94px;
  text-align: left;
}

/* Custom Navigation Arrows */
.hero-carousel .custom-prev,
.hero-carousel .custom-next {
  position: absolute;
  bottom: 20px;
  width: 50px;
  height: 50px;
  background-size: cover;
  cursor: pointer;
  z-index: 10;
}

.hero-carousel .owl-nav {
  position: absolute;
  width: max-content;
  bottom: 60px;
  left: 7%;
}

.hero-carousel .custom-prev {
  left: 0px;
  background-image: url("../images/carousel-previous-icon.svg");
  /* Default state image */
}

.hero-carousel .custom-next {
  right: -90px;
  background-image: url("../images/carousel-next-icon.svg");
  /* Default state image */
}

/* Hover state */
.hero-carousel .custom-prev:hover,
.hero-carousel .custom-prev:active {
  background-image: url("../images/carousel-previous-hover-icon.svg");
}

.hero-carousel .custom-next:hover,
.hero-carousel .custom-next:active {
  background-image: url("../images/carousel-next-hover-icon.svg");
}

/* Hero Section Ends Here */
.navbar-brand .brand-logo {
  height: 120px;
}

.hero-section {
  background-image: url("path/to/hero-image.jpg");
  background-size: cover;
  background-position: center;
  color: var(--color-neutral-light);
  padding: 100px 0;
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}

.leader-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.notice-board img {
  height: 100px;
  object-fit: cover;
}

.fixed-chat-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--color-secondary-dark-1);
  color: var(--color-neutral-light);
  padding: 10px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
}

/* About Us Section Starts Here */
.about-section {
  padding: 60px 0px 67px 0px;
}

.about-section .img-fluid {
  border-radius: 10px;
  margin-bottom: 20px;
}
.events-section {
  padding: 60px 0px 67px 0px;
}

.events-section .img-fluid {
  border-radius: 10px;
  margin-bottom: 20px;
}
.section-main-title {
  font-family: "Montserrat";
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  color: var(--color-neutral-dark);
  margin-bottom: 13px;
}

.section-main-title::after {
  content: "";
  flex-grow: 1;
  height: 4px;
  margin-left: 11px;
  border-right: none !important;
  border-left: none !important;
  border: 1px double var(--color-neutral-gray-light);
}

.section-main-title .dot {
  width: 7px;
  height: 7px;
  background-color: var(--color-primary-2);
  border-radius: 50%;
  margin-left: 8px;
}

.section-title {
  font-family: "Montserrat";
  font-size: 24px;
  font-weight: 700;
  line-height: 29.26px;
  text-align: left;
  margin-bottom: 18px;
}

.section-para {
  font-family: "Montserrat";
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
  text-align: justify;
  color: var(--color-neutral-gray-medium);
  margin-bottom: 30px;
}

.btn-view-certificate {
  color: var(--color-primary-1) !important;
  font-family: "Montserrat";
  font-size: 15px;
  font-weight: 600;
  line-height: 18.29px;
  text-decoration: underline;
  padding: 0px;
  border: none;
}

/* About Us Section Ends Here */

/* Members Section Starts Here */

.members-section {
  padding-bottom: 50px;
}

.members-section .section-main-title {
  display: flex;
  align-items: center;
  color: var(--color-neutral-dark);
  margin-bottom: 30px;
  font-family: "Montserrat";
  font-size: 28px;
  font-weight: 700;
  line-height: 34.13px;
  text-align: left;
}

.members-section .section-main-title::after {
  content: "";
  flex-grow: 1;
  height: 4px;
  margin-left: 11px;
  border-right: none !important;
  border-left: none !important;
  border: 1px double var(--color-neutral-gray-light);
}

.members-section .section-main-title .dot {
  width: 9px;
  height: 9px;
  background-color: var(--color-primary-2);
  border-radius: 50%;
  margin-left: 12px;
}

.member-card {
  background-color: var(--color-primary-1);
  padding: 90px 20px 20px;
  border-radius: 8px;
  color: var(--color-neutral-light);
  position: relative;
  margin-top: 52px;
}

.member-card .member-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.member-card .member-name {
  font-family: "Montserrat";
  font-size: 18px;
  font-weight: 600;
  line-height: 21.94px;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 5px;
  z-index: 2;
  position: relative;
}

.member-card .member-role {
  color: var(--color-accent-1);
  font-family: "Montserrat";
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  z-index: 2;
  position: relative;
}
.member-desc {
  font-size: 14px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.35s ease,
    opacity 0.25s ease;
  font-weight: 600;
}

.member-card:focus .member-desc {
  max-height: fit-content;
  opacity: 1;
}
.member-card:hover .member-desc {
  max-height: fit-content;
  opacity: 1;
}
.member-card:focus {
  outline: none;
}
/* Members Section Ends Here */

/* Notice Board Section Starts Here */

.notice-board-section {
  padding-bottom: 70px;
}

.notice-board-flex {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.notice-board-section .section-main-title {
  display: flex;
  align-items: center;
  color: var(--color-neutral-dark);
  font-family: "Montserrat";
  font-size: 28px;
  font-weight: 700;
  line-height: 34.13px;
  text-align: left;
  margin-bottom: 0px;
}

.notice-board-section .section-main-title::after {
  content: "";
  flex-grow: 1;
  height: 4px;
  margin-left: 11px;
  border-right: none !important;
  border-left: none !important;
  border: 1px double var(--color-neutral-gray-light);
}

.notice-board-section .section-main-title .dot {
  width: 9px;
  height: 9px;
  background-color: var(--color-primary-2);
  border-radius: 50%;
  margin-left: 12px;
}

.view-more-btn {
  background-color: var(--color-primary-1);
  color: var(--color-neutral-light);
  border-radius: 6px;
  border: none;
  padding: 11px 20px;
  font-family: "Montserrat";
  font-size: 15px;
  font-weight: 500;
  line-height: 18.29px;
  min-width: 130px;
}

.notice-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 22px;
}

.notice-grid-container .grid-item {
  border: 1px solid #dedede;
  border-radius: 6px;
  background-color: var(--color-neutral-light);
  display: flex;
  gap: 20px;
  padding: 20px;
}

.notice-grid-container .notice-img {
  width: 130px;
  height: 112px;
}

.notice-grid-container .notice-img img {
  width: 130px;
  height: 112px;
}

.notice-grid-container .notice-content .title {
  font-family: "Montserrat";
  font-size: 16px;
  font-weight: 600;
  line-height: 19.5px;
  text-align: left;
  color: var(--color-neutral-dark);
  margin-bottom: 7px;
}

.notice-grid-container .notice-content .para {
  font-family: "Montserrat";
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  color: var(--color-neutral-gray-medium);
  margin-bottom: 10px;
  text-align: justify;
}

.notice-grid-container .notice-content .date {
  display: flex;
  align-items: center;
  gap: 5px;
}

.notice-grid-container .notice-content .date .date-label {
  font-family: "Montserrat";
  font-size: 13px;
  font-weight: 500;
  line-height: 22px;
  color: var(--color-primary-1) !important;
  text-transform: uppercase;
}

/* Notice Board Section Ends Here */

/* Sponsors Section Starts Here */
.sponsors-section {
  padding-bottom: 70px;
}

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

.sponsors-section .section-main-title {
  display: flex;
  align-items: center;
  color: var(--color-neutral-dark);
  font-family: "Montserrat";
  font-size: 28px;
  font-weight: 700;
  line-height: 34.13px;
  text-align: left;
  margin-bottom: 0px;
}

.sponsors-section .section-main-title::after {
  content: "";
  flex-grow: 1;
  height: 4px;
  margin-left: 11px;
  border-right: none !important;
  border-left: none !important;
  border: 1px double var(--color-neutral-gray-light);
}

.sponsors-section .section-main-title .dot {
  width: 9px;
  height: 9px;
  background-color: var(--color-primary-2);
  border-radius: 50%;
  margin-left: 12px;
}

/* Marquee Container */
.marquee-container {
  width: 100%;
  overflow: hidden;
  margin-top: 60px;
  /* background-color: #fff; */
}

/* Marquee */
.marquee {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee-scroll 15s linear infinite;
}

/* Marquee Content */
.marquee-content {
  display: flex;
  gap: 20px; /* Space between logos */
  width: 100%;
}

.marquee-field {
  border: 1px solid #dedede;
  border-radius: 8px;
  padding: 40px 60px !important;
  width: 33% !important;
  display: flex;
  justify-content: center;
}

.marquee-content img {
  width: 220px; /* Fixed width for logos */
  height: 54px; /* Fixed height for logos */
  object-fit: contain;
}

/* Marquee Animation */
@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/* Sponsors Section Ends Here */

/* Contact Section Starts Here */

.contact-section {
  background-color: #fafafa;
  padding: 60px 0;
}

.contact-info {
  background-color: var(--color-primary-1);
  color: var(--color-neutral-light);
  padding: 50px 40px;
  border-radius: 6px;
  /* max-width: 450px; */
}

.contact-info .section-main-title {
  font-family: "Montserrat";
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  color: var(--color-neutral-light);
  margin-bottom: 16px;
}

.contact-info .section-main-title::after {
  content: "";
  flex-grow: 1;
  height: 4px;
  margin-left: 11px;
  border-right: none !important;
  border-left: none !important;
  border: 1px double var(--color-neutral-gray-light);
}

.contact-info .section-main-title .dot {
  width: 7px;
  height: 7px;
  background-color: var(--color-primary-2);
  border-radius: 50%;
  margin-left: 8px;
}

.contact-info .title {
  font-family: "Montserrat";
  font-size: 24px;
  font-weight: 700;
  line-height: 29.26px;
  color: var(--color-neutral-light);
  margin-bottom: 28px;
}

.contact-info .office-info-flex {
  display: flex;
  gap: 17px;
  margin-bottom: 28px;
}

.contact-info .office-info-flex .info-label {
  font-family: "Montserrat";
  font-size: 16px;
  font-weight: 600;
  line-height: 19.5px;
  color: var(--color-neutral-light);
  margin-bottom: 6px;
}

.contact-info .office-info-flex .info-text {
  font-family: "Montserrat";
  font-size: 15px;
  font-weight: 500;
  line-height: 18.29px;
  color: var(--color-neutral-light);
  margin-bottom: 0px;
}

.get-in-touch {
  padding-left: 50px;
}

.get-in-touch .title {
  font-family: "Montserrat";
  font-size: 24px;
  font-weight: 700;
  line-height: 29.26px;
  margin-bottom: 30px;
}

.form-control {
  font-family: "Montserrat";
  font-size: 15px;
  font-weight: 400;
  line-height: 18.29px;
  color: var(--color-neutral-gray-dark);
  padding: 15px 20px;
  border-radius: 4px;
  border: 1px solid #e4e4e4;
}

.form-control:focus {
  border-color: var(--color-primary-1);
  box-shadow: none;
}

.btn-submit {
  background: var(--color-primary-1);
  border: none;
  padding: 16px 25px;
  font-family: "Montserrat";
  font-size: 15px;
  font-weight: 500;
  line-height: 18.29px;
  color: var(--color-neutral-light);
  border-radius: 6px;
}

.btn-primary:hover {
  background-color: var(--color-secondary-dark-2);
  border-color: var(--color-secondary-dark-2);
}

/* Contact Section Ends Here */

/* Footer Section Starts Here */
.footer {
  background-color: var(--color-primary-1);
  color: var(--color-neutral-light);
  padding: 20px 0;
  bottom: 0;
  position: sticky;
  z-index: 100;
}

.footer .list-social-links {
  margin-bottom: 22px;
}

.footer ul.list-social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  gap: 10px;
}

.footer .social-hover-icon {
  display: none;
}

.footer a:hover .social-icon {
  display: none;
}

.footer a:hover .social-hover-icon {
  display: inline;
}

.footer-rights {
  font-family: "Montserrat";
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  text-align: center;
  margin-bottom: 0px;
  color: var(--color-neutral-light);
}

.footer-rights a {
  color: var(--color-neutral-light) !important;
  text-decoration: none !important;
}
.certificate-container {
  margin-top: 20px;
  text-align: justify;
  min-height: calc(100vh - 120px);
}
.registration-section {
  margin-top: 20px;
  text-align: justify;
  min-height: calc(100vh - 120px);
}
#sponsorship-khokho {
  min-height: calc(
    100vh - 120px
  ); /* adjust 120px if header + footer height is different */
}
/* Certificate Section Starts Here */
.pdf-container {
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.pdf-container .certificate-frame {
  width: 100% !important;
  height: 500px !important;
}

/* Certificate Section Ends Here */

/* Footer Section Ends Here */

/*Page - About Kho Kho Section Starts Here */
.video-container {
  position: relative;
  display: inline-block;
  padding: 0px;
  box-shadow: 2px 1px 18px 3px #00000014;
  border-radius: 10px;
  width: 100%;
}
.video-container-new {
  position: relative;
  display: inline-block;
  padding: 2px;
  /* box-shadow: 2px 1px 2px 3px #00000014;
  border-radius: 12px; */
  width: auto;
  height: auto;
}
.iframe-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.iframe-container iframe {
  width: clamp(350px, 45vw, 960px);
  aspect-ratio: 16 / 9;
}
.video {
  display: block;
  border-radius: 10px;
  width: 100%;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  z-index: 5;
  pointer-events: none;
  border-radius: 10px;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: url("../images/video-play-btn.svg") no-repeat center center;
  background-size: contain;
  cursor: pointer;
  z-index: 10;
}

.play-icon::after {
  content: "";
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.video-container:hover .play-icon {
  pointer-events: auto;
  /* Allows the icon to be clickable on hover */
}

/* New */
.full-screen-video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  /* Hidden by default */
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.full-screen-content {
  position: relative;
  width: 95% !important;
  max-width: 900px;
  margin: auto;
  background: transparent;
  border-radius: 10px;
}

/* .full-screen-video {
  width: 95% !important;
  max-width: 900px;
  border-radius: 10px;
} */

.full-screen-video {
  width: 100% !important;
  height: auto;
  border-radius: 10px;
}

.close-full-screen {
  position: absolute;
  top: -13px;
  right: -14px;
  background: var(--color-primary-1);
  border: none;
  color: var(--color-neutral-light);
  font-size: 30px;
  cursor: pointer !important;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  padding: 15px;
  text-decoration: none !important;
}

.close-full-screen:hover {
  background: #1c6aa5d2;
}

/* New */

/*Page - About Kho Kho Section Ends Here */

@media only screen and (min-width: 992px) {
  .navbar-nav {
    flex-direction: row;
    gap: 40px;
    padding: 8px 0px;
  }

  .nav-link {
    font-family: "Montserrat";
    font-size: 15px;
    font-weight: 600;
    line-height: 18.29px;
    color: var(--color-neutral-light);
  }

  .nav-link:hover,
  .nav-link:active,
  .nav-link:focus {
    color: var(--color-neutral-gray-light) !important;
  }
}

@media only screen and (max-width: 991px) {
  .navbar-brand .brand-logo {
    height: 95px;
  }
  .navbar-brand .brand-name {
    font-size: 20px;
  }

  .navbar-strip-mobile {
    padding: 10px 25px;
  }

  .navbar-toggler {
    padding: 4px 8px;
    font-size: var(--bs-navbar-toggler-font-size);
    line-height: 1;
    background-color: var(--color-neutral-light);
    border: none;
    border-radius: var(--bs-navbar-toggler-border-radius);
    transition: var(--bs-navbar-toggler-transition);
  }

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

  .nav-link {
    font-family: "Montserrat";
    font-size: 15px;
    font-weight: 600;
    line-height: 18.29px;
    color: var(--color-neutral-light);
  }

  .nav-link:hover,
  .nav-link:active,
  .nav-link:focus {
    color: var(--color-neutral-gray-light) !important;
  }

  .hero-carousel .owl-carousel .item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
  }

  .hero-carousel .carousel-caption h1 {
    font-family: "Montserrat";
    font-size: 35px;
    font-weight: 700;
    line-height: 53.64px;
  }

  .hero-carousel .carousel-caption {
    position: absolute;
    bottom: 0%;
    left: 7%;
    right: auto;
    transform: translateY(-50%);
    color: var(--color-neutral-light);
    text-shadow: 0 2px 10px var(--shadow-text);
    text-align: start;
  }

  .contact-flex-reverse {
    flex-direction: column-reverse;
  }

  .get-in-touch {
    padding-left: 0px;
  }
}

@media only screen and (max-width: 600px) {
  .nav-mobile-container {
    display: flex;
    justify-content: center !important;
    gap: 15px;
    padding-bottom: 15px;
  }

  .nav-mobile-container ul.list-social-links {
    padding-left: 0px;
  }

  .navbar-toggler {
    padding: 4px 8px;
    font-size: var(--bs-navbar-toggler-font-size);
    line-height: 1;
    background-color: var(--color-neutral-light);
    border: none;
    border-radius: var(--bs-navbar-toggler-border-radius);
    transition: var(--bs-navbar-toggler-transition);
  }

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

  .nav-link {
    font-family: "Montserrat";
    font-size: 15px;
    font-weight: 600;
    line-height: 18.29px;
    color: var(--color-neutral-light);
  }

  .about-flex-reverse {
    flex-direction: column-reverse;
    gap: 30px;
  }

  .contact-info {
    max-width: 100%;
    margin-bottom: 20px;
    padding: 20px 15px 20px 15px;
  }

  .video-container {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .notice-grid-container {
    grid-template-columns: 1fr;
  }

  .contact-info {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .contact-section .row {
    flex-direction: column;
  }

  .marquee-field {
    width: 100% !important;
  }
}
.insta-row {
  /* display: flex;
    gap: 16px;
    max-width: 1200px;
    margin: auto;
    height: 85vh;
     overflow-y: scroll; */

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  /* margin: auto; */
  margin-bottom: 10px;
}

.insta-card {
  /* flex: 1;
   height: "55vh";  
   border: 1 px solid #dededeb4;
    border-radius: 8px;
overflow-y: scroll; */
  display: flex;
  height: 520px;
  overflow: hidden;
  /* padding:  8px; */
  border-bottom: 1px solid #dededeb4;
}
.insta-card blockquote.instagram-media {
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  height: 100%;
  border: none;
}

/* Equal height alignment */
.instagram-row > .insta-card {
  align-items: stretch;
}

/* Responsive */
@media (max-width: 900px) {
  .insta-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* .insta-card iframe {
    width: 100%;
    height: 100%;
    border: none;
  } */

/* Mobile */
@media (max-width: 768px) {
  .insta-row {
    flex-direction: column;
    overflow-y: auto;
  }

  .insta-card {
    height: 100%;
  }
}

.header-icon {
  font-size: 1rem;      /* reduce icon size */
  line-height: 1; 
  margin-bottom: 1px;
}

/* Dropdown container */
.custom-dropdown {
  border: none;
  border-radius: 12px;
  padding: 8px;
  min-width: 220px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* Each item */
.custom-dropdown .dropdown-item {
  border-radius: 8px;
  padding: 10px 12px;
  transition: all 0.25s ease;
}

/* Hover effect */
.custom-dropdown .dropdown-item:hover {
  background-color: #f5f7fa;
  /* transform: translateX(4px); */
}

/* Icon styling */
.custom-dropdown i {
  font-size: 0.9rem;
  color: #FBCC34;
}

/* Text */
.custom-dropdown span {
  font-size: 0.95rem;
  font-weight: 500;
}
.dropdown-submenu > a i.fa-chevron-right {
  font-size: 12px;
  opacity: 0.6;
}
.dropdown-submenu .dropdown-menu {
  display: none;
  /* position: absolute; */
  top: 0;
  left: 100%;
  margin-top: -1px;
}

.dropdown-submenu:hover .dropdown-menu {
  display: block;
}


.ticker-container {
 max-width: 1200px;
 display: flex;
 flex-direction: row;
}
.ticker {
  /* width: 100%;
  overflow: hidden;
  background: white;
  color: #036454;
  padding: 10px 0;
  position: relative; */
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;

  background: linear-gradient(90deg, #016354, #3f8e82);
  color: white;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  width: 100%;
}

/* .ticker-text {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: scroll-left 25s linear infinite;
  font-weight: bold;
  margin-right: 20px;
  font-size: 14px;
} */
.badge {
  background: #facc15;
  color: #000;
  font-weight: bold;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 20px;
  white-space: nowrap;
  animation: pulse 1.8s infinite;
  z-index: 1;
}
.ticker-wrapper {
  overflow: hidden;
  width: 100%;
   background: linear-gradient(90deg, #016354, #3f8e82);
   color: #fff ; 
    padding: 12px 15px;
}
.ticker-text {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: scroll-left 20s linear infinite;
  font-weight: bold;
  font-size: 14px;
}

/* Smooth full scroll */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@media (max-width: 991px) {

  .dropdown-submenu .submenu {
    position: static;
    width: 100%;
    margin-left: 15px;
    border: none;
    box-shadow: none;
    background: transparent;
  }

  .dropdown-submenu .submenu .dropdown-item {
    padding-left: 2rem;
  }

}