﻿/* Set padding to keep content from hitting the edges */
.body-content {
    margin-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}

/* ================= CONTACT PAGE ================= */



.contact-section {
    background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.contact-info-card,
.contact-form-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 35px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

    .contact-info-card h3 {
        color: #0f172a;
    }

.contact-details li {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 14px;
    color: #374151;
    font-size: 15px;
}

.contact-details i {
    font-size: 18px;
    color: #facc15;
}

.form-control,
.form-select {
    border-radius: 12px;
    padding: 14px;
}

    .form-control:focus,
    .form-select:focus {
        border-color: #facc15;
        box-shadow: 0 0 0 0.15rem rgba(250,204,21,0.35);
    }

.btn-warning {
    border-radius: 14px;
    font-size: 16px;
}




/* FOOTER GAP */
.contact-footer-gap {
    padding: 70px 0;
    background: #f8fafc;
}

/* VALIDATION */
.field-validation-error {
    color: #dc2626;
    font-size: 0.85rem;
}

/* MOBILE */
@media (max-width: 767px) {
    .contact-hero-section {
        padding: 70px 0 50px;
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 28px;
    }
}

/* DASHBOARD CARD */
.dash-card {
    border-radius: 20px;
    padding: 25px;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    min-height: 190px;
}

    .dash-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 20px 45px rgba(0,0,0,0.25);
    }

/* ICON */
.dash-icon {
    width: 55px;
    height: 55px;
    background: rgba(255,255,255,0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 15px;
}

/* TEXT */
.dash-card h6 {
    opacity: 0.9;
    margin-bottom: 5px;
}

.dash-card h2 {
    font-weight: 700;
    margin-bottom: 10px;
}

.dash-card a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    opacity: 0.9;
}

    .dash-card a:hover {
        text-decoration: underline;
    }

/* GRADIENT THEMES */
.gradient-blue {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
}

.gradient-green {
    background: linear-gradient(135deg, #11998e, #38ef7d);
}

.gradient-orange {
    background: linear-gradient(135deg, #f7971e, #ffd200);
}

.gradient-purple {
    background: linear-gradient(135deg, #7f00ff, #e100ff);
}

.gradient-dark {
    background: linear-gradient(135deg, #232526, #414345);
}
