html { 
  overflow-y: scroll; 
}

body{
    min-height: 100vh;
    background: linear-gradient(135deg, #eaf3ff 0%, #d7ecff 45%, #f6fbff 100%);
    font-family: 'IBM Plex Sans', sans-serif;
}

/* Better spacing under fixed navbar */
.contact-form{
    width: min(920px, 92vw);
    margin: 110px auto 48px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(31, 79, 140, 0.14);
    border: 1px solid rgba(44, 95, 160, 0.12);
    overflow: hidden;
}

.contact-form form{
    padding: 44px 44px 36px;
}

.contact-image{
    text-align: center;
    padding-top: 28px;
}

.contact-image img{
    width: 74px;
    height: 74px;
    border-radius: 18px;
    transform: rotate(0deg);
    margin-top: 0;
    background: linear-gradient(135deg, #2C5FA0 0%, #5aa7ff 100%);
    padding: 14px;
    box-shadow: 0 10px 24px rgba(44, 95, 160, 0.18);
}

.contact-form h3{
    margin: 18px 0 26px;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.2px;
    color: #123a66;
}

/* Modern inputs */
.contact-form .form-control{
    height: 50px;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    background: #fff;
    box-shadow: none;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus{
    border-color: #2C5FA0;
    box-shadow: 0 0 0 4px rgba(44, 95, 160, 0.12);
    outline: none;
}

.contact-form .form-control::placeholder{
    color: #adb5bd;
}

.contact-form textarea.form-control{
    height: 150px !important;
    border-radius: 12px;
    padding-top: 14px;
    resize: none;
}

.contact-form .form-group{
    margin-bottom: 1.25rem;
}

/* Button */
.contact-form .btnContact{
    width: 100%;
    margin-left: 0;
    border: none;
    border-radius: 12px;
    padding: 14px 20px;
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(135deg, #2C5FA0 0%, #5aa7ff 100%);
    box-shadow: 0 8px 20px rgba(44, 95, 160, 0.25);
    transition: all 0.3s ease;
}

.contact-form .btnContact:hover{
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(44, 95, 160, 0.32);
}

.contact-form .btnContact:active{
    transform: translateY(0);
}

@media (max-width: 768px){
    .contact-form form{ padding: 26px 18px 22px; }
}

/* Navbar styling for public pages */
#mainNav {
    background: linear-gradient(135deg, #2C5FA0 0%, #5aa7ff 100%);
}

/* Footer for contact page */
.contact-footer {
    background: linear-gradient(135deg, #2C5FA0 0%, #5aa7ff 100%);
    color: #fff;
    padding: 18px;
    text-align: center;
    font-size: 14px;
    margin-top: 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}