html {
  scroll-behavior: smooth;
}

body {
  font-family: "Urbanist", sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
span {
  color: #092e20;
}

main {
  max-width: 100%;
  width: 100%;
  overflow: hidden;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box; /* Ensure padding is included in width */
}

a {
  text-decoration: none;
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit; /* Inherit color from parent */
  display: inline-block; /* Ensure it behaves like a button */
  text-align: center; /* Center text inside the button */
  line-height: 1.6; /* Match line height for consistency */
  transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transitions */
}
button:hover {
  background-color: rgba(0, 0, 0, 0.1); /* Light background on hover */
  color: inherit; /* Maintain text color on hover */
}
button:focus {
  outline: 2px solid #007bff; /* Focus outline for accessibility */
  outline-offset: 2px; /* Offset for better visibility */
}
button:active {
  transform: scale(0.9); /* Slight scale down effect */
  transition: transform 0.1s ease; /* Quick transition for active state */
}

input,
textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
}

::-moz-placeholder {
  color: inherit;
  opacity: 0.6; /* Adjust as needed */
}

::placeholder {
  color: inherit;
  opacity: 0.6; /* Adjust as needed */
}

/* Responsive images */
section {
  margin-bottom: 80px; /* Space between sections */
}

form input,
form textarea {
  padding: 25px 15px;
  background-color: #f5f5f5;
  max-width: 100%;
  width: 100%;
  font-size: 16px;
}

.file-upload {
  margin: 20px 0;
}

.file-upload label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.file-upload input[type=file] {
  display: block;
  margin-bottom: 5px;
}

.file-upload small {
  color: #666;
  font-size: 0.8em;
}

header {
  position: fixed;
  z-index: 99;
  width: 100%;
  background: linear-gradient(to bottom, #ffffff, transparent);
  -webkit-backdrop-filter: blur(4px);backdrop-filter: blur(4px);
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}
.header .logo {
  max-width: 400px;
  width: 100%;
  height: auto;
}
.header nav ul {
  display: flex;
  gap: 40px;
}
.header nav ul li {
  list-style: none;
}
.header nav ul li a {
  color: inherit;
  text-decoration: none;
  font-weight: bold !important;
  font-size: 16px;
  transition: color 0.3s ease;
  position: relative;
}
.header nav ul li a:hover {
  color: #007bff;
}
.header nav ul li a.active {
  color: #ed3237;
  font-weight: 700;
}
.header nav ul li a.active::before {
  content: "";
  display: block;
  width: 80%;
  height: 2px;
  background-color: #ed3237; /* Change to your desired active link color */
  position: absolute;
  bottom: -5px; /* Adjust as needed */
  left: 50%;
  transform: translateX(-50%);
}
.header .hamburger {
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.header .hamburger span {
  width: 30px;
  height: 3px;
  background-color: #333; /* Change to your desired color */
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .hamburger,
  .mob {
    display: none; /* Hide hamburger icon on desktop */
  }
  .desk {
    display: block; /* Show desktop menu on larger screens */
  }
}
@media (max-width: 768px) {
  .desk {
    display: none; /* Hide desktop menu on mobile */
  }
  .hamburger,
  .mob {
    display: flex; /* Show hamburger icon on mobile */
  }
  .header nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #0098da; /* Change to your desired background color */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: left 0.3s ease;
  }
  .header nav.active {
    left: 0; /* Show the menu when active */
  }
  .header nav ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .header nav ul li {
    list-style: none;
    text-align: center;
  }
  .header nav ul li a {
    color: inherit;
    text-decoration: none;
    font-weight: bold !important;
    font-size: 16px;
    transition: color 0.3s ease;
  }
  .header nav ul li a:hover {
    color: #007bff; /* Change to your desired hover color */
  }
  .header nav .close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: #092e20; /* Change to your desired close icon color */
    cursor: pointer;
    border: 1px solid #092e20;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: color 0.3s ease;
    padding: 5px;
  }
  .header nav .close:hover {
    color: #ff0000; /* Change to your desired hover color */
  }
  .best-customer {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  .footer .form-group button {
    font-size: 22px;
  }
}
footer {
  background-color: #0098da;
  padding: 50px 0;
}
footer .foo {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}
footer .foo > div {
  flex: 1;
}
footer .divider img {
  max-height: 30px;
  -o-object-fit: initial;
     object-fit: initial;
}
footer .first-wrap {
  display: flex;
  gap: 80px;
}
footer h2 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
}
footer p {
  color: #ffffff;
  font-size: 16px;
  font-weight: 300;
}
footer .wrrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}
footer .phone {
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
}
footer .email {
  color: #ed3237;
}
footer .footer-links {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
footer .footer-links a {
  color: #ffffff;
  font-size: 16px;
}
footer .second-wrap {
  max-width: 400px;
}
footer .form-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
footer .form-group input {
  padding: 30px 40px;
  border: none;
  font-size: 16px;
  color: #000000;
  background-color: #ffffff;
}
footer .form-group button {
  background-color: #ed3237;
  color: #ffffff;
  padding: 20px 40px;
  border: none;
  cursor: pointer;
  font-size: 26px;
}
footer .form-group button:hover {
  background-color: #010302;
}
footer .foo-logo {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .foo-logo img {
  max-width: 400px;
  width: 100%;
}

.hero-section.breadcrumb .overlay {
  background-color: rgba(255, 255, 255, 0.7);
}
.hero-section.breadcrumb .hero-text {
  width: 100%;
}
.hero-section.breadcrumb .hero-text img {
  position: absolute;
  z-index: -1;
  width: 100%;
  max-width: 250px;
  top: 50%;
  transform: translateY(-50%);
}
.hero-section.breadcrumb .hero-text h1 {
  color: #092e20 !important;
  margin: 0;
  position: static;
  left: 0;
  font-size: 60px;
}
.hero-section.breadcrumb .breadcrumb-links ul {
  display: flex;
  gap: 50px;
  margin-bottom: 20px;
}
.hero-section.breadcrumb .breadcrumb-links ul li {
  font-weight: 700;
  color: #ed3237;
}
.hero-section.breadcrumb .breadcrumb-links ul li a {
  position: relative;
  font-weight: 400;
}
.hero-section.breadcrumb .breadcrumb-links ul li a::after {
  content: "";
  width: 2px;
  height: 100%;
  background-color: #092e20;
  position: absolute;
  top: 0;
  right: -25px;
  transform: rotate(20deg);
}

.infrastructure {
  background-color: #f5f5f5;
  margin-bottom: 40px;
  padding: 50px 0;
}
.infrastructure h4 {
  margin-bottom: 30px;
}
.infrastructure ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  list-style: none;
  margin: 0;
}
.infrastructure ul .card {
  display: flex;
  flex-direction: row;
  gap: 15px;
  background-color: transparent;
  padding: 20px;
  border: none;
}
.infrastructure ul .card p {
  margin: 0;
}
.infrastructure ul .card > * {
  flex: 1;
}
.infrastructure ul .card > .img-wrap {
  flex: 0 0 100px;
}

.client-card-sec ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 45px;
}
.client-card-sec ul li {
  position: relative;
}
.client-card-sec ul li h2 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  width: 90%;
  background-color: #ffffff;
  padding: 12px 20px;
  color: #ed3237;
  text-align: center;
  font-weight: 600;
  line-height: 1.2;
  font-size: 25px;
}

.africa-sec p,
.africa-sec ul {
  font-size: 20px;
}
.africa-sec ul {
  list-style-type: disc;
  padding-left: 30px;
  margin-bottom: 25px;
}

.map-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.google-map iframe {
  border: 0;
  width: 100%;
  max-width: 100%;
}

.contact-details {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 5px 0px;
  padding: 20px 15px;
  border: 1px solid #f5f5f5;
}
.contact-details .phone {
  font-size: 35px;
  font-weight: 800;
  color: #092e20;
}
.contact-details .email {
  font-size: 24px;
  font-weight: 400;
  color: #0098da;
}
.contact-details h2 {
  font-weight: 700;
}
.contact-details p {
  font-size: 16px;
}

.social-links {
  display: flex;
  gap: 20px;
}
.social-links li {
  width: 50px;
  background-color: #f5f5f5;
  border-radius: 5px;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accordion ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 30px;
}
.accordion .parent-acc {
  display: flex;
  flex-direction: column;
  border: 1px solid #f5f5f5;
}
.accordion .parent-acc .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f5f5f5;
  cursor: pointer;
}
.accordion .parent-acc .head h2 {
  color: #ed3237;
  font-weight: 400;
  font-size: 18px;
}
.accordion .parent-acc .head img {
  max-width: 20px;
}
.accordion .parent-acc .descrip, .accordion .parent-acc .head {
  padding: 20px 15px;
}
.accordion .parent-acc .descrip p, .accordion .parent-acc .head p {
  margin: 0;
  font-size: 18px;
  color: #092e20;
  font-weight: 300;
}
.accordion .parent-acc .descrip {
  display: none;
}

.hero-section {
  position: relative;
}
.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 152, 218, 0.3);
  z-index: 0;
}
.hero-section .hero-text {
  display: flex;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 2%;
  transform: translateY(-50%);
}
.hero-section .hero-text h1 {
  font-size: 80px;
  font-weight: 900;
  margin-left: -330px;
  color: #fff;
}
.hero-section .hero-text h1 span {
  color: #ed3337;
}

.intro h3 {
  text-align: center;
  justify-content: center;
  font-size: 15pt;
  color: #092e20;
}
.intro h3 img {
  max-width: 30px;
  width: 100%;
}
.intro p {
  font-size: 20px;
  line-height: 1.5;
  color: #092e20;
  font-weight: 300;
}
.intro h2 {
  font-size: 55pt;
  color: #092e20;
  font-weight: 600;
  text-align: center;
  margin: 50px 0;
}
.intro ul li {
  display: flex;
  align-items: center;
  gap: 40px;
}
.intro ul li .right-cont p {
  color: #092e20;
  font-size: 16pt;
  color: #092e20;
  line-height: 1.2;
  font-weight: 300;
  text-align: justify;
}
.intro ul li > * {
  flex: 1;
}
.intro ul li:nth-child(2n) {
  flex-direction: row-reverse;
}
.intro ul li:not(:last-child) {
  margin-bottom: 70px;
}

.leadership {
  margin-bottom: 100px;
}
.leadership h2 {
  text-align: center;
  font-weight: 600;
  color: #092e20;
  font-size: 55pt;
}
.leadership ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  text-align: center;
  margin: 50px 0;
}
.leadership ul li h3 {
  color: #ed3237;
  font-weight: 600;
  font-size: 18pt;
}
.leadership ul li p {
  color: #092e20;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 300;
}

.best-customer {
  padding: 80px 50px;
  background-color: #ed3237;
  display: flex;
  align-items: center;
}
.best-customer > * {
  flex: 1;
}
.best-customer h2 {
  font-size: 46px;
  color: #fff;
  font-weight: 900;
}
.best-customer a {
  text-align: right;
  background-color: #0098da;
  padding: 20px 50px;
  color: #fff;
  font-size: 26px;
  font-weight: 300;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.best-customer a:hover {
  background-color: #0074a7;
}
.best-customer a:active {
  background-color: #005174;
}

.career .form {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}
.career .form > * {
  flex: 1;
}
.career .form fieldset {
  border: 2px solid #f5f5f5;
  padding: 40px;
}
.career .form .form-sec {
  display: flex;
  flex-direction: column;
}
.career .form .form-g {
  display: flex;
}
.career .form .form-g,
.career .form .form-sec {
  gap: 30px;
}
.career .top-sec {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 50px;
}
.career .top-sec .img-sec {
  max-width: 160px;
}

.right-sec-career {
  flex: 1;
}
.right-sec-career h2 {
  font-size: 34px;
  font-weight: 600;
  color: #0098da;
  margin-bottom: 20px;
}
.right-sec-career p {
  font-size: 18px;
  color: #092e20;
}

.submit-btn {
  background-color: #ed3237;
  color: #fff;
  padding: 20px 100px;
  font-size: 26px;
  font-weight: 300;
  text-decoration: none;
  transition: background-color 0.3s ease;
  max-width: 350px;
  width: 100%;
  margin: 15px 0;
}
.submit-btn:hover {
  background-color: #0074a7;
  color: #fff;
}
.submit-btn:active {
  background-color: #005174;
}

@media (max-width: 1366px) {
  .hero-section .hero-text h1 {
    font-size: 60px;
  }
  .hero-section .hero-text img {
    max-width: 460px;
  }
  .intro h2 {
    font-size: 46px;
  }
  .best-customer h2 {
    font-size: 42px;
  }
  .hero-section.breadcrumb .hero-text h1 {
    font-size: 38px;
  }
  .hero-section.breadcrumb .hero-text img {
    max-width: 170px;
  }
  .hero-section.breadcrumb .breadcrumb-links ul {
    margin-bottom: 10px;
  }
  .hero-section > img {
    min-height: 320px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  section {
    margin-bottom: 50px;
  }
}
@media (max-width: 1200px) {
  .header nav ul {
    gap: 30px;
  }
  .header nav ul li a {
    font-size: 14px;
  }
  .hero-section .hero-text h1 {
    font-size: 50px;
  }
  .header .logo {
    max-width: 310px;
  }
  .hero-section .hero-text img {
    max-width: 330px;
  }
  .hero-section .hero-text h1 {
    margin-left: -200px;
  }
  .intro h2 {
    font-size: 40px;
  }
  .intro ul li .right-cont p {
    font-size: 14pt;
  }
  .best-customer h2 {
    font-size: 34px;
  }
  .best-customer a {
    font-size: 18px;
  }
  .best-customer {
    padding: 60px 50px;
  }
  footer .first-wrap {
    gap: 40px;
  }
  footer .first-wrap .wrrap:last-child {
    flex: 0 0 140px;
  }
  .career .form {
    flex-direction: column;
  }
}
@media (max-width: 992px) {
  .header .logo {
    max-width: 235px;
  }
  .header nav ul {
    gap: 20px;
  }
  .hero-section .hero-text h1 {
    font-size: 46px;
  }
  .hero-section .hero-text img {
    max-width: 280px;
  }
  .intro h2 {
    font-size: 36px;
  }
  .intro ul li,
  .intro ul li:nth-child(2n) {
    flex-direction: column;
  }
  footer .foo {
    flex-direction: column;
  }
  footer .foo-logo {
    flex-direction: column;
    gap: 30px;
  }
  .contact-details {
    flex-direction: column;
  }
  .contact-details > div {
    flex-direction: column;
    display: flex;
  }
}
@media (max-width: 768px) {
  footer .first-wrap {
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .header {
    padding: 0.5rem 0;
  }
  .hero-section .hero-text {
    top: 60%;
  }
  .hero-section .hero-text img {
    max-width: 120px;
  }
  .hero-section .hero-text h1 {
    font-size: 26px;
    margin-left: -75px;
  }
  section {
    margin-bottom: 30px;
  }
  .intro h3 {
    font-size: 10px;
  }
  .intro h3 img {
    max-width: 20px;
  }
  .intro h2 {
    font-size: 22px;
    margin: 30px 0 !important;
  }
  .header .logo {
    max-width: 220px;
  }
  .intro ul li .right-cont p {
    font-size: 12pt;
  }
  .intro ul li {
    gap: 15px;
  }
  .intro ul li:not(:last-child) {
    margin-bottom: 40px;
  }
  .best-customer {
    padding: 40px 20px;
    gap: 25px;
  }
  .best-customer h2 {
    font-size: 26px;
  }
  .best-customer a {
    font-size: 14px;
    padding: 16px 45px;
    display: inline-block;
  }
  footer .phone {
    font-size: 20px;
  }
  footer p {
    margin: 0;
  }
  footer .wrrap {
    gap: 20px;
  }
  footer .form-group input {
    padding: 20px 30px;
  }
  footer .form-group button {
    padding: 15px 40px;
    font-size: 16px;
  }
  footer .foo {
    margin-bottom: 30px;
  }
  footer .footer-links {
    gap: 15px;
  }
  footer .footer-links a {
    font-size: 14px;
  }
  footer .foo-logo {
    gap: 10px;
  }
  .career .top-sec .img-sec {
    flex: 0 0 75px;
  }
  .career .form fieldset {
    padding: 15px;
  }
  .right-sec-career h2 {
    font-size: 22px;
    margin-bottom: 5px;
  }
  .career .form .form-g {
    display: flex;
    flex-direction: column;
  }
  .submit-btn {
    padding: 10px 100px;
    font-size: 20px;
  }
  .accordion ul {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }
  .accordion .parent-acc .head h2,
  .accordion .parent-acc .descrip p,
  .accordion .parent-acc .head p {
    font-size: 16px;
  }
  .client-card-sec ul li h2 {
    font-size: 22px;
  }
}/*# sourceMappingURL=style.css.map */