﻿body {
}
/* Card Style */
.login-card {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    padding: 40px 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.login-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
}
 
    .silver-header {
        background-color: silver !important;
        font-weight: bold;
        text-align: center;
    }
    .name-row {
        background-color: #f9f9f9 !important;
        text-align: center;
    }
.product-card {
    background: #fff;
    border: 1px solid #dcdcdc;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.05);
    min-height: 350px;
}


.product-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2a4fa3;
    text-align: center;
}

.accordion-section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: #f0f4ff;        /* light blue background like a dropdown */
    border: 1px solid #c8d4ff; /* soft border */
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none !important;
    cursor: pointer;
    margin-bottom: 8px;
    transition: background 0.3s ease, border-color 0.3s ease;
}
.link-blockIB {
    padding: 4px 0;
}

.title {
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 10px;
}

.card {
    border-radius: 10px;
}

.editor-card, .othreditr {
    border-radius: 10px;
    padding: 15px;
    background: #ffffff;
    box-shadow: 0px 0px 8px rgba(0,0,0,0.15);
    margin-bottom: 20px;
}

.section-title {
    font-size: 20px;
    font-weight: bold;
    color: #0560A0;
    text-align: center;
    margin-bottom: 10px;
}

.editor-photo {
    border-radius: 10px;
}
.accordion-section-title:hover {
    background: #e4ebff; /* darker on hover */
    border-color: #b0c2ff;
}
.caret-icon {
    transition: transform 0.3s ease;
    font-size: 14px;
}

/* rotates when opened */
.accordion-active .caret-icon {
    transform: rotate(180deg);
}

.accordion-section-title i {
    font-size: 14px;
    transition: 0.3s;
}

.accordion-active i {
    transform: rotate(180deg);
}

.accordion-section-content {
    padding: 10px;
    display: none;
    border-left: 2px solid #007bff;
    margin-bottom: 10px;
    background: #fff;
    border-radius: 5px;
    border: 1px solid #e6e6e6;
}
 /* Style for the copyright bar container */
.copyrights {
    background-color: #222; 
    padding: 30px 0; /* Standard vertical padding for desktop */
    color: white;
    font-size: 14px;
}
/* Page container */
.speciality-container {
    max-width: 900px;
    margin: 30px auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
}

/* Page title */
.speciality-title {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #003366;
}

/* Form rows */
.form-row {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

/* Label styling */
.form-label {
    width: 220px;
    font-weight: 600;
    font-size: 15px;
    color: #333;
}

/* Input styling */
.form-input,
select,
textarea {
    flex: 1;
    padding: 7px 10px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

textarea {
    min-height: 60px;
}

/* Buttons */
.btn-primary {
    background: #0066cc;
    color: #fff;
    padding: 10px 35px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.btn-primary:hover {
    background: #004a99;
}

/* Grid styling */
.speciality-grid {
    width: 100%;
    border-collapse: collapse;
    margin-top: 25px;
}

.speciality-grid th,
.speciality-grid td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.speciality-grid th {
    background: #003366;
    color: #fff;
}

.gridtable {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

/* Header */
.gridtable th {
    background-color: #007bff;
    color: white;
    padding: 10px;
    text-align: left;
    border: 1px solid #ccc;   /* vertical + horizontal borders */
}

/* Cells */
.gridtable td {
    padding: 8px 10px;
    border: 1px solid #ccc;   /* vertical + horizontal borders */
}
/* Year Block */
.year-block {
    margin-bottom: 30px;
}

.year-title {
    background: #005a9e;
    color: white;
    padding: 8px 15px;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 20px;
}

/* Member Cards */
.member-card {
    background: #fffbb1;   
    color: black !important;    /* Ensure labels are black */
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    min-height: 95px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
    border: 1px solid #333;
    transition: 0.3s;
}

/* Hover effect */
.member-card:hover {
    background: #fff37d;
    transform: translateY(-2px);
}

/* Label / Text inside card */
.member-card span {
    color: black !important;
    font-weight: 600;
}
/* Even rows */
.gridtable tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Hover effect */
.gridtable tr:hover {
    background-color: #eef6ff;
}

/* Selected row */
.gridtable .selected-row {
    background-color: #007bff;
    color: white;
    font-weight: bold;
}

.copyrights .container {
    display: flex;
    justify-content: center; 
    align-items: center; 
}
.year-block {
    margin-bottom: 30px;
}

.year-title {
    background: #003366;
    color: white;
    padding: 10px 15px;
    border-radius: 6px;
}

.member-row {
    margin-top: 10px;
}

.member-box {
    background: #1a1a1a;       /* DARKER BACKGROUND */
    color: #fff;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    min-height: 95px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
    border: 1px solid #333;
    transition: 0.3s;
}

.member-box:hover {
    background: #000;          /* Even darker on hover */
    transform: translateY(-3px);
}

.slno {
    font-weight: bold;
    color: #ffcc00;
}

.name {
    font-size: 16px;
    font-weight: 600;
}

.lm {
    font-size: 14px;
    color: #ccc;
}

.copyrights p {
    color: white;
    margin: 0; 
    text-align: center;
}

.copyrights a {
    color: white; 
    text-decoration: none;
    font-weight: bold;
}

.copyrights a:hover {
    color: #ccc; 
}
/* Style for the main container background (as provided) */
#contact {
    padding-top: 50px;
    padding-bottom: 50px;
}
/* Header */
.login-header {
    font-size: 24px;
    font-weight: bold;
    color: #11119b;
    text-align: center;
    margin-bottom: 30px;
}

/* Labels */
.form-label {
    font-weight: 600;
    color: #333333;
}

/* Inputs */
.form-control {
    border-radius: 10px;
    border: 1px solid #ccc;
    padding: 10px 15px;
    width: 100%;
    margin-bottom: 20px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: #CC0066;
    box-shadow: 0 0 5px rgba(204, 0, 102, 0.3);
    outline: none;
}

/* Buttons */
.btn-primary {
    background-color: #CC0066;
    border: none;
    border-radius: 10px;
    padding: 10px 25px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #99004d;
}

.btn-secondary {
    background-color: #6666ff;
    border: none;
    border-radius: 10px;
    padding: 10px 25px;
    font-weight: bold;
    margin-left: 10px;
}

.btn-secondary:hover {
    background-color: #3333cc;
}

/* Forgot Password */
.forgot-password a {
    color: #CC0066;
    text-decoration: none;
    font-weight: bold;
}

.forgot-password a:hover {
    text-decoration: underline;
}
.edtprofilerow {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin: 30px auto;
    padding: 25px 30px;
    transition: all 0.3s ease;
}
.state-menu ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.state-menu ul li {
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
}

.state-menu ul li:last-child {
    border-bottom: none;
}

.state-menu .menu-item {
    font-size: 16px;
    font-weight: 600;
    color: #444 !important;
    text-decoration: none;
    display: block;
}

.state-menu .menu-item:hover {
    color: #003399 !important;
}
.card-header {
    padding: 15px 20px;
    font-size: 22px;
    font-weight: bold;
}
.editor-card {
    max-width: 400px;
    margin: 0 auto;
    border-radius: 10px;
    padding: 10px;
}

.editor-title {
    color: #0560A0;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
}
.custom-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    height: 100%;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.card-title {
    margin-bottom: 15px;
    font-weight: bold;
}

.card-image {
    max-width: 120px;
    margin: 0 auto;
    display: block;
}


.editor-photo {
    width: 80px;      /* small width */
    height: auto;
    border-radius: 6px;
    border: 1px solid #ccc;
}
.paragraphborder {
    border-left: 4px solid #0056b3;
    padding-left: 15px;
    margin-bottom: 20px;
}


/* + Icon Style */
.state-menu .plus-icon {
    background: #e6e6e6;
    color: #555;
    font-weight: bold;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
}

.edtprofilerow:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.1);
}

/* ===== Section Headings ===== */
.edthead {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0078d7;
    border-bottom: 2px solid #0078d7;
    padding-bottom: 8px;
    margin-bottom: 25px;
    cursor: pointer;
    display: inline-block;
}

.edthead:hover {
    color: #005a9e;
    text-decoration: underline;
}

/* ===== Form Content ===== */
.contStyle {
    color: #333;
    font-size: 0.95rem;
}

.row.gap {
    margin-bottom: 15px;
}

.txtcontrol input[type="text"],
.txtcontrol input[type="password"],
.txtcontrol textarea,
.txtcontrol select,
.form-control {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 8px 10px;
    transition: all 0.3s ease;
}

.txtcontrol input:focus,
.txtcontrol select:focus,
.txtcontrol textarea:focus {
    border-color: #0078d7;
    box-shadow: 0 0 4px rgba(0,120,215,0.4);
    outline: none;
}

/* ===== Labels ===== */
.dispblock {
    font-weight: 500;
    color: #444;
}

/* ===== Buttons ===== */
.btn-info {
    background: linear-gradient(135deg, #0078d7, #00a1ff);
    border: none;
    border-radius: 6px;
    color: white;
    font-weight: 600;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.btn-info:hover {
    background: linear-gradient(135deg, #005a9e, #0083cc);
    transform: translateY(-1px);
}

/* ===== Profile Image ===== */
.contimg img {
    border-radius: 10px;
    border: 3px solid #e6e6e6;
    transition: 0.3s ease;
}

.contimg img:hover {
    border-color: #0078d7;
    transform: scale(1.02);
}

/* ===== Headings inside forms ===== */
h4 {
    color: #0078d7;
    font-weight: 600;
    margin-top: 20px;
}

/* ===== File Upload Styling ===== */
input[type="file"] {
    border: 1px solid #ccc;
    padding: 6px;
    border-radius: 5px;
    background-color: #f7f9fb;
}

input[type="file"]:hover {
    border-color: #0078d7;
}

/* ===== Validation Error Text ===== */
.LabelStyleRequired, .text-danger, span[style*="color: Red"] {
    color: #d9534f !important;
    font-size: 0.9rem;
}
.edthead.profclick {
    color: #0078d7;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    padding: 10px 0;
    margin: 40px auto 20px; /* margin-top is 40px here */
    border-bottom: 3px solid #0078d7;
    width: fit-content;
    cursor: pointer;
    transition: all 0.3s ease;
}

.edthead.profclick:hover {
    color: #005a9e;              /* Darker blue on hover */
    border-color: #005a9e;       /* Darker underline on hover */
    letter-spacing: 1px;         /* Slight letter spacing on hover */
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .edthead {
        font-size: 1.3rem;
    }
    .btn-info {
        width: 100%;
    }
    .contimg img {
        width: 100%;
        height: auto;
    }
}

