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

:root {
    --primary-color: #e23e7a;
    --secondary-color: #512f8d;
    --tertiary-color: #062f7f;
    --nav-gradient: linear-gradient(120deg, #e23e7a, #512f8d);
    --nav-gradient-hover: linear-gradient(120deg, #512f8d, #e23e7a);
    --cyber-gradient: linear-gradient(45deg, #e23e7a, #512f8d, #062f7f);
    --cyber-glow: 0 0 20px rgba(226, 62, 122, 0.3), 0 0 40px rgba(81, 47, 141, 0.2), 0 0 60px rgba(6, 47, 127, 0.1);
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    padding-top: 100px;
}

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

/* Apply simple effects to cards */
.feature-card,
.service-card,
.process-step,
.testimonial-card,
.news-card,
.blog-card,
.research-card,
.team-card,
.mission-card,
.value-card,
.publication-card {
    position: relative;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: white;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.feature-card,
.service-card {
    text-align: center;
}

.feature-card:hover,
.service-card:hover,
.process-step:hover,
.testimonial-card:hover,
.news-card:hover,
.blog-card:hover,
.research-card:hover,
.team-card:hover,
.mission-card:hover,
.value-card:hover,
.publication-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Remove all pseudo elements */
.feature-card::before,
.service-card::before,
.process-step::before,
.testimonial-card::before,
.news-card::before,
.blog-card::before,
.research-card::before,
.team-card::before,
.mission-card::before,
.value-card::before,
.publication-card::before,
.feature-card::after,
.service-card::after,
.process-step::after,
.testimonial-card::after,
.news-card::after,
.blog-card::after,
.research-card::after,
.team-card::after,
.mission-card::after,
.value-card::after,
.publication-card::after {
    display: none;
}

/* Special handling for cards that don't need padding */
.blog-card,
.news-card,
.research-card {
    padding: 0;
}

.blog-card .blog-content,
.news-card .news-content,
.research-card .research-content {
    padding: 20px;
}

.team-card {
    text-align: center;
    padding: 0;
}

.team-card .team-info {
    padding: 0 20px 30px;
}

/* Modern Navigation Styles */
.creative-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.nav-logo {
    height: 115px;
    width: auto;
}

.brand-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--nav-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: -30px;
}

.nav-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-items {
    display: flex;
    gap: 0.25rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-item a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-item a::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-item a:hover::before,
.nav-item a.active::before {
    width: 100%;
}

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* New Search Icon */
.search-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #f5f5f5;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
}

.search-icon:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

/* Language Selector */
.language-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #f5f5f5;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
    position: relative;
}

.language-selector:hover {
    background: var(--secondary-color);
    color: white;
    transform: scale(1.1);
}

.language-selector.active {
    background: var(--secondary-color);
    color: white;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.language-selector:hover .language-dropdown,
.language-selector.active .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none;
    color: #333;
}

.language-option:hover {
    background: #f5f5f5;
}

.language-option.active {
    background: var(--primary-color);
    color: white;
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(81, 47, 141, 0.95);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

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

.search-container {
    max-width: 600px;
    width: 90%;
    text-align: center;
    transform: scale(0.8);
    transition: transform 0.5s ease;
}

.search-overlay.active .search-container {
    transform: scale(1);
}

.search-title {
    color: white;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.search-input-container {
    position: relative;
    margin-bottom: 2rem;
}

.search-input-large {
    width: 100%;
    padding: 1rem 1.5rem;
    padding-right: 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    outline: none;
    transition: all 0.3s ease;
}

.search-input-large:focus {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.search-btn-large {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.search-btn-large:hover {
    background: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
}

.search-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-close:hover {
    transform: scale(1.2);
    color: var(--primary-color);
}

.search-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.search-suggestion {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.search-suggestion:hover {
    background: white;
    color: var(--primary-color);
}

.cta-button {
    background: var(--nav-gradient);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(226, 62, 122, 0.3);
}

.cta-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--tertiary-color));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 120px 20px 60px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.cta-button.primary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.cta-button.primary:hover {
    background: transparent;
    color: white;
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: var(--primary-color);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.stat-box {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: all 0.6s ease;
}

.stat-box::before {
    display: none;
}

.stat-box:hover {
    transform: translateY(-1px);
    border-image: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.3), 
        rgba(226, 62, 122, 0.2), 
        rgba(255, 255, 255, 0.3)) 1;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.1);
}

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

.stat-box p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

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

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    color: #333;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e23e7a" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.services .container {
    position: relative;
    z-index: 1;
}

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

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--nav-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(226, 62, 122, 0.2);
}

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.service-card:hover .service-icon::before {
    opacity: 0.3;
}

.service-icon i {
    font-size: 2.5rem;
    color: white;
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
}

.service-card h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 600;
}

.service-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    text-align: left;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #555;
    font-size: 0.95rem;
}

.service-features li i {
    color: var(--primary-color);
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 24px;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.learn-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: left 0.3s ease;
    z-index: -1;
}

.learn-more:hover::before {
    left: 0;
}

.learn-more:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(226, 62, 122, 0.3);
}

.learn-more i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.learn-more:hover i {
    transform: translateX(4px);
}

/* Process Section */
.process {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23512f8d" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.process .container {
    position: relative;
    z-index: 1;
}

.process-timeline {
    position: relative;
    margin-top: 40px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: 1px;
    z-index: 1;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.process-step:nth-child(odd) {
    flex-direction: row;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    position: relative;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(81, 47, 141, 0.25);
    transition: all 0.3s ease;
}

.step-number::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.process-step:hover .step-number::before {
    opacity: 0.15;
}

.process-step:hover .step-number {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(81, 47, 141, 0.3);
}

.step-content {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    margin: 0 30px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 62, 122, 0.1);
}

.step-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border-style: solid;
    transform: translateY(-50%);
}

.process-step:nth-child(odd) .step-content::before {
    left: -15px;
    border-width: 12px 15px 12px 0;
    border-color: transparent white transparent transparent;
}

.process-step:nth-child(even) .step-content::before {
    right: -15px;
    border-width: 12px 0 12px 15px;
    border-color: transparent transparent transparent white;
}

.step-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(226, 62, 122, 0.2);
}

.step-content h3 {
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-size: 1.3rem;
    font-weight: 600;
}

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

.step-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: #555;
    font-size: 0.9rem;
}

.step-features li:last-child {
    margin-bottom: 0;
}

.step-features li i {
    color: var(--primary-color);
    font-size: 0.9rem;
    width: 14px;
    text-align: center;
}

.process-cta {
    text-align: center;
    margin-top: 50px;
}

.process-cta .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(81, 47, 141, 0.25);
    position: relative;
    overflow: hidden;
}

.process-cta .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.process-cta .cta-button:hover::before {
    left: 100%;
}

.process-cta .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(81, 47, 141, 0.35);
}

.process-cta .cta-button i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.process-cta .cta-button:hover i {
    transform: translateX(3px);
}

/* Responsive Process */
@media (max-width: 768px) {
    .process-timeline::before {
        left: 25px;
    }
    
    .process-step {
        flex-direction: column !important;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .process-step:nth-child(even) {
        flex-direction: column !important;
    }
    
    .step-content {
        margin: 20px 0 0 0;
        width: 100%;
        padding: 25px;
    }
    
    .step-content::before {
        display: none;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        position: relative;
        left: -50%;
        transform: translateX(50%);
    }
}

/* Appointment Section */
.appointment {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.appointment-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.appointment-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.appointment-info p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.appointment-features {
    list-style: none;
    padding: 0;
}

.appointment-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.appointment-features i {
    color: white;
    font-size: 1.2rem;
}

.appointment-form-box {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-row input,
.form-row select,
.appointment-form input,
.appointment-form select,
.appointment-form textarea {
    padding: 12px 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(226, 62, 122, 0.1);
}

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

.submit-btn {
    background: var(--nav-gradient);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(226, 62, 122, 0.3);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

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

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

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

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

.testimonial-content p {
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

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

.author-info p {
    color: var(--primary-color);
    font-size: 0.9rem;
}

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

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

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

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

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

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

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

.news-content {
    padding: 20px;
}

.news-date {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 10px;
}

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

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

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--secondary-color);
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

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

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

.footer-section ul li a:hover {
    color: var(--primary-color);
}

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

.footer-logo img {
    height: 115px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-left: -30px;
}

.footer-logo h3 {
    margin: 0;
    color: white !important;
    margin-left: -25px;
    font-size: 28px;
}

.brand-gradient {
    background: var(--nav-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-section .brand-gradient {
    color: white !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: white !important;
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.6s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(226, 62, 122, 0.2);
}

.social-links a::before {
    display: none;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-1px) scale(1.02);
    border-image: linear-gradient(45deg, 
        rgba(226, 62, 122, 0.4), 
        rgba(81, 47, 141, 0.4), 
        rgba(6, 47, 127, 0.4)) 1;
    box-shadow: 0 3px 12px rgba(81, 47, 141, 0.2);
}

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

/* Blog Page Styles */
.blog-hero {
    background: linear-gradient(rgba(81, 47, 141, 0.9), rgba(226, 62, 122, 0.9)), url('images/team.webp');
    background-size: cover;
    background-position: center;
    padding: 150px 0 100px;
    color: white;
    text-align: center;
    margin-top: -100px;
}

.blog-hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.blog-hero p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
}

.blog-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 40px 0;
    flex-wrap: wrap;
}

.blog-filter {
    padding: 0.75rem 1.5rem;
    border: none;
    background: #f5f5f5;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.blog-filter:hover,
.blog-filter.active {
    background: var(--primary-color);
    color: white;
}

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

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

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

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-category {
    color: var(--primary-color);
    font-size: 0.9em;
    font-weight: 500;
    margin-bottom: 10px;
    display: inline-block;
}

.blog-date {
    color: #666;
    font-size: 0.9em;
    margin-left: 10px;
}

.blog-title {
    font-size: 1.25em;
    margin-bottom: 10px;
    color: #333;
}

.blog-excerpt {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    color: #333;
    font-weight: 500;
}

.blog-stats {
    display: flex;
    gap: 15px;
    color: #666;
}

.blog-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Research Page Styles */
.research-hero {
    background: linear-gradient(rgba(81, 47, 141, 0.9), rgba(226, 62, 122, 0.9)), url('images/sample.png');
    background-size: cover;
    background-position: top;
    padding: 250px 0 100px;
    color: white;
    text-align: center;
    margin-top: -100px;
}

.research-hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.research-hero p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
}

.research-areas {
    padding: 80px 0;
}

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

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

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

.research-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.research-content {
    padding: 25px;
}

.research-title {
    color: var(--secondary-color);
    font-size: 1.4em;
    margin-bottom: 15px;
}

.research-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.research-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-item:hover {
    background: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 1.5em;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
    text-shadow: none;
}

.about-stats .stat-label {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: unset;
    font-weight: 500;
}

.stat-label {
    color: #666;
    font-size: 0.9em;
}

.research-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.research-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #444;
}

.research-features li i {
    color: var(--primary-color);
}

.research-cta {
    margin-top: 20px;
    text-align: center;
}

.publications {
    background: #f8f9fa;
    padding: 80px 0;
}

.publication-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.publication-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.publication-date {
    color: #666;
    font-size: 0.9em;
}

.publication-journal {
    color: var(--primary-color);
    font-weight: 500;
}

.publication-title {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 10px;
}

.publication-authors {
    color: #666;
    font-style: italic;
    margin-bottom: 15px;
}

.publication-abstract {
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
}

.publication-links {
    display: flex;
    gap: 15px;
}

.publication-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.publication-link:hover {
    color: var(--secondary-color);
}

.team-section {
    padding: 80px 0;
}

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

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

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

.team-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 30px auto 20px;
    object-fit: cover;
}

.team-info {
    padding: 0 20px 30px;
}

.team-name {
    color: #333;
    font-size: 1.2em;
    margin-bottom: 5px;
}

.team-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.team-bio {
    color: #666;
    font-size: 0.9em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a {
    color: #666;
    transition: color 0.3s ease;
}

.team-social a:hover {
    color: var(--primary-color);
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(rgba(81, 47, 141, 0.9), rgba(226, 62, 122, 0.9)), url('images/sample.png');
    background-size: cover;
    background-position: center;
    padding: 150px 0 100px;
    color: white;
    text-align: center;
    margin-top: -100px;
}

.about-hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.mission-vision {
    padding: 80px 0;
    background: #f8f9fa;
}

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

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

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

.mission-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nav-gradient);
    border-radius: 50%;
    color: white;
    font-size: 2em;
}

.mission-title {
    color: var(--secondary-color);
    font-size: 1.4em;
    margin-bottom: 15px;
}

.mission-text {
    color: #666;
    line-height: 1.6;
}

.history {
    padding: 80px 0;
}

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

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    padding: 20px 40px;
    position: relative;
    width: 50%;
    margin-bottom: 40px;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: white;
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item:nth-child(odd)::after {
    right: -50px;
}

.timeline-item:nth-child(even)::after {
    left: -50px;
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.timeline-year {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-title {
    color: #333;
    margin-bottom: 10px;
}

.timeline-text {
    color: #666;
    line-height: 1.6;
}

.values {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.value-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.value-icon {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-title {
    color: #333;
    font-size: 1.2em;
    margin-bottom: 15px;
}

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

.team {
    padding: 80px 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-content {
        gap: 2rem;
    }

    .nav-items {
        gap: 0.25rem;
    }

    .nav-item a {
        font-size: 0.9rem;
        padding: 0.5rem 0.75rem;
    }

    .nav-logo {
        height: 55px;
    }

    .brand-text {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-wrapper {
        padding: 0 1.5rem;
    }

    .nav-logo {
        height: 50px;
    }

    .brand-text {
        font-size: 1.6rem;
    }

    .nav-content {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-left: 1px solid rgba(255, 255, 255, 0.2);
        flex-direction: column;
        padding: 80px 1.5rem 2rem;
        gap: 1.5rem;
        transition: right 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-content.active {
        right: 0;
    }

    .nav-items {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }

    .nav-item a {
        font-size: 1rem;
        padding: 0.75rem 1rem;
        width: 100%;
        background: rgba(248, 249, 250, 0.8);
        border-radius: 10px;
        border: 1px solid rgba(81, 47, 141, 0.1);
        transition: all 0.3s ease;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-item a::before {
        display: none;
    }

    .nav-item a:hover,
    .nav-item a.active {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        transform: translateX(5px);
        box-shadow: 0 4px 15px rgba(81, 47, 141, 0.2);
    }

    .nav-right {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(81, 47, 141, 0.1);
    }

    .search-icon,
    .language-selector {
        width: 100%;
        padding: 0.75rem 1rem;
        background: rgba(248, 249, 250, 0.8);
        border-radius: 10px;
        border: 1px solid rgba(81, 47, 141, 0.1);
        display: flex;
        align-items: center;
        gap: 0.75rem;
        color: #333;
        font-weight: 500;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .search-icon::after {
        content: "Search";
        font-size: 0.9rem;
    }

    .language-selector::after {
        content: "Language";
        font-size: 0.9rem;
    }

    .search-icon:hover::after,
    .language-selector:hover::after {
        color: var(--primary-color);
    }

    .language-dropdown {
        position: static;
        width: 100%;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 8px;
        box-shadow: none;
        border: 1px solid rgba(81, 47, 141, 0.1);
        margin-top: 0.5rem;
        padding: 0.5rem 0;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .language-selector.active .language-dropdown {
        opacity: 1;
        max-height: 200px;
    }

    .language-option {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        border-radius: 6px;
        margin: 0 0.5rem;
    }

    .language-option:hover {
        background: rgba(81, 47, 141, 0.1);
    }

    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        font-weight: 600;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(81, 47, 141, 0.25);
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .search-title {
        font-size: 1.8rem;
    }

    .search-input-large {
        font-size: 1rem;
        padding: 0.875rem 1.25rem;
    }

    .search-btn-large {
        padding: 0.875rem 1.25rem;
    }

    .search-close {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .appointment-split {
        flex-direction: column;
        gap: 2rem;
    }

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

    .process-step {
        margin-bottom: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-card {
        padding: 2rem;
    }

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

    .service-icon i {
        font-size: 1.8rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blog-filters {
        flex-direction: column;
        gap: 0.5rem;
    }

    .blog-filter {
        width: 100%;
        text-align: center;
    }

    .research-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .team-image {
        width: 120px;
        height: 120px;
    }

    .publication-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

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

    .stat-item {
        text-align: center;
    }

    .timeline::after {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 0;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-item::after {
        left: 8px;
    }
}

@media (max-width: 480px) {
    .nav-wrapper {
        padding: 0 1rem;
        height: 65px;
    }

    .nav-logo {
        height: 45px;
    }

    .brand-text {
        font-size: 1.2rem;
    }

    .nav-content {
        width: 100%;
        padding: 80px 1rem 1rem;
    }

    .search-icon,
    .language-selector {
        width: 100%;
        height: 40px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-item {
        padding: 30px 15px;
    }

    .team-image {
        height: 200px;
    }

    .search-container {
        width: 95%;
    }

    .search-title {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .search-suggestions {
        gap: 0.5rem;
    }

    .search-suggestion {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Animations */
@keyframes shine {
    0% {
        left: -100%;
    }
    20%, 100% {
        left: 100%;
    }
}

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

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 2.5rem; }

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(rgba(81, 47, 141, 0.9), rgba(226, 62, 122, 0.9)), url('images/contact.jpg');
    background-size: cover;
    background-position: center;
    padding: 220px 0 80px;
    color: white;
    text-align: center;
    margin-top: -100px;
}

.contact-hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 1.1em;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    padding: 80px 0;
    background: #f8f9fa;
}

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

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

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

.contact-card i {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

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

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--secondary-color);
}

.contact-form-section {
    padding: 80px 0;
}

.contact-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.office-hours {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.hours-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.hours-card h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    text-align: center;
}

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

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.hours-list li:last-child {
    border-bottom: none;
}

.emergency-contact {
    margin-top: 30px;
    text-align: center;
    padding: 20px;
    background: #fff3e0;
    border-radius: 10px;
    color: #f57c00;
}

.emergency-contact i {
    margin-right: 10px;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
}

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

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

    .map-container {
        margin-top: 30px;
    }
}

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

    .contact-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Login & Register Page Styles */
.login-hero, .register-hero {
    background: linear-gradient(rgba(81, 47, 141, 0.9), rgba(226, 62, 122, 0.9)), url('images/sample.png');
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    color: white;
    text-align: center;
}

.login-hero h1, .register-hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: 700;
}

.login-hero p, .register-hero p {
    font-size: 1.1em;
    opacity: 0.9;
}

.login-section, .register-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.login-form-container, .register-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.login-form-card, .register-form-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 2em;
    margin-bottom: 10px;
    color: #333;
}

.form-header p {
    color: #666;
    font-size: 1.1em;
}

.login-form, .register-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    position: relative;
}

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1em;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(226, 62, 122, 0.1);
}

.form-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
}

.form-group:has(label) .form-icon {
    top: calc(50% + 12px);
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 5px;
    z-index: 2;
}

.form-group:has(label) .password-toggle {
    top: calc(50% + 12px);
}

.password-toggle:hover {
    color: var(--primary-color);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
}

.form-options-vertical {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 15px 0;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9em;
}

.checkbox-container input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 4px;
    position: relative;
    display: inline-block;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-container input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
}

.forgot-password {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9em;
}

.forgot-password:hover {
    text-decoration: underline;
}

.btn-login, .btn-register {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-login:hover, .btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(226, 62, 122, 0.3);
}

.form-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.form-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.form-footer a:hover {
    text-decoration: underline;
}

.login-benefits, .register-benefits {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.login-benefits h3, .register-benefits h3 {
    font-size: 1.5em;
    margin-bottom: 25px;
    color: #333;
}

.login-benefits ul, .register-benefits ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.login-benefits li, .register-benefits li {
    display: flex;
    align-items: center;
    gap: 15px;
}

.login-benefits i, .register-benefits i {
    color: var(--primary-color);
    font-size: 1.2em;
    width: 20px;
    text-align: center;
}

.register-benefits li {
    align-items: flex-start;
}

.register-benefits li div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.register-benefits li strong {
    color: #333;
    font-weight: 600;
}

.register-benefits li span {
    color: #666;
    font-size: 0.9em;
}

.terms-link, .privacy-link {
    color: var(--primary-color);
    text-decoration: none;
}

.terms-link:hover, .privacy-link:hover {
    text-decoration: underline;
}

/* Dashboard Styles */
.dashboard-body {
    padding-top: 0;
    background: #f8f9fa;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.dashboard-header {
    background: white;
    border-bottom: 1px solid #e0e0e0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 70px;
}

.dashboard-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 100%;
    max-width: none;
}

.dashboard-brand {
    display: flex;
    align-items: center;
    gap: 20px;
}

.dashboard-brand .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.2em;
    color: #333;
}

.sidebar-toggle {
    background: none;
    border: none;
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
    color: #666;
    transition: all 0.3s ease;
}

.sidebar-toggle:hover {
    background: #f0f0f0;
    color: var(--primary-color);
}

.dashboard-header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box input {
    width: 300px;
    padding: 10px 15px 10px 40px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    font-size: 0.9em;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(226, 62, 122, 0.1);
}

.search-box i {
    position: absolute;
    left: 15px;
    color: #999;
    font-size: 0.9em;
}

.header-notifications {
    position: relative;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.header-notifications:hover {
    background: #f0f0f0;
}

.header-notifications i {
    color: #666;
    font-size: 1.1em;
}

.notification-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7em;
    font-weight: 600;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 10px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.user-profile:hover {
    background: #f0f0f0;
}

.user-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
}

.user-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.user-name {
    font-weight: 600;
    font-size: 0.9em;
    color: #333;
}

.user-role {
    font-size: 0.8em;
    color: #666;
}

.user-profile i {
    color: #999;
    font-size: 0.8em;
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.user-profile.active .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.user-dropdown a:hover {
    background: #f8f9fa;
    color: var(--primary-color);
}

.user-dropdown hr {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 5px 0;
}

.dashboard-container {
    display: flex;
    padding-top: 70px;
    min-height: 100vh;
}

.dashboard-sidebar {
    width: 260px;
    background: white;
    border-right: 1px solid #e0e0e0;
    padding: 20px 0;
    position: fixed;
    left: 0;
    top: 70px;
    bottom: 0;
    overflow-y: auto;
    transition: all 0.3s ease;
}

.dashboard-sidebar.collapsed {
    width: 60px;
}

.sidebar-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-item {
    margin-bottom: 5px;
}

.nav-item a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    text-decoration: none;
    color: #666;
    transition: all 0.3s ease;
    position: relative;
}

.nav-item a:hover {
    background: #f8f9fa;
    color: var(--primary-color);
}

.nav-item.active a {
    background: linear-gradient(135deg, rgba(226, 62, 122, 0.1), rgba(81, 47, 141, 0.1));
    color: var(--primary-color);
    border-right: 3px solid var(--primary-color);
}

.nav-item i {
    font-size: 1.1em;
    width: 20px;
    text-align: center;
}

.dashboard-main {
    flex: 1;
    margin-left: 260px;
    padding: 30px;
    transition: all 0.3s ease;
}

.dashboard-sidebar.collapsed + .dashboard-main {
    margin-left: 60px;
}

.dashboard-section {
    display: none;
}

.dashboard-section.active {
    display: block;
}

.section-header {
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-header h1 {
    font-size: 2em;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.section-header p {
    color: #666;
    font-size: 1.1em;
}

.section-actions {
    display: flex;
    gap: 10px;
}

.btn-primary, .btn-secondary {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(226, 62, 122, 0.3);
}

.btn-secondary {
    background: white;
    color: #333;
    border: 1px solid #e0e0e0;
}

.btn-secondary:hover {
    background: #f8f9fa;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

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

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5em;
}

.stat-content h3 {
    font-size: 2em;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.stat-content p {
    color: #666;
    font-size: 0.9em;
}

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

.dashboard-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.card-header {
    padding: 20px 25px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header h3 {
    font-size: 1.2em;
    font-weight: 600;
    color: #333;
}

.view-all {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9em;
    font-weight: 500;
}

.view-all:hover {
    text-decoration: underline;
}

.recent-files {
    padding: 0 25px 25px;
}

.file-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.file-item:last-child {
    border-bottom: none;
}

.file-item i {
    color: var(--primary-color);
    font-size: 1.3em;
    width: 25px;
    text-align: center;
}

.file-info {
    flex: 1;
}

.file-name {
    font-weight: 500;
    color: #333;
    display: block;
    margin-bottom: 3px;
}

.file-date {
    color: #666;
    font-size: 0.85em;
}

.file-download {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.file-download:hover {
    background: #f0f0f0;
    color: var(--primary-color);
}

.appointments-list {
    padding: 0 25px 25px;
}

.appointment-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.appointment-item:last-child {
    border-bottom: none;
}

.appointment-date {
    text-align: center;
    min-width: 50px;
}

.appointment-date .date {
    display: block;
    font-size: 1.5em;
    font-weight: 700;
    color: var(--primary-color);
}

.appointment-date .month {
    font-size: 0.8em;
    color: #666;
    font-weight: 500;
}

.appointment-info h4 {
    font-size: 1.1em;
    font-weight: 600;
    color: #333;
    margin-bottom: 3px;
}

.appointment-info p {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 5px;
}

.appointment-info .time {
    color: var(--primary-color);
    font-size: 0.85em;
    font-weight: 500;
}

.file-manager {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.file-toolbar {
    padding: 20px 25px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.view-options {
    display: flex;
    gap: 5px;
}

.view-btn {
    background: none;
    border: 1px solid #e0e0e0;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    color: #666;
    transition: all 0.3s ease;
}

.view-btn.active,
.view-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.filter-select {
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: white;
    color: #666;
    cursor: pointer;
}

.file-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding: 25px;
}

.file-grid.list-view {
    grid-template-columns: 1fr;
}

.file-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.file-card:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.file-grid.list-view .file-card {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    padding: 15px 20px;
}

.file-icon {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.file-grid.list-view .file-icon {
    font-size: 1.5em;
    margin-bottom: 0;
}

.file-info h4 {
    font-size: 1em;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.file-info p {
    color: #666;
    font-size: 0.85em;
}

.file-grid.list-view .file-info {
    flex: 1;
}

.file-actions {
    display: flex;
    gap: 5px;
    justify-content: center;
    margin-top: 10px;
}

.file-grid.list-view .file-actions {
    margin-top: 0;
}

.file-actions button {
    background: none;
    border: none;
    padding: 6px 8px;
    border-radius: 4px;
    cursor: pointer;
    color: #666;
    transition: all 0.3s ease;
}

.file-actions button:hover {
    background: #e0e0e0;
    color: var(--primary-color);
}

.documents-grid {
    display: grid;
    gap: 30px;
}

.document-category {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.document-category h3 {
    padding: 20px 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-size: 1.2em;
    font-weight: 600;
    margin: 0;
}

.document-list {
    padding: 0 25px 25px;
}

.document-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.document-item:last-child {
    border-bottom: none;
}

.document-item i {
    color: var(--primary-color);
    font-size: 1.5em;
    width: 30px;
    text-align: center;
}

.document-info {
    flex: 1;
}

.document-info h4 {
    font-size: 1.1em;
    font-weight: 600;
    color: #333;
    margin-bottom: 3px;
}

.document-info p {
    color: #666;
    font-size: 0.9em;
}

.btn-download {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-download:hover {
    background: var(--secondary-color);
    transform: translateY(-1px);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.video-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.video-thumbnail {
    position: relative;
    overflow: hidden;
}

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

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.video-card:hover .video-overlay {
    opacity: 1;
}

.play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-btn:hover {
    transform: scale(1.1);
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8em;
}

.video-info {
    padding: 20px;
}

.video-info h4 {
    font-size: 1.1em;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.video-info p {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 10px;
}

.video-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #999;
    font-size: 0.85em;
}

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

.report-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.report-card h3 {
    font-size: 1.2em;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.progress-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.progress-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: conic-gradient(var(--primary-color) 75%, #f0f0f0 75%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.progress-circle::before {
    content: '';
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: white;
    position: absolute;
}

.progress-text {
    font-size: 1.2em;
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.appointment-stats {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2em;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    color: #666;
    font-size: 0.9em;
}

.trend-chart {
    position: relative;
    height: 100px;
    margin-bottom: 15px;
}

.trend-line {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(226, 62, 122, 0.1), rgba(81, 47, 141, 0.1));
    border-radius: 8px;
}

.trend-point {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, 50%);
}

.appointments-container {
    display: grid;
    gap: 25px;
}

.appointment-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.appointment-header {
    padding: 20px 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.appointment-header h3 {
    font-size: 1.2em;
    font-weight: 600;
    margin: 0;
}

.appointment-list {
    padding: 0 25px 25px;
}

.appointment-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid #f0f0f0;
}

.appointment-item:last-child {
    border-bottom: none;
}

.appointment-details {
    flex: 1;
}

.appointment-details h4 {
    font-size: 1.2em;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.appointment-details p {
    color: #666;
    font-size: 1em;
    margin-bottom: 10px;
}

.appointment-time,
.appointment-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9em;
    margin-bottom: 5px;
}

.appointment-time i,
.appointment-location i {
    color: var(--primary-color);
    width: 15px;
}

.appointment-actions {
    display: flex;
    gap: 10px;
}

.btn-edit,
.btn-cancel {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 0.9em;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-edit:hover {
    background: var(--secondary-color);
}

.btn-cancel {
    background: #f8f9fa;
    color: #666;
    border: 1px solid #e0e0e0;
}

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

.messages-container {
    display: grid;
    gap: 20px;
}

.message-item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.message-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.message-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.message-content {
    flex: 1;
}

.message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.message-header h4 {
    font-size: 1.1em;
    font-weight: 600;
    color: #333;
}

.message-time {
    color: #666;
    font-size: 0.85em;
}

.message-preview {
    color: #666;
    font-size: 0.95em;
    line-height: 1.4;
}

.message-actions .btn-reply {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.message-actions .btn-reply:hover {
    background: var(--secondary-color);
}

/* Upload Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    padding: 20px 25px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 1.3em;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.2em;
    color: #666;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #f0f0f0;
    color: #333;
}

.modal-body {
    padding: 25px;
}

.upload-area {
    border: 2px dashed #e0e0e0;
    border-radius: 10px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.upload-area:hover,
.upload-area.drag-over {
    border-color: var(--primary-color);
    background: rgba(226, 62, 122, 0.05);
}

.upload-area i {
    font-size: 3em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.upload-area h4 {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 8px;
}

.upload-area p {
    color: #666;
    font-size: 0.9em;
}

.upload-area input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-progress {
    margin-top: 20px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    width: 0%;
    transition: width 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .dashboard-main {
        margin-left: 60px;
    }
    
    .dashboard-sidebar {
        width: 60px;
    }
    
    .dashboard-sidebar .nav-item span {
        display: none;
    }
    
    .search-box input {
        width: 200px;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .login-form-container,
    .register-form-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .dashboard-header-content {
        padding: 0 15px;
    }
    
    .search-box {
        display: none;
    }
    
    .dashboard-main {
        margin-left: 0;
        padding: 20px 15px;
    }
    
    .dashboard-sidebar {
        transform: translateX(-100%);
        z-index: 1500;
    }
    
    .dashboard-sidebar.active {
        transform: translateX(0);
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .file-grid {
        grid-template-columns: 1fr;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .reports-grid {
        grid-template-columns: 1fr;
    }
    
    .appointment-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .appointment-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .appointment-actions {
        width: 100%;
        justify-content: flex-end;
    }
    
    .message-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .message-actions {
        width: 100%;
        text-align: right;
    }
}

@media (max-width: 480px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .section-actions {
        width: 100%;
        justify-content: flex-end;
    }
    
    .modal-content {
        width: 95%;
    }
    
    .user-info {
        display: none;
    }
    
    .dashboard-header-actions {
        gap: 10px;
    }
}

/* Technology Overview Section */
.technology-overview {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.technology-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.technology-text p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.technology-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.feature-item i {
    color: #512F8D;
    font-size: 1.2em;
    width: 20px;
}

.feature-item span {
    font-weight: 500;
    color: #333;
}

.technology-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gel-animation {
    position: relative;
    width: 300px;
    height: 200px;
}

.gel-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #512F8D, #E23E7A);
    border-radius: 20px;
    overflow: hidden;
}

.gel-liquid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    animation: liquidFlow 3s ease-in-out infinite;
}

.gel-solid {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: rgba(255, 255, 255, 0.2);
    animation: gelForm 3s ease-in-out infinite;
}

@keyframes liquidFlow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

@keyframes gelForm {
    0%, 100% { height: 0%; }
    50% { height: 60%; }
}

.animation-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.animation-labels span {
    font-size: 0.9em;
    font-weight: 500;
    color: #666;
}

/* Featured Product Section */
.featured-product {
    padding: 100px 0;
    background: white;
}

.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.product-badge {
    display: inline-block;
    background: linear-gradient(135deg, #512F8D, #E23E7A);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 500;
    margin-bottom: 20px;
}

.product-info h2 {
    font-size: 2.5em;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.product-info h3 {
    font-size: 1.3em;
    color: #666;
    margin-bottom: 20px;
}

.product-info p {
    font-size: 1.1em;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.product-specs {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #512F8D;
}

.spec-item i {
    color: #512F8D;
    font-size: 1.2em;
    width: 20px;
}

.spec-item h4 {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.spec-item p {
    font-size: 0.9em;
    color: #666;
    margin: 0;
}

.product-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.product-image {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 10px;
}

.highlight-item i {
    color: #4CAF50;
    font-size: 1.1em;
}

.highlight-item span {
    font-weight: 500;
    color: #333;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #512F8D, #E23E7A);
    color: white;
}

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

.cta-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.cta-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.cta-icon i {
    font-size: 2em;
    color: white;
}

.cta-card h3 {
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 15px;
}

.cta-card p {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.9;
}

.cta-link {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Applications Section */
.applications {
    padding: 100px 0;
    background: white;
}

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

.application-card {
    background: white;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.application-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.application-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #512F8D, #E23E7A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.application-icon i {
    font-size: 2em;
    color: white;
}

.application-card h3 {
    font-size: 1.2em;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.application-card p {
    font-size: 0.95em;
    line-height: 1.6;
    color: #666;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .technology-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .technology-features {
        grid-template-columns: 1fr;
    }
    
    .product-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-grid {
        grid-template-columns: 1fr;
    }
    
    .applications-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .gel-animation {
        width: 250px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .technology-overview,
    .featured-product,
    .cta-section,
    .applications {
        padding: 60px 0;
    }
    
    .product-info h2 {
        font-size: 2em;
    }
    
    .cta-card {
        padding: 30px 20px;
    }
    
    .application-card {
        padding: 25px 20px;
    }
}

/* Our Story Section */
.our-story {
    padding: 100px 0;
    background: white;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.story-text h3 {
    font-size: 1.8em;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.story-text p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.story-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.story-image {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* NovaSeal Birth Section */
.novaseal-birth {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.birth-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.birth-image {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.birth-image img {
    width: 100%;
    height: auto;
    display: block;
}

.birth-text h2 {
    font-size: 2.2em;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
}

.birth-text p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.birth-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.birth-highlights .highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.birth-highlights .highlight-item i {
    color: #512F8D;
    font-size: 1.2em;
    width: 20px;
}

.birth-highlights .highlight-item span {
    font-weight: 500;
    color: #333;
}

/* Current Status Section */
.current-status {
    padding: 100px 0;
    background: white;
}

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

.status-text h3 {
    font-size: 1.8em;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.status-text p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.status-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.status-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
}

.status-card {
    background: linear-gradient(135deg, #512F8D, #E23E7A);
    color: white;
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(81, 47, 141, 0.2);
}

.status-card i {
    font-size: 2em;
    margin-bottom: 15px;
    opacity: 0.9;
}

.status-card h4 {
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 8px;
}

.status-card p {
    font-size: 0.9em;
    opacity: 0.9;
    margin: 0;
}

/* Updated Mission & Vision Section */
.mission-vision {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.mission-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #512F8D, #E23E7A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.mission-icon i {
    font-size: 2em;
    color: white;
}

.mission-card h3 {
    font-size: 1.4em;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.mission-card p {
    font-size: 1em;
    line-height: 1.7;
    color: #555;
}

/* Updated Values Section */
.values {
    padding: 100px 0;
    background: white;
}

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

.value-card {
    background: white;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

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

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #512F8D, #E23E7A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 1.8em;
    color: white;
}

.value-card h3 {
    font-size: 1.2em;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 0.95em;
    line-height: 1.6;
    color: #666;
}

/* Updated Team Section */
.team-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

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

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

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

.team-info {
    padding: 25px;
}

.team-name {
    font-size: 1.3em;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.team-role {
    font-size: 1em;
    color: #512F8D;
    font-weight: 500;
    margin-bottom: 15px;
}

.team-bio {
    font-size: 0.95em;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.team-social {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #512F8D, #E23E7A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-social a:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(81, 47, 141, 0.3);
}

/* Responsive Design for New About Sections */
@media (max-width: 768px) {
    .story-content,
    .birth-content,
    .status-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .status-cards {
        grid-template-columns: 1fr;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .birth-text h2,
    .story-text h3,
    .status-text h3 {
        font-size: 1.6em;
    }
}

@media (max-width: 480px) {
    .our-story,
    .novaseal-birth,
    .current-status,
    .mission-vision,
    .values,
    .team-section {
        padding: 60px 0;
    }
    
    .mission-card,
    .value-card {
        padding: 25px 20px;
    }
    
    .team-info {
        padding: 20px;
    }
    
    .status-card {
        padding: 20px 15px;
    }
}

/* Technology Hero Section */
.technology-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #512F8D, #E23E7A);
    color: white;
    text-align: center;
}

.technology-hero h1 {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 20px;
}

.technology-hero p {
    font-size: 1.2em;
    margin-bottom: 40px;
    opacity: 0.9;
}

.tech-overview {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.tech-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tech-highlight i {
    font-size: 1.2em;
}

.tech-highlight span {
    font-weight: 500;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: white;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 50px;
}

.process-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
}

.process-step:nth-child(even) {
    grid-template-columns: 1fr auto;
}

.process-step:nth-child(even) .step-content {
    order: -1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #512F8D, #E23E7A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2em;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(81, 47, 141, 0.3);
}

.step-content h3 {
    font-size: 1.8em;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.step-content p {
    font-size: 1.1em;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.step-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.liquid-demo,
.delivery-demo,
.gel-demo,
.occlusion-demo {
    text-align: center;
}

.liquid-container,
.gel-container {
    width: 200px;
    height: 150px;
    border-radius: 15px;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
}

.liquid-container {
    background: linear-gradient(45deg, #512F8D, #E23E7A);
}

.gel-container {
    background: linear-gradient(45deg, #E23E7A, #512F8D);
}

.liquid-animation {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    animation: liquidFlow 3s ease-in-out infinite;
}

.gel-solid-animation {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: rgba(255, 255, 255, 0.2);
    animation: gelForm 3s ease-in-out infinite;
}

.catheter-animation {
    width: 200px;
    height: 150px;
    position: relative;
    margin-bottom: 15px;
}

.catheter {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    background: #512F8D;
    border-radius: 2px;
}

.injection-flow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: #E23E7A;
    border-radius: 50%;
    animation: injection 3s ease-in-out infinite;
}

.vessel-animation {
    width: 200px;
    height: 150px;
    position: relative;
    margin-bottom: 15px;
}

.vessel {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #512F8D, #E23E7A);
    border-radius: 4px;
}

.occlusion-point {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: #E23E7A;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes liquidFlow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

@keyframes gelForm {
    0%, 100% { height: 0%; }
    50% { height: 60%; }
}

@keyframes injection {
    0% { width: 0; height: 0; opacity: 0; }
    50% { width: 30px; height: 30px; opacity: 1; }
    100% { width: 0; height: 0; opacity: 0; }
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.7; }
}

/* Applications Detailed Section */
.applications-detailed {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.application-detail {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.application-detail:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.app-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #512F8D, #E23E7A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.app-icon i {
    font-size: 1.8em;
    color: white;
}

.application-detail h3 {
    font-size: 1.3em;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.application-detail p {
    font-size: 1em;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.app-benefits {
    list-style: none;
    padding: 0;
}

.app-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.95em;
    color: #666;
}

.app-benefits li i {
    color: #4CAF50;
    font-size: 0.9em;
}

/* Technology Advantages Section */
.tech-advantages {
    padding: 100px 0;
    background: white;
}

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

.advantage-card {
    background: white;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #512F8D, #E23E7A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.advantage-icon i {
    font-size: 2em;
    color: white;
}

.advantage-card h3 {
    font-size: 1.2em;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.advantage-card p {
    font-size: 0.95em;
    line-height: 1.6;
    color: #666;
}

/* Research & Development Section */
.research-development {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.rd-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.rd-text h3 {
    font-size: 1.8em;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.rd-text p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

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

.milestone {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.milestone-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #512F8D, #E23E7A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.milestone-icon i {
    font-size: 1.5em;
    color: white;
}

.milestone-content h4 {
    font-size: 1.1em;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.milestone-content p {
    font-size: 0.9em;
    color: #666;
    margin: 0;
}

.rd-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.rd-timeline {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.rd-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #512F8D, #E23E7A);
    transform: translateX(-50%);
}

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

.timeline-item:nth-child(odd) {
    justify-content: flex-start;
}

.timeline-item:nth-child(even) {
    justify-content: flex-end;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: #512F8D;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    border: 4px solid white;
    box-shadow: 0 0 0 4px #512F8D;
}

.timeline-item.active .timeline-dot {
    background: #E23E7A;
    box-shadow: 0 0 0 4px #E23E7A;
}

.timeline-content {
    background: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    max-width: 150px;
    text-align: center;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 50%;
    margin-left: 20px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 50%;
    margin-right: 20px;
}

.timeline-content h4 {
    font-size: 1.1em;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.timeline-content p {
    font-size: 0.9em;
    color: #666;
    margin: 0;
}

/* Responsive Design for Technology Page */
@media (max-width: 768px) {
    .technology-hero h1 {
        font-size: 2.5em;
    }
    
    .tech-overview {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step,
    .process-step:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .process-step:nth-child(even) .step-content {
        order: 0;
    }
    
    .rd-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .applications-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .rd-timeline::before {
        left: 20px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        justify-content: flex-start;
    }
    
    .timeline-dot {
        left: 20px;
        transform: translateX(-50%);
    }
    
    .timeline-item .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 50px;
        margin-right: 0;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .technology-hero,
    .how-it-works,
    .applications-detailed,
    .tech-advantages,
    .research-development {
        padding: 60px 0;
    }
    
    .technology-hero h1 {
        font-size: 2em;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5em;
    }
    
    .step-content h3 {
        font-size: 1.5em;
    }
    
    .application-detail,
    .advantage-card {
        padding: 25px 20px;
    }
    
    .milestone {
        padding: 15px;
    }
}

/* Products Hero Section */
.products-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #512F8D, #E23E7A);
    color: white;
    text-align: center;
}

.products-hero h1 {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 20px;
}

.products-hero p {
    font-size: 1.2em;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Current Solutions Section */
.current-solutions {
    padding: 100px 0;
    background: white;
}

.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.product-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.product-image {
    width: 100%;
    max-width: 600px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.badge {
    background: linear-gradient(135deg, #512F8D, #E23E7A);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 500;
}

.product-info h2 {
    font-size: 2.5em;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.product-info h3 {
    font-size: 1.3em;
    color: #666;
    margin-bottom: 20px;
}

.product-info p {
    font-size: 1.1em;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

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

.product-features .feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #512F8D;
}

.product-features .feature-item i {
    color: #512F8D;
    font-size: 1.2em;
    width: 20px;
}

.product-features .feature-item h4 {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.product-features .feature-item p {
    font-size: 0.9em;
    color: #666;
    margin: 0;
}

/* Product Specifications Section */
.product-specifications {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.spec-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.spec-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.spec-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #512F8D, #E23E7A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.spec-icon i {
    font-size: 1.8em;
    color: white;
}

.spec-card h3 {
    font-size: 1.3em;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.spec-card p {
    font-size: 1em;
    line-height: 1.6;
    color: #555;
}

/* Pipeline Products Section */
.pipeline-products {
    padding: 100px 0;
    background: white;
}

.pipeline-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.pipeline-text h3 {
    font-size: 1.8em;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.pipeline-text p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.development-stages {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.stage {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.stage-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #512F8D, #E23E7A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stage-icon i {
    font-size: 1.5em;
    color: white;
}

.stage-content {
    flex: 1;
}

.stage-content h4 {
    font-size: 1.1em;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.stage-content p {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 10px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #512F8D, #E23E7A);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.pipeline-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.pipeline-image {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pipeline-image img {
    width: 100%;
    height: auto;
    display: block;
}

.pipeline-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.pipeline-highlights .highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 10px;
}

.pipeline-highlights .highlight-item i {
    color: #512F8D;
    font-size: 1.2em;
}

.pipeline-highlights .highlight-item span {
    font-weight: 500;
    color: #333;
}

/* Product Comparison Section */
.product-comparison {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.comparison-table {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-top: 50px;
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: linear-gradient(135deg, #512F8D, #E23E7A);
    color: white;
    font-weight: 600;
}

.table-header > div {
    padding: 20px;
    text-align: center;
}

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

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

.table-row > div {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.feature-column {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
    justify-content: flex-start !important;
}

.novaseal-column {
    color: #4CAF50;
}

.traditional-column {
    color: #f44336;
}

.table-row i.fa-check {
    color: #4CAF50;
    font-size: 1.2em;
}

.table-row i.fa-times {
    color: #f44336;
    font-size: 1.2em;
}

/* Responsive Design for Products Page */
@media (max-width: 768px) {
    .products-hero h1 {
        font-size: 2.5em;
    }
    
    .product-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pipeline-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        overflow-x: auto;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 200px 1fr 1fr;
        min-width: 600px;
    }
    
    .product-info h2 {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .products-hero,
    .current-solutions,
    .product-specifications,
    .pipeline-products,
    .product-comparison {
        padding: 60px 0;
    }
    
    .products-hero h1 {
        font-size: 2em;
    }
    
    .spec-card,
    .stage {
        padding: 20px;
    }
    
    .table-header > div,
    .table-row > div {
        padding: 15px 10px;
        font-size: 0.9em;
    }
}

/* Contact Page Specific Styles */
.contact-form-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

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

.contact-form h2 {
    color: var(--primary-color);
    font-size: 2.2em;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-form > p {
    color: #666;
    font-size: 1.1em;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-form-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    position: relative;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1em;
    transition: all 0.3s ease;
    background: white;
}

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

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

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

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.95em;
    line-height: 1.5;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(226, 62, 122, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(226, 62, 122, 0.4);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

.contact-details {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.contact-details h2 {
    color: var(--primary-color);
    font-size: 2.2em;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-details > p {
    color: #666;
    font-size: 1.1em;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-methods {
    margin-bottom: 40px;
}

.method-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.method-item:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

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

.method-icon i {
    color: white;
    font-size: 1.2em;
}

.method-content h4 {
    color: #333;
    font-size: 1.2em;
    margin-bottom: 8px;
    font-weight: 600;
}

.method-content p {
    color: #666;
    font-size: 0.95em;
    margin-bottom: 10px;
    line-height: 1.5;
}

.method-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.method-content a:hover {
    color: var(--secondary-color);
}

.social-contact {
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.social-contact h4 {
    color: #333;
    font-size: 1.3em;
    margin-bottom: 20px;
    font-weight: 600;
}

.social-links-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    color: #666;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link:hover {
    background: white;
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-link i {
    margin-right: 10px;
    font-size: 1.1em;
}

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

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

.map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e0e0e0" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.map-content {
    text-align: center;
    z-index: 1;
    position: relative;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 400px;
}

.map-content i {
    font-size: 3em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.map-content h3 {
    color: #333;
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: 600;
}

.map-content p {
    color: #666;
    font-size: 1.1em;
    margin-bottom: 25px;
    line-height: 1.6;
}

.map-link {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(226, 62, 122, 0.3);
}

.map-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(226, 62, 122, 0.4);
    color: white;
}

.map-link i {
    margin-right: 8px;
}

/* FAQ Section Styles */
.contact-faq {
    padding: 80px 0;
    background: white;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(226, 62, 122, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    cursor: pointer;
    background: #f8f9fa;
    transition: background 0.3s ease;
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, rgba(226, 62, 122, 0.1), rgba(81, 47, 141, 0.1));
}

.faq-question h3 {
    color: #333;
    font-size: 1.2em;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1.1em;
    transition: transform 0.3s ease;
    margin-left: 20px;
}

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

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

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 30px 25px;
}

.faq-answer p {
    color: #666;
    font-size: 1.05em;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form,
    .contact-details {
        padding: 30px 20px;
    }
    
    .contact-form h2,
    .contact-details h2 {
        font-size: 1.8em;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .method-item {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .method-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .social-links-contact {
        justify-content: center;
    }
    
    .map-content {
        padding: 25px 20px;
        margin: 20px;
    }
    
    .map-content h3 {
        font-size: 1.3em;
    }
    
    .faq-question {
        padding: 20px 25px;
    }
    
    .faq-question h3 {
        font-size: 1.1em;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 25px 20px;
    }
}

@media (max-width: 480px) {
    .contact-form,
    .contact-details {
        padding: 25px 15px;
    }
    
    .contact-form h2,
    .contact-details h2 {
        font-size: 1.6em;
    }
    
    .method-item {
        padding: 20px 15px;
    }
    
    .social-link {
        padding: 10px 15px;
        font-size: 0.9em;
    }
    
    .map-content {
        padding: 20px 15px;
        margin: 15px;
    }
    
    .map-content i {
        font-size: 2.5em;
    }
    
    .map-content h3 {
        font-size: 1.2em;
    }
    
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-question h3 {
        font-size: 1em;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 18px;
    }
    
    .submit-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}

/* Resources Page Specific Styles */
.resources-hero {
    background: linear-gradient(rgba(81, 47, 141, 0.9), rgba(226, 62, 122, 0.9)), url('images/sample.png');
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    color: white;
    text-align: center;
}

.resources-hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: 700;
}

.resources-hero p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.resources-categories {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.category-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.category-card:hover::before {
    transform: scaleX(1);
}

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

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
}

.category-icon i {
    color: white;
    font-size: 2em;
}

.category-card h3 {
    color: #333;
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: 600;
}

.category-card p {
    color: #666;
    font-size: 1.05em;
    line-height: 1.6;
    margin-bottom: 25px;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
}

.category-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* News & Updates Section */
.news-updates {
    padding: 80px 0;
    background: white;
}

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

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

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

.news-card.featured {
    grid-column: span 2;
}

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

.news-card.featured .news-image {
    height: 300px;
}

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

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

.news-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 500;
}

.news-content {
    padding: 30px;
}

.news-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.news-date {
    color: #666;
    font-size: 0.9em;
}

.news-category {
    color: var(--primary-color);
    font-size: 0.9em;
    font-weight: 500;
}

.news-content h3 {
    color: #333;
    font-size: 1.3em;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.news-card.featured .news-content h3 {
    font-size: 1.5em;
}

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

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

.read-more:hover {
    color: var(--secondary-color);
    gap: 12px;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Educational Content Section */
.educational-content {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.education-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.education-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.education-card:hover::before {
    transform: scaleX(1);
}

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

.education-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.education-card:hover .education-icon {
    transform: scale(1.1);
}

.education-icon i {
    color: white;
    font-size: 1.5em;
}

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

.education-card p {
    color: #666;
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.education-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.read-time {
    color: #666;
    font-size: 0.9em;
    display: flex;
    align-items: center;
    gap: 5px;
}

.difficulty {
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8em;
    font-weight: 500;
}

.difficulty.beginner {
    background: #e8f5e8;
    color: #2e7d32;
}

.difficulty.intermediate {
    background: #fff3e0;
    color: #f57c00;
}

.difficulty.advanced {
    background: #ffebee;
    color: #c62828;
}

.education-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
}

.education-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

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

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

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

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

.case-study-image {
    height: 250px;
    overflow: hidden;
}

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

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

.case-study-content {
    padding: 30px;
}

.case-study-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.case-category {
    color: var(--primary-color);
    font-size: 0.9em;
    font-weight: 500;
    padding: 5px 12px;
    background: rgba(226, 62, 122, 0.1);
    border-radius: 15px;
}

.case-date {
    color: #666;
    font-size: 0.9em;
}

.case-study-content h3 {
    color: #333;
    font-size: 1.4em;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.case-study-content p {
    color: #666;
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.case-results {
    margin-bottom: 25px;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
}

.result-item i {
    color: #4caf50;
    font-size: 1.1em;
}

.result-item span {
    color: #333;
    font-size: 0.95em;
}

.case-study-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 12px 25px;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
}

.case-study-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

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

.newsletter-content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: 700;
}

.newsletter-content p {
    font-size: 1.2em;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.newsletter-form .form-group {
    display: flex;
    gap: 15px;
    background: white;
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.newsletter-form input[type="email"] {
    flex: 1;
    border: none;
    padding: 15px 25px;
    border-radius: 25px;
    font-size: 1em;
    outline: none;
}

.newsletter-form button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.form-checkbox input[type="checkbox"] {
    width: auto;
}

.form-checkbox label {
    color: white;
    font-size: 0.95em;
    margin: 0;
}

/* Responsive Design for Resources Page */
@media (max-width: 768px) {
    .resources-hero h1 {
        font-size: 2.2em;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-card.featured {
        grid-column: span 1;
    }
    
    .education-grid {
        grid-template-columns: 1fr;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
        border-radius: 20px;
    }
    
    .newsletter-form input[type="email"] {
        border-radius: 15px;
    }
    
    .newsletter-form button {
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .resources-hero {
        padding: 100px 0 60px;
    }
    
    .resources-hero h1 {
        font-size: 1.8em;
    }
    
    .resources-hero p {
        font-size: 1em;
    }
    
    .category-card,
    .education-card {
        padding: 25px 20px;
    }
    
    .news-content,
    .case-study-content {
        padding: 25px 20px;
    }
    
    .newsletter-content h2 {
        font-size: 2em;
    }
    
    .newsletter-content p {
        font-size: 1.1em;
    }
}

/* Partners Page Specific Styles */
.partners-hero {
    background: linear-gradient(rgba(81, 47, 141, 0.9), rgba(226, 62, 122, 0.9)), url('images/sample.png');
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    color: white;
    text-align: center;
}

.partners-hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: 700;
}

.partners-hero p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.partners-overview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.partner-stat {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-number {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.1em;
    opacity: 0.9;
}

/* Partnership Philosophy Section */
.partnership-philosophy {
    padding: 80px 0;
    background: white;
}

.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.philosophy-text h3 {
    color: var(--primary-color);
    font-size: 2em;
    margin-bottom: 20px;
    font-weight: 600;
}

.philosophy-text p {
    color: #666;
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 20px;
}

.partnership-values {
    margin-top: 30px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.value-item i {
    color: var(--primary-color);
    font-size: 1.5em;
    margin-top: 5px;
}

.value-item h4 {
    color: #333;
    font-size: 1.2em;
    margin-bottom: 8px;
    font-weight: 600;
}

.value-item p {
    color: #666;
    font-size: 0.95em;
    line-height: 1.6;
    margin: 0;
}

.philosophy-visual {
    text-align: center;
}

.collaboration-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.collaboration-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

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

/* Academic Partners Section */
.academic-partners {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.partner-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.partner-card:hover::before {
    transform: scaleX(1);
}

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

.partner-logo {
    width: 200px;
    height: 100px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partner-card h3 {
    color: #333;
    font-size: 1.4em;
    margin-bottom: 15px;
    font-weight: 600;
}

.partner-card p {
    color: #666;
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.partner-focus {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.focus-tag {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85em;
    font-weight: 500;
}

/* Clinical Organizations Section */
.clinical-organizations {
    padding: 80px 0;
    background: white;
}

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

.organization-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.organization-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.org-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.organization-card:hover .org-icon {
    transform: scale(1.1);
}

.org-icon i {
    color: white;
    font-size: 2em;
}

.organization-card h3 {
    color: #333;
    font-size: 1.4em;
    margin-bottom: 15px;
    font-weight: 600;
}

.organization-card p {
    color: #666;
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 25px;
}

.org-benefits {
    list-style: none;
    padding: 0;
    text-align: left;
}

.org-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #333;
    font-size: 0.95em;
}

.org-benefits li i {
    color: #4caf50;
    font-size: 1em;
}

/* Industry Partnerships Section */
.industry-partnerships {
    padding: 80px 0;
    background: #f8f9fa;
}

.industry-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.industry-text h3 {
    color: var(--primary-color);
    font-size: 2em;
    margin-bottom: 20px;
    font-weight: 600;
}

.industry-text p {
    color: #666;
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 20px;
}

.partnership-areas {
    margin-top: 30px;
}

.area-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.area-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.area-item i {
    color: var(--primary-color);
    font-size: 1.5em;
    margin-top: 5px;
}

.area-item h4 {
    color: #333;
    font-size: 1.2em;
    margin-bottom: 8px;
    font-weight: 600;
}

.area-item p {
    color: #666;
    font-size: 0.95em;
    line-height: 1.6;
    margin: 0;
}

.industry-visual {
    text-align: center;
}

.industry-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
}

.logo-item {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.logo-item img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%);
}

/* Brightlands Campus Section */
.brightlands-campus {
    padding: 80px 0;
    background: white;
}

.campus-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.campus-visual {
    text-align: center;
}

.campus-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.campus-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

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

.campus-info h3 {
    color: var(--primary-color);
    font-size: 2em;
    margin-bottom: 20px;
    font-weight: 600;
}

.campus-info p {
    color: #666;
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 20px;
}

.campus-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.benefit-item i {
    color: var(--primary-color);
    font-size: 1.3em;
}

.benefit-item span {
    color: #333;
    font-weight: 500;
}

/* Become a Partner Section */
.become-partner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.partnership-opportunities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.opportunity-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.opportunity-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.opportunity-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.opportunity-card:hover .opportunity-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.opportunity-icon i {
    color: white;
    font-size: 2em;
}

.opportunity-card h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    font-weight: 600;
}

.opportunity-card p {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.9;
}

.opportunity-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 12px 25px;
    border: 2px solid white;
    border-radius: 25px;
    transition: all 0.3s ease;
}

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

/* Responsive Design for Partners Page */
@media (max-width: 768px) {
    .partners-hero h1 {
        font-size: 2.2em;
    }
    
    .partners-overview {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .philosophy-content,
    .industry-content,
    .campus-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .organizations-grid {
        grid-template-columns: 1fr;
    }
    
    .partnership-opportunities {
        grid-template-columns: 1fr;
    }
    
    .campus-benefits {
        grid-template-columns: 1fr;
    }
    
    .industry-logos {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .partners-hero {
        padding: 100px 0 60px;
    }
    
    .partners-hero h1 {
        font-size: 1.8em;
    }
    
    .partners-hero p {
        font-size: 1em;
    }
    
    .partners-overview {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .partner-card,
    .organization-card,
    .opportunity-card,
    .partner-stat {
        padding: 30px 20px;
    }
    
    .value-item,
    .area-item {
        padding: 15px;
    }
    
    .industry-logos {
        grid-template-columns: 1fr;
    }
}

/* Clinical Trials Page Specific Styles */
.trials-hero {
    background: linear-gradient(rgba(81, 47, 141, 0.9), rgba(226, 62, 122, 0.9)), url('images/sample.png');
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    color: white;
    text-align: center;
}

.trials-hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: 700;
}

.trials-hero p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.trials-overview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.trial-stat {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.trial-stat:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.1em;
    opacity: 0.9;
}

/* Current Status Section */
.current-status-trials {
    padding: 80px 0;
    background: white;
}

.status-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.status-text h3 {
    color: var(--primary-color);
    font-size: 2em;
    margin-bottom: 20px;
    font-weight: 600;
}

.status-text p {
    color: #666;
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 20px;
}

.current-milestones {
    margin-top: 30px;
}

.milestone-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.milestone-item:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

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

.milestone-icon i {
    color: white;
    font-size: 1.2em;
}

.milestone-content h4 {
    color: #333;
    font-size: 1.2em;
    margin-bottom: 8px;
    font-weight: 600;
}

.milestone-content p {
    color: #666;
    font-size: 0.95em;
    line-height: 1.6;
    margin-bottom: 10px;
}

.milestone-status {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85em;
    font-weight: 500;
}

.milestone-status.completed {
    background: #e8f5e8;
    color: #2e7d32;
}

.milestone-status.in-progress {
    background: #fff3e0;
    color: #f57c00;
}

.milestone-status.planned {
    background: #e3f2fd;
    color: #1976d2;
}

.status-visual {
    text-align: center;
}

.timeline-visual {
    position: relative;
    padding: 20px 0;
}

.timeline-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: #e0e0e0;
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    z-index: 2;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #e0e0e0;
    border: 4px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-right: 20px;
    flex-shrink: 0;
}

.timeline-item.completed .timeline-dot {
    background: #4caf50;
}

.timeline-item.active .timeline-dot {
    background: var(--primary-color);
    animation: pulse 2s infinite;
}

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

.timeline-content h4 {
    color: #333;
    font-size: 1.1em;
    margin-bottom: 5px;
    font-weight: 600;
}

.timeline-content p {
    color: #666;
    font-size: 0.9em;
    margin: 0;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Ongoing Trials Section */
.ongoing-trials {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.no-trials-message {
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.no-trials-icon i {
    color: white;
    font-size: 3em;
}

.no-trials-message h3 {
    color: #333;
    font-size: 2em;
    margin-bottom: 20px;
    font-weight: 600;
}

.no-trials-message p {
    color: #666;
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.step-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.step-item:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.step-item i {
    font-size: 1.2em;
}

.step-item i.fa-check-circle {
    color: #4caf50;
}

.step-item i.fa-clock {
    color: #ff9800;
}

.step-item span {
    color: #333;
    font-weight: 500;
}

/* Past Trials Section */
.past-trials {
    padding: 80px 0;
    background: white;
}

.past-trials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.trial-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.trial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.trial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

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

.trial-icon i {
    color: white;
    font-size: 1.2em;
}

.trial-status {
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85em;
    font-weight: 500;
}

.trial-status.completed {
    background: #e8f5e8;
    color: #2e7d32;
}

.trial-card h3 {
    color: #333;
    font-size: 1.3em;
    margin-bottom: 15px;
    font-weight: 600;
}

.trial-card p {
    color: #666;
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.trial-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.detail-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.detail-item .label {
    color: #666;
    font-size: 0.9em;
}

.detail-item .value {
    color: #333;
    font-weight: 500;
}

/* How to Participate Section */
.how-to-participate {
    padding: 80px 0;
    background: #f8f9fa;
}

.participation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 40px;
}

.participation-info h3 {
    color: var(--primary-color);
    font-size: 2em;
    margin-bottom: 20px;
    font-weight: 600;
}

.participation-info p {
    color: #666;
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 20px;
}

.participation-requirements {
    margin-top: 30px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.participation-requirements h4 {
    color: #333;
    font-size: 1.3em;
    margin-bottom: 15px;
    font-weight: 600;
}

.participation-requirements ul {
    list-style: none;
    padding: 0;
}

.participation-requirements li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #333;
    font-size: 1em;
}

.participation-requirements li i {
    color: #4caf50;
    font-size: 1.1em;
}

.participation-form {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.form-container {
    padding: 40px;
}

.form-container h3 {
    color: var(--primary-color);
    font-size: 1.8em;
    margin-bottom: 15px;
    font-weight: 600;
}

.form-container p {
    color: #666;
    font-size: 1em;
    margin-bottom: 30px;
    line-height: 1.6;
}

.interest-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.interest-form .form-group {
    position: relative;
}

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

.interest-form .form-group input,
.interest-form .form-group select,
.interest-form .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1em;
    transition: all 0.3s ease;
    background: white;
}

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

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

.interest-form .checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.interest-form .checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
}

.interest-form .checkbox-group label {
    margin-bottom: 0;
    font-size: 0.95em;
    line-height: 1.5;
}

.interest-form .submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(226, 62, 122, 0.3);
}

.interest-form .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(226, 62, 122, 0.4);
}

.interest-form .submit-btn i {
    transition: transform 0.3s ease;
}

.interest-form .submit-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Design for Clinical Trials Page */
@media (max-width: 768px) {
    .trials-hero h1 {
        font-size: 2.2em;
    }
    
    .trials-overview {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .status-content,
    .participation-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .past-trials-grid {
        grid-template-columns: 1fr;
    }
    
    .preparation-steps {
        grid-template-columns: 1fr;
    }
    
    .timeline-visual::before {
        display: none;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-dot {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .trials-hero {
        padding: 100px 0 60px;
    }
    
    .trials-hero h1 {
        font-size: 1.8em;
    }
    
    .trials-hero p {
        font-size: 1em;
    }
    
    .trials-overview {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .trial-card,
    .milestone-item,
    .trial-stat {
        padding: 25px 20px;
    }
    
    .no-trials-message {
        padding: 40px 25px;
    }
    
    .form-container {
        padding: 30px 25px;
    }
    
    .participation-requirements {
        padding: 20px;
    }
}

.partners-overview .stat-number {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: unset;
}

.trials-overview .stat-number {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: unset;
}