/* Custom styles for Tech Internship Program Landing Page */

:root {
    --primary-color: #fe1212;
    --secondary-color: #6c757d;
    --accent-color: #20c997;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.display-4 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
}

/*benefits section*/
.benefits{
    background: linear-gradient(
        to top,
        rgb(70, 70, 71, 1),
        rgb(70, 70, 71, 0)
    ),
    url('../assets/hand-pointing-to-internship-concept-light-brown-wall-background-60412675.webp') center/cover;
}

/* Card Styles */
.card {
    border: none;
    background: linear-gradient(
        to top,
        rgb(120, 120, 121) 5%,
        rgb(255, 255, 255, 1),
        rgb(255, 255, 255, 1)
    );
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.card-body {
    padding: 2rem;
}

/* Button Styles */
.btn-lg {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
}

/* Section Spacing */
section {
    padding: 4rem 0;
}

/* Contact Section */
.bg-light {
    background-color: #ffffff !important;
}

/* Footer */
footer {
    background-color: #212529 !important;
}

/* Modal Styles */
.modal-content {
    border-radius: 15px;
    border: none;
}

.modal-header {
    border-bottom: 1px solid #dee2e6;
    padding: 1.5rem;
}

.form-control {
    border-radius: 8px;
    border: 1px solid #ced4da;
    padding: 0.75rem;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        min-height: 50vh;
        text-align: center;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
    
    section {
        padding: 3rem 0;
    }
}

@media (max-width: 576px) {
    .display-4 {
        font-size: 2rem;
    }
    
    .card-body {
        padding: 1.5rem;
    }
    
    .btn-lg {
        padding: 0.5rem 1.5rem;
        font-size: 1rem;
    }
}