.mainbg{
    background-image: url('../images/header/cover.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 0;
}


/* span{
  color: orangered;
} */



.small{
  font-size: 15px;
}

.about .about-image .experience-badge {
  position: absolute;
  bottom: 30px;
  right: -30px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  min-width: 140px;
}

.about .about-image .experience-badge .years {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  display: block;
  margin-bottom: 5px;
}

.about .about-image .experience-badge .text {
  font-size: 0.9rem;
  text-transform: lowercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .about .about-image .experience-badge {
    right: 0;
    bottom: 20px;
    padding: 1rem;
    min-width: 120px;
  }

  .about .about-image .experience-badge .years {
    font-size: 2rem;
  }
}











iframe{
  width: 100%;
  height: 70vh;
}


#hero, #hero h2, #hero span, #hero p, #hero a{
  color: black;
}

.colorbgg a:hover{
  background-color: #000;
}






/* 

#Nkrumah{
  position: relative;
  width: 100%;
}

#Nkrumah .container{
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  transform: translate(-50%,-50%);
} */










/* Styling for form container */
#paymentForm {
    width: 300px;
    margin: 0 auto;
  }
  
  /* Styling for form groups */
  .form-group {
    margin-bottom: 20px;
  }
  
  /* Styling for labels */
  label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
  }
  
  /* Styling for input fields */
  input[type="email"],
  input[type="tel"],
  input[type="text"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  /* Styling for submit button */
  button[type="submit"] {
    background-color: #fbb500;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  button[type="submit"]:hover {
    background-color: #d39700;
  }
  
  






















   /* === Trigger Button === */
    .open-btn {
      background: #fbb500;
      color: #fff;
      border: none;
      padding: 14px 28px;
      font-size: 17px;
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .open-btn:hover {
      background: #e2a201;
    }

    /* === Modal Overlay === */
    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      backdrop-filter: blur(5px);
      background: rgba(0, 0, 0, 0.4);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 1000;
      animation: fadeIn 0.3s ease-in-out;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    /* === Popup Box === */
    .popup {
      background: #fff;
      border-radius: 12px;
      padding: 30px 25px;
      width: 90%;
      max-width: 400px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
      position: relative;
      animation: slideIn 0.3s ease-out;
    }

    @keyframes slideIn {
      from { transform: translateY(-30px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }

    /* === Close Button === */
    .close-btn {
      position: absolute;
      top: 10px;
      right: 12px;
      background: transparent;
      border: none;
      font-size: 24px;
      cursor: pointer;
      color: #444;
    }

    .close-btn:hover {
      color: #000;
    }

    /* === Form Styling === */
    .popup h2 {
      text-align: center;
      margin-bottom: 15px;
      color: #222;
    }

    .form-group {
      margin-bottom: 15px;
      text-align: left;
    }

    label {
      display: block;
      margin-bottom: 6px;
      font-weight: 500;
      color: #333;
    }

    input {
      width: 100%;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 15px;
      outline: none;
      transition: border 0.2s;
    }

    input:focus {
      border-color: #2563eb;
    }

    .submit-btn {
      width: 100%;
      background: #16a34a;
      color: #fff;
      border: none;
      padding: 12px;
      border-radius: 6px;
      font-size: 16px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .submit-btn:hover {
      background: #128039;
    }





     .payment-link {
    display: inline-block;
    padding: 10px 18px;
    color: #007bff;
    border: 1px solid #007bff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
  }

  .payment-link:hover {
    background: #007bff;
    color: #fff;
  }

  /* Overlay Background */
  .modal-overlays {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }

  /* Popup Box */
  .modals {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    width: 350px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  }

  /* Close Button */
  .close-btn {
    position: absolute;
    top: 10px; right: 10px;
    border: none;
    background: none;
    font-size: 22px;
    cursor: pointer;
    font-weight: bold;
  }

  /* Form Styling */
  .form-group {
    margin-bottom: 15px;
  }

  .form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
  }

  .form-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
  }

  .form-submit button {
    width: 100%;
    padding: 10px;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
  }

  .form-submit button:hover {
    background: #218838;
  }