/* Section Styling */
.hackathons-section {
    padding: 80px 0;
}

/* Title & Subtitle */
.hackathons-title {
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #3b86c4;
}

.hackathons-subtitle {
    font-size: 17px;
    font-weight: 500;
    color: #444;
}

/* Feature Cards */
.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    border: 3px double #B3B3B4; /* Double border with dark blue */
    box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.05), /* Inner subtle shadow */
                0px 8px 20px rgba(0, 0, 0, 0.1); /* Outer shadow */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect */
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: inset 0px 0px 15px rgba(0, 0, 0, 0.1), /* Enhanced inner shadow */
                0px 12px 25px rgba(0, 0, 0, 0.15); /* Stronger outer shadow */
    border-color: #003366; /* Darker blue on hover */
}


.feature-card i {
    font-size: 30px;
    margin-bottom: 15px;
    color: #0056b3;
}

.feature-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color:#126AB3;
}

.feature-card p {
    font-size: 16px;
    opacity: 0.9;
}


/* Call-to-Action */
.hackathons-closing {
    font-size: 17px;
    font-weight: 600;
    color: #555;
    margin-top: 20px;
}

/* Download Button */
.hackathons-section .btn-primary {
    background-color: #ffcc00;
    color: #003366;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
}

.hackathons-section .btn-primary:hover {
    background-color: #ffd633;
    color: #001f4d;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hackathons-section{
        padding: 10px;
    }
    .hackathons-title {
        font-size: 2rem;
    }
    .hackathons-subtitle {
        font-size: 1rem;
    }
    .feature-card {
        margin-bottom: 20px;
    }
}

/* Form Container */
.hackathon-form-container {
    max-width: 800px;
    width: 100%;
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}
.hackathon-form-container h2{
    padding: 10px;
    color: #0056B3; 
    font-size: 25px;
    text-decoration: underline;
    text-align: center;
    text-transform: uppercase;
}
.hackathon-field {
    margin-bottom: 15px;
    font-size: 16px;
}

.hackathon-input {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
}

.hackathon-input:focus {
    border-color: #007bff;
    box-shadow: 0px 0px 5px rgba(0, 123, 255, 0.5);
    outline: none;
}

.hackathon-error-message {
    color: red;
    font-size: 14px;
    margin-top: 5px;
    display: block;
}
.hackathonrecaptcha-error-message{
    display: none;
    color: red;
    font-size: 14px;

}
.hackathon-btn-primary {
    background-color: #4096D9;
    color: white;
    font-size: 16px;
    padding: 12px 40px;
    border: none;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s ease;
}

.hackathon-btn-primary:hover {
    background-color: #0056b3; 
    transform: translateY(-2px); }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hackathon-row {
        padding: 15px;
    }
    .hackathon-input {
        font-size: 14px;
        padding: 8px;
    }
    .hackathon-btn-primary {
        font-size: 14px;
        padding: 8px 16px;
    }
}
