body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.function_powers_section,
.about_us {
    padding: 0px 75px !important;
}

.logo img {
    width: 183px;
    height: 112px;
}

.Logo_title {
    font-size: 17px;
    font-weight: bold;
    color: #122c28;
    text-transform: uppercase;
}

.Logo_title span {
    color: #1a984f;
}

.navbar-nav {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 10px;
    border-radius: 15px;
}

.nav-link {
    color: #10964c !important;
    font-size: 14px;
    font-family: Arial Rounded MT Bold;
    text-decoration: none;
}

.btn-login {
    background-color: #41be90 !important;
    border-radius: 20px !important;
    color: white !important;
    padding: 5px 25px !important;
    font-size: 14px !important;
    border: none;
}

/* .slider-container {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.slider-wrapper {
  position: relative;
  overflow: visible;
  border-radius: 15px;
  height: 400px;
  margin-bottom: 20px;
  padding: 0 15%;
}

.slides {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  gap: 20px;
}

.slide {
  min-width: calc(70% - 20px);
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, #2d5a27, #4a7c59);
  border-radius: 15px;
  opacity: 0.6;
  transform: scale(0.85);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  filter: blur(2px);
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
  z-index: 10;
}

.slide.adjacent {
  opacity: 0.7;
  transform: scale(0.85);
  filter: blur(1px);
  z-index: 5;
}

.slide.main {
  background: linear-gradient(135deg, #1a4c1a, #2d5a27);
}

.slide.meeting {
  background: linear-gradient(135deg, #4a7c59, #6b9b7a);
}

.slide.bank {
  background: linear-gradient(135deg, #2d5a27, #1a4c1a);
}

.meeting-content {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 40px;
  color: white;
}

.meeting-image {
  width: 200px;
  height: 150px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  backdrop-filter: blur(5px);
}

.navigation-dots {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid #d4af37;
}

.dot.active {
  background: #d4af37;
  transform: scale(1.2);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.6);
  transform: scale(1.1);
}

.legal-elements {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-80%);
  opacity: 0.3;
}

.scales {
  font-size: 60px;
  color: #d4af37;
  margin-bottom: 20px;
}

.gavel {
  font-size: 50px;
  color: #d4af37;
}

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

.slide.active .constitution-book,
.slide.active .meeting-content,
.slide.active .bank-content {
  animation: slideIn 0.6s ease-out;
} */

.slider-container {
    position: relative;
    width: 100%;
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 20px;
}

.slides-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    perspective: 1000px;
}

.slide {
    transition: all 0.5s ease;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.slide-left,
.slide-right {
    width: 350px;
    height: 280px;
    filter: blur(3px);
    opacity: 0.6;
    transform: scale(0.85);
}

.slide-left {
    clip-path: inset(0 0 0 25%);
}

.slide-right {
    clip-path: inset(0 25% 0 0);
}

.slide-center {
    width: 700px;
    height: 450px;
    filter: blur(0);
    opacity: 1;
    transform: scale(1);
    z-index: 10;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
}

.slide-center .slide-content {
    opacity: 1;
}

.slide-left .slide-content,
.slide-right .slide-content {
    opacity: 0;
}

h3 {
    margin: 0 0 10px 0;
    font-size: 24px;
    font-weight: 600;
}

p {
    margin: 0;
    font-size: 14px;
}

.progress-container {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 100;
    background: rgba(0, 0, 0, 0.4);
    padding: 12px 20px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.progress-bar {
    width: 50px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.progress-bar:hover {
    background: rgba(255, 255, 255, 0.5);
}

.progress-bar.active {
    background: rgba(255, 255, 255, 0.95);
    width: 50px;
}

.about_title {
    font-weight: bold;
    font-size: 35px;
    color: #122c28;
    text-transform: uppercase;
}
.about_title span {
    color: #1a984f;
}

.about_section p {
    font-size: 20px;
    font-weight: 500;
    color: #464646;
}

.btn-read-more {
    background-color: #41be90 !important;
    border-radius: 20px !important;
    color: white !important;
    padding: 5px 25px !important;
    font-size: 21px !important;
    border: none;
}

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

.about_section_image_wrapper {
    position: relative;
    display: inline-block;
}

.about_section_image_wrapper img {
    display: block;
    width: 100%;
    height: auto;
    border: none; /* remove default border if any */
}

/* Top-left clipped border */
.about_section_image_wrapper::before {
    content: "";
    position: absolute;
    top: -12px;
    left: -12px;
    width: 75px;
    height: 75px;
    border-top: 15px solid #367c4d;
    border-left: 15px solid #367c4d;
    box-sizing: border-box;
    border-radius: 20px 0px 0px 0px;
}

/* Bottom-right clipped border */
.about_section_image_wrapper::after {
    content: "";
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 75px;
    height: 75px;
    border-bottom: 15px solid #122b28;
    border-right: 15px solid #122b28;
    box-sizing: border-box;
    border-radius: 0px 0px 20px 0px;
}

.function_powers {
    font-size: 40px;
    text-align: right;
    font-weight: 700;
    color: #367c4d;
}

.function_powers span {
    color: #122b28;
    text-transform: uppercase;
}

.function_powers_list {
    list-style-type: none;
    padding-left: 5px;
    margin: 0;
}

.function_powers_list li {
    display: flex;
    align-items: flex-start;
    border-radius: 35px;
    border: 1px solid #d9d9d9;
    padding: 10px 20px;
    margin: 10px 0;
    align-items: center;
}

.function_powers_list img {
    width: 40px;
    border-radius: 25px;
    margin-right: 10px;
    border: 1px solid #d9d9d9;
    flex-shrink: 0;
}

.function_powers_list span {
    display: inline-block;
    color: #122b28;
    text-transform: uppercase;
    line-height: 1.4;
}

.latest_updates {
    height: 535px;
    overflow-y: auto; /* Enable vertical scroll */
    padding-right: 10px; /* Prevent text from touching scrollbar */
}

/* Scrollbar for WebKit-based browsers (Chrome, Edge, Safari) */
.latest_updates::-webkit-scrollbar {
    width: 8px;
}

.latest_updates::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.latest_updates::-webkit-scrollbar-thumb {
    background: #367c4d;
    border-radius: 10px;
    border: 3px solid #ccc;
}

.latest_updates::-webkit-scrollbar-thumb:hover {
    background: #2a5d39;
}

/* Optional: For Firefox (limited styling) */
.latest_updates {
    scrollbar-width: auto;
    scrollbar-color: #367c4d #f1f1f1;
}

.bg_image_services {
    background-image: url("../images/MaskGroup12.png");
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* .service {
} */

.service_content {
    padding: 10px;
    border-radius: 25px;
    z-index: 1;
    position: relative;
    background-color: white;
    height: 350px;
}

.service_content p {
    z-index: 1;
    position: relative;
    font-size: 17px;
    margin-top: 50px;
    padding: 0px 5px;
}

.service_content h4 {
    font-size: 22px;
    font-weight: bold;
    z-index: 1;
    position: relative;
    left: -25px;
    top: 5px;

    text-align: left;
}

.circle_image {
    position: relative !important;
    z-index: 0;
    left: -125px !important;
    top: 55px !important;
    width: 80px;
    opacity: 0.8;
}

.circle_image2 {
    position: absolute !important;
    z-index: -1 !important;
    right: -20px;
    top: 20px !important;
}

.lines_image {
    position: absolute !important;
    z-index: -1 !important;
    left: -20px !important;
    top: 180px !important;
}

.service_image {
    margin-top: 20px;
}

.chairman_message {
    text-align: center;
}

.chairman_message h1 {
    font-size: 30px;
}

.chairman_message h6 {
    font-size: 19px;
    color: #10964c;
}
.chairman_message p {
    font-size: 13px;
    padding: 0px 15px;
}

.members_section,
.press_section {
    padding: 0px 100px;
}

.team_member {
    border: 1px solid #eeeaea;
    border-radius: 20px;
    padding: 10px;
    box-shadow: 5px 5px #f0eeee;
}

.team_member h6 {
    font-weight: bold;
    font-size: 12px;
}

.team_member p {
    font-size: 12px;
}
.team_member img {
    border-radius: 15px;
    margin-bottom: 15px;
}

.press_release_title h1 {
    font-size: 40px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 15px;
}
.press_release_title h1 span {
    color: #367c4d;
    /* text-transform: none; */
}

.press_release_title p {
    font-size: 24px;
    text-align: center;
    font-weight: medium;
    margin-bottom: 15px;
    color: #367c4d;
}

.press_release_card,
.press_release_news {
    margin-top: 20px !important;
}

.card_content {
    padding: 0px 175px 0px 0px;
}

.press_release_card p {
    font-size: 20px;
    color: #252641;
    margin-top: 15px;
}

.author span {
    color: #367c4d;
}

.press_release_date {
    display: flex;
    background-color: #00b040;
    padding: 2px 20px;
    color: white !important;
    border-radius: 15px;
    justify-self: self-start;
}

.news_press_release_date {
    display: flex;
    background-color: #00b040;
    padding: 2px 20px;
    color: white !important;
    border-radius: 15px;
    justify-self: self-start;
}

.press_release {
    margin-left: 25px;
}

.news_content {
    margin-left: 15px;
    padding: 0px 50px 0px 0px;
}

.description {
    font-size: 20px;
}

.news_release_date {
    display: flex;
    background-color: #00b040;
    padding: 2px 20px;
    color: white !important;
    border-radius: 15px;
    justify-self: self-start;
    position: relative;
    top: -40px;
    left: 100px;
}

.news_description {
    padding: 0px 45px 0px 0px;
    font-size: 20px;
}

.widget1 {
    text-align: center;
}

.widget2 ul,
.widget3 ul,
.widget4 ul {
    list-style: none;
    padding: 0px;
    line-height: 30px;
}

.widget1 h2 {
    color: #0d9044;
    font-size: 35px;
    font-weight: 700;
}

.widget2 h2,
.widget3 h2,
.widget4 h2 {
    color: #0d9044;
    font-size: 24px;
    font-weight: bold;
}

.terms_conditions {
    text-align: center;
    font-size: 22px;
}

.terms_conditions a {
    color: #122b28;
    text-decoration: none;
}

.services {
    padding: 0px 75px;
}

@media (max-width: 1024px) {
    .about_title {
        font-size: 30px;
    }
    .function_powers_section,
    .about_us {
        padding: 0px 50px !important;
    }

    .slider-wrapper {
        padding: 0 10%;
    }

    /* .about_title {
    font-size: 60px;
  } */

    .about_section p {
        font-size: 20px;
    }

    .btn-read-more {
        font-size: 18px !important;
    }
    .members_section {
        padding: 0px 15px !important;
    }
    .press_section {
        padding: 0px 15px !important;
    }
    .widget1 h2 {
        font-size: 20px;
    }
    .services {
        padding: 0px 25px;
    }
}

@media (max-width: 768px) {
    .function_powers_section,
    .about_us {
        padding: 0px 30px !important;
    }

    .slider-wrapper {
        padding: 0 5%;
    }

    .about_title {
        font-size: 50px;
    }

    .about_section p {
        font-size: 20px;
    }

    .btn-read-more {
        font-size: 16px !important;
    }

    .team_member {
        padding: 10px 5px;
    }

    .team_member img {
        width: 100%;
    }
    .members_section {
        padding: 0px 15px !important;
    }
    .press_section {
        padding: 0px 15px !important;
    }
    .card_content {
        padding: 0px;
    }
    .executive_team {
        margin-top: 20px !important;
    }
    .news_release_date {
        left: 60px;
    }
}

@media (max-width: 430px) {
    .function_powers_section,
    .about_us {
        padding: 0px 15px !important;
    }

    .about_section_image {
        margin-top: 20px !important;
    }

    .about_title {
        font-size: 40px;
    }

    .about_section p {
        font-size: 18px;
    }

    .btn-read-more {
        font-size: 14px !important;
        padding: 5px 15px !important;
    }

    .team_member {
        padding: 5px;
    }

    .team_member img {
        width: 100%;
    }
    .press_section {
        padding: 0px 15px !important;
    }

    .press_release_title h1 {
        font-size: 30px;
    }

    .press_release_title p {
        font-size: 18px;
    }
    .card_content {
        padding: 0px;
    }

    .function_powers {
        font-size: 30px;
        text-align: center;
    }

    .team_member h6 {
        font-size: 14px;
    }
    .team_member p {
        font-size: 12px;
    }
    .press_release_news {
        text-align: center;
    }
    .news_description {
        padding: 0px;
    }

    .widget2,
    .widget3,
    .widget4 {
        text-align: center;
    }
}
