/* =========================
    RESET & BASE STYLES
    ========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

/* =========================
    NAVBAR STYLES
    ========================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background-color: #ffffff;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* Logo */
.navbar-logo img {
    max-height: 45px;
    width: auto;
}

/* Navigation Links */
.navbar-links {
    display: flex;
    gap: 1.5rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.navbar-links a {
    text-decoration: none;
    color: #000000;
    font-weight: 600;
    transition: color 0.3s ease;
}

.navbar-links a:hover {
    color: #008751;
}

/* Register Button */
.navbar-register .register-btn {
    text-decoration: none;
    background-color: #ffffff;
    color: #094D01;
    padding: 10px 40px;
    border: 1px solid #094D01;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.navbar-register .register-btn:hover {
    background-color: #094D01;
    color: white;
}

/* Hamburger Menu for Mobile */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1000;
}

.hamburger-menu .bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.4s;
}

/* =========================
    SIDE NAVIGATION & OVERLAY
    ========================= */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 998;
}

.overlay.active {
    display: block;
}

.side-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: #ffffff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 999;
    padding: 2rem;
}

.side-nav.active {
    right: 0;
}

.side-nav-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: #333;
}

.side-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.side-nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.side-nav-links a:hover {
    color: #008751;
}

.side-nav-links .register-btn {
    background-color: #055101;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 5px;
    text-align: center;
    margin-top: 1rem;
}

.side-nav-links .register-btn:hover {
    background-color: #006b3f;
}

/* =========================
    HERO SECTION
    ========================= */
.hero {
    min-height: 85vh;
    padding: 4rem 2rem;
    background: radial-gradient(91.1% 57.35% at 51% 49%, #0BAD02 0%, #000000 100%);
}

.hero-content {
    display: flex;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    gap: 3rem;
    margin-bottom: 3rem;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 60px;
    color: #fef8f8;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif;
}

.hero-text p {
    font-size: 1.2rem;
    color: #d7d6d6;
    margin-bottom: 2rem;
    font-weight: 500;
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif;
}

.hero-text h2 {
    margin-top: 1rem;
    color: #15CA00;
    font-family: 'Montserrat', sans-serif;
}

.hero-text img {
    max-height: 150px;
}

/* Underline for headings */
.line {
    display: block;
    width: 26%;
    height: 1px;
    background-color: #ffffff;
    margin: 15px 0 25px 0;
}

.hero-text h6 {
    font-size: 14px;
    background-color: #ffffff;
    color: #055101;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    text-transform: capitalize;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

/* Button styles */
.btn {
    text-decoration: none;
    padding: 0.75rem 1.9rem;
    border-radius: 5px;
    font-weight: 600;
    
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(5px);
}

.btn-primary {
    background-color: #ffffff;
    color: #055101;
}

.btn-primary:hover {
    background-color: #006b3f;
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #008751;
}

/* Hero Image Group (3D Card Stack) */
.hero-image-group {
    position: relative;
    width: 681.68px;
    height: 498px;
    perspective: 1000px;
    margin-top: 30px;
}

.image-stack {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.image-card {
    box-sizing: border-box;
    position: absolute;
    border: 4px solid #FFFFFF;
    box-shadow: 0px 4px 4px 2px rgba(0, 0, 0, 0.12);
    border-radius: 40px;
    overflow: hidden;
    transition: transform 0.4s ease-in-out, width 0.4s ease-in-out, height 0.4s ease-in-out, z-index 0.4s ease-in-out;
    backface-visibility: hidden;
    will-change: transform, width, height, z-index;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Card positions for 3D effect */
.image-card[data-position="0"] {
    width: 330px;
    height: 498px;
    z-index: 6;
    left: 50%;
    transform: translateX(-50%) translateZ(100px);
    transition-delay: 0s;
}

.image-card[data-position="1"] {
    width: 264.01px;
    height: 376.36px;
    right: 0;
    top: 50px;
    z-index: 5;
    transform: translateX(20%) translateZ(-50px) rotateY(-15deg);
    transition-delay: 0.05s;
}

.image-card[data-position="2"] {
    width: 264.01px;
    height: 376.36px;
    left: 0;
    top: 50px;
    z-index: 4;
    transform: translateX(-20%) translateZ(-50px) rotateY(15deg);
    transition-delay: 0.1s;
}

.image-card[data-position="3"] {
    width: 264.01px;
    height: 376.36px;
    right: 10%;
    top: 50px;
    z-index: 3;
    transform: translateX(30%) translateZ(-150px) rotateY(-25deg);
    opacity: 0.7;
    transition-delay: 0.15s;
}

.image-card[data-position="4"] {
    width: 264.01px;
    height: 376.36px;
    left: 50%;
    top: 50px;
    z-index: 2;
    transform: translate(-50%, 0) translateZ(-200px);
    opacity: 0.6;
    transition-delay: 0.2s;
}

.image-card[data-position="5"] {
    width: 264.01px;
    height: 376.36px;
    left: 10%;
    top: 50px;
    z-index: 1;
    transform: translateX(-30%) translateZ(-150px) rotateY(25deg);
    opacity: 0.7;
    transition-delay: 0.25s;
}

/* Responsive Hero Image Group */
@media screen and (max-width: 1200px) {
    .hero-image-group {
        width: 500px;
        height: 350px;
    }
    .image-card[data-position="0"] {
        width: 220px;
        height: 350px;
    }
    .image-card[data-position="1"],
    .image-card[data-position="2"],
    .image-card[data-position="3"],
    .image-card[data-position="4"],
    .image-card[data-position="5"] {
        width: 160px;
        height: 220px;
        top: 30px;
    }
}
@media screen and (max-width: 768px) {
    .hero-image-group {
        width: 320px;
        height: 220px;
        margin: 0 auto 2rem auto;
    }
    .image-card[data-position="0"] {
        width: 120px;
        height: 220px;
    }
    .image-card[data-position="1"],
    .image-card[data-position="2"],
    .image-card[data-position="3"],
    .image-card[data-position="4"],
    .image-card[data-position="5"] {
        width: 80px;
        height: 120px;
        top: 20px;
        border-radius: 20px;
    }
    .image-card {
        border-radius: 20px;
    }
}
@media screen and (max-width: 480px) {
    .hero-image-group {
        width: 400px;
        height: 260px;
        margin: 0 auto 1rem auto;
    }
    .image-card[data-position="0"] {
        width: 180px;
        height: 260px;
    }
    .image-card[data-position="1"],
    .image-card[data-position="2"],
    .image-card[data-position="3"],
    .image-card[data-position="4"],
    .image-card[data-position="5"] {
        width: 130px;
        height: 180px;
        top: 40px;
        border-radius: 28px;
    }
    .image-card {
        border-radius: 28px;
    }
    .hero-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-cta .btn {
        width: 200px;
        min-width: 300px;
        max-width: 340px;
        padding-left: 16px;
        padding-right: 16px;
        margin: 0.5rem 0;
        display: block;
        text-align: center;
    }
    .preview-item {
        width: 100px;
        height: 100px;
    }
    .drop-zone {
        min-height: 180px;
        padding: 16px;
    }
}

/* =========================
    ABOUT SECTION
    ========================= */
.about-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.about-content {
    display: flex;
    align-items:justify ;
    max-width: 1300px;
    margin: 0 auto;
    gap: 1rem;
}

.about-text {
    flex: 1;
    margin-bottom: 100px;
}

#about-btn {
    background-color: #055101;
    color: white;
    border: none;
    width: 160px;
    font-size: 18px;
    height: 50px;
    border-radius: 10px;
}

.about-text h1 {
    font-size: 38px;
    color: #094D01;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif;
}

.about-text>p {
    font-size: 20px;
    color: #000000;
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 32px;
    font-family: 'Montserrat', sans-serif;
}

.about-image {
    flex: 1;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.about-image img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    transition: transform 0.3s ease;
    border-radius: 10px;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* =========================
    HOW TO REGISTER SECTION
    ========================= */
.register-section {
    background-image: linear-gradient(98.38deg, rgba(1, 8, 1, 0.9) 4.52%, rgba(10, 166, 1, 0.9) 50.23%, rgba(1, 8, 1, 0.9) 93.12%), url('./images/Lagos-city\ 1.jpg');
    padding: 4rem 2rem;
    max-height: max-content;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.register-content {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}

.register-content h2 {
    font-size: 48px;
    color: #ffffff;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
}

/* Registration Steps Grid */
.registration-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: justify;
    text-align: center;
    background-color: #B1FFA8;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 135, 81, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #B1FFA8;
    color: #094D01;
    border: 2px solid #094D01;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    flex-shrink: 0;
}

.step-details {
    width: 100%;
}

.step-details h3 {
    font-size: 24px;
    color: #094D01;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    text-align: justify;
    font-weight: 600;
}

.step-details p {
    font-size: 16px;
    color: #094D01;
    line-height: 1.6;
    font-weight: 400;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
}

.register-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 20px;
}

.register-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.register-cta .btn i {
    transition: transform 0.3s ease;
}

.register-cta .btn:hover i {
    transform: translateX(5px);
}
.name-link{
    background-color: white;
    border: none;
}

/* =========================
    JUDGES SECTION
    ========================= */
.judges-section {
    background-color: #ffffff;
    padding: 4rem 2rem;
}

.judges-content {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}

.judges-content h2 {
    font-size: 2.5rem;
    color: #2b2b2b;
    margin-bottom: 1rem;
}

.judges-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.judges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.judge-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.judge-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.judge-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 135, 81, 0.1);
}

.judge-image {
    position: relative;
    overflow: hidden;
}

.judge-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.judge-card:hover .judge-image img {
    transform: scale(1.1);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    color: white;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
}

.judge-details {
    padding: 1.5rem;
    text-align: center;
}

.judge-details h3 {
    font-size: 20px;
    color: #094D01;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.judge-details p {
    font-size: 0.9rem;
    color: #666;
}

/* =========================
    PRIZES SECTION
    ========================= */
.prizes-section {
    background-color: #E9E9E9;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

/* Decorative backgrounds */
.prizes-section::before,
.prizes-section::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    z-index: 1;
}

.prizes-section::before {
    top: -50%;
    left: -50%;
    background: radial-gradient(circle at center, rgba(0, 135, 81, 0.05) 0%, transparent 70%);
}

.prizes-section::after {
    top: -50%;
    right: -50%;
    background: radial-gradient(circle at top right, rgba(0, 135, 81, 0.05) 0%, transparent 70%);
}

.prizes-content {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.prizes-header {
    text-align: center;
    margin-bottom: 3rem;
}

.prizes-header h2 {
    font-size: 3rem;
    color: black;
    margin-bottom: 1rem;
    font-weight: 600;
}

.prizes-header .section-subtitle {
    color: #094D01;
    max-width: 700px;
    margin: 0 auto;
    font-size: 20px;
    font-weight: 400;
}

.prizes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.prize-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
    transition: all 0.5s ease;
    transform: translateY(0);
    height: 100%;
}

.prize-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 135, 81, 0.1);
}

.prize-rank {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #055101;
    color: white;
    padding: 0.5rem 1rem;
    font-weight: bold;
    transform: rotate(45deg);
    z-index: 10;
}

.prize-content {
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.prize-content h3 {
    font-size: 24px;
    color: #055101;
    margin-top: 1rem;
    font-weight: 600;
}

.prize-amount {
    font-size: 40px;
    color: #055101;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.prize-benefits {
    list-style-type: none;
    padding: 0;
    margin-top: 1rem;
}

.prize-benefits li {
    color: #094D01;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: left;
    font-weight: 400;
}

.prize-benefits li::before {
    content: '.';
    position: absolute;
    left: 0;
    color: #008751;
    font-weight: bold;
}

/* Overlay for prize card hover */
.prize-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    bottom: 0;
    min-height: 100%;
}

.prize-card:hover .prize-overlay {
    opacity: 1;
}

/* =========================
    PARTNERS & SPONSORS SECTION
    ========================= */
.partners-section {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    padding: 5rem 2rem;
    text-align: center;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.partners-header {
    margin-bottom: 3rem;
}

.partners-header h2 {
    font-size: 48px;
    margin-bottom: 1rem;
    color: #000;
    font-weight: 600;
}

.partners-header .section-subtitle {
    max-width: 800px;
    margin: 0 auto;
    color: #094D01;
    font-weight: 400;
    font-size: 20px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.partner-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    display: flex;
    justify-content: center;
    min-height: 200px;
    align-items: center;
    transition: all 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 135, 81, 0.1);
}

.partner-logo {
    max-width: 150px;
    max-height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

#firstbank {
    max-width: 250px;
    max-height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#logo-increase {
    max-width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* =========================
    BACK BUTTON
    ========================= */
.back-button {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #008751;
    font-weight: 600;
    transition: all 0.3s ease;
    background: rgba(0, 135, 81, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    gap: 0.5rem;
}

.back-button i {
    transition: transform 0.3s ease;
}

.back-button:hover {
    color: #006b3f;
    background: rgba(0, 135, 81, 0.1);
}

.back-button:hover i {
    transform: translateX(-3px);
}

/* =========================
    REGISTRATION FORM
    ========================= */
.register-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    background-color: #ffffff;
    padding: 2rem;
    margin-top: -2rem;
}

.registration-wrapper {
    background-color: white;
    border-radius: 16px;
    width: 100%;
    max-width: 1000px;
    padding: 2rem;
}

/* Banner Section */
.banner-section {
    background-image: url(./images/ChatGPT\ Image\ Apr\ 15\,\ 2025\,\ 01_50_12\ PM\ 1\ \(1\).jpg);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    padding: 2rem 2rem;
    text-align: center;
    min-height: 40vh;
}

.banner-content {
    max-width: 1300px;
    margin: 0 auto;
}

.banner-content h2 {
    color: #ffffff;
    margin-top: 50px;
    font-size: 40px;
    font-weight: 700;
}

/* Form Group Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row .form-group {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 400;
    color: #094D01;
    font-size: 20px;
}

.form-group input {
    width: 95%;
    padding: 0.75rem;
    border: 1px solid rgba(9, 77, 1, 1);
    border-radius: 8px;
    line-height: 20px;
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #094D01;
    box-shadow: 0 0 0 3px rgba(0, 135, 81, 0.1);
}

/* Submit Button */
.submit-btn {
    background-color: #008751;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background-color: #006b41;
}

/* =========================
    FAQ SECTION
    ========================= */
.faq-section {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    min-height: 100vh;
    padding: 5rem 2rem;
    text-align: center;
    overflow: hidden;
}

.faq-section::before,
.faq-section::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.faq-section::before {
    top: -10%;
    left: -10%;
    width: 300px;
    height: 300px;
    transform: rotate(45deg);
}

.faq-section::after {
    bottom: -10%;
    right: -10%;
    width: 250px;
    height: 250px;
    transform: rotate(-45deg);
}

.faq-content {
    position: relative;
    z-index: 2;
}

.faq-header {
    margin-bottom: 3rem;
}

.faq-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #094D01;
}

.faq-header .section-subtitle {
    max-width: 700px;
    margin: 0 auto;
    color: #094D01;
    font-size: 20px;
    font-weight: 400;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    border: 1px solid #094D01;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

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

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    background: white;
    transition: background 0.3s ease;
    border-bottom: 1px solid #e5e5e5;
}


.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #094D01;
    text-align: left;
    flex-grow: 1;
}

.faq-question i {
    color: #094D01;
    transition: transform 0.3s ease;
    font-size: 20px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #f9f9f9;
    padding: 0 2rem;
}

.faq-answer p {
    line-height: 1.6;
    margin: 0;
    opacity: 0;
    transform: translateY(-20px);
    text-align: justify;
    color: #2c3e50;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.5rem 2rem;
}

.faq-item.active .faq-answer p {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
    FOOTER SECTION
    ========================= */
.footer {
    background-image: url(./images/ChatGPT\ Image\ Apr\ 15\,\ 2025\,\ 01_50_12\ PM\ 1\ \(1\).jpg);
    color: white;
    background-position: center;
    padding: 40px 0;
    margin-top: 60px;
    font-family: 'Montserrat', sans-serif;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 200px;
    height: auto;
}

.footer-text {
    margin-bottom: 30px;
}

.footer-text p {
    margin: 5px 0;
    font-size: 16px;
    line-height: 1.5;
}

.footer-social {
    margin-top: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-copyright {
    padding-top: 30px;
    font-size: 14px;
    opacity: 0.8;
}

.footer-social p {
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a {
    color: white;
    font-size: 24px;
    transition: opacity 0.3s ease;
}

.social-icons a:hover {
    opacity: 0.8;
}

/* =========================
    ADMIN DASHBOARD SIDEBAR
    ========================= */
.sidebar {
    width: 261px;
    height: 100vh;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
        linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
        linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
        #094D01;
    color: #fff;
    padding: 0;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1100;
    display: block;
    box-shadow: 2px 0 8px rgba(44, 62, 80, 0.07);
    overflow-y: auto;
}

.sidebar h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.sidebar ul {
    display: block !important;
    width: 100%;
    list-style: none;
    padding: 1rem;
    margin: 0;
    background: transparent;
    flex-direction: column !important;
    align-items: stretch !important;
}

.sidebar ul li {
    display: block !important;
    width: 100%;
    margin: 0.5rem 0;
    padding: 0;
    clear: both;
    float: none !important;
    list-style: none;
}


.sidebar ul li:last-child {
    border-bottom: none;
}

.sidebar ul li a {
    display: block !important;
    width: 100%;
    text-decoration: none;
    color: #ecf0f1;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border-radius: 8px;
    transition: background 0.3s, color 0.3s;
    font-weight: 500;
    margin: 0;
    box-sizing: border-box;
    float: none !important;
    clear: both;
}

.sidebar ul li a:hover,
.sidebar ul li a.active {
    background-color: #B1FFA8;
    color: #000000;
}

.logo-container {
    display: block;
    width: 100%;
    text-align: center;
    padding: 2rem 1rem 1.5rem 1rem;
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
}

.admin-logo {
    max-width: 120px;
    width: 120px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    
}

.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-profile img.profile-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.user-details {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-weight: 600;
    font-size: 14px;
    color: #000;
}

.user-role {
    font-size: 12px;
    color: #666;
}


.user-profile {
    padding: 10px;
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border: 2px solid #e0e0e0;
}

.profile-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    object-fit: cover;
}

@media (max-width: 900px) {
    .sidebar {
        width: 200px;
        padding: 1.5rem 0.5rem;
    }

    .main-content {
        margin-left: 200px;
    }
}

@media (max-width: 600px) {
    .sidebar {
        position: relative;
        width: 100%;
        height: auto;
        flex-direction: row;
        padding: 0.5rem 0;
        box-shadow: none;
    }

    .sidebar h2 {
        display: none;
    }

    .sidebar ul {
        display: flex;
    }

    .header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        text-align: left;
        margin-bottom: 20px;
    }

    .header h1 {
        font-size: 24px;
        margin: 0;
        flex: 1;
    }

    .user-info {
        justify-content: flex-end;
        gap: 8px;
    }

    .user-details {
        text-align: right;
    }

    .user-profile img.profile-icon {
        width: 35px;
        height: 35px;
        flex-direction: row;
        justify-content: space-around;
    }

    .sidebar ul li {
        margin: 0;
    }

    .sidebar ul li a {
        padding: 0.5rem 0.7rem;
        font-size: 0.95rem;
    }

    .main-content {
        margin-left: 0;
        padding: 1rem;
    }
}

/* =========================
    ADMIN DASHBOARD MAIN CONTENT
    ========================= */
.main-content {
    padding: 40px 60px;
    margin-left: 290px;
    /* 250px (sidebar width) + 40px (spacing) */
    background: #ffffff;
    min-height: 100vh;
    max-width: 1200px;
    transition: margin-left 0.3s;
}

.main-content h1 {
    margin-top: 10px;
    font-weight: 600;
    font-size: 40px;
    line-height: 100%;
    text-align: justify;
color: #094D01;
    letter-spacing: 0%;
}

.cards-container {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 70px;
}

.card {
    width: 240px;
    height: 100px;
    padding: 14px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: 'Montserrat', sans-serif;
}

.card-icon {
    width: 20px;
    height: 20px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header span {
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

.card-icon {
    width: 30px;
    height: 30px;
}

.card-number {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

/* COLOR VARIANTS */
.dark-card {
    background-color: #002b00;
    color: white;
    box-shadow: none;
}

.dark-card .card-header span,
.dark-card .card-number {
    color: white;
}

.gray-card {
    background-color: #d9d9d9;
    border: none;
}

.light-green-card {
    background-color: #e0f6f2;
    border: none;
}

.white-card {
    background-color: #fff;
    border: 1px solid #000;
}


@media (max-width: 900px) {
    .main-content {
        margin-left: 200px;
    }
}

@media (max-width: 600px) {
    .main-content {
        margin-left: 0;
        padding: 1rem;
    }
}


/* =========================
    RESPONSIVE STYLES
    ========================= */

/* Form row stack on mobile */
@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
    }
}

/* Responsive Back Button */
@media screen and (max-width: 768px) {
    .register-back-container {
        top: 1rem;
        left: 1rem;
    }

    .back-button {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }

    .back-button span {
        display: none;
    }

    .header {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0.8rem;
        text-align: left;
        margin-bottom: 25px;
    }

    .header h1 {
        font-size: 28px;
        margin: 0;
        flex: 1;
    }

    .hamburger {
        margin-right: 1rem;
    }

    .user-info {
        justify-content: flex-end;
        gap: 10px;
    }

    .user-details {
        text-align: right;
    }
}

/* Partners Grid Responsive */
@media screen and (max-width: 1024px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }
}

/* Prizes Grid Responsive */
@media screen and (max-width: 768px) {
    .prizes-grid {
        grid-template-columns: 1fr;
    }

    .prize-card {
        transform: none;
    }

    .prizes-header h2 {
        font-size: 2.5rem;
    }
}

/* Navbar and Hero Responsive */
@media screen and (max-width: 1200px) {
    .navbar {
        padding: 1rem 2rem;
    }

    .hero-content,
    .about-content,
    .register-content,
    .partners-grid {
        max-width: 960px;
    }
}

@media screen and (max-width: 992px) {
    .hero-text h1 {
        font-size: 48px;
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .registration-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .navbar {
        padding: 1rem;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }

    .navbar-logo {
        flex-grow: 1;
    }

    .navbar-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #ffffff;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        padding: 1rem;
    }

    .navbar-links.active {
        display: flex;
    }

    .navbar-links a {
        padding: 0.5rem 0;
        text-align: center;
    }

    .navbar-register {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

    /* Hamburger Animation */
    .hamburger-menu.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger-menu.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        margin-bottom: 2rem;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .hero-cta {
        justify-content: center;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-text h1 {
        font-size: 36px;
    }

    .about-text p {
        font-size: 16px;
    }

    .registration-steps {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .prize-card {
        margin: 0 1rem;
    }

    .faq-header h2 {
        font-size: 36px;
    }
}

/* Hero Image Group Responsive */
@media screen and (max-width: 1200px) {
    .hero-image-group {
        width: 500px;
        height: 400px;
    }

    .main-image {
        width: 280px;
        height: 400px;
        border-radius: 10px;
    }

    .tilted-right,
    .tilted-left {
        width: 220px;
        height: 320px;
        border-radius: 10px;
    }
}

@media screen and (max-width: 992px) {
    .hero-image-group {
        width: 400px;
        height: 350px;
    }

    .main-image {
        width: 240px;
        height: 350px;
    }

    .tilted-right,
    .tilted-left {
        width: 180px;
        height: 280px;
    }
}

@media screen and (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-image-group {
        width: 100%;
        max-width: 350px;
        height: 300px;
        margin: 0 auto;
    }

    .main-image {
        width: 200px;
        height: 300px;
    }

    .tilted-right,
    .tilted-left {
        width: 160px;
        height: 240px;
    }
}

@media screen and (max-width: 480px) {
    .hero-image-group {
        max-width: 300px;
        height: 250px;
    }

    .main-image {
        width: 170px;
        height: 250px;
    }

    .tilted-right,
    .tilted-left {
        width: 140px;
        height: 200px;
    }
}

/* General Container Responsive */
@media screen and (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .grid-cols-1-400px {
        grid-template-columns: 1fr;
    }

    .xl-grid-cols-1fr-500px {
        grid-template-columns: 1fr;
    }

    .tabs-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .navbar {
        padding: 0.5rem 1rem;
    }

    .navbar-links {
        display: none;
    }

    .logo {
        max-width: 120px;
    }

    .text-3xl {
        font-size: 2rem;
    }

    .sm\:text-5xl {
        font-size: 2.5rem;
    }

    .xl\:text-6xl {
        font-size: 3rem;
    }

    .hero-content {
        text-align: center;
    }

    .button-lg {
        width: 100%;
        justify-content: center;
    }

    .tabs-list {
        gap: 0.5rem;
    }

    .tab-trigger {
        padding: 0.75rem;
        font-size: 0.875rem;
    }

    .card {
        padding: 1.25rem;
    }

    .card-content {
        gap: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
        text-align: left;
        margin-bottom: 15px;
        padding: 0.5rem;
    }

    .header h1 {
        font-size: 20px;
        margin: 0;
        flex: 1;
    }

    .user-info {
        justify-content: flex-end;
        gap: 6px;
        flex-wrap: wrap;
    }

    .user-details {
        text-align: right;
        font-size: 14px;
    }

    .user-profile img.profile-icon {
        width: 30px;
        height: 30px;
    }

    .text-3xl {
        font-size: 1.75rem;
    }

    .sm\:text-5xl {
        font-size: 2rem;
    }

    .xl\:text-6xl {
        font-size: 2.5rem;
    }

    .md\:text-xl {
        font-size: 1rem;
    }

    .tabs-list {
        grid-template-columns: 1fr;
    }

    .tab-trigger {
        width: 100%;
    }

    .card-header {
        text-align: center;
    }

    .flex-col.gap-2.min-\[400px\]\:flex-row {
        flex-direction: column !important;
    }

    .grid.grid-cols-2.gap-4 {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .accordion-trigger {
        padding: 0.75rem;
        font-size: 0.875rem;
    }
}

/* Hero, Button, and Partners Responsive for Small Screens */
@media screen and (max-width: 576px) {
    .hero {
        padding: 2rem 1rem;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }

    .partner-card {
        padding: 1rem;
    }

    .registration-wrapper {
        padding: 1rem;
    }

    .form-group input {
        padding: 0.5rem;
    }

    .drop-zone {
        height: 150px;
    }
}

/* Fix for very small screens */
@media screen and (max-width: 360px) {
    .hero-text h1 {
        font-size: 24px;
    }

    .navbar-logo img {
        max-height: 35px;
    }

    .back-button {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }
}

/* Responsive FAQ */
@media screen and (max-width: 768px) {

    .faq-section::before,
    .faq-section::after {
        display: none;
    }

    .faq-header h2 {
        font-size: 2.5rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-question,
    .faq-answer {
        padding: 1rem;
    }
}

/* Responsive line for headings */
@media screen and (max-width: 768px) {
    .line {
        width: 40%;
        margin: 12px auto 20px auto;
    }
}

@media screen and (max-width: 576px) {
    .line {
        width: 50%;
        margin: 10px auto 15px auto;
    }
}

.submission-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0 20px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.submission-header h1 {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.tabs {
    display: flex;
    gap: 12px;

}

.tab {
    background-color: transparent;
    border: none;
    /* Remove border */
    padding: 14px 28px;
    /* Further increased padding */
    border-radius: 0;
    /* Remove rounded corners */
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #000;
    /* Optional: text color */
    position: relative;
    /* Required for underline */
}

.tab:last-child {
    margin-right: 0;
}



.tab.active {
    color: #002b00;
}

.tab.active::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #002b00;
    border-radius: 1px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.table-container {
    overflow-x: auto;
    margin-top: 20px;
}

.submissions-table {
    width: 100%;
    max-width: 100%;
    /* Ensure it doesn't cap out early */
    border-collapse: collapse;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    
    color:#000000;
    font-size: 15px;
    margin-top: 20px;
    table-layout: fixed;
    /* Optional: makes columns more consistent */
}

.submissions-table thead {
    background-color: #ffffff;
}

.submissions-table th,
.submissions-table td {
    padding: 16px 24px;
    text-align: justify;
    border-bottom: 1px solid #ddd;
    font-weight: 500;
    font-size: 15px;
    color:#000000;
}



.submissions-table tbody tr:hover {
    background-color: #f9f9f9;
}

.status {
    /* Component 9 */

    /* Auto layout */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px;
    gap: 10px;

    margin: 0 auto;
    width: 140px;
    height: 40px;

    /* Neutral */
    border-radius: 10px;

    /* Inside auto layout */
    flex: none;
    order: 3;
    flex-grow: 0;

}

.status.accepted {
    background-color: #E1F4EF;
    color: #000000;
    font-weight: 500;
}

.status.pending {
    background-color: #D9D9D9;
    color: #000000;
    font-weight: 500;
}

.status.rejected {
    background-color: #F4E1E1;
    color: #000000;
    font-weight: 500;
}

.status.graded {
    display: inline-block;
    margin-left: auto;
    float: right;
    text-align: center;
    position: relative;
    left: 15px;
    background-color: #B1FFA8;
    /* Graded background */
    color: #000000;
    /* Optional: readable text color */
    font-weight: 500;
}

.status.not-graded {
    display: inline-block;
    margin-left: auto;
    float: right;
    text-align: center;
    position: relative;
    left: 15px;
    background-color: #A1A1A1;
    /* Not graded background */
    color: #ffffff;
    /* Optional: readable text color */
    font-weight: 500;
}

.submissions-table th:nth-child(3),
.submissions-table td:nth-child(3) {
    text-align: center;
    /* for Date */
}

.submissions-table th:nth-child(4),
.submissions-table td:nth-child(4) {
    text-align: center;
    /* for Status */
}

.no-data {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 10px;
}

.no-data h1 {
    color: #666;
    font-size: 24px;
    margin-bottom: 10px;
    text-align: center;
}

.no-data p {
    color: #999;
    font-size: 16px;
}
/* Modal Styles */
 /* Modal styles */
 .modal {
    display: none;
    position: fixed;
    z-index: 1200;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.modal-content {
    background-color: #fefefe;
    margin: 2% auto;
    padding: 0;
    border-radius: 12px;
    width: 95%;
    max-width: 1200px;
    height: 90vh;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); */
    box-shadow: 0 4px 16px rgba(0,0,0,0.18); /* lighter shadow */
    animation: fadeIn 0.18s cubic-bezier(0.4,0,0.2,1);
    /* Remove slideIn for less lag */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    will-change: transform, opacity;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-header {
    background-color: #f8f9fa;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e9ecef;
}

.modal-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
}

.entry-info {
    display: flex;
    gap: 15.84px;
    font-size: 14px;
    color: #6b7280;
    padding: 8px 20px;
    flex-wrap: wrap;
}



.close {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #6b7280;
    padding: 6px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, transform 0.2s ease;
}

.close:hover {
    color: #1f2937;
    transform: scale(1.1);
}

.modal-body {
    padding: 20px;
    flex: 1;
    overflow-y: auto;
}

.modal-body-content {
    display: flex;
    gap: 48px; /* Increase or decrease as needed for your design */
    height: 100%;
}
.image-carousel {
    position: relative;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.carousel-image {
    width: 100%;
    height: 300px;
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
    object-position: center center;
    background:rgb(228, 228, 228);
    display: none;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 8px;
}
.carousel-image.active {
    display: block;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 4px;
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.2s;
}

.carousel-dot.active {
    background-color: white;
}


.project-title {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin: 12px 0 8px 0;
}

.project-description {
    font-size: 16px;
    line-height: 1.5;
    color: #6b7280;
    text-align: justify;
    margin-bottom: 12px;
    max-height: 250px; /* Limits description to ~250 words */
    overflow-y: auto; /* Scroll if text exceeds */
}

.details-section {
    flex: 1;
    min-width: 500px;
    flex-direction: column;
 
   
}

.criteria-link {
    color: #10b981;
    text-decoration: none;
    font-size: 15.84px;
    font-weight: 500;
    margin-bottom: 12px;

    transition: color 0.2s ease;
}

.criteria-link:hover {
    color: #047857;
    text-decoration: underline;
}

.detail-row {
    margin-top: 30px;
    
}

.detail-label {
    font-size: 15.25px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
   

}

.detail-value {
    font-size: 16px;
    color: #000000;
    line-height: 1.5;
     

}

.action-buttons {
    display: flex;
    gap: 10px;
    margin-top: 30px;
    padding-top: 12px;
  
   
}


.btn-accept {
    background-color: #002b00;
    color: #ffffff;
    padding:5px 16px 5px 16px ;
    width:200px;
    font-size: 18px;
    height: 56px;
}

.btn-accept:hover {
    background-color: #047857;
}

.btn-reject {
    background-color: #ffffff;
    color: #374151;
    border: 2px solid #002b00;
    padding:5px 16px 5px 16px ;
    width:200px;
    font-size: 18px;
    height: 56px;
}

.btn-reject:hover {
    background-color: #f9fafb;
    border-color: #9ca3af;
}

/* Responsive Styles for Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        height: 70vh; /* Adjusted for smaller screens */
        max-height: 80vh;
    }

    .modal-body-content {
        flex-direction: column;
        gap: 12px;
    }

    .image-section {
        max-width: 100%;
    }

    .project-image {
        height: 180px;
    }

    .entry-info {
        flex-direction: column;
        gap: 6px;
        padding: 10px;
    }

    .action-buttons {
        flex-direction: column;
        gap: 6px;
    }

    .btn {
        width: 100%;
    }

    .project-description {
        max-height: 100px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        height: 80vh;
        border-radius: 8px;
    }

    .modal-header {
        padding: 10px 16px;
    }

    .modal-header h3 {
        font-size: 14px;
    }

    .modal-body {
        padding: 16px;
    }

    .project-image {
        height: 140px;
    }

    .image-nav {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .project-title {
        font-size: 16px;
    }

    .project-description {
        font-size: 12px;
        max-height: 80px;
    }
}

/* Placeholder styling for all form fields */
input::placeholder,
textarea::placeholder,
select::placeholder {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 18px;
    line-height: 40px;
    letter-spacing: 0;
    vertical-align: middle;
    opacity: 1;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
select::-webkit-input-placeholder {
    font-family: 'Montserrat', sans-serif;
        font-weight: 500;
    font-style: normal;
    font-size: 18px;
    line-height: 40px;
    letter-spacing: 0;
    vertical-align: middle;
    opacity: 1;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder,
select:-ms-input-placeholder {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 18px;
    line-height: 40px;
    letter-spacing: 0;
    vertical-align: middle;
    opacity: 1;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder,
select::-ms-input-placeholder {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    line-height: 40px;
    letter-spacing: 0;
    vertical-align: middle;
    opacity: 1;
}