/* ===================== GLOBAL ===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #fff;
  color: #333;
  line-height: 1.8;
}

section {
  padding: 80px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

h2 {
  color: #002b5b;
  font-size: 2rem;
  margin-bottom: 15px;
  position: relative;
  font-weight: 700;
  text-transform: capitalize;
}

h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #ffcc00;
  display: block;
  margin-top: 8px;
  border-radius: 2px;
}

p {
  color: #555;
  margin-bottom: 15px;
  font-size: 1rem;
}

/* ===================== HEADER ===================== */
.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 40px 20px;
  position: fixed;
  top: 0;
  width: 100%;
  background: transparent;
  transition: all 0.4s ease;
  z-index: 1000;
}

.main-header.scrolled {
  background: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  padding: 20px 40px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 30px;
}

.logo img {
  max-height: 80px;
  transition: max-height 0.4s ease;
}

.main-header.scrolled .logo img {
  max-height: 50px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 25px;
  transition: right 0.4s ease;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.main-header.scrolled .nav-menu a {
  color: #000;
}

.right-actions {
  display: flex;
  align-items: center;
}

.btn-filled {
  background: #ffcc00;
  color: #fff;
  padding: 10px 18px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn-filled:hover {
  background: #d99a00;
  transform: translateY(-2px);
}

/* ===================== TOP BAR ===================== */
.top-bar {
  background: #222;
  color: #fff;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 8px 20px;
  font-size: 14px;
}

.top-bar .social-icons i {
  margin: 0 10px;
  cursor: pointer;
  color: #fff;
  transition: color 0.3s ease;
}

.top-bar .social-icons i:hover {
  color: #ffcc00;
}

.top-bar .contact {
  border-left: 1px solid #fff;
  padding-left: 12px;
  margin-left: 10px;
  color: #fff;
  text-decoration: none;
  pointer-events: auto !important;
  position: relative;
  display: inline-block;
}

.top-bar .contact:hover {
  color: #ffcc00;
}

/* ===================== DROPDOWN MENU ===================== */
.dropdown {
  position: relative;
  cursor: pointer;
}

.dropdown span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  z-index: 500;
}

.dropdown-content a {
  display: block;
  padding: 10px 15px;
  color: #000;
  text-decoration: none;
  transition: background 0.3s ease;
}

.dropdown-content a:hover {
  background: #ffcc00;
  color: #fff;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* ===================== CONTACT HERO SECTION ===================== */
.About-hero {
  position: relative;
  height: 55vh;
  background: url('/Assets/Images/Other_hero/legal-document.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.About-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.About-hero .hero-content {
  position: relative;
  z-index: 1;
  padding: 20px;
}

.About-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.About-hero p {
  font-size: 1.2rem;
  color: #f0f0f0;
  max-width: 600px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
  .About-hero {
    height: 100vh;
  }

  .About-hero h1 {
    font-size: 2rem;
  }

  .About-hero p {
    font-size: 1rem;
  }
}

/* ===================== GLOBAL ===================== */
section {
  padding: 80px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===================== ABOUT SECTION ===================== */
.about-section {
  background: #ffffff;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.about-image {
  flex: 1 1 40%;
  min-width: 300px;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.about-content {
  flex: 1 1 55%;
}

.about-content h2 {
  color: #002b5b;
  margin-bottom: 15px;
  font-size: 2rem;
}

.about-content p {
  margin-bottom: 15px;
  line-height: 1.7;
  color: #333;
}

.about-content strong {
  color: #002b5b;
}

/* ===================== MISSION SECTION ===================== */
.mission-section {
  background: #f5f7fa;
  text-align: center;
}

.mission-section h2 {
  color: #002b5b;
  margin-bottom: 40px;
}

.mission-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.mission-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}

.mission-card h3 {
  color: #002b5b;
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.mission-card p {
  color: #333;
}

/* ===================== FOCUS SECTION ===================== */
.focus-section {
  background: #ffffff;
  text-align: center;
}

.focus-section h2 {
  color: #002b5b;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.focus-item {
  background: #f5f7fa;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.focus-item:hover {
  transform: translateY(-6px);
}

.focus-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.focus-item h4 {
  color: #002b5b;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

/* ===================== APPROACH SECTION ===================== */
.approach-section {
  background: #f5f7fa;
}

.approach-section h2 {
  color: #002b5b;
  text-align: center;
  margin-bottom: 40px;
}

.approach-list {
  display: grid;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.approach-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.approach-item:hover {
  transform: translateY(-4px);
}

.approach-item span {
  background: #fcaf1e;
  color: #002b5b;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 50%;
  min-width: 40px;
  text-align: center;
}

/* ===================== IMPACT SECTION ===================== */
.impact-section {
  background: linear-gradient(#ffcc00, #f3c81f, #fff);
  color: #002b5b;
  text-align: center;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.impact-section h2 {
  color: #002b5b;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 50px;
  text-transform: uppercase;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 35px;
  margin-top: 40px;
  justify-content: center;
}

.impact-box {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 45px 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  transform: translateY(30px) scale(0.98);
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  border-top: 5px solid #002b5b;
}

.impact-box:nth-child(2) { animation-delay: 0.15s; }
.impact-box:nth-child(3) { animation-delay: 0.3s; }
.impact-box:nth-child(4) { animation-delay: 0.45s; }

.impact-box:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  border-top-color: #fcaf1e;
}

.impact-box h3 {
  font-size: 2.6rem;
  color: #002b5b;
  margin-bottom: 10px;
  font-weight: 800;
  transition: all 0.3s ease;
}

.impact-box:hover h3 {
  color: #fcaf1e;
  transform: scale(1.08);
}

.impact-box p {
  color: #333;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.4px;
  margin: 0;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .impact-section {
    padding: 70px 15px;
  }

  .impact-box h3 {
    font-size: 2rem;
  }
}
 
.counted {
  animation: pulse 0.4s ease-in-out;
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); color: #fcaf1e; }
  100% { transform: scale(1); color: #002b5b; }
}


/* ===================== JOIN US CTA ===================== */
.join-section {
  background: #fff;
  color: #000;
  text-align: center;
}

.join-section h2 {
  color: #000;
  margin-bottom: 15px;
}

.join-section p {
  max-width: 700px;
  margin: 0 auto 30px auto;
  color: #333;
  font-weight: 500;
}

.btn-join {
  background: #ffcc00;
  color: #fff;
  padding: 14px 28px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  font-size: 1rem;
}

.btn-join:hover {
  background: #d99a00;
  transform: translateY(-2px);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }

  section {
    padding: 60px 15px;
  }

  h2 {
    font-size: 1.7rem;
  }
}

/* ===================== OUR MEMBERS SECTION ===================== */
.members-section {
  background: linear-gradient(180deg, #ffffff, #f5f7fa);
  padding: 90px 20px;
  text-align: center;
  position: relative;
}

.members-section h2 {
  color: #002b5b;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.section-intro {
  color: #555;
  font-size: 1rem;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 35px;
  justify-items: center;
}

.member-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  padding: 25px 20px 30px;
  width: 100%;
  max-width: 260px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.member-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(252,175,30,0.2), rgba(255,204,0,0.15));
  transition: 0.6s;
}

.member-card:hover::before {
  left: 0;
}

.member-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.member-img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 4px solid #fcaf1e;
  box-shadow: 0 4px 12px rgba(252, 175, 30, 0.3);
  transition: 0.4s ease;
}

.member-card:hover .member-img {
  transform: scale(1.05);
}

.member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-card h3 {
  color: #002b5b;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.member-card .role {
  color: #555;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

/* Responsive */
@media (max-width: 768px) {
  .members-section {
    padding: 70px 15px;
  }

  .member-card {
    max-width: 300px;
  }

  .member-img {
    width: 110px;
    height: 110px;
  }
}

/* ===================== EXTENDED TEAM SECTION ===================== */
.extended-team-section {
  background: #f5f7fa;
  text-align: center;
  padding: 90px 20px;
}

.extended-team-section h2 {
  color: #002b5b;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.section-intro {
  color: #555;
  font-size: 1rem;
  margin: 0 auto 50px;
  max-width: 700px;
}

.extended-team-slider {
  width: 100%;
  padding-bottom: 60px;
}

.team-card {
  background: #fff;
  border-radius: 16px;

  padding: 25px 20px 30px;
  max-width: 260px;
  margin: auto;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.team-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 15px;
  overflow: hidden;
  border: 4px solid #fcaf1e;
  box-shadow: 0 4px 12px rgba(252, 175, 30, 0.3);
  transition: transform 0.4s ease;
}

.team-card:hover .team-img {
  transform: scale(1.05);
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h3 {
  color: #002b5b;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.team-card .role {
  color: #666;
  font-size: 0.95rem;
  font-weight: 500;
}

/* ===================== SWIPER PAGINATION ===================== */
.swiper-pagination {
  position: relative;
  bottom: -20px; /* pushes it below the cards */
  margin-top: 40px; /* adds spacing from the cards */
  text-align: center;
}

.swiper-pagination-bullet {
  background: #1a1a1a;
  opacity: 0.3;
  width: 10px;
  height: 10px;
  margin: 0 6px;
  border-radius: 50%;
  transition: opacity 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: #fcaf1e;
  opacity: 1;
  transform: scale(1.2);
}


/* Responsive */
@media (max-width: 768px) {
  .extended-team-section {
    padding: 70px 15px;
  }

  .team-card {
    max-width: 300px;
  }
}


/* ===================== FOOTER ===================== */
footer {
  background: linear-gradient(135deg, #1a1a1a, #333);
  color: #fff;
  padding: 50px 20px 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-logo h2 {
  font-size: 26px;
  margin-bottom: 15px;
  color: #ffcc00;
}

.footer-logo p {
  color: #ccc;
}

.footer-links h3 {
  margin-bottom: 15px;
}

.footer-links ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 6px 20px;
}

.footer-links a {
  position: relative;
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -3px;
  background: #ffcc00;
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #ffcc00;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-social a {
  margin-right: 10px;
  font-size: 18px;
  color: #ccc;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #ffcc00;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 14px;
  color: #aaa;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-contact p {
  color: #ccc;
  margin: 8px 0;
}

.footer-contact i {
  color: #ffcc00;
  margin-right: 8px;
}

/* ===================== CARDS & ANIMATIONS ===================== */
.card {
  background: #fff;
  border-radius: 10px;
  height: 400px;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.card-hover {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
  0% { opacity: 0; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1); }
}

.slide-text.active h1 {
  animation: fadeInUp 0.8s ease forwards;
}

.slide-text.active p {
  animation: fadeInUp 1s ease forwards;
}

.slide-text.active .btn-filled {
  animation: zoomIn 1.2s ease forwards;
}

/* ===================== MOBILE ===================== */
.menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
  z-index: 1001;
}

@media (max-width: 768px) {
  section {
    padding: 60px 20px;
  }

  .about-container {
    flex-direction: column;
  }

  .about-content,
  .about-image {
    flex: 1 1 100%;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -250px;
    height: 100vh;
    width: 250px;
    flex-direction: column;
    background: #fff;
    padding: 20px;
    box-shadow: -2px 0 8px rgba(0,0,0,0.15);
    transition: right 0.4s ease;
  }

  .nav-menu.show {
    right: 0;
  }

  .nav-menu a {
    color: #000;
    padding: 10px 0;
    font-size: 1rem;
  }

  .menu-toggle {
    display: block;
    color: #fff;
  }

  .main-header.scrolled .menu-toggle {
    color: #000;
  }

  .slider-container img {
    height: 45vh;
  }

  .slide-text h1 {
    font-size: 1.2rem;
  }

  .slide-text p {
    font-size: 0.95rem;
  }

  .work-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .work-cards {
    grid-template-columns: 1fr;
  }

  .card {
    height: 280px;
  }

  .card-front img {
    width: 50px;
    height: 50px;
  }
}

