html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}
.card-img-top {
    height: auto; /* Sets a fixed height for all images */
    object-fit: cover; /* Ensures the image covers the set dimensions without distortion */
}

.transition-hover {
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

    .transition-hover:hover {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        transform: translateY(-4px);
    }

.card:hover .card-title {
    color: #0d6efd;
}

.badge {
    font-size: 0.75rem;
    padding: 0.35em 0.6em;
}

.card-body {
    padding: 1.5rem;
}

.status-label {
    font-weight: 500;
    display: inline-block;
    margin-right: 0.25rem;
}

.pagination .page-link {
    margin: 0 4px;
}

.card-subtitle {
    font-size: 0.9rem;
}

/* General Styles for the About Page */
.about-page {
    padding: 60px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

    /* Container Box */
    .about-page .container {
        background-color: white;
        padding: 40px 30px;
        border-radius: 12px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    }

    /* Heading */
    .about-page h1 {
        font-size: 2.75rem;
        color: #212529;
        margin-bottom: 10px;
    }

    /* Section Titles */
    .about-page h4,
    .about-page h5,
    .about-page h6 {
        color: #343a40;
    }

    /* Tagline */
    .about-page .text-muted {
        font-size: 1.1rem;
        color: #6c757d !important;
    }

    /* Paragraphs */
    .about-page p {
        font-size: 1.05rem;
        color: #495057;
        line-height: 1.75;
    }

    /* List Style */
    .about-page ul {
        padding-left: 0;
    }

    .about-page li {
        font-size: 1.05rem;
        color: #495057;
    }

    /* Icons */
    .about-page i {
        vertical-align: middle;
    }

    /* Buttons */
    .about-page .btn-warning {
        font-weight: 600;
        border-radius: 30px;
        padding: 10px 25px;
        box-shadow: 0 4px 12px rgba(255, 193, 7, 0.2);
        transition: 0.3s ease-in-out;
    }

        .about-page .btn-warning:hover {
            background-color: #e0a800;
            color: #fff;
            transform: translateY(-2px);
        }

    /* Divider */
    .about-page hr {
        border-top: 1px solid #dee2e6;
    }

    /* How It Works Section */
    .about-page .row.text-center i {
        transition: transform 0.3s ease-in-out;
    }

        .about-page .row.text-center i:hover {
            transform: scale(1.2);
        }

/* Responsive Touches */
@media (max-width: 767.98px) {
    .about-page h1 {
        font-size: 2rem;
    }

    .about-page .container {
        padding: 20px 15px;
    }

    .about-page .row.text-center > div {
        margin-bottom: 30px;
    }
}

.contact-section {
    padding: 60px 15px;
    background-color: #f9fafc;
}

.contact-info, .contact-form {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

    .contact-form .form-control {
        border-radius: 8px;
    }

.btn-primary {
    border-radius: 8px;
    padding: 10px 25px;
}

