/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.container {
    width: 90%;
    margin: auto;
}

/* TOP BAR */
.topbar {
    background: #001f4d;
    color: white;
    padding: 5px;
    text-align: center;
}

/* HEADER */
.header {
    background: #fff;
    padding: 10px 0;
    border-bottom: 2px solid #ddd;
}

.header-flex {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 70px;
}

/* ================= HEADER IMAGE ================= */
.top-header {
    background: repeating-linear-gradient(90deg,
            #8b0000,
            #8b0000 10px,
            #a00000 10px,
            #a00000 20px);
    padding: 20px 0;
    text-align: center;
}

.logo-box img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.header-img {
    width: 1200px;
    /* FIXED SIZE */
    height: 180px;
    object-fit: cover;
}

/* ================= NAVBAR ================= */
.custom-navbar {
    background-color: #2d2d2d;
}

/* REMOVE OLD NAVBAR CONFLICT */
.navbar ul {
    list-style: none;
}

/* MENU LINKS */
.custom-navbar .nav-link {
    color: #ddd;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: bold;
    border-right: 1px solid #555;
}

/* REMOVE LAST BORDER */
.custom-navbar .nav-item:last-child .nav-link {
    border-right: none;
}

/* HOVER */
.custom-navbar .nav-link:hover {
    background-color: #000;
    color: #fff;
}

/* ACTIVE HOME */
.custom-navbar .nav-link.active {
    background-color: #fff;
    color: #000 !important;
}

/* ================= DROPDOWN FIX ================= */
.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #000;
    min-width: 280px;
    border: none;
    padding: 5px 0;
}

/* SHOW ONLY ON HOVER */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

/* DROPDOWN ITEMS */
.dropdown-menu .dropdown-item {
    color: #fff;
    padding: 10px 20px;
}

/* DROPDOWN HOVER */
.dropdown-menu .dropdown-item:hover {
    background-color: #2d2d2d;
    color: #fff;
}

/* ================= MAIN GRID ================= */
.main-grid {
    display: flex;
    gap: 20px;
    padding: 30px 0;
}

.content {
    flex: 3;
}

.sidebar {
    flex: 1;
    background: #f5f5f5;
    padding: 15px;
}

/* ================= FOOTER ================= */
.footer {
    background: #8b0000;
    color: white;
    padding: 20px 0;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
}

.copy {
    text-align: center;
    margin-top: 10px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

    .main-grid {
        flex-direction: column;
    }

    .footer-grid {
        flex-direction: column;
        gap: 20px;
    }

    .header-img {
        width: 100%;
        height: auto;
    }
}

/* MOBILE BUTTON */
.navbar-toggler {
    border: none;
    font-size: 22px;
}

.college-section {
    background: #f2f2f2;
    padding: 40px 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* IMAGE */
.college-image {
    text-align: center;
    margin-bottom: 20px;
}

.college-image img {
    width: 100%;
    max-width: 1000px;
    border: 5px solid #ddd;
}

/* CONTENT */
.college-content {
    text-align: center;
    color: #333;
    line-height: 1.6;
}

.college-content p {
    margin-bottom: 15px;
}

/* MOTTO */
.motto {
    color: #8b0000;
    font-weight: bold;
    font-style: italic;
}

/* HEADINGS */
.section-title {
    color: #8b0000;
    margin: 20px 0 10px;
    text-decoration: underline;
}

.section-subtitle {
    color: #8b0000;
    margin-top: 20px;
}

/* LIST */
.progress-list {
    list-style: square;
    text-align: left;
    display: inline-block;
    margin-top: 10px;
}

.progress-list li {
    margin: 5px 0;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

    .college-content {
        text-align: left;
    }

    .progress-list {
        width: 100%;
    }
}

.college-image {
    margin-bottom: 20px;
}

.college-image img {
    height: 350px;
    object-fit: cover;
    border: 5px solid #ddd;
}

/* MOBILE */
@media (max-width: 768px) {
    .college-image img {
        height: 200px;
    }
}

.management-section {
    background: #f2f2f2;
}

/* TITLE */
.title {
    font-weight: bold;
    color: #555;
}

.session {
    color: #666;
    margin-top: 10px;
}

/* IMAGE FRAME */
.framed-img {
    border: 8px solid #c49a6c;
    padding: 5px;
    background: #fff;
}

/* TABLE */
.custom-table {
    border: 3px solid #000;
}

.custom-table thead {
    background: #c4a77d;
    color: #fff;
}

.custom-table th {
    padding: 12px;
    text-align: center;
    font-size: 18px;
}

.custom-table td {
    padding: 8px;
    border: 1px solid #000;
}

/* ROW STRIPES */
.custom-table tbody tr:nth-child(even) {
    background: #eaeaea;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .title {
        font-size: 18px;
    }

    .session {
        font-size: 16px;
    }
}

.policy-section {
    background: #f2f2f2;
}

/* TITLE */
.policy-title {
    color: #8B2E00;
    /* brown color */
    font-size: 42px;
    font-weight: bold;
}

/* LIST */
.policy-list {
    max-width: 800px;
    margin: auto;
}

.policy-list ol {
    padding-left: 30px;
}

/* LINKS */
.policy-list li {
    font-size: 20px;
    margin-bottom: 8px;
}

.policy-list a {
    color: blue;
    text-decoration: none;
}

.policy-list a:hover {
    text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .policy-title {
        font-size: 28px;
    }

    .policy-list li {
        font-size: 16px;
    }
}

.admin-section {
    background: #f2f2f2;
}

/* TITLE */
.title {
    font-weight: bold;
    color: #555;
}

.session {
    color: #666;
    margin-top: 10px;
}

/* TABLE */
.custom-table {
    border: 3px solid #000;
}

.custom-table thead {
    background: #c4a77d;
    color: #fff;
}

.custom-table th {
    padding: 12px;
    text-align: center;
    font-size: 18px;
}

.custom-table td {
    padding: 8px;
    border: 1px solid #000;
    text-align: left;
}

/* STRIPES */
.custom-table tbody tr:nth-child(even) {
    background: #eaeaea;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .title {
        font-size: 18px;
    }

    .session {
        font-size: 16px;
    }

    .custom-table th,
    .custom-table td {
        font-size: 14px;
    }
}

.cell-section {
    background: #f2f2f2;
}

.session {
    color: #8B2E00;
    font-weight: bold;
}

.custom-table {
    border: 3px solid #000;
}

.custom-table th,
.custom-table td {
    border: 1px solid #000;
    padding: 8px;
}

.section-head {
    background: #c4a77d;
    color: #fff;
    text-align: center;
}

.custom-table thead tr:nth-child(2) {
    background: #c4a77d;
    color: #fff;
}

.custom-table tbody tr:nth-child(even) {
    background: #eaeaea;
}

.note {
    color: #555;
}

.activity-section {
    background: #f2f2f2;
}

/* TITLE */
.activity-title {
    color: #b22222;
    font-weight: bold;
    margin-bottom: 20px;
}

/* DESCRIPTION */
.desc {
    color: #555;
    margin-bottom: 10px;
    text-align: justify;
}

/* TABLE */
.custom-table {
    border: 3px solid #000;
}

.custom-table th,
.custom-table td {
    border: 1px solid #000;
    padding: 10px;
}

/* HEADER */
.section-head {
    background: #c4a77d;
    color: #fff;
    text-align: center;
    font-size: 18px;
}

/* COLUMN HEADER */
.custom-table thead tr:nth-child(2) {
    background: #c4a77d;
    color: #fff;
}

/* STRIPES */
.custom-table tbody tr:nth-child(even) {
    background: #eaeaea;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .activity-title {
        font-size: 18px;
    }

    .custom-table td,
    .custom-table th {
        font-size: 13px;
    }
}

.sports-section {
    background: #f2f2f2;
}

/* TITLE */
.sports-title {
    color: #8B2E00;
    font-weight: bold;
    margin-bottom: 20px;
}

/* TEXT */
.desc {
    color: #555;
}

.sports-list {
    margin: 10px 0 20px;
    padding-left: 20px;
    color: #555;
}

/* TABLE */
.custom-table {
    border: 3px solid #000;
}

.custom-table th,
.custom-table td {
    border: 1px solid #000;
    padding: 10px;
}

/* HEADER */
.section-head {
    background: #c4a77d;
    color: #fff;
    text-align: center;
    text-transform: lowercase;
}

/* COLUMN HEAD */
.custom-table thead tr:nth-child(2) {
    background: #c4a77d;
    color: #fff;
}

/* STRIPES */
.custom-table tbody tr:nth-child(even) {
    background: #eaeaea;
}

/* NOTE */
.note {
    margin-top: 15px;
    color: #555;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .sports-title {
        font-size: 20px;
    }

    .custom-table td,
    .custom-table th {
        font-size: 13px;
    }
}

.committee-section {
    background: #f2f2f2;
}

/* TABLE */
.custom-table {
    border: 3px solid #000;
}

.custom-table th,
.custom-table td {
    border: 1px solid #000;
    padding: 8px;
}

/* HEADER */
.section-head {
    background: #c4a77d;
    color: #fff;
    text-align: center;
}

/* STRIPES */
.custom-table tbody tr:nth-child(even) {
    background: #eaeaea;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .custom-table th,
    .custom-table td {
        font-size: 13px;
    }
}

.facility-section {
    background: #f2f2f2;
}

/* DESCRIPTION */
.desc {
    color: #555;
    text-align: justify;
    margin-bottom: 20px;
}

/* TITLE */
.facility-title {
    color: #8B0000;
    font-weight: bold;
    margin-bottom: 15px;
}

/* MAIN LIST */
.main-list {
    list-style-type: square;
    padding-left: 20px;
    color: #555;
}

.main-list li {
    margin-bottom: 6px;
}

/* SUB LIST */
.main-list ul {
    list-style-type: square;
    margin-top: 5px;
    padding-left: 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .desc {
        font-size: 14px;
    }

    .main-list li {
        font-size: 14px;
    }
}

.library-section {
    background: #f2f2f2;
}

/* TITLE */
.library-title {
    color: #555;
    font-weight: bold;
    margin-bottom: 25px;
}

/* CONTENT */
.library-content {
    color: #333;
    line-height: 1.8;
    text-align: justify;
    max-width: 1000px;
    margin: auto;
}

.library-content p {
    margin-bottom: 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .library-title {
        font-size: 24px;
    }

    .library-content {
        font-size: 14px;
    }
}

.agri-section {
    background: #f2f2f2;
}

/* TITLE */
.agri-title {
    color: #555;
    font-weight: bold;
    margin-bottom: 25px;
}

/* CONTENT */
.agri-content {
    max-width: 1000px;
    margin: auto;
    color: #333;
    line-height: 1.8;
    text-align: justify;
}

.agri-content p {
    margin-bottom: 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .agri-title {
        font-size: 22px;
    }

    .agri-content {
        font-size: 14px;
    }
}

.housing-section {
    background: #f2f2f2;
}

/* TITLE */
.housing-title {
    color: #555;
    font-weight: bold;
    margin-bottom: 20px;
}

/* TEXT */
.desc {
    color: #555;
    text-align: justify;
}

.note {
    color: #555;
    margin-top: 10px;
}

/* TABLE */
.custom-table {
    border: 3px solid #000;
}

.custom-table th,
.custom-table td {
    border: 1px solid #000;
    padding: 10px;
}

/* HEADER */
.custom-table thead th {
    background: #c4a77d;
    color: #fff;
    text-align: center;
}

/* STRIPES */
.custom-table tbody tr:nth-child(even) {
    background: #eaeaea;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .housing-title {
        font-size: 22px;
    }

    .custom-table td,
    .custom-table th {
        font-size: 13px;
    }
}

.parking-section {
    background: #f2f2f2;
}

/* TITLE */
.parking-title {
    color: #555;
    font-weight: bold;
    margin-bottom: 25px;
}

/* CONTENT */
.parking-content {
    max-width: 1000px;
    margin: auto;
    color: #333;
    line-height: 1.8;
    text-align: justify;
}

.parking-content p {
    margin-bottom: 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .parking-title {
        font-size: 22px;
    }

    .parking-content {
        font-size: 14px;
    }
}

.staff-section {
    background: #f2f2f2;
}

/* TABLE */
.custom-table {
    border: 3px solid #000;
}

.custom-table th,
.custom-table td {
    border: 1px solid #000;
    padding: 8px;
}

/* HEADER */
.section-head {
    background: #c4a77d;
    color: #fff;
    text-align: center;
    font-size: 18px;
}

/* COLUMN HEAD */
.custom-table thead tr:nth-child(2) {
    background: #c4a77d;
    color: #fff;
}

/* STRIPES */
.custom-table tbody tr:nth-child(even) {
    background: #eaeaea;
}

/* NOTE */
.note {
    color: #555;
    margin-top: 5px;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .custom-table th,
    .custom-table td {
        font-size: 13px;
    }
}

.staff-section {
    background: #f2f2f2;
}

.custom-table {
    border: 3px solid #000;
}

.custom-table th,
.custom-table td {
    border: 1px solid #000;
    padding: 8px;
}

/* SECTION TITLE */
.section-head {
    background: #c4a77d;
    color: #fff;
    text-align: center;
    font-size: 18px;
}

/* COLUMN HEAD */
.custom-table thead tr:nth-child(2) {
    background: #c4a77d;
    color: #fff;
}

/* STRIPES */
.custom-table tbody tr:nth-child(even) {
    background: #eaeaea;
}

.note {
    margin-top: 5px;
    color: #555;
}

.faculty-section {
    background: #f2f2f2;
}

.custom-table {
    border: 3px solid #000;
}

.custom-table th,
.custom-table td {
    border: 1px solid #000;
    padding: 10px;
    vertical-align: middle;
}

/* Section heading */
.section-head {
    background: #c4a77d;
    color: #fff;
    text-align: center;
    font-size: 20px;
}

/* Column header */
.custom-table thead tr:nth-child(2) {
    background: #c4a77d;
    color: #fff;
}

/* Row stripe */
.custom-table tbody tr:nth-child(even) {
    background: #eaeaea;
}

.org-section {
    background: #f4f4f4;
}

.org-box {
    border: 2px solid #c4a77d;
    padding: 10px 15px;
    background: #fff;
    font-weight: 600;
    border-radius: 4px;
    display: inline-block;
    min-width: 160px;
}

.small-box {
    font-size: 14px;
    padding: 10px;
}

.arrow {
    font-size: 22px;
    margin: 5px 0;
    color: #333;
}

.courses-section {
    background: #f2f2f2;
}

.custom-table {
    border: 3px solid #000;
}

.custom-table th,
.custom-table td {
    border: 1px solid #000;
    padding: 10px;
}

/* SECTION TITLE */
.section-head {
    background: #c4a77d;
    color: #fff;
    text-align: center;
    font-size: 18px;
}

/* HEADER ROW */
.custom-table thead tr:nth-child(2) {
    background: #c4a77d;
    color: #fff;
}

/* STRIPES */
.custom-table tbody tr:nth-child(even) {
    background: #eaeaea;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .custom-table th,
    .custom-table td {
        font-size: 13px;
    }
}

.admission-section {
    background: #f2f2f2;
}

/* TABLE */
.custom-table {
    border: 3px solid #000;
}

.custom-table th,
.custom-table td {
    border: 1px solid #000;
    padding: 10px;
    vertical-align: top;
}

/* HEADER */
.custom-table thead {
    background: #c4a77d;
    color: #fff;
}

/* STRIPES */
.custom-table tbody tr:nth-child(even) {
    background: #eaeaea;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .custom-table th,
    .custom-table td {
        font-size: 13px;
    }
}

.fee-section {
    background: #f2f2f2;
}

.custom-table {
    border: 2px solid #000;
}

.custom-table th,
.custom-table td {
    border: 1px solid #000;
    padding: 8px;
}

/* HEADER */
.custom-table thead {
    background: #d9d9d9;
    font-weight: bold;
}

/* STRIPES */
.custom-table tbody tr:nth-child(even) {
    background: #f5f5f5;
}

/* TITLE */
h3,
h4 {
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.iqac-section {
    background: #f5f5f5;
}

.iqac-image img {
    max-width: 100%;
    border: 2px solid #ccc;
    border-radius: 6px;
}

.aqar-section {
    background: #f5f5f5;
}

/* LIST STYLE */
.aqar-list {
    list-style: disc;
    padding-left: 20px;
}

/* EACH ITEM BOX */
.aqar-list li {
    margin-bottom: 12px;
}

/* LINK BOX DESIGN */
.aqar-list li a {
    display: block;
    background: #eaeaea;
    padding: 15px 20px;
    border: 2px solid #777;
    color: #5a0000;
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
    position: relative;
}

/* YELLOW STRIP EFFECT */
.aqar-list li a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 6px;
    background: #e6d28a;
}

/* HOVER EFFECT */
.aqar-list li a:hover {
    background: #dcdcdc;
    color: #000;
}

.feedback-section {
    background: #f5f5f5;
}

/* LIST */
.feedback-list {
    list-style: disc;
    padding-left: 20px;
}

/* LIST ITEM */
.feedback-list li {
    margin-bottom: 12px;
}

/* BOX STYLE */
.feedback-list li a {
    display: block;
    background: #eaeaea;
    padding: 15px 20px;
    border: 2px solid #777;
    color: #5a0000;
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
    position: relative;
}

/* YELLOW LINE */
.feedback-list li a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 6px;
    background: #e6d28a;
}

/* HOVER */
.feedback-list li a:hover {
    background: #dcdcdc;
    color: #000;
}

.feedback-section {
    background: #f5f5f5;
}

/* LIST */
.feedback-list {
    list-style: disc;
    padding-left: 20px;
}

/* LIST ITEM */
.feedback-list li {
    margin-bottom: 12px;
}

/* BOX STYLE */
.feedback-list li a {
    display: block;
    background: #eaeaea;
    padding: 15px 20px;
    border: 2px solid #777;
    color: #5a0000;
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
    position: relative;
}

/* YELLOW LINE */
.feedback-list li a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 6px;
    background: #e6d28a;
}

/* HOVER */
.feedback-list li a:hover {
    background: #dcdcdc;
    color: #000;
}

.iqac-minutes-section {
    background: #f5f5f5;
}

/* LIST STYLE */
.iqac-list {
    list-style: disc;
    padding-left: 20px;
}

/* ITEM SPACING */
.iqac-list li {
    margin-bottom: 12px;
}

/* BOX DESIGN */
.iqac-list li a {
    display: block;
    background: #eaeaea;
    padding: 15px 20px;
    border: 2px solid #777;
    color: #5a0000;
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
    position: relative;
}

/* YELLOW STRIP */
.iqac-list li a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 6px;
    background: #e6d28a;
}

/* HOVER EFFECT */
.iqac-list li a:hover {
    background: #dcdcdc;
    color: #000;
}

.document-section {
    background: #f5f5f5;
}

.document-box {
    max-width: 900px;
    margin: auto;
    border: 3px solid #ccc;
    padding: 10px;
    background: #fff;
}

.document-box img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.ppt-section {
    background: #f5f5f5;
}

/* LIST STYLE */
.ppt-list {
    list-style: disc;
    padding-left: 20px;
}

/* ITEM SPACING */
.ppt-list li {
    margin-bottom: 12px;
}

/* BOX DESIGN */
.ppt-list li a {
    display: block;
    background: #eaeaea;
    padding: 15px 20px;
    border: 2px solid #777;
    color: #5a0000;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    position: relative;
}

/* YELLOW STRIP */
.ppt-list li a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 6px;
    background: #e6d28a;
}

/* HOVER */
.ppt-list li a:hover {
    background: #dcdcdc;
    color: #000;
}

.naac-section {
    background: #f5f5f5;
}

/* LIST */
.naac-list {
    list-style: disc;
    padding-left: 20px;
}

/* ITEM */
.naac-list li {
    margin-bottom: 12px;
}

/* BOX */
.naac-list li a {
    display: block;
    background: #eaeaea;
    padding: 15px 20px;
    border: 2px solid #777;
    color: #5a0000;
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
    position: relative;
}

/* YELLOW STRIP */
.naac-list li a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 6px;
    background: #e6d28a;
}

/* HOVER */
.naac-list li a:hover {
    background: #dcdcdc;
    color: #000;
}

.alumni-section {
    background: #f5f5f5;
}

.alumni-title {
    color: #7a0c0c;
    font-size: 32px;
}

.alumni-content {
    background: #ffffff;
    padding: 30px;
    border-radius: 6px;
    line-height: 1.8;
    font-size: 17px;
    color: #222;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.alumni-content p {
    margin-bottom: 18px;
    text-align: justify;
}

.aims-section {
    background: #f5f5f5;
}

.aims-title {
    color: #7a0c0c;
    font-size: 32px;
}

.aims-title small {
    font-size: 18px;
    color: #555;
}

.intro-text {
    font-size: 18px;
    color: #333;
}

.aims-list {
    background: #fff;
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    line-height: 1.8;
}

.aims-list li {
    margin-bottom: 15px;
    font-size: 16px;
}

.aims-list ul {
    margin-top: 10px;
    padding-left: 20px;
}

.aims-list ul li {
    list-style-type: disc;
}

.membership-section {
    background: #f5f5f5;
}

.membership-title {
    color: #7a0c0c;
    font-size: 30px;
}

.membership-title small {
    font-size: 18px;
    color: #555;
}

.membership-box {
    background: #fff;
    padding: 25px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.section-heading {
    color: #7a0c0c;
    margin-bottom: 10px;
}

.membership-list {
    padding-left: 20px;
}

.membership-list li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.structure-section {
    background: #f5f5f5;
}

.structure-title {
    color: #7a0c0c;
    font-size: 30px;
}

.structure-title small {
    font-size: 18px;
    color: #555;
}

/* Cards */
.structure-card {
    background: #fff;
    padding: 25px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Boxes */
.structure-box {
    background: #fff;
    padding: 25px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.section-heading {
    color: #7a0c0c;
    margin-bottom: 10px;
}

.structure-box ul {
    padding-left: 20px;
}

.structure-box li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.contact-section {
    background: #f5f5f5;
}

.contact-title {
    color: #7a0c0c;
    font-weight: bold;
}

/* LEFT BOX */
.contact-info {
    background: #fff;
    padding: 25px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* FORM */
.contact-form {
    background: #fff;
    padding: 25px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.form-control {
    border-radius: 4px;
}

.btn-submit {
    background: #7a0c0c;
    color: #fff;
    border: none;
}

.btn-submit:hover {
    background: #5c0000;
}

.menu-list {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
}

.menu-list li a {
    color: #fff;
    /* White text */
    text-decoration: none;
    font-weight: bold;
}

.menu-list li a:hover {
    color: #ffd700;
    /* Optional hover color (gold) */
}