:root {
  --primary-color: #0060af;
  --primary-colorlight: #00aeef;

  --secondary-color: #a42179;
  --secondary-colorlight: #c6168d;
  --head-color: #6bd0f4;
  --grey: #818181;
  --back: #cceffc;
  --textgrey: #44403c;

  --fontraj: "Rajdhani", sans-serif;
  --fontmon: "Montserrat", sans-serif;
  --fontpop: "Poppins", sans-serif;
  --fontnunito: "Nunito Sans", sans-serif;
  --fontfut: "Futura PT", sans-serif;
  --fontooh: "Oooh Baby", cursive;

  --font-size-base: 16px;
}

@font-face {
  font-family: "Futura PT";
  src: url("futura-pt/FuturaCyrillicMedium.ttf") format("truetype");
  font-weight: medium;
  font-style: normal;
}

@font-face {
  font-family: "Futura PT";
  src: url("futura-pt/FuturaCyrillicBook.ttf") format("truetype");
  font-weight: lighter;
  font-style: normal;
}
@font-face {
  font-family: "Oooh Baby";
  src: url("oooh-baby/OoohBaby-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

.navbar {
  border-radius: 50px;

  /* Base glass */
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.3),
    rgba(255, 255, 255, 0.4)
  );

  /* Refraction + Frost */
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);

  /* Glass edge */
  border: 1px solid rgba(255, 255, 255, 0.35);

  /* Depth */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);

  z-index: 1000;

  position: fixed;
  transition: 0.4s linear;
  z-index: 9;
  width: 100%;
}

.navbar.sticky {
  background: rgba(250, 252, 252, 0.5);

  border: 1px solid rgba(244, 238, 228, 0.4);

  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);

  backdrop-filter: blur(15px);

  -webkit-backdrop-filter: blur(15px);
  border-radius: 0;
  width: 100%;
  top: 0%;
  right: 0%;

  padding: 0rem 6rem;
}

.navbar-brand {
  font-family: "Inter", sans-serif;
  font-weight: 500;

  font-size: 14px;
  line-height: 1.5;

  color: #000;
}

.navbar-brand img {
  height: 60px;
  width: auto;
}

.nav-inside {
  padding-left: 6rem;
  padding-right: 6rem;

  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
}

.nav-link {
  font-family: "Inter", sans-serif;
  font-weight: 500;

  font-size: 15px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #f00031;
}

.navbar-nav {
  padding-right: 4rem;
}

.nav-item {
  padding-right: 0.5rem;
}

.contact-btn {
  background-color: var(--primary-colorlight);
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  font-family: var(--fontmon);
  font-size: 16px;
  border: 2px solid var(--primary-colorlight);
}
.contact-btn:hover {
  background-color: white;
  color: var(--primary-colorlight);

  border: 2px solid var(--primary-colorlight);
}
.dropdown-menu {
  background-color: #ffffff;

  border: none;
  border-radius: 10px;
  padding: 0;
  width: 100%;

  min-width: unset;
}

.dropdown-menu.show {
  width: auto;
  min-width: 100%;
}

.dropdown-item {
  color: black;
  padding: 10px 20px;
  font-family: "Inter", sans-serif;
  font-weight: 500;

  font-size: 15px;
  border-radius: 50px;
  text-align: left;
  transition: background-color 0.3s;
}

.dropdown-item:hover {
  background-color: #f5f5f5;

  color: black;
}

.btn-nav[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

.dropdown-menu-end {
  margin-top: 0.5rem;
}

.navbar-collapse {
  text-align: left;
}

.navbar-nav {
  margin-left: 0;
  align-items: flex-start;
}

@media (max-width: 991px) {
  .navbar-nav .nav-link {
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  .navbar.sticky {
    padding: 0.75rem 1rem;
    top: -1%;
  }

  .nav-inside {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .navbar-brand img {
    height: 30px;
    width: auto;
  }

  .navbar-brand {
    font-size: 12px;
  }

  .navbar-toggler-icon {
    height: 20px;
    width: 20px;
  }
}

@media (min-width: 480px) and (max-width: 768px) {
  .navbar.sticky {
    padding: 0.75rem 2rem;
    top: -1%;
  }

  .nav-inside {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .navbar-brand img {
    height: 40px;
    width: auto;
  }

  .navbar-brand {
    font-size: 12px;
  }

  .navbar-toggler-icon {
    height: 20px;
    width: 20px;
  }
}

@media (min-width: 990px) and (max-width: 1150px) {
  .navbar-nav {
    padding-right: 0.2rem;
  }

  .nav-item {
    padding-right: 0.2rem;
  }

  .nav-inside {
    padding-left: 2rem;
  }
}

@media (min-width: 990px) and (max-width: 1300px) {
  .navbar.sticky {
    padding: 0.75rem 2rem;
  }
}

/* container fluid  */
@media (min-width: 1300px) {
  .container-fluid {
    max-width: 1300px !important;
  }
}

@media (max-width: 480px) {
  .container-fluid {
    max-width: 360px !important;
  }
}

@media (min-width: 481px) and (max-width: 615px) {
  .container-fluid {
    max-width: 481px !important;
  }
}

@media (min-width: 616px) and (max-width: 768px) {
  .container-fluid {
    max-width: 500px !important;
  }
}

@media (min-width: 769px) and (max-width: 900px) {
  .container-fluid {
    max-width: 769px !important;
  }
}

@media (min-width: 901px) and (max-width: 1000px) {
  .container-fluid {
    max-width: 900px !important;
  }
}

@media (min-width: 1001px) and (max-width: 1199px) {
  .container-fluid {
    max-width: 1001px !important;
  }
}

@media (min-width: 1200px) and (max-width: 1299px) {
  .container-fluid {
    max-width: 1200px !important;
  }
}

/* hero section  */
.headernav {
  position: absolute;
  top: 1%;
  display: flex;
  justify-content: center;
  width: 100%;
}
.hero-section-wrapper {
  position: relative;
  min-height: 45rem;
  overflow: hidden;
}

.hero-section-carousel {
  height: 100%;
}

.hero-section-carousel .carousel-inner,
.hero-section-carousel .carousel-item {
  height: 100%;
  min-height: 45rem;
}

.hero-section-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  animation: kenBurns 10s ease-out infinite alternate;
}

@keyframes kenBurns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.hero-section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(30, 58, 138, 0.85) 0%,
    rgba(15, 29, 69, 0.75) 100%
  );
  z-index: 2;
}

.hero-section-content {
  position: relative;
  padding: 3rem 6rem;
  z-index: 3;
  min-height: 45rem;
  display: flex;
  align-items: center;
}

.hero-section-content-inner {
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-section-title {
  font-family: var(--fontfut);
  font-size: 64px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-section-subtitle {
  font-family: var(--fontfut);
  font-size: 24px;
  color: #ffffff;
  font-weight: 300;
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
}

/* Custom Bootstrap Carousel Controls */
.hero-section-carousel .carousel-control-prev,
.hero-section-carousel .carousel-control-next {
  width: auto;
  opacity: 1;
}

.hero-section-carousel .carousel-control-prev-icon,
.hero-section-carousel .carousel-control-next-icon {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
}

.hero-section-carousel .carousel-control-prev-icon {
  border-radius: 0 8px 8px 0;
}

.hero-section-carousel .carousel-control-next-icon {
  border-radius: 8px 0 0 8px;
}

.hero-section-carousel .carousel-control-prev-icon:hover,
.hero-section-carousel .carousel-control-next-icon:hover {
  background-color: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

/* Custom Indicators */
.hero-section-carousel .carousel-indicators {
  margin-bottom: 3rem;
  gap: 1rem;
}

.hero-section-carousel .carousel-indicators [data-bs-target] {
  width: 50px;
  height: 4px;
  border-radius: 0;
  background-color: rgba(255, 255, 255, 0.3);
  border: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.hero-section-carousel .carousel-indicators [data-bs-target]:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

.hero-section-carousel .carousel-indicators .active {
  background-color: #ffffff;
}

/* CTA Button */
.hero-section-cta {
  display: inline-block;
  padding: 1rem 3rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.hero-section-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transition: left 0.4s ease;
}

.hero-section-cta:hover {
  background: rgba(255, 255, 255, 0.95);
  color: #1e3a8a;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-section-cta:hover::before {
  left: 100%;
}

@media screen and (max-width: 768px) {
  .hero-section-content {
    padding: 2rem 2rem;
    min-height: 35rem;
  }

  .hero-section-wrapper,
  .hero-section-carousel .carousel-inner,
  .hero-section-carousel .carousel-item {
    min-height: 35rem;
  }

  .hero-section-title {
    font-size: 2.5rem;
    letter-spacing: 2px;
  }

  .hero-section-subtitle {
    font-size: 1.1rem;
  }

  .hero-section-carousel .carousel-control-prev-icon,
  .hero-section-carousel .carousel-control-next-icon {
    padding: 1.5rem 1rem;
  }

  .hero-section-cta {
    padding: 0.875rem 2rem;
    font-size: 16px;
  }
}

@media screen and (max-width: 480px) {
  .hero-section-content {
    padding: 1rem 1rem;
    min-height: 30rem;
  }

  .hero-section-wrapper,
  .hero-section-carousel .carousel-inner,
  .hero-section-carousel .carousel-item {
    min-height: 30rem;
  }

  .hero-section-title {
    font-size: 2rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
  }

  .hero-section-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-section-carousel .carousel-control-prev-icon,
  .hero-section-carousel .carousel-control-next-icon {
    padding: 1rem 0.75rem;
  }

  .hero-section-carousel .carousel-indicators {
    margin-bottom: 2rem;
    gap: 0.5rem;
  }

  .hero-section-carousel .carousel-indicators [data-bs-target] {
    width: 35px;
    height: 3px;
  }

  .hero-section-cta {
    padding: 0.75rem 1.5rem;
    font-size: 14px;
  }
}

.cut-text3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cut-text1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* about us  */

.about-us {
  padding: 3rem 6rem;
  background-color: white;
}

.about-us h2 {
  color: var(--primary-color);
  font-family: var(--fontfut);
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.about-us p {
  color: var(--textgrey);
  font-family: var(--fontpop);
  font-size: 16px;
  line-height: 1.5;
  text-align: justify;
  margin-bottom: 25px;
}

.about-us .btn-primary {
  background-color: var(--primary-colorlight);
  border: 2px solid var(--primary-colorlight);
  padding: 10px 30px;
  font-weight: 500;
  font-family: var(--fontmon);
  font-size: 16px;
  transition: all 0.4s ease;
}

.about-us .btn-primary:hover {
  background-color: white;
  color: var(--primary-colorlight);
  border: 2px solid var(--primary-colorlight);
  transform: translateX(6px);
}

.about-us img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
}

.about-us .about-us-image {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
}

.about-us .about-us-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about-us .about-us-image:hover img {
  transform: scale(1.05);
}

.about-us .content-wrapper {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .about-us {
    padding: 1rem 1rem;
  }
  .about-us h2 {
    font-size: 24px;
  }
  .about-us p {
    font-size: 14px;
  }
  .about-us .btn-primary {
    font-size: 14px;
    padding: 6px 24px;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .about-us {
    padding: 2rem 2rem;
  }
  .about-us h2 {
    font-size: 24px;
  }
  .about-us p {
    font-size: 14px;
  }
  .about-us .btn-primary {
    font-size: 14px;
    padding: 6px 24px;
  }
}
/* chairman  */
.chairman-message {
  padding: 3rem 6rem;
  background: var(--back);
}
.chairman-message h2 {
  color: var(--primary-color);
  font-family: var(--fontfut);
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 3rem;
  letter-spacing: 1px;
}

.chairman-message p {
  color: var(--textgrey);
  font-family: var(--fontmon);
  font-size: 16px;
  line-height: 1.5;
  text-align: justify;
  margin-bottom: 25px;
}

.chairman-message .chairman-image {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;

  background: #fff;
}

.chairman-message .chairman-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 480px) {
  .chairman-message {
    padding: 1rem 1rem;
  }
  .chairman-message h2 {
    font-size: 24px;
    margin-bottom: 2rem;
  }
  .contact-btn {
    padding: 8px 24px;
    font-size: 14px;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .chairman-message {
    padding: 2rem 2rem;
  }
  .chairman-message h2 {
    font-size: 24px;
    margin-bottom: 2rem;
  }
  .contact-btn {
    padding: 8px 24px;
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .chairman-message .chairman-image img {
    max-height: 400px;
  }
}

@media (max-width: 767px) {
  .chairman-message .chairman-image img {
    max-height: 350px;
  }
}

.chairman-message .chairman-image:hover img {
  transform: scale(1.03);
}

.chairman-message .chairman-signature {
  font-family: var(--fontooh);
  font-size: 2rem;
  color: black;
  margin-top: 20px;
  margin-bottom: 2px;
}

.chairman-message .chairman-name {
  font-family: var(--fontmon);
  font-size: 24px;
  font-weight: 600;
  color: black;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.chairman-message .text-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

/* our focus area  */

.focus-area-section {
  padding: 3rem 6rem;
  background-color: white;
}

.focus-area-title {
  font-size: 32px;
  font-weight: 600;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 50px;
  text-transform: uppercase;
}

.focus-area-card {
  background: white;
  border: 2px solid #ddd;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.focus-area-card:hover {
  border-color: var(--secondary-colorlight);
  box-shadow: 0 8px 25px rgba(240, 157, 254, 0.3);
  transform: translateY(-5px);
}

.focus-area-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.focus-area-card-title {
  font-size: 20px;
  font-weight: 600;
  font-family: var(--fontfut);
  color: #1a1a1a;
  margin: 0;
  letter-spacing: 1.5px;
}

/* our impact  */

.our-impact-section {
  padding: 3rem 6rem;
  background: var(--back);
}

.our-impact-section h2 {
  font-size: 32px;
  font-weight: 600;
  font-family: var(--fontfut);
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 50px;
}

.our-impact-card {
  background: var(--primary-color);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 102, 161, 0.2);
}

.our-impact-number {
  font-family: var(--fontmon);
  font-size: 36px;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
  line-height: 1;
}

.our-impact-label {
  font-size: 16px;
  font-family: var(--fontmon);
  font-weight: 500;
  color: white;
  margin: 0;
  line-height: 1.4;
}
@media screen and (max-width: 480px) {
  .our-impact-section {
    padding: 1rem 1rem;
  }
  .our-impact-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .our-impact-number {
    font-size: 28px;
  }
  .our-impact-card {
    padding: 20px 10px;
  }
}

@media (min-width: 480px) and (max-width: 768px) {
  .our-impact-section {
    padding: 2rem 2rem;
  }
  .our-impact-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .our-impact-number {
    font-size: 28px;
  }
  .our-impact-card {
    padding: 28px 14px;
  }
}
/* youtube and facebook part  */

.youtube-section {
  background-color: white;
  padding: 3rem 6rem;
}

.youtube-container {
  width: 100%;
}

.youtube-title {
  font-family: var(--fontfut);
  font-weight: 600;
  font-size: 32px;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.youtube-view-all-btn {
  background-color: var(--secondary-colorlight);
  border: 2px solid var(--secondary-colorlight);
  padding: 10px 30px;
  font-weight: 500;
  transition: all 0.4s ease;
  text-decoration: none;
  color: white;
  border-radius: 6px;
}

.youtube-view-all-btn:hover {
  background-color: white;
  color: var(--secondary-colorlight);
  border: 2px solid var(--secondary-colorlight);
  transform: translateX(6px);
  border-radius: 6px;
}

.youtube-video-card {
  width: 390px;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: transparent;
}

.youtube-video-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.facebook-container {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--primary-colorlight);
}

.facebook-header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding-bottom: 1rem;
}

.facebook-title {
  font-family: var(--fontfut);
  font-weight: 600;
  font-size: 24px;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.facebook-embed-wrapper {
  width: 100%;
  overflow: hidden;
}

.facebook-embed-wrapper .fb-page {
  width: 100% !important;
}

.facebook-embed-wrapper .fb-page > span {
  width: 100% !important;
}

.facebook-embed-wrapper .fb-page iframe {
  width: 100% !important;
}

@media screen and (max-width: 480px) {
  .youtube-video-card {
    width: 300px;
  }

  .youtube-section {
    padding: 1rem 1rem;
  }

  .youtube-title {
    font-size: 20px;
  }
  .facebook-title {
    font-size: 20px;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .youtube-video-card {
    width: 350px;
  }

  .youtube-section {
    padding: 2rem 2rem;
  }

  .youtube-title {
    font-size: 20px;
  }
  .facebook-title {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .facebook-container {
    margin-top: 2rem;
  }

  .youtube-view-all-btn {
    padding: 0.6rem 1.5rem;
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .youtube-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .facebook-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

@media (min-width: 1000px) and (max-width: 1400px) {
  .youtube-video-card {
    width: 300px;
  }
}

/* projects  */

.projects-section {
  background: var(--back);
  padding: 3rem 6rem;
}

.projects-header {
  margin-bottom: 3rem;
}

.projects-title {
  font-family: var(--fontfut);
  font-weight: 700;
  font-size: 32px;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2rem;
}

.projects-tabs {
  display: inline-flex !important;
  background: white;
  border-radius: 50px;
  padding: 0.3rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: none;
}

.projects-tabs .nav-item {
  margin: 0;
}

.projects-tab-btn {
  background: transparent !important;
  border: none !important;
  padding: 0.75rem 2.5rem !important;
  font-family: var(--fontfut);
  font-weight: 500;
  font-size: 20px;
  color: #333 !important;
  border-radius: 50px !important;
  cursor: pointer;
  transition: all 0.3s ease;
}
#completed-tab.active {
  background: var(--secondary-color) !important;
}
.projects-tab-btn.active {
  background: var(--primary-color) !important;
  color: white !important;
}

.projects-tab-btn:hover:not(.active) {
  color: #1565c0 !important;
  background: rgba(21, 101, 192, 0.05) !important;
}

.tab-pane {
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.projects-card {
  perspective: 1000px;
  height: 400px;
}

.projects-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.projects-card:hover .projects-card-inner {
  transform: rotateY(180deg);
}

.projects-card-front,
.projects-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 15px;
  overflow: hidden;
}

.projects-card-front {
  background: white;
}

.projects-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.projects-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, transparent 100%);
  padding: 1.5rem;
  display: flex;
  align-items: flex-end;
}

.projects-card-title {
  font-family: var(--fontfut);
  font-weight: 500;
  font-size: 20px;
  color: white;
  margin: 0;
  text-align: left;
}

.projects-card-back {
  background: white;
  transform: rotateY(180deg);

  display: flex;

  justify-content: center;
}

.projects-card-back-content {
  padding: 2rem;
  text-align: left;
}

.projects-card-backongoing-title {
  font-family: var(--fontfut);
  font-weight: 600;
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-align: left;
}
.projects-card-backcompleted-title {
  font-family: var(--fontfut);
  font-weight: 600;
  font-size: 20px;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  text-align: left;
}

.projects-card-description {
  font-family: var(--fontpop);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  text-align: justify;
  margin-bottom: 2rem;
}

.projects-ongoing-btn {
  background-color: var(--primary-colorlight);
  border: 2px solid var(--primary-colorlight);
  padding: 10px 30px;
  font-weight: 500;
  transition: all 0.4s ease;
  text-decoration: none;
  color: white;
  border-radius: 6px;
}
.projects-ongoing-btn:hover {
  background-color: white;
  border: 2px solid var(--primary-colorlight);
  padding: 10px 30px;
  font-weight: 500;
  transition: all 0.4s ease;
  text-decoration: none;
  color: var(--primary-colorlight);
  border-radius: 6px;
  transform: translateX(6px);
}
.projects-completed-btn {
  background-color: var(--secondary-colorlight);
  border: 2px solid var(--secondary-colorlight);
  padding: 10px 30px;
  font-weight: 500;
  transition: all 0.4s ease;
  text-decoration: none;
  color: white;
  border-radius: 6px;
}
.projects-completed-btn:hover {
  background-color: white;
  border: 2px solid var(--secondary-colorlight);
  padding: 10px 30px;
  font-weight: 500;
  transition: all 0.4s ease;
  text-decoration: none;
  color: var(--secondary-colorlight);
  border-radius: 6px;
  transform: translateX(6px);
}
@media screen and (max-width: 480px) {
  .projects-section {
    padding: 1rem 1rem;
  }
  .projects-tabs {
    display: inline-flex !important;

    flex-wrap: nowrap;
  }
  .projects-tab-btn {
    font-size: 16px;
  }
  .projects-title {
    font-size: 24px;
  }
  .projects-card {
    perspective: 1000px;
    height: 350px;
  }
  .projects-card-back-content {
    padding: 1rem;
  }
  .projects-ongoing-btn {
    font-family: var(--fontmon);
    font-size: 14px;
  }
  .projects-card-description {
    font-size: 14px;

    margin-bottom: 1rem;
  }
  .projects-completed-btn {
    font-family: var(--fontmon);
    font-size: 14px;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .projects-section {
    padding: 2rem 2rem;
  }
  .projects-tabs {
    display: inline-flex !important;

    flex-wrap: nowrap;
  }
  .projects-tab-btn {
    font-size: 16px;
  }
  .projects-title {
    font-size: 24px;
  }
  .projects-card {
    perspective: 1000px;
    height: 350px;
  }
  .projects-card-back-content {
    padding: 1rem;
  }
  .projects-ongoing-btn {
    font-family: var(--fontmon);
    font-size: 14px;
  }
  .projects-card-description {
    font-size: 14px;

    margin-bottom: 1rem;
  }
  .projects-completed-btn {
    font-family: var(--fontmon);
    font-size: 14px;
  }
}
/* newssection  */
.news-section {
  padding: 3rem 6rem;
  background-color: #ededed;
}

.news-title {
  text-align: center;
  font-family: var(--fontfut);
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.news-card {
  background: white;
  border-radius: 6px;
  overflow: hidden;

  transition: transform 0.3s ease;
  height: 100%;
  border: 1px solid var(--secondary-colorlight);
}

.news-card:hover .news-image {
  transform: scale(1.3);
}

.news-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.news-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-date {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--secondary-colorlight);
  color: white;
  font-family: var(--fontfut);
  padding: 10px 20px;
  font-weight: 600;
  font-size: 1.2rem;
  border-top-left-radius: 6px;
  letter-spacing: 1px;
}

.news-content {
  padding: 1rem;
}

.news-heading {
  font-size: 20px;
  font-family: var(--fontfut);
  letter-spacing: 1px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.news-description {
  font-size: 16px;
  font-family: var(--fontmon);
  text-align: justify;

  font-weight: 500;
  color: var(--grey);
  margin-bottom: 10px;
}

.news-btn {
  background-color: var(--secondary-colorlight);
  border: 2px solid var(--secondary-colorlight);
  padding: 10px 30px;
  font-weight: 500;
  transition: all 0.4s ease;
  text-decoration: none;
  color: white;
  border-radius: 6px;
}

.news-btn:hover {
  background-color: white;
  border: 2px solid var(--secondary-colorlight);
  padding: 10px 30px;
  font-weight: 500;
  transition: all 0.4s ease;
  text-decoration: none;
  color: var(--secondary-colorlight);
  border-radius: 6px;
  transform: translateX(6px);
}

@media screen and (max-width: 480px) {
  .focus-area-section {
    padding: 1rem 1rem;
  }
  .focus-area-title {
    font-size: 24px;
    margin-bottom: 30px;
    text-transform: uppercase;
  }
  .focus-area-card {
    padding: 20px 15px;
  }
  .focus-area-card-title {
    font-size: 16px;
  }
}

/* latest update  */

.latest-update-section {
  padding: 3rem 6rem;
  background-color: white;
}

.latest-update-title {
  text-align: center;
  color: var(--primary-color);
  font-family: var(--fontfut);
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.latest-update-card {
  background: #1a1a1a;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  height: 400px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.latest-update-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.latest-update-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.latest-update-card:hover .latest-update-image {
  transform: scale(1.05);
}

.latest-update-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.85) 100%
  );

  z-index: 1;
  transition: height 0.4s ease;
}
.latest-update-overlaytop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.85) 100%
  );

  z-index: 1;
  transition: height 0.4s ease;
}
.latest-update-card:hover .latest-update-overlay {
  height: 80%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 100%
  );
}
.latest-update-date {
  position: absolute;
  bottom: 78%;
  left: 0;
  right: 0;
  padding: 30px;
  z-index: 2;
  transform: translateY(0);
}
.latest-update-content {
  position: absolute;
  bottom: -20%;
  left: 0;
  right: 0;
  padding: 30px;
  z-index: 2;
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.latest-update-date {
  color: white;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.latest-update-heading {
  color: white;
  font-size: 20px;
  font-family: var(--fontfut);
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 15px;
  transition: margin-bottom 0.4s ease;
}

.latest-update-description {
  color: white;
  font-size: 16px;
  font-family: var(--fontmon);
  text-align: justify;

  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.4s ease, max-height 0.4s ease, margin-bottom 0.4s ease;
}

.latest-update-card:hover .latest-update-description {
  opacity: 1;
  max-height: 200px;
  margin-bottom: 20px;
}

.update-btn {
  background-color: var(--primary-colorlight);
  border: 2px solid var(--primary-colorlight);
  padding: 10px 30px;
  font-weight: 500;
  transition: all 0.4s ease;
  text-decoration: none;
  color: white;
  border-radius: 6px;
}
.update-btn:hover {
  background-color: white;
  border: 2px solid var(--primary-colorlight);
  padding: 10px 30px;
  font-weight: 500;
  transition: all 0.4s ease;
  text-decoration: none;
  color: var(--primary-colorlight);
  border-radius: 6px;
  transform: translateX(6px);
}

.latest-update-card:hover .latest-update-content {
  transform: translateY(-76px);
}

@media screen and (max-width: 480px) {
  .news-section {
    padding: 1rem 1rem;
  }
  .news-title {
    font-size: 24px;
  }
  .news-date {
    font-size: 1rem;
  }
  .news-heading {
    font-size: 18px;
  }
  .news-description {
    font-size: 14px;
  }
  .news-btn {
    padding: 8px 24px;
    font-size: 14px;
    font-family: var(--fontmon);
  }
  .latest-update-section {
    padding: 1rem 1rem;
  }
  .latest-update-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .latest-update-card {
    height: 350px;
  }
  .update-btn {
    font-size: 14px;
    padding: 8px 24px;
  }
  .update-btn:hover {
    font-size: 14px;
    padding: 8px 24px;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .news-section {
    padding: 2rem 2rem;
  }
  .news-title {
    font-size: 24px;
  }
  .news-date {
    font-size: 1rem;
  }
  .news-heading {
    font-size: 18px;
  }
  .news-description {
    font-size: 14px;
  }
  .news-btn {
    padding: 8px 24px;
    font-size: 14px;
    font-family: var(--fontmon);
  }
  .latest-update-section {
    padding: 2rem 2rem;
  }
  .latest-update-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .latest-update-content {
    position: absolute;
    bottom: -26%;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 2;
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .latest-update-card {
    height: 350px;
  }
  .update-btn {
    font-size: 14px;
    padding: 8px 24px;
  }
  .update-btn:hover {
    font-size: 14px;
    padding: 8px 24px;
  }
}

/* footer  */

.footer-section {
  background: white;
  padding: 3rem 6rem;
}

.footer-top {
  padding: 3rem;
  background-color: var(--back);
  border-radius: 12px;
}

.footer-logo-section {
  display: flex;
  align-items: start;

  margin-bottom: 20px;
}

.footer-logo-section img {
  width: 250px;
}

.footer-subtitle {
  font-size: 14px;
  color: #333;
  margin: 0;
}

.footer-description {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
  max-width: 400px;
}

.footer-heading {
  font-size: 16px;
  font-family: var(--fontmon);
  font-weight: 500;
  color: #000;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #555;
  text-decoration: none;
  font-family: var(--fontmon);
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--secondary-color);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  color: #555;
  font-size: 14px;
}

.footer-contact-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
}

.footer-bottom {
  padding-top: 25px;
}

.footer-copyright {
  color: #333;
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: end;
}

.footer-social-text {
  color: #007bff;
  font-weight: 600;
  font-size: 16px;
  margin: 0;
}

.footer-social-links {
  display: flex;
  gap: 10px;
}

.footer-social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background-color: var(--primary-color);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 480px) {
  .footer-logo-section img {
    width: 200px;
  }

  .footer-section {
    background: white;
    padding: 1rem 1rem;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .footer-section {
    background: white;
    padding: 2rem 2rem;
  }
}

/* about us page  */

.main {
  position: relative;
  height: 20rem;
  color: #fff;
  padding-top: 5rem;
  padding-left: 6rem;
  padding-right: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.page-title {
  position: relative;
  z-index: 6;
  font-size: 32px;
  font-family: var(--fontfut);
  font-weight: 600;
  color: white;
}

.main .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}
.section {
  padding: 3rem 6rem;
}

.section-title {
  font-size: 32px;
  font-weight: 600;
  font-family: var(--fontfut);
  color: var(--primary-color);
  position: relative;
  padding-bottom: 15px;
}

.content-text {
  font-size: 16px;
  font-family: var(--fontmon);
  color: var(--textgrey);
  text-align: justify;
  margin-bottom: 20px;
}

.story-image-wrapper {
  width: 100%;
  max-width: 600px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin: 0 auto;
  border-radius: 12px;
}

.story-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-content {
  padding: 3rem 6rem;
}

.intro-card {
  background: #ffffff;
  border-radius: 2px;
  padding: 30px 60px;
  margin-bottom: 32px;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.2s ease;
}

.intro-card-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-family: var(--fontmon);
  letter-spacing: 0.12em;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 24px;
  display: inline-block;
}

.intro-card-title {
  font-size: 24px;
  font-weight: 400;
  font-family: var(--fontmon);
  margin-bottom: 20px;
  color: black;
  letter-spacing: -0.01em;
}

.intro-card-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--textgrey);
  font-weight: 400;
}

.intro-card-objectives {
  padding: 30px 60px;
}

.intro-objectives-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.intro-objectives-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--back);
}

.intro-objectives-item:first-child {
  padding-top: 0;
}

.intro-objectives-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.intro-objectives-number {
  font-size: 0.8125rem;
  color: var(--primary-color);
  font-weight: 500;
  padding-top: 2px;
}

.intro-objectives-content h3 {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.intro-objectives-content p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--textgrey);
  margin: 0;
}
@media screen and (max-width: 480px) {
  .intro-content {
    padding: 1rem 1rem;
  }
  .page-title {
    position: relative;
    z-index: 6;
    font-size: 24px;
    font-family: var(--fontfut);
    font-weight: 600;
    color: white;
  }
  .section {
    padding: 1rem 1rem;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .content-text {
    font-size: 14px;
  }
  .intro-header-title {
    font-size: 2rem;
  }
  .intro-card-title {
    font-size: 1.4rem;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .intro-content {
    padding: 2rem 2rem;
  }
  .page-title {
    position: relative;
    z-index: 6;
    font-size: 24px;
    font-family: var(--fontfut);
    font-weight: 600;
    color: white;
  }
  .section {
    padding: 2rem 2rem;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .content-text {
    font-size: 14px;
  }
  .intro-header-title {
    font-size: 2rem;
  }
  .intro-card-title {
    font-size: 1.4rem;
  }
}
@media (max-width: 768px) {
  .intro-card {
    padding: 40px 30px;
  }

  .intro-objectives-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .intro-content {
    padding: 50px 0;
  }
}

/* Responsive adjustments */
@media (max-width: 575px) {
  .team-card-content {
    padding: 20px;
  }

  .team-card-content h4 {
    font-size: 1.15rem;
  }
}
/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .main {
    padding: 5rem 1rem;
    height: 12rem;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .main {
    padding: 5rem 2rem;
    height: 15rem;
  }
}

@media (min-width: 769px) and (max-width: 1000px) {
  .main {
    padding: 5rem 4rem;
  }
}

/* projects  page */

.project-page-hero {
  position: relative;
  height: 400px;
  overflow: hidden;
  color: white;
}

.project-page-hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.project-page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
  z-index: 2;
}

.project-page-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 0;
  z-index: 3;
}

.project-page-status-badge {
  display: inline-block;
  font-family: var(--fontmon);
  font-size: 16px;
  padding: 0.375rem 1rem;
  background: #28a745;
  color: white;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
}
.project-page-hero-content h1 {
  font-family: var(--fontmon);
  font-size: 42px;
  font-weight: 600;
  color: white;
}
.project-page-hero-content p {
  font-family: var(--fontpop);
  font-size: 20px;
  color: white;
}

.project-page-tabs {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.project-page-nav-tabs {
  border-bottom: 2px solid #e9ecef;
  padding: 0 1.5rem;
}

.project-page-nav-tabs .nav-link {
  border: none;
  color: var(--textgrey);
  font-family: var(--fontfut);
  font-size: 18px;
  font-weight: 500;
  padding: 1rem 1.5rem;
  position: relative;
  transition: color 0.3s ease;
}

.project-page-nav-tabs .nav-link:hover {
  color: var(--primary-colorlight);
}

.project-page-nav-tabs .nav-link.active {
  color: var(--primary-colorlight);
  background: transparent;
}

.project-page-nav-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary-colorlight);
}
.project-subtitle {
  font-family: var(--fontmon);
  font-size: 20px;
  font-weight: 600;
  color: #000;
}

.project-page-objective-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.project-page-objective-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #e7f3ff, #cfe2ff);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.project-page-timeline-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.timeline-text {
  font-family: var(--fontfut);
  font-size: 20px;
  font-weight: 500;
}

.project-page-timeline-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.project-page-timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
}

.project-page-timeline-dot.completed {
  background: #28a745;
}

.project-page-timeline-dot.active {
  background: #0d6efd;
  animation: project-page-pulse 2s infinite;
}

.project-page-timeline-dot.upcoming {
  background: #dee2e6;
}

@keyframes project-page-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(13, 110, 253, 0);
  }
}

.project-page-timeline-line {
  width: 2px;
  flex: 1;
  background: #dee2e6;
  margin-top: 0.5rem;
}

.project-page-status-label {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.project-page-status-label.completed {
  background: #d1e7dd;
  color: #0f5132;
}

.project-page-status-label.active {
  background: #cfe2ff;
  color: #084298;
}

.project-page-status-label.upcoming {
  background: #e9ecef;
  color: #495057;
}

.project-page-cta {
  background: linear-gradient(135deg, #0d6efd, #0a58ca);
  border-radius: 0.75rem;
  color: white;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(13, 110, 253, 0.3);
}

.project-page-btn-donate {
  background: white;
  color: #0d6efd;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.project-page-btn-donate:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.project-page-btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.project-page-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.project-page-check-icon {
  color: #28a745;
  margin-right: 0.5rem;
}
@media (max-width: 480px) {
  .project-page-hero-content h1 {
    font-family: var(--fontmon);
    font-size: 24px;
    font-weight: 500;
    color: white;
  }
  .project-page-hero-content p {
  
    font-size: 16px;
    color: white;

}
.project-subtitle {
    font-family: var(--fontmon);
    font-size: 20px;
    font-weight: 500;
    color: #000;
}
}

@media (max-width: 768px) {
  .project-page-hero {
    height: 400px;
  }

  .project-page-funding-card {
    margin-top: -2rem;
  }
}

/* documents  */
.documents {
  padding: 3rem 6rem;
}

.documents-card {
  background: white;
  border-radius: 0.5rem;
  padding: 1.25rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}



.documents-icon {
  width: 50px;
  height: 50px;
  background: var(--back);
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.documents-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 0.25rem;
}

.documents-date {
  font-size: 0.875rem;
  color: #6c757d;
}

.documents-btn-download {
  background: var(--primary-colorlight);
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.documents-btn-download:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}
@media (max-width: 480px){
    .documents {
  padding: 1rem 1rem;
}

}
@media (max-width: 768px) {
  .documents-btn-download {
    width: 100%;
    justify-content: center;
  }
}

/* gallery */

.gallery-header {
  background: linear-gradient(135deg, #0d6efd, #0a58ca);
  color: white;
  padding: 3rem 6rem;
  margin-bottom: 3rem;
}

.gallery-item {
  position: relative;
  margin-bottom: 1.5rem;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
}

.gallery-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.gallery-download-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.95);
  color: #0d6efd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.gallery-download-icon:hover {
  background:var(--back);
  color: white;
  transform: scale(1.1);
}
@media (max-width: 480px){
    .gallery-header {
  
  padding: 1rem 1rem;
  
}
}

/* achievement  */

.achievement-content {
  padding: 3rem 6rem;
}

.achievement-sector-card {
  background: #ffffff;
  border-radius: 2px;
  padding: 30px 60px;
  margin-bottom: 32px;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.2s ease;
}

.achievement-sector-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-family: var(--fontmon);
  letter-spacing: 0.12em;
  color: var(--primary-color);
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 16px;
  display: inline-block;
}

.achievement-sector-title {
  font-size: 24px;
  font-weight: 400;
  font-family: var(--fontmon);
  margin-bottom: 20px;
  color: black;
  letter-spacing: -0.01em;
}

.achievement-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.achievement-list-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--achievement-border);
}

.achievement-list-item:first-child {
  padding-top: 0;
}

.achievement-list-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.achievement-item-content h3 {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--primary-color);
  position: relative;
  padding-left: 24px;
}

.achievement-item-content h3::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--achievement-accent);
  font-size: 1.5rem;
  line-height: 1.125rem;
}

.achievement-item-content p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--textgrey);
  margin: 0;
  padding-left: 24px;
}
@media (max-width: 480px) {
  .achievement-content {
    padding: 1rem 1rem;
  }
  .achievement-sector-title {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .achievement-header-title {
    font-size: 2.5rem;
  }

  .achievement-content {
    padding: 50px 0;
  }

  .achievement-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .achievement-sector-card {
    padding: 40px 30px;
  }

  .achievement-list-item {
    padding: 20px 0;
  }
}

/* guiding principle  */
.guiding-principle-content {
  padding: 3rem 6rem;
}

.guiding-principle-card {
  background: #ffffff;
  border-radius: 2px;
  padding: 30px 60px;
  margin-bottom: 32px;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.2s ease;
}

.guiding-principle-number {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 16px;
  display: inline-block;
}

.guiding-principle-title {
  font-size: 1.75rem;
  font-weight: 500;
  font-family: var(--fontmon);
  font-size: 24px;
  margin-bottom: 20px;
  color: black;
  letter-spacing: -0.01em;
}

.guiding-principle-description {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: black;
  margin-bottom: 24px;
}

.guiding-principle-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.guiding-principle-list-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--guiding-principle-border);
  display: flex;
  align-items: start;
}

.guiding-principle-list-item:first-child {
  padding-top: 0;
}

.guiding-principle-list-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.guiding-principle-bullet {
  color: var(--primary-color);
  font-size: 1.5rem;
  line-height: 1;
  margin-right: 16px;
  flex-shrink: 0;
  margin-top: -2px;
}

.guiding-principle-list-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--textgrey);
}

@media (max-width: 768px) {
  .guiding-principle-header-title {
    font-size: 2.5rem;
  }

  .guiding-principle-content {
    padding: 50px 0;
  }

  .guiding-principle-card {
    padding: 40px 30px;
  }

  .guiding-principle-intro {
    padding: 40px 30px;
  }

  .guiding-principle-title {
    font-size: 1.5rem;
  }
}

/* executive board members  */

.executive-mem-content {
  padding: 3rem 6rem;
  padding-top: 6rem !important;
}

.executive-mem-card-wrapper {
  margin-bottom: 100px;
}

.executive-mem-card {
  background: #ffffff;
  border-radius: 150px 150px 40px 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  padding-top: 90px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.executive-mem-image-container {
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.executive-mem-image-wrapper {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.executive-mem-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.executive-mem-info {
  padding: 0 30px;
  padding-top: 1rem !important;
  text-align: center;
  flex-grow: 0;
}

.executive-mem-name {
  font-size: 20px;
  font-family: var(--fontmon);
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.executive-mem-position {
  font-size: 1rem;
  font-family: var(--fontmon);
  color: var(--textgrey);
  margin-bottom: 25px;
  font-weight: 400;
}

.executive-mem-divider {
  width: 60%;
  height: 1px;
  background: #e0e0e0;
  margin: 0 auto 25px;
}

.executive-mem-contact {
  margin-bottom: 20px;
}

.executive-mem-contact-item {
  display: flex;
  align-items: left;
  justify-content: center;
  gap: 12px;
  font-family: var(--fontmon);
  color: var(--textgrey);
  font-size: 0.9375rem;
}

.executive-mem-contact-item i {
  color: #bbbbbb;
  font-size: 1rem;
}

.executive-mem-description {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #888888;
  text-align: justify;
  padding: 10px 30px 10px;
  flex-grow: 1;
  display: flex;

  justify-content: center;
}

.executive-mem-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: var(--primary-color);
  border-radius: 0 0 40px 40px;
  padding: 20px;
  margin-top: auto;
}

.executive-mem-social-link {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;

  transition: background-color 0.3s ease;
  font-size: 1.25rem;
  border-radius: 50%;
}

.executive-mem-social-link:hover {
  background-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

@media (max-width: 768px) {
  .executive-mem-header-title {
    font-size: 2.5rem;
  }

  .executive-mem-content {
    padding: 100px 0 60px;
  }

  .executive-mem-card-wrapper {
    margin-bottom: 100px;
  }

  .executive-mem-card {
    padding-top: 80px;
  }

  .executive-mem-image-container {
    top: -60px;
  }

  .executive-mem-image-wrapper {
    width: 140px;
    height: 140px;
  }
}

/* lifetime member  */

.life-time-member-container {
  background-color: white;
  padding: 3rem 6rem;
}

.life-time-member-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.life-time-member-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 2rem;
  text-align: center;
}

.life-time-member-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-colorlight);
  margin-bottom: 0.25rem;
  letter-spacing: -0.025em;
}

.life-time-member-subtitle {
  font-size: 1rem;
  font-weight: 500;
  color: #6b7280;
}

.life-time-member-table-wrapper {
  padding: 0;
  overflow-x: auto;
}

.life-time-member-table {
  margin-bottom: 0;
  border-collapse: separate;
  border-spacing: 0;
}

.life-time-member-table thead th {
  background-color: #f9fafb;
  color: #374151;
  font-weight: 600;
  font-size: 0.875rem;
  text-align: center;
  vertical-align: middle;
  padding: 1rem 0.75rem;
  border-bottom: 1px solid #e5e7eb;
  border-right: 1px solid #e5e7eb;
  white-space: nowrap;
}

.life-time-member-table thead th:last-child {
  border-right: none;
}

.life-time-member-table thead th:first-child,
.life-time-member-table thead th:nth-child(2),
.life-time-member-table thead th:nth-child(3) {
  text-align: left;
}

.life-time-member-table tbody tr {
  transition: background-color 0.15s ease;
}

.life-time-member-table tbody tr:hover {
  background-color: #f9fafb;
}

.life-time-member-table tbody td {
  padding: 0.875rem 0.75rem;
  font-size: 0.875rem;
  color: #374151;
  text-align: center;
  border-bottom: 1px solid #e5e7eb;
  border-right: 1px solid #e5e7eb;
}

.life-time-member-table tbody td:last-child {
  border-right: none;
}

.life-time-member-table tbody td:first-child {
  text-align: center;
  font-weight: 500;
  color: #6b7280;
}

.life-time-member-table tbody td:nth-child(2) {
  text-align: left;
  font-weight: 500;
  color: #111827;
}

.life-time-member-table tbody td:nth-child(3) {
  text-align: left;
  color: #6b7280;
}

.life-time-member-table tbody tr:last-child td {
  border-bottom: none;
}

.life-time-member-table tfoot td {
  background-color: #f9fafb;
  padding: 1rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
  border-top: 2px solid #e5e7eb;
  border-right: 1px solid #e5e7eb;
}

.life-time-member-table tfoot td:last-child {
  border-right: none;
}

.life-time-member-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  background-color: var(--primary-colorlight);
  color: #ffffff;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

@media (max-width: 992px) {
  .life-time-member-container {
    padding: 1.5rem 0;
  }

  .life-time-member-header {
    padding: 1.5rem 1rem;
  }

  .life-time-member-title {
    font-size: 1.25rem;
  }

  .life-time-member-subtitle {
    font-size: 0.875rem;
  }
}

@media (max-width: 768px) {
  .life-time-member-table {
    font-size: 0.75rem;
  }

  .life-time-member-table thead th,
  .life-time-member-table tbody td,
  .life-time-member-table tfoot td {
    padding: 0.625rem 0.375rem;
  }

  .life-time-member-count {
    min-width: 20px;
    height: 20px;
    font-size: 0.7rem;
  }
}

/* general members  */
.general-member-container {
  min-height: 100vh;
  background-color: white;
  padding: 3rem 6rem;
}

.general-member-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.general-member-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 2rem;
  text-align: center;
}

.general-member-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.25rem;
  letter-spacing: -0.025em;
}

.general-member-subtitle {
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary-colorlight);
}

.general-member-table-wrapper {
  padding: 0;
  overflow-x: auto;
}

.general-member-table {
  margin-bottom: 0;
  border-collapse: separate;
  border-spacing: 0;
}

.general-member-table thead th {
  background-color: #f9fafb;
  color: #374151;
  font-weight: 600;
  font-size: 0.875rem;
  text-align: center;
  vertical-align: middle;
  padding: 1rem 0.75rem;
  border-bottom: 1px solid #e5e7eb;
  border-right: 1px solid #e5e7eb;
  white-space: nowrap;
}

.general-member-table thead th:last-child {
  border-right: none;
}

.general-member-table thead th:first-child,
.general-member-table thead th:nth-child(2),
.general-member-table thead th:nth-child(3) {
  text-align: left;
}

.general-member-table tbody tr {
  transition: background-color 0.15s ease;
}

.general-member-table tbody tr:hover {
  background-color: #f9fafb;
}

.general-member-table tbody td {
  padding: 0.875rem 0.75rem;
  font-size: 0.875rem;
  color: #374151;
  text-align: center;
  border-bottom: 1px solid #e5e7eb;
  border-right: 1px solid #e5e7eb;
}

.general-member-table tbody td:last-child {
  border-right: none;
}

.general-member-table tbody td:first-child {
  text-align: center;
  font-weight: 500;
  color: #6b7280;
}

.general-member-table tbody td:nth-child(2) {
  text-align: left;
  font-weight: 500;
  color: #111827;
}

.general-member-table tbody td:nth-child(3) {
  text-align: left;
  color: #6b7280;
}

.general-member-table tbody tr:last-child td {
  border-bottom: none;
}

.general-member-table tfoot td {
  background-color: #f9fafb;
  padding: 1rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
  border-top: 2px solid #e5e7eb;
  border-right: 1px solid #e5e7eb;
}

.general-member-table tfoot td:last-child {
  border-right: none;
}

.general-member-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  background-color: var(--primary-colorlight);
  color: #ffffff;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

@media (max-width: 992px) {
  .general-member-container {
    padding: 1.5rem 0;
  }

  .general-member-header {
    padding: 1.5rem 1rem;
  }

  .general-member-title {
    font-size: 1.25rem;
  }

  .general-member-subtitle {
    font-size: 0.875rem;
  }
}

@media (max-width: 768px) {
  .general-member-table {
    font-size: 0.75rem;
  }

  .general-member-table thead th,
  .general-member-table tbody td,
  .general-member-table tfoot td {
    padding: 0.625rem 0.375rem;
  }

  .general-member-count {
    min-width: 20px;
    height: 20px;
    font-size: 0.7rem;
  }
}

/* key focus area page  */

.key-focus-area-nav {
  border-right: 1px solid #dee2e6;
}

.key-focus-area-btn {
  display: block;
  width: 100%;
  padding: 14px 20px;
  margin-bottom: 8px;
  background: white;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  color: #495057;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s;
}

.key-focus-area-btn:hover {
  background: #f8f9fa;
  border-color: var(--primary-colorlight);
  color: var(--primary-colorlight);
}

.key-focus-area-btn.active {
  background: var(--primary-colorlight);
  border-color: var(--primary-colorlight);
  color: white;
}

.key-focus-area-content {
  background: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.key-focus-area-category {
  color: var(--primary-colorlight);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.key-focus-area-heading {
  font-size: 1.75rem;

  font-weight: 600;
  color: #212529;
  margin-bottom: 40px;
  line-height: 1.4;
}

.key-focus-area-item {
  margin-bottom: 35px;
}

.key-focus-area-item-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 10px;
}

.key-focus-area-item-text {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.6;
}
@media (max-width: 480px) {
  .key-focus-area-heading {
    font-size: 1.2rem !important;
  }
}

@media (max-width: 768px) {
  .key-focus-area-nav {
    border-right: none;
    border-bottom: 1px solid #dee2e6;
    margin-bottom: 30px;
  }
}


/* news details  */



        .news-details-hero {
            position: relative;
            height: 450px;
            overflow: hidden;
        }

        .news-details-hero-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .news-details-hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
            display: flex;
            align-items: flex-end;
        }

        .news-details-hero-content {
            padding: 3rem 6rem;
           
            margin: 80px auto;
            width: 100%;
        }

        .news-details-title {
            font-size: 2.4rem;
            font-weight: 700;
            color:white;
            margin-bottom: 25px;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .news-details-meta {
            color: white;
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 20px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }

        .news-details-date {
            display: inline-block;
            background: var(--secondary-colorlight);
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .news-details-container {
           
            margin: -100px auto 0;
            position: relative;
            z-index: 2;
            padding: 3rem 6rem;
        }

        .news-details-content {
            background: white;
            padding: 60px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            margin-bottom: 60px;
        }

        .news-details-heading {
            font-size: 1.9rem;
            font-weight: 700;
            color: #212529;
            margin-bottom: 25px;
            margin-top: 45px;
        }

        .news-details-heading:first-child {
            margin-top: 0;
        }

        .news-details-subheading {
            font-size: 1.35rem;
            font-weight: 600;
            color: #343a40;
            margin-bottom: 18px;
            margin-top: 35px;
        }

        .news-details-text {
            font-size: 1.05rem;
            color: #495057;
            line-height: 1.9;
            margin-bottom: 22px;
            text-align: justify;
        }

        @media (max-width: 480px) {
            .news-details-hero-content {
            padding: 1rem 1rem;
           
            margin: 45px auto;
            width: 100%;
        }
            .news-details-title {
        font-size: 1.4rem;
        font-size: 500;
    }
    .news-details-container {
     margin: -75px auto 0;
    padding: 1rem 1rem;
}
    .news-details-heading {
        font-size: 1.2rem;
    }

        }
        @media (max-width: 768px) {
            .news-details-hero {
                height: 350px;
            }

            .news-details-hero-content {
                padding: 30px 20px;
            }

          

            .news-details-meta {
                font-size: 0.9rem;
            }

            .news-details-content {
                padding: 35px 25px;
            }

       

            .news-details-subheading {
                font-size: 1.2rem;
            }

            .news-details-text {
                font-size: 1rem;
            }
        }


        /* report  */

        
        .report-container {
            background: white;
            border-radius: 8px;
            padding: 3rem 6rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            overflow: hidden;
        }

        .report-sidebar {
            background: #fafafa;
            border-right: 1px solid #e0e0e0;
            padding: 0;
        }

        .report-tabs .nav-link {
            padding: 15px 20px;
            border: none;
            border-bottom: 1px solid #e0e0e0;
            border-radius: 0;
            color: #333;
            text-align: left;
            transition: all 0.2s;
        }

        .report-tabs .nav-link:hover {
            background: var(--primary-colorlight);
            color: white;
        }

        .report-tabs .nav-link.active {
            background: var(--primary-colorlight);
            color: white;
        }

        .report-tabs .nav-link.active .report-item-meta {
            color: rgba(255,255,255,0.8);
        }

        .report-item-title {
            font-weight: 600;
            font-size: 0.95rem;
            margin-bottom: 5px;
        }

        .report-item-meta {
            font-size: 0.8rem;
            color: #666;
        }

        .report-viewer {
            padding: 30px;
            min-height: 600px;
        }

        .report-viewer-header {
            border-bottom: 2px solid #e0e0e0;
            padding-bottom: 20px;
            margin-bottom: 30px;
        }

        .report-viewer-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--report-primary);
            margin-bottom: 10px;
        }

        .report-viewer-meta {
            color: #666;
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .report-viewer-frame {
            width: 100%;
            height: 800px;
            border: 1px solid #e0e0e0;
            border-radius: 4px;
            background: white;
        }

        .report-actions {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }

        .report-btn {
            padding: 10px 20px;
            border-radius: 6px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }

        .report-btn-primary {
            background: var(--secondary-colorlight);
            color: white;
        }

        .report-btn-primary:hover {
            background: var(--secondary-color);
            color: white;
        }

  
      @media (max-width: 480px){
         .report-container {
           
            padding: 1rem 1rem;
           
        }
      }
      @media (min-width: 481px) and (max-width: 768px){
         .report-container {
           
            padding: 2rem 2rem;
           
        }
      }
        @media (max-width: 768px) {
            .report-sidebar {
                border-right: none;
                border-bottom: 1px solid #e0e0e0;
            }

            .report-viewer-frame {
                height: 600px;
            }
        }

        .vacancy-notice {
           padding: 3rem 6rem;
            border-bottom: 1px solid var(--grey);
            transition: all 0.3s ease;
        }

       

        .vacancy-notice-header {
            margin-bottom: 20px;
        }

        .vacancy-title {
            font-size: 1.5rem;
            font-weight: 500;
            color: var(--primary-color);
            margin: 0 0 12px 0;
            letter-spacing: -0.3px;
        }

        .vacancy-meta {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
            color: var(--primary-colorlight);
            font-size: 0.95rem;
            margin-bottom: 20px;
        }

        .vacancy-meta span {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .vacancy-divider {
            color: var(--grey);
        }

        .vacancy-description {
            color:var(--textgrey);
            line-height: 1.8;
            font-size: 1rem;
            margin: 0 0 20px 0;
            max-width: 900px;
        }

        .vacancy-deadline {
            color: 
            var(--primary-colorlight);
            font-size: 0.95rem;
            font-weight: 500;
        }
@media (max-width: 480px){
         .vacancy-notice {
           padding: 1rem 1rem;
           
        }
      }
      @media (min-width: 481px) and (max-width: 768px){
          .vacancy-notice {
           padding: 2rem 2rem;
           
        }
      }
        

        @media (max-width: 768px) {
            .vacancy-header {
                padding: 40px 0 30px;
            }

            .vacancy-header h1 {
                font-size: 2rem;
            }

            .vacancy-notice {
                padding: 30px 0;
            }

            .vacancy-title {
                font-size: 1.25rem;
            }

            .vacancy-meta {
                gap: 15px;
            }

            .vacancy-notice:hover {
                padding-left: 0;
            }
        }

        /* contact  */

         .contact-info-section {
          padding: 3rem 6rem;
        }

        .contact-info-card {
            text-align: center;
           
        }

        .contact-icon {
            width: 100px;
            height: 100px;
            background-color: var(--back);
            border: 2px solid var(--contact-accent);
            border-radius: 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

   
.focus-area-card {
   
    text-decoration: none;
    color: inherit;
}
        .contact-info-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 8px;
        }

        .contact-info-text {
            color: #666;
            font-family: var(--fontmon);
            font-size: 0.95rem;
            margin: 0;
        }

        .contact-form-section {
            padding: 3rem 6rem;
        }

        .contact-heading {
            text-align: center;
            margin-bottom: 15px;
        }

        .contact-heading h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-colorlight);
            margin: 0;
        }

        .contact-subheading {
            text-align: center;
            color: #666;
            margin-bottom: 50px;
            font-size: 1rem;
        }

        .contact-form {
            max-width: 700px;
            margin: 0 auto;
            background: var(--back);
            padding: 50px;
            border-radius: 15px;
            box-shadow: 0 5px 30px rgba(0,0,0,0.08);
        }

        .contact-form-label {
            font-weight: 600;
            color: var(--contact-accent);
            margin-bottom: 10px;
            font-size: 0.95rem;
        }

        .contact-form-control {
            border: 2px solid var(--contact-accent);
            border-radius: 8px;
            padding: 12px 15px;
            font-size: 0.95rem;
            transition: all 0.3s;
        }

        .contact-form-control:focus {
            border-color: var(--contact-accent);
            box-shadow: 0 0 0 0.2rem rgba(255, 107, 74, 0.15);
        }

        .contact-textarea {
            min-height: 120px;
            resize: vertical;
        }

        .contact-btn-submit {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 14px 40px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s;
            margin-top: 10px;
        }

        .contact-btn-submit:hover {
            background: var(--primary-color);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 107, 74, 0.3);
        }

        .contact-map-section {
            margin-top: 60px;
        }

        .contact-map-container {
            width: 100%;
            height: 450px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 30px rgba(0,0,0,0.1);
        }

        .contact-map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        @media (max-width: 480px){
           .contact-info-section {
          padding: 1rem 1rem;
        }
        .contact-form-section {
    padding: 1rem 1rem;
}

      }
      @media (min-width: 481px) and (max-width: 768px){
          .contact-info-section {
          padding: 2rem 2rem;
        }
        .contact-form-section {
    padding: 2rem 2rem;
}
      }

        @media (max-width: 768px) {
            .contact-form {
                padding: 30px 20px;
            }

            .contact-heading h2 {
                font-size: 2rem;
            }

            .contact-map-container {
                height: 350px;
            }
        }