* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* ===== HEADER & NAVIGATION ===== */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0;
    margin: 0;
}

.header-top {
    background-color: #f8f9fa;
    padding: 12px 20px;
    font-size: 13px;
}

.header-top .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-links {
    display: flex;
    gap: 20px;
}

.header-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.header-links a:hover {
    color: #1abc9c;
}

.header-phone {
    color: #1abc9c;
    font-weight: bold;
}



.navbar {
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    line-height: 1;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #1abc9c;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-shrink: 0;
    padding: 0;
    margin: 0;
    line-height: 1;
}

.logo-img {
    height: 150px;
    width: auto;
    display: block;
    margin: 0;
    padding: 0;
    line-height: 1;
}

.logo span {
    color: #333;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    flex: 1;
    justify-content: center;
    padding: 30px 20px;
    align-items: center;
}

nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 18px;
    letter-spacing: 1px;
}

nav a:hover {
    color: #1abc9c;
}

.search-box {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    padding: 30px 20px;
    align-items: center;
}

.search-box input {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 200px;
    font-size: 16px;
}

.search-box input::placeholder {
    font-size: 16px;
}
.search-box button {
    background-color: #1abc9c;
    color: white;
    border: none;
    padding: 12px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.search-box button:hover {
    background-color: #16a085;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(90deg, rgba(26, 188, 156, 0.6) 0%, rgba(26, 188, 156, 0.3) 50%, transparent 100%), url('website-images/hero-background.jpg') center/cover no-repeat;
    background-size: cover;
    color: white;
    padding: 100px 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 600px;
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-btn {
    background-color: #1abc9c;
    color: white;
    padding: 12px 30px;
    border: 2px dashed white;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
}

.hero-btn:hover {
    background-color: #16a085;
    transform: translateY(-2px);
}

.hero-image {
    display: none;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #1abc9c;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.service-icon-img {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    display: block;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}

/* ===== APPOINTMENT SECTION ===== */
.appointment-section {
    background: linear-gradient(135deg, rgba(26, 188, 156, 0.9) 0%, rgba(22, 160, 133, 0.9) 100%), url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=1200&h=400&fit=crop') center/cover;
    color: white;
    padding: 80px 20px;
}

.appointment-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.appointment-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.appointment-content p {
    font-size: 16px;
    opacity: 0.95;
    margin-bottom: 20px;
}

.appointment-form {
    background: white;
    padding: 30px;
    border-radius: 8px;
    color: #333;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 13px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #1abc9c;
    box-shadow: 0 0 5px rgba(26, 188, 156, 0.3);
}

.form-group button {
    width: 100%;
    padding: 12px;
    background-color: #1abc9c;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group button:hover {
    background-color: #16a085;
}

/* ===== DEPARTMENTS SECTION ===== */
.departments-section {
    padding: 80px 20px;
    background-color: white;
}

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

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.department-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.department-card:hover {
    background-color: #1abc9c;
    color: white;
    border-color: #1abc9c;
}

.department-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.department-card a {
    color: #1abc9c;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
}

.department-card:hover a {
    color: white;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.faq-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    border-left: 4px solid #1abc9c;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-item h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 16px;
}

.faq-item p {
    color: #666;
    font-size: 14px;
    display: none;
    line-height: 1.8;
}

.faq-item.active p {
    display: block;
}

/* ===== NEWS SECTION ===== */
.news-section {
    padding: 80px 20px;
    background-color: white;
}

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

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.news-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.news-card:hover {
    transform: translateY(-10px);
}

.news-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #1abc9c, #16a085);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.news-content {
    padding: 20px;
}

.news-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.news-meta {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
}

.news-meta span {
    margin-right: 15px;
}

.news-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.news-link {
    color: #1abc9c;
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
}

.news-link:hover {
    text-decoration: underline;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 8px;
}

.contact-form .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    min-height: 120px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.contact-info-item p {
    color: #666;
    font-size: 14px;
}

/* ===== FOOTER ===== */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 50px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 15px;
    color: #1abc9c;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #1abc9c;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    color: #999;
    font-size: 13px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    nav ul {
        gap: 15px;
        font-size: 12px;
    }

    .hero {
        flex-direction: column;
        padding: 50px 20px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 32px;
    }

    .appointment-container {
        grid-template-columns: 1fr;
    }

    .faq-container {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .header-top-content {
        flex-direction: column;
        gap: 10px;
    }

    .navbar {
        flex-wrap: wrap;
        gap: 20px;
    }

    nav ul {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
    }
}


/* ===== ABOUT US PAGE ===== */
.about-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
    min-height: 100vh;
}

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

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-header h1 {
    font-size: 48px;
    color: #1abc9c;
    margin-bottom: 10px;
    font-weight: 700;
}

.about-header h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-content {
    display: block;
    margin-bottom: 80px;
    background: white;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.about-text {
    width: 100%;
}

.about-intro {
    font-size: 20px;
    color: #1abc9c;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-values {
    margin-bottom: 30px;
}

.about-values h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-values ul {
    list-style: none;
    padding: 0;
}

.about-values li {
    font-size: 15px;
    color: #666;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.about-values li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1abc9c;
    font-weight: bold;
}

.about-mission {
    background: #f0f9f8;
    padding: 20px;
    border-left: 4px solid #1abc9c;
    border-radius: 4px;
}

.about-mission h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.about-mission p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

.about-image {
    text-align: center;
    margin-top: 40px;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.stat-card {
    background: white;
    padding: 40px 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.stat-card h4 {
    font-size: 36px;
    color: #1abc9c;
    margin-bottom: 10px;
    font-weight: 700;
}

.stat-card p {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }

    .about-header h1 {
        font-size: 36px;
    }

    .about-header h2 {
        font-size: 28px;
    }

    .about-intro {
        font-size: 18px;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ===== ABOUT US MAIN SECTION (On Home Page) ===== */
.about-us-main {
    padding: 80px 20px;
    background: white;
}

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

.about-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-us-text {
    flex: 1;
}

.about-us-text h3 {
    font-size: 32px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.about-intro {
    font-size: 18px;
    color: #1abc9c;
    font-weight: 600;
    margin-bottom: 15px;
}

.about-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-btn {
    display: inline-block;
    background-color: #1abc9c;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.about-btn:hover {
    background-color: #16a085;
}

.about-us-image {
    flex: 1;
    text-align: center;
}

.about-us-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .about-us-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-us-text h3 {
        font-size: 24px;
    }

    .about-intro {
        font-size: 16px;
    }

    .about-desc {
        font-size: 14px;
    }
}


/* ===== AWARDS SECTION ===== */
.awards-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.awards-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.award-card {
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.award-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.award-icon img {
    max-width: 80px;
    height: 80px;
    object-fit: contain;
}

.award-card h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.award-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .awards-container {
        grid-template-columns: 1fr;
    }

    .award-card {
        padding: 30px 20px;
    }

    .award-card h3 {
        font-size: 16px;
    }

    .award-card p {
        font-size: 13px;
    }
}


/* ===== OUR VALUES SECTION ===== */
.values-section {
    padding: 80px 20px;
    background: white;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-items: center;
}

.values-container .value-card:nth-child(4),
.values-container .value-card:nth-child(5) {
    grid-column: auto;
}

@media (max-width: 1024px) {
    .values-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .values-container {
        grid-template-columns: 1fr;
    }
}

.value-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.value-icon-img {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: block;
}

.value-card h3 {
    font-size: 20px;
    color: #1a3a52;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .values-container {
        grid-template-columns: 1fr;
    }

    .value-card {
        padding: 30px 20px;
    }

    .value-card h3 {
        font-size: 18px;
    }

    .value-card p {
        font-size: 13px;
    }
}


/* ============================================
   DEPARTMENTS PAGE STYLES
   ============================================ */

.departments-hero {
    background: linear-gradient(135deg, rgba(26, 188, 156, 0.8) 0%, rgba(22, 160, 133, 0.8) 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.departments-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: bold;
}

.departments-hero p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.departments-content {
    padding: 60px 20px;
}

.department-detail {
    margin-bottom: 80px;
    scroll-margin-top: 100px;
}

.department-header {
    border-bottom: 3px solid #1abc9c;
    padding-bottom: 20px;
    margin-bottom: 40px;
}

.department-header h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin: 0;
}

.department-body {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

.department-description h3 {
    font-size: 24px;
    color: #1abc9c;
    margin-bottom: 15px;
}

.department-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

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

.info-box {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #1abc9c;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.info-box h4 {
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 15px;
    margin-top: 0;
}

.info-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-box li {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.info-box li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1abc9c;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .department-body {
        grid-template-columns: 1fr;
    }
    
    .department-info {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .departments-hero h1 {
        font-size: 36px;
    }
}

@media (max-width: 640px) {
    .department-header h2 {
        font-size: 28px;
    }
    
    .department-description h3 {
        font-size: 20px;
    }
    
    .department-info {
        grid-template-columns: 1fr;
    }
    
    .info-box {
        padding: 20px;
    }
    
    .departments-hero {
        padding: 60px 20px;
    }
    
    .departments-hero h1 {
        font-size: 28px;
    }
    
    .departments-hero p {
        font-size: 16px;
    }
}

/* ===== FOOTER ===== */
footer {
    background-color: #1a1a1a;
    color: white;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #1abc9c;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    font-size: 14px;
    line-height: 1.8;
    text-decoration: none;
}

.footer-section a:hover {
    color: #1abc9c;
}

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

.footer-section li {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    color: #999;
    font-size: 13px;
}

/* ===== ABOUT US SECTION ===== */
.about-section {
    padding: 80px 20px;
    background-color: white;
}

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

.about-content h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
}

/* ===== VALUES SECTION ===== */
.values-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

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

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

.value-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon-img {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    display: block;
}

.value-card h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

/* ===== AWARDS SECTION ===== */
.awards-section {
    padding: 80px 20px;
    background-color: white;
}

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

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.award-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.award-card:hover {
    transform: translateY(-10px);
}

.award-icon-img {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    display: block;
}

.award-card h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
}

.award-card p {
    font-size: 13px;
    line-height: 1.8;
    color: #666;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 8px;
}

.contact-form h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
}

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

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
}

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

.contact-form button {
    width: 100%;
    padding: 12px;
    background-color: #1abc9c;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #16a085;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.contact-item {
    padding: 20px;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #1abc9c;
}

.contact-item h4 {
    color: #1abc9c;
    margin-bottom: 10px;
}

.contact-item p {
    color: #666;
    font-size: 14px;
}


/* ===== ABOUT US PAGE ===== */
.about-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
    min-height: 100vh;
}

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

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

/* ===== RESPONSIVE - ABOUT PAGE ===== */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }

    .about-header h1 {
        font-size: 36px;
    }

    .about-header h2 {
        font-size: 28px;
    }

    .about-intro {
        font-size: 18px;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ===== CAREERS PAGE ===== */
.careers-hero {
    background: linear-gradient(90deg, rgba(26, 188, 156, 0.6) 0%, rgba(26, 188, 156, 0.3) 50%, transparent 100%), url('website-images/hero-background.jpg') center/cover no-repeat;
    background-size: cover;
    color: white;
    padding: 100px 20px;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.careers-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
}

.careers-hero p {
    font-size: 24px;
    opacity: 0.95;
}

.careers-intro {
    padding: 80px 20px;
    background-color: white;
}

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

.careers-intro h2 {
    font-size: 36px;
    color: #333;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.benefit-card:hover {
    background-color: #1abc9c;
    color: white;
    border-color: #1abc9c;
    transform: translateY(-5px);
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.benefit-card:hover h3 {
    color: white;
}

.benefit-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

.benefit-card:hover p {
    color: white;
}

/* ===== JOB LISTINGS SECTION ===== */
.job-listings {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

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

.job-listings h2 {
    font-size: 36px;
    color: #333;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.job-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border-left: 4px solid #1abc9c;
}

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

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}

.job-header h3 {
    font-size: 24px;
    color: #333;
    margin: 0;
    font-weight: 700;
}

.job-type {
    background-color: #1abc9c;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.job-details {
    margin-bottom: 25px;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 4px;
}

.job-details p {
    margin: 8px 0;
    font-size: 14px;
    color: #666;
}

.job-details strong {
    color: #333;
    font-weight: 600;
}

.job-description {
    margin-top: 25px;
}

.job-description h4 {
    font-size: 16px;
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.job-description p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.job-description ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.job-description li {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.6;
}

.apply-btn {
    display: inline-block;
    background-color: #1abc9c;
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
    margin-top: 20px;
    cursor: pointer;
    border: none;
    font-size: 14px;
}

.apply-btn:hover {
    background-color: #16a085;
}

/* ===== RESPONSIVE - CAREERS PAGE ===== */
@media (max-width: 768px) {
    .careers-hero h1 {
        font-size: 32px;
    }

    .careers-hero p {
        font-size: 18px;
    }

    .job-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .job-card {
        padding: 25px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}


/* ===== ABOUT PAGE SECTION ===== */
.about-page-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
    min-height: 100vh;
}

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

.about-page-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-page-header h1 {
    font-size: 48px;
    color: #1abc9c;
    margin-bottom: 10px;
    font-weight: 700;
}

.about-page-header h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-page-content {
    background: white;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 80px;
}

.about-page-intro {
    font-size: 20px;
    color: #1abc9c;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-page-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-page-values {
    margin-bottom: 30px;
}

.about-page-values h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-page-values ul {
    list-style: none;
    padding: 0;
}

.about-page-values li {
    font-size: 15px;
    color: #666;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.about-page-values li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1abc9c;
    font-weight: bold;
}

.about-page-mission {
    background: #f0f9f8;
    padding: 20px;
    border-left: 4px solid #1abc9c;
    border-radius: 4px;
    margin-bottom: 30px;
}

.about-page-mission h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.about-page-mission p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

.about-page-image {
    text-align: center;
    margin-top: 40px;
}

.about-page-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.about-page-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.about-stat-card {
    background: white;
    padding: 40px 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.about-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.about-stat-card h4 {
    font-size: 36px;
    color: #1abc9c;
    margin-bottom: 10px;
    font-weight: 700;
}

.about-stat-card p {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

/* ===== RESPONSIVE - ABOUT PAGE ===== */
@media (max-width: 768px) {
    .about-page-section {
        padding: 40px 20px;
    }

    .about-page-header h1 {
        font-size: 36px;
    }

    .about-page-header h2 {
        font-size: 28px;
    }

    .about-page-content {
        padding: 30px;
    }

    .about-page-intro {
        font-size: 18px;
    }

    .about-page-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ===== RESPONSIVE DESIGN - MEDIA QUERIES ===== */

/* TABLETS (768px and below) */
@media (max-width: 768px) {
    /* HEADER & NAVIGATION */
    .navbar {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
        padding: 15px 0;
        justify-content: flex-start;
    }

    nav a {
        font-size: 14px;
        letter-spacing: 0.5px;
    }

    .search-box {
        width: 100%;
        padding: 10px 0;
    }

    .search-box input {
        width: 100%;
    }

    .logo-img {
        height: 100px;
    }

    /* HERO SECTION */
    .hero {
        padding: 60px 20px;
        min-height: 400px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 14px;
    }

    /* SERVICES SECTION */
    .services-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .service-card {
        padding: 20px;
    }

    .service-icon-img {
        width: 60px;
        height: 60px;
    }

    .service-card h3 {
        font-size: 16px;
    }

    .service-card p {
        font-size: 12px;
    }

    /* APPOINTMENT SECTION */
    .appointment-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .appointment-content h2 {
        font-size: 24px;
    }

    .appointment-form {
        padding: 20px;
    }

    /* DEPARTMENTS SECTION */
    .departments-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }

    .department-card {
        padding: 15px;
    }

    .department-card h3 {
        font-size: 14px;
    }

    /* VALUES SECTION */
    .values-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .value-card {
        padding: 20px;
    }

    .value-icon-img {
        width: 50px;
        height: 50px;
    }

    /* ABOUT US SECTION */
    .about-us-container {
        grid-template-columns: 1fr;
    }

    .about-us-text {
        order: 2;
    }

    .about-us-image {
        order: 1;
    }

    .about-us-image img {
        max-width: 100%;
    }

    /* AWARDS SECTION */
    .awards-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .award-card {
        padding: 20px;
    }

    /* FOOTER */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-section h3 {
        font-size: 16px;
    }

    .footer-section p {
        font-size: 12px;
    }
}

/* MOBILE (480px and below) */
@media (max-width: 480px) {
    /* HEADER & NAVIGATION */
    .navbar {
        padding: 10px;
    }

    nav ul {
        gap: 5px;
        padding: 10px 0;
    }

    nav a {
        font-size: 12px;
        letter-spacing: 0px;
    }

    .search-box input {
        width: 100%;
        padding: 8px;
        font-size: 12px;
    }

    .search-box button {
        padding: 8px 12px;
        font-size: 12px;
    }

    .logo-img {
        height: 70px;
    }

    /* HERO SECTION */
    .hero {
        padding: 40px 15px;
        min-height: 300px;
    }

    .hero h1 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .hero-btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    /* SECTION TITLES */
    .section-title h2 {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 11px;
    }

    /* SERVICES SECTION */
    .services-section {
        padding: 40px 15px;
    }

    .services-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-card {
        padding: 15px;
    }

    .service-icon-img {
        width: 50px;
        height: 50px;
    }

    .service-card h3 {
        font-size: 14px;
    }

    .service-card p {
        font-size: 11px;
    }

    /* APPOINTMENT SECTION */
    .appointment-section {
        padding: 40px 15px;
    }

    .appointment-content h2 {
        font-size: 20px;
    }

    .appointment-content p {
        font-size: 12px;
    }

    .appointment-form {
        padding: 15px;
    }

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

    .form-group label {
        font-size: 11px;
    }

    .form-group input,
    .form-group select {
        padding: 8px;
        font-size: 12px;
    }

    .form-group button {
        padding: 10px;
        font-size: 11px;
    }

    /* DEPARTMENTS SECTION */
    .departments-section {
        padding: 40px 15px;
    }

    .departments-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .department-card {
        padding: 12px;
    }

    .department-card h3 {
        font-size: 12px;
    }

    .department-card a {
        font-size: 10px;
    }

    /* VALUES SECTION */
    .values-section {
        padding: 40px 15px;
    }

    .values-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .value-card {
        padding: 15px;
    }

    .value-icon-img {
        width: 40px;
        height: 40px;
    }

    .value-card h3 {
        font-size: 14px;
    }

    .value-card p {
        font-size: 11px;
    }

    /* AWARDS SECTION */
    .awards-section {
        padding: 40px 15px;
    }

    .awards-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .award-card {
        padding: 15px;
    }

    .award-icon {
        width: 60px;
        height: 60px;
    }

    .award-card h3 {
        font-size: 12px;
    }

    /* CONTACT SECTION */
    .contact-section {
        padding: 40px 15px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .info-item h3 {
        font-size: 14px;
    }

    .info-item p {
        font-size: 11px;
    }

    /* FOOTER */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-section h3 {
        font-size: 14px;
    }

    .footer-section p {
        font-size: 11px;
    }

    .footer-bottom p {
        font-size: 10px;
    }
}

/* EXTRA SMALL DEVICES (320px and below) */
@media (max-width: 320px) {
    .logo-img {
        height: 50px;
    }

    nav a {
        font-size: 10px;
    }

    .hero h1 {
        font-size: 18px;
    }

    .hero p {
        font-size: 10px;
    }

    .section-title h2 {
        font-size: 18px;
    }

    .service-card h3 {
        font-size: 12px;
    }

    .service-card p {
        font-size: 10px;
    }
}


/* ===== APPLY PAGE SECTION ===== */
.apply-page-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
    min-height: 100vh;
}

.apply-container {
    max-width: 800px;
    margin: 0 auto;
}

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

.apply-page-header h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 10px;
}

.apply-page-header p {
    font-size: 16px;
    color: #666;
}

.apply-job-info {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.job-position-display {
    text-align: center;
}

.job-position-display h2 {
    font-size: 24px;
    color: #1abc9c;
    margin-bottom: 10px;
}

.job-position-display p {
    font-size: 14px;
    color: #666;
}

.apply-form-container {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.apply-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-fieldset {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 25px;
    background-color: #fafafa;
}

.form-fieldset legend {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    padding: 0 10px;
    margin-left: -10px;
}

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

.apply-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.apply-form .form-group label {
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.apply-form .form-group input,
.apply-form .form-group select,
.apply-form .form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.apply-form .form-group input:focus,
.apply-form .form-group select:focus,
.apply-form .form-group textarea:focus {
    outline: none;
    border-color: #1abc9c;
    box-shadow: 0 0 5px rgba(26, 188, 156, 0.3);
}

.apply-form .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.apply-form .form-group input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
}

.apply-form .form-group label input[type="checkbox"] {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.btn-submit {
    background-color: #1abc9c;
    color: white;
    padding: 14px 40px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit:hover {
    background-color: #16a085;
}

.btn-cancel {
    background-color: #ddd;
    color: #333;
    padding: 14px 40px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-cancel:hover {
    background-color: #ccc;
}

/* Apply button styling in careers page */
.apply-btn {
    display: inline-block;
    background-color: #1abc9c;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 15px;
    font-size: 14px;
}

.apply-btn:hover {
    background-color: #16a085;
}

/* Responsive Apply Page */
@media (max-width: 768px) {
    .apply-form-container {
        padding: 20px;
    }

    .form-fieldset {
        padding: 15px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
    }

    .btn-submit,
    .btn-cancel {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .apply-page-section {
        padding: 30px 15px;
    }

    .apply-form-container {
        padding: 15px;
    }

    .apply-page-header h1 {
        font-size: 24px;
    }

    .job-position-display h2 {
        font-size: 18px;
    }

    .form-fieldset {
        padding: 12px;
    }

    .form-fieldset legend {
        font-size: 14px;
    }

    .apply-form .form-group label {
        font-size: 12px;
    }

    .apply-form .form-group input,
    .apply-form .form-group select,
    .apply-form .form-group textarea {
        padding: 10px;
        font-size: 12px;
    }

    .btn-submit,
    .btn-cancel {
        padding: 12px 20px;
        font-size: 12px;
    }
}


/* ========================================
   REVIEWS SECTION
   ======================================== */
.reviews-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.reviews-section .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.reviews-section .section-title h2 {
    font-size: 48px;
    color: #1e3a5f;
    margin-bottom: 10px;
}

.reviews-section .section-subtitle {
    font-size: 16px;
    color: #1abc9c;
    letter-spacing: 2px;
    font-weight: 600;
}

.reviews-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.reviews-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.reviewer-item {
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.reviewer-item:hover {
    transform: translateX(10px);
}

.reviewer-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-info h4 {
    font-size: 16px;
    color: #1e3a5f;
    margin: 0;
    font-weight: 600;
}

.reviewer-info p {
    font-size: 14px;
    color: #666;
    margin: 5px 0 0 0;
}

.reviews-timeline {
    flex: 0.3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    position: relative;
}

.reviews-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background-color: #1abc9c;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #e0e0e0;
    border: 3px solid white;
    position: relative;
    z-index: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.timeline-dot.active {
    background-color: #1abc9c;
    width: 20px;
    height: 20px;
}

.timeline-dot:hover {
    background-color: #1abc9c;
}

.reviews-right {
    flex: 1;
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.review-quote {
    font-size: 48px;
    color: #1abc9c;
    margin-bottom: 20px;
    line-height: 1;
}

.review-text {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

.review-stars {
    display: flex;
    gap: 8px;
}

.review-stars .star {
    font-size: 20px;
    color: #1abc9c;
}

/* Responsive Design for Reviews */
@media (max-width: 1024px) {
    .reviews-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .reviews-timeline {
        flex-direction: row;
        width: 100%;
        justify-content: center;
    }
    
    .reviews-timeline::before {
        width: 100%;
        height: 2px;
        top: 50%;
        left: 0;
        right: 0;
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 60px 20px;
    }
    
    .reviews-section .section-title h2 {
        font-size: 36px;
    }
    
    .reviews-left {
        gap: 20px;
    }
    
    .reviewer-item {
        gap: 15px;
    }
    
    .reviewer-avatar {
        width: 70px;
        height: 70px;
    }
    
    .reviewer-info h4 {
        font-size: 14px;
    }
    
    .reviews-right {
        padding: 30px;
    }
    
    .review-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .reviews-section {
        padding: 40px 15px;
    }
    
    .reviews-section .section-title h2 {
        font-size: 28px;
    }
    
    .reviews-container {
        gap: 20px;
    }
    
    .reviewer-avatar {
        width: 60px;
        height: 60px;
    }
    
    .reviewer-info h4 {
        font-size: 12px;
    }
    
    .reviewer-info p {
        font-size: 12px;
    }
    
    .reviews-right {
        padding: 20px;
    }
    
    .review-quote {
        font-size: 36px;
    }
    
    .review-text {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .review-stars .star {
        font-size: 16px;
    }
}


/* ========================================
   WORKERS PAGE STYLING
   ======================================== */

.workers-hero {
    background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.workers-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
}

.workers-hero p {
    font-size: 18px;
    opacity: 0.9;
}

.workers-filter-section {
    padding: 40px 20px;
    background-color: #f8f9fa;
    text-align: center;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid #1abc9c;
    background-color: white;
    color: #1abc9c;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #1abc9c;
    color: white;
}

.workers-section {
    padding: 60px 20px;
    background-color: white;
}

.workers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.worker-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.worker-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.worker-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.worker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.worker-card:hover .worker-image img {
    transform: scale(1.05);
}

.worker-info {
    padding: 25px;
}

.worker-info h3 {
    font-size: 18px;
    color: #1e3a5f;
    margin: 0 0 8px 0;
    font-weight: 700;
}

.worker-role {
    font-size: 14px;
    color: #1abc9c;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.worker-department {
    font-size: 12px;
    color: #999;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.worker-bio {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

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

.worker-contact a {
    flex: 1;
    padding: 8px 12px;
    background-color: #f0f0f0;
    color: #1abc9c;
    text-decoration: none;
    border-radius: 4px;
    font-size: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.worker-contact a:hover {
    background-color: #1abc9c;
    color: white;
}

/* Hide workers based on filter */
.worker-card.hidden {
    display: none;
}

/* Responsive Design for Workers Page */
@media (max-width: 1024px) {
    .workers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .workers-hero h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .workers-hero {
        padding: 60px 20px;
    }
    
    .workers-hero h1 {
        font-size: 28px;
    }
    
    .workers-hero p {
        font-size: 16px;
    }
    
    .workers-section {
        padding: 40px 20px;
    }
    
    .workers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .filter-buttons {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 8px 20px;
        font-size: 12px;
    }
    
    .worker-image {
        height: 240px;
    }
    
    .worker-info {
        padding: 20px;
    }
    
    .worker-info h3 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .workers-hero {
        padding: 40px 15px;
    }
    
    .workers-hero h1 {
        font-size: 24px;
    }
    
    .workers-hero p {
        font-size: 14px;
    }
    
    .workers-section {
        padding: 30px 15px;
    }
    
    .workers-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .filter-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .filter-btn {
        width: 100%;
        padding: 10px 15px;
    }
    
    .worker-image {
        height: 200px;
    }
    
    .worker-info {
        padding: 15px;
    }
    
    .worker-info h3 {
        font-size: 14px;
    }
    
    .worker-contact {
        flex-direction: column;
    }
    
    .worker-contact a {
        width: 100%;
    }
}


/* ========================================
   TEAM SECTION (HOME PAGE)
   ======================================== */

.team-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.team-section .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.team-section .section-title h2 {
    font-size: 48px;
    color: #1e3a5f;
    margin-bottom: 10px;
}

.team-section .section-subtitle {
    font-size: 16px;
    color: #1abc9c;
    letter-spacing: 2px;
    font-weight: 600;
}

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

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.team-member-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.team-member-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member-card:hover .team-member-image img {
    transform: scale(1.05);
}

.team-member-card h3 {
    font-size: 18px;
    color: #1e3a5f;
    margin: 20px 15px 8px 15px;
    font-weight: 700;
}

.team-member-card p {
    font-size: 14px;
    color: #1abc9c;
    margin: 0 15px 20px 15px;
    font-weight: 600;
}

.team-cta {
    text-align: center;
    padding: 40px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.team-cta p {
    font-size: 18px;
    color: #1e3a5f;
    margin-bottom: 20px;
    font-weight: 600;
}

.team-btn {
    display: inline-block;
    padding: 12px 40px;
    background-color: #1abc9c;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #1abc9c;
}

.team-btn:hover {
    background-color: white;
    color: #1abc9c;
}

/* Responsive Design for Team Section */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 25px;
    }
    
    .team-section .section-title h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 60px 20px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .team-section .section-title h2 {
        font-size: 28px;
    }
    
    .team-member-card h3 {
        font-size: 16px;
    }
    
    .team-cta {
        padding: 30px;
    }
    
    .team-cta p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .team-section {
        padding: 40px 15px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .team-section .section-title h2 {
        font-size: 24px;
    }
    
    .team-member-image {
        height: 180px;
    }
    
    .team-member-card h3 {
        font-size: 14px;
        margin: 15px 10px 5px 10px;
    }
    
    .team-member-card p {
        font-size: 12px;
        margin: 0 10px 15px 10px;
    }
    
    .team-cta {
        padding: 20px;
    }
    
    .team-cta p {
        font-size: 14px;
    }
    
    .team-btn {
        padding: 10px 30px;
        font-size: 14px;
    }
}
