body {
    line-height: 1.6;
}
.topic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 20px 0;
}
.topic-item {
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 5px;
}
.deadline-box {
    background-color: #e9ecef;
    padding: 20px;
    border-radius: 5px;
    margin: 20px 0;
}
.award-card {
    margin-bottom: 15px;
}
.guideline-list {
    counter-reset: guideline-counter;
    list-style-type: none;
    padding-left: 0;
}
.guideline-list li {
    counter-increment: guideline-counter;
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}
.guideline-list li:before {
    content: counter(guideline-counter) ".";
    position: absolute;
    left: 0;
    font-weight: bold;
}
/* Enhanced Typography & Styling */
:root {
    --light: #11659b;
    --primary: #105174;
    --secondary: #024464;
    --accent: #e74c3c;
    --light-bg: #f8f9fa;
    --dark-text: #2c3e50;
    --muted-text: #7f8c8d;
}

.btn-login{
    background-color: var(--light);
    color: var(--light-bg);
    border: 4px  #dd4814;
}

.btn-login:hover{
    background-color: var(--light);
    color: var(--light-bg);
    transform: translateY(-10px);
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--dark-text);
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.2rem;
}

h1 {
    font-size: 2.5rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 0.5rem;
    display: inline-block;
}

h3 {
    font-size: 1.75rem;
    color: var(--secondary);
}

a {
    color: var(--secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent);
    text-decoration: underline;
}

/* Header Styling */
header {
    padding: 3rem 0;
    background: linear-gradient(90deg, rgba(0, 66, 98, 1) 0%, rgba(87, 150, 199, 1) 50%, rgba(0, 66, 98, 1) 100%);
    color: white;
    margin-bottom: 2rem;
    border-radius: 10px;
}

header h1 {
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

header h2 {
    color: rgba(255,255,255,0.9);
    border-bottom: none;
}

/* Topic Grid Enhancement */
.topic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin: 2rem 0;
}

.topic-item {
    padding: 15px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--secondary);
    font-weight: 500;
}

.topic-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Deadline Box Styling */
.deadline-box {
    background: linear-gradient(to right, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 10px;
    margin: 2.5rem 0;
    border-left: 5px solid var(--accent);
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.contact-box {
    background: linear-gradient(to right, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 10px;
    margin: 2.5rem 0;
    border-left: 4px solid var(--secondary);
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.deadline-box h4 {
    color: var(--accent);
    font-size: 1.5rem;
}

.deadline-box .lead {
    font-size: 1.3rem;
    font-weight: 500;
}

/* Guidelines List Styling */
.guideline-list {
    counter-reset: guideline-counter;
    list-style-type: none;
    padding-left: 0;
    margin: 2rem 0;
}

.guideline-list li {
    counter-increment: guideline-counter;
    margin-bottom: 1.2rem;
    padding-left: 3rem;
    position: relative;
    font-size: 1.05rem;
}

.guideline-list li:before {
    content: counter(guideline-counter) ".";
    position: absolute;
    left: 0;
    font-weight: bold;
    color: var(--secondary);
    font-size: 1.2rem;
    top: 0;
}

/* Card Enhancements */
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    margin-bottom: 1.5rem;
}

.card:hover {
    transform: translateY(-5px);
}

.card-header {
    background-color: var(--secondary);
    color: white;
    border-radius: 10px 10px 0 0 !important;
    padding: 1.2rem;
}

.card-header h4 {
    color: white;
    margin-bottom: 0;
}

.award-card {
    height: 100%;
    border-left: 4px solid var(--primary);
}

.award-card .card-title {
    color: var(--primary);
    font-size: 1.2rem;
}

.award-card .card-text {
    color: darker;
}

/* Button Styling */
.btn-outline-primary {
    border-color: var(--secondary);
    color: var(--secondary);
}

.btn-outline-primary:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

/* Footer Styling */
footer {
    background-color: var(--primary);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
}

footer .lead {
    color: white;
    font-weight: 500;
    margin-bottom: 0;
}

.landing-footer{
    background-color: var(--primary);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .topic-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .guideline-list li {
        padding-left: 2.5rem;
    }
}