/* About Page Specific Styles */

/* Header Initial State */
.header {
    transition: all 0.3s ease;
    background: transparent;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.header .nav-menu > li > a {
    color: #ffffff;
}

.header .nav-menu > li > a:hover,
.header .nav-menu > li > a.active {
    color: var(--primary-light);
}

.header .header-social a {
    color: #ffffff;
}

.header .hamburger span {
    background-color: #ffffff;
}


/* Capsule Header Style */
.page-header {
    background-image: url('../../images/optimized/large/doctor-548133960720.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 150px 0 100px;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.7), rgba(0,0,0,0.5));
    z-index: 1;
}

.page-header__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-header__title {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.page-header__title .tamil-text {
    font-size: 1.2rem;
    color: #ffffff;
    display: inline-block;
    margin-top: 10px;
    text-transform: none;
    letter-spacing: 0;
}

.page-header__subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 800px;
    margin: 15px auto 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    color: #ffffff;
    line-height: 1.6;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-header__description {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 15px auto 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    color: #ffffff;
    line-height: 1.6;
}

/* Container and Section Common Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    text-align: center;
}

.section-title .tamil-text {
    font-size: 1.1rem;
    color: var(--primary);
    display: block;
    margin-top: 5px;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    padding: 0 15px;
}

/* About Section Styles */
.about-section {
    padding: 80px 0;
    background-color: #fff;
}

.jv-overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 30px 0;
}

.jv-overview-text .lead-text {
    font-size: 1.3rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.5;
}

.jv-overview-text p {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.jv-stat-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.jv-stat {
    text-align: center;
    padding: 30px 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-top: 4px solid #F05725;
}

.jv-stat:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.jv-stat-icon {
    font-size: 2.5rem;
    color: #F05725;
    margin-bottom: 15px;
}

.jv-stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.jv-stat-label {
    font-size: 1rem;
    color: #666;
    line-height: 1.4;
}

.jv-cta {
    text-align: center;
    padding: 30px;
    background: linear-gradient(45deg, rgba(240,87,37,0.05), rgba(240,87,37,0.15));
    border-radius: 10px;
    border: 1px dashed rgba(240,87,37,0.3);
}

.jv-cta .btn {
    margin-bottom: 15px;
    padding: 12px 30px;
    font-size: 1.1rem;
}

.jv-cta .btn i {
    margin-left: 8px;
    transition: all 0.3s ease;
}

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

.jv-cta-text {
    font-size: 1rem;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
}

/* Hide Joint Venture Content */
.jv-features-section,
.jv-process-wrapper,
.projects-showcase,
.testimonials-section,
.cta-banner,
.faq-section {
    display: none !important;
}

/* Benefits Section */
.services-section {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(240,87,37,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 2rem;
    color: #F05725;
}

.benefit-title {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Application Process Section */
.locations-section {
    padding: 80px 0;
    background-color: #fff;
}

.application-steps {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 0;
}

.application-step {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    transition: all 0.3s ease;
}

.application-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.application-step:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: #F05725;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.application-step h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.application-step p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.application-step a {
    color: #F05725;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.application-step a:hover {
    text-decoration: underline;
}

/* Job Listings Section */
.job-listings {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.jobs-container {
    display: none; /* Hide the original job cards */
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.job-tile {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.job-tile:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.job-tile-header {
    background-color: #f5f5f5;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.job-tile-header h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.job-type {
    display: inline-block;
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 500;
    background-color: rgba(240,87,37,0.1);
    color: #F05725;
}

.job-type.entry-level:before {
    content: "Entry Level";
}

.job-tile-details {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.job-location {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.job-location i {
    color: #F05725;
    margin-right: 5px;
}

.job-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.job-tile .btn {
    align-self: flex-start;
    padding: 8px 15px;
    font-size: 0.9rem;
}

/* Application Form Section */
.application-form-section {
    padding: 80px 0;
    background-color: #fff;
}

.application-form-container {
    max-width: 900px;
    margin: 30px auto 0;
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.application-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    font-size: 1rem;
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    color: #555;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #F05725;
    box-shadow: 0 0 0 3px rgba(240,87,37,0.1);
    outline: none;
}

.form-group input[type="file"] {
    padding: 10px;
    background-color: white;
}

.form-group small {
    display: block;
    margin-top: 5px;
    font-size: 0.85rem;
    color: #666;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    margin-top: 3px;
}

.form-submit {
    text-align: center;
    margin-top: 20px;
}

.form-submit .btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    min-width: 200px;
}

/* Success message styling */
.success-message {
    background-color: rgba(76, 175, 80, 0.1);
    border-left: 4px solid #4CAF50;
    color: #333;
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.success-message i {
    color: #4CAF50;
    font-size: 1.5rem;
    margin-right: 10px;
}

/* Careers Contact Section */
.careers-contact {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.careers-contact-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.careers-contact-content h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.careers-contact-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.careers-contact-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.careers-contact-item {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.careers-contact-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.careers-contact-item i {
    font-size: 2rem;
    color: #F05725;
    margin-bottom: 15px;
}

.careers-contact-item h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.careers-contact-item p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.careers-contact-item a {
    color: #F05725;
    text-decoration: none;
    transition: all 0.3s ease;
}

.careers-contact-item a:hover {
    text-decoration: underline;
}

/* Footer - Change background color to match site */
.footer {
    background: #121820; /* Match the site's footer background color */
    color: #ffffff;
    padding: 80px 0 30px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .jv-overview-content {
        grid-template-columns: 1fr;
    }
    
    .benefits-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .jv-stat-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .careers-contact-details {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .jobs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 180px 0 80px;
    }
    
    .page-header__title {
        font-size: 2.2rem;
    }
    
    .page-header__subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
    
    .jv-stat-wrapper {
        grid-template-columns: 1fr;
    }
    
    .application-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: 1;
    }
    
    .careers-contact-details {
        grid-template-columns: 1fr;
    }
    
    .jobs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 160px 0 60px;
    }
    
    .page-header__title {
        font-size: 1.8rem;
    }
    
    .page-header__subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .application-step {
        padding: 20px;
    }
    
    .application-form-container {
        padding: 20px;
    }
} 