/* Google Font CDN Link */
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  scroll-behavior: smooth;
  font-family: 'Ubuntu';

}

.container-md {
  max-width: 1600px!important;
  margin: 0 auto;  /* Centers it */
 
}

h2 {
      font-size: 20px;
    }

    table {
      border-collapse: collapse;
      width: 100%;
      margin-top: 10px;
    }

    th, td {
      border: 1px solid #999;
      padding: 8px;
      text-align: left;
    }

    th {
      background-color: #f2f2f2;
    }

    .date-header {
      text-align: center;
      color: red;
      font-weight: bold;
      background-color: #fff;
    }


:root {
  --primary-color: #0E2431;
  --black-color: #879095;
  --grey-color: #bfc9cf;
  --white-color: #fff;

}

body {
  /* font-family: 'Ubuntu', sans-serif; */
}

/* Custom Scroll Bar CSS */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--black-color);
  border-radius: 15px;
  transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/* navbar styling */
nav {
  position: fixed;
  width: 100%;
  padding: 10px 0;
  z-index: 999;
  transition: all 0.3s ease;
}

nav.sticky {
  background: var(--primary-color);
  padding: 5px 2;
}

nav .navbar {
  width: auto;
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
  margin-left: auto;
  height: 90px; /* Ensure a fixed height for the navbar */
}
/* Logo */
nav .navbar .logo a {
  font-weight: 500;
  font-size: 32px;
  color: var(--primary-color);
}

/* Logo x Sticky */
nav.sticky .navbar .logo a {
  color: var(--white-color);
}

nav .navbar .menu {
  display: flex;
  position: relative;
}

/* Space in between li */
nav .navbar .menu li {
  list-style: none;
  margin: 0 10px;
}

nav .navbar .menu a {
  font-size: 18px;
  font-weight: 500;
  color: var(--primary-color);
  padding: 3px 0;
  transition: all 0.4s ease;
}

.navbar .menu a:hover {
  color: #879095;
}

nav.sticky .menu a {
  color: var(--white-color);
}

nav.sticky .menu a:hover {
  color: #879095;
}

.navbar .media-icons a {
  color: var(--primary-color);
  font-size: 18px;
  margin: 10 6px;
}

nav.sticky .media-icons a {
  color: var(--white-color);
}

/* side navigation Menu Button CSS */
nav .menu-btn,
.navbar .menu .cancel-btn {
  position: absolute;
  color: var(--white-color);
  right: 30px;
  top: 35px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: none;
}

nav .menu-btn {
  color: var(--primary-color);
}

nav.sticky .menu-btn {
  color: var(--white-color);
}

.wrapper {
  /* position: absolute; */
  background-image: url('https://res.cloudinary.com/dzdngxtqx/image/upload/v1749161334/IndabaXCongo/vncapchkttemwbkvl4d8.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 100vh;
  /* left: 50%;
  top: 50%; */
  /* transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  animation: fadeIn 1000ms ease;
  -webkit-animation: fadeIn 1000ms ease; */

}




.navbar .menu .menu-btn {
  color: var(--white-color);
}

/* home section styling */
.home {
  height: 100vh;
  width: 100%;
  font-family: 'Ubuntu' !important;
  background: url("images/portfolio-man.jpg") no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

.home .home-content {
  width: 90%;
  height: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home .text-one {
  font-size: 25px;
  color: var(--black-color);
}

.home .text-two {
  color: var(--black-color);
  font-size: 75px;
  font-weight: 600;
  margin-left: -3px;
}

.home .text-three {
  font-size: 40px;
  margin: 5px 0;
  color: var(--primary-color);
}

.home .text-four {
  font-size: 23px;
  margin: 5px 0;
  color: var(--black-color);
}

.btn-outline-secondary {
  color: var(--black-color) !important;
  border-color: var(--black-color) !important;
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus {
  background-color: var(--black-color) !important;
  color: white !important;
}



/* .btn-outline-secondary button {
  outline: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 25px;
  font-weight: 400;
  background: var(--primary-color);
  color: var(--white-color);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.4s ease;
}

.btn-outline-secondary button:hover {
  border-color: var(--primary-color);
  background-color: var(--white-color);
  color: var(--primary-color);
} */

/* About Section Styling */
section {
  padding-top: 30px;
}

section .content {
  width: 80%;
  margin: 40px auto;
  font-family: 'Ubuntu' !important;
}

section .title-l {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}


section .title-l span {
  color: var(--black-color);
  font-size: 30px;
  font-weight: 600;
  position: relative;
  padding-bottom: 8px;
}

section .title-l span::before,
section .title-l span::after {
  content: '';
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--primary-color);
  left: 0;
  bottom: 0;
}

section .title-l span::after {
  bottom: -7px;
  width: 70%;
  left: 50%;
  transform: translateX(-50%);
}


section .title-l {
  display: flex;
  justify-content: left;
  margin-bottom: 40px;
}


section .title-l span {
  color: var(--black-color);
  font-size: 30px;
  font-weight: 600;
  position: relative;
  padding-bottom: 8px;
}

section .title-l span::before,
section .title-l span::after {
  content: '';
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--primary-color);
  left: 0;
  bottom: 0;
}

section .title-l span::after {
  bottom: -7px;
  width: 70%;
  left: 50%;
  transform: translateX(-50%);
}

.about .about-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.about .about-details .left {
  width: 35%;
}

.about .left img {
  height: 500px;
  width: 500px;
  object-fit: cover;
  border-radius: 12px;
}

.about .about-details .right {
  width: 55%;
}

section .topic {
  color: var(--black-color);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
}

.about-details .right p {
  text-align: justify;
  color: var(--black-color);
}

section .button {
  margin: 16px 0;
}

section .button  button {
  outline: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 25px;
  font-weight: 400;
  background: var(--primary-color);
  color: var(--white-color);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.4s ease;
}

section .button button:hover {
  border-color: var(--primary-color);
  background-color: var(--white-color);
  color: var(--primary-color);
}

/* My Skills CSS */
.skills {
  background: #f0f8ff;
}

.skills .content {
  padding: 40px 0;
}

.skills .skills-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.skills-details .text {
  width: 50%;
}

.skills-details p {
  color: var(--black-color);
  text-align: justify;
}



.skills .skills-details .experience {
  display: flex;
  align-items: center;
  margin: 0 10px;
}

.skills-details .experience .num {
  color: var(--black-color);
  font-size: 80px;
}

.skills-details .experience .exp {
  color: var(--black-color);
  margin-left: 20px;
  font-size: 18px;
  font-weight: 500;
  margin: 0 6px;
}

.skills-details .boxes {
  width: 45%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.skills-details .box {
  width: calc(100% / 2 - 20px);
  margin: 20px 0;
}

.skills-details .boxes .topic {
  font-size: 20px;
  color: var(--primary-color);
}

.skills-details .boxes .per {
  font-size: 30px;
  color: var(--primary-color);
}

/* My Services CSS */
.services .boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.services .boxes .box {
  margin: 20px 0;
  width: calc(100% / 3 - 20px);
  text-align: center;
  border-radius: 25px;
  padding: 30px 10px;
  box-shadow: 0 5px 10px rgba(0, 0, 0.12, 0.12);
  cursor: default;
  transition: all 0.4s ease;
}

.services .boxes .box:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.services .boxes .box .icon {
  height: 50px;
  width: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-size: 14px;
  color: var(--white-color);
  margin: 0 auto 10px auto;
  transition: all 0.4s ease;
}

.boxes .box:hover .icon {
  background: var(--white-color);
  color: var(--primary-color);
}

.services .boxes .box:hover .topic,
.services .boxes .box:hover p {
  color: var(--white-color);
  transition: all 0.4s ease;
}

/* Contact Me CSS */
.contact {
  background: #f0f8ff;
}

.contact .content {
  margin: 0 auto;
  padding: 30px 0;
}

.contact .text {
  width: 80%;
  text-align: center;
  margin: auto;
}

/* Footer CSS */
footer {
  background: var(--primary-color);
  padding: 15px 0;
  text-align: center;
  /* font-family: 'Poppins', sans-serif; */
}

footer .text span {
  font-size: 17px;
  font-weight: 400;
  color: var(--white-color);
}

footer .text span a {
  font-weight: 500;
  color: var(--white-color);
}

footer .text span a:hover {
  text-decoration: underline;
}

/* Scroll To Top Button CSS */
.scroll-button a {
  position: fixed;
  bottom: 20px;
  right: 20px;
  color: var(--white-color);
  background: var(--primary-color);
  padding: 10px 12px;
  font-size: 18px;
  border-radius: 6px;
  box-shadow: rgba(0, 0, 0, 0.15);
  display: none;
}

/* Responsive Media Queries */
@media (max-width:1190px) {
  section .content {
    width: 85%;
  }
}

@media (max-width:1000px) {
  .about .about-details {
    justify-content: center;
    flex-direction: column;
  }

  .about .about-details .left {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .about .about-details .right {
    width: 90%;
    margin: 40px 0;
  }

  .services .boxes .box {
    margin: 20px 0;
    width: calc(100% / 2 - 20px);
  }
}

@media (max-width:900px) {
  .about .left img {
    height: 350px;
    width: 350px;
  }
}

@media (max-width:750px) {
  nav .navbar {
    width: 90%;
  }

  nav .navbar .menu {
    position: fixed;
    left: -100%;
    top: 0;
    background: var(--primary-color);
    height: 100vh;
    max-width: 400px;
    width: 100%;
    padding-top: 60px;
    flex-direction: column;
    align-items: center;
    transition: all 0.5s ease;
  }

  .navbar.active .menu {
    left: 0;
  }

  nav .navbar .menu a {
    font-size: 23px;
    display: block;
    color: var(--white-color);
    margin: 10px 0;
  }

  nav.sticky .menu a:hover {
    color: var(--primary-color);
  }

  nav .navbar .media-icons {
    display: none;
  }

  nav .menu-btn,
  .navbar .menu .cancel-btn {
    display: block;
  }

  .home .text-two {
    font-size: 65px;
  }

  .home .text-three {
    font-size: 35px;
  }

  .skills .skills-details {
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .skills-details .text {
    width: 100%;
    margin-bottom: 50px;
  }

  .skills-details .boxes {
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .services .boxes .box {
    margin: 20px 0;
    width: 100%;
  }

  .contact .text {
    width: 100%;
  }
}

@media (max-width:500px) {
  .home .text-two {
    font-size: 55px;
  }

  .home .text-three {
    font-size: 33px;
  }

  .skills-details .boxes .per {
    font-size: 30px;
    color: var(--primary-color);
  }
}





.footer {
  padding: 40px 0;
  background-color: #0d1117;
  color: white;
}

.footer ul {
  padding: 0;
  list-style: none;
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 0;
}

.footer li {
  display: inline-block; /* Change to inline-block for horizontal layout */
  padding: 0 10px;
}

.footer ul a {
  color: inherit;
  text-decoration: none;
  opacity: 0.8;
}

.footer ul a:hover {
  opacity: 1;
}

.footer .social {
  text-align: center;
  padding-bottom: 25px;
}

.footer .social > a {
  font-size: 24px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #ccc;
  margin: 0 8px;
  color: inherit;
  opacity: 0.75;
}

.footer .social > a:hover {
  opacity: 0.9;
}

.footer .copyright {
  margin-top: 15px;
  text-align: center;
  font-size: 13px;
  color: #aaa;
  margin-bottom: 0;
}
.footer .footer-break{
height:2px;
border-width:0;
color:gray;
background-color:white
  }


  .ko-faq-section {
    padding: 40px 0;
  }
  .ko-faq-section h2 {
    text-align: center;
    font-size: 42px;
    line-height: 52px;
    margin-bottom: 10px;
  }
  .ko-container {
    width: 100%;
    /* max-width: 1370px; */
    margin: 0 auto;
    padding: 0 15px;
  }
  .ko-faq-section .ko-container > p {
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  .ko-accordion-item {
    background-color: #fff;
    border-bottom: 1px solid #dfdfdf;
  }
  .ko-accordion-item-header {
    padding: 20px 0;
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    /* font-family: var(--font-marcellus); */
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
  }
  .ko-accordion-item-header::after {
    content: "";
    display: block;
    width: 25px;
    height: 25px;
    background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTkgMThMMTUgMTJMOSA2IiBzdHJva2U9IiMwNDdDQzEiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==");
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 0.4s ease;
  }
  .ko-accordion-item-header.active::after {
    content: "";
    transform: rotate(90deg);
  }
  .ko-accordion-item-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
  }
  .ko-accordion-item-body-content {
    padding-bottom: 20px;
  }
  .ko-faq-accordion {
    margin-bottom: 30px;
  }
  .ko-ask-qus h3 {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 10px;
  }
  .ko-ask-qus p {
    margin-bottom: 20px;
  }
  .ko-form-cotrl {
    margin-bottom: 20px;
  }
  .ko-faq-input-field {
    width: 100%;
    max-width: 520px;
    padding: 10px;
    outline: none;
    border: 1px solid #dfdfdf;
  }
  .ko-faq-input-field:focus {
    outline: none;
    border: 1px solid var(--primary-color);
    box-shadow: 1px 1px 10px #879095;
  }
  .ko-btn {
    border: 0;
    padding: 6px 12px;
    background: #000000;
    color: #ffffff;
    cursor: pointer;
  }
  /* faq section end */
  

  section .title {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
  }
  
  
  section .title span {
    color: var(--black-color);
    font-size: 30px;
    font-weight: 600;
    position: relative;
    padding-bottom: 8px;
  }
  
  section .title span::before,
  section .title span::after {
    content: '';
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--primary-color);
    left: 0;
    bottom: 0;
  }

  section .title span::after {
    bottom: -7px;
    width: 70%;
    left: 50%;
    transform: translateX(-50%);
  }
  
  

  
.team-row{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 40px 0;
}

.member{
  flex: 1 1 300px;
  margin: 20px;
  text-align: center;
  padding: 20px 10px;
  cursor: pointer;
  max-width: 300px;
  transition: all 0.3s;
}

.member:hover{
  /* box-shadow: 0 10px 20px rgba(0,0,0,0.1); */
  transform: translateY(-20px);
}

.member img{
  display: block;
  width: 200px; height: 200px;
  object-fit: cover;
  border:8px solid #0E2431;
  border-radius: 50%;
  margin: 0 auto;
}

.member h2{
  text-transform: uppercase;
  font-size: 20px;
  color: #0E2431;
  margin: 15px 0;
}

.member p{
  font-size: 15px;
  color: #838383;
  line-height: 1.6;
}


.speaker{
  flex: 1 1 400px;
  margin: 10px;
  text-align: center;
  padding: 20px 10px;
  cursor: pointer;
  max-width: 400px;
  transition: all 0.3s;
}

  a.active {
    color: #a2a1a1!important;          /* Active link color */
    font-weight: bold!important;   /* Optional */
  }

.speaker:hover{
  /* box-shadow: 0 10px 20px rgba(0,0,0,0.1); */
  transform: translateY(-20px);
}

.speaker img{
  display: block;
  width: 100px; height: 100px;
  object-fit: cover;
  border:8px solid #ffffff;
  border-radius: 50%;
  margin: 0 auto;
}

.speaker h2{
  text-transform: uppercase;
  font-size: 20px;
  color: #0E2431;
  margin: 15px 0;
}

.speaker p{
  font-size: 15px;
  color: #838383;
  line-height: 1.6;
}


.icons {
  text-align: center;
}

.icons i {
  color: #2E2EFF;
  background: #fff;
  height: 15px;
  width: 15px;
  padding: 13px;
  margin: 0 10px;
  border-radius: 50px;
  border: 2px solid #fff;
  transition: all 200ms ease;
  text-decoration: none;
  position: relative;
}

.icons i:hover, .icons i:active {
  color: #fff;
  background: none;
  cursor: pointer !important;
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  text-decoration: none;
  
}
@keyframes fadeIn {
  from {top: 20%; opacity: 0;}
  to {top: 100; opacity: 1;}
  
}

@-webkit-keyframes fadeIn {
  from {top: 20%; opacity: 0;}
  to {top: 100; opacity: 1;}
  
}

/*for Demo Only*/
.demo-row {
  background-color: #fff;
  padding: 20px 0;
}


/*Implement*/
.sponsor-feature {
    background-color: transparent!important;
    padding: 10px;
    /* border-radius: 5px; */
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
}

#id-sponsors .carousel {
    margin-bottom: 20px;
}
#id-sponsors .item {
    padding-bottom: 20px;
}
#id-sponsors .carousel-indicators {
    bottom: -25px;
}

/* Table */

table {
      border-collapse: collapse;
      width: 100%;
    }

    th, td {
      border: 1px solid #ccc;
      padding: 8px;
      text-align: left;
    }

    th {
      background-color: #f2f2f2;
    }

    .date-header {
      text-align: center;
      color: red;
      font-weight: bold;
      background-color: #fff;
    }

    /* Responsive Styles */
    @media (max-width: 768px) {
      table, thead, tbody, th, td, tr {
        display: block;
        width: 100%;
      }

      thead tr {
        display: none; /* Hide all table headers */
      }

      tr {
        margin-bottom: 15px;
        border: 1px solid #ccc;
        border-radius: 5px;
        padding: 10px;
        background-color: #f9f9f9;
      }

      td {
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;
        text-align: left;
      }

      td::before {
        content: attr(data-label);
        position: absolute;
        top: 8px;
        left: 10px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        font-weight: bold;
        color: #333;
      }
    }