.footer {
    background-color: #000; /* Black background */
    color: #fff; /* White text */
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
}

.footer a {
    color: #bbb; /* Soft grey links */
    text-decoration: none;
}

.footer a:hover {
    color: #0d6efd; /* Blue hover */
}

.footer i {
    font-size: 1.2rem;
}

/* Gradient primary button */
.btn-gradient {
  background: linear-gradient(135deg, #0d47a1, #000000);
  border: none;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-gradient:hover {
  background: linear-gradient(135deg, #1565c0, #1a1a1a);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

/* Outline variant that still matches theme */
.btn-gradient-outline {
  background: transparent;
  border: 2px solid #0d47a1;
  color: #0d47a1;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-gradient-outline:hover {
  background: linear-gradient(135deg, #0d47a1, #000000);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}


/* Text */
div.card.course-card .card-title,
div.card.course-card .card-text {
  color: #fff !important;
}

/* Buttons */
div.card.course-card .btn-primary {
  background-color: #ebfc03 !important;
  border-color: #1976d2 !important;
  transition: background-color 0.3s ease;
}

div.card.course-card .btn-primary:hover {
  background-color: #1565c0 !important;
}

div.card.course-card .btn-light {
  color: #333 !important;
  background-color: #f1f1f1 !important;
}

body {
    background: #f4f9f6;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


.module-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0.5rem 0;
}
.module-content p {
    margin-bottom: 0.5rem;
}
.module-content ul, .module-content ol {
    padding-left: 1.2rem;
}




    .wallet-wrapper {
        display: flex;
        justify-content: center;
        margin-top: 60px;
    }

    .wallet-container {
        width: 100%;
        max-width: 500px;
        background: #ffffff;
        padding: 30px;
        border-radius: 12px;
        box-shadow: 0 6px 18px rgba(0,0,0,0.1);
        text-align: center;
    }

    .wallet-header h2 {
        margin-bottom: 25px;
        font-weight: 600;
        color: #0d6efd;
    }

    .wallet-balance {
        font-size: 1.3em;
        margin-bottom: 20px;
    }

    .notice {
        background-color: #e7f1ff;
        color: #0d6efd;
        padding: 14px 18px;
        border-radius: 8px;
        margin-bottom: 25px;
        font-weight: 500;
        box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
    }

    .btn-primary {
        background-color: #0d6efd;
        border: none;
        padding: 12px 20px;
        font-size: 1em;
        font-weight: 500;
        border-radius: 8px;
    }

    /* Modal styling */
    .modal-content {
        border-radius: 12px;
        padding: 20px;
    }

    .modal-header .btn-close {
        border: none;
    }

    .modal-body .form-control {
        border-radius: 8px;
    }





/* About Us Page */
.about-page h1 {
    font-weight: 700;
    color: #2c3e50;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 15px;
    border-left: 4px solid #007bff;
    padding-left: 10px;
}

.about-page p {
    line-height: 1.7;
    color: #555;
}

.custom-list {
    list-style: none;
    padding-left: 0;
}

.custom-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 20px;
}

.custom-list li::before {
    content: "✔";
    color: #007bff;
    font-weight: bold;
    position: absolute;
    left: 0;
}
  