/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #20B2AA;
    --secondary-color: #2c8f9e;
    --accent-color: #4CAF50;
    --brown-color: #D2691E;
    --dark-color: #1a1a1a;
    --light-color: #f5f5f5;
    --text-color: #333;
    --white: #ffffff;
    --gray: #666;
    --light-gray: #e0e0e0;
    --footer-bg: #1e3a52;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

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

/* Header Styles */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    width: 95px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.navbar {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 15px;
    white-space: nowrap;
}

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

.nav-menu a i {
    font-size: 10px;
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-shrink: 0;
}

.phone-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    white-space: nowrap;
}

.phone-link:hover {
    color: var(--primary-color);
}

.btn-primary {
    background: var(--accent-color);
    color: var(--white);
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 14px;
}

.btn-primary:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-primary i {
    font-size: 12px;
}

.btn-large {
    padding: 15px 30px;
    font-size: 16px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
    padding: 10px 0;
    border-radius: 5px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    color: var(--text-color);
    padding: 12px 20px;
}

.dropdown-menu a:hover {
    background: var(--light-color);
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 800px;
    overflow: hidden;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 95, 122, 0.4) 0%, rgba(44, 143, 158, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: absolute;
    left: 80px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    z-index: 2;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 10;
}

.carousel-btn {
    background: rgba(255,255,255,0.2);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.carousel-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.carousel-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--white);
    width: 30px;
    border-radius: 6px;
}

.hero-watermark {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 5;
}

.watermark-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.watermark-circle i {
    font-size: 20px;
}

/* Section Styles */
section {
    padding: 80px 0;
    position: relative;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(32, 178, 170, 0.3), transparent);
}

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

.section-header h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent-color);
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
    margin-top: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about-section {
    background: var(--light-color);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.lead {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray);
}

/* Projects Section */
.projects-header-btn {
    text-align: center;
    margin-bottom: 40px;
}

.btn-projects {
    background: var(--light-color);
    color: var(--primary-color);
    padding: 12px 30px;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 14px;
    text-transform: uppercase;
}

.btn-projects:hover {
    background: var(--primary-color);
    color: var(--white);
}

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

.project-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.project-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.project-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

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

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-content {
    padding: 25px;
}

.project-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
}

.read-more {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.read-more:hover {
    gap: 12px;
}

.read-more i {
    font-size: 12px;
}

/* Process Section */
.process-section {
    background: linear-gradient(135deg, #e8f4f8 0%, #f0f8f0 100%);
    padding: 100px 0;
}

.process-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: start;
}

.process-header-left h2 {
    font-size: 42px;
    color: var(--text-color);
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.process-header-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.process-header-right p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin: 0;
}

.process-steps {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.process-step {
    background: var(--white);
    padding: 50px 35px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.step-number {
    position: absolute;
    top: -25px;
    left: 35px;
    background: var(--accent-color);
    color: var(--white);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.process-step h3 {
    color: var(--primary-color);
    margin: 30px 0 20px 0;
    font-size: 24px;
    font-weight: 700;
}

.process-step ul {
    list-style: none;
    padding: 0;
}

.process-step ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--gray);
    font-size: 15px;
    line-height: 1.6;
}

.process-step ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 20px;
}

.process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 32px;
    margin-top: 50px;
    flex-shrink: 0;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    border-color: var(--primary-color);
}

.service-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 20px;
}

.service-card p {
    color: var(--gray);
    font-size: 14px;
}

/* Contact Section */
.contact-section {
    background: var(--light-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-item h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
}

.contact-item a {
    color: var(--gray);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(32, 178, 170, 0.1);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--footer-bg);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo .logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.footer-logo .logo-text h3 {
    color: var(--white);
    font-size: 20px;
    margin: 0;
    line-height: 1.2;
}

.footer-logo .logo-tagline {
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    margin: 0;
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-section p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
}

.footer-bottom p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
}

.footer-legal a:hover {
    color: var(--white);
}

.scroll-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.scroll-to-top:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .process-header {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
}

@media (max-width: 768px) {
    .header-top {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .logo-icon {
        width: 70px;
        height: 60px;
    }
    
    .navbar {
        order: 3;
        width: 100%;
        display: none;
    }
    
    .navbar.active {
        display: block;
    }
    
    .nav-menu {
        flex-direction: column;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        border-radius: 5px;
        margin-top: 10px;
        width: 100%;
    }
    
    .header-contact {
        order: 2;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .mobile-menu-toggle {
        display: flex;
        order: 2;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--light-color);
        display: none;
        margin-top: 5px;
        border-radius: 5px;
    }

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

    .hero {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-content {
        left: 30px;
        right: 30px;
        max-width: none;
    }

    .hero-content h1 {
        font-size: 36px;
    }
    
    .watermark-circle {
        width: 80px;
        height: 80px;
        font-size: 8px;
    }

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

    .process-header-left h2 {
        font-size: 32px;
    }
    
    .process-step {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding-bottom: 60px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

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

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

    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-header-left h2 {
        font-size: 24px;
    }
}

/* Page Hero Styles */
.page-hero {
    position: relative;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 300"><path d="M0,150 Q300,100 600,150 T1200,150 L1200,300 L0,300 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: cover;
    opacity: 0.3;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.page-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb span {
    color: rgba(255,255,255,0.7);
}

/* Page Content Styles */
.page-content {
    padding: 80px 0;
    background: var(--white);
}

.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.content-main {
    background: var(--white);
}

.content-section {
    margin-bottom: 60px;
}

.content-section h2 {
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.content-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 15px;
}

/* Expertise Grid */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.expertise-item {
    background: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.expertise-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
    background: var(--white);
}

.expertise-item i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.expertise-item h3 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 10px;
}

.expertise-item p {
    color: var(--gray);
    font-size: 14px;
    margin: 0;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.feature-list li {
    padding: 15px 0;
    padding-left: 40px;
    position: relative;
    color: var(--gray);
    font-size: 16px;
    line-height: 1.6;
}

.feature-list li i {
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 20px;
    top: 15px;
}

/* Director Profile */
.director-profile {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: start;
}

.director-image {
    position: sticky;
    top: 100px;
}

.director-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 80px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.director-profile:hover .director-placeholder {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.director-info h2 {
    color: var(--primary-color);
    font-size: 36px;
    margin-bottom: 10px;
}

.director-title {
    color: var(--accent-color);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
}

.director-details {
    margin-bottom: 40px;
}

.director-details p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 15px;
}

.director-achievements h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 20px;
}

.achievement-list {
    list-style: none;
    padding: 0;
}

.achievement-list li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    color: var(--gray);
    font-size: 16px;
}

.achievement-list li i {
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 18px;
}

/* Team Section */
.team-header {
    text-align: center;
    margin-bottom: 60px;
}

.team-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.team-header h2 {
    color: var(--text-color);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
}

.team-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.team-logo .logo-icon {
    width: 50px;
    height: 50px;
}

.team-logo .logo-text h3 {
    color: var(--text-color);
    font-size: 24px;
    margin: 0;
}

.team-logo .logo-tagline {
    color: var(--gray);
    font-size: 14px;
    margin: 0;
}

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

.team-member {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
}

.team-member:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.team-member:hover .photo-placeholder {
    transform: scale(1.1);
    transition: transform 0.4s ease;
}

.member-photo {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--light-color), #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-placeholder {
    width: 80%;
    height: 80%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 60px;
}

.member-info {
    padding: 25px;
}

.member-info h3 {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 700;
}

.member-role {
    color: var(--accent-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.member-qualification {
    color: var(--gray);
    font-size: 14px;
    margin: 0;
}

/* Vision & Mission */
.vision-mission-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.vision-mission-left {
    position: sticky;
    top: 100px;
}

.vision-mission-box {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 50px 40px;
    border-radius: 15px;
    color: var(--white);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.vm-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.vm-logo .logo-icon {
    width: 40px;
    height: 40px;
}

.vm-logo .logo-text h3 {
    color: var(--white);
    font-size: 20px;
    margin: 0;
}

.vm-logo .logo-tagline {
    color: rgba(255,255,255,0.8);
    font-size: 12px;
    margin: 0;
}

.vision-mission-box h2 {
    color: var(--white);
    font-size: 36px;
    margin-bottom: 15px;
}

.vm-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.progress-box {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.progress-box h4 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 25px;
}

.progress-item {
    margin-bottom: 25px;
}

.progress-item:last-child {
    margin-bottom: 0;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
}

.progress-value {
    color: var(--accent-color);
}

.progress-bar {
    height: 8px;
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), #66bb6a);
    border-radius: 4px;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: progressGlow 2s ease-in-out infinite;
}

@keyframes progressGlow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
    }
    50% {
        box-shadow: 0 0 15px rgba(76, 175, 80, 0.8);
    }
}

.vision-mission-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.vm-intro {
    background: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.vm-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0;
    font-style: italic;
}

.vm-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.vm-card {
    background: var(--white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-top: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

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

.vm-card h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.vm-card > p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 20px;
}

.vm-card ul {
    list-style: none;
    padding: 0;
}

.vm-card ul li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--gray);
    font-size: 15px;
    line-height: 1.6;
}

.vm-card ul li i {
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 14px;
    top: 14px;
}

.vision-card {
    border-top-color: var(--accent-color);
}

/* Responsive for Subpages */
@media (max-width: 1024px) {
    .vision-mission-wrapper {
        grid-template-columns: 1fr;
    }
    
    .vision-mission-left {
        position: static;
    }
    
    .director-profile {
        grid-template-columns: 1fr;
    }
    
    .director-image {
        position: static;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .page-hero-content h1 {
        font-size: 36px;
    }
    
    .team-header h2 {
        font-size: 32px;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .vision-mission-box {
        padding: 40px 30px;
    }
    
    .vision-mission-box h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        height: 250px;
    }
    
    .page-hero-content h1 {
        font-size: 28px;
    }
    
    .content-section h2 {
        font-size: 24px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
}
