

body { font-family: 'Inter', sans-serif; background-color: #f8f9fa; color: #09096C; line-height: 1.6; }
    .navbar { background-color: #fcfcfd; padding: 1rem 0; box-shadow: 0 6px 18px rgba(0,0,0,0.12); }
    .nav-link { color: #09096C !important; font-weight: 600; margin: 0 10px; opacity: 0.8; transition: 0.3s; }
    .nav-link:hover, .nav-link.active { opacity: 1; border-bottom: 2px solid #09096C; }
    .btn-engage { border: 1px solid #fff; color: #fff; border-radius: 0; padding: 5px 20px; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; }
    .btn-engage:hover { background: #fff; color: #D1221F; }

    .hero-section { background-color: #e9ecef; padding: 100px 0; border-bottom: 1px solid #dee2e6; background-image: 
        linear-gradient(
            rgba(26, 37, 47, 0.25),
            rgba(26, 37, 47, 0.25)
        ),
        url("/home/zeeshan/Downloads/Kais/templates/banner1.jpeg");
        background-size: 100%;
    background-position: center;
 }  

/* Navbar Styling */


/* Header Section */
.contact-header {   
    background:  
                url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&q=80');
    background-size: cover; background-position: center;
    padding: 100px 0; color: white;
}

/* Main Contact Card */
.contact-wrapper {
    background: #ffffff;
    border: none;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    margin-top: -80px;
    overflow: hidden;
    border-radius: 4px;
}

.info-panel { background: #f8f9fa; color: #09096C; padding: 50px; height: 100%; }
.form-panel { padding: 50px; position: relative; min-height: 550px; }

/* Form Styling */
.form-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 1px; color: var(--slate-gray); }
.form-control, .form-select {
    border-radius: 0; border: 1px solid #e2e8f0; padding: 14px;
    background-color: #f8fafc; transition: all 0.3s ease;
}
.form-control:focus {
    box-shadow: none; border-color: var(--accent-blue); background-color: #fff;
}

/* High-Tech Submit Button */
.btn-submit {
    background: #09096C; color: white; border: none;
    padding: 18px 40px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; transition: all 0.4s;
    border-radius: 0; width: 100%;
}
.btn-submit:hover { 
    background: #D1221F; color: #fff;
    
}

/* Info Item Styles */
.contact-icon-box {
    width: 45px;
    height: 45px;

    flex-shrink: 0;   /* ⭐ THIS FIXES IT */

    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--accent-blue);
    margin-right: 20px;
    font-size: 1.2rem;
}

/* Success State Styling */
#successMessage {
    display: none; /* Controlled by JS */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.success-icon {
    font-size: 5rem; color: #10b981; margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(16, 185, 129, 0.2));
}


.navbar-logo {

    height: 65px;      /* Desktop height */
    width: auto;

    object-fit: contain;

}

/* Mobile Logo Size */

@media (max-width: 768px) {

    .navbar-logo {

        height: 38px;

    }

}

/* Extra small devices */

@media (max-width: 480px) {

    .navbar-logo {

        height: 50px;

    }

}

footer { background: #09096C; color: #64748b; padding: 40px 0; font-size: 0.85rem; }

.navbar-toggler {
    border-color: #09096C;
}