* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  overflow-x: hidden;
  max-width: 100%;
}
/* navbar */
.offcanvas-end {
  width: 100% !important;
}
.navbar {
  background-color: #02001b !important;
}

@media (min-width: 992px) {
  .offcanvas-end {
    width: auto !important;
  }
}
@media (max-width: 600px) {
  .bg-warning {
    background-color: #02001b !important;
  }
  .offcanvas {
    background-color: #02001b !important;
  }
}

.custom-toggler {
  width: 20px;
  height: 12px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  border: none !important;
  outline: none !important;
  background: transparent;
  padding: 0;
}

.custom-toggler span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.custom-toggler span:nth-child(1) {
  top: 0px;
}

.custom-toggler span:nth-child(2),
.custom-toggler span:nth-child(3) {
  top: 10px;
}

.custom-toggler span:nth-child(4) {
  top: 20px;
}

.custom-toggler.open span:nth-child(1) {
  top: 10px;
  width: 0%;
  left: 50%;
}

.custom-toggler.open span:nth-child(2) {
  transform: rotate(45deg);
}

.custom-toggler.open span:nth-child(3) {
  transform: rotate(-45deg);
}

.custom-toggler.open span:nth-child(4) {
  top: 10px;
  width: 0%;
  left: 50%;
}

.btn-close:focus {
  box-shadow: none;
  outline: none;
}

@media (min-width: 992px) {
  .custom-toggler {
    display: none;
  }

  .navbar-nav .nav-item {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .navbar-nav .nav-link {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
}
/* Navbar Styles */

/* Demo Content */
.page-content {
  margin-top: 90px;
  padding: 3.5rem 2.5rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.hero-banner {
  background: #02001b;
  padding: 4.5rem 2.5rem;
  text-align: center;
  color: white;
  border-radius: 16px;
  margin-bottom: 3.5rem;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.hero-title {
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
}

.hero-text {
  font-size: 1.3rem;
  opacity: 0.95;
  line-height: 1.6;
}

/* Hero Section */
.hero {
  height: 95vh;
  background: #02001b;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 2rem 5%;
}

.hero-container {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 10;
}

/* Floating White Tech Icons */
.floating-tech {
  position: absolute;
  color: rgba(255, 255, 255, 0.274);
  font-size: 1.2rem;
  animation: float-random 15s infinite ease-in-out;
  pointer-events: none;
  opacity: 0;
  animation-fill-mode: forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.tech1 {
  animation:
    fadeIn 0.5s ease-in 0.2s forwards,
    float-tech1 18s infinite ease-in-out 0.7s;
  top: 10%;
  left: 5%;
}
.tech2 {
  animation:
    fadeIn 0.5s ease-in 0.4s forwards,
    float-tech2 22s infinite ease-in-out 0.9s;
  top: 20%;
  right: 10%;
}
.tech3 {
  animation:
    fadeIn 0.5s ease-in 0.6s forwards,
    float-tech3 20s infinite ease-in-out 1.1s;
  bottom: 15%;
  left: 15%;
}
.tech4 {
  animation:
    fadeIn 0.5s ease-in 0.8s forwards,
    float-tech4 24s infinite ease-in-out 1.3s;
  bottom: 25%;
  right: 20%;
}
.tech5 {
  animation:
    fadeIn 0.5s ease-in 1s forwards,
    float-tech5 19s infinite ease-in-out 1.5s;
  top: 40%;
  left: 10%;
}
.tech6 {
  animation:
    fadeIn 0.5s ease-in 1.2s forwards,
    float-tech6 21s infinite ease-in-out 1.7s;
  top: 50%;
  right: 8%;
}
.tech7 {
  animation:
    fadeIn 0.5s ease-in 1.4s forwards,
    float-tech7 23s infinite ease-in-out 1.9s;
  top: 65%;
  left: 30%;
}
.tech8 {
  animation:
    fadeIn 0.5s ease-in 1.6s forwards,
    float-tech8 17s infinite ease-in-out 2.1s;
  top: 35%;
  right: 35%;
}

@keyframes float-tech1 {
  0%,
  100% {
    top: 10%;
    left: 5%;
    opacity: 0.15;
    transform: scale(1);
  }
  50% {
    top: 80%;
    left: 25%;
    opacity: 0.25;
    transform: scale(1.5);
  }
}

@keyframes float-tech2 {
  0%,
  100% {
    top: 20%;
    right: 10%;
    opacity: 0.2;
    transform: scale(1.2);
  }
  50% {
    top: 70%;
    right: 30%;
    opacity: 0.15;
    transform: scale(1);
  }
}

@keyframes float-tech3 {
  0%,
  100% {
    bottom: 15%;
    left: 15%;
    opacity: 0.18;
    transform: scale(1.1);
  }
  50% {
    bottom: 75%;
    left: 40%;
    opacity: 0.22;
    transform: scale(1.4);
  }
}

@keyframes float-tech4 {
  0%,
  100% {
    bottom: 25%;
    right: 20%;
    opacity: 0.16;
    transform: scale(1);
  }
  50% {
    bottom: 60%;
    right: 5%;
    opacity: 0.25;
    transform: scale(1.3);
  }
}

@keyframes float-tech5 {
  0%,
  100% {
    top: 40%;
    left: 10%;
    opacity: 0.2;
    transform: scale(1.2);
  }
  50% {
    top: 15%;
    left: 80%;
    opacity: 0.15;
    transform: scale(1);
  }
}

@keyframes float-tech6 {
  0%,
  100% {
    top: 50%;
    right: 8%;
    opacity: 0.17;
    transform: scale(1.1);
  }
  50% {
    top: 85%;
    right: 60%;
    opacity: 0.23;
    transform: scale(1.4);
  }
}

@keyframes float-tech7 {
  0%,
  100% {
    top: 65%;
    left: 30%;
    opacity: 0.19;
    transform: scale(1);
  }
  50% {
    top: 30%;
    left: 70%;
    opacity: 0.25;
    transform: scale(1.5);
  }
}

@keyframes float-tech8 {
  0%,
  100% {
    top: 35%;
    right: 35%;
    opacity: 0.21;
    transform: scale(1.3);
  }
  50% {
    top: 75%;
    right: 15%;
    opacity: 0.16;
    transform: scale(1);
  }
}

/* Hero Content - Left Side */
.hero-content {
  text-align: left;
  font-size: 13px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffd700, #ffed4e, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 3s ease infinite;
  background-size: 200% 200%;
  line-height: 1.2;
}

@keyframes gradient-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: #b8c5d6;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 10px;
}

.btn1 {
  padding: 3rem 1.5rem 0.5rem 1.5rem;
  font-size: 1.5rem;
  border: none !important;
  border-radius: 0px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.btn2 {
  padding: 3rem 1.5rem 0.5rem 1.5rem;
  font-size: 1.5rem;
  border: none !important;
  border-radius: 0px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.btn-primary {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #0a1628 !important;
}

.btn-primary:hover {
  transform: translateY(-3px);
}

.btn-secondary {
  background: transparent !important;
  color: #ffd700;
  border: 1px solid #ffd700 !important;
  padding: 3px 40px 0 40px !important;
}

.btn-secondary:hover {
  background: #ffd700;
  color: #0a1628;
}

/* Hero Image - Right Side */
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  animation: float-image 3s ease-in-out infinite;
}

@keyframes float-image {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
.cover {
  padding-left: 67px !important;
}
/* Responsive Design */
@media (max-width: 968px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    /* background: linear-gradient(135deg, #1e3a5f 0%, #0a1628 100%); */
    background: #02001b;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.4);
    padding: 2rem 0;
    height: calc(100vh - 70px);
    overflow-y: auto;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-content {
    text-align: left;
    padding-top: 80px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-buttons a {
    text-align: center;
  }

  .floating-tech {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 1.5rem;
    margin-top: 0px;
    font-weight: bold;
  }
  .cover {
    padding-left: 20px !important;
  }
  .hero-content p {
    font-size: 0.9rem;
  }
  .btn-secondary {
    background: transparent !important;
    color: #ffd700;
    border: 2px solid #ffd700 !important;
    padding: 6px 40px 6px 40px !important;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 9px;
    width: 75%;
    align-items: left;
    margin-bottom: 0;
  }
  .hero {
    height: 700px;
  }
  .btn {
    padding: 0.8rem 0.8rem 0.5rem 0.8rem;
    font-size: 0.9rem;
    width: 100%;
  }

  .floating-tech {
    font-size: 1rem;
  }
}

/* our services section */
.about-section {
  background: white;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffd700' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.1;
}

.section-tag {
  color: #ffd700;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.section-heading {
  color: #ffd700;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
}

.about-text {
  color: #d1d5db;
  font-size: 1.1rem;
  line-height: 1.8;
}

.highlight-text {
  color: #ffd700;
  font-weight: 600;
}

@media (max-width: 768px) {
  .section-heading {
    font-size: 2rem;
  }
  .about-text {
    margin-top: 40px !important;
    margin-left: 10px;
    font-size: 16px;
  }

  .stats-number {
    font-size: 2rem;
  }
  .weteach {
    margin-top: 10px !important;
  }
}
/* who we are.. */
.main-heading {
  color: #000;
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
  margin-top: 50px;
}
.weteach {
  margin-top: 50px;
}
.sub-heading {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.feature-box {
  background: #fff;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 330px;
}

.feature-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #01023b, #e0ad05);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-box:hover::before {
  transform: scaleX(1);
}

.feature-box:hover {
  background: #f0f0ff;
  border-color: rgba(99, 102, 241, 0.2);
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.icon-wrapper {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  transition: all 0.4s ease;
}

.feature-box:hover .icon-wrapper {
  transform: rotateY(360deg);
}

.box-1 .icon-wrapper {
  background: linear-gradient(135deg, #6366f1 0%, #190150 100%);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.box-2 .icon-wrapper {
  background: linear-gradient(135deg, #fffb03 0%, #927c02 100%);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.box-3 .icon-wrapper {
  background: linear-gradient(135deg, #6366f1 0%, #190150 100%);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.box-4 .icon-wrapper {
  background: linear-gradient(135deg, #fffb03 0%, #927c02 100%);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.icon-wrapper i {
  font-size: 1rem;
  color: white;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.feature-text {
  color: #555;
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Additional responsive adjustments */
@media (max-width: 767px) {
  .main-heading {
    font-size: 1.75rem;
  }

  .sub-heading {
    font-size: 0.95rem;
  }

  /* .feature-box {
    padding: 1.75rem 1.5rem;
  } */

  .icon-wrapper {
    width: 55px;
    height: 55px;
  }

  .icon-wrapper i {
    font-size: 1.3rem;
  }

  .feature-title {
    font-size: 1.15rem;
  }

  .feature-text {
    font-size: 0.9rem;
  }
}

@media (max-width: 575px) {
  .main-heading {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
  }

  .sub-heading {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .feature-box {
    /* padding: 1.5rem 1.25rem; */
    height: 270px;
  }

  .icon-wrapper {
    width: 37px;
    height: 37px;
    margin-bottom: 1.25rem;
  }

  .icon-wrapper i {
    font-size: 1.2rem;
  }

  .feature-title {
    font-size: 1.1rem;
  }

  .feature-text {
    font-size: 0.875rem;
  }
}
/* section 3...what we offer */

:root {
  --primary-blue: rgb(2, 0, 27) !important;
  --dark-blue: rgb(2, 0, 27) !important;
  --primary-orange: #fefe00 !important;
  --dark-orange: #888807 !important;
  --black-bg: rgb(2, 0, 27) !important;
  --dark-gray: rgb(2, 0, 27) !important;
}

.what-we-offer-section {
  padding: 80px 0;
  background: rgb(2, 0, 27) !important;
  margin-top: 10px;
}

.section-heading {
  color: var(--primary-orange);
  font-size: 2rem !important;
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}

.section-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-blue);
  border-radius: 2px;
}

.service-row {
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
}

.service-content {
  padding: 1rem;
}

.service-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--primary-orange)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
}

.service-icon i {
  font-size: 1.2rem;
  color: white;
}

.service-title {
  color: var(--primary-orange);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.service-description {
  color: #d1d5db;
  line-height: 1.6;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  padding: 0.3rem 0;
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.85rem;
}

.service-list li i {
  color: white;
  font-size: 0.3rem;
}

.service-image-container {
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(192, 157, 3, 0.3);
  transition: transform 0.3s ease;
}

.service-image-container:hover {
  transform: scale(1.05);
}

.service-placeholder {
  width: 100%;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 5rem;
  color: white;
  position: relative;
}

.service-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-placeholder i {
  margin-bottom: 1rem;
}

.service-placeholder .overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  padding: 1.5rem;
  color: white;
  text-align: center;
}

.overlay-text h4 {
  color: var(--primary-orange);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.overlay-text p {
  color: #e5e7eb;
  font-size: 0.8rem;
  margin: 0;
}

.tech-courses-bg {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}

.website-design-bg {
  background: linear-gradient(135deg, #ea580c 0%, #fb923c 100%);
}

.business-analysis-bg {
  background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
  .what-we-offer-section {
    padding: 60px 0;
  }

  .section-heading {
    font-size: 1.3rem !important;
  }

  .service-row {
    margin-bottom: 3rem;
    margin-left: 2px !important;
  }
  .service-title {
    color: var(--primary-orange);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
  }
  .service-icon i {
    font-size: 1.1rem;
    color: white;
  }
  .service-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(
      135deg,
      var(--primary-blue),
      var(--primary-orange)
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
  }

  .service-content {
    padding: 1.5rem 0;
  }

  .service-placeholder {
    height: 300px;
    font-size: 3.5rem;
  }

  .service-image-container {
    margin-top: 2rem;
  }
}
/* 
/* 
      section 4 where our students work */
.logo-banner {
  background: white;
  display: flex;
  align-items: center;
  gap: 0;
  width: 100% !important;
  overflow-x: auto;
}

.learners-label {
  background: #00032b;
  color: white;
  padding: 1.5rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 10px;
}

.logos-container {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 0 3rem;
  flex: 1;
  background: white;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* JP Morgan Chase */
.logo-jpmorgan {
  font-family: "Times New Roman", serif;
  font-size: 1rem;
  color: #000;
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* Flutterwave */
.logo-flutterwave {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.flutterwave-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flutterwave-icon svg {
  width: 100%;
  height: 100%;
}

.flutterwave-text {
  font-size: 1.1rem;
  color: #000;
  font-weight: 600;
}

.flutterwave-text .wave {
  font-weight: 400;
}

/* Sterling */
.logo-sterling {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.sterling-circle {
  width: 45px;
  height: 45px;
  background: #d32f2f;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sterling-inner {
  width: 18px;
  height: 18px;
  background: white;
  border-radius: 50%;
}

.sterling-text {
  font-size: 1.3rem;
  color: #666;
  font-weight: 400;
}

/* Binance */
.logo-binance {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.binance-icon {
  width: 35px;
  height: 35px;
  position: relative;
}

.binance-icon svg {
  width: 100%;
  height: 100%;
}

.binance-text {
  font-size: 1.4rem;
  color: #000;
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* Microsoft */
.logo-microsoft {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.microsoft-squares {
  display: grid;
  grid-template-columns: repeat(2, 11px);
  grid-template-rows: repeat(2, 11px);
  gap: 2px;
}

.ms-square {
  width: 11px;
  height: 11px;
}

.ms-square.red {
  background: #f25022;
}
.ms-square.green {
  background: #7fba00;
}
.ms-square.blue {
  background: #00a4ef;
}
.ms-square.yellow {
  background: #ffb900;
}

.microsoft-text {
  font-size: 1.2rem;
  color: #5e5e5e;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .logo-banner {
    flex-direction: column;
    align-items: stretch;
  }

  .learners-label {
    text-align: center;
  }

  .logos-container {
    flex-wrap: wrap;
    justify-content: center;
    padding: 2rem 1rem;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .logos-container {
    gap: 1.5rem;
  }

  .logo-jpmorgan {
    font-size: 0.85rem;
  }

  .flutterwave-text,
  .sterling-text,
  .binance-text,
  .microsoft-text {
    font-size: 1rem;
  }
  .logo-container {
    margin: 90px 7px 0px 0 !important;
  }
}
.logo-container {
  margin: 90px 60px 50px 60px;
}

/* section 5  our courses */
:root {
  --primary-blue: #1e40af;
  --dark-blue: #1e3a8a;

  --dark-orange: ;
  --black-bg: #000000;
  --dark-gray: #0f172a;
}

.our-courses-section {
  padding: 80px 0;
  background: white !important;

  margin: 0;
}

.section-heading {
  color: black !important;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}

.section-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: yellow !important;
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  color: black !important;
  font-size: 1rem !important;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.course-card {
  background: var(--dark-gray);
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  height: 100%;
  border: 2px solid transparent;
  padding: 1.5rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.course-card:hover {
  transform: translateY(-10px);
  border-color: rgb(245, 245, 163);
}

.course-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  position: relative;
}

.course-badge {
  position: absolute;
  top: -15px;
  right: 15px;
  background: var(--primary-orange);
  color: white;
  padding: 0.2rem 0.4rem;
  border-radius: 5px;
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
}

.course-content {
  padding: 0;
}

.course-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--primary-orange)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.course-icon i {
  font-size: 1.5rem;
  color: white;
}

.course-title {
  color: var(--primary-orange);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.course-description {
  color: #d1d5db;
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.course-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
}

.course-features li {
  color: #9ca3af;
  font-size: 0.8rem;
  padding: 0.3rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.course-features li i {
  color: varwhite;
  font-size: 0.5rem;
}

.course-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.course-duration {
  color: #9ca3af;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.course-duration i {
  color: var(--primary-orange);
}

.enroll-btn {
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--primary-orange)
  );
  color: black !important;
  border: none;
  padding: 0.2rem 1rem !important;
  border-radius: 5px !important;
  font-weight: 600;
  font-size: 0.6rem !important;
  cursor: pointer;
  transition: all 0.3s ease;
}

.enroll-btn:hover {
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  .our-courses-section {
    padding: 60px 0;
  }

  .section-heading {
    font-size: 1.3rem;
  }

  .course-card {
    margin-bottom: 2rem;
  }
}
.course-title {
  color: var(--primary-orange);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

/* section 6.. cohort */

.start-dates-section {
  padding: 80px 0;
  background: var(--dark-gray);
}

.section-headings {
  color: white;
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: rem !important;
  text-align: center;
  position: relative;
  padding-bottom: 0.3rem;
}

.section-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-blue);
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.course-row {
  background: white;
  border-left: 4px solid rgb(235, 219, 7);
  border-radius: 5px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.course-row:hover {
  background: rgb(199, 209, 245);
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(234, 88, 12, 0.3);
}

.course-name {
  color: black;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.start-date {
  color: black;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.start-date-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
}

.start-date-row i {
  color: var(--primary-blue);
  font-size: 1.2rem;
}

.cohort-info {
  color: black;
  font-size: 0.7rem;
  font-style: italic;
  margin-left: 1rem;
}

.date-badge {
  background: rgb(0, 0, 27);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-left: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .start-dates-section {
    padding: 60px 0;
  }
  .start-date-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
  }
  .start-date-row i {
    color: var(--primary-blue);
    font-size: 0.9rem;
  }

  .cohort-info {
    color: black;
    font-size: 0.7rem;
    font-style: italic;
    margin-left: 1.8rem;
  }

  .section-headings {
    font-size: 1.3rem !important;
  }
  .section-subtitle {
    font-size: 0.9rem !important;
  }
  .course-row {
    padding: 1rem;
  }

  .course-name {
    color: black;
    font-size: 1rem !important;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
  .date-badge {
    background: rgb(0, 0, 27);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    font-size: 0.6rem;
    font-weight: 600;
    margin-left: 0.5rem;
  }

  .start-date {
    font-size: 0.9rem;
  }
}

/* section 7---course delivery */
:root {
  --primary-blue: #1e40af;
  --dark-blue: #1e3a8a;
  --primary-orange: #ea580c;
  --dark-orange: #c2410c;
  --black-bg: #000000;
  --dark-gray: #0f172a;
}

.delivery-options-section {
  padding: 80px 0;
  background: white;
}

.section-heading {
  color: black;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}

.section-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: black;
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  color: black;
  font-size: 1.1rem;
  margin-bottom: rem;
}

.delivery-option {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: rgb(2, 0, 29);
  border-right: 2px solid var(--primary-orange);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.delivery-option:hover {
  background: rgb(0, 6, 26);
  transform: translateX(10px);
}

.delivery-content {
  flex: 1;
}

.delivery-title {
  color: var(--primary-orange);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.delivery-description {
  color: #d1d5db;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.delivery-features {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.delivery-features li {
  color: white !important;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 0 0 auto;
}

.delivery-features li i {
  color: white !important;
  font-size: 0.9rem;
}

.cta-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.cta-box {
  background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
  padding: 3rem 2rem;
  text-align: center;
}

.cta-heading {
  color: var(--primary-orange);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-text {
  color: #d1d5db;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.enroll-btn {
  background: var(--primary-orange);
  color: white;
  border: none;
  padding: 1rem 3rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.enroll-btn:hover {
  background: var(--dark-orange);
  transform: scale(1.05);
}

.cta-icon {
  font-size: 3rem;
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .delivery-options-section {
    padding: 60px 0;
  }

  .section-heading {
    font-size: 2rem;
  }
  .delivery-features li {
    color: white !important;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 0 0 auto;
  }
  .cta-text {
    color: #d1d5db;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }
  .delivery-title {
    font-size: 1rem;
  }
  .delivery-description {
    font-size: 0.9rem;
  }

  .cta-box {
    padding: 2rem 1.5rem;
  }

  .cta-heading {
    font-size: 1.5rem;
  }

  .enroll-btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }

  .cta-container {
    margin-top: 2rem;
  }
}
/* section 7 testimonial */
.testimonial-section {
  padding: 60px 0;
}
.ts-section {
  background-color: #02001b;
}
.section-title {
  text-align: center;
  margin-bottom: 50px;
  color: #fff;
}

.section-title h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-title p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.testimonial-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  margin: 0 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 400px;
  text-align: center;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #667eea, #764ba2);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.quote-icon {
  font-size: 2rem;
  color: #667eea;
  opacity: 0.3;
  margin-bottom: 15px;
  text-align: center;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
  font-style: italic;
}

.student-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
}
.ts-rating {
  color: yellow;
}
.course-name {
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 10px;
  color: #667eea;
  text-align: center;
}

.rating {
  color: #ffc107;
  margin-bottom: 15px;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .ts-title h2 {
    font-size: 2rem;
  }

  .ts-card {
    margin: 0 10px;
    height: auto;
  }
}
.ts-text {
  font-size: 0.9rem !important;
}
.ts-student-name {
  font-size: 1rem !important;
}
.ts-course-name {
  font-size: 1rem !important;
}

.carousel-item {
  transition: transform 0.6s ease-in-out;
}

@media (min-width: 992px) {
  #testimonialCarousel {
    max-width: 600px;
    margin: 0 auto;
  }

  .section-title {
    font-size: 0.5rem !important;
    font-weight: 700;
    margin-bottom: 15px;
  }
}
/* ---- next step action section */
.next-step-image {
  width: 280px;
  height: 280px;
  object-fit: cover;
}

.image-placeholder {
  width: 470px;
  height: 380px;
  background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.section-title {
  font-weight: 400;
  font-size: 1.5rem !important;
  text-align: left;
}

.btn-design {
  background: #02001b !important;
  border-color: #02001b !important;
  color: white;
  font-size: 15px !important;
}

.btn-design:hover {
  background: #02001b !important;
  border-color: #02001b !important;
  color: black;
}

.btn-design {
  border: 2px solid #02001b !important;
  color: white !important;
}
.btn-designs {
  border: 2px solid #02001b !important;
  color: black !important;
  font-size: 15px !important;
  font-weight: bold;
}

.btn-design:hover {
  background: #f5f5f5;
  border-color: #02001b !important;
  color: white !important;
}

.text-link {
  color: #02001b;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
  color: white;
}

@media (max-width: 500px) {
  .next-step-image {
    width: 230px;
    height: 230px;
    margin-left: 30px !important;
  }
  .section-title {
    font-size: 1.3rem !important;
    text-align: left;
  }
}

/* website section */
.process-section {
  padding: 60px 0px;
  background: #f8f9fa;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.process-item {
  margin-bottom: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: start;
}

.process-number {
  font-size: 2rem;
  font-weight: 800;
  color: #ffd700;
  min-width: 50px;
  flex-shrink: 0;
}

.process-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.3rem;
}

.process-content p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.process-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.image-container {
  height: 350px;
  position: relative;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.placeholder-icon {
  font-size: 6rem;
  color: white;
  opacity: 0.9;
}

@media (max-width: 991px) {
  .section-title {
    font-size: 1.75rem;
  }

  .image-container {
    height: 200px;
    margin-top: 2rem;
  }

  .process-number {
    font-size: 1.3rem;
    min-width: 45px;
  }

  .process-content h3 {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .process-section {
    padding: 40px 17px;
  }

  .process-item {
    gap: 0.75rem;
  }
}
/* counter */
.counter-section {
  background: #02001b;
}

.counter-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1e40af, #ea580c);
  font-size: 1.5rem;
}

.counter-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgb(228, 228, 0);
}

.counter-label {
  color: #9ca3af;
  font-size: 0.9rem;
}

.content-title {
  color: rgb(228, 228, 0);
  font-size: 2rem;
  line-height: 1.3;
}

.content-text {
  color: #d1d5db;
  line-height: 1.8;
}

@media (max-width: 991px) {
  .counter-number {
    font-size: 2rem;
  }
  .content-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 576px) {
  .counter-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  .counter-number {
    font-size: 1.8rem;
  }
  .counter-label {
    font-size: 0.8rem;
  }
  .content-title {
    font-size: 1.5rem;
  }
  .content-text {
    font-size: 0.9rem;
  }
  .counter {
    font-size: 25px;
  }
  .alot {
    margin-left: 5px;
  }
}

/* talk to */
.cta-banner {
  border-radius: 20px;
  padding: 4rem 2rem;
}

.cta-icon {
  font-size: 4rem;
  color: #ffd700;
  margin-bottom: 1.5rem;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.1rem;
  color: #d1d5db;

  margin: 0 auto 2rem;
}

.btn-ctas {
  background: rgb(0, 0, 31) !important;
  padding: 1rem 3rem;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-ctas:hover {
  background: #ea580c;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

@media (max-width: 768px) {
  .cta-banner {
    padding: 3rem 1.5rem;
  }

  .cta-title {
    font-size: 1.3rem !important;
    text-align: left;
  }

  .cta-description {
    font-size: 1rem;
  }

  .btn-ctas {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .cta-icon {
    font-size: 3rem;
  }

  .cta-title {
    font-size: 1.75rem;
  }
  .cta-description {
    font-size: 1rem !important;
    text-align: left;
  }
}

/* footer */
footer {
  background: #010018;
  color: #e5e7eb;
  border-top: 3px solid #1e40af;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 1rem;
}

.footer-heading {
  color: #ffd700;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-link {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  margin-bottom: 0.75rem;
}

.footer-link:hover {
  color: #ffd700;
  padding-left: 5px;
}

.footer-text {
  color: white;
  line-height: 1.8;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: #c2a502;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  margin-right: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  background: #ffd700;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid white;
  padding-top: 1.5rem;
  margin-top: 3rem;
}

.footer-bottom p {
  color: white;
  margin: 0;
}

.contact-item {
  display: flex;
  align-items: start;
  margin-bottom: 1rem;
  color: white;
}

.contact-item i {
  color: white;
  font-size: 1.2rem;
  margin-right: 0.75rem;
  margin-top: 0.25rem;
}

@media (max-width: 768px) {
  .footer-column {
    margin-bottom: 2rem;
  }
  footer {
    font-size: 0.9rem !important;
  }
}
