/* =====================
   Variables
===================== */
/* =====================
   Mixins
===================== */
h2 {
  font-weight: 600;
  font-size: 2.3rem !important;
}

/* =====================
   Base Styles
===================== */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

/* =====================
   Header
===================== */
.header-section {
  padding: 20px 0;
  background-color: #000;
  border-bottom: 1px solid #333;
}
.header-section .logo-container img {
  max-height: 60px;
}
.header-section .email-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.header-section .email-container a {
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.3s ease;
}
.header-section .email-container a:hover {
  color: #d4af37;
}
.header-section .email-container i {
  color: #fff;
}

/* =====================
   Section Heading
===================== */
.content-section, #commitment, #our-role, #expertise, #philosophy {
  padding: 80px 0;
  background: linear-gradient(135deg, #fff 0%, #f5f5f5 100%);
}
.content-section .row, #commitment .row, #our-role .row, #expertise .row, #philosophy .row {
  align-items: stretch;
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
}
.content-section .col-md-6, #commitment .col-md-6, #our-role .col-md-6, #expertise .col-md-6, #philosophy .col-md-6 {
  display: flex;
  align-items: stretch;
}
.content-section .content-wrapper, #commitment .content-wrapper, #our-role .content-wrapper, #expertise .content-wrapper, #philosophy .content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 40px;
  background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
  border-radius: 20px;
  border-left: 5px solid #d4af37;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.content-section .content-title, #commitment .content-title, #our-role .content-title, #expertise .content-title, #philosophy .content-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 20px;
  position: relative;
}
.content-section .content-title::after, #commitment .content-title::after, #our-role .content-title::after, #expertise .content-title::after, #philosophy .content-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 35%;
  height: 3px;
  background: linear-gradient(90deg, #d4af37 0%, #f4d03f 100%);
  transition: width 0.5s ease;
}
.content-section .content-title:hover::after, #commitment .content-title:hover::after, #our-role .content-title:hover::after, #expertise .content-title:hover::after, #philosophy .content-title:hover::after {
  width: 100%;
}
.content-section .content-text, #commitment .content-text, #our-role .content-text, #expertise .content-text, #philosophy .content-text {
  font-size: 1.18rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 20px;
}
.content-section .image-wrapper, #commitment .image-wrapper, #our-role .image-wrapper, #expertise .image-wrapper, #philosophy .image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-section .image-wrapper img, #commitment .image-wrapper img, #our-role .image-wrapper img, #expertise .image-wrapper img, #philosophy .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.5s ease, filter 0.5s ease;
}
.content-section .image-wrapper:hover img, #commitment .image-wrapper:hover img, #our-role .image-wrapper:hover img, #expertise .image-wrapper:hover img, #philosophy .image-wrapper:hover img {
  transform: scale(1.1);
  filter: brightness(1.1);
}

#hero {
  padding: 50px 0;
  background: linear-gradient(135deg, #f5f5f5 0%, #fff 100%);
}
#hero .hr_title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}
#hero .hr_title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 35%;
  height: 3px;
  background: linear-gradient(90deg, #d4af37 0%, #f4d03f 100%);
  transition: width 0.5s ease;
}
#hero .hr_title:hover::after {
  width: 100%;
}

#about .content-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #555;
}
#about .content-text strong {
  color: #1a1a1a;
  font-weight: 600;
}
#about .about-tagline {
  margin-top: 25px;
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #1a1a1a;
  position: relative;
  padding-left: 18px;
}
#about .about-tagline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  background: linear-gradient(90deg, #d4af37, #f4d03f);
  transform: translateY(-50%);
  border-radius: 50%;
}
#about {
  /* Responsive */
}
@media (max-width: 768px) {
  #about .content-wrapper--center {
    padding: 25px 20px;
  }
  #about .content-text {
    font-size: 0.95rem;
  }
  #about .about-tagline {
    font-size: 1.18rem;
  }
}

@media (max-width: 768px) {
  #philosophy .row {
    flex-direction: column-reverse;
  }
}

#expertise .expertise-list {
  font-weight: 500;
}

#our-role .content-wrapper--center {
  max-width: 900px;
  margin: 0 auto 20px;
}
#our-role .content-title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#our-role .content-title::after {
  left: auto;
}
#our-role .role-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
#our-role .role-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #555;
}
#our-role .role-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  background: linear-gradient(90deg, #d4af37 0%, #f4d03f 100%);
  border-radius: 50%;
}
#our-role {
  /* Responsive */
}
@media (max-width: 768px) {
  #our-role .content-wrapper--center {
    text-align: left;
  }
  #our-role .role-list li {
    font-size: 0.95rem;
  }
}

#services {
  padding: 80px 0;
}
#services .service-box {
  height: 100%;
  padding: 35px 30px;
  background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
  border-radius: 18px;
  border-top: 3px solid #d4af37;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
#services .service-box:hover {
  transform: translateY(-4px);
}
#services .service-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 12px;
}
#services .service-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #d4af37 0%, #f4d03f 100%);
}
#services .service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
#services .service-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 1.18rem;
  color: #555;
  line-height: 1.6;
}
#services .service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  background: #d4af37;
  border-radius: 50%;
}

#capabilities {
  background: linear-gradient(330deg, rgba(255, 193, 7, 0.368627451) 0%, rgba(255, 193, 7, 0.0784313725) 100%);
  overflow-x: hidden;
  position: relative;
  top: 0;
  left: 0;
}
#capabilities .bg_set {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin-left: 20px;
}
#capabilities .bg_set .image-wrapper {
  height: 100%;
}
#capabilities .bg_set img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
#capabilities .capabilities-wrapper {
  padding: 80px 0;
  padding-right: 30px;
  width: 100%;
}
#capabilities .capabilities-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
#capabilities .capability {
  padding: 14px 18px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-left: 4px solid transparent;
  border-radius: 10px;
  font-size: 1.18rem;
  font-weight: 500;
  color: #1a1a1a;
  transition: all 0.3s ease;
  border-left-color: #1a1a1a;
}
#capabilities .capability:hover {
  border-left-color: #d4af37 !important;
  transform: translateX(4px) !important;
}
#capabilities {
  /* Responsive */
}
@media (max-width: 768px) {
  #capabilities .capabilities-wrapper {
    padding-right: 0;
  }
  #capabilities .capability {
    font-size: 0.95rem;
  }
  #capabilities .bg_set {
    display: none;
  }
}

#management-framework {
  padding: 90px 0;
  background: linear-gradient(135deg, #fff 0%, #f5f5f5 100%);
}
#management-framework .framework-header {
  max-width: 900px;
  margin: 0 auto 60px;
}
#management-framework .framework-title {
  font-size: 2.3rem;
  color: #1a1a1a;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 14px;
}
#management-framework .framework-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #d4af37 0%, #f4d03f 100%);
  transform: translateX(-50%);
}
#management-framework .framework-intro {
  font-size: 1.1rem;
  color: #555;
}
#management-framework .framework-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
#management-framework .framework-item {
  position: relative;
  padding: 30px 24px 28px;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  transition: all 0.3s ease;
}
#management-framework .framework-item:hover {
  transform: translateY(-4px);
}
#management-framework .framework-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}
#management-framework .framework-item p {
  font-size: 0.95rem;
  color: #555;
  margin: 0;
}
#management-framework .framework-icon {
  font-size: 1.6rem;
  color: #d4af37;
  margin-bottom: 14px;
  display: inline-block;
}
@media (max-width: 992px) {
  #management-framework .framework-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  #management-framework {
    padding: 60px 0;
  }
  #management-framework .framework-grid {
    grid-template-columns: 1fr;
  }
  #management-framework .framework-title {
    font-size: 1.6rem;
  }
}

#why_choose {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  /* Background image layer */
}
#why_choose .bg_set {
  position: absolute;
  inset: 0;
  z-index: 0;
}
#why_choose .bg_set img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.25);
}
#why_choose .bg_set::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.55) 55%, rgba(0, 0, 0, 0.25) 100%);
}
#why_choose {
  /* Foreground content */
}
#why_choose .container {
  position: relative;
  z-index: 1;
}
#why_choose .why-content {
  max-width: 520px;
}
#why_choose .why-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 14px;
}
#why_choose .why-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, #d4af37 0%, #f4d03f 100%);
}
#why_choose .why-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
#why_choose .why-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 18px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}
#why_choose .why-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 12px;
  height: 12px;
  background: linear-gradient(90deg, #d4af37 0%, #f4d03f 100%);
  border-radius: 50%;
}

/* Responsive */
@media (max-width: 768px) {
  #why_choose {
    padding: 70px 0;
  }
  #why_choose .why-title {
    font-size: 1.7rem;
  }
  #why_choose .why-list li {
    font-size: 0.95rem;
  }
}
/* =====================
   Responsive
===================== */
@media (max-width: 768px) {
  .hr_title {
    font-size: 1.5rem;
  }
  .content-section, #philosophy, #expertise, #our-role, #commitment {
    padding: 40px 0;
  }
  .content-section .content-wrapper, #philosophy .content-wrapper, #expertise .content-wrapper, #our-role .content-wrapper, #commitment .content-wrapper {
    padding: 25px 20px;
  }
  .content-section .content-title, #philosophy .content-title, #expertise .content-title, #our-role .content-title, #commitment .content-title {
    font-size: 1.3rem;
  }
  .content-section .content-text, #philosophy .content-text, #expertise .content-text, #our-role .content-text, #commitment .content-text {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}
@media (max-width: 576px) {
  .hr_title {
    font-size: 1.3rem;
  }
  .content-section, #philosophy, #expertise, #our-role, #commitment {
    padding: 30px 0;
  }
  .content-section .content-wrapper, #philosophy .content-wrapper, #expertise .content-wrapper, #our-role .content-wrapper, #commitment .content-wrapper {
    padding: 20px 15px;
  }
  .content-section .content-title, #philosophy .content-title, #expertise .content-title, #our-role .content-title, #commitment .content-title {
    font-size: 1.2rem;
  }
  .content-section .content-text, #philosophy .content-text, #expertise .content-text, #our-role .content-text, #commitment .content-text {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}

/*# sourceMappingURL=style.css.map */
