/* Header Styling */


.navbar {
  border-bottom: 1px solid #ddd;
}

.navbar-brand img {
  max-height: 50px;
}

.nav-link {
  color: #000 !important;
  font-weight: 500;
  padding: 10px 15px;
  transition: color 0.3s ease;
}

.nav-link:hover,
.dropdown-menu a:hover {
  color: #F16F01 !important;
}

.dropdown-menu {
  border-radius: 0;
  border: none;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}

/* Quote Button */
.quote-btn {
  background-color: #F16F01;
  padding: 8px 20px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease;
  font-weight: 600;
}

.quote-btn:hover {
  background-color: #d45a00;
  color: #fff;
}


/* Footer Section */
.footer-section {
  background-color: #0c0d2c;
  color: #fff;
  font-size: 15px;
}

.footer-title {
  font-weight: bold;
  margin-bottom: 15px;
}

.footer-list {
  list-style: none;
  padding-left: 0;
}

.footer-list li {
  margin-bottom: 10px;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
}

.footer-list i {
  min-width: 20px;
}

.social-icons a {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  background-color: #2a2d4d;
  color: #fff;
  margin-right: 8px;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.social-icons a:hover {
  background-color: #e10b1c;
}

.dot-box {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #e10b1c;
  margin-right: 10px;
  margin-top: 6px;
  border-radius: 2px;
}

.footer-bottom a {
  text-decoration: none;
  font-size: 14px;
}

.footer-bottom a:hover {
  text-decoration: underline;
}
/* Scroll to Top Button */
#scrollBtn {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 25px;
  z-index: 999;
  border: none;
  outline: none;
  background-color: #F16F01;
  color: white;
  cursor: pointer;
  padding: 10px 14px;
  border-radius: 50%;
  font-size: 16px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.3);
  transition: opacity 0.4s;
}

#scrollBtn:hover {
  background-color: #d45a00;
}

/* Banner Section */
.banner-section {
  width: 100%;
  background-color: #f9f9f9;
  overflow: hidden;
}

.banner-image-wrapper {
  height: 500px; /* Fixed height for both sides */
}

.banner-image-wrapper img {
  object-fit: cover;
  height: 100%;
}

.banner-content {
  background-color: #2c333f;
  height: 500px; /* Match the image height */
}

.banner-text {
  max-width: 550px;
}

.small-title {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 5px;
}

.main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.desc {
  color: #bbb;
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.get-started-link {
  font-weight: 600;
  color: #f59e0b;
  border-left: 3px solid #f59e0b;
  padding-left: 10px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease-in-out;
}

.get-started-link:hover {
  color: #fff;
}

.small-icon {
  font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 767.98px) {
  .banner-image-wrapper {
    height: auto;
  }

  .banner-content {
    height: auto;
    padding: 3rem 1.5rem;
    text-align: center;
  }

  .main-title {
    font-size: 1.8rem;
  }

  .desc {
    font-size: 1rem;
  }
}
/* Info Cards Section */
.info-cards-section {
  background-color: #ffffff;
}

.info-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.info-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.info-card .icon i {
  font-size: 4.5rem;
  color: #E97103;
}

.info-card h4 {
  font-size: 1.4rem;
  color: #000;
}

.info-card p {
  color: #444b5a;
  font-size: 1rem;
  line-height: 1.6;
}

/* Core Values Section */
.core-values-section {
  background-color: #ffffff;
}

.core-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
}

.core-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
}

.btn-core {
  background-color: #E97103;
  color: #fff;
  border-radius: 30px;
  padding: 10px 25px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-core:hover {
  background-color: #005C30;
  color: #fff;
}

/* Play Button Overlay */
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #005C30;
  color: #fff;
  font-size: 2rem;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s ease;
}

.play-button:hover {
  background-color: #E97103;
}

/* Responsive */
@media (max-width: 767.98px) {
  .info-card .icon i {
    font-size: 3.5rem;
  }

  .info-card {
    padding: 2rem 1.5rem;
  }

  .core-title {
    font-size: 1.8rem;
  }

  .play-button {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}
.projects-section ul.projects-list {
  list-style-type: disc;
  padding-left: 1rem;
  color: #333;
  font-size: 1.05rem;
  line-height: 1.8;
}

.projects-section ul.projects-list li::marker {
  color: #E97103;
}
/* Already existing styles */
.data-policy-section {
  background-color: #fff;
}

.policy-title {
  color: #E97103;
  font-size: 1.8rem;
  font-weight: 700;
}

.policy-list {
  padding-left: 1.2rem;
  color: #333;
  line-height: 1.7;
  font-size: 1.05rem;
}

.policy-list li::marker {
  color: #E97103;
}

.data-policy-section p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
}

/* New border-radius for second image */
.custom-rounded {
  border-radius: 25px;
}

/* About Section */
.about-label {
  letter-spacing: 1px;
  font-size: 0.9rem;
}
.check-icon {
  font-size: 1.4rem;
  color: #3c50ff;
  margin-top: 5px;
}
.btn-orange {
  background-color: #E97103;
  color: #fff;
  font-weight: 600;
  border: none;
}
.btn-orange:hover {
  background-color: #cf5f01;
  color: #fff;
}
.experience-box {
  border-radius: 8px;
  min-width: 160px;
}
/* Custom bullet/check icon style */
.about-section .check-icon i {
  color: #E97103;
  font-size: 1.2rem;
  margin-top: 4px;
}

/* Style for text next to the icon */
.about-section h5.fw-bold.mb-1 {
  font-size: 1rem;
  font-weight: bold;
  color: #000;
}

/* Orange Button */
.btn-orange {
  background-color: #E97103;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-weight: 500;
  transition: 0.3s;
}
.btn-orange:hover {
  background-color: #cc5e02;
  color: #fff;
}

/* Orange Text Color */
.text-orange {
  color: #E97103;
}

/* Service Item Box */
.service-item {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  transition: 0.3s;
}
.service-item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.service-item i {
  color: #E97103;
}
.partners-section {
  background-color: #fff;
}

.partner-logo {
  max-height: 80px;
  opacity: 0.85;
  transition: transform 0.3s ease;
}

.partner-logo:hover {
  transform: scale(1.05);
  opacity: 1;
}

.partner-name {
  margin-top: 0.5rem;
  font-size: 14px;
}
.team-section {
  background-color: #f9fcfd;
}

.team-photo {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: block;
  margin: 0 auto;
}

.team-photo:hover {
  transform: scale(1.05);
}

.team-member h5 {
  font-size: 1.15rem;
}

.team-desc {
  font-size: 14px;
  color: #6c757d;
  margin-top: 0.5rem;
}
/* =======================
   Testimonial Section
======================= */
.testimonial-card {
  transition: all 0.3s ease;
  border-radius: 10px;
  background: #fff;
}

.testimonial-card:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.testimonial-name-bar {
  background-color: #4fcfa3; /* Light green left side */
  padding: 5px 10px 5px 0;
  background-image: linear-gradient(to right, #4fcfa3 50%, #4fa3f3 50%);
  background-size: 200% 100%;
  background-position: left bottom;
  transition: all 0.3s ease-in-out;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.testimonial-name-bar span {
  background-color: #4fa3f3;
  padding: 8px 15px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  display: inline-block;
}

.testimonial-card img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border: 2px solid #fff;
}
/* =======================
   Project Section Styles
======================= */
.projects-section {
  background-color: #ffffff;
}

.projects-section .image-stack {
  position: relative;
}

.projects-section .image-stack .top-img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.projects-section .image-stack .bottom-img {
  position: absolute;
  bottom: -40px;
  left: 40px;
  width: 80%;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
  .projects-section .image-stack .bottom-img {
    position: static;
    margin-top: 1.5rem;
    width: 100%;
  }
}
/* Address Boxes */
.address-section .info-box {
  background: linear-gradient(to bottom right, #fdf4ff, #eef9fd);
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.address-section .info-box:hover {
  transform: translateY(-5px);
}

.address-section h5 {
  font-weight: 600;
  color: #000;
}

.contact-form-section h2 {
  color: #002a3a;
  font-size: 26px;
}

.contact-form-section .form-control {
  border-radius: 8px;
  padding: 10px 15px;
  border: 1px solid #ccc;
}

.contact-form-section .btn-danger {
  background-color: #d63031;
  border: none;
  font-weight: 600;
}

@media (max-width: 768px) {
  .contact-form-section .row {
    flex-direction: column-reverse;
  }

  .contact-form-section h2 {
    font-size: 22px;
    text-align: center;
  }
}
/* ===== About Us Section ===== */
.about-us-section {
  background-color: #fff;
}

.section-subtitle {
  color: #E97103;
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  margin-bottom: 10px;
  position: relative;
}

.section-subtitle::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 2px;
  background-color: #E97103;
  margin-left: 10px;
  vertical-align: middle;
}

.about-us-section h2 {
  color: #0d1b2a;
  font-size: 32px;
  line-height: 1.4;
}

.about-us-section p {
  color: #6c757d;
  font-size: 16px;
}

.text-highlight {
  color: #E97103;
  font-size: 18px;
}

.btn-quote {
  background-color: #E97103;
  color: #fff;
  font-weight: 600;
  padding: 10px 20px;
  border: none;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-quote:hover {
  background-color: #c95f00;
  color: #fff;
}

.about-img-group {
  position: relative;
}

.about-img-group .main-img {
  width: 100%;
  border-radius: 10px;
}

.about-img-group .overlay-img {
  position: absolute;
  width: 60%;
  bottom: -20px;
  right: 0;
  border: 4px solid #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* ===== Responsive Styling ===== */
@media (max-width: 768px) {
  .about-img-group .overlay-img {
    position: relative;
    width: 100%;
    bottom: 0;
    right: 0;
    margin-top: 20px;
  }
}
/* ===== Team Profile Cards ===== */
.nobab-card {
  border: 2px solid #E97103;
  border-radius: 10px;
  background: #fff;
}

.nobab-name {
  font-weight: 700;
  font-size: 22px;
}

.nobab-qualifications {
  font-size: 16px;
  color: #555;
  border-bottom: 3px solid gold;
  display: inline-block;
  padding-bottom: 4px;
  margin-bottom: 15px;
}

.nobab-desc {
  text-align: justify;
  font-size: 15px;
  line-height: 1.7;
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .nobab-name {
    font-size: 20px;
  }
  .nobab-desc {
    font-size: 14px;
  }
}
.team-heading-line {
  width: 80px;
  height: 4px;
  background-color: #E97103;
  margin: 0 auto 20px auto; /* centre & add spacing below */
  border-radius: 2px;
}
/* =======================
   Our Words Section
   ======================= */

/* Orange heading line under the title */
.team-heading-line {
  width: 80px;
  height: 4px;
  background-color: #E97103;
  margin: 0 auto 24px auto;
  border-radius: 2px;
}

/* Card with E97103 border */
.ourwords-card {
  border: 2px solid #E97103;
  border-radius: 12px;
  background: #fff;
}

/* Comfortable reading on desktop & mobile */
.quote-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #333;
}

/* Gold separator before signature (#FFD700) */
.gold-sep {
  width: 120px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

/* Responsive tweaks for mobile readability */
@media (max-width: 576px) {
  .quote-text {
    font-size: 1rem;
    line-height: 1.8;
  }
}
/* ===================== Equality & Diversity Policy (EDP) ===================== */
.text-orange { color: #E97103 !important; }

.edp-hero { background: #fff; }
.edp-underline {
  width: 70px; height: 4px;
  background: #E97103; border-radius: 2px;
}

.edp-intro { background: #fff; }
.edp-image {
  border-radius: 25px;
  width: 100%;
  height: auto;
  object-fit: cover;
}


.edp-kicker { color: #E97103; letter-spacing: .08em; }

.edp-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 14px;
}

.edp-quote {
  font-style: italic;
  border-left: 4px solid #E97103;
  padding-left: 12px;
  color: #555;
}

.edp-list {
  list-style: none; padding-left: 0; margin: 0;
}
.edp-list li {
  position: relative; padding-left: 28px; margin-bottom: .6rem; color: #333;
}
.edp-list li::before {
  content: "\f058"; /* fa-regular fa-circle-check */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #E97103;
  position: absolute; left: 0; top: 0;
}

/* Responsive niceties */
@media (max-width: 991.98px) {
  .edp-hero h1 { font-size: 2rem; }
  .edp-quote { margin-top: .5rem; }
}

