@font-face {
  font-family: 'Urbanist';
  src: url('./fonts/Urbanist.ttf') format('truetype');
  font-weight: 100 900;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Urbanist", sans-serif !important;
}

body {
  font-family: "Urbanist", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.a-href-reset {
  text-decoration: none;
  display: block;
  width: fit-content;
}

/* Navigation Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 1000;
  transition: all 0.3s ease;
  width: 100%;
  border-radius: 24px;
}

.nav-container {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo .logo {
  height: 53px;
  width: auto;
}

.nav-logo {
  height: 53px !important;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #333;
  border: 1px solid #171717;
  padding: 8px 16px;
  border-radius: 24px;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 40px !important;
  background-color: transparent;
}

.download-btn:hover {
  background: #f8f9fa;
  border-color: rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.download-icon {
  width: 16px;
  height: 16px;
}

.language-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
  border: 1px solid #171717;
  padding: 8px 16px;
  border-radius: 24px;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 40px;
  width: 40px;
  justify-content: center;
  background-color: transparent;
}

.language-btn:hover {
  background: #f8f9fa;
  border-color: rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.language-icon {
  width: 18px;
  height: 18px;
  stroke: #333;
}

.hamburger {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-icon {
  width: 24px;
  height: 24px;
}

/* Mobile Menu Styles */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  width: 100%;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 85px;
  right: 0px;
  margin: 20px;
  max-width: 496px;
  width: 100%;
  height: calc(100% - 40px);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  color: white;
  z-index: 1200;
  border-radius: 24px;
  background: linear-gradient(0deg, rgba(0, 99, 55, 0.00) 0%, #006337 100%);
}

@media (max-width: 768px) {
  .mobile-menu {
    width: 90%;
  }
  /* New Sections Styling */
.section-container {
  max-width: 1920px !important;
  width: 100%;
  margin: 0 auto;
  padding: 80px 20px !important;
}

}

.mobile-menu-overlay.active .mobile-menu {
  transform: translateY(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
}

.mobile-logo {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
}

.close-menu {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.close-menu span {
  position: absolute;
  width: 24px;
  height: 2px;
  background: white;
  transition: all 0.3s ease;
}

.close-menu span:first-child {
  transform: rotate(45deg);
}

.close-menu span:last-child {
  transform: rotate(-45deg);
}

.mobile-menu-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin-bottom: 3rem;
  padding: 24px;
  padding-top: 131px;
}

.mobile-menu-icon {
  width: 52px;
  height: 41px;
  position: absolute;
  left: 22px;
  top: 73px;
}

.mobile-nav-link {
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  color: #FFF;
  font-family: Urbanist;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  padding: 16px 8px !important;
  display: block;
}

.mobile-nav-link:hover {
  color: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

.mobile-menu-footer {
  padding: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
  max-width: 300px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.mobile-download-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* Hero Section Styles */
.hero {
  position: relative;
  height: calc(100vh + 80px);
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(37, 99, 235, 0.8) 0%,
      rgba(59, 130, 246, 0.6) 50%,
      rgba(147, 51, 234, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  color: white;
}

.hero-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-title {
  font-size: 80px;
  font-weight: 700;
  line-height: normal;
  max-width: 800px;
  margin-bottom: 1.5rem;
  font-family: 'Urbanist', sans-serif;
}

.hero-description {
  font-size: 24px;
  line-height: normal;
  margin-bottom: 2.5rem;
  font-weight: 400;
  opacity: 0.93;
  font-family: 'Urbanist', sans-serif;

}

.hero-actions {
  display: flex;
  gap: 1rem;
  
}

.hero-download-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  height: 53.6px;

  color: white;
  border: 2px solid rgba(255, 255, 255, 0.4);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 32.4px;
  background: rgba(19, 19, 19, 0.2);
  font-family: 'Urbanist', sans-serif;

}

.hero-download-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-container {
    padding: 0 1.5rem;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-description {
    font-size: 16px;
  }

  .download-btn {
    display: none;
  }

  .hero-container {
    padding: 0 1.5rem;
  }
}

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

  .nav-container {
    padding: 0 1rem;
    height: 70px;
  }

  .nav-logo .logo {
    height: 32px;
  }

  .nav-logo {
    height: 32px !important;
  }

  .hero {
    min-height: 500px;
  }

  .hero-container {
    padding: 0 1rem;
  }

  .hero-title {
    margin-bottom: 1rem;
  }

  .hero-description {
    margin-bottom: 2rem;
  }

  .hero-description br {
    display: none;
  }
}

@media (max-width: 480px) {
  .nav-container {
    height: 60px;
  }

  .nav-logo .logo {
    height: 28px;
  }

  .nav-logo {
    height: 28px !important;
  }

  .hero-download-btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }

  .mobile-nav-link {
    font-size: 1.3rem;
  }

  .mobile-menu-header {
    padding: 1.5rem;
  }

  .mobile-menu-footer {
    padding: 1.5rem;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title,
.hero-description,
.hero-actions {
  animation: fadeInUp 0.8s ease forwards;
}

.hero-description {
  animation-delay: 0.2s;
}

.hero-actions {
  animation-delay: 0.4s;
}

/* Scrolled Navbar Styles */
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Toast Notification Styles */
.toast {
  position: fixed;
  top: 100px;
  right: 20px;
  background: #2563eb;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 3000;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  font-weight: 500;
}

/* Animation classes */
.animate-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Additional hover effects */
.nav-logo:hover .logo {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.hero-title {
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Focus states for accessibility */
.nav-link:focus,
.download-btn:focus,
.hero-download-btn:focus,
.mobile-nav-link:focus {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
  border-radius: 4px;
}

.hamburger:focus,
.close-menu:focus {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
  border-radius: 4px;
}

/* Loading state for buttons */
.download-btn.loading,
.hero-download-btn.loading,
.mobile-download-btn.loading {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}

.download-btn.loading::after,
.hero-download-btn.loading::after,
.mobile-download-btn.loading::after {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-left: 0.5rem;
}

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

/* Profile Sections Styles */
.profile-section {
  margin: 100px 0;
  position: relative;
  overflow: hidden;
}

.chairman-section {
  background-color: #f8f9fa;
  padding: 100px 0;
  margin: 0;
}

.ceo-section {
  background-color: #ffffff;
}

.profile-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  opacity: 0.3;
  z-index: 0;
}

.chairman-section::before {
  background-position: top -10% right -20%;
  background-size: 50%;
}

.ceo-section::before {
  background-image: url("../images/ceo-pattern.svg");
  background-position: bottom -10% left -20%;
  background-size: 50%;
  background-position: bottom -10% left -20%;
  background-size: 50%;
}

.profile-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.profile-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.profile-heading {
  font-size: 36px;
  font-weight: 500;
  color: #000;
  text-transform: capitalize;
  text-align: center;
}

.profile-title {
  font-size: 24px;
  font-weight: 700;
  color: #131313;
}

.profile-name {
  font-size: 36px;
  font-weight: 600;
  color: #000;
  line-height: 1.3;
}

.profile-description {
  font-size: 20px;
  line-height: 1.7;
  color: #505050;
  margin-bottom: 24px;
  font-weight: 500;
  line-height: normal;
  margin-top: 12px;
}

.profile-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #006337;
  border: 1px solid #006337;
  padding: 10px 20px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.profile-btn:hover {
  background: #1b8763;
  color: #fff;
}

.profile-btn:hover .read-more-icon {
  filter: brightness(0) invert(1);
}

.read-more-icon {
  width: 18px;
  height: 18px;
  transition: filter 0.3s ease;
}

.profile-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.person-img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.1));
}

/* Executive Summary Section */
.executive-summary-section {
  padding: 58px 82px;
  border-radius: 77px;
  border: 7px solid rgba(0, 99, 55, 0.58);
  background: #fff;
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.16);
  border-radius: 40px;
  color: #000;
}

.card-pattern {
  position: absolute;
  top: -2px;
  left: 28px;
  width: 91px;
  height: 57px;
}

.line-pattern {
  background-color: #006337;
  width: 65.5px;
  height: 2px;
  position: absolute;
  top: -0.5px;
  left: 42px;
}

.summary-container {
  max-width: 100%;
}

.summary-main {
  margin-bottom: 60px;
}

.summary-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
}

.summary-description {
  font-size: 18px;
  max-width: 800px;
  line-height: 1.6;
  margin-bottom: 32px;
  color: #505050;
}

.summary-btn {
  background-color: #006337db;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  border: 0;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.summary-btn:hover {
  background-color: #fff;
  color: #004d2b;
}

.summary-btn:hover .read-more-icon {
  filter: none;
}

.summary-btn .read-more-icon {
  filter: brightness(0) invert(1);
}

.summary-objectives {
  margin-top: 40px;
}

.objectives-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 16px;
}

.objectives-description {
  font-size: 16px;
  max-width: 900px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #505050;
}

.objectives-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.objective-card {
  padding: 48px 23px;
  border-radius: 20px;
  text-align: left;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 2px solid rgba(19, 19, 19, 0.14);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(14.25px);
}

.card-icon {
  margin-bottom: 20px;
  width: 50px;
  height: 50px;
  margin-left: 29px;
}

.objective-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #505050;
}

/* Responsive Design for Executive Summary */
@media (max-width: 1200px) {
  .executive-summary-section {
    padding: 50px;
  }

  .objectives-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .executive-summary-section {
    padding: 40px;
    border-radius: 30px;
  }

  .objectives-grid {
    grid-template-columns: 1fr;
  }

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

/* Projects Slider Section */
.projects-slider-section {
  position: relative;
  height: 110vh;
  color: #fff;
  border-radius: 40px;
  margin: 80px 0;
  background-size: cover;
  background-position: center;
  transition: background-image 0.8s ease-in-out;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.projects-slider-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.65) 0%,
      rgba(0, 0, 0, 0.3) 35%,
      transparent 60%);
  z-index: 0;
}

.projects-swiper {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}

.swiper-wrapper {
  align-items: center;
}

.swiper-slide {
  display: flex;
  align-items: center;
  transition: opacity 0.5s;
  justify-content: center;
  height: 110vh;
}

.slide-content {
  max-width: 550px;
  margin-left: 150px;
  opacity: 0;
  z-index: 1000;
  position: relative;
  height: 110vh;
  display: flex;
  justify-content: space-between;
  padding: 100px 0;
  flex-direction: column;
  transition: opacity 0.6s ease-out 0.3s, transform 0.6s ease-out 0.3s;
}

.swiper-slide-active .slide-content {
  opacity: 1;
  transform: translateY(0);
}

.slide-tag {
  display: inline-block;
  padding: 6px 24px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 24px;
  color: #fff;
  width: fit-content;
}

.slide-title {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 32px;
}

.slide-info {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
}

.info-item img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.slide-description {
  font-size: 15px;
  line-height: 1.8;
  color: #fff;
  margin-bottom: 40px;
  max-width: 500px;
}

.slide-btn {
  background: #fff;
  color: #1a1a1a;
  border: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  transition: background-color 0.3s, color 0.3s;
}

.slide-btn:hover {
  background-color: #f0f0f0;
}

/* Slider Pagination */
.slider-pagination {
  position: absolute;
  left: 60px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  z-index: 10;
}

.slider-arrow {
  background: transparent;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.slider-arrow img {
  filter: brightness(0) invert(1);
}

.swiper-button-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  border-color: rgba(255, 255, 255, 0.4);
}

.swiper-pagination-progressbar {
  position: relative !important;
  height: 150px !important;
  width: 4px !important;
  background-color: rgba(255, 255, 255, 0.3) !important;
  border-radius: 10px;
  top: auto !important;
  left: auto !important;
  margin: 20px 0;
}

.swiper-pagination-progressbar-fill {
  background-color: #fff !important;
  border-radius: 10px;
  transform-origin: top;
}

/* New Sections Styling */
.section-container {
  max-width: 1920px !important;
  width: 100% !important;
  margin: 0 auto;
  padding: 80px 40px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: 32px;
  font-weight: 500;
  color: #1a3a34;
}

.btn-read-more {
  background: none;
  border: none;
  color: #1a3a34;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

/* Achievements Section */
.achievements-section {
  background-color: #fff;
  max-width: 1920px;
  width: 100% !important;
  margin: 0 auto;
  padding: 0 40px 100px;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.achievements-title-2 {
  font-weight: bold;
  font-size: 32px;
  color: #006337;
  font-family: Inter;
  font-size: 39.392px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.achievement-card {
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  padding: 16px 21px 33px 24px;
  border-radius: 24px;
  border: 1px solid #006337;
  text-align: left;
}

.achievement-card img {
  margin-bottom: 16px;
  height: 49px;
}

.accordion-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item .accordion-header {
  width: 100%;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.accordion-bg-not-active {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 100;
}

.accordion-item.is-active .accordion-header {
  background-color: #006337;
  color: #fff;
}

.accordion-item.is-active .accordion-header img {
  filter: brightness(0) invert(1);
}

.accordion-arrow {
  margin-left: auto;
  transition: transform 0.3s ease;
}

.accordion-item.is-active .accordion-arrow {
  transform: rotate(180deg);
}

.accordion-content {
  display: none;
  padding: 24px 0;
}

.accordion-item.is-active .accordion-content {
  display: block;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.project-card {
  height: 300px;
  border-radius: 12px;
  background-image: url("../images/project-bg-1.png");
  /* Default, will be replaced */
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 32px;
  color: #fff;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  border-radius: 12px;
}

.project-card-info {
  position: relative;
  z-index: 2;
}

.project-card-info h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}

.project-card-info div {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

/* Sponsorships Section */
.sponsorships-section {
  background-color: #006337;

  background-size: cover;
}

.sponsorships-section .section-title,
.sponsorships-section .btn-read-more {
  color: #fff;
}

.sponsorships-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

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

.sponsorship-card {
  border: 1px solid white;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  color: #fff;
  font-size: 24px;
}

.sponsorship-card img {
  height: 60px;
  margin-bottom: 20px;
}

/* Certifications Section */
.certifications-section {
  background-color: #fff;
  padding-bottom: 80px;
}

.certifications-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 60px;
  position: relative;
}

.certifications-title {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
}

.certifications-description {
  max-width: 1130px;
  color: #333;
  margin-bottom: 80px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.line-certifications {
  min-width: 240px;
  height: 2px;
  background-color: #006337;
  margin-top: 10px;
}

.certifications-header .summary-btn {
  justify-self: end;
  grid-column: 2;
  position: absolute;
  top: 0;
  right: 0;
}

.certifications-body {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: flex-start;
}

.certifications-trophy img {
  width: 100%;
  max-width: 512px;
  width: 100%;
  height: 450px;
  object-fit: contain;
}

.certifications-trophy {
  width: 512px;
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 151px 40px;
  margin-left: 200px;
}

.award-item h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #000;
}

.award-item p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* Corporate Governance Section */
.corporate-governance-section {
  height: 500px;
  background-image: url("./images/governorce-footer.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  color: #fff;
  position: relative;
}

.corporate-governance-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.governance-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}

.governance-content button {
  width: fit-content;
}

.governance-content h2 {
  font-size: 48px;
  font-weight: 600;
}

.governance-content p {
  font-size: 18px;
  margin: 16px 0 32px;
  max-width: 500px;
}

.btn-download-report {
  background-color: #fff;
  color: #1a3a34;
  border: none;
  border-radius: 50px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

/* Footer */
.footer {
  padding: 24px;
  text-align: center;
  background-color: #fff;
  color: #6c757d;
  font-size: 14px;
}

/* Responsive Design for Profile Sections */
@media (max-width: 992px) {
  .profile-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .profile-content.reverse {
    grid-template-columns: 1fr;
  }

  .profile-text {
    max-width: 100%;
    order: 2;
  }

  .profile-image-container {
    order: 1;
    height: 400px;
  }

  .profile-name {
    font-size: 32px;
  }

  .profile-description {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .person-img {
    max-width: 280px;
  }

  .pattern-bg {
    max-width: 350px;
    max-height: 350px;
  }
}

@media (max-width: 480px) {
  .profile-section {
    padding: 60px 0;
  }

  .profile-name {
    font-size: 28px;
  }

  .profile-description {
    font-size: 14px;
  }

  .profile-btn {
    padding: 10px 20px;
    font-size: 14px;
    height: 44px;
  }

  .profile-image-container {
    height: 320px;
  }

  .person-img {
    max-width: 240px;
  }

  .pattern-bg {
    max-width: 280px;
    max-height: 280px;
  }
}

/* Animation for profile sections */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.business-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(4, 1fr) !important;
}

@media (max-width: 1024px) {
  .business-grid {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}

.overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.overlay-white {
  position: absolute;
  height: 356px;
  width: 100%;
  bottom: 0;
  left: 0;
  background: linear-gradient(to top, #F6F6F6, transparent);
  z-index: 100000;
}

@media (max-width: 1024px) {
  .overlay-white {
    display: none;
  }
  .profile-container .profile-text {
    padding-bottom: 20px
  }
}

.download-btn span {
  font-size: 18px;
}

.download-btn {
  height: 54px !important;
  border-radius: 100px !important;
  padding: 10.8px 25px;
}

.download-btn .download-icon {
  width: 32px;
  height: 32px;
}

.menu-icon {
  width: 32px;
  height: 32px;
}

@media (max-width: 768px) {
  .nav-actions .download-btn {
    display: none;
  }
}
@media (min-width: 1700px) {
  .main-shape-excutive {
    right: 0 !important;
  }
}
.projects-slider-section .info-item img {
  width: 40px;
  height: 40px;
}
.projects-slider-section .info-item span {
  font-size: 20px;
}
.projects-slider-section .slide-content p {
  font-size: 18px;
  max-width: 525px !important;
}
.projects-slider-section .slide-content a {
  border-radius: 12px !important;
border: 1px solid var(--main-black, #131313);
background: #FFF;
}
