/* ========== ROOT VARIABLES ========== */
:root {
    /* Color Palette */
    --primary-color: rgb(249, 0, 0);
    /* Blue */
    --secondary-color: #262626;
    /* Purple */
    --accent-color: #BEF1DE;
    /* Amber */
    --bg-color: #F6F6F6;
    /* Light background */
    --white-color: #ffffff;
    /* Surface cards */
    --text-color: #201e1f;
    /* Dark slate */
    --color-muted: #64748b;
    /* Muted text */
    --color-border: #e2e8f0;
    /* Light border */
    --color-light-blue: #0046FF;

    --color-dark-blue: #161930;

    /* Typography */
    /* --font-body: 'roboto', sans-serif; */
    --font-body: "Poppins", sans-serif;
    /* --font-heading: 'Poppins', sans-serif; */
    --font-heading: "Roboto", sans-serif;
    --text-base-size: 16px;
    --line-height-base: 1.6;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;

    /* Border Radius & Shadows */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    /* --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1); */
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.05);

}

/* ========== RESET ========== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: var(--text-base-size);
}

body {
    font-family: var(--font-body);
    /* background-color: var(--bg-color); */
    color: var(--text-color);
    line-height: var(--line-height-base);
    -webkit-font-smoothing: antialiased;
}

/* Browser Csrolling Scrollbar */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 5px;
    height: 5px !important;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
    background: #fff;
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
    background-color: #f81d1d;
    outline: none;
}

html::-webkit-scrollbar-thumb:active,
body::-webkit-scrollbar-thumb:active {
    background: #f81d1d;
}

/* Selected text background color change  */
::selection {
    background-color: var(--color-muted);
    color: #fff;
}


img,
picture,
video {
    max-width: 100%;
    display: block;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    /* border-radius: var(--radius-sm); */
    object-fit: cover;
}

a {

    font-family: var(--font-body);
    color: inherit;
    text-decoration: none;
    transition: 0.2s ease-in-out;
}

a:hover {
    color: var(--color-primary);
}



/* ========== TYPOGRAPHY ========== */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--secondary-color);
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1rem;
}

h6 {
    font-size: 0.875rem;
}

.heading-style-h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

.heading-style-h2 {
    font-size: 2rem;
    font-weight: 600;
}

.heading-style-h3 {
    font-size: 1.5rem;
    font-weight: 500;
}

.heading-style-h4 {
    font-size: 1.25rem;
    font-weight: 500;
}

.heading-style-h5 {
    font-size: 1rem;
    font-weight: 500;
}

.heading-style-h6 {
    font-size: 0.875rem;
    font-weight: 500;
}

p {
    color: var(--text-color);
}

/* Spacing */

.padding-global {
    padding: 0 2.5rem 0 2.5rem;
}

@media screen and (max-width: 768px) {
    .padding-global {
        padding: 0 1.5rem 0 1.5rem;
    }

}

.mb-16 {
    margin-bottom: 1rem;
}

.mb-24 {
    margin-bottom: 1.5rem;
}

.mb-32 {
    margin-bottom: 2rem;
}

.mb-40 {
    margin-bottom: 2.5rem;
}

.mt-16 {
    margin-top: 1rem;
}

.mt-24 {
    margin-top: 1.5rem;
}

.mt-32 {
    margin-top: 2rem;
}

.mt-40 {
    margin-top: 2.5rem;
}

.pb-16 {
    padding-bottom: 1rem;
}

.pb-24 {
    padding-bottom: 1.5rem;
}

.pb-32 {
    padding-bottom: 2rem;
}

.pb-40 {
    padding-bottom: 2.5rem;
}

.pt-16 {
    padding-top: 1rem;
}

.pt-24 {
    padding-top: 1.5rem;
}

.pt-32 {
    padding-top: 2rem;
}

.pt-40 {
    padding-top: 2.5rem;
}


/* Text Alignment */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}




/* Containers */
.container-large {
    max-width: 80rem;
    margin: 0 auto;
}

.container-medium {
    max-width: 62rem;
    margin: 0 auto;
}

.container-small {
    max-width: 48rem;
    margin: 0 auto;
}

.padding-section-large {
    padding-top: 7rem;
    padding-bottom: 7rem;
}

.padding-section-medium {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.padding-section-small {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

@media screen and (max-width: 768px) {
    .padding-section-large {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .padding-section-medium {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .padding-section-small {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .padding-section-large {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .padding-section-medium {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .padding-section-small {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

}

/* common Style Start */
/* Buttons */

.button {
    background: linear-gradient(to bottom, #ff4e50, #f81d1d);
    color: white;
    border: none;
    padding: 14px 40px;
    font-family: var(--font-body) !important;
    font-size: 16px;
    border-radius: .25rem;
    width: fit-content;
    font-weight: 600;
    cursor: pointer;
    box-shadow:
        inset 0 0 10px rgba(255, 255, 255, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.button:hover {
    box-shadow:
        inset 0 0 14px rgba(255, 255, 255, 0.6),
        inset 0 0 25px rgba(255, 255, 255, 0.3);
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    color: var(--secondary-color);
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.btn-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: end;
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 16px;
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.btn-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--secondary-color);
    transition: transform 0.3s ease, fill 0.3s ease;
}

.btn-icon:hover {
    color: var(--primary-color);
}

.btn-icon:hover svg {
    transform: translateX(5px);
    fill: var(--primary-color);
}

.section-heading-wrapper {
    margin-bottom: 2rem;
}

.breadcrum-link-wrapper {
    color: var(--white-color);
}

.breadcrum-link-wrapper a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrum-link-wrapper a:hover {
    color: var(--primary-color);
}

.intro-hero-content-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 0rem;
}

.intro-hero-content-block h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--white-color);
    margin-bottom: 1rem;
}

.intro-hero-content-block p {
    font-size: 1rem;
    color: var(--white-color);
}

/* common style end */




/* Navbar style Start */
.navbar {
    padding: 1rem 0;
    background-color: var(--white-color);
    box-shadow: var(--shadow-sm);
}

.navbar-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nav-logo-wrap {
    width: 200px;
}

.navbar-menu-wrap {
    list-style: none;
    display: flex;
    align-self: center;
    gap: 1rem;
}

.navbar-item a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
    /* padding: 1rem 0.5rem; */
}

.navbar-item {
    margin: 0;
    padding: 8px 12px;
}

.navbar-link {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-indicator svg {
    display: flex;
    align-items: center;
    justify-content: center;

}

.navbar-link {
    text-decoration: none;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.navbar-link:hover {
    color: var(--primary-color);
}

/* Base styles  */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    overflow: hidden;
    background-color: var(--white-color);
    box-shadow: var(--shadow-md);
    border-radius: 0.5rem;
    padding: 0;
    margin-top: 0.5rem;
    width: max-content;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease, visibility 0.3s ease;
    z-index: 10;
}

.dropdown-menu li a {
    display: block;
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    font-size: .975rem;
    color: var(--text-color);
    /* white-space: nowrap; */
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #F6F6F6;
}

/* Hover state - show dropdown */
.dropdown:hover .dropdown-menu {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
}

/* === Dropdown Indicator Rotation + Color === */
.dropdown-link,
.navbar-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.dropdown-indicator {
    display: inline-flex;
    transition: transform 0.3s ease, stroke 0.3s ease;
}

.dropdown:hover .navbar-link,
.dropdown:hover .navbar-link .dropdown-indicator path {
    color: var(--primary-color);
    stroke: var(--primary-color);
}

.dropdown:hover .dropdown-indicator {
    transform: rotate(180deg);
}


/* Navbar style End */

/* Hero Style Start */

.section_home-hero {}

.hero-contents-wrapper {
    display: flex;
    gap: 2.5rem;
}

.hero-image-left-block {
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
    padding: 8px;
    /* background-color: var(--accent-color); */
    background: linear-gradient(45deg, #faea05, #16dfe6);

}

.hero-image-left-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.msg-title {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--secondary-color);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.hero-summary {
    text-align: justify;
}

/* Hero Style End */

/* Latest research Start */
.latest-research {
    background: linear-gradient(45deg, #faea05, #16dfe6);
}

/* .lastest-research-contents-wrapper {
    overflow: hidden;
} */

.latest-research-heading-wrapper,
.latest-notice-heading-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.latest-research-heading-wrapper h2 {
    font-size: 2.5rem;
}



.swiper {
    overflow: hidden !important;
    padding-bottom: 2rem !important;
    width: 100%;
}

.swiper-wrapper {
    display: flex !important;
    align-items: stretch !important;
}

.swiper-slide {
    height: auto !important;
    width: auto !important;
    flex-shrink: 0;
}

.research-swipper .swiper-slide {
    width: calc((100% - 60px) / 3) !important;
}

@media (max-width: 1024px) {
    .research-swipper .swiper-slide {
        width: calc((100% - 30px) / 2) !important;
    }
}

@media (max-width: 768px) {
    .research-swipper .swiper-slide {
        width: 75% !important;
    }
}

.research-card {
    font-size: 18px;
    background-color: var(--white-color);
    box-shadow: var(--shadow-md);
}

.research-content-wrapper {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.reasearch-img-wrapper {
    height: 150px;
    overflow: hidden;
}

.reasearch-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.research-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.research-summary {
    font-size: 1rem;
    color: var(--text-color);
}

.divider-line {
    width: 100%;
    height: 1px;
    background-color: var(--color-border);
    /* margin: 1rem 0; */
}

/* Latest research End */


/* Latest Notice Start */
.latest-notice {
    background-color: var(--bg-color);
}

.latest-notice-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.latest-notice-card {
    background-color: var(--white-color);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.latest-notice-card .notice-date {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-light-blue);
}

.latest-notice-card .notice-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.notice-btn {
    background-color: black !important;
    color: var(--white-color);
    border: none;
    padding: 10px 20px;
    font-size: .875rem;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    box-shadow:
        inset 0 0 10px rgba(255, 255, 255, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

/* Latest Notice End */

/* Footer Style Start */
.footer {
    /* background-color: #161930; */
    background-color: var(--color-dark-blue);
    color: var(--white-color);
}

.footer-content-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-logo-wrap {
    width: 190px;
}

.footer-logo img {
    width: 100%;
    height: auto;
}

.footer-left-block p {
    color: var(--white-color);
    font-size: 0.875rem;
    line-height: 1.5;
    margin-top: 0.5rem;
}

.footer-column-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white-color);
    margin-bottom: 1rem;
}

.footer-links-wrapper ul {
    list-style: none;
    padding: 0;
}

.footer-links-wrapper ul li {
    margin-bottom: 0.5rem;
}

.footer-links-wrapper ul li a {
    color: var(--white-color);
    text-decoration: none;
}

.footer-links-wrapper ul li a:hover {
    color: #f6f6f6c7;
}

.footer-contact-wrapper p {
    margin-bottom: 0.5rem;
    color: var(--white-color);
}

.footer-contact-wrapper p span {
    margin-right: 4px;
}

.social-media-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-media-wrap .social-icon {
    width: 32px;
    height: 32px;
    border-radius: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: gray;
    padding: .75rem;
    transition: transform 0.3s ease;

}

.social-media-wrap .social-icon:hover {
    transform: translateY(-5px);
}

/* Footer Style End */

/* Member page style start */

.section_member-hero {
    background:
        linear-gradient(rgba(0, 0, 0, 0.5),
            rgba(0, 0, 0, 0.5)),
        url("../images/member-banner.jpg");
    background-color: var(--bg-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 2rem 0;
}

.section_members {
    background-color: var(--bg-color);
}


.members-category-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.member-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.member-card {
    padding: 1.5rem;
    background-color: var(--white-color);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    border-radius: .5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: box-shadow 0.3s ease;
}

.member-card:hover {
    box-shadow: var(--shadow-md);
}

.member-card img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
}

.member-card .member-info {
    flex: 1;
}

.member-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: .5rem;
}

.member-info strong {
    font-weight: 500;
    color: var(--text-color);
}

.member-info p {
    font-size: 0.875rem;
    color: var(--color-muted);
}

/* Member page style end */

/* Publication page style start */
.section_publication-hero {
    background:
        linear-gradient(rgba(0, 0, 0, 0.5),
            rgba(0, 0, 0, 0.5)),
        url("../images/publication-banner.jpg");
    background-color: var(--bg-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 2rem 0;
}



.section_publications {
    background-color: var(--bg-color);
}

.pub-dropdown-heading {
    display: flex;
    justify-content: flex-end;
}

.custom-select {
    position: relative;
    display: inline-block;
    width: 200px;
    margin-left: auto;
}

select {
    appearance: none;
    /* Remove default styling */
    width: 100%;
    padding: 10px;
    border: 1px solid transparent;
    border-radius: 5px;
    background-color: #fff;
    font-size: 16px;
    /* color: var(--brand--mid-blue); */
    cursor: pointer;
}

.custom-select::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 12px;
    /* Adjust width */
    height: 12px;
    /* Adjust height */
    background-image: url('https://cdn.prod.website-files.com/67b516e1444601a60599bfee/67e3cc644e6b218a77f3aa5e_down-arrow.svg');
    /* Replace with your image URL */
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

select:focus {
    border-color: transparent;
    outline: none;
}

.publications-category-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.publication-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.publication-card {
    padding: 1.5rem;
    background-color: var(--white-color);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    border-radius: .5rem;
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 3rem;
    transition: box-shadow 0.3s ease;
}

.publication-card:hover {
    box-shadow: var(--shadow-md);
}

.pub-card-info-left {
    display: flex;
    align-items: center;
    column-gap: 1.5rem;
}

.pub-image-wrapper {
    height: 100%;
}

.pub-card-info-left img {
    width: 300px;
    height: 100%;
    border-radius: .5rem;
}

/* .publication-card .publication-info {
    flex: 1;
} */

.publication-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 0;
}

.publication-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: .5rem;
}

.publication-info .pub-info-label {
    font-weight: 500;
    color: var(--text-color);
}

.pub-info-authors {
    display: flex;
    gap: 4px;
}

.publication-info p {
    font-size: 0.875rem;
    color: var(--color-muted);
}

.pub-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pub-actions .button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.25rem;
    text-decoration: none;
    /* transition: background-color 0.3s ease; */
}

.pub-actions .button:hover {
    color: white !important;
}

.pub-actions .button-secondary {
    background: linear-gradient(to bottom, #0046FF, #0046FF);
}


/* Publication page style end */


/* Projects page style Start */
.section_projects-hero {
    background:
        linear-gradient(rgba(0, 0, 0, 0.5),
            rgba(0, 0, 0, 0.5)),
        url("../images/project-banner.jpg");
    background-color: var(--bg-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 2rem 0;
}


.section_projects {
    background-color: var(--bg-color);
}

.project-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.project-card {
    padding: 1.5rem;
    background-color: var(--white-color);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    border-radius: .5rem;
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 10rem;
    transition: box-shadow 0.3s ease;
}

.project-card:hover {
    box-shadow: var(--shadow-md);
}


/* .publication-card .publication-info {
    flex: 1;
} */

.project-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 0;
}

.project-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: .5rem;
}

.project-info .project-summary {
    color: var(--text-color);
}

.project-info-label {
    font-weight: 500;
    color: var(--text-color);
}

.project-info-authors {
    display: flex;
    gap: 4px;
}

.project-info p {
    font-size: 0.875rem;
    color: var(--color-muted);
}

.project-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.project-actions .button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.25rem;
    text-decoration: none;
    /* transition: background-color 0.3s ease; */
}

.project-actions .button:hover {
    color: white !important;
}

.project-actions .button-secondary {
    background: linear-gradient(to bottom, #0046FF, #0046FF);
}


/* Publication page style end */


/* Projects page style Start */
.section_projects-hero {
    background:
        linear-gradient(rgba(0, 0, 0, 0.5),
            rgba(0, 0, 0, 0.5)),
        url("../images/project-banner.jpg");
    background-color: var(--bg-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 2rem 0;
}


.section_projects {
    background-color: var(--bg-color);
}

.project-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Login Page Style Start */


.login-form-container {
    background-color: var(--white-color);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
    margin-top: var(--space-lg);
}


.login-form-container h1 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    color: var(--text-color);
    /* font-family: var(--font-heading); */
}

.form-group {
    margin-bottom: var(--space-md);
    display: flex;
    flex-direction: column;
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    color: var(--text-color);
}

.form-control {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background-color: var(--white-color);
    font-family: var(--font-body);
    color: var(--text-color);
    transition: border 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-light-blue);
    box-shadow: 0 0 0 3px rgba(75, 190, 255, 0.2);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Submit button style */
.button-group {
    display: flex;
    justify-content: center;
    margin-top: var(--space-md);
}

.btn-submit {
    font-family: var(--font-body) !important;
    background-color: #0046FF;
    color: var(--white-color);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-submit:hover,
.btn-submit:focus {
    background-color: #001BB7;
    color: var(--white-color);
    box-shadow: 0 0 0 4px rgba(0, 27, 183, 0.2);
}

/* Login Page Style End */

/* ========== NOTICE MARQUEE STYLES ========== */
.notice-marquee-section {
    background: linear-gradient(135deg, #1a365d 0%, #2d4a7c 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.notice-marquee-container {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.marquee-label {
    background: #e53e3e;
    color: white;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    z-index: 2;
}

.marquee-label i {
    font-size: 1.1rem;
}

.marquee-content {
    flex: 1;
    overflow: hidden;
    padding: 0.8rem 1rem;
}

.marquee-link {
    display: block;
    color: white;
    text-decoration: none;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}

.marquee-link:hover {
    color: #fbd38d;
}

.marquee-text {
    display: inline-block;
    padding-left: 100%;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.notice-marquee-section:hover .marquee-link {
    animation-play-state: paused;
}

/* Latest Notice Cards on Homepage */
.latest-notice-card .notice-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.latest-notice-card .notice-title a:hover {
    color: var(--primary-color);
}

.latest-notice-card .notice-btn {
    text-decoration: none;
    display: inline-block;
}

@media (max-width: 768px) {
    .notice-marquee-container {
        flex-direction: column;
    }

    .marquee-label {
        width: 100%;
        justify-content: center;
    }

    .marquee-content {
        width: 100%;
    }
}

/* ========== NOTICE MARQUEE STYLES END ========== */