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

/* General Image Optimization */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.img-responsive {
    width: 100%;
    height: auto;
    object-fit: cover;
}

html {
    height: 100%;
    width: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: url('../attached_assets/Modern-laboratory-interior-with-advanced-scientific-equipment-for-medical-research-and-development-678x381.jpg') no-repeat center center fixed;
    background-size: cover;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.92);
    z-index: -1;
}

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

/* Header and Navigation */
.header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #4CAF50;
}

.logo img {
    height: 100px; /* Increased from 90px */
    margin-right: 10px;
}

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

.nav-menu li {
    position: relative;
    margin: 0 1rem;
}

.nav-menu a {
    text-decoration: none;
    color: #4CAF50;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease, transform 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #2d8630;
    text-decoration: underline;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1;
    border-radius: 4px;
    padding: 0.5rem 0;
    top: 100%;
    left: 0;
}

.dropdown-content a {
    color: #333;
    padding: 0.75rem 1rem;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #f8f9fa;
    color: #4CAF50;
}

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #4CAF50;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 90vh;
    padding: 100px 0 0;
    background: url('../attached_assets/DNA-structure-Hands-of-a-scientist-holding-model-of-a-dna-molecule-Medical-technology-and-science-concept-678x381.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    border-bottom: none;
    overflow: hidden;
    transition: all 0.5s ease;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    z-index: 1;
    backdrop-filter: blur(5px);
    transition: all 0.5s ease;
}

.hero > * {
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    margin-right: 2rem;
    padding: 2.5rem;
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    float: left;
    transform: translateY(0);
    transition: transform 0.6s ease, box-shadow 0.6s ease, background-color 0.6s ease;
    position: relative;
    overflow: hidden;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    transform: rotate(45deg);
    transition: all 0.8s ease;
}

.hero-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(76, 175, 80, 0.2);
    background-color: rgba(255, 255, 255, 0.9);
}

.hero-content:hover::before {
    top: 100%;
    left: 100%;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 1rem;
    line-height: 1.2;
    position: relative;
    overflow: hidden;
    display: inline-block;
    background: linear-gradient(90deg, #4CAF50, #2E7D32);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    animation: gradientFlow 8s ease infinite;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    flex: 1;
    text-align: center;
    float: right;
}

.hero-image img {
    max-width: 100%;
    max-height: 500px;
    width: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) translateX(10px) rotate(5deg);
    }
    50% {
        transform: translateY(0) translateX(20px) rotate(0deg);
    }
    75% {
        transform: translateY(20px) translateX(10px) rotate(-5deg);
    }
    100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
}

.floating-particle {
    pointer-events: none;
}

/* Single Hero Image Styles */
.single-hero-image {
    max-width: 100%;
    width: 760px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: brightness(1);
    margin: 0 auto;
    display: block;
}

.single-hero-image:hover {
    transform: scale(1.03);
    filter: brightness(1.1) saturate(1.1);
}

.hero-image img {
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #4CAF50;
    color: white;
}

.btn-primary:hover {
    background: #388E3C;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76,175,80,0.3);
}

.btn-secondary {
    background: transparent;
    color: #4CAF50;
    border: 2px solid #4CAF50;
}

.btn-secondary:hover {
    background: #4CAF50;
    color: white;
    transform: translateY(-2px);
}

/* Features Section */
.features {
    padding: 80px 0 0;
    background: url('../attached_assets/Laboratory-research-and-development-concept-678x381.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    border-top: none;
    border-bottom: none;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1;
}

.features > * {
    position: relative;
    z-index: 2;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 1rem;
    margin-top: 2rem;
    padding: 0;
    border: none;
    border-radius: 0;
    background-color: transparent;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: visible;
    position: relative;
    border: 1px solid rgba(76, 175, 80, 0.2);
    margin: 10px;
    float: left;
    width: 30%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(76, 175, 80, 0.5);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(76,175,80,0.1) 0%, rgba(255,255,255,0) 70%);
    transform: scale(0);
    transition: transform 0.5s ease-out;
    z-index: 0;
    pointer-events: none;
}

.feature-card:hover::before {
    transform: scale(1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.7; }
    50% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

.feature-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: transform 0.5s ease, filter 0.5s ease, box-shadow 0.5s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: none;
    padding: 0;
}

.feature-card img:hover {
    transform: scale(1.05) translateY(-5px);
    filter: brightness(1.1) contrast(1.1);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    animation: colorPulse 3s infinite;
    border: none;
}

@keyframes colorPulse {
    0% { filter: brightness(1.1) contrast(1.1); }
    50% { filter: brightness(1.2) contrast(1.1) saturate(1.2); }
    100% { filter: brightness(1.1) contrast(1.1); }
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #4CAF50;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-link {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.feature-link:hover {
    color: #388E3C;
}

/* Stats Section */
.stats {
    padding: 60px 0;
    background: #4CAF50;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* News Section */
.news {
    padding: 80px 0;
    background: #f8f9fa;
}

.news h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
}

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

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

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

.news-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

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

.news-content {
    padding: 1.5rem;
}

.news-content h3 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.news-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.read-more {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #388E3C;
}

/* Testimonials Section */
.testimonials {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.testimonial-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.testimonial-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 30px;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author h4 {
    margin-bottom: 5px;
    color: #333;
}

.testimonial-author p {
    color: #666;
    font-size: 0.9rem;
}

/* Global Presence Section */
.global-presence {
    padding: 60px 0;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.2rem;
    color: #666;
}

.global-map {
    margin: 30px 0;
    text-align: center;
}

.global-map img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.location-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.location-item {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 250px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.location-item h4 {
    margin-bottom: 10px;
    color: #4CAF50;
}

/* Partnerships Section */
.partnerships-section {
    padding: 60px 0;
    background-color: #f5f9f5;
}

.partnerships-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.partnership-item {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 250px;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.partnership-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.partnership-item h3 {
    margin-bottom: 15px;
    color: #333;
}

/* Recognition Section */
.recognition-section {
    padding: 60px 0;
}

.awards-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.award-item {
    display: flex;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}

.award-year {
    background: #4CAF50;
    color: #fff;
    padding: 20px;
    min-width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
}

.award-content {
    padding: 20px;
}

.award-content h3 {
    margin-bottom: 10px;
    color: #333;
}

.award-content p {
    color: #666;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: #4CAF50;
}

.footer-logo img {
    height: 100px; /* Increased from 90px */
    margin-right: 10px;
}

.footer-section h4 {
    color: #4CAF50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #4CAF50;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        background: #f8f9fa;
        margin-top: 0.5rem;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 20px 40px;
    }
    
    .hero-content {
        margin-right: 0;
        margin-bottom: 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .features-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Management Team Styles */
.page-hero {
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../attached_assets/Laboratory-research-and-development-concept-678x381.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.15;
    z-index: 0;
    filter: blur(5px);
    transform: scale(1.1);
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.page-hero:hover::before {
    transform: scale(1.15);
    opacity: 0.2;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    transition: transform 0.5s ease;
}

.page-hero:hover .page-hero-content {
    transform: translateY(-5px);
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.page-hero-content h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: white;
    transform: translateX(-50%);
    transition: width 0.5s ease;
}

.page-hero:hover .page-hero-content h1::after {
    width: 80%;
}

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.team-section, .advisory-board, .values-section {
    padding: 80px 0;
}

.team-section {
    background: white;
}

.advisory-board {
    background: #f8f9fa;
}

.values-section {
    background: white;
}

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

.section-intro h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.section-intro p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

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

.member-photo {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.member-photo img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #4CAF50;
}

.member-info h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.position {
    font-size: 1.1rem;
    color: #4CAF50;
    font-weight: 600;
    margin-bottom: 1rem;
}

.bio {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.member-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.member-credentials span {
    background: #e8f5e9;
    color: #4CAF50;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.advisors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.advisor-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.advisor-card:hover {
    transform: translateY(-3px);
}

.advisor-card h4 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.advisor-title {
    color: #4CAF50;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.advisor-expertise {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

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

.value-item {
    text-align: center;
    padding: 1.5rem;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-item h3 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 1rem;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .page-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .advisors-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .member-credentials {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .page-hero-content h1 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .team-member {
        padding: 1.5rem;
    }
    
    .member-photo img {
        width: 120px;
        height: 120px;
    }
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-container h2,
.contact-info h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
}

.contact-form-container p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #dc3545;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
    font-size: 0.9rem;
}

.contact-info {
    padding: 1rem;
}

.contact-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    color: #0066cc;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.contact-card strong {
    color: #333;
}

.locations-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.locations-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
}

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

.location-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.location-card h3 {
    color: #4CAF50;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    border-bottom: 2px solid #4CAF50;
    padding-bottom: 0.5rem;
}

.location-item {
    margin-bottom: 1.5rem;
}

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

.location-item h4 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.location-item p {
    color: #666;
    line-height: 1.5;
}

/* Form Success/Error Messages */
.form-message {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Contact Styles */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 1rem;
    }
    
    .location-card {
        padding: 1.5rem;
    }
}

/* About Page Styles */
.about-intro {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #0066cc;
    margin-bottom: 1.5rem;
}

.about-text h3 {
    font-size: 1.5rem;
    color: #333;
    margin: 2rem 0 1rem 0;
}

.about-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-image img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

/* Timeline Styles */
.timeline-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.timeline-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

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

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: #0066cc;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin: 0 2rem;
    flex: 1;
}

.timeline-content h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

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

.capabilities-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.capability-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.capability-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

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

.capability-card h3 {
    color: #333;
    font-size: 1.25rem;
    margin: 1rem 1.5rem 0.5rem;
}

.capability-card p {
    color: #666;
    line-height: 1.6;
    margin: 0 1.5rem 1.5rem;
}

/* Case Studies Styles */
.case-studies-section {
    padding: 80px 0;
    background: white;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.case-study-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.case-study-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.case-content {
    padding: 2rem;
}

.case-category {
    background: #e8f5e9;
    color: #4CAF50;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.case-content h3 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.case-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.case-metrics {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.875rem;
    color: #666;
}

.case-link {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.case-link:hover {
    color: #388E3C;
}

.outcomes-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.outcomes-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
}

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

.outcome-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.outcome-card:hover {
    transform: translateY(-5px);
}

.outcome-card h3 {
    font-size: 1.5rem;
    color: #4CAF50;
    margin-bottom: 1rem;
}

.outcome-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.outcome-stats {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

/* Manufacturing Section Styles */
.manufacturing-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.manufacturing-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
}

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

.manufacturing-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.manufacturing-card:hover {
    transform: translateY(-5px);
}

.manufacturing-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.manufacturing-card h3 {
    font-size: 1.25rem;
    color: #333;
    margin: 1.5rem 1.5rem 1rem;
}

.manufacturing-card p {
    color: #666;
    line-height: 1.6;
    margin: 0 1.5rem 1.5rem;
}

/* Additional Page Styles */
.page-section {
    padding: 80px 0;
}

.page-section.alt-bg {
    background: #f8f9fa;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.feature-highlight {
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 3rem 0;
}

.feature-highlight h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-highlight p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Responsive Case Studies Styles */
@media (max-width: 768px) {
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
    
    .case-metrics {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .outcomes-grid {
        grid-template-columns: 1fr;
    }
    
    .manufacturing-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive About Styles */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        align-items: flex-start;
    }
    
    .timeline-year {
        position: absolute;
        left: 0;
        top: 0;
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
        width: auto;
    }
    
    .timeline-content {
        margin-left: 3.5rem;
        margin-right: 0;
    }
    
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .timeline-year {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .timeline-content {
        margin-left: 3rem;
        padding: 1rem;
    }
    
    .about-text h2 {
        font-size: 1.75rem;
    }
    
    .case-content {
        padding: 1.5rem;
    }
    
    .outcome-card {
        padding: 1.5rem;
    }
    
    /* Mobile image optimizations */
    .feature-card img,
    .news-card img,
    .capability-card img {
        height: 180px;
    }
    
    .area-card img {
        height: 250px;
    }
    
    .hero-image img {
        max-height: 300px;
    }
    
    .about-image img {
        max-height: 250px;
    }
}

/* Therapeutics Page Styles */
.therapeutics-overview {
    padding: 80px 0;
    background: white;
}

.therapeutic-areas {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.area-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.area-card:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.area-card:nth-child(even) .area-content {
    order: -1;
}

.area-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.area-card:hover img {
    transform: scale(1.03);
}

.area-content h3 {
    font-size: 1.75rem;
    color: #4CAF50;
    margin-bottom: 1rem;
}

.area-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.area-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.area-content ul li {
    color: #333;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.area-content ul li::before {
    content: "✓";
    color: #4CAF50;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.development-pipeline {
    padding: 80px 0;
    background: #f8f9fa;
}

.development-pipeline h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
}

.pipeline-stages {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.stage {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.stage:hover {
    transform: translateY(-5px);
}

.stage-header {
    margin-bottom: 1rem;
}

.stage-header h3 {
    font-size: 1.25rem;
    color: #4CAF50;
    margin-bottom: 0.5rem;
}

.stage-count {
    background: #4CAF50;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.stage p {
    color: #666;
    line-height: 1.5;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .area-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .area-card:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .area-card:nth-child(even) .area-content {
        order: 0;
    }
    
    .pipeline-stages {
        grid-template-columns: 1fr;
    }
    
    .stage {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .area-card {
        padding: 1.5rem;
    }
    
    .area-content h3 {
        font-size: 1.5rem;
    }
    
    .development-pipeline h2 {
        font-size: 2rem;
    }
}
