/* Base mobile-first styles */
* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

/* Prevent horizontal scroll */
html,
body {
    overflow-x: hidden;
    max-width: 100vw;
}

/* Improve mobile touch targets */
.faq-question,
.carousel-btn,
.carousel-dot {
    min-height: 44px;
    min-width: 44px;
}

/* Split Layout Styles */
.about-intro {
    background: linear-gradient(180deg, #e6f9f9 0%, #ffffff 100%);
    padding: 40px 18px;
}

.split-section {
    padding: 45px 18px;
    background: white;
}

.split-section.alt {
    background: linear-gradient(135deg, #e6f9f9 0%, #ffffff 100%);
}

.split-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    align-items: stretch;
}

.text-content {
    text-align: center;
}

.tabs-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tabs-container .section-title {
    text-align: center;
    margin-bottom: 5px;
    font-size: 22px;
}

.tabs {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.tab-btn {
    background: white;
    border: 1px solid rgba(0, 139, 139, 0.2);
    border-radius: 24px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #0a2540;
    flex: 1 1 calc(50% - 4px);
    justify-content: center;
}

.tab-btn:hover {
    border-color: #008B8B;
    background: rgba(0, 139, 139, 0.05);
}

.tab-btn.active {
    background: linear-gradient(135deg, #008B8B 0%, #00aaaa 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(0, 139, 139, 0.3);
}

.tab-btn i {
    font-size: 14px;
    width: auto;
    text-align: center;
}

.tab-content-container {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 4px 20px rgba(0, 139, 139, 0.1);
    border: 1px solid rgba(0, 139, 139, 0.08);
    min-height: auto;
    margin-top: 10px;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #e6f9f9 0%, #ffffff 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    border: 2px solid rgba(0, 139, 139, 0.2);
}

.tab-icon i {
    font-size: 28px;
    color: #008B8B;
}

.tab-content h3 {
    font-size: 20px;
    font-weight: 800;
    color: #0a2540;
    margin-bottom: 15px;
    line-height: 1.3;
    text-align: center;
}

.tab-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    text-align: center;
}

.section-subtitle {
    color: #008B8B;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.section-title {
    color: #0a2540;
    margin-bottom: 18px;
    font-size: 24px;
}

.section-text {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 14px;
    text-align: left;
}

.section-text:last-child {
    margin-bottom: 0;
}

.image-content {
    display: flex;
    justify-content: center;
}

.section-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 8px 30px rgba(0, 139, 139, 0.18);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 900px;
    margin: 25px auto 0;
}

.feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #f5fdfd 100%);
    border-radius: 4px;
    padding: 25px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    box-shadow: 0 2px 12px rgba(0, 139, 139, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 180px;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 18px rgba(0, 139, 139, 0.15);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #008B8B 0%, #006666 100%);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon {
    font-size: 28px;
    color: white;
    margin: 0;
}

.feature-content {
    flex: 1;
    text-align: center;
}

.feature-title {
    font-size: 14px;
    font-weight: 700;
    color: #0a2540;
    margin: 0;
    line-height: 1.4;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.mv-card {
    background: linear-gradient(135deg, #ffffff 0%, #f5fdfd 100%);
    border-radius: 4px;
    padding: 32px 24px;
    box-shadow: 0 3px 15px rgba(0, 139, 139, 0.1);
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #008B8B 0%, #00aaaa 50%, #008B8B 100%);
}

.mv-icon {
    font-size: 42px;
    color: #008B8B;
    margin-bottom: 18px;
}

.mv-title {
    font-size: 18px;
    font-weight: 800;
    color: #0a2540;
    margin-bottom: 18px;
}

.mv-text {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 12px;
    text-align: left;
}

.mv-text:last-child {
    margin-bottom: 0;
}

/* Desktop/Tablet styles */
@media (min-width: 768px) {
    .about-intro {
        padding: 60px 40px;
    }

    .split-section {
        padding: 60px 40px;
    }

    .split-container {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .text-content {
        text-align: left;
    }

    .split-section.alt .split-container {
        direction: ltr;
    }

    .split-section.alt .split-container>* {
        direction: ltr;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .mv-card {
        padding: 36px 30px;
    }

    .tabs-container .section-title {
        text-align: left;
        font-size: 28px;
        margin-bottom: 0;
    }

    .tabs {
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

    .tab-btn {
        padding: 15px 20px;
        font-size: 14px;
        border-radius: 8px;
        flex: none;
        justify-content: flex-start;
        text-align: left;
    }

    .tab-btn i {
        font-size: 18px;
        width: 24px;
    }

    .tab-content-container {
        border-radius: 16px;
        padding: 40px;
        box-shadow: 0 8px 30px rgba(0, 139, 139, 0.12);
        min-height: 400px;
    }

    .tab-icon {
        width: 80px;
        height: 80px;
        border-radius: 16px;
        margin-bottom: 25px;
    }

    .tab-icon i {
        font-size: 36px;
    }

    .tab-content h3 {
        font-size: 26px;
        font-weight: 800;
        margin-bottom: 20px;
        text-align: left;
    }

    .tab-content p {
        font-size: 16px;
        line-height: 1.8;
        text-align: left;
    }
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #e6f9f9 0%, #ffffff 100%);
    padding: 50px 18px;
    overflow: hidden;
}

.testimonials-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 40px;
}

.testimonials-header .section-subtitle {
    color: #008B8B;
}

.testimonials-header .section-title {
    color: #0a2540;
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    padding: 0;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
    align-items: stretch;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0;
    box-sizing: border-box;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
}

.testimonial-card {
    background: linear-gradient(135deg, #ffffff 0%, #f5fdfd 100%);
    border-radius: 8px;
    padding: 25px 20px;
    box-shadow: 0 3px 15px rgba(0, 139, 139, 0.1);
    position: relative;
    width: 90%;
    max-width: 320px;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    text-align: center;
    border: 1px solid rgba(0, 139, 139, 0.08);
    margin: 0 auto;
    justify-content: center;
}

/* Desktop/Tablet styles for Testimonials */
@media (min-width: 768px) {
    .testimonials-section {
        padding: 70px 40px;
    }

    .testimonial-card {
        padding: 40px 35px;
        aspect-ratio: 1 / 1;
        max-width: 320px;
    }

    .testimonial-slide {
        min-width: 50%;
        padding: 0 15px;
    }
}

@media (min-width: 1024px) {
    .testimonial-slide {
        min-width: 33.333%;
        padding: 0 8px;
    }
}

.testimonial-content {
    flex: 1;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 12px;
    line-height: 1.5;
    color: #555;
    margin-bottom: 18px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: auto;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #008B8B 0%, #00aaaa 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.author-name {
    font-size: 14px;
    font-weight: 700;
    color: #0a2540;
    margin-bottom: 2px;
}

.author-location {
    font-size: 11px;
    color: #888;
}

.star-rating {
    color: #f59e0b;
    font-size: 13px;
    margin-bottom: 16px;
    text-align: center;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 35px;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    color: #008B8B;
    border: 2px solid #008B8B;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: #008B8B;
    color: white;
    transform: scale(1.05);
}

.carousel-dots {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
    padding: 0 10px;
}

.carousel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d1d5db;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    min-height: 20px;
    min-width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.carousel-dot::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d1d5db;
    transition: all 0.3s ease;
}

.carousel-dot.active::before {
    background: #008B8B;
    width: 16px;
    border-radius: 3px;
}

/* FAQ Section */
.faq-section {
    padding: 45px 18px;
    background: white;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 35px;
}

.faq-item {
    background: linear-gradient(135deg, #ffffff 0%, #f5fdfd 100%);
    border-radius: 4px;
    margin-bottom: 12px;
    box-shadow: 0 2px 12px rgba(0, 139, 139, 0.08);
    overflow: hidden;
}

.faq-question {
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(0, 139, 139, 0.05);
}

.faq-question-text {
    font-size: 14px;
    font-weight: 600;
    color: #0a2540;
    flex: 1;
    line-height: 1.5;
}

.faq-icon {
    color: #008B8B;
    font-size: 13px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 12px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 20px 18px;
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

/* FAQ Search */
.faq-search {
    position: relative;
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.faq-search i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #008B8B;
    font-size: 18px;
}

.faq-search input {
    width: 100%;
    padding: 15px 20px 15px 55px;
    border: 2px solid rgba(0, 139, 139, 0.2);
    border-radius: 50px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.faq-search input:focus {
    border-color: #008B8B;
    box-shadow: 0 0 0 4px rgba(0, 139, 139, 0.1);
}

/* FAQ Tabs */
.faq-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 35px;
}

.faq-tab {
    padding: 10px 24px;
    background: white;
    border: 2px solid rgba(0, 139, 139, 0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #0a2540;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-tab:hover {
    border-color: #008B8B;
    background: rgba(0, 139, 139, 0.05);
}

.faq-tab.active {
    background: linear-gradient(135deg, #008B8B 0%, #00aaaa 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(0, 139, 139, 0.3);
}

/* FAQ Item Hide */
.faq-item.hidden {
    display: none;
}

/* FAQ CTA */
.faq-cta {
    margin-top: 50px;
    background: linear-gradient(135deg, #5bc4c4, #2a6f7a);
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
}

.faq-cta-content h3 {
    font-size: 24px;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
}

.faq-cta-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.faq-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.faq-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.faq-cta-btn.primary {
    background: #002122;
    color: white;
}

.faq-cta-btn.primary:hover {
    background: #001a1a;
    transform: translateY(-2px);
}

.faq-cta-btn.secondary {
    background: white;
    color: #2a6f7a;
}

.faq-cta-btn.secondary:hover {
    background: #f0fcfc;
    transform: translateY(-2px);
}

/* Company About Section */
.faq-company-about {
    padding: 50px 16px;
    background: linear-gradient(180deg, #e6f9f9 0%, #ffffff 100%);
}

.faq-company-about-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
}

.faq-company-about-content {
    text-align: center;
}

.faq-company-about-content .section-subtitle {
    margin-bottom: 12px;
}

.faq-company-about-content .section-title {
    margin-bottom: 20px;
}

.faq-company-about-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.faq-company-about-image {
    display: flex;
    justify-content: center;
}

.faq-company-about-image img {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 139, 139, 0.15);
}

/* Why Choose Us Section */
.faq-why-choose {
    padding: 50px 16px;
    background: white;
}

.faq-why-choose-container {
    max-width: 1100px;
    margin: 0 auto;
}

.faq-why-choose-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-why-choose-header .section-subtitle {
    margin-bottom: 12px;
}

.faq-why-choose-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.faq-why-choose-card {
    background: linear-gradient(135deg, #ffffff 0%, #f5fdfd 100%);
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 139, 139, 0.08);
    border: 1px solid rgba(0, 139, 139, 0.1);
    transition: all 0.3s ease;
}

.faq-why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 139, 139, 0.15);
}

.faq-why-choose-card .icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #008B8B 0%, #00aaaa 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.faq-why-choose-card .icon-wrapper i {
    font-size: 30px;
    color: white;
}

.faq-why-choose-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0a2540;
    margin-bottom: 12px;
}

.faq-why-choose-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

/* Our Journey Section */
.faq-journey {
    padding: 50px 16px;
    background: linear-gradient(180deg, #ffffff 0%, #e6f9f9 100%);
}

.faq-journey-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-journey-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-journey-timeline {
    position: relative;
    padding-left: 30px;
}

.faq-journey-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #008B8B 0%, #00aaaa 100%);
    border-radius: 2px;
}

.faq-journey-item {
    position: relative;
    padding-bottom: 35px;
}

.faq-journey-item:last-child {
    padding-bottom: 0;
}

.faq-journey-dot {
    position: absolute;
    left: -34px;
    top: 5px;
    width: 16px;
    height: 16px;
    background: #008B8B;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 4px rgba(0, 139, 139, 0.2);
}

.faq-journey-year {
    font-size: 18px;
    font-weight: 800;
    color: #008B8B;
    margin-bottom: 8px;
}

.faq-journey-title {
    font-size: 18px;
    font-weight: 700;
    color: #0a2540;
    margin-bottom: 8px;
}

.faq-journey-description {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* Desktop/Tablet styles */
@media (min-width: 768px) {
    .faq-company-about {
        padding: 70px 40px;
    }

    .faq-company-about-container {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .faq-company-about-content {
        text-align: left;
    }

    .faq-why-choose {
        padding: 70px 40px;
    }

    .faq-why-choose-grid {
        grid-template-columns: 1fr 1fr;
        gap: 22px;
    }

    .faq-journey {
        padding: 70px 40px;
    }

    .faq-journey-timeline {
        padding-left: 40px;
    }

    .faq-journey-dot {
        left: -44px;
        width: 20px;
        height: 20px;
    }

    .faq-cta {
        padding: 50px 40px;
    }

    .faq-cta-content h3 {
        font-size: 30px;
    }
}

@media (min-width: 1024px) {
    .faq-why-choose-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

/* Reviews CTA Section */
.reviews-cta {
    position: relative;
    background-image: url('../images/banner/homepage-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0px 20px !important;
    overflow: hidden;
}

.reviews-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 139, 139, 0.85) 0%, rgba(0, 47, 47, 0.95) 100%);
    z-index: 1;
}

.reviews-cta-overlay {
    position: relative;
    z-index: 2;
    padding: 50px 30px;
    text-align: center;
}

.reviews-cta-overlay h2 {
    color: white !important;
    font-size: 32px !important;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
}

.reviews-cta-overlay p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 18px !important;
    margin-bottom: 35px !important;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.reviews-cta-overlay .faq-cta-btn {
    padding: 14px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.reviews-cta-overlay .faq-cta-btn.primary {
    background: #002122;
    color: white;
    border: 2px solid #002122;
}

.reviews-cta-overlay .faq-cta-btn.primary:hover {
    background: white;
    color: #002122;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.reviews-cta-overlay .faq-cta-btn.secondary {
    background: white;
    color: #008B8B;
    border: 2px solid white;
}

.reviews-cta-overlay .faq-cta-btn.secondary:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Review Form Styles */
.review-form {
    margin-top: 25px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: #0a2540;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(0, 139, 139, 0.2);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #008B8B;
    box-shadow: 0 0 0 4px rgba(0, 139, 139, 0.1);
}

.rating-input {
    display: flex;
    gap: 8px;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.rating-input input {
    display: none;
}

.rating-input label {
    cursor: pointer;
    font-size: 28px;
    color: #ddd;
    transition: color 0.3s ease;
    margin-bottom: 0;
}

.rating-input label:hover,
.rating-input label:hover ~ label,
.rating-input input:checked ~ label {
    color: #f59e0b;
}

/* Desktop/Tablet styles for FAQ */
@media (min-width: 768px) {
    .faq-section {
        padding: 60px 40px;
    }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #f8f9fa;
}

.header-bar {
    background-color: #ffffff;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.desktop-banner {
    display: none;
    position: relative;
    width: 100%;
    max-height: 500px;
    overflow: hidden;
}

.desktop-banner.about-banner {
    max-height: 300px;
}

.desktop-banner.about-banner .banner-overlay {
    padding: 30px 20px;
}

.desktop-banner.about-banner .banner-overlay h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.desktop-banner.about-banner .banner-overlay .banner-subtitle {
    font-size: 14px;
    margin-bottom: 8px;
}

.desktop-banner.about-banner .banner-overlay .banner-description {
    font-size: 16px;
    margin-bottom: 0;
    max-width: 500px;
}

.desktop-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

.banner-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.banner-overlay h2 {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.banner-description {
    font-size: 18px;
    color: white;
    margin-bottom: 30px;
    max-width: 700px;
    line-height: 1.6;
}

.banner-btn {
    background-color: #008B8B;
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.banner-btn:hover {
    background-color: #006666;
}

@media (min-width: 1024px) {
    .desktop-banner {
        display: block;
    }
}

/* Why Choose Us? Section Styles */
.why-choose-us {
    width: 100%;
    padding: 0;
}

/* Mobile Why Choose Us Header */
.mobile-why-header {
    display: block;
    padding: 40px 16px;
    width: 100%;
    overflow: hidden;
}

.mobile-why-header img {
    width: 100%;
    height: auto;
    display: block;
}

.mobile-why-header h2 {
    display: none;
}

.why-bullets {
    display: none;
}

/* Physiotherapy Banner (Desktop Only) */
.physio-banner {
    display: none;
    padding: 0px 35px 50px 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.physio-banner .physio-content {
    display: none;
}

.physio-banner img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}

/* How We Make It Safe Section */
.safe-section {
    background: linear-gradient(135deg, #5bc4c4, #2a6f7a);
    padding: 40px 20px;
    border-radius: 16px;
    text-align: center;
    max-width: 1000px;
    margin: 0px 16px 40px 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

@media (min-width: 1024px) {
    .safe-section {
        margin: 0px auto 50px auto;
        padding: 50px 35px;
    }
}

.safe-section h3 {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.safe-section p {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
    line-height: 1.6;
}

.know-more-btn {
    background-color: white;
    color: #2a6f7a;
    border: none;
    padding: 12px 30px;
    border-radius: 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Why Choose Us Main Section */
.why-choose-main {
    padding: 40px 16px 40px 16px;
    background-color: #e6f9f9;
}

@media (min-width: 1024px) {
    .why-choose-main {
        padding: 50px 35px 60px 35px;
    }
}

.section-title {
    font-size: 28px;
    font-weight: 800;
    color: #225566;
    text-align: center;
    margin-bottom: 15px;
}

.section-description {
    font-size: 16px;
    color: #444;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 35px auto;
    line-height: 1.6;
}

.why-choose-cards-container {
    display: block;
}

.doctor-image {
    display: none;
    width: 40%;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    object-fit: cover;
}

.why-choose-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    width: 100%;
}

.why-card {
    background-color: white;
    border-radius: 16px;
    padding: 25px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    text-align: center;
}

.why-card i {
    font-size: 38px;
    color: #008B8B;
    margin-bottom: 15px;
}

.why-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #008B8B;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

/* Desktop Styles for Why Choose Us */
@media (min-width: 1024px) {
    .mobile-why-header {
        display: none;
    }
    
    .physio-banner {
        display: flex;
    }
    
    .why-choose-cards-container {
        display: flex;
        gap: 40px;
        max-width: 1100px;
        margin: 0 auto;
        align-items: stretch;
    }
    
    .doctor-image {
        display: block;
    }
    
    .why-choose-cards-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 20px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .why-choose-cards-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-section img {
    max-width: 150px;
    height: auto;
}

.search-icon {
    font-size: 28px;
    color: #008B8B;
    cursor: pointer;
}

.desktop-nav {
    display: none;
    gap: 20px;
    align-items: center;
}

.desktop-nav-item {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s;
    white-space: nowrap;
}

.desktop-nav-item:hover, .desktop-nav-item.active {
    color: #008B8B;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-radius: 8px;
    min-width: 220px;
    padding: 8px 0;
    margin-top: 0;
    padding-top: 6px; /* Replace margin with padding */
    display: none;
    z-index: 100;
}

/* Add pseudo-element to bridge the gap */
.dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
    z-index: 99;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    display: block;
    padding: 10px 18px;
    text-decoration: none;
    color: #555;
    font-size: 14px;
}

.dropdown-item:hover {
    background-color: #f1f9f9;
    color: #008B8B;
}

.menu-item.active {
    color: #008B8B;
}

.mobile-submenu-items {
    background-color: rgba(255,255,255,0.05);
    padding-left: 12px;
    display: none;
}

.mobile-submenu-items.open {
    display: block;
}

.mobile-submenu .menu-item {
    cursor: pointer;
    position: relative;
}

.header-right {
    display: none;
    align-items: center;
    gap: 20px;
}

.search-bar-desktop {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 8px 14px;
}

.search-bar-desktop i {
    color: #666;
    font-size:14px;
}

.search-bar-desktop input {
    border: none;
    outline: none;
    font-size: 14px;
    width: 220px;
}

.contact-buttons {
    display: flex;
    gap: 10px;
}

.contact-btn {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.email-btn {
    background-color: transparent;
    color: #008B8B;
    border: 1.5px solid #008B8B;
}

.phone-btn {
    background-color: #008B8B;
    color: white;
    border: 1.5px solid #008B8B;
}

.mobile-header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-toggle {
    font-size: 28px;
    color: #008B8B;
    cursor: pointer;
}

.search-bar-mobile {
    display: none;
    padding: 15px 20px;
    background-color: white;
    border-bottom: 1px solid #eee;
}

.search-bar-mobile.active {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-bar-mobile input {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px 15px;
    font-size: 15px;
    outline: none;
}

.search-bar-mobile .fa-times {
    font-size: 22px;
    color: #666;
    cursor: pointer;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 998;
}

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

.mobile-menu {
    position: fixed;
    bottom: 30px; /* Match bottom nav height with more buffer */
    left: 0;
    width: 100%;
    background-color: #004B4B;
    border-radius: 16px 16px 0 0;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 999;
    max-height: 75vh;
    overflow-y: auto;
    padding-bottom: 40px;
}

.menu-items {
    padding: 10px 0 30px;
}

.mobile-menu.active {
    transform: translateY(0);
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.menu-header h3 {
    color: white;
    font-size: 20px;
    font-weight: 700;
}

.menu-close {
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.menu-items {
    padding: 10px 0;
}

.menu-item {
    display: block;
    color: white;
    text-decoration: none;
    padding: 18px 25px;
    font-size: 17px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: background 0.2s;
}

.menu-item:hover {
    background-color: rgba(255,255,255,0.05);
}
/* Main Content */
.main-content {
    padding: 40px 16px 40px 16px;
}

@media (min-width: 1024px) {
    .main-content {
        padding: 50px 35px;
    }
    .mobile-menu,
    .menu-overlay {
        display: none !important;
    }
}

.page-title {
    font-size: 22px;
    font-weight: 800;
    color: #0a2540;
    margin-bottom: 22px;
    text-align: center;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 26px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 12px 8px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #e1f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px auto;
}

.service-icon {
    font-size: 28px;
    color: #46b5b5;
    opacity: 0.9;
}

.service-title {
    font-size: 13px;
    font-weight: 600;
    color: #222222;
    line-height: 1.3;
    margin-bottom: 10px;
}

.enquire-btn {
    background-color: #ffffff;
    color: #46b5b5;
    border: 1px solid #46b5b5;
    padding: 5px 14px;
    border-radius: 18px;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    margin-top: 6px;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 20px;
        max-width: 1100px;
        margin-left: auto;
        margin-right: auto;
    }

    .service-card {
        padding: 20px 12px;
    }

    .service-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 14px;
    }

    .service-icon {
        font-size: 32px;
    }

    .service-title {
        font-size: 15px;
    }

    .enquire-btn {
        padding: 8px 18px;
        font-size: 12px;
    }
}

.cta-section {
    background-color: #008B8B;
    padding: 12px 20px;
    text-align: center;
    position: fixed;
    bottom: 70px;
    left: 0;
    width: 100%;
    z-index: 99;
}

.request-call-btn {
    background-color: #001a1a;
    color: #ffffff;
    border: none;
    padding: 12px 40px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

@media (min-width: 1024px) {
    .cta-section {
        display: none;
    }
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: space-around;
    padding: 12px 0;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: #666666;
    text-decoration: none;
}

.nav-item.active {
    color: #008B8B;
}

.nav-item .fa-whatsapp {
    color: #25D366;
}

.nav-item i {
    font-size: 28px;
}

.nav-item span {
    font-size: 13px;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 20px;
        max-width: 1100px;
        margin-left: auto;
        margin-right: auto;
    }

    .main-content {
        padding: 30px;
    }

    .header-bar {
        padding: 14px 40px;
    }
}

@media (min-width: 1024px) and (max-width: 1280px) {
    .header-bar {
        padding: 12px 30px;
        justify-content: space-between;
    }

    .desktop-nav {
        display: flex;
        gap: 14px;
    }

    .desktop-nav-item {
        font-size: 13px;
    }

    .header-right {
        display: flex;
        gap: 12px;
        align-items: center;
    }

    .search-bar-desktop input {
        width: 170px;
    }

    .contact-btn {
        font-size: 12px;
        padding: 7px 12px;
    }

    .mobile-header-right {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 18px;
        max-width: 1100px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-title {
        font-size: 24px;
    }

    .bottom-nav {
        display: none;
    }
}

@media (min-width: 1281px) {
    .header-bar {
        padding: 12px 50px;
        justify-content: space-between;
    }

    .desktop-nav {
        display: flex;
        gap: 22px;
    }

    .desktop-nav-item {
        font-size: 14px;
    }

    .header-right {
        display: flex;
        gap: 18px;
        align-items: center;
    }

    .search-bar-desktop input {
        width: 220px;
    }

    .mobile-header-right {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 18px;
        max-width: 1100px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-title {
        font-size: 26px;
    }

    .bottom-nav {
        display: none;
    }
}

@media (min-width: 1440px) {
    .header-bar {
        padding: 14px 80px;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        max-width: 1100px;
        gap: 18px;
    }

    .desktop-nav {
        gap: 28px;
    }

    .search-bar-desktop input {
        width: 260px;
    }
}

/* Statistics Section */
.statistics-section {
    width: 100%;
    padding: 40px 16px 40px 16px;
    background-color: #f8f9fa;
}

.stats-container {
    background: linear-gradient(135deg, #5bc4c4, #2a6f7a);
    border-radius: 24px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: white;
}

.stat-item i {
    font-size: 48px;
    margin-bottom: 12px;
}

.stat-value {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

/* Desktop Styles for Statistics Section */
@media (min-width: 1024px) {
    .statistics-section {
        padding: 50px 35px 60px 35px;
    }
    
    .stats-container {
        flex-direction: row;
        justify-content: space-around;
        padding: 40px 30px;
    }
    
    .stat-item {
        position: relative;
        flex: 1;
    }
    
    .stat-item:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 60%;
        background-color: rgba(255,255,255,0.3);
    }
    
    .stat-item i {
        font-size: 52px;
    }
    
    .stat-value {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 14px;
        line-height: 1.2;
    }
}

/* About Section */
.about-section {
    width: 100%;
    padding: 40px 16px 40px 16px;
    background-color: #ffffff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-title {
    font-size: 28px;
    font-weight: 800;
    color: #0a2540;
    text-align: center;
    margin-bottom: 20px;
}

.about-description {
    font-size: 16px;
    color: #4a709b;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.about-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.about-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 25px 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #46b5b5;
}

.about-card i {
    font-size: 48px;
    color: #46b5b5;
    margin-bottom: 15px;
}

.about-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.about-card p {
    font-size: 15px;
    color: #555555;
    line-height: 1.6;
}

/* Tablet Styles for About Section */
@media (min-width: 768px) and (max-width: 1023px) {
    .about-cards-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

/* Footer Styles */
.footer {
    background-color: #002122;
    color: #ffffff;
    padding: 50px 16px 30px 16px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-section {
    color: #ffffff;
}

.footer-logo {
    height: auto;
    width: 180px;
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 15px;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 25px;
}

.download-booklet-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #008B8B 0%, #00aaaa 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 28px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 139, 139, 0.3);
    margin-bottom: 25px;
}

.download-booklet-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 139, 139, 0.4);
    color: white;
}

.download-booklet-btn i {
    font-size: 16px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    text-decoration: none;
    transition: transform 0.2s;
}

.social-link.fb { background-color: #1877f2; }
.social-link.ig { background-color: #e4405f; }
.social-link.wa { background-color: #25d366; }
.social-link.yt { background-color: #ff0000; }

.social-link:hover {
    transform: scale(1.1);
}

.footer-heading {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    color: #cccccc;
    font-size: 15px;
    line-height: 1.6;
}

.contact-item a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-item a:hover {
    color: #46b5b5;
}

.contact-item i {
    color: #46b5b5;
    margin-top: 3px;
    min-width: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #46b5b5;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    text-align: center;
}

.copyright {
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 8px;
}

.credit {
    font-size: 14px;
    color: #cccccc;
}

.credit span {
    color: #46b5b5;
    font-weight: 600;
}

/* Desktop Styles for Footer */
@media (min-width: 1024px) {
    .footer {
        padding: 60px 35px 40px 35px;
    }
    
    .footer-grid {
        grid-template-columns: 2fr 1.5fr 1.2fr 1.2fr;
        gap: 40px;
    }
    
    .footer-bottom {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30px;
    }
    
    .copyright {
        margin-bottom: 0;
    }
}

/* Tablet Styles for Footer */
@media (min-width: 768px) and (max-width: 1023px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .company-info {
        grid-column: 1 / -1;
    }
}

/* Desktop Styles for About Section */
@media (min-width: 1024px) {
    .about-section {
        padding: 50px 35px 60px 35px;
    }
    
    .about-title {
        font-size: 36px;
    }
    
    .about-description {
        font-size: 18px;
        margin-bottom: 50px;
    }
    
    .about-cards-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 25px;
    }
    
    .about-card {
        padding: 35px 30px;
    }
    
    .about-card i {
        font-size: 52px;
    }
    
    .about-card h3 {
        font-size: 22px;
    }
}

/* ===============================================
   Career Page Styles
   =============================================== */

/* Modal Styles */
.apply-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
}

.apply-modal-overlay.active {
    display: flex;
}

.apply-modal {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 28px;
    color: #555;
    cursor: pointer;
    transition: color 0.3s ease;
    background: none;
    border: none;
    padding: 0;
}

.modal-close:hover {
    color: #008B8B;
}

.modal-title {
    font-size: 24px;
    font-weight: 800;
    color: #0a2540;
    margin-bottom: 28px;
    text-align: center;
}

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

.modal-form-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #008B8B;
    margin-bottom: 8px;
}

.modal-form-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.modal-form-input:focus {
    outline: none;
    border-color: #008B8B;
    box-shadow: 0 0 0 4px rgba(0, 139, 139, 0.1);
}

.modal-form-file {
    width: 100%;
    padding: 14px 18px;
    border: 2px dashed #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    background: #f8f9fa;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-form-file:hover {
    border-color: #008B8B;
    background: #f0f9f9;
}

.modal-file-hint {
    font-size: 13px;
    color: #666;
    margin-top: 6px;
}

.modal-submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #008B8B 0%, #00aaaa 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
    box-shadow: 0 4px 15px rgba(0, 139, 139, 0.3);
}

.modal-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 139, 139, 0.4);
}

.career-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
    padding: 20px 16px;
    flex-wrap: wrap;
    background: linear-gradient(135deg, #f5f9fa 0%, #e6f7f7 100%);
}

.career-tab {
    padding: 12px 26px;
    border-radius: 28px;
    font-weight: 600;
    font-size: 14px;
    color: #008B8B;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 139, 139, 0.1);
    border: 2px solid transparent;
}

.career-tab:hover {
    background: rgba(0, 139, 139, 0.05);
    border-color: rgba(0, 139, 139, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 139, 139, 0.15);
}

.career-tab.active {
    background: linear-gradient(135deg, #008B8B 0%, #00aaaa 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 139, 139, 0.3);
    border-color: transparent;
}

.career-section {
    padding: 32px 16px;
    max-width: 1400px;
    margin: 0 auto;
}

.career-title {
    font-size: 28px;
    font-weight: 800;
    color: #0a2540;
    text-align: center;
    margin-bottom: 32px;
}

.job-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    justify-items: center;
}

.job-card {
    background: white;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 380px;
    text-align: center;
}

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

.job-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.job-title {
    font-size: 19px;
    font-weight: 700;
    color: #008B8B;
    margin-bottom: 16px;
}

.job-details {
    text-align: left;
    color: #555;
    line-height: 1.7;
    font-size: 15px;
}

.job-details strong {
    color: #0a2540;
    display: block;
    margin-bottom: 4px;
}

.job-details p {
    margin: 0 0 12px;
}

.apply-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 40px;
    border: 2px solid #008B8B;
    color: #008B8B;
    border-radius: 24px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    cursor: pointer;
}

.apply-btn:hover {
    background: #008B8B;
    color: white;
}

.career-content {
    text-align: center;
    color: #666;
    line-height: 1.7;
    max-width: 1000px;
    margin: 0 auto 24px;
    font-size: 16px;
}

.benefits-title {
    font-size: 22px;
    font-weight: 800;
    color: #0a2540;
    margin: 28px 0 12px;
    text-align: center;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.process-card {
    background: white;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.process-icon {
    width: 100px;
    height: 100px;
    border: 4px solid #008B8B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 40px;
    color: #008B8B;
}

.process-step {
    font-size: 20px;
    font-weight: 700;
    color: #0a2540;
    margin-bottom: 12px;
}

/* Responsive Design for Career Page */
@media (min-width: 480px) {
    .career-tabs {
        gap: 20px;
        padding: 24px 16px;
    }

    .career-tab {
        font-size: 14px;
        padding: 12px 26px;
    }
}

@media (min-width: 768px) {
    .career-section {
        padding: 48px 32px;
    }

    .career-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .job-cards-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .job-image {
        width: 200px;
        height: 200px;
    }

    .job-title {
        font-size: 20px;
    }
}

@media (min-width: 1024px) {
    .career-tabs {
        gap: 28px;
        padding: 28px 32px;
    }

    .career-tab {
        font-size: 15px;
        padding: 14px 32px;
    }

    .job-cards-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .job-card {
        max-width: 400px;
        padding: 32px;
    }

    .process-icon {
        width: 120px;
        height: 120px;
        font-size: 48px;
    }

    .process-card {
        padding: 40px 32px;
    }
}

@media (min-width: 1280px) {
    .job-cards-grid {
        gap: 36px;
    }
}

/* ===============================================
   Leadership Page Styles
   =============================================== */

.leadership-section {
    padding: 50px 16px;
    background: linear-gradient(180deg, #e6f9f9 0%, #ffffff 100%);
}

.leadership-container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    color: #0a2540;
    text-align: center;
    margin-bottom: 12px;
}

.section-subtitle {
    color: #008B8B;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 40px;
}

.leader-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 60px;
    padding: 30px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 139, 139, 0.1);
}

.leader-card.reverse {
    direction: rtl;
}

.leader-card.reverse .leader-content,
.leader-card.reverse .leader-image-wrapper {
    direction: ltr;
}

.leader-image-wrapper {
    position: relative;
}

.leader-image {
    width: 100%;
    max-width: 400px;
    height: 500px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 139, 139, 0.18);
    object-fit: cover;
}

.leader-image-placeholder {
    width: 100%;
    max-width: 400px;
    height: 500px;
    background: linear-gradient(135deg, #008B8B 0%, #00aaaa 100%);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 139, 139, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 80px;
}

.leader-content {
    text-align: left;
}

.leader-name {
    font-size: 28px;
    font-weight: 800;
    color: #0a2540;
    margin-bottom: 8px;
}

.leader-designation {
    font-size: 18px;
    font-weight: 700;
    color: #008B8B;
    margin-bottom: 20px;
}

.leader-bio {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 24px;
}

.summary-sidebar {
    background: linear-gradient(135deg, #e6f9f9 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid #008B8B;
}

.summary-item {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.summary-item strong {
    color: #0a2540;
    display: block;
    margin-bottom: 2px;
}

@media (min-width: 768px) {
    .leadership-section {
        padding: 70px 40px;
    }

    .leader-card {
        grid-template-columns: 1fr 1fr;
        padding: 40px;
        margin-bottom: 70px;
    }
}

/* ===============================================
   Contact Page Styles
   =============================================== */

/* Contact Form Styles */
.contact-form-wrapper {
    background: white;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 8px 30px rgba(0, 139, 139, 0.12);
    border: 1px solid rgba(0, 139, 139, 0.08);
}

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

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #0a2540;
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(0, 139, 139, 0.2);
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    background: #f9fdfd;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #008B8B;
    background: white;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #008B8B 0%, #00aaaa 100%);
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 139, 139, 0.3);
}

/* Contact Info Tab Content Styles */
.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 139, 139, 0.1);
}

.contact-info-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-info-card:first-child {
    padding-top: 0;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e6f9f9 0%, #ffffff 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid rgba(0, 139, 139, 0.2);
}

.contact-info-icon i {
    font-size: 22px;
    color: #008B8B;
}

.contact-info-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0a2540;
    margin-bottom: 6px;
}

.contact-info-content p,
.contact-info-content a {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin: 0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-info-content a:hover {
    color: #008B8B;
}

/* Map Section Styles */
.map-section {
    padding: 60px 18px;
    background: white;
}

.map-container {
    max-width: 1100px;
    margin: 0 auto;
}

.map-header {
    text-align: center;
    margin-bottom: 40px;
}

.map-header .section-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #008B8B;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.map-header .section-title {
    font-size: 32px;
    font-weight: 800;
    color: #0a2540;
    margin-bottom: 15px;
}

.map-header .section-text {
    font-size: 16px;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.map-wrapper {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 30px rgba(0, 139, 139, 0.12);
    border: 1px solid rgba(0, 139, 139, 0.08);
}

.map-wrapper iframe {
    border-radius: 12px;
    width: 100%;
    height: 450px;
    border: none;
}

/* Desktop/Tablet styles */
@media (min-width: 768px) {
    .map-section {
        padding: 80px 40px;
    }

    .map-header .section-title {
        font-size: 40px;
    }

    .map-wrapper iframe {
        height: 500px;
    }
}

/* Generic Section Styles for Policy/Service Pages */
.generic-section {
    padding: 60px 16px;
    background: white;
}

@media (min-width: 768px) {
    .generic-section {
        padding: 80px 40px;
    }
}

.generic-section-alt {
    padding: 60px 16px;
    background: linear-gradient(180deg, #e6f9f9 0%, #ffffff 100%);
}

@media (min-width: 768px) {
    .generic-section-alt {
        padding: 80px 40px;
    }
}

/* Package Card Grid */
.packages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: center;
}

@media (min-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

@media (min-width: 1024px) {
    .packages-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

.package-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    width: 328px;
}

@media (min-width: 768px) {
    .package-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }
}

.package-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #f97316;
    color: white;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
}

.package-card img {
    width: 328px;
    height: 244px;
    object-fit: cover;
}

.package-card-content {
    padding: 20px;
}

.package-card-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0a2540;
    margin: 0 0 8px 0;
}

.package-card-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.package-card-content a {
    display: inline-block;
    background: transparent;
    color: #008B8B;
    border: 1px solid #008B8B;
    padding: 8px 28px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Service Cards Grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 22px;
    }
}

.service-card {
    background: linear-gradient(135deg, #f8fdfd 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 28px;
    border: 1px solid rgba(0, 139, 139, 0.12);
    box-shadow: 0 3px 15px rgba(0, 139, 139, 0.06);
    transition: all 0.3s ease;
    cursor: pointer;
}

@media (min-width: 768px) {
    .service-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 25px rgba(0, 139, 139, 0.12);
        border-color: rgba(0, 139, 139, 0.2);
    }
}

.service-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.service-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #008B8B 0%, #00aaaa 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-card-icon i {
    font-size: 26px;
    color: white;
}

.service-card-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0a2540;
    margin: 0 0 2px 0;
}

.service-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

