/* =========================================================
   CONNECT WITH US – COMMON STYLES
   ========================================================= */

/* ===== Officer / Grievance Card Box ===== */
.officer-card,
.grievance-box {
    background: linear-gradient(135deg, #f8fbff 0%, #e8f1f9 100%);
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    color: #2c3e50;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    padding: 20px;
}

/* Paragraphs */
.officer-card p,
.grievance-box p,
.prgi-appointment p,
.prgi-helpdesk p,
.apply-form p {
    margin: 10px 0;
    font-size: 15px;
    line-height: 1.6;
}

/* Headings */
.officer-card h3,
.grievance-box h3 {
    color: #064f94;
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 0.6rem;
    font-family: 'Poppins', sans-serif;
}

/* Links */
.officer-card a,
.grievance-box a {
    color: #064f94;
    text-decoration: none;
    font-weight: 600;
    border: #dbe3e3;
    background: none;
}

.officer-card a:hover,
.grievance-box a:hover {
    text-decoration: underline;
}

/* =========================================================
   ENQUIRY DESK / HELP DESK
   ========================================================= */

/* Intro text */
.prgi-intro p {
    font-size: 16px;
    line-height: 1.6;
}

/* Appointment section */
.prgi-appointment h2 {
    font-size: 24px;
}

.prgi-appointment h3 {
    font-size: 20px;
}

.prgi-appointment ul,
.prgi-appointment ul li,
.prgi-appointment strong {
    font-size: 15px;
    line-height: 1.6;
}

/* Helpdesk section */
.prgi-helpdesk h4 {
    font-size: 18px;
}

.prgi-helpdesk small {
    font-size: 13px;
}

/* Map iframe */
.map-iframe {
    width: 100%;
    border: 0;
}

/* =========================================================
   ONLINE MEETING / APPLICATION FORM
   ========================================================= */

.apply-form input[type="submit"] {
    font-size: 15px;
    padding: 8px 16px;
    margin-left: 8px;
}

/* =========================================
   Officer Intro Card
   ========================================= */
.officer-card {
    background: linear-gradient(135deg, #f8fbff 0%, #b6c8d9 100%);
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 20px;
}

/* =========================================
   Officer Details Card
   ========================================= */
.officer-card-details {
    background: linear-gradient(135deg, #f8fbff 0%, #b6c8d9 100%);
    border-left: 5px solid #064f94;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
    padding: 22px;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #064f94;
    transition: all 0.3s ease;
}

/* Hover effect */
.officer-card-details:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 14px rgba(6, 79, 148, 0.25);
    background: #f6faff;
}

/* Officer Name */
.officer-card-details h3 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #064f94;
}

/* Details text */
.officer-card-details p {
    margin: 6px 0;
    font-weight: 500;
    color: #064f94;
}

/* Email link */
.officer-card-details a {
    color: #064f94;
    font-weight: 600;
    text-decoration: none;
	background: none;
}

/* Email hover */
.officer-card-details a:hover {
    text-decoration: underline;
}