/* Inner Pages Professional Styles */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0f3666 100%);
    color: white;
    padding: 50px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Service Overview */
.service-overview {
    padding: 80px 0;
    background: var(--bg-light);
}

.overview-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.overview-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Services Grid */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.service-item {
    flex: 1 1 350px;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-left: 4px solid var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0.05;
    transition: width 0.3s ease;
}

.service-item:hover::before {
    width: 100%;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-item h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.service-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: white;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    flex: 1 1 300px;
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: var(--bg-light);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.benefit-item:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: var(--shadow);
    border-color: var(--secondary-color);
}

.benefit-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 600;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

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

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

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

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.step-item {
    flex: 1 1 300px;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
    border-top: 4px solid var(--secondary-color);
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 2rem;
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.step-item h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.step-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Features List */
.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    flex: 1 1 400px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    border-left: 3px solid var(--secondary-color);
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.feature-item h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Team Detailed */
.team-detailed {
    margin-top: 3rem;
}

.team-member {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.member-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.member-info h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.member-info h4 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.member-info p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Contact Page Social Links - Specific Styles */
.contact-page .social-connect {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

.contact-page .social-connect h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.2rem;
}

.contact-page .social-links {
    display: flex !important;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.contact-page .social-link {
    display: inline-flex !important;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: white;
    border-radius: 25px;
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
    min-width: 160px;
    justify-content: flex-start;
    font-weight: 500;
}

.contact-page .social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(24, 68, 129, 0.3);
    border-color: var(--primary-color);
}

.contact-page .social-link i {
    font-size: 1.3rem;
    width: 22px;
    text-align: center;
    display: inline-block !important;
    flex-shrink: 0;
}

.contact-page .social-link span {
    font-weight: 500;
    font-size: 0.95rem;
    white-space: nowrap;
}

/* Ensure Font Awesome icons are loaded */
.contact-page .social-link i.fab,
.contact-page .social-link i.fas {
    font-family: "Font Awesome 6 Brands", "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    -webkit-font-smoothing: antialiased;
    display: inline-block !important;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-page .social-links {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .contact-page .social-link {
        justify-content: center;
        min-width: auto;
        width: 100%;
        max-width: 200px;
    }
}

.contact-content {
    display: flex;
    gap: 4rem;
    align-items: stretch;
}

.contact-info,
.contact-form-section {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-details {
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    border-left: 4px solid var(--secondary-color);
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-text h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-text p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.social-connect {
    margin-top: 2rem;
}

.social-connect h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.social-connect .social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.social-link {
    display: inline-flex !important;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: white;
    border-radius: 25px;
    text-decoration: none;
    color: var(--primary-color);
    margin-right: 1rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    border: 1px solid #e2e8f0;
    min-width: 120px;
    justify-content: flex-start;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.social-link i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
    display: inline-block;
    flex-shrink: 0;
}

.social-link span {
    font-weight: 500;
    font-size: 0.95rem;
}

/* Form Styles */
.contact-form-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.form-tabs {
    display: flex;
    margin-bottom: 2rem;
    border-bottom: 2px solid #e2e8f0;
}

.tab-btn {
    padding: 1rem 2rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-light);
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    font-weight: 600;
}

.tab-content {
    display: none;
}

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

.tab-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.tab-content h4 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-size: 1.2rem;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 0.5rem;
    font-weight: 600;
}

.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;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(24, 68, 129, 0.1);
}

.form-group small {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.25rem;
    display: block;
}

.checkbox-label {
    display: flex !important;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto !important;
    margin: 0;
    margin-top: 0.2rem;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: white;
}

.map-container {
    margin-top: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Comparison Table */
.comparison-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-top: 3rem;
    border: 1px solid #e2e8f0;
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.table-header > div {
    padding: 1rem;
    text-align: center;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid #e2e8f0;
}

.table-row:last-child {
    border-bottom: none;
}

.table-row > div {
    padding: 1rem;
    border-right: 1px solid #e2e8f0;
}

.table-row > div:last-child {
    border-right: none;
}

.aspect {
    font-weight: 600;
    color: var(--text-dark);
    background: var(--bg-light);
}

.vchro {
    background: #e8f5e8;
    color: #2d5a2d;
}

.traditional {
    background: #fff5f5;
    color: #5a2d2d;
}

/* Process Phases */
.process-phases {
    margin-top: 3rem;
}

.phase-item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    position: relative;
    border-left: 4px solid var(--secondary-color);
    transition: transform 0.3s ease;
}

.phase-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.phase-number {
    position: absolute;
    top: -15px;
    left: 2rem;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.phase-item h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    margin-top: 0.5rem;
    font-weight: 600;
}

.phase-content h4 {
    color: var(--primary-color);
    margin: 1rem 0 0.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.phase-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Active Navigation Link */
.nav-menu a.active {
    color: var(--secondary-color);
    font-weight: 600;
}

.dropdown-content a.active {
    background: var(--primary-color);
    color: white;
}

/* About Page Specific Styles */
.about-content {
    padding: 80px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.about-intro {
    max-width: 1100px;
    margin: 0 auto 5rem;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.about-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.about-intro h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.about-intro h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.about-intro h3 {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
}

.about-intro p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #4a5568;
    margin-bottom: 1.8rem;
    text-align: justify;
}

.about-intro p:first-of-type::first-letter {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    float: left;
    line-height: 1;
    margin: 0.1rem 0.5rem 0 0;
}

.about-intro p strong {
    color: var(--primary-color);
    font-weight: 600;
}

.about-features {
    margin: 5rem 0;
    padding: 0 1rem;
}

.about-features .feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.about-features .feature-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
    flex-direction: column;
        justify-content: center;
    align-items: center;
}

.about-features .feature-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(24, 68, 129, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.5s ease;
    transform: scale(0);
}

.about-features .feature-item:hover::before {
    opacity: 1;
    transform: scale(1);
}

.about-features .feature-item:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--secondary-color);
    box-shadow: 0 20px 50px rgba(24, 68, 129, 0.2);
}

.about-features .feature-item i {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    display: inline-block;
}

.about-features .feature-item:hover i {
    transform: scale(1.15) rotate(-5deg);
    filter: drop-shadow(0 5px 10px rgba(24, 68, 129, 0.3));
}

.about-features .feature-item h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.about-features .feature-item:hover h3 {
    color: var(--secondary-color);
}

.about-features .feature-item p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
    padding: 0 1rem;
}

.mission, .vision {
    padding: 3rem;
    background: white;
    border-radius: 20px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.mission::before, .vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
}

.mission:hover, .vision:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(24, 68, 129, 0.2);
}

.mission h3, .vision h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.mission h3::after, .vision h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.mission p, .vision p {
    color: #4a5568;
    line-height: 1.9;
    margin: 0;
    font-size: 1.05rem;
}

.team-section {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.team-section .section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.team-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.team-section .section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.team-section .section-header .btn {
    margin-top: 1rem;
    padding: 0.8rem 2.5rem;
    font-size: 1rem;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(24, 68, 129, 0.3);
    transition: all 0.3s ease;
}

.team-section .section-header .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(24, 68, 129, 0.4);
}

/* CTA Section Enhancement */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0f3666 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--primary-color);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

.cta-buttons .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-outline:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Responsive for About Page */
@media (max-width: 768px) {
    .mission-vision {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-features .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features .feature-item {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 1024px) {
    .about-features .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .about-intro {
        padding: 2rem 1.5rem;
    }
    
    .about-intro h2 {
        font-size: 2rem;
    }
    
    .about-intro h3 {
        font-size: 1.1rem;
    }
    
    .about-intro p {
        font-size: 1rem;
        text-align: left;
    }
    
    .mission, .vision {
        padding: 2rem;
    }
    
    .mission h3, .vision h3 {
        font-size: 1.5rem;
    }
    
    .team-section .section-header h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}
@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 60px;
        margin-top: 60px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .team-member {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 1fr;
    }
    
    .table-header > div,
    .table-row > div {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .overview-content p {
        text-align: left;
    }
}
/* Job Application Page Styles */
.application-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.application-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.application-form .form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.application-form .form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.application-form .form-section h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
}

.application-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

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

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

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

.application-form .form-group input:focus,
.application-form .form-group select:focus,
.application-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

.application-form .form-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.application-form .btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.application-form .btn-primary {
    background: var(--primary-color);
    color: white;
}

.application-form .btn-primary:hover {
    background: #0f3666;
}

.application-form .btn-secondary {
    background: #6c757d;
    color: white;
}

.application-form .btn-secondary:hover {
    background: #545b62;
}

@media (max-width: 768px) {
    .application-form .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .application-form-container {
        padding: 20px;
        margin: 0 15px;
    }
    
    .application-form .form-actions {
        flex-direction: column;
    }
}
/* Team Cards */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.team-card {
    flex: 1 1 300px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    padding: 1rem;
}

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


.team-card .team-image {
    margin-bottom: 0;
    overflow: hidden;
}

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

.team-card .team-info {
    padding: 1rem;
    text-align: center;
}

.team-card .team-info h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.team-card .team-info h4 {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.team-card .experience {
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.team-card .btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 25px;
    margin-top: 0.5rem;
    background-color: var(--secondary-color);
    color: #ffffff;
        font-family: 'Poppins', sans-serif;

}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    margin: 3% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 700px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 50px rgba(0,0,0,0.3);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color), #0f3666);
    color: white;
    padding: 2rem;
    border-radius: 15px 15px 0 0;
    position: relative;
}

.modal-header h2 {
    margin: 0 0 0.5rem 0;
    font-size: 1.8rem;
}

.modal-header .job-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.95rem;
    opacity: 0.95;
}

.modal-header .job-meta i {
    margin-right: 0.3rem;
}

.close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    color: white;
    transition: all 0.3s;
}

.close:hover {
    background: rgba(255,255,255,0.3);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
}

.modal-body h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary-color);
}

.modal-body h3:first-child {
    margin-top: 0;
}

.modal-body p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.modal-body ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.modal-body ul li {
    line-height: 2;
    color: #555;
    position: relative;
    padding-left: 0.5rem;
}

.modal-body ul li::marker {
    color: var(--secondary-color);
}

.modal-footer {
    padding: 1.5rem 2rem;
    background: #f8f9fa;
    border-radius: 0 0 15px 15px;
    text-align: center;
}

.modal-member h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.modal-member h4 {
    color: #666;
    margin-bottom: 1rem;
}

.modal-member p {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #555;
}
/* Careers Page */
.careers-section {
    padding: 80px 0 60px;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.careers-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.careers-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.careers-section > .container > p {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.job-listings {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.job-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0.05;
    border-radius: 0 0 0 100%;
    transition: all 0.3s ease;
}

.job-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(24, 68, 129, 0.15);
    border-left-width: 6px;
}

.job-card:hover::before {
    width: 150px;
    height: 150px;
}

.job-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.job-card .job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: #666;
    font-size: 0.95rem;
}

.job-card .job-meta i {
    color: var(--secondary-color);
    margin-right: 0.3rem;
}

.job-card .job-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.job-card .btn {
    flex: 1;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.job-card .btn-primary {
    background: var(--primary-color);
    color: white;
}

.job-card .btn-primary:hover {
    background: #0f3666;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(24, 68, 129, 0.3);
}

.job-card .btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.job-card .btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.job-skills {
    margin-bottom: 1.5rem;
}

.job-skills span {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.career-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: white;
    border-radius: 10px;
}

.career-cta h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.career-cta p {
    color: #666;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .job-listings {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .job-card .job-actions {
        flex-direction: column;
    }
    
    .careers-section h2 {
        font-size: 2rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .modal-header {
        padding: 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.4rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
}
/* Service Hero Images */
.service-hero {
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.service-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .service-image {
        height: 200px;
    }
}
/* Team Canvas Styles */
.team-canvas {
    position: fixed;
    top: 0;
    right: -50%;
    width: 50%;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 20px rgba(0,0,0,0.3);
    z-index: 1001;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.team-canvas.active {
    right: 0;
}

.canvas-header {
    padding: 2rem;
    background: var(--primary-color);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1002;
}

.canvas-header h2 {
    margin: 0;
    font-size: 1.5rem;
}

.close-canvas {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.close-canvas:hover {
    background: rgba(255,255,255,0.2);
}

.canvas-content {
    padding: 2rem;
}

.leader-detail {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.leader-detail:last-child {
    border-bottom: none;
}

.leader-detail h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.leader-detail h4 {
    color: var(--secondary-color);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.exp-badge {
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.leader-detail p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Canvas Overlay */
.canvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.canvas-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .team-canvas {
        width: 100%;
        right: -100%;
    }
}-bottom: 1rem;
}

/* Canvas Overlay */
.canvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.canvas-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .team-canvas {
        width: 100%;
        right: -100%;
    }
}