/* Reset and Base Styles */

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

body {
font-family: ‘Inter’, -apple-system, BlinkMacSystemFont, ‘Segoe UI’, Roboto, sans-serif;
line-height: 1.6;
color: #1e293b;
background: #ffffff;
overflow-x: hidden;
}

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

/* Navigation */
.nav {
position: fixed;
top: 0;
width: 100%;
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(20px);
border-bottom: 1px solid rgba(30, 41, 59, 0.1);
z-index: 1000;
transition: background 0.3s ease;
}

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

.logo {
display: flex;
align-items: center;
}

.logo-text {
font-family: ‘Inter’, sans-serif;
font-size: 1.5rem;
font-weight: 600;
color: #1e293b;
letter-spacing: -0.01em;
}

.nav-buttons {
display: flex;
gap: 16px;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline {
padding: 10px 20px;
border-radius: 6px;
font-size: 14px;
font-weight: 500;
text-decoration: none;
border: none;
cursor: pointer;
transition: all 0.3s ease;
font-family: ‘Inter’, sans-serif;
}

.btn-primary {
background: #1e3a8a;
color: white;
box-shadow: 0 2px 8px rgba(30, 58, 138, 0.25);
}

.btn-primary:hover {
background: #1e40af;
transform: translateY(-1px);
box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.btn-secondary {
background: rgba(30, 41, 59, 0.05);
color: #1e293b;
border: 1px solid rgba(30, 41, 59, 0.2);
}

.btn-secondary:hover {
background: rgba(30, 41, 59, 0.1);
border-color: rgba(30, 41, 59, 0.3);
}

.btn-outline {
background: transparent;
color: #1e293b;
border: 1px solid rgba(30, 41, 59, 0.3);
}

.btn-outline:hover {
background: rgba(30, 41, 59, 0.05);
border-color: rgba(30, 41, 59, 0.5);
}

.btn-primary.large, .btn-outline.large {
padding: 14px 28px;
font-size: 14px;
}

/* Hero Section */
.hero {
position: relative;
min-height: 100vh;
display: flex;
align-items: center;
overflow: hidden;
background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.hero-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background:
radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
radial-gradient(circle at 80% 20%, rgba(26, 54, 93, 0.05) 0%, transparent 50%);
}

.hero-content {
position: relative;
z-index: 2;
max-width: 700px;
animation: fadeInUp 1s ease-out;
}

.hero-title {
font-family: ‘Inter’, sans-serif;
font-size: clamp(2.5rem, 6vw, 4rem);
font-weight: 600;
line-height: 1.2;
margin-bottom: 20px;
letter-spacing: -0.02em;
color: #1e293b;
}

.gradient-text {
background: linear-gradient(135deg, #1e3a8a, #3b82f6);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.hero-subtitle {
font-size: 16px;
color: #64748b;
margin-bottom: 28px;
line-height: 1.6;
font-weight: 400;
}

.hero-highlight {
display: flex;
align-items: center;
gap:16px;
background: rgba(30, 58, 138, 0.05);
border: 1px solid rgba(30, 58, 138, 0.15);
border-radius: 8px;
padding: 18px;
margin-bottom: 32px;
transition: all 0.3s ease;
}

.hero-highlight:hover {
background: rgba(30, 58, 138, 0.08);
border-color: rgba(30, 58, 138, 0.25);
transform: translateY(-1px);
}

.highlight-icon {
display: flex;
justify-content: center;
align-items: center;
}

.hero-highlight p {
color: #1e293b;
font-weight: 500;
font-size: 14px;
}

.hero-buttons {
display: flex;
gap: 20px;
flex-wrap: wrap;
}

/* Services Section */
.services {
padding: 100px 0;
background: #ffffff;
}

.section-title {
font-family: ‘Times New Roman’, serif;
font-size: 32px;
font-weight: 400;
text-align: center;
margin-bottom: 50px;
letter-spacing: 0.02em;
color: #1a365d;
}

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

.service-card {
background: #ffffff;
border: 1px solid #e2e8f0;
border-radius: 8px;
padding: 32px 24px;
text-align: center;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}

.service-card:hover {
transform: translateY(-4px);
box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
border-color: #cbd5e1;
}

.service-icon {
margin-bottom: 16px;
display: flex;
justify-content: center;
}

.service-icon svg {
filter: drop-shadow(0 2px 4px rgba(37, 99, 235, 0.15));
}

.service-card h3 {
font-family: ‘Times New Roman’, serif;
font-size: 18px;
font-weight: 400;
margin-bottom: 12px;
color: #1a365d;
letter-spacing: 0.01em;
}

.service-card p {
color: #64748b;
line-height: 1.5;
font-size: 14px;
}

/* Partnership Section */
.partnership {
padding: 100px 0;
background: #f8fafc;
}

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

.partnership-text h2 {
font-size: 32px;
font-weight: 600;
margin-bottom: 20px;
letter-spacing: -0.01em;
color: #1a365d;
}

.partnership-text p {
font-size: 16px;
color: #64748b;
margin-bottom: 32px;
line-height: 1.6;
}

.partnership-stats {
display: flex;
gap: 32px;
margin-bottom: 32px;
}

.stat {
display: flex;
flex-direction: column;
align-items: center;
}

.stat-number {
font-size: 28px;
font-weight: 700;
color: #2563eb;
margin-bottom: 6px;
}

.stat-label {
font-size: 12px;
color: #64748b;
text-align: center;
font-weight: 500;
}

.partnership-positions {
background: #ffffff;
border: 1px solid #e2e8f0;
border-radius: 8px;
padding: 32px;
}

.partnership-positions h3 {
font-size: 20px;
font-weight: 600;
margin-bottom: 24px;
color: #1a365d;
}

.position-list {
margin-bottom: 24px;
}

.position-item {
display: flex;
justify-content: space-between;
align-items: center;
padding: 12px 0;
border-bottom: 1px solid #e2e8f0;
transition: all 0.3s ease;
}

.position-item:hover {
padding-left: 4px;
background: rgba(37, 99, 235, 0.02);
}

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

.position-title {
font-weight: 400;
color: #1a365d;
font-size: 14px;
font-family: ‘Times New Roman’, serif;
}

.position-type {
font-size: 12px;
color: #64748b;
background: #f1f5f9;
padding: 2px 8px;
border-radius: 12px;
font-weight: 500;
}

/* CTA Section */
.cta {
padding: 100px 0;
background: #ffffff;
text-align: center;
}

.cta-content h2 {
font-family: ‘Times New Roman’, serif;
font-size: 32px;
font-weight: 400;
margin-bottom: 20px;
letter-spacing: 0.02em;
color: #1a365d;
}

.cta-content p {
font-size: 16px;
color: #64748b;
margin-bottom: 32px;
max-width: 560px;
margin-left: auto;
margin-right: auto;
line-height: 1.6;
}

/* Footer */
.footer {
background: #f8fafc;
border-top: 1px solid #e2e8f0;
padding: 50px 0 24px;
}

.footer-content {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
gap: 40px;
align-items: start;
margin-bottom: 32px;
}

.footer-contact h4 {
font-family: ‘Times New Roman’, serif;
font-size: 16px;
font-weight: 400;
color: #1a365d;
margin-bottom: 12px;
letter-spacing: 0.01em;
}

.footer-contact p {
color: #64748b;
font-size: 13px;
line-height: 1.5;
margin-bottom: 8px;
}

.footer-contact a {
color: #2563eb;
text-decoration: none;
transition: color 0.3s ease;
}

.footer-contact a:hover {
color: #1d4ed8;
}

.footer-brand p {
color: #64748b;
margin-top: 0;
font-size: 14px;
}

.footer-links {
display: flex;
gap: 24px;
}

.footer-link {
color: #64748b;
text-decoration: none;
transition: color 0.3s ease;
font-size: 14px;
}

.footer-link:hover {
color: #1a365d;
}

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

.social-link {
color: #64748b;
transition: color 0.3s ease;
}

.social-link:hover {
color: #2563eb;
}

.footer-bottom {
text-align: center;
padding-top: 24px;
border-top: 1px solid #e2e8f0;
}

.footer-bottom p {
color: #94a3b8;
font-size: 12px;
}

/* Modal */
.modal {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.6);
backdrop-filter: blur(8px);
z-index: 2000;
animation: fadeIn 0.3s ease;
}

.modal.active {
display: flex;
align-items: center;
justify-content: center;
}

.modal-content {
background: #ffffff;
border: 1px solid #e2e8f0;
border-radius: 8px;
padding: 32px;
width: 90%;
max-width: 480px;
max-height: 90vh;
overflow-y: auto;
animation: slideUp 0.3s ease;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.modal-header h3 {
font-family: ‘Times New Roman’, serif;
font-size: 20px;
font-weight: 400;
color: #1a365d;
letter-spacing: 0.01em;
}

.modal-close {
background: none;
border: none;
color: #64748b;
font-size: 24px;
cursor: pointer;
padding: 0;
width: 28px;
height: 28px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 6px;
transition: all 0.3s ease;
}

.modal-close:hover {
background: #f1f5f9;
color: #1a365d;
}

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

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

.form-group label {
font-size: 13px;
font-weight: 400;
color: #1a365d;
font-family: ‘Times New Roman’, serif;
}

.form-group select,
.form-group input {
background: #ffffff;
border: 1px solid #e2e8f0;
border-radius: 6px;
padding: 10px 12px;
color: #1a365d;
font-size: 13px;
font-family: ‘Times New Roman’, serif;
transition: all 0.3s ease;
}

.form-group select:focus,
.form-group input:focus {
outline: none;
border-color: #2563eb;
box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group select option {
background: #ffffff;
color: #1a365d;
}

/* Responsive Design */
@media (max-width: 768px) {
.nav-container {
padding: 0 16px;
height: 60px;
}

```
.nav-buttons {
    gap: 8px;
}

.btn-primary, .btn-secondary, .btn-outline {
    padding: 8px 14px;
    font-size: 12px;
}

.hero-title {
    font-size: 2.2rem;
}

.hero-buttons {
    flex-direction: column;
    align-items: stretch;
}

.hero-highlight {
    flex-direction: column;
    text-align: center;
}

.services, .partnership, .cta {
    padding: 60px 0;
}

.section-title {
    font-size: 24px;
}

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

.partnership-content {
    grid-template-columns: 1fr;
    gap: 40px;
}

.partnership-stats {
    justify-content: center;
    gap: 20px;
}

.partnership-text h2,
.cta-content h2 {
    font-size: 24px;
}

.footer-content {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
}

.footer-links {
    justify-content: center;
}

.modal-content {
    padding: 24px 20px;
    margin: 20px;
}

.modal-header h3 {
    font-size: 18px;
}
```

}

@media (max-width: 480px) {
.container {
padding: 0 16px;
}

```
.hero-title {
    font-size: 1.8rem;
}

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

.section-title {
    font-size: 22px;
}

.partnership-text h2,
.cta-content h2 {
    font-size: 22px;
}

.partnership-stats {
    flex-direction: column;
    gap: 16px;
}

.stat-number {
    font-size: 24px;
}
```

}

/* Animation keyframes */
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}

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

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

/* Smooth scrolling */
html {
scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
width: 6px;
}

::-webkit-scrollbar-track {
background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
background: #cbd5e1;
border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
background: #94a3b8;
}
