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

body {
    font-family: 'Times New Roman', serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffe5e5;
}

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

/* Header Styles */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.5s ease;
}

#header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(135, 206, 235, 0.3);
}

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

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #00b4ff;
    font-family: 'Times New Roman', serif;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: #4a5568;
    font-size: 18px;
    font-family: 'Times New Roman', serif;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #00b7ff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #00b4ff;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #f0f8ff 0%, #ffffff 50%, #e0ffff 100%);
}

.bg-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: pulse 4s ease-in-out infinite;
}

.bg-element-1 {
    top: 80px;
    left: 80px;
    width: 256px;
    height: 256px;
    background-color: rgba(135, 206, 235, 0.2);
}

.bg-element-2 {
    bottom: 80px;
    right: 80px;
    width: 384px;
    height: 384px;
    background-color: rgba(0, 206, 209, 0.2);
    animation-delay: 1s;
}

.bg-element-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    background-color: rgba(135, 206, 235, 0.3);
    filter: blur(40px);
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}

.hero-title {
    font-size: clamp(48px, 8vw, 128px);
    font-weight: bold;
    color: #2d3748;
    margin-bottom: 24px;
    line-height: 1.1;
    font-family: 'Times New Roman', serif;
}

.hero-accent {
    color: #00b6ff;
}

.hero-description {
    font-size: clamp(18px, 2.5vw, 24px);
    color: #4a5568;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-family: 'Times New Roman', serif;
}

.hero-card {
    display: inline-block;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(135, 206, 235, 0.5);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-card-subtitle {
    font-size: 14px;
    color: #718096;
    margin-bottom: 8px;
    font-family: 'Times New Roman', serif;
}

.hero-card-title {
    font-size: 24px;
    font-weight: bold;
    color: #00b4ff;
    font-family: 'Times New Roman', serif;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: bold;
    color: #2d3748;
    margin-bottom: 24px;
    font-family: 'Times New Roman', serif;
}

.section-divider {
    width: 96px;
    height: 4px;
    background-color: #87CEEB;
    margin: 0 auto 32px;
}

.section-subtitle {
    font-size: 20px;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Times New Roman', serif;
}

/* About Section */
.about {
    padding: 96px 0;
    background-color: #ffffff;
}

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

.about-paragraph {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 32px;
    line-height: 1.6;
    font-family: 'Times New Roman', serif;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.feature-icon-blue {
    background-color: rgba(135, 206, 235, 0.1);
}

.feature-icon-blue::after {
    content: '';
    width: 24px;
    height: 24px;
    background-color: #30c2ff;
    border-radius: 50%;
}

.feature-icon-cyan {
    background-color: rgba(0, 206, 209, 0.1);
}

.feature-icon-cyan::after {
    content: '';
    width: 24px;
    height: 24px;
    background-color: #00fbff;
    border-radius: 50%;
}

.feature-title {
    font-weight: bold;
    color: #2d3748;
    margin-bottom: 4px;
    font-family: 'Times New Roman', serif;
}

.feature-description {
    color: #4a5568;
    font-family: 'Times New Roman', serif;
}

.stats-card {
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.1) 0%, rgba(0, 206, 209, 0.1) 100%);
    border-radius: 24px;
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.stats-bg-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
}

.stats-bg-1 {
    top: 0;
    right: 0;
    width: 128px;
    height: 128px;
    background-color: rgba(255, 255, 255, 0.3);
}

.stats-bg-2 {
    bottom: 0;
    left: 0;
    width: 96px;
    height: 96px;
    background-color: rgba(135, 206, 235, 0.5);
}

.stats-content {
    position: relative;
    z-index: 10;
}

.stat-item {
    margin-bottom: 32px;
}

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

.stat-number {
    font-size: 32px;
    font-weight: bold;
    color: #4682B4;
    margin-bottom: 16px;
    font-family: 'Times New Roman', serif;
}

.stat-number-cyan {
    color: #11fff2;
}

.stat-description {
    color: #4a5568;
    font-family: 'Times New Roman', serif;
}

/* Services Section */
.services {
    padding: 96px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f0f8ff 100%);
}

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

.service-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(135, 206, 235, 0.1);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.5s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.service-icon {
    font-size: 32px;
    color: #00b5ff;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

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

.service-title {
    font-size: 20px;
    font-weight: bold;
    color: #2d3748;
    margin-bottom: 16px;
    font-family: 'Times New Roman', serif;
}

.service-description {
    color: #4a5568;
    line-height: 1.6;
    font-family: 'Times New Roman', serif;
}

/* Team Section */
.team {
    padding: 96px 0;
    background-color: #ffffff;
}

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

.team-member {
    text-align: center;
    transition: transform 0.5s ease;
}

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

.member-avatar {
    width: 192px;
    height: 192px;
    margin: 0 auto 24px;
    position: relative;
    transition: all 0.5s ease;
}

.team-member:hover .member-avatar {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.avatar-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.1) 0%, rgba(0, 206, 209, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-initial {
    width: 128px;
    height: 128px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #87CEEB;
    font-weight: bold;
}

.member-name {
    font-size: 20px;
    font-weight: bold;
    color: #2d3748;
    margin-bottom: 8px;
    font-family: 'Times New Roman', serif;
}

.member-role {
    color: #87CEEB;
    font-weight: 500;
    margin-bottom: 16px;
    font-family: 'Times New Roman', serif;
}

.member-bio {
    color: #4a5568;
    font-size: 14px;
    line-height: 1.6;
    font-family: 'Times New Roman', serif;
}

/* Footer */
.footer {
    padding: 64px 0;
    background: linear-gradient(180deg, #f0f8ff 0%, #ffffff 100%);
}

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

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: #87CEEB;
    margin-bottom: 16px;
    font-family: 'Times New Roman', serif;
}

.footer-description {
    color: #4a5568;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Times New Roman', serif;
}

.footer-divider {
    width: 96px;
    height: 4px;
    background-color: #87CEEB;
    margin: 0 auto 32px;
}

.footer-copyright {
    color: #718096;
    margin-bottom: 16px;
    font-family: 'Times New Roman', serif;
}

.footer-tagline {
    font-size: 14px;
    color: #a0aec0;
    font-family: 'Times New Roman', serif;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .hero-content {
        padding: 0 16px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .nav-container {
        padding: 0 16px;
    }
}