/* Internship Page Styles */

/* Reuse Gradient Heading from volunteer.css */
.gradient-heading {
    background: linear-gradient(90deg, var(--theme-color), var(--theme-color2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--title-font);
    position: relative;
    display: inline-block;
    animation: headingFadeIn 1s ease-in-out;
}

.gradient-heading::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--theme-color), var(--theme-color2));
    border-radius: 2px;
}

@keyframes headingFadeIn {
    0% { opacity: 0; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1); }
}

h3 i {
    margin-right: 10px;
    vertical-align: middle;
}

/* Internship Cards */
.internship-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.internship-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.internship-card i {
    margin-bottom: 15px;
    color: var(--theme-color2);
}

.internship-card h4 {
    font-family: var(--title-font);
    font-size: 1.5rem;
    color: var(--theme-color);
    margin-bottom: 10px;
}

.internship-card h4 small {
    display: block;
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
}

.internship-card p {
    font-size: 1rem;
    color: #666;
}

/* Internship Form */
.internship-form .form-group {
    margin-bottom: 20px;
}

.internship-form label {
    font-family: var(--title-font);
    font-size: 1rem;
    color: var(--theme-color);
    margin-bottom: 5px;
    display: block;
}

.internship-form .form-control,
.internship-form .form-control-file {
    border-radius: 50px;
    border: 1px solid #ccc;
    padding: 10px 15px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    width: 100%;
}

.internship-form .form-control:focus,
.internship-form .form-control-file:focus {
    border-color: var(--theme-color2);
    outline: none;
    box-shadow: 0 0 5px rgba(245, 134, 56, 0.3);
}

.internship-form textarea.form-control {
    border-radius: 10px;
    resize: vertical;
}

.internship-form button {
    background: var(--theme-color);
    color: #fff;
    border-radius: 50px;
    padding: 12px 30px;
    font-size: 1.1rem;
    border: none;
    transition: background 0.3s ease;
}

.internship-form button:hover {
    background: var(--theme-color2);
}

/* FAQs */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question i {
    margin-right: 15px;
    font-size: 1.2rem;
}

.faq-question h5 {
    font-family: var(--title-font);
    font-size: 1.1rem;
    color: var(--theme-color);
    margin: 0;
    flex-grow: 1;
}

.faq-question .faq-toggle {
    font-size: 1rem;
    color: var(--theme-color2);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 15px 20px;
    font-size: 1rem;
    color: #666;
    background: #f8f9fa;
    animation: slideDown 0.3s ease;
}

.faq-item.active .faq-answer {
    display: block;
}

@keyframes slideDown {
    0% { opacity: 0; transform: translateY(-10px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Contact Section */
.contact-section {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-section a {
    text-decoration: underline;
    transition: color 0.3s ease;
}

.contact-section a:hover {
    color: var(--theme-color);
}

/* Social Sharing */
.social-sharing .addtoany .a2a_kit a {
    margin: 0 5px;
    font-size: 1.5rem;
    color: var(--theme-color);
    transition: color 0.3s ease;
}

.social-sharing .addtoany .a2a_kit a:hover {
    color: var(--theme-color2);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .gradient-heading {
        font-size: 1.8rem;
    }
    .internship-card h4 {
        font-size: 1.2rem;
    }
    .internship-card h4 small {
        font-size: 0.8rem;
    }
    .internship-card p {
        font-size: 0.9rem;
    }
    .internship-form .form-control,
    .internship-form .form-control-file {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
    .internship-form button {
        font-size: 0.9rem;
        padding: 8px 15px;
    }
    .contact-section {
        padding: 15px;
    }
    .faq-question h5 {
        font-size: 1rem;
    }
    .faq-answer {
        font-size: 0.9rem;
    }
}