/* GLOBAL STYLES */

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-text-color: #183b56;
  --secondary-text-color: #577592;
  --accent-color: #2294ed;
  --accent-color-dark: #1d69a3;
  --light-bg: #f9f9f9;
  --form-bg: #ffffff;
  --input-bg: #f0f4f8;
  --radius: 12px;
  --shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --padding-inline-section: 20px;
}

body {
  font-family: "Lato", sans-serif;
  color: var(--primary-text-color);
}

a {
  text-decoration: none;
  display: inline-block;
}

ul {
  list-style: none;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 1.5rem;
  color: var(--accent-color);
}

h3 {
  font-size: 1.5rem;
}

p {
  font-size: 1rem;
  color: var(--secondary-text-color);
  line-height: 1.8rem;
}

/* NAV STYLES */

header, nav {
  margin: 0;
  padding: 0;
  background: white;
}

nav {
  position: relative;
  z-index: 9999;
}

.container {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: var(--padding-inline-section);
}

.flex {
  display: flex;
  align-items: center;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  position: relative;
  z-index: 9999;
}

.company-logo {
  margin-right: auto;
}

.nav-links {
  flex-grow: 1;
}

.nav-links ul {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
}

.nav-links ul li {
  padding-right: .5rem;
  white-space: nowrap;
  padding-left: .5rem;
}

.nav-links ul li a {
  position: relative;
  color: var(--accent-color);
  transition: 0.3s ease;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
}

.nav-btn-link {
  margin-left: 2rem;
  flex-shrink: 0;
}

.nav-links ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background-color: var(--accent-color);
  transition: width 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-links ul li a:hover::after {
  width: 100%;
}

.nav-links ul li a:hover::after,
.nav-links ul li a.active::after {
  width: 100%;
}

@media (max-width: 1125px) and (min-width: 768px) {
  .nav-links ul {
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .nav-btn-link {
    margin-left: 0;
    margin-top: 0.5rem;
  }
}

.company-logo img {
  margin-top: 1rem;
  height: 7rem;
  padding-bottom: 1rem;
  padding-right: 1rem;
  margin-left: 1.5em; 
}

.cssbuttons-io-button {
  background: var(--accent-color);
  color: white;
  font-family: inherit;
  font-size: clamp(1.05rem, 1.2vw, 1.25rem); 
  font-weight: 500;
  border-radius: 1em; 
  border: none;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 2em -0.5em var(--accent-color);
  overflow: hidden;
  position: relative;
  height: clamp(3.6em, 6.5vw, 4em); 
  padding: 1em 3.5em 1em 2.2em; 
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  white-space: nowrap;
}

.cssbuttons-io-button .icon {
  height: clamp(1.9em, 3.8vw, 2em);
  width: clamp(1.8em, 3.5vw, 2em);
  background: white;
  margin-left: 2.5em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.6em;
  box-shadow: 0.15em 0.15em 0.6em 0.15em var(--accent-color);
  right: 0.5em;
  transition: all 0.3s ease;
}

.cssbuttons-io-button .icon svg {
  width: clamp(1em, 1.3vw, 1.2em);
  transition: transform 0.3s ease;
  color: var(--accent-color);
}

.cssbuttons-io-button:hover .icon {
  width: calc(100% - 0.8em);
}

.cssbuttons-io-button:hover .icon svg {
  transform: translateX(0.15em);
}

.cssbuttons-io-button:active .icon {
  transform: scale(0.93);
}

.cssbuttons-io-button .btn-text {
  padding-right: 1em; 
}

.dropdown-li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.arrow {
  transition: transform 0.3s ease;
  font-size: clamp(0.5rem, 1vw, 0.75rem);
  margin-left: 0.3rem;
}

.arrow.rotate {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 150%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: white;
  padding: .5rem;
  border-radius: 12px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  min-width: 200px;
  text-align: center;
  flex-direction: column;
  align-items: center;
}

.dropdown-li:hover .dropdown-menu,
.dropdown-li.active-dropdown .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  display: flex;
}

.dropdown-menu li {
  padding: 0.5rem 1rem;
  width: 100%;
}

.dropdown-menu li a {
  color: var(--accent-color);
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  width: 100%;
  position: relative;
  transition: 0.3s ease;
}

.dropdown-menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

.dropdown-menu li a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  font-size: 1.8rem;
  color: var(--accent-color);
  cursor: pointer;
  padding: 0.5rem;
  z-index: 10001;
}

@media (max-width: 1125px) and (min-width: 768px) {
  .nav-links ul {
    flex-direction: row;
    gap: 0.8rem;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: white;
    padding: 1rem;
    align-items: center;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links ul {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-left: 0;
  }

  .nav-btn-link {
    width: 100%;
    margin-top: 1rem;
    display: flex;
    justify-content: center;
  }

  .nav-toggle {
    display: block;
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
  }
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none !important;
  }

  .nav-links {
    display: block !important;
    flex-direction: row !important;
    align-items: center !important;
  }
}

@media (min-width: 1126px) {
  .nav-links ul {
    gap: 1.5rem;
  }

  .nav-links ul li a {
    font-size: 1rem;
  }

  .arrow {
    font-size: 1rem;
  }

  .cssbuttons-io-button {
    font-size: 0.95rem;
    padding: 0.6em 1.5em;
    height: auto;
  }

  .cssbuttons-io-button .icon {
    height: 1.8em;
    width: 1.5em;
  }

  .cssbuttons-io-button .icon svg {
    width: 1em;
  }

  .company-logo img {
    height: 7rem;
  }
}

@media (min-width: 1440px) {
  .nav-links ul li a {
    font-size: 1.1rem;
  }

  .arrow {
    font-size: 1.1rem;
  }

  .cssbuttons-io-button {
    font-size: 1.05rem;
    padding: 0.7em 1.8em;
  }

  .cssbuttons-io-button .icon {
    height: 2em;
    width: 1.8em;
  }
}

@media (max-width: 900px) and (min-width: 768px) {
  .main-nav {
    flex-wrap: nowrap;
    gap: 1rem;
  }

  .company-logo img {
    height: 5.5rem;
    margin-left: 1em;
    padding-right: 0.5rem;
  }

  .nav-links ul {
    flex-wrap: nowrap;
    gap: 0.6rem;
  }

  .nav-links ul li a {
    font-size: 0.75rem;
  }

  .arrow {
    font-size: 0.75rem;
  }

  .cssbuttons-io-button {
    font-size: 0.8rem;
    padding: 0.5em 1.8em 0.5em 1em;
    height: 2.5em;
  }

  .cssbuttons-io-button .icon {
    height: 1.3em;
    width: 1.1em;
  }

  .cssbuttons-io-button .icon svg {
    width: 0.7em;
  }
}

@media (max-width: 1439px) {
  .main-nav {
    flex-wrap: nowrap;
    gap: clamp(0.8rem, 1.5vw, 1.2rem);
    padding-inline: clamp(0.5rem, 3vw, 1.5rem);
  }

  .company-logo img {
    height: clamp(5rem, 6vw, 6.2rem);
    margin-left: clamp(1em, 2vw, 1.5em);
    padding-right: 0.5rem;
  }

  .nav-links ul {
    flex-wrap: nowrap;
    gap: clamp(0.5rem, 1.5vw, 1rem);
    justify-content: center;
  }

  .nav-links ul li a {
    font-size: clamp(0.75rem, 1vw, 0.95rem);
  }

  .arrow {
    font-size: clamp(0.7rem, 1vw, 1rem);
  }

  .cssbuttons-io-button {
    font-size: clamp(0.8rem, 1vw, 0.95rem);
    padding: 0.5em 1.6em 0.5em 1em;
    height: clamp(2.5em, 4vw, 3em);
    margin-left: clamp(0.5rem, 2vw, 1.5rem);
    flex-shrink: 0;
  }

  .cssbuttons-io-button .icon {
    height: clamp(1.2em, 2vw, 1.6em);
    width: clamp(1em, 2vw, 1.4em);
  }

  .cssbuttons-io-button .icon svg {
    width: clamp(0.7em, 1vw, 1em);
  }
}


@media (max-width: 1439px) and (min-width: 1126px) {
  .main-nav {
    flex-wrap: nowrap;
    gap: 1.2rem;
  }

  .company-logo img {
    height: 8rem;
    margin-left: 1.2em;
    padding-right: 0.8rem;
  }

  .nav-links ul {
    flex-wrap: nowrap;
    gap: 1rem;
  }

  .nav-links ul li a {
    font-size: 0.95rem;
  }

  .arrow {
    font-size: 0.95rem;
  }

  .cssbuttons-io-button {
    font-size: 0.9rem;
    padding: 0.6em 1.6em 0.6em 1.2em;
    height: 2.8em;
  }

  .cssbuttons-io-button .icon {
    height: 1.6em;
    width: 1.4em;
  }

  .cssbuttons-io-button .icon svg {
    width: 0.8em;
  }
}

@media (min-width: 1600px) and (max-width: 1919px) {
  .main-nav {
    gap: 2rem;
    padding-inline: 3rem;
  }

  .nav-links ul li a {
    font-size: 1.2rem;
  }

  .arrow {
    font-size: 1.2rem;
  }

  .cssbuttons-io-button {
    font-size: 1.2rem;
    padding: 0.8em 2em 0.8em 1.5em;
  }

  .cssbuttons-io-button .icon {
    height: 2.2em;
    width: 2em;
  }

  .cssbuttons-io-button .icon svg {
    width: 1.2em;
  }

  .company-logo img {
    height: 8.5rem;
  }
}


@media (min-width: 1920px) and (max-width: 2559px) {
  .main-nav {
    gap: 2.5rem;
    padding-inline: 4rem;
  }

  .nav-links ul li a {
    font-size: 1.3rem;
  }

  .arrow {
    font-size: 1.3rem;
  }

  .cssbuttons-io-button {
    font-size: 1.3rem;
    padding: 1em 2.5em 1em 1.8em;
  }

  .cssbuttons-io-button .icon {
    height: 2.5em;
    width: 2.3em;
  }

  .cssbuttons-io-button .icon svg {
    width: 1.4em;
  }

  .company-logo img {
    height: 9rem;
  }
}

@media (min-width: 2560px) {
  .main-nav {
    gap: 3rem;
    padding-inline: 6rem;
  }

  .nav-links ul li a {
    font-size: 1.5rem;
  }

  .arrow {
    font-size: 1.5rem;
  }

  .cssbuttons-io-button {
    font-size: 1.2rem;
    padding: 1.2em 3em 1.2em 2em;
  }

  .cssbuttons-io-button .icon {
    height: 2.8em;
    width: 2.5em;
  }

  .cssbuttons-io-button .icon svg {
    width: 1.6em;
  }

  .company-logo img {
    height: 10rem;
  }
}

@media (min-width: 1440px) {
  .container {
    max-width: 1600px;
  }

  .main-nav {
    flex-wrap: nowrap !important;
    justify-content: space-between;
    align-items: center;
  }

  .company-logo {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    flex-shrink: 0;
  }

  .nav-links {
    flex: 2;
    display: flex;
    justify-content: center; 
  }

  .nav-links ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: nowrap;
  }

  .nav-links ul li {
    flex-shrink: 0;
    padding-right: 2rem;
  }

  .nav-btn-link {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    flex-shrink: 0;
  }

  .cssbuttons-io-button {
    white-space: nowrap;
  }
}

/* POP-UP OVERLAY STYLES */

.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-content {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  max-width: 610px;
  width: 100%;
  text-align: center;
  position: relative;
  animation: fadeIn 0.5s ease-in-out;
}

/* Slider */
.popup-slider-wrapper {
  position: relative;
  margin-top: 1rem;
}

.popup-slider img {
  width: 100%;
  max-height: 900px;
  border-radius: 12px;
  object-fit: cover;
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

/* Spinner */
.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #ccc;
  border-top: 4px solid #007bff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: auto;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Arrows */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.85);
  color: #333;
  border: none;
  font-size: 24px;
  padding: 10px 14px;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.popup-slider-wrapper:hover .nav-arrow {
  opacity: 1;
}

.nav-arrow.arrow-left { left: 15px;   top: 56%; }
.nav-arrow.arrow-right { right: 15px; }

.nav-arrow:hover {
  background: #007bff;
  color: #fff;
}

/* Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  background: #bbb;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: #007bff;
}

/* Close */
.close-btn {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 24px;
  cursor: pointer;
}

/* Explore Button */
.explore-btn {
  background: #007bff;
  color: white;
  padding: 0.35em 1.2em;
  margin-top: 1rem;
  font-size: 15px;
  border-radius: 0.9em;
  border: none;
  display: flex;
  align-items: center;
  height: 2.8em;
  padding-right: 3.3em;
  cursor: pointer;
  position: relative;
}

.explore-btn .icon {
  background: white;
  position: absolute;
  right: 0.3em;
  height: 2.2em;
  width: 2.2em;
  border-radius: 0.7em;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #007bff;
  transition: 0.3s;
}

.explore-btn:hover .icon {
  width: calc(100% - 0.6em);
}

.explore-btn svg {
  width: 1.1em;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}


/* Responsive */

@media (max-width: 1200px) {
  .popup-content {
    max-width: 55%;
    padding: 1rem;
  }

  .popup-slider img {
    max-height: 500px;
  }

  .nav-arrow {
    font-size: 20px;
    padding: 8px 10px;
  }

  .nav-arrow.arrow-left {
    left: 10px;
  }

  .nav-arrow.arrow-right {
    right: 10px;
  }
    .explore-btn {
    font-size: 12px;
    height: 3em;
  }

  .explore-btn .icon {
    height: 2.4em;
    width: 2.4em;
  }

  .explore-btn .icon svg {
    width: 1em;
  }
}

@media (max-width: 768px) {
  .popup-content {
    max-width: 65%;
    padding: 1rem;
  }

  .popup-slider img {
    max-height: 500px;
  }

  .nav-arrow {
    font-size: 20px;
    padding: 8px 10px;
  }

  .nav-arrow.arrow-left {
    left: 10px;
  }

  .nav-arrow.arrow-right {
    right: 10px;
  }
    .explore-btn {
    font-size: 12px;
    height: 3em;
  }

  .explore-btn .icon {
    height: 2.4em;
    width: 2.4em;
  }

  .explore-btn .icon svg {
    width: 1em;
  }
}

@media (max-width: 480px) {
  .popup-slider img {
    max-height: 400px;
  }

  .nav-arrow {
    font-size: 18px;
    padding: 6px 8px;
  }

  .nav-arrow.arrow-left{
    left: 8px;
  }

  .nav-arrow.arrow-right {
    right: 8px;
  }
}

/* Full HD and large 2K screens (1920px–2559px) */
@media (min-width: 1920px) and (max-width: 2559px) {
  .popup-content {
    max-width: 850px;
    padding: 2rem 2.5rem;
  }

  .popup-slider img {
    max-height: 900px;
  }

  .nav-arrow {
    font-size: 34px;
    padding: 18px 22px;
  }

  .explore-btn {
    font-size: 17px;
    height: 3em;
  }

  .explore-btn .icon {
    height: 2.4em;
    width: 2.4em;
  }

  .explore-btn .icon svg {
    width: 1.3em;
  }
}

/* Retina 2K/4K displays (2560px–3839px) */
@media (min-width: 2560px) and (max-width: 3839px) {
  .popup-content {
    max-width: 1000px;
    padding: 2.5rem 3rem;
  }

  .popup-slider img {
    max-height: 900px;
  }

  .nav-arrow {
    font-size: 38px;
    padding: 20px 26px;
  }

  .explore-btn {
    font-size: 18px;
    height: 3.2em;
  }

  .explore-btn .icon {
    height: 2.6em;
    width: 2.6em;
  }

  .explore-btn .icon svg {
    width: 1.4em;
  }
}

@media (min-width: 3840px) {
  .popup-content {
    max-width: 1200px;
    padding: 3rem 4rem;
  }

  .popup-slider img {
    max-height: 1080px;
  }

  .nav-arrow {
    font-size: 42px;
    padding: 24px 30px;
  }

  .explore-btn {
    font-size: 20px;
    height: 3.5em;
  }

  .explore-btn .icon {
    height: 2.8em;
    width: 2.8em;
  }

  .explore-btn .icon svg {
    width: 1.6em;
  }
}

/* TOP-BAR STYLES */

.topbar {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--primary-text-color);
  z-index: 1000;
  overflow: hidden;
}

.banner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.banner video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 123, 255, 0.15);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: -1;
}

.banner .content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  max-width: 90%;
  color: white;
  text-align: center; 
  margin: 0 auto;
}

.banner .content h1 {
  font-size: 3rem;
  font-weight: 800;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
  margin-bottom: 1rem;
}

.banner .content p {
  font-size: 1.5rem;
  line-height: 1.6;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
  color: white;
}

.banner .content a .cssbuttons-io-button-banner {
  margin-top: 2rem;
  margin-right: 0;
  right: 4.5rem;
}

.cssbuttons-io-button-banner {
  background: var(--accent-color);
  color: white;
  font-family: inherit;
  padding: 0.35em;
  padding-left: 1.2em;
  margin-left: 5.5rem;
  font-size: 15px;
  font-weight: 500;
  border-radius: 0.9em;
  border: none;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  box-shadow: inset 0 0 1.6em -0.6em var(--accent-color);
  overflow: hidden;
  position: relative;
  height: 2.8em;
  padding-right: 3.3em;
  cursor: pointer;
}

.cssbuttons-io-button-banner .icon {
  background: white;
  margin-left: 1em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.2em;
  width: 2.2em;
  border-radius: 0.7em;
  box-shadow: 0.1em 0.1em 0.6em 0.2em var(--accent-color);
  right: 0.3em;
  transition: all 0.3s;
}

.cssbuttons-io-button-banner:hover .icon {
  width: calc(100% - 0.6em);
}

.cssbuttons-io-button-banner .icon svg {
  width: 1.1em;
  transition: transform 0.3s;
  color: var(--accent-color);
}

.cssbuttons-io-button-banner:hover .icon svg {
  transform: translateX(0.1em);
}

.cssbuttons-io-button-banner:active .icon {
  transform: scale(0.95);
}

.side-bar {
  position: absolute;
  top: 45%;
  left: 0;
  transform: translateY(-50%);
  background-color: white;
  border-top-right-radius: 2rem;
  border-bottom-right-radius: 2rem;
  width: 4.5rem;
  height: 17rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  animation: fadeSlideDown 0.5s ease;
}

.social-icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  opacity: 1;
  pointer-events: auto;
  transition: all 0.4s ease;
  width: 100%;
}

.social-icons a {
  font-size: 1.6rem;
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease;
}

.social-icons a[href*="facebook"]{
  color: #1655a8;
}

/* Facebook */
.social-icons a[href*="facebook"]:hover {
  transform: translateY(-6px);
}

/* Instagram */
.social-icons a[href*="instagram"]{
  color: #e1306c; 
}

/* Instagram */
.social-icons a[href*="instagram"]:hover {
  color: #e1306c; 
  transform: translateY(-6px);
}

/* Twitter (X) */
.social-icons a[href*="x.com"] {
  color: #000000;
}

/* Twitter (X) */
.social-icons a[href*="x.com"]:hover {
  color: #000000;
  transform: translateY(-6px);
}

/* LinkedIn */
.social-icons a[href*="linkedin"] {
  color: #0a66c2;
}

/* LinkedIn */
.social-icons a[href*="linkedin"]:hover {
  color: #0a66c2;
  transform: translateY(-6px);
}

/* YouTube */
.social-icons a[href*="youtube"] {
  color: #ff0000;
}


/* YouTube */
.social-icons a[href*="youtube"]:hover {
  transform: translateY(-6px);
}


/* Animation */
@keyframes fadeSlideDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(-50%);
  }
}

.timings {
  position: absolute;
  top: 2rem;
  right: 2rem;
  padding: 0.6rem 1.2rem;
  border-radius: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  z-index: 2;
  animation: fadeSlideDown 0.8s ease-out both;
}

.timings .icon i {
  color: white;
  font-size: 1.2rem;
}

.timings p {
  color: white;
  font-size: 0.9rem;
  margin: 0;
}

/* VIDEO SECTION HOME STYLES */

.mini-title {
  color: #2294ed;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
}

.main-title {
  font-size: 30px;
  font-weight: 800;
  color: #183b56;
  line-height: 1.2;
}

.main-title .highlight {
  color: #2294ed;
}

.sub-text {
  color: #577592;
  margin: 15px 0;
  font-size: 15px;
}

.expert-video-section {
  padding: 60px 20px;
  background-color: #ffffff;
  font-family: 'Lato', sans-serif;
}

.PSPA-video-container {
  max-width: 1000px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

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

.expert-text {
  flex: 1 1 400px;
}

@media screen and (max-width: 768px) {
  .expert-text {
    text-align: center;
  }
}

.expert-video {
  flex: 1 1 400px;
  width: 100%;
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  background-color: #000; 
}

.video-thumbnail,
.youtube-embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.6s ease;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-thumbnail.hidden {
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

.youtube-embed {
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

.youtube-embed.show {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: transform 0.3s ease;
  z-index: 3;
}

.play-button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-left: 14px solid #2294ed;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

@media screen and (max-width: 480px) {
  .play-button {
    width: 45px;
    height: 45px;
  }

  .play-button::after {
    border-left: 10px solid #2294ed;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
  }
}

/* PERFORMANCE REPORT STYLES */

.report {
    background-color: rgb(243, 246, 248);
    padding: 5rem 9%;
    display: flex;
    flex-direction: column;
    gap: 5rem;
    align-items: center;
}

.report-container {
    margin-left: 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.report-text {
    flex: 1.5;
}

.report-text p {
    color: #333;
    line-height: 1.2;
    margin-bottom: 1.3rem;
}

.report-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    list-style-type: none;
}

.service-card {
    background-color: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, border 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: block;
    color: var(--accent-color);
}

.service-card h3 {
    font-size: 1rem;
    color: var(--primary-text-color);
    margin-bottom: 0.5rem;
}

.service-card p {
      font-size: 1rem;
      color: var(--secondary-text-color);
}

.report-image {
    flex: 1;
}

.report-image img {
    max-width: 80%;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
}

.report-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(50, 197, 255, 0.404); 
}

@media (max-width: 768px) {
    .report-container {
        flex-direction: column;
    }

    .report-services {
        grid-template-columns: 1fr;
    }
}

.report-text h2 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-text-color);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease; 
}


.report-text p{
  color: var(--secondary-text-color);
  font-size: 1.5rem;
}

.report-text h2:hover {
  color: var(--accent-color-dark);
}

.report-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    transition: width 0.3s ease; 
}

.report-text h2:hover::after {
    width: 100px;
}

.download-link {
  margin-right: 5rem;
    margin-top: 2rem;
    text-align: center;
}

.download-link .report-text {
    font-weight: 600;
    color: var(--primary-text-color);
    font-size: 1rem;
    margin-right: 5px;
}

.download-link a {
    display: inline-block;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.download-link a:hover {
   color: var(--accent-color-dark);
}

/* MISSION - VISION STYLES */

.read-more-section {
  padding: 80px 30px;
  background: linear-gradient(135deg, #cbe7f8 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.read-more-section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(17, 166, 252, 0.1);
  border-radius: 50%;
  z-index: 1;
}

.read-more-wrapper {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column; 
  gap: 50px;
  z-index: 2;
}

.read-more-left {
  margin: -1rem auto 0 auto; 
  text-align: center;      
  z-index: 2;
}

.read-more-left .values-label {
  color: #5881a6;
  font-weight: bold;
  font-size: 0.7rem;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.read-more-left .main-heading {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 15px;
}

.read-more-left .main-heading span {
  color: #0c0c0c;
}

.read-more-left .sub-text {
  max-width: 400px;
  color: #5f6b7a;
  font-size: 1rem;
}

.card-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 20px;
  z-index: 2;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  flex: 1 1 30%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-icon {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #333;
}

.card-icon-eye i{
  font-size: 2.25rem;
  margin-bottom: 2rem;
  color: var(--accent-color);
}

.card h3 {
   padding-top: .5rem;
  font-size: 1rem;
  margin-bottom: 10px;
   color: var(--primary-text-color);
}

.card p {

  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

.card-icon-eye h3{
  font-size: 1rem;
  margin-bottom: 10px;
   color: var(--primary-text-color);
}

.card-icon-eye p{
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

.card.featured {
  background-color: var(--secondary-text-color);
  border-top-right-radius: 90px;
}

.card.featured {
  background-color: var(--accent-color-dark); 
  border-top-right-radius: 90px;
  border-bottom-left-radius: 30px;
  border: 1px solid #cfcac0;
  color: white;
  position: relative;
  overflow: hidden;
}

.card.featured h3 {
  color: white;
}

.card.featured p {
  color: white;
}

.card.featured::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 60px;
  height: 60px;
  background: var(--secondary-text-color);
  border-radius: 50%;
  opacity: 0.4;
}

/* BENEFICIARIES SECTION STYLES */

.outer-projects-wrapper {
  width: 100%;
  max-width: 100vw;
  height: auto;     
  padding: 1rem 0;
  background: linear-gradient( 0%, #fafafa 100% 135deg, #a7ddff);
  display: flex;
  justify-content: center;
  align-items: center;
}


.projects-container {
  display: flex;
  flex-wrap: wrap;
  width: 80%; 
}

.left-section {
  padding: 5rem 5rem;
  flex: 1;
  min-width: 100px;
}

.left-section h2 {
  font-size: 1.8rem;
  margin: .5rem 0;
  font-weight: bold;
  color: var(--primary-text-color);
}

.left-section p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 400px;
  color: var(--secondary-text-color);
}

.right-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  flex: 1;
  padding: 6rem 2rem;
}

.stat-box {
  text-align: center;
}

.stat-box i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--accent-color-dark);
}

.count {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-text-color);
}

.label {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: var(--secondary-text-color);
}

.read-more-projects {
  margin-top: .6rem;
  margin-bottom: .6rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  background-color: var(--accent-color);
  text-decoration: none;
  padding: 7px 20px;
  border-radius: 30px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.read-more-projects i {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
}

.read-more-projects:hover {
  background-color: var(--accent-color-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.read-more-projects:hover i {
  transform: translateX(4px);
}

.divider-line {
  margin-top: 0.8rem;
  margin-bottom: 0.5rem;
  border: none;
  border-top: 1px solid #ccc;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}

/* .center-beneficiaries {
  grid-column: 1 / -1;
  justify-self: center;
} */

@media (min-width: 692px) and (max-width: 1024px) {
  .right-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 4rem 2rem;
  }

  .stat-box {
    flex: 0 1 220px; 
    text-align: center;
  }

  .center-beneficiaries {
    flex: 1 1 100%;
    text-align: center;
  }
}

@media (max-width: 1300px) {
  .projects-container {
    width: 90%;
  }

  .left-section {
    padding: 3.5rem 3rem;
  }

  .left-section h2 {
    font-size: 1.7rem;
  }

  .left-section p {
    font-size: 0.98rem;
    max-width: 100%;
  }

  .right-section {
    padding: 4rem 2rem;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.2rem;
  }

  .stat-box i {
    font-size: 1.9rem;
  }

  .count {
    font-size: 1.8rem;
  }

  .label {
    font-size: 0.95rem;
  }

  .read-more-projects {
    font-size: 0.85rem;
    padding: 6px 18px;
  }

  .read-more-projects i {
    font-size: 0.8rem;
  }

  .divider-line {
    width: 70%;
  }
}

@media (max-width: 480px) {
  .read-more {
    font-size: 0.7rem;
    padding: 3px 8px;
    gap: 3px;
  }

  .read-more i {
    font-size: 0.7rem;
  }
}

@media (min-width: 480px) and (max-width: 525px) {
  .projects-container {
    width: 90%;
  }

  .left-section {
    padding: 3.5rem 3rem;
  }

  .left-section h2 {
    font-size: 1.7rem;
  }

  .left-section p {
    font-size: 0.98rem;
    max-width: 100%;
  }

  .right-section {
    padding: 4rem 2rem;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.2rem;
  }

  .stat-box i {
    font-size: 1.9rem;
  }

  .count {
    font-size: 1.8rem;
  }

  .label {
    font-size: 0.95rem;
  }

  .read-more-projects {
    font-size: 0.85rem;
    padding: 6px 18px;
  }

  .read-more-projects i {
    font-size: 0.8rem;
  }

  .divider-line {
    width: 70%;
  }
}

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

  .left-section,
  .right-section {
    width: 100%;
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .left-section h2 {
    font-size: 1.4rem;
  }

  .left-section p {
    font-size: 0.9rem;
  }

  .right-section {
    grid-template-columns: repeat(2, 1fr);
    padding: 1rem;
  }

  .stat-box i {
    font-size: 1.5rem;
  }

  .count {
    font-size: 1.4rem;
  }

  .label {
    font-size: 0.85rem;
  }

    .center-beneficiaries {
    grid-column: 1 / -1;
    justify-self: center;
    text-align: center;
  }
}

@media (max-width: 360px) {
  .left-section h2 {
    font-size: 1.2rem;
  }

  .left-section p {
    font-size: 0.85rem;
  }

  .right-section {
    grid-template-columns: repeat(1, 1fr);
    padding: 0.8rem;
    gap: 1rem;
  }

  .stat-box i {
    font-size: 1.4rem;
  }

  .count {
    font-size: 1.3rem;
  }

  .label {
    font-size: 0.8rem;
  }

    .center-beneficiaries {
    grid-column: 1 / -1;
    justify-self: center;
    text-align: center;
  }
}

@media (max-width: 320px) {
  .left-section {
    padding: 1rem;
  }

  .left-section h2 {
    font-size: 1.1rem;
  }

  .left-section p {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .right-section {
    grid-template-columns: repeat(1, 1fr);
    padding: 0.5rem;
  }

  .stat-box i {
    font-size: 1.3rem;
  }

  .count {
    font-size: 1.2rem;
  }

  .label {
    font-size: 0.75rem;
  }

    .center-beneficiaries {
    grid-column: 1 / -1;
    justify-self: center;
    text-align: center;
  }
}

@media (min-width: 1920px) {
  .projects-container {
    max-width: 1280px;
  }

  .right-section {
    grid-template-columns: repeat(3, 1fr); 
    padding: 6rem 14rem;
    gap: 1.5rem;
  }

  .stat-box i {
    font-size: 2.1rem;
  }

  .count {
    font-size: 2rem;
  }

  .label {
    font-size: 1rem;
  }
}

/* FOOTER STYLES */

.footer {
  padding-block: 50px;
  gap: 2rem;
  position: relative;
  overflow: hidden;
  color: #5881a6;
}

.footer-bg-text {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%) translateY(15%);
  width: 200px; 
  height: 200px;
  background-image: url('Assets/logo/logo-png.png'); 
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.3; 
  z-index: 0;
  pointer-events: none;
  user-select: none;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.link-column {
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin-right: 2rem;
}

.link-column a{
color: var(--accent-color-dark);
font-size: .9rem;
}

.link-column a:hover{
color: var(--accent-color-dark);
transform: translateY(-5px);
}

.link-column h4{
color: var(--primary-text-color);
}

.footer-container {
  align-items: flex-start;
  justify-content: space-around;
  gap: .5rem;
}

.footer-container .org-logos {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: .5rem;
  padding-right: 3rem;
  font-size: 2rem;
}

.org-logos img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-right: 5px;
}

.org-logos a .image-content-1 {
width: 7rem;
height: 7rem;
}

.social-icons-footer a {
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease;
  padding-right: .2rem;
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  text-align: center;
}

/* Facebook */
.social-icons-footer a[href*="facebook"] {
  color: #1655a8;
}

/* Facebook */
.social-icons-footer a[href*="facebook"]:hover {
  transform: translateY(-4px);
}

/* Instagram */
.social-icons-footer a[href*="instagram"] {
  color: #e1306c; 
}

/* Instagram */
.social-icons-footer a[href*="instagram"]:hover {
  transform: translateY(-3px);
}

/* Twitter (X) */
.social-icons-footer a[href*="x.com"] {
  color: #000000;
}

/* Twitter (X) */
.social-icons-footer a[href*="x.com"]:hover {
  transform: translateY(-3px);
}

/* LinkedIn */
.social-icons-footer a[href*="linkedin"] {
  color: #0a66c2;
}

/* LinkedIn */
.social-icons-footer a[href*="linkedin"]:hover {
  transform: translateY(-3px);
}

/* YouTube */
.social-icons-footer a[href*="youtube"] {
  color: #ff0000;
}

/* YouTube */
.social-icons-footer a[href*="youtube"]:hover {
  transform: translateY(-3px);
}

/* SUB - FOOTER STYLES */

.subfooter{
    background-color: rgb(229, 245, 255);
    padding: var(--padding-inline-section);
    bottom: 0;
}

.sub-footer{
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    color: white;
}

.sub-footer p{
font-size: .8rem;
}

.social-icons-subfooter a {
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease;
  padding-right: .2rem;
}

/* Facebook */
.social-icons-subfooter a[href*="facebook"] {
  color: #1655a8;
}

/* Facebook */
.social-icons-subfooter a[href*="facebook"]:hover {
  transform: translateY(-4px);
}

/* Instagram */
.social-icons-subfooter a[href*="instagram"] {
  color: #e1306c; 
}

/* Instagram */
.social-icons-subfooter a[href*="instagram"]:hover {
  transform: translateY(-3px);
}

/* Twitter (X) */
.social-icons-subfooter a[href*="x.com"] {
  color: #000000;
}

/* Twitter (X) */
.social-icons-subfooter a[href*="x.com"]:hover {
  transform: translateY(-3px);
}

/* LinkedIn */
.social-icons-subfooter a[href*="linkedin"] {
  color: #0a66c2;
}

/* LinkedIn */
.social-icons-subfooter a[href*="linkedin"]:hover {
  transform: translateY(-3px);
}

/* YouTube */
.social-icons-subfooter a[href*="youtube"] {
  color: #ff0000;
}

/* YouTube */
.social-icons-subfooter a[href*="youtube"]:hover {
  transform: translateY(-3px);
}

/* Animation */
@keyframes fadeSlideDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(-50%);
  }
}

.fade-in-section {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-out;
  will-change: opacity, transform;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: none;
}

/* RESPONSIVE STYLES */

@media (max-width: 991px) {
  .PSPA-video-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .expert-text,
  .expert-video {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .main-title {
    font-size: 26px;
  }

  .sub-text {
    font-size: 14px;
  }

  .play-button {
    width: 50px;
    height: 50px;
  }

  .play-button::after {
    border-left: 12px solid #2294ed;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
  }

  .side-bar {
    width: 3.8rem;
    height: 15rem;
  }

  .social-icons a {
    font-size: 1.4rem;
  }

  .timings{
    margin-top: .5rem;
  }
}

@media (max-width: 767px) {
  .expert-video-section {
    padding: 40px 15px;
  }

  .mini-title {
    font-size: 12px;
  }

  .main-title {
    font-size: 22px;
  }

  .sub-text {
    font-size: 13px;
  }

  .play-button {
    width: 45px;
    height: 45px;
  }

  .play-button::after {
    border-left: 10px solid #2294ed;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
  }

  .side-bar {
    display: none;
  }

  .timings {
    align-items: center;
    right: 1rem;
    top: 1rem;
    padding: 0.4rem 1rem;
  }

  .timings p {
    font-size: 0.5rem;
  }
}

@media (max-width: 479px) {
  .main-title {
    font-size: 20px;
  }

  .sub-text {
    font-size: 12.5px;
  }

  .play-button {
    width: 42px;
    height: 42px;
  }

  .play-button::after {
    border-left: 9px solid #2294ed;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
  }

  .side-bar {
display: none;
  }

}

@media screen and (max-width: 1024px) {
  .social-icons-footer {
    gap: 0.5rem;
  }
}

@media screen and (max-width: 768px) {
  .social-icons-footer {
    flex-wrap: wrap;
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
    padding-top: 1rem;
    gap: 0.8rem;
  }

  .social-icons-footer a {
    font-size: 1.4rem; 
  }
}

@media screen and (max-width: 480px) {
  .social-icons-footer {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding: 1rem 0;
    gap: 1rem;
  }

  .social-icons-footer a {
    font-size: 1.6rem; 
  }
}

@media screen and (max-width: 768px) {
  .PSPA-video-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .expert-text, .expert-video {
    flex: 1 1 100%;
    text-align: center;
  }

  .main-title {
    font-size: 24px;
  }

  .sub-text {
    font-size: 14px;
  }

  .video-wrapper {
    border-radius: 10px;
    aspect-ratio: 16 / 9;
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .mini-title {
    font-size: 13px;
  }

  .main-title {
    font-size: 20px;
    line-height: 1.3;
  }

  .sub-text {
    font-size: 13px;
  }

  .play-button {
    width: 45px;
    height: 45px;
  }

  .play-button::after {
    border-left: 10px solid #2294ed;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
  }

  .video-wrapper {
    border-radius: 8px;
  }
}

@media screen and (min-width: 1200px) {
  .PSPA-video-container {
    gap: 40px;
  }

  .main-title {
    font-size: 36px;
  }

  .sub-text {
    font-size: 16px;
  }

  .play-button {
    width: 65px;
    height: 65px;
  }

  .play-button::after {
    border-left: 16px solid #2294ed;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
  }
}

@media (max-width: 400px) {
  .banner .side-bar {
    display: none;
  }
}

@media (max-width: 360px) {
  .banner .side-bar {
    display: none;
  }
}

@media (max-width: 320px) {
  .banner .side-bar {
    display: none;
  }
}

@media (max-width: 1024px) {
  .banner .content h1 {
    font-size: 2.5rem;
  }

  .banner .content p {
    font-size: 1.3rem;
  }
      .banner .content .cssbuttons-io-button-banner{
  margin-left: 80%;
}
}

@media (max-width: 768px) {
  .banner .content h1 {
    font-size: 2rem;
  }

  .banner .content p {
    font-size: 1.1rem;
  }
      .banner .content .cssbuttons-io-button-banner{
  margin-left: 80%;
}
}

@media (max-width: 480px) {
  .banner .content h1 {
    font-size: 1.6rem;
    text-align: center;
  }

  .banner .content p {
    font-size: 1rem;
    text-align: center;
  }
  .banner .content .cssbuttons-io-button-banner{
  margin-left: 50%;
}
}

@media (max-width: 360px) {
  .banner .content h1 {
    font-size: 1.4rem;
  }

  .banner .content p {
    font-size: 0.95rem;
  }
      .banner .content .cssbuttons-io-button-banner{
  margin-left: 80%;
}
}

@media (max-width: 320px) {
  .banner .content h1 {
    font-size: 1.2rem;
  }

  .banner .content p {
    font-size: 0.85rem;
  }
      .banner .content .cssbuttons-io-button-banner{
  margin-left: 50%;
}
}

/* CONTACT PAGE STYLES */

.tag {
  padding-top: 2rem;
  text-align: center;
  padding-bottom: 3rem;
}

.heading {
  max-width: 1140px;
  width: 90%;
  margin: 0 auto;
  text-align: center;
  font-size: 1.5rem;
  color: white;
  padding: 1rem;
  margin-top: -1rem;
  background-color: var(--accent-color);
}

@media (min-width: 1920px) {
  .heading {
    font-size: 1.8rem;
    padding: 1.5rem;
  }

  .tag {
    padding-top: 3rem;
  }
}

@media (max-width: 992px) {
  .heading {
    font-size: 1.3rem;
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .heading {
    font-size: 1.2rem;
    padding: 0.8rem;
  }

  .tag {
    padding-top: 2.5rem;
  }
}

@media (max-width: 480px) {
  .heading {
    font-size: 1.1rem;
    padding: 0.7rem;
  }

  .tag {
    padding-top: 2rem;
  }
}

.main-section {
  padding: 50px 20px;
  background: #f5f9fc;
}

.top-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.form-container {
  background: var(--form-bg);
  padding: 30px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.contact-form h3,
.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--primary-text-color);
}

.input-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.input-group {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
}

input,
textarea {
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
  margin-top: 5px;
  background: white;
}

textarea {
  resize: none;
}

.form-cssbuttons-io-button {
  background-color: var(--accent-color);
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  margin-top: 20px;
  cursor: pointer;
  transition: background 0.3s;
}

.form-cssbuttons-io-button:hover {
  background-color: var(--accent-color-dark);
}

/* Contact Info */
.contact-info p {
  margin-bottom: 10px;
  color: var(--primary-text-color);
}

.form-container-info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.form-container-info-box {
  flex: 1 1 calc(50% - 10px);
  background-color: white;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.form-container-info-box:hover {
  transform: translateY(-5px);
  background-color: var(--input-bg);
}

.form-container-info-item {
  display: flex;
  align-items: center;
  color: var(--primary-text-color);
  font-size: 1rem;
}

.form-container-info-item i {
  margin-right: 10px;
  color: var(--accent-color);
}


/* Social Media Icons */
.social-icons-contact {
  display: flex;
  gap: 5px;
  margin-top: 10px;
}

.social-icons-contact a {
  padding: 2px;
  border-radius: 10%;
  transition: background 0.3s;
}

.social-icons-contact a[href*="facebook"]{
  color: #1655a8;
}

/* Facebook */
.social-icons-contact a[href*="facebook"]:hover {
  transform: translateY(-4px);
}

/* Instagram */
.social-icons-contact a[href*="instagram"]{
  color: #e1306c; 
}

/* Instagram */
.social-icons-contact a[href*="instagram"]:hover {
  color: #e1306c; 
  transform: translateY(-3px);
}

/* Twitter (X) */
.social-icons-contact a[href*="x.com"] {
  color: #000000;
}

/* Twitter (X) */
.social-icons-contact a[href*="x.com"]:hover {
  color: #000000;
  transform: translateY(-3px);
}

/* LinkedIn */
.social-icons-contact a[href*="linkedin"] {
  color: #0a66c2;
}

/* LinkedIn */
.social-icons-contact a[href*="linkedin"]:hover {
  color: #0a66c2;
  transform: translateY(-3px);
}

/* YouTube */
.social-icons-contact a[href*="youtube"] {
  color: #ff0000;
}


/* YouTube */
.social-icons-contact a[href*="youtube"]:hover {
  transform: translateY(-3px);
}

.form-container-map {
  padding: 50px;
  border-radius: 16px;
}

.radio-options {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.radio-option {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  background-color: var(--input-bg);
  color: var(--primary-text-color);
  border: 2px solid transparent;
  transition: var(--transition);
  cursor: pointer;
  user-select: none;
}

.radio-option input[type="radio"] {
  display: none;
}

.radio-option:hover {
  background-color: var(--accent-color);
  color: white;
}

.radio-option input[type="radio"]:checked + label,
.radio-option:has(input[type="radio"]:checked) {
  background-color: var(--accent-color-dark);
  color: white;
  border-color: var(--accent-color-dark);
}

.form-container-map-container {
  background: var(--form-bg);
  padding: 30px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  margin-top: 40px;
}

.opening-hours {
  margin-top: 20px;
}

.opening-hours h4 {
  font-size: 1.2rem;
  color: var(--primary-text-color);
  margin-bottom: 10px;
}

.opening-hours p {
  color: var(--secondary-text-color);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.social-icons-contact {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: .6rem;
  padding-top: 1rem;
  opacity: 1;
  pointer-events: auto;
  transition: all 0.4s ease;
  width: 100%;
}

.social-icons-contact a {
  color: #0291ff;
  font-size: 1.6rem;
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease;
}

/* Facebook */
.social-icons-contact a[href*="facebook"]:hover {
  color: #1655a8;
  transform: translateY(-6px);
}

/* Instagram */
.social-icons-contact a[href*="instagram"]:hover {
  color: #e1306c; 
  transform: translateY(-6px);
}

/* Twitter (X) */
.social-icons-contact a[href*="x.com"]:hover {
  color: #000000;
  transform: translateY(-6px);
}

/* LinkedIn */
.social-icons-contact a[href*="linkedin"]:hover {
  color: #0a66c2;
  transform: translateY(-6px);
}

/* YouTube */
.social-icons-contact a[href*="youtube"]:hover {
  color: #ff0000;
  transform: translateY(-6px);
}

.cssbuttons-io-button-contact {
  background: var(--accent-color);
  color: white;
  font-family: inherit;
  margin-top: 1rem;
  padding: 0.35em;
  padding-left: 1.2em;
  font-size: 15px;
  font-weight: 500;
  border-radius: 0.9em;
  border: none;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  box-shadow: inset 0 0 1.6em -0.6em var(--accent-color);
  overflow: hidden;
  position: relative;
  height: 2.8em;
  padding-right: 3.3em;
  cursor: pointer;
}

.cssbuttons-io-button-contact .icon {
  background: white;
  margin-left: 1em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.2em;
  width: 2.2em;
  border-radius: 0.7em;
  box-shadow: 0.1em 0.1em 0.6em 0.2em var(--accent-color);
  right: 0.3em;
  transition: all 0.3s;
}

.cssbuttons-io-button-contact:hover .icon {
  width: calc(100% - 0.6em);
}

.cssbuttons-io-button-contact .icon svg {
  width: 1.1em;
  transition: transform 0.3s;
  color: var(--accent-color);
}

.cssbuttons-io-button-contact:hover .icon svg {
  transform: translateX(0.1em);
}

.cssbuttons-io-button-contact:active .icon {
  transform: scale(0.95);
}

/* RESPONSIVE STYLES */

@media (max-width: 992px) {
  .heading,
  .top-heading {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.3rem;
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .heading,
  .top-heading {
    width: 95%;
    font-size: 1.2rem;
    padding: 0.8rem;
  }
}

@media (max-width: 480px) {
  .heading,
  .top-heading {
    width: 100%;
    font-size: 1.1rem;
    padding: 0.7rem;
  }

}

@media (max-width: 1199px) {
  .top-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .form-container,
  .form-container-map-container {
    padding: 25px;
  }

  .form-container-info-box {
    flex: 1 1 100%;
  }

  .input-group {
    min-width: 100%;
  }
}

@media (max-width: 991px) {
  h1 {
    font-size: 2.4rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .main-section {
    padding: 40px 15px;
  }

  .input-row {
    flex-direction: column;
    gap: 15px;
  }

  .radio-options {
    flex-direction: column;
    gap: 12px;
  }

  .radio-option {
    width: 100%;
    text-align: left;
  }

  .form-cssbuttons-io-button,
  .cssbuttons-io-button-contact {
    width: 100%;
    justify-content: center;
  }

  .cssbuttons-io-button-contact {
    padding-left: 1em;
    padding-right: 1em;
  }

  .social-icons,
  .social-icons-contact {
    justify-content: center;
    flex-wrap: wrap;
  }

  .form-container-map {
    padding: 25px;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  p,
  .form-container-info-item {
    font-size: 0.95rem;
  }

  .form-container,
  .form-container-map-container {
    padding: 20px;
  }

  .cssbuttons-io-button-contact {
    font-size: 14px;
    padding-right: 2.8em;
  }

  .cssbuttons-io-button-contact .icon {
    right: 0.2em;
    width: 2em;
    height: 2em;
  }

  .social-icons-contact {
    gap: 0.6rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.6rem;
  }

  .heading {
    font-size: 1rem;
    padding: 0.8rem;
  }

  .form-container,
  .form-container-map-container {
    padding: 15px;
  }

  .form-cssbuttons-io-button,
  .cssbuttons-io-button-contact {
    font-size: 13px;
    padding: 10px;
  }

  .cssbuttons-io-button-contact .icon {
    display: none;
  }

  .social-icons a {
    padding: 8px;
    font-size: 1.2rem;
  }

  .form-container-info-grid {
    flex-direction: column;
  }
}

/* GOVERNING BODIES PAGE STYLES */

.examples-section-chairman {
  padding: 60px var(--padding-inline-section);
}

.container-chairman {
  display: flex;
  gap: 1.5rem; 
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.examples-card-chairman {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1 / 1; 
  border-radius: 16px;
  overflow: hidden;
  background-size: cover;
  background-position: top center; 
  background-repeat: no-repeat;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
  border: 3px solid var(--accent-color);
}

.examples-card-chairman:hover {
  transform: scale(1.02);
}

.chairman-info {
  flex: 1;
  min-width: 280px;
}

.card-text-chairman {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent-color);
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.chairman-info h2 {
  font-size: 2rem;
  color: var(--primary-text-color);
  margin-bottom: 1rem;
}

.chairman-info p {
  color: var(--secondary-text-color);
  font-size: 1rem;
  line-height: 1.8;
}

.examples-section {
  padding: 40px var(--padding-inline-section);
  margin: 0 auto;
  max-width: 1200px;
}

.swiper {
  padding-bottom: 0; 
}

.swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0; 
  margin: 0; 
}

.examples-card {
  position: relative;
  height: 200px;
  width: 200px;
  border-radius: 50%;
  overflow: hidden;
  background-size: 100%;
  background-position: top center;
  background-repeat: no-repeat;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border: 2px solid var(--accent-color);
  background-color: #fff;
}

.examples-card:hover {
  transform: translateY(2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.member-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-text-color);
  margin-top: 0.5rem;
  text-align: center;
}

.member-title {
  font-size: 0.85rem;
  color: #888;
  text-align: center;
  font-weight: 400;
}

.swiper-slide:hover .member-name {
  color: var(--accent-color);
}

.swiper-slide:hover .member-title {
  color: var(--primary-text-color);
}

.custom-swiper-pagination {
  margin-top: 3rem;
  text-align: center;
}

.custom-swiper-pagination .swiper-pagination-bullet {
  background-color: var(--accent-color);
  opacity: 0.4;
  transition: 0.3s;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  border-radius: 50%;
}

.custom-swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.2);
}

.custom-swiper-pagination .swiper-pagination-bullet:hover {
  opacity: 0.8;
  transform: scale(1.1);
  cursor: pointer;
}

@media (max-width: 576px) {
  .custom-swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 3px;
  }
}

@media (max-width: 576px) {
  .examples-card-chairman {
    width: 150px;
    height: 150px;
    max-width: none;
    margin: 0 auto;
    border-radius: 12px;
    background-position: top center;
    background-size: 110%;
  }

  .container-chairman {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .chairman-info {
    padding-top: 1rem;
  }

  .chairman-info h2 {
    font-size: 1.3rem;
  }

  .chairman-info p {
    font-size: 0.9rem;
  }
}


@media (max-width: 576px) {

  .heading,
  .top-heading {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.2rem;
    padding: 1rem;
  }
  .examples-card {
    width: 90%;
    height: auto;
    max-width: 90%;
    border-radius: 12px;
  }

  .examples-section {
    padding: 20px var(--padding-inline-section);
  }

  .swiper {
    padding: 5px 10px;
  }

  .examples-card {
    width: 150px;
    height: 150px;
  }

  .member-name {
    font-size: 0.9rem;
  }

  .member-title {
    font-size: 0.75rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2,
  h3 {
    font-size: 1.2rem;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none; 
  }
}

@media (min-width: 577px) and (max-width: 992px) {

  .heading,
  .top-heading {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.3rem;
  }

  .examples-card-chairman {
    max-width: 250px;
    height: 280px;
  }

  .examples-card {
    width: 180px;
    height: 180px;
  }

  .member-name {
    font-size: 1rem;
  }

  .member-title {
    font-size: 0.8rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  .container-chairman {
    justify-content: center;
    gap: 1rem;
  }
}

@media (min-width: 993px) {
  .heading,
  .top-heading {
    font-size: 1.5rem;
  }

  .examples-card {
    width: 200px;
    height: 200px;
  }

  .examples-card-chairman {
    max-width: 300px;
    height: 300px;
  }

  .container-chairman {
    gap: 1.5rem;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: block;
  }
}

/* CORE TEAM PAGE STYLES */

.examples-section-ceo {
  padding: 60px var(--padding-inline-section);
}

.container-ceo {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem; 
}

.examples-card-ceo {
  width: 100%;
  max-width: 380px;
  height: 440px;
  border-radius: 16px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
  border: 3px solid var(--accent-color);
}

.ceo-info {
  flex: 1;
  min-width: 280px;
  padding: 1rem;
}

.ceo-info h2 {
  font-size: 1.1rem;
  color: var(--primary-text-color);
  margin-bottom: 0.5rem;
}

.card-text-ceo {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent-color);
  letter-spacing: 1px;
  margin-bottom: 0.7rem;
}

.ceo-info p {
  background-color: #f9f9f9;
  border-left: 4px solid var(--accent-color);
  padding: 0.8rem 1rem;
  margin-top: 1.2rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--secondary-text-color);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  max-height: 300px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color:  #f0f0f0;
}

.ceo-info p::-webkit-scrollbar {
  width: 6px;
}
.ceo-info p::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 10px;
}
.ceo-info p::-webkit-scrollbar-thumb {
  background: var(--accent-color);
  border-radius: 10px;
}


@media (max-width: 768px) {

  .card-text-ceo {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .examples-card-ceo {
    max-width: 100%;
    width: 90%;
    height: auto;
    border-radius: 12px;
  }

  .ceo-info {
    padding: 0.6rem;
  }

  .ceo-info h2 {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
  }

  .ceo-info p {
    font-size: 0.68rem;
    line-height: 1.4;
    padding: 0.5rem 0.7rem;
    max-height: 200px;
  }

  .card-text-ceo {
    font-size: 0.65rem;
    text-align: center;
  }
}

@media (min-width: 577px) and (max-width: 992px) {
  .examples-card-ceo {
    max-width: 320px;
    height: 380px;
  }

  .ceo-info h2 {
    font-size: 1rem;
  }

  .ceo-info p {
    font-size: 0.7rem;
    max-height: 260px;
    padding: 0.6rem 0.8rem;
  }

  .card-text-ceo {
    font-size: 0.7rem;
  }
}

@media (min-width: 993px) {
  .examples-card-ceo {
    max-width: 390px;
    height: 450px;
  }

  .ceo-info h2 {
    font-size: 1.1rem;
  }

  .ceo-info p {
    font-size: 0.72rem;
    max-height: 300px;
  }

  .card-text-ceo {
    font-size: 0.75rem;
  }
}

/* MEDIA PAGE STYLES */


.shorts-section {
    position: relative;
    padding: 20px 20px;
    text-align: center;
    max-width: 1200px;
    margin: auto;
}

.shorts-header {
  padding-top: 5rem;
  margin-bottom: 2rem;
}


.shorts-slider {
    display: flex;
    gap: 20px;
    overflow-x: hidden; 
    scroll-behavior: smooth;
    padding: 10px 0;
    scroll-snap-type: x mandatory;
    justify-content: flex-start;
}


.short-card {
    flex: 0 0 280px;
    height: 500px;
    border-radius: 14px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}
.short-card:hover {
    transform: scale(1.03);
}
.short-card iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Slider Arrows */
.arrow-sides {
    position: absolute;
    top: 58%;
    transform: translateY(-50%);
    font-size: 1.5rem; 
    color: #fff;
    cursor: pointer;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    padding: 6px 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.25);
    user-select: none;
    transition: background 0.3s, transform 0.2s;
    z-index: 10;
}
.arrow-sides:hover {
    background: rgba(0,0,0,0.8);
    transform: translateY(-50%) scale(1.1);
}
.arrow-sides.left {
    left: 15px;
}
.arrow-sides.right {
    right: 15px;
}


.dots-container {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}
.dot {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
    margin-bottom: 50px;
}
.dot.active {
    background: #0077b6;
}


@media (max-width: 992px) {
    .short-card { flex: 0 0 240px; height: 420px; }
}
@media (max-width: 768px) {
    .short-card { flex: 0 0 200px; height: 360px; }
    .arrow-sides { font-size: 1.2rem; padding: 6px 8px; }
}
@media (max-width: 480px) {
    .short-card { flex: 0 0 100%; height: 320px; }
    .arrow-sides { display: none; }
}

.shorts-slider.dragging {
    scroll-behavior: auto;
    cursor: grabbing;
}


.mini-title-HEADING {
  color: var(--accent-color);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
}


.main-title-HEADING {
  font-size: 30px;
  font-weight: 800;
  color: var(--primary-text-color);
  line-height: 1.2;
  margin-bottom: 15px;
}

.main-title-HEADING .highlight {
  color: var(--accent-color);
}


.sub-text-HEADING {
  color: var(--secondary-text-color);
  margin: 15px 0;
  font-size: 15px;
  line-height: 1.7rem;
}
.expert-text-HEADING {
  text-align: center;
  margin-bottom: 2rem;
    padding: 0 3rem; 
}

.main-title-HEADING {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-text-color);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.highlight-HEADING {
  color: var(--accent-color);
}

.sub-text-HEADING {
  font-size: 1rem;
  color: var(--secondary-text-color);
}

.expert-video {
  flex: 1 1 400px;
  width: 100%;
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  background-color: #000; 
}

.pspa-video-thumbnail,
#pspa-video-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.6s ease;
}

.pspa-video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pspa-video-thumbnail.hidden {
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

#pspa-video-player {
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

#pspa-video-player.show {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

/* Play button */
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: transform 0.3s ease;
  z-index: 3;
}

.play-button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-left: 14px solid #2294ed;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}


.pspa-video-thumbnail-2,
#pspa-video-player-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.6s ease;
}

.pspa-video-thumbnail-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.pspa-video-thumbnail-2.hidden {
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}


#pspa-video-player-2 {
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

#pspa-video-player-2.show {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}


.pspa-video-thumbnail-3,
#pspa-video-player-3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.6s ease;
}

.pspa-video-thumbnail-3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.pspa-video-thumbnail-3.hidden {
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}


#pspa-video-player-3 {
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

#pspa-video-player-3.show {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.pspa-video-thumbnail-4,
#pspa-video-player-4 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.6s ease;
}

.pspa-video-thumbnail-4 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.pspa-video-thumbnail-4.hidden {
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}


#pspa-video-player-4 {
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

#pspa-video-player-4.show {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.pspa-video-thumbnail-5,
#pspa-video-player-5 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.6s ease;
}

.pspa-video-thumbnail-5 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pspa-video-thumbnail-5.hidden {
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

#pspa-video-player-5 {
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

#pspa-video-player-5.show {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.pspa-video-thumbnail-6,
#pspa-video-player-6 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.6s ease;
}

.pspa-video-thumbnail-6 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pspa-video-thumbnail-6.hidden {
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

#pspa-video-player-6 {
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

#pspa-video-player-6.show {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.pspa-video-thumbnail-7,
#pspa-video-player-7 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.6s ease;
}

.pspa-video-thumbnail-7 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pspa-video-thumbnail-7.hidden {
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

#pspa-video-player-7 {
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

#pspa-video-player-7.show {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }

  h2, h3 {
    font-size: 1.3rem;
  }

  p {
    font-size: 1.2rem;
    line-height: 1.6rem;
  }

  .expert-video {
    flex: 1 1 100%;
  }

  .video-wrapper {
  aspect-ratio: auto;
  height: 300px;
  width: 500px;
  max-height: 300px;
  margin-inline: auto;
}

  .play-button {
    width: 50px;
    height: 50px;
  }

  .play-button::after {
    border-left: 12px solid #2294ed;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
  }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
  }

  h2, h3 {
    font-size: 1.1rem;
  }

  p {
    font-size: 1rem;
    line-height: 1.4rem;
  }

  .video-wrapper {
  aspect-ratio: auto;
  height: 200px;
  max-height: 200px;
  margin-inline: auto;
}


  .play-button {
    width: 40px;
    height: 40px;
  }

  .play-button::after {
    border-left: 10px solid #2294ed;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
  }
}

.core-section {
  padding: 4rem var(--padding-inline-section);
}

.core-container {
  max-width: 1000px;
  margin: 0 auto;
}

.core-flex-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 4rem;
}

.core-features {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  padding: 0 var(--padding-inline-section);
}

.core-feature-item {
  flex: 1 1 45%;
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(47, 169, 250, 0.205);
  text-align: center;
  transition: transform 0.3s ease;
}

.core-feature-item:hover {
  transform: translateY(-5px);
}

.core-feature-item i {
  color: #2294ed;
  margin-bottom: 15px;
}


.core-feature-item h3 {
  font-size: 1.2rem;
  color: var(--primary-text-color);
  font-weight: 700;
  font-family: "Lato", sans-serif;
  margin-bottom: 0.5rem;
}

.core-feature-item p {
  font-size: 1rem;
  font-family: "Roboto", sans-serif;
  color: var(--secondary-text-color);
  line-height: 1.8rem;
}


@media (max-width: 768px) {
  .core-flex-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .core-feature-item {
    flex: 1 1 100%;
    padding: 1.5rem;
  }

  .core-feature-item img {
    width: 40px;
    height: 40px;
  }

  .core-feature-item h3 {
    font-size: 1.3rem;
  }

  .core-feature-item p {
    font-size: 1.2rem;
    line-height: 1.6rem;
  }
}

@media (max-width: 480px) {

    .video-wrapper {
    width: 90%;
    height: auto;
    max-height: 200px;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
  }
  .core-feature-item {
    padding: 1rem;
  }

  .core-feature-item img {
    width: 35px;
    height: 35px;
  }

  .core-feature-item h3 {
    font-size: 1.1rem;
  }

  .core-feature-item p {
    font-size: 1rem;
    line-height: 1.4rem;
  }
}

@media (max-width: 379px) {
  h1 {
    font-size: 1.5rem;
  }

  h2, h3 {
    font-size: 1rem;
  }

  p {
    font-size: 0.9rem;
    line-height: 1.3rem;
  }

   .video-wrapper {
    width: 95%;
    height: auto;
    max-height: 180px;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
  }

  .play-button {
    width: 35px;
    height: 35px;
  }

  .play-button::after {
    border-left: 9px solid #2294ed;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
  }

  .core-feature-item {
    padding: 0.8rem;
  }

  .core-feature-item img {
    width: 30px;
    height: 30px;
  }

  .core-feature-item h3 {
    font-size: 1rem;
  }

  .core-feature-item p {
    font-size: 0.9rem;
    line-height: 1.3rem;
  }
}

@media (min-width: 1024px) {
  .video-wrapper {
    width: 80%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
  }

  .play-button {
    width: 70px;
    height: 70px;
  }

  .play-button::after {
    border-left: 16px solid #2294ed;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
  }
}

@media (max-width: 1023px) and (min-width: 768px) {
  .video-wrapper {
    width: 90%;
    max-width: 700px;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
  }

  .play-button {
    width: 60px;
    height: 60px;
  }

  .play-button::after {
    border-left: 14px solid #2294ed;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
  }
}

@media (max-width: 480px) {
  .mini-title {
    font-size: 13px;
    text-align: center;
  }

  .main-title {
    font-size: 20px;
    text-align: center;
  }

  .sub-text {
    font-size: 13px;
    text-align: center;
  }

  .expert-video-section {
    padding: 40px 15px;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .mini-title {
    font-size: 14px;
    text-align: center;
  }

  .main-title {
    font-size: 24px;
    text-align: center;
  }

  .sub-text {
    font-size: 14px;
    text-align: center;
  }

  .expert-video-section {
    padding: 50px 20px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .mini-title {
    font-size: 15px;
  }

  .main-title {
    font-size: 28px;
  }

  .sub-text {
    font-size: 14px;
  }

  .expert-video-section {
    padding: 60px 30px;
  }
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .mini-title {
    font-size: 16px;
  }

  .main-title {
    font-size: 32px;
  }

  .sub-text {
    font-size: 16px;
  }

  .expert-video-section {
    padding: 70px 50px;
  }
}

@media (min-width: 1280px) and (max-width: 1440px) {
  .mini-title {
    font-size: 17px;
  }

  .main-title {
    font-size: 34px;
  }

  .sub-text {
    font-size: 17px;
  }

  .expert-video-section {
    padding: 80px 60px;
  }
}

@media (min-width: 1000px) and (max-width: 1100px) {
  .expert-text,
  .core-container,
  .core-flex-wrapper,
  .news-inner-container {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    display: block;
    width: 90%; 
  }
}

@media (min-width: 1000px) and (max-width: 1100px) {
  .core-flex-wrapper {
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
  }

  .core-feature-item {
    flex: 1 1 100%;
    margin: auto;
  }
}

.custom-video-section {
  padding: 20px 80px;
  background-color: #fff;
  text-align: center;
  font-family: 'Helvetica Neue', sans-serif;
}

.custom-subtitle {
    padding-top: 3rem;
  font-size: 0.75rem;
  color: #999;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.custom-video-content .mini-title {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 2.5rem;
}

.bold-text {
  font-weight: 800;
  color: #000;
}

.light-text {
  font-weight: 300;
  color: #999;
}

.custom-video-wrapper {
  position: relative;
  display: inline-block;
  max-width: 750px;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

#youtubeVideoPlayer {
  width: 100%;
  height: 420px;
}

.floating-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #1f6eb6;
  color: white;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  font-size: 0.6rem;
  font-weight: bold;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(-15deg);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.floating-badge .badge-text {
  font-size: 0.55rem;
  transform: rotate(15deg);
  line-height: 1.2;
  padding: 6px;
}

.badge-arrow {
  font-size: 1.2rem;
  margin-top: 4px;
}

@media (min-width: 1920px) {
  .sub-text-HEADING {
    font-size: 18px;
    padding: 0 27rem;
  }
}

@media (min-width: 1455px) and (max-width: 1919px) {
  .sub-text-HEADING {
    font-size: 18px;
    padding: 0 16rem;
  }
}

@media (max-width: 1024px) {
  .sub-text-HEADING {
    font-size: 16px;
    padding: 0 30px;
  }
}

@media (max-width: 767px) {
  .sub-text-HEADING {
    font-size: 15px;
    padding: 0 15px;

  }
}

/* CAREER PAGE STYLES */

.career-main-section{
     padding-bottom: 5rem;
     background-color: #f8fbff;
}

.career-icon {
  text-align: center;
  margin-top: 5rem;
}

.career-icon img {
  width: 18rem; 
  height: auto;
  display: inline-block;
}

.career-message {
  text-align: center;
  font-size: 1.1rem;
  color: var(--primary-text-color);
  margin-top: 15px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .career-icon img {
    width: 10rem;
  }

  .career-message {
    font-size: 1rem;
    padding: 0 1rem;
  }
}
.job-section {
    max-width: 1200px;
    margin: auto;
    padding: 40px 15px;
}

.job-header h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-text-color);
}
.job-header p {
    font-size: 15px;
    color: #555;
}

.job-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.job-card {
    background: linear-gradient(180deg, #ffffff, #fafafa);
    margin-top: 10px;
    padding: 22px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    position: relative;
}
.job-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.job-type {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    background: #f39b0f;
    padding: 5px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
}
.job-type i {
    margin-right: 6px;
}

.job-title {
    font-size: 19px;
    font-weight: 700;
    color: #222;
    margin-bottom: 6px;
}

.job-meta {
    font-size: 14px;
    color: #555;
    margin-bottom: 18px;
}


.view-qualification-btn{
    position: absolute;
    top: 22px;
    right: 22px;
    background: var(--accent-color);
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-qualification-btn:hover {
    background: var(--accent-color-dark);
    transform: translateY(-2px);
}




















/* APPLY BUTTON */
.apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent-color);
    color: #fff;
    padding: 9px 18px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.apply-btn:hover {
    background: var(--accent-color-dark);
    transform: translateX(4px);
}

.apply-btn.disabled {
    background: #ccc;
    cursor: not-allowed;
}

@media (max-width: 900px) {
    .job-list {
        grid-template-columns: 1fr;
    }
}

/* CAREER PAGE NEW SECTION STYLING */

.track-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 2rem 2rem;
}

.track-left {
    max-width: 550px;
    padding-right: 2rem;
    flex: 1;
}

.track-left h2 {
    color: #183b56;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.track-left h2 span {
    color: #183b56;
    font-weight: 700;
    display: block;
    margin-top: 0.5rem;
    font-size: 1.25rem;
}

.track-left p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 2rem;
}

label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.3rem;
}

input[type="text"] {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.search-btn {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-btn i {
    font-size: 1.1rem;
}

.track-right {
    flex: 1;
    max-width: 600px;
}

.track-right img {
    max-width:70%;
    height: auto;
}

.career-points {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px;
}

.career-points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.6;
    position: relative;
    padding-left: 0;
}

.career-points li:hover {
    color: var(--accent-color-dark);
}

.career-points li::before {
    content: "✔";
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 8px;
}


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

    .track-left {
        padding-right: 0;
    }
}

.custom-button {
  background: var(--accent-color);
  color: white;
  font-family: inherit;
  font-size: clamp(0.95rem, 1vw, 1.1rem); /* Smaller font */
  font-weight: 500;
  border-radius: 0.7em;
  border: none;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 1.6em -0.6em var(--accent-color);
  overflow: hidden;
  position: relative;
  height: clamp(2.6em, 5vw, 3em); /* Shorter height */
  padding: 0.6em 2.5em 0.6em 1.5em; /* Less padding */
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  white-space: nowrap;
}

.custom-button .button-icon {
  height: clamp(1.4em, 2.8vw, 1.6em);
  width: clamp(1.4em, 2.8vw, 1.6em);
  background: white;
  margin-left: 2em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5em;
  box-shadow: 0.1em 0.1em 0.4em 0.1em var(--accent-color);
  right: 0.4em;
  transition: all 0.3s ease;
}

.custom-button .button-icon svg {
  width: clamp(0.9em, 1.2vw, 1.1em);
  transition: transform 0.3s ease;
  color: var(--accent-color);
}

.custom-button:hover .button-icon {
  width: calc(100% - 0.6em);
}

.custom-button:hover .button-icon svg {
  transform: translateX(0.12em);
}

.custom-button:active .button-icon {
  transform: scale(0.95);
}

.custom-button .button-text {
  padding-right: 1em;
}

.button-group {
  display: flex;
  gap: 0.3rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

/* Stack vertically on small screens */
@media (max-width: 480px) {
  .button-group {
    flex-direction: column;
    align-items: stretch;
  }

  .button-group .custom-button {
    width: 100%;
    justify-content: center;
  }
}

/* 🟢 Extra Extra Small Devices (Phones ≤ 300px) */
@media (max-width: 300px) {
  .track-left h2 {
    font-size: 1.3rem;
  }

  .track-left h2 span {
    font-size: 1rem;
  }

  .track-left p,
  label,
  input[type="text"] {
    font-size: 0.8rem;
  }

  .custom-button {
    font-size: 0.8rem;
    height: 2.4em;
    padding: 0.5em 1.2em 0.5em 1em;
    flex-direction: row;
    width: 100%;
    justify-content: center;
  }

  .custom-button .button-icon {
    height: 1.1em;
    width: 1.1em;
    margin-left: 0.3em;
    position: static;
  }

  .custom-button .button-icon svg {
    width: 0.85em;
  }

  .button-group {
    flex-direction: column;
    gap: 0.5rem;
  }

  .track-right img {
    max-width: 90%;
  }
}


/* 🟡 Small Devices (Phones: 301px – 480px) */
@media (max-width: 480px) {
  .button-group {
    flex-direction: column;
    align-items: stretch;
  }

  .custom-button {
    width: 100%;
    justify-content: center;
  }

  .track-left h2 {
    font-size: 1.5rem;
  }

  .track-left p {
    font-size: 0.9rem;
  }
}


/* 🟠 Medium Devices (Tablets: 481px – 768px) */
@media (max-width: 768px) {
  .track-section {
    flex-direction: column;
    text-align: center;
  }

  .track-left {
    padding-right: 0;
  }

  .track-right img {
    max-width: 80%;
  }

  .custom-button {
    font-size: 1rem;
    height: 3.2em;
  }

  .custom-button .button-icon {
    right: 0.3em;
  }
}

@media (max-width: 1024px) {
  .track-left {
    max-width: 100%;
  }

  .track-right img {
    max-width: 75%;
  }

}


@media (min-width: 1025px) and (max-width: 1600px) {
  .track-right img {
    max-width: 65%;
  }

}

@media (min-width: 1601px) {
  .track-left p {
    font-size: 1.2rem;
  }

  .track-right img {
    max-width: 60%;
  }

}

/* DIRECTORATE AND WINGS STYLES */

.directorate-wings-main-section{
      background: #e9f1f7;
      padding-bottom: 2rem;
}

.departments-section {

  max-width: 1100px;
  margin: 3rem auto; 
  padding: 0 1rem;
}

.departments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.department-card {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: all 0.4s ease;
}

.default-view,
.hover-view {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
  text-align: center;
}

.default-view {
  z-index: 2;
}

.default-view i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.default-view h3 {
  font-size: 1rem;
  color: var(--primary-text-color);
}

.hover-view {
  opacity: 0;
  z-index: 1;
  transform: translateY(20px);
}

.hover-view h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
  color: var(--primary-text-color);
}

.hover-view p {
  font-size: 0.85rem;
  color: var(--secondary-text-color);
  margin-bottom: 1rem;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--input-bg);
  text-decoration: none;
  background: var(--accent-color);
  padding: 5px 12px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.read-more i {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.read-more:hover i {
  transform: translateX(4px);
}

.blur-icon {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-size: 3rem;
  color: #124c79;
  opacity: 0.1;
  pointer-events: none;
}

.department-card:hover .default-view {
  opacity: 0;
  transform: translateY(-20px);
}

.department-card:hover .hover-view {
  opacity: 1;
  transform: translateY(0);
  z-index: 3;
}

.department-card.full-width {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* DIRECTORATE AND WINGS - DEPARTMENTS STYLES */

.department-sidebar {
  width: 260px;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  color: #183b56;
  height: 100%;
  flex-shrink: 0;
}

.department-sidebar h3 {
  font-size: 1rem;
  color: #183b56;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.department-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.department-sidebar ul li {
  margin-bottom: 0.8rem;
}

.department-sidebar ul li a {
  display: block;
  padding: 0.6rem 1rem;
  color: #183b56;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.department-sidebar ul li a:hover,
.department-sidebar ul li a.active {
  background-color: #2294ed;
  color: #fff;
}

/* Main layout */
.department-layout {
  display: flex;
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 1.5rem;
  gap: 2rem;
}

.department-content {
  max-height: 90vh;
  padding-right: 1rem;
}

.department-content::-webkit-scrollbar {
  width: 10px;
}

.department-content::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 10px;
}

.department-content::-webkit-scrollbar-thumb {
  background-color: var(--secondary-text-color);
  border-radius: 10px;
  border: 2px solid #f0f0f0;
}

.department-content {
  scrollbar-width: thin;
  scrollbar-color: #a5a7a8 #f0f0f0;
}

.department-content h1 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #183b56;
}

.department-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #577592;
}

.department-content h3 {
  font-size: 1.1rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  color: #2294ed;
}

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

  .department-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #ddd;
  }

  .department-content {
    padding: 1.5rem;
    max-height: 80vh;
    overflow-y: auto;
    scroll-behavior: smooth;
  }
}

@media (max-width: 768px) {
  .department-content {
    max-height: 80vh;
    overflow-y: auto;
    scroll-behavior: smooth;
  }
}

.department-content {
  max-height: 90vh;
  padding-right: 1rem;
}

.doctor-section {
  text-align: left;
}

.doctor-section h2 {
  font-size: 1.8rem;
  margin-bottom: 3rem;
  color: #183b56;
}

.doctor-section p {
  font-size: 1em;
  color: #577592;
  margin: 10px 0 30px;
}

.doctor-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  padding-bottom: 5rem;

}

.doctor-card {
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  width: 250px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;

}

.doctor-card:hover {
  transform: translateY(-10px);
}

.zone-block {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  font-size: 1em;
  font-weight: bold;
  color: white;
  text-transform: uppercase;
}

.zone-block.white {
  background-color: var(--accent-color-dark);
  color: white;
}

.zone-block.blue {
  background-color: var(--accent-color);
  color: #ffffff;
}

.zone-block.grey {
  background-color: #084370;
  color: #ffffff;
}

.doctor-info {
  padding: 20px 20px 20px 20px;
  border-radius: 0 0 20px 20px;
  text-align: left;
  position: relative;
}

.doctor-info h3 {
  font-size: 1.1em;
  margin-bottom: 5px;
  font-weight: bolder;
}

.doctor-info p {
  color: #666;
  margin-bottom: 10px;
}

.doctor-info p a{
  color: #666;
  text-decoration: none;
}


.doctor-info.blue {
  background-color: white;
}

.doctor-info.white {
  background-color: white;
  color: #183b56;
}

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

  .doctor-card {
    width: 90%;
  }
}

.department-main {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.department-wrapper {
  display: flex;
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 1.5rem;
  gap: 2rem;
}

.department-details {
  max-height: 80vh; 
  overflow-y: auto;
  padding-right: 1rem; 
  scroll-behavior: smooth;
}

.department-details::-webkit-scrollbar {
  width: 10px;
}

.department-details::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 10px;
}

.department-details::-webkit-scrollbar-thumb {
  background-color: var(--secondary-text-color);
  border-radius: 10px;
  border: 2px solid #f0f0f0;
}

.department-details {
  scrollbar-width: thin;
  scrollbar-color: #a5a7a8 #f0f0f0;
}


.department-details h1 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #183b56;
}

.department-details p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #577592;
}

.department-details h3 {
  font-size: 1.1rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  color: #2294ed;
}

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

  .department-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #ddd;
  }

  .department-details {
    padding: 1.5rem;
  }
}

/* PROJECTS GALLERY PAGE STYLES  */

.project-section {
  max-width: 1100px;
  margin: 5rem auto; 
  padding: 0 1rem;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.project-card {
  position: relative;
  height: 320px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: all 0.4s ease;
}

.default-view,
.hover-view {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
  text-align: center;
}

.default-view {
  z-index: 2;
}

.default-view i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.default-view h3 {
  font-size: 1rem;
  color: var(--primary-text-color);
}

.hover-view {
  opacity: 0;
  z-index: 1;
  transform: translateY(20px);
}

.hover-view h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
  color: var(--primary-text-color);
}

.hover-view p {
  font-size: 1rem;
  color: var(--secondary-text-color);
  margin-bottom: 1rem;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #eee;
  text-decoration: none;
  background: var(--accent-color);
  padding: 5px 12px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.read-more i {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.read-more:hover i {
  transform: translateX(4px);
}

.blur-icon {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-size: 3rem;
  color: #124c79;
  opacity: 0.1;
  pointer-events: none;
}

.project-card:hover .default-view {
  opacity: 0;
  transform: translateY(-20px);
}

.project-card:hover .hover-view {
  opacity: 1;
  transform: translateY(0);
  z-index: 3;
}

.project-card.full-width {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* REVAMPED PLANTS PAGE STYLES  */

.table-section {
  padding: 3rem 1rem;
}

.table-container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  overflow-x: auto;
}

.table-heading {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #183b56;
}

#customSearch {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

/* ---------- Table Responsiveness ---------- */
@media (max-width: 768px) {
  .table-heading {
    font-size: 1.5rem;
  }

  #customSearch {
    font-size: 0.95rem;
    padding: 10px 14px;
  }
}

@media (max-width: 480px) {
  .table-container {
    padding: 1rem;
  }

  .table-heading {
    font-size: 1.3rem;
  }

  #customSearch {
    font-size: 0.9rem;
    padding: 8px 12px;
  }

  p {
    font-size: 1rem;
  }
}

/* map styling */
.map {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 2rem 1rem;
  border-radius: 16px;
}

.map iframe {
  width: 100%;
  height: 70vh; 
  border: 0;
  border-radius: 12px;
}


/* Tablet */
@media (max-width: 768px) {
    .map {
    padding: 1.5rem 5vw;
  }
  .map iframe {
    height: 700px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .map iframe {
    height: 500px;
  }
}

#plantsTable tbody tr:hover {
     cursor: pointer;
 }


/* PROCUREMNT PAGE STYLES */


.main-section-procurement {
  padding: .2rem 9vw;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 58vh;
  background-color: white;
  padding-bottom: 5rem;
}

.white-box {
  width: 100%;
  max-width: 1400px;
  background: white;
  box-shadow: var(--shadow);
  border-radius: 16px;
  padding: 30px 30px;
}

.heading-box .title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-text-color);
  margin-bottom: 20px;
}

.faq-text {
  font-size: 15px;
  max-height: 400px;
  overflow-y: auto;
  padding-right: 10px;
}

.faq-text::-webkit-scrollbar {
  width: 5px;
}

.faq-text::-webkit-scrollbar-thumb {
  background: #666;
  border-radius: 20px;
}

.faq-text li {
  list-style: none;
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

.question-arrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.question-arrow .question {
  font-size: 18px;
  font-weight: 600;
  color: #444;
  transition: var(--transition);
}

.question-arrow i {
  font-size: 18px;
  color: #444;
  transition: transform 0.3s ease, color 0.3s ease;
}

li.showAnswer .question-arrow .arrow {
  transform: rotate(-180deg);
}

li:hover .question-arrow .question,
li:hover .question-arrow .arrow {
  color: var(--primary-text-color);
}

li .line {
  height: 2px;
  width: 100%;
  margin: 10px 0;
  background: #ccc;
}

.faq-text li p {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

li.showAnswer p {
  margin-top: 10px;
}

li p a {
  text-decoration: underline;
  color: var(--accent-color);
}

/* Responsive */
@media (max-width: 768px) {
  .white-box {
    padding: 25px 20px;
  }

.heading-box .title {
    font-size: 28px;
  }

  .question-arrow .question {
    font-size: 16px;
  }

  li p {
    font-size: 15px;
  }
}

@media (max-width: 1024px) {

  .main-section-procurement {
    padding: 1rem 6vw;
  }

  .white-box {
    padding: 25px 20px;
  }

.heading-box .title {
    font-size: 30px;
  }

  .question-arrow .question {
    font-size: 16px;
  }

  .faq-text {
    max-height: 450px;
  }
}

@media (max-width: 768px) {

  .main-section-procurement {
    padding: 1rem 4vw;
  }

  .white-box {
    padding: 20px 15px;
  }

.heading-box .title {
    font-size: 24px;
  }

  .faq-text {
    font-size: 14px;
    max-height: 500px;
  }

  .question-arrow .question {
    font-size: 15px;
  }

  li p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {

  .main-section-procurement {
    padding: 1rem 3vw;
    min-height: auto;
  }

  .white-box {
    padding: 15px 12px;
    border-radius: 10px;
  }

.heading-box .title {
    font-size: 20px;
  }

  .question-arrow {
    flex-direction: column;
    align-items: flex-start;
  }

  .question-arrow .question {
    font-size: 14px;
  }

  .question-arrow i {
    align-self: flex-end;
    margin-top: 5px;
  }

  li p {
    font-size: 13px;
    line-height: 1.4;
  }

  .faq-text {
    padding-right: 5px;
  }

  .faq-text::-webkit-scrollbar {
    width: 4px;
  }
}

/* HELPLINE PAGE STYLES  */


.main-section {
  background-color: #f9f9f9;
  background-size: 40px 40px;
  padding-bottom: 8rem;
}

.helpline-mini-title {
    margin-top: 4rem;
  color: #2294ed;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
}

.helpline-main-title {
  font-size: 30px;
  font-weight: 800;
  color: #183b56;
  line-height: 1.2;
  text-align: center;
}

.helpline-main-title .highlight {
  color: #2294ed;
}

.helpline-sub-text {
  color: #577592;
      margin-top: 1rem;
  font-size: 15px;
  text-align: center;
}

.helpline-section {
  background-color: #f9f9f9;
  padding: 40px 0 100px;
  display: flex;
  justify-content: center;
  position: relative;
}

.helpline-wrapper {
  position: relative;
  width: 70%;
  max-width: 900px;
  text-align: center;
}

.helpline-image-container {
  position: relative;
  z-index: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 0 30px;
}

.helpline-image-container img {
  width: 100%;
  height: auto;
  display: block;
  padding: 30px 0;
  object-fit: cover;
  border-radius: 12px;
}

.helpline-info-boxes {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  justify-content: center;
  z-index: 2;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
  
}


.info-box {
  background-color: white;
  width: 200px;
  height: 220px;
  border-radius: 14px;
  padding: 15px 10px;
  text-align: center;
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  scroll-snap-align: start;
}

.info-top {
  padding-top: 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(0);
  transition: transform 0.4s ease;
  height: 100px;
}

.info-box:hover .info-top {
  transform: translateY(-15px);
}

.info-box p {
  opacity: 0;
  transition: opacity 0.4s ease;
  font-size: 14px;
  color: #555;
  margin-top: 10px;
}

.info-box:hover p {
  opacity: 1;
}

.info-box i {
  font-size: 32px;
  color: #1e88e5;
  margin-bottom: 8px;
}

.info-box h4 {
  font-size: 16px;
  margin: 0;
  color: #222;
  font-weight: 600;
}

.info-box:hover i,
.info-box:hover h4 {
  transform: translateY(-15px);
}

.info-box.blue1 {
  box-shadow: 0 3px 5px rgba(33, 150, 243, 0.3);
}

.info-box.blue2 {
  box-shadow: 0 3px 5px rgba(25, 118, 210, 0.35);
}

.info-box.blue3 {
  box-shadow: 0 3px 5px rgba(30, 136, 229, 0.4);
}

.info-box.blue4 {
  box-shadow: 0 3px 5px rgba(13, 71, 161, 0.45);
}

@media (max-width: 768px) {
  .helpline-wrapper {
    width: 90%;
  }

  .helpline-info-boxes {
    padding-top: 2rem;
    flex-wrap: nowrap;
    overflow-x: scroll;
    bottom: -10rem;
    gap: 15px;
  }

  .info-box {
    min-width: 180px;
    height: 210px;
  }

  .info-top {
    padding-top: 5rem;
    height: 90px;
  }
}

@media (max-width: 480px) {
  
  .info-box {
    min-width: 160px;
    height: 200px;
  }

  .info-box i {
    font-size: 28px;
  }

  .info-box h4 {
    font-size: 14px;
  }

  .info-box p {
    font-size: 13px;
  }

  .info-top {
    padding-top: 4rem;
    height: 80px;
  }
}

@media (min-width: 1920px) {
  .helpline-main-title {
    font-size: 2.2rem;
  }

  .helpline-sub-text {
    padding: 0 25rem;
    font-size: 1.2rem;
  }
.helpline-info-boxes {
  position: absolute;
  bottom: -12rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  justify-content: center;
  z-index: 2;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
}
  .helpline-info-box {
    width: 220px;
    height: 240px;
  }
}

@media (max-width: 1919px) and (min-width: 992px) {
  .helpline-main-title {
    font-size: 2.2rem;
  }

  .helpline-sub-text {
    padding: 0 24rem;
  }
  .helpline-info-boxes {
  position: absolute;
  bottom: -12rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  justify-content: center;
  z-index: 2;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
}

  .helpline-info-box {
    width: 200px;
    height: 220px;
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .helpline-main-title {
    font-size: 2rem;
  }

  .helpline-sub-text {
    padding: 0 3rem;
    font-size: 1.1rem;
  }

  .helpline-wrapper {
    width: 95%;
  }

  .helpline-info-boxes {
    flex-wrap: nowrap;
    overflow-x: auto;
    bottom: -9rem;
    gap: 12px;
    padding-left: 10px;
    padding-right: 10px;
    scroll-snap-type: x mandatory;
  }

  .helpline-info-boxes::-webkit-scrollbar {
    height: 6px;
  }

  .helpline-info-boxes::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
  }

  .info-box {
    min-width: 160px;
    height: 190px;
  }

  .info-top {
    padding-top: 4rem;
    height: 80px;
  }

  .info-box i {
    font-size: 24px;
  }

  .info-box h4 {
    font-size: 13.5px;
  }

  .info-box p {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .helpline-wrapper {
    width: 95%;
    padding: 0 10px;
  }

  .helpline-heading {
    font-size: 20px;
  }

    .helpline-info-boxes {
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: visible;
    bottom: 0;
    gap: 12px;
  }

  .info-box {
    width: 130px;
    min-width: unset;
  }

  .info-box i {
    font-size: 20px;
  }

  .info-box h4 {
    font-size: 13px;
  }

  .info-box p {
    font-size: 9px;
  }

  .info-top {
    padding-top: 5.5rem;
    height: 70px;
  }
}

@media (max-width: 480px) {
  .helpline-info-boxes {
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: visible;
    bottom: 0;
    padding-bottom: 0;
    gap: 10px;
  }

  .info-box {
    width: 120px;
  }

  .info-box i {
    font-size: 18px;
  }

  .info-box h4 {
    font-size: 12px;
  }

  .info-box p {
    font-size: 9px;
  }

  .info-top {
    padding-top: 5.5rem;
    height: 65px;
  }
}

@media (max-width: 360px) {
  .helpline-info-boxes {
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: visible;
    bottom: 0;
    padding-bottom: 0;
    gap: 8px;
  }

  .info-box {
    width: 110px;
  }
  .info-box h4 {
    font-size: 11px;
  }

  .info-box p {
    font-size: 9px;
  }

  .info-top {
    padding-top: 5.5rem;
    height: 60px;
  }
}

.helpline-info-boxes {
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch; 
  scrollbar-width: auto;           
}

.helpline-info-boxes::-webkit-scrollbar {
  height: 8px;
}

.helpline-info-boxes::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.helpline-info-boxes::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 8px;
}

.helpline-info-boxes::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* EVENTS PAGE STYLES   */


.event-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
  padding: 20px 100px;
  gap: 20px;
}

.left-event-container {
  flex: 1 1 55%;
  min-width: 320px;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

.left-event-container video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.card-right {
  flex: 1 1 40%;
  min-width: 300px;
  background: #fff;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.menu-btn {
  text-align: right;
  font-size: 12px;
  letter-spacing: 2px;
  cursor: pointer;
  margin-bottom: 20px;
  color: #2294ed;
  font-weight: bold;
}

.event-details h1 {
  font-size: 1.8rem;
  font-weight: 900;
  margin: 10px 0 20px;
  color: #183b56;
}

.event-details h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2294ed;
  line-height: 1.5rem;
}

.event-details h3 {
  margin-top: 20px;
  font-size: 1rem;
  font-weight: bold;
  color: #183b56;
  display: flex;
  align-items: center;
  gap: 8px;
}

.event-details p {
  font-size: 0.9rem;
  color: #444;
  margin: 5px 0;
  line-height: 1.4rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.event-details a {
  color: #2294ed;
  font-weight: 600;
  text-decoration: none;
}

.event-details a:hover {
  text-decoration: underline;
}

.date,
.venue {
  font-weight: bold;
  color: #111;
}

.card-right::-webkit-scrollbar {
  width: 6px;
}

.card-right::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.card-right::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 10px;
}

.card-right::-webkit-scrollbar-thumb:hover {
  background: #999;
}

@media (min-width: 768px) and (max-width: 992px) {
  .event-container {
    flex-direction: column;
    padding: 50px;
  }
  .left-event-container {
    height: 250px;
    border-radius: 10px;
  }
  .card-right {
    margin-top: 15px;
    padding: 20px 15px;
    border-radius: 10px;
  }
  .event-details h1 {
    font-size: 1.3rem;
  }
  .event-details h2 {
    font-size: 0.95rem;
  }
  .event-details p {
    font-size: 0.8rem;
  }
}

@media (min-width: 992px) and (max-width: 1919px) {
  .event-container {
    padding: 20px 100px;
    gap: 20px;
    flex-direction: row;
  }
  .left-event-container {
    flex: 1 1 55%;
    height: auto;
  }
  .card-right {
    flex: 1 1 40%;
  }
}

@media (min-width: 1099px) {
  .event-container {
    padding: 20px 100px;
    gap: 20px;
    flex-direction: row;
  }
}

@media (min-width: 1100px) {
  .event-container {
    padding: 20px 150px;
    gap: 20px;
    flex-direction: row;
  }
}

@media (min-width: 1200px) {
  .event-container {
    padding: 20px 150px;
    gap: 20px;
    flex-direction: row;
  }
}

@media (min-width: 1300px) {
  .event-container {
    padding: 20px 150px;
    gap: 20px;
    flex-direction: row;
  }
}

@media (min-width: 1400px) {
  .event-container {
    padding: 20px 200px;
    gap: 20px;
    flex-direction: row;
  }
}

@media (min-width: 1500px) {
  .event-container {
    padding: 20px 200px;
    gap: 20px;
    flex-direction: row;
  }
}

@media (min-width: 1700px) {
  .event-container {
    padding: 20px 300px;
    gap: 20px;
    flex-direction: row;
  }
}

@media (min-width: 1800px) {
  .event-container {
    padding: 20px 400px;
    gap: 20px;
    flex-direction: row;
  }
}

@media (min-width: 1920px) {
  .event-container {
    padding: 20px 400px;
    gap: 20px;
    flex-direction: row;
  }
}

@media (max-width: 768px) {
  .event-container {
    flex-direction: column;
    padding: 20px;
  }
  .left-event-container {
    height: 250px;
    border-radius: 10px;
  }
  .card-right {
    margin-top: 15px;
    padding: 20px 15px;
    border-radius: 10px;
  }
  .event-details h1 {
    font-size: 1.3rem;
  }
  .event-details h2 {
    font-size: 0.95rem;
  }
  .event-details p {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .event-container {
    padding: 15px;
  }
  .left-event-container {
    height: 200px;
  }
  .card-right {
    padding: 15px 12px;
  }
  .event-details h1 {
    font-size: 1.1rem;
  }
  .event-details h2 {
    font-size: 0.9rem;
  }
  .event-details h3 {
    font-size: 0.85rem;
  }
  .event-details p {
    font-size: 0.75rem;
  }
}

@media (max-width: 360px) {
  .event-container {
    padding: 10px;
  }
  .left-event-container {
    height: 160px;
  }
  .card-right {
    padding: 12px 10px;
    border-radius: 8px;
  }
  .event-details h1 {
    font-size: 1rem;
    line-height: 1.3rem;
  }
  .event-details h2 {
    font-size: 0.8rem;
    line-height: 1.2rem;
  }
  .event-details h3 {
    font-size: 0.75rem;
    gap: 5px;
  }
  .event-details p {
    font-size: 0.7rem;
    line-height: 1.1rem;
  }
  .event-details a {
    font-size: 0.7rem;
  }
}

@media (max-width: 320px) {
  .left-event-container {
    height: 140px;
  }
  .card-right {
    padding: 10px 8px;
  }
  .event-details h1 {
    font-size: 0.9rem;
  }
  .event-details h2 {
    font-size: 0.75rem;
  }
  .event-details h3 {
    font-size: 0.7rem;
  }
  .event-details p {
    font-size: 0.65rem;
    line-height: 1rem;
  }
}

/* TERM OF REFRENCES PAGE STYLES  */

.main-section-terms-of-refrences{
  padding-bottom: 30rem;
}

/* NEWS PAGE STYLES   */


.mini-title {
  color: var(--accent-color);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
}


.main-title {
  font-size: 30px;
  font-weight: 800;
  color: var(--primary-text-color);
  line-height: 1.2;
  margin-bottom: 15px;
}

.main-title .highlight {
  color: var(--accent-color);
}


.sub-text {
  color: var(--secondary-text-color);
  margin: 15px 0;
  font-size: 15px;
  line-height: 1.7rem;
}

.news-section {
  width: 100%;
  padding: 3rem 7rem 4rem; 
  box-sizing: border-box;
}

.news-section-2 {
  width: 100%;
  padding: 3rem 7rem 6rem; 
  box-sizing: border-box;
}

.news-inner-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.Expert-text {
  text-align: center;
  margin-bottom: 2rem;
}

.main-title-news {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-text-color);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.highlight {
  color: var(--accent-color);
}

.sub-text-news {
  font-size: 1rem;
  color: var(--secondary-text-color);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.news-card img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(34, 148, 237, 0.25);
  transition: transform 0.3s ease;
  display: block;
}

.news-card img:hover {
  transform: scale(1.02);
}

.more-news.hidden {
  display: none;
}


#newsToggleBtn {
  background-color: var(--accent-color);
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#newsToggleBtn:hover {
  background-color: var(--accent-color-dark);
}


.extra-news {
  opacity: 0;
  transform: translateY(20px);
  visibility: hidden;
  height: 0;
  margin: 0;
  overflow: hidden;
  transition: all 0.5s ease;
}

.extra-news.visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  height: auto;
  margin: initial;
}


.extra-news:nth-child(7) {
  transition-delay: 0s;
}

.extra-news:nth-child(8) {
  transition-delay: 0.05s;
}

.extra-news:nth-child(9) {
  transition-delay: 0.1s;
}

.extra-news:nth-child(10) {
  transition-delay: 0.15s;
}

.extra-news:nth-child(11) {
  transition-delay: 0.2s;
}

.extra-news:nth-child(12) {
  transition-delay: 0.25s;
}

.view-more-container {
  text-align: center;
}

.view-more-container.add-margin {
  margin-top: 3rem; 
}


.btn-news-toggle {
  min-width: 180px;
  background: var(--accent-color);
  color: white;
  font-family: inherit;
  padding-left: 1.2em;
  margin: 0 auto; 
  font-size: 15px;
  font-weight: 500;
  border-radius: 0.9em;
  border: none;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center; 
  box-shadow: inset 0 0 1.6em -0.6em var(--accent-color);
  overflow: hidden;
  position: relative;
  height: 2.8em;
  padding-right: 3.3em;
  cursor: pointer;
}


.btn-news-toggle .icon {
  background: white;
  margin-left: 1em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.2em;
  width: 2.2em;
  border-radius: 0.7em;
  box-shadow: 0.1em 0.1em 0.6em 0.2em var(--accent-color);
  right: 0.3em;
  transition: all 0.3s;
}

.btn-news-toggle-2 {
  margin-top: 2rem;  
}


.btn-news-toggle:hover .icon {
  width: calc(100% - 0.6em);
}

.btn-news-toggle .icon svg {
  width: 1.1em;
  transition: transform 0.3s;
  color: var(--accent-color);
}

.btn-news-toggle:hover .icon svg {
  transform: translateX(0.1em);
}

.btn-news-toggle:active .icon {
  transform: scale(0.95);
}


.news-section-2 {
  width: 100%;
  padding: 3rem 7rem 6rem;
  box-sizing: border-box;
  background-color: #eef6ff;
}

.view-more-container-2 {
  text-align: center;
  margin-top: 2rem;
}


.view-more-container-2.add-margin {
  margin-top: 3rem;
}

.extra-news-2 {
  opacity: 0;
  transform: translateY(20px);
  visibility: hidden;
  height: 0;
  margin: 0;
  overflow: hidden;
  transition: all 0.5s ease;
}

.extra-news-2.visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  height: auto;
  margin: initial;
}

.extra-news-2:nth-child(7) {
  transition-delay: 0s;
}
.extra-news-2:nth-child(8) {
  transition-delay: 0.05s;
}
.extra-news-2:nth-child(9) {
  transition-delay: 0.1s;
}

/* Toggle Button Styles */
.btn-news-toggle-2 {
  min-width: 180px;
  background: var(--accent-color);
  color: white;
  font-family: inherit;
  padding: 0.35em;
  padding-left: 1.2em;
  margin: 0 auto;
  font-size: 15px;
  font-weight: 500;
  border-radius: 0.9em;
  border: none;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 1.6em -0.6em var(--accent-color);
  overflow: hidden;
  position: relative;
  height: 2.8em;
  padding-right: 3.3em;
  cursor: pointer;
}

.btn-news-toggle-2 .icon {
  background: white;
  margin-left: 1em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.2em;
  width: 2.2em;
  border-radius: 0.7em;
  box-shadow: 0.1em 0.1em 0.6em 0.2em var(--accent-color);
  right: 0.3em;
  transition: all 0.3s;
}

.btn-news-toggle-2:hover .icon {
  width: calc(100% - 0.6em);
}

.btn-news-toggle-2 .icon svg {
  width: 1.1em;
  transition: transform 0.3s;
  color: var(--accent-color);
}

.btn-news-toggle-2:hover .icon svg {
  transform: translateX(0.1em);
}

.btn-news-toggle-2:active .icon {
  transform: scale(0.95);
}

@media (max-width: 992px) {
  .btn-news-toggle,
  .btn-news-toggle-2 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 768px) {
  .btn-news-toggle,
  .btn-news-toggle-2 {
    margin-top: .2rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .btn-news-toggle,
  .btn-news-toggle-2 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 375px) {
  .main-title,
  .main-title-news {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .sub-text,
  .sub-text-news {
    font-size: 14px;
    line-height: 1.6;
  }

  .news-section,
  .news-section-2 {
    padding: 2rem 1.5rem 3rem;
  }

  .heading,
  .top-heading {
    margin-left: 0;
    width: 100%;
    font-size: 1.1rem;
    padding: 0.6rem;
    text-align: center;
  }

  .tag {
    padding-top: 1.5rem;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-inner-container {
    padding: 0;
  }
}

@media (max-width: 480px) {
  .news-section,
  .news-section-2 {
    padding: 2rem 1rem 3rem;
  }

  .news-inner-container {
    padding: 0;
  }

  .news-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    display: block;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .main-title-news {
    font-size: 1.5rem;
  }

  .sub-text-news {
    font-size: 14px;
    line-height: 1.6;
  }

  .heading,
  .top-heading {
    font-size: 1.2rem;
    padding: 0.7rem;
    margin-left: 0;
    width: 100%;
  }
}

/* REPORTS PAGE STYLES */


.main-section-reports {
  padding: .2rem 9vw;
  min-height: 58vh;
  background-color: white;
  padding-bottom: 5rem;
}

.heading-banner-white {
  max-width: 1340px;
  width: 90%;
  margin: 0 auto;
  text-align: center;
  font-size: 1.5rem;
  color: var(--primary-text-color);
  padding: 1rem;
  margin-top: -1rem;;
  padding-bottom: 2rem;
}

.white-box {
  width: 100%;
  max-width: 1400px;
  background: white;
  box-shadow: var(--shadow);
  border-radius: 16px;
  padding: 3rem 9vw;
  margin-bottom: 3rem;
}

/* REGISTER COMPLAINT PAGE STYLES  */
.complaint-main-section {
    background: #f8f9fa;
    background-size: 40px 40px;
  padding-bottom: 4rem;
}

.complaint-form-section {
  padding: 2rem 10rem;
  text-align: left;
  margin-top: 3rem;
}

.form-heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-text-color);
  margin-bottom: 1.5rem;
}

.form-heading span {
  font-weight: 700;
  color: var(--primary-text-color);
}

.complaint-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group input,
.form-group select {
  padding: 0.6rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.form-group small {
  color: red;
  font-size: 0.75rem;
}

.required {
  color: red;
}

.form-options {
  grid-column: span 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.recaptcha-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-submit {
  grid-column: span 2;
  margin-top: 1.5rem;
  text-align: center;
}

.custom-button {
  background: var(--accent-color);
  color: white;
  font-family: inherit;
  font-size: clamp(0.95rem, 1vw, 1.1rem); /* Smaller font */
  font-weight: 500;
  border-radius: 0.7em;
  border: none;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 1.6em -0.6em var(--accent-color);
  overflow: hidden;
  position: relative;
  height: clamp(2.6em, 5vw, 3em); /* Shorter height */
  padding: 0.6em 2.5em 0.6em 1.5em; /* Less padding */
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  white-space: nowrap;
}

.custom-button .button-icon {
  height: clamp(1.4em, 2.8vw, 1.6em);
  width: clamp(1.4em, 2.8vw, 1.6em);
  background: white;
  margin-left: 2em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5em;
  box-shadow: 0.1em 0.1em 0.4em 0.1em var(--accent-color);
  right: 0.4em;
  transition: all 0.3s ease;
}

.custom-button .button-icon svg {
  width: clamp(0.9em, 1.2vw, 1.1em);
  transition: transform 0.3s ease;
  color: var(--accent-color);
}

.custom-button:hover .button-icon {
  width: calc(100% - 0.6em);
}

.custom-button:hover .button-icon svg {
  transform: translateX(0.12em);
}

.custom-button:active .button-icon {
  transform: scale(0.95);
}

.custom-button .button-text {
  padding-right: 1em;
}

.form-bottom-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}

.form-bottom-wrapper .form-options {
  margin-top: 0;
  flex: 1 1 auto;
}

.form-bottom-wrapper .form-submit {
  margin-top: 0;
}

/* Styling for custom dropdown field */
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fff;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.41.59L6 5.17l4.59-4.58L12 2l-6 6-6-6L1.41.59z' fill='%23999'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px 8px;
}

.form-group select:focus {
  border-color: #3399ff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(51, 153, 255, 0.2);
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #333;
}

  .select2-container .select2-selection--single {
    height: 45px;
    border-radius: 8px;
    border: 1px solid #ccc;
  }

  .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #333;
    line-height: 28px;
  }

  .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
  }

@media (max-width: 768px) {
  .complaint-form-section {
    padding: 2rem 2rem;
  }

  .form-heading {
    font-size: 1.6rem;
  }

  .form-bottom-wrapper {
    flex-direction: column;
    align-items: stretch;
  }

  .form-options {
    flex-direction: column;
    align-items: flex-start;
  }

  .recaptcha-box {
    margin-top: 0.5rem;
  }

  .form-submit {
    text-align: center;
    width: 100%;
  }

  .custom-button {
    width: 100%;
    justify-content: center;
  }
}

/* ✅ Mobile screens (max-width: 480px) */
@media (max-width: 480px) {
  .complaint-form-section {
    padding: 1.5rem 1rem;
  }

  .form-heading {
    font-size: 1.4rem;
    text-align: center;
  }

  .form-group label {
    font-size: 0.9rem;
  }

  .form-group input,
  .form-group select {
    font-size: 0.9rem;
    padding: 0.5rem;
  }

  .custom-button {
    font-size: 1rem;
    padding: 0.6rem 2.2rem 0.6rem 1.4rem;
  }

  .custom-button .button-icon {
    margin-left: 1.6em;
  }

  .recaptcha-box label {
    font-size: 0.85rem;
  }

  .form-bottom-wrapper {
    gap: 0.8rem;
  }
}

/* ✅ Ultra-small devices (max-width: 320px) */
@media (max-width: 320px) {
  .form-heading {
    font-size: 1.2rem;
  }

  .custom-button {
    font-size: 0.95rem;
    padding: 0.5rem 2rem 0.5rem 1.2rem;
  }

  .form-group input,
  .form-group select {
    font-size: 0.85rem;
  }

  .recaptcha-box label {
    font-size: 0.8rem;
  }
}

/* APPLY NOW PAGE STYLES */

.personal-info-section,
.position-section,
.education-section,
.experience-section {
    display: flex;
    flex-direction: column; 
    gap: 15px; 
    margin-bottom: 10px; 
}

.personal-info-section .section-heading,
.position-section .section-heading,
.education-section .section-heading,
.experience-section .section-heading {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
}

.section-heading{
  padding-top: 3rem;
}
