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

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

/* ===== HERO ===== */
.hero {
    background: url(../images/supreme_court2.png) center / cover no-repeat;
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
}

/* ===== TOP CONTROLS ===== */
/* .top-controls {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
} */

/* .menu-btn {
    font-size: 22px;
    cursor: pointer;
}

.search-box {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 25px;
    padding: 6px 14px;
    width: 320px;
}

.search-box input {
    background: none;
    border: none;
    outline: none;
    color: #fff;
    width: 100%;
    font-size: 14px;
} */

/* ===== CENTER LOGO ===== */

.hero .logo_div {
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero .logo_div .center-logo {
    background: #fff;
    border-radius: 50%;
    padding: 14px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
    margin: 30px auto;
    max-width: max-content;
    transition: all 0.4s ease;
}

.hero .logo_div .center-logo:hover {
    transform: scale(1.08);
}

.center-logo img {
    height: 70px;
    width: auto;
    display: block;
}

/* ===== HERO TEXT ===== */
.hero-text {
    text-align: center;
    margin-bottom: 40px;
}

.hero-text h1 {
    font-size: 36px;
    font-weight: 600;
    color: white;
    letter-spacing: 0.5px;
    margin: 0;
}

.hero-text p {
    margin-top: 10px;
    font-size: 15px;
    opacity: 0.9;
    color: white;
}

/* ===== SERVICE CARDS ===== */
.carousal_section {
    max-width: 1200px;
    margin: 0 auto;
}

.carousal_section .slick-list {
    margin: 0 -15px;
    overflow: hidden;
}

.carousal_section .slick-slide {
    padding: 0 15px;
}

.main_card {
    background: #333;
    padding: 20px;
    border-radius: 12px;
    height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

/* Icon top-left */
.main_card .icon {
    font-size: 24px;
    margin-bottom: 12px;
}

/* Card title */
.main_card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

/* Card description */
.main_card p {
    font-size: 12px;
    opacity: 0.9;
    margin-bottom: 10px;
}

/* Button */
.main_card .btn {
    font-size: 12px;
    padding: 5px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    color: #fff;
    transition: all 0.3s ease;
}

/* Button hover */
.main_card .btn:hover {
    background: #fff;
    color: #000;
}

/* Card hover */
.main_card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* ================= COLORS ================= */
.bg-degree-attestation {
    background-color: #f5a623;
}
.bg-degree-equivalence {
    background-color: #a4c639;
}
.bg-scholarships {
    background-color: #f08b4f;
}
.bg-university-info {
    background-color: #e94b35;
}
.bg-rnd {
    background-color: #2fa18e;
}

.slick-prev:before,
.slick-next:before {
    font-size: 24px;
    color: #0b3c6f;
}

/* ===== DOTS ===== */
.slick-dots li button:before {
    font-size: 12px;
    color: #1a984f;
}
.slick-dots li.slick-active button:before {
    color: #0b3c6f;
}

.vector {
    background-image: url(/styles/images/vector.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    /* top: 50%; */
    left: 12%;
    width: 40%;
    position: absolute;
    height: 38rem;
    opacity: 0.6;
    z-index: -1;
}

/* RESPONSIVE HORIZONTAL SCROLL */

.row.flex-nowrap::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

.main_card h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    flex-grow: 1;
    display: flex;
    align-items: center;
    /* justify-content: center; */
}

.main_card a {
    font-size: 12px;
    opacity: 0.9;
    cursor: pointer;
}

/* ===== SLICK SLIDER CUSTOMIZATION ===== */
.carousal_section .slick-dots {
    bottom: -40px;
}

.carousal_section .slick-dots li button:before {
    color: #1a984fc4;
    font-size: 12px;
}

.carousal_section .slick-dots li.slick-active button:before {
    color: #0b3c6f;
}

.carousal_section .slick-prev,
.carousal_section .slick-next {
    width: 40px;
    height: 40px;
    z-index: 1;
}

.carousal_section .slick-prev:before,
.carousal_section .slick-next:before {
    font-size: 24px;
    color: #1a984fc4;
}

.carousal_section .slick-prev {
    left: -50px;
}

.carousal_section .slick-next {
    right: -50px;
}

/* ===== ANNOUNCEMENT ===== */
.announce {
    display: flex;
    align-items: center;
    max-width: 1200px;
    width: calc(100% - 40px);
    background: #0b3c6f;
    color: white;
    padding: 12px 18px;
    font-size: 14px;
    border-radius: 6px;
    margin-bottom: 30px;
}

.announce span {
    background: #f5b400;
    color: white;
    padding: 4px 10px;
    margin-right: 12px;
    border-radius: 3px;
}

/* ===== MENU STYLING ===== */
.menu {
    width: 100% !important;
    background-color: #302d2dea !important;
    padding: 10px 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: wrap;
    border-radius: 6px;
}

.hero-text h1 {
    background-color: #302d2dc2;
    padding: 10px 20px;
    border-radius: 8px;
}

.navbar-toggler {
    background-color: white !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .carousal_section .slick-prev {
        left: -40px;
    }

    .carousal_section .slick-next {
        right: -40px;
    }
}

@media (max-width: 768px) {
    /* .hero {
        padding-top: 10px;
        padding-bottom: 40px;
    } */

    .vector {
        display: none;
    }

    .center-logo {
        margin-top: 10px;
        margin-bottom: 20px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .carousal_section {
        margin-bottom: 50px;
    }

    .carousal_section .slick-prev {
        left: -30px;
    }

    .carousal_section .slick-next {
        right: -30px;
    }

    .slick-arrow {
        display: none !important;
    }

    /* Constrain card width on tablet */
    /* .carousal_section .main_card {
        max-width: calc(50vw - 50px);
        width: calc(50vw - 50px);
    } */

    .announce {
        font-size: 12px;
        padding: 10px 15px;
        margin-bottom: 20px;
    }

    .announce span {
        padding: 3px 8px;
        margin-right: 8px;
    }

    .menu {
        flex-direction: row !important;
        order: -1;
        padding: 8px 15px !important;
        gap: 10px;
    }

    .menu > div {
        flex: 1;
    }

    .menu .col-12 {
        width: auto !important;
        flex: 1;
    }

    .menu .col-md-9 {
        flex: 1 1 auto;
    }

    .menu .col-md-3 {
        flex: 0 0 auto;
    }
}

@media (max-width: 768px) and (min-width: 450px) {
    /* Tablet: 2 cards show */
    /* .carousal_section .main_card {
        max-width: calc(50vw - 50px);
        width: calc(50vw - 50px);
    } */

    .hero {
        height: auto;
        min-height: 70vh;
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .carousal_section {
        padding: 0 10px;
        width: 100%;
    }

    .vector {
        display: none;
    }

    .carousal_section .slick-list {
        margin: 0 -10px;
    }

    .carousal_section .slick-slide {
        margin: 0 10px;
    }
}

@media (max-width: 440px) {
    .hero {
        height: auto;
        min-height: 60vh;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .hero-text h1 {
        font-size: 24px;
    }

    .main_card {
        height: 220px;
        padding: 20px 16px;
        max-width: 100%;
        width: 100%;
    }

    .slick-arrow {
        display: none !important;
    }

    /* Mobile: 1 card show - fit within viewport */
    /* .carousal_section .main_card {
        max-width: calc(100vw - 60px);
        width: calc(100vw - 60px);
        min-width: calc(100vw - 60px);
    } */

    .carousal_section {
        padding: 0 10px;
        width: 100%;
        margin: 0 auto 30px;
    }

    .carousal_section .slick-list {
        margin: 0 -10px;
    }

    .carousal_section .slick-slide {
        margin: 0 10px;
    }

    .main_card h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .center-logo img {
        height: 60px;
    }

    .announce {
        width: calc(100% - 20px);
        padding: 10px 12px;
        /* flex-direction: column;
        text-align: center; */
    }

    .announce span {
        margin-right: 0;
        margin-bottom: 8px;
        display: inline-block;
    }

    .menu {
        padding: 10px 15px !important;
    }
}

.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 {
    padding: 70px 100px;
    background: linear-gradient(
        135deg,
        #0f3d2e 0%,
        #145a42 40%,
        #1b6f55 70%,
        #0f3d2e 100%
    );
    /* position: relative;
    overflow: hidden; */
}

/* Soft glass overlay */
/* .members_section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at top right,
        rgba(255, 255, 255, 0.12),
        transparent 60%
    );
    z-index: 0;
} */

/* .members_section > * {
    position: relative;
    z-index: 1;
} */

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

.team_member {
    /* border: 1px solid #eeeaea; */
    border-radius: 20px;
    padding: 10px;

    /* box-shadow: 5px 5px #f0eeee; */
}
.chairman_message h1,
.chairman_message p {
    color: white;
}

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

.team_member p {
    font-size: 12px;
    color: white;
}
.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_link {
    text-decoration: none;
    color: inherit;
}

.press_release_link:hover img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.read-more-link {
    font-size: 0.875rem;
    color: black;
    transition: all 0.3s ease;
}

.read-more-link:hover {
    color: #0a8f3c;
    font-weight: 600;
}

.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: 10px;
}

.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;
}

.widget4 {
    line-break: anywhere;
}

.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: #0d9044;
    text-decoration: none;
}

.services {
    padding: 0px 75px;
}

footer {
    background-color: #343131;
    color: white;
    padding: 20px;
}

@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;
    }
}

@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;
    }
}
