@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Color Palette derived from logo */
    --color-primary: #0077B6; /* Vibrant Blue */
    --color-secondary: #00B4D8; /* Light Blue */
    --color-accent: #90BE6D; /* Fresh Green */
    
    /* Backgrounds */
    --bg-white: #ffffff;
    --bg-light: #f4f8fb;
    --bg-gradient: linear-gradient(135deg, #f4f8fb 0%, #e0effc 100%);
    
    /* Typography Colors */
    --text-dark: #1e293b; /* Soft dark grey for headings */
    --text-body: #475569; /* Muted slate for body text */
    --text-light: #94a3b8;
    
    /* Effects */
    --shadow-sm: 0 4px 6px -1px rgba(0, 119, 182, 0.05), 0 2px 4px -1px rgba(0, 119, 182, 0.03);
    --shadow-md: 0 10px 25px -5px rgba(0, 119, 182, 0.08), 0 8px 10px -6px rgba(0, 119, 182, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 119, 182, 0.1), 0 10px 10px -5px rgba(0, 119, 182, 0.04);
    --shadow-glow: 0 0 20px rgba(0, 180, 216, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

/* Base Styles */
body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-body);
    background-color: var(--bg-white);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Premium Typography Utilities */
.text-gradient {
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section Styling */
.section-padding {
    padding: 100px 0;
}

.bg-light-section {
    background: var(--bg-gradient);
}

/* Buttons */
.btn-premium {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    color: white;
}

.btn-premium-outline {
    display: inline-block;
    background: transparent;
    color: var(--color-primary);
    padding: 12px 30px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1.05rem;
    border: 2px solid var(--color-primary);
    cursor: pointer;
    transition: all var(--transition-smooth);
    text-align: center;
}

.btn-premium-outline:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Navbar Premium (Glassmorphism) */
.navbar-premium {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 119, 182, 0.05);
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
    transition: all var(--transition-smooth);
}

.navbar-brand img {
    height: 50px;
    transition: transform var(--transition-smooth);
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link.premium-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1.1rem;
    padding: 10px 20px !important;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link.premium-link:hover, .nav-link.premium-link.active {
    color: var(--color-primary);
}

.nav-link.premium-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transition: all var(--transition-smooth);
    transform: translateX(-50%);
    border-radius: 3px;
}

.nav-link.premium-link:hover::after, .nav-link.premium-link.active::after {
    width: 60%;
}

/* Hero Section */
.hero-premium {
    padding: 180px 0 120px;
    background: var(--bg-gradient);
    position: relative;
    overflow: hidden;
}

.hero-premium::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,180,216,0.1) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 0;
}

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

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-body);
    max-width: 600px;
    margin-bottom: 40px;
}

/* Premium Cards */
.card-premium {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    border: 1px solid rgba(0, 119, 182, 0.05);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-smooth);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.card-premium:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border-color: rgba(0, 180, 216, 0.2);
}

.card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-smooth);
}

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

.card-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-full);
    background: rgba(0, 180, 216, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--color-primary);
    margin-bottom: 25px;
    transition: all var(--transition-smooth);
}

.card-premium:hover .card-icon-wrapper {
    background: var(--color-primary);
    color: white;
    transform: rotate(10deg) scale(1.1);
}

.card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Stats Counter Section */
.stats-premium {
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 50px 20px;
    transform: translateY(-50px);
    z-index: 10;
    position: relative;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-body);
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 180, 216, 0.1);
    color: var(--color-primary);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

/* Images and Media */
.img-premium {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-smooth);
}

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

.img-blob {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
    0%, 100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    34% { border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%; }
    67% { border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%; }
}

/* Footer Premium */
.footer-premium {
    background: #0A1128; /* The only dark part, strictly for footer contrast if needed, but wait! User said "no dark colors". I will use a cool light blue footer instead */
    background: var(--bg-light);
    border-top: 1px solid rgba(0, 119, 182, 0.1);
    padding: 80px 0 30px;
    color: var(--text-body);
}

.footer-premium h3 {
    color: var(--text-dark);
    font-size: 1.4rem;
    margin-bottom: 25px;
}

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

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

.footer-links a {
    color: var(--text-body);
    font-weight: 500;
    transition: all var(--transition-fast);
}

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

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: var(--radius-full);
    background: white;
    color: var(--color-primary);
    box-shadow: var(--shadow-sm);
    margin-right: 15px;
    font-size: 1.2rem;
    transition: all var(--transition-smooth);
}

.social-icons a:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 119, 182, 0.1);
    text-align: center;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3.2rem;
    }
    .hero-premium {
        padding: 140px 0 80px;
    }
    .stats-premium {
        transform: translateY(0);
        margin-top: 40px;
        box-shadow: none;
        border: 1px solid rgba(0, 119, 182, 0.05);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .section-padding {
        padding: 60px 0;
    }
    .stat-number {
        font-size: 2.5rem;
    }
}

/* Timeline Premium */
.timeline-premium { position: relative; max-width: 900px; margin: 0 auto; padding: 40px 0; }
.timeline-premium::after { content: ''; position: absolute; width: 4px; background: linear-gradient(180deg, var(--color-primary), var(--color-secondary)); top: 0; bottom: 0; left: 50%; margin-left: -2px; border-radius: 4px; }
.timeline-item { padding: 10px 40px; position: relative; background-color: inherit; width: 50%; box-sizing: border-box; }
.timeline-item:nth-child(odd) { left: 0; }
.timeline-item:nth-child(even) { left: 50%; }
.timeline-number { position: absolute; width: 50px; height: 50px; right: -25px; background-color: white; border: 4px solid var(--color-primary); top: 15px; border-radius: 50%; z-index: 1; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.2rem; color: var(--color-primary); box-shadow: var(--shadow-md); transition: all var(--transition-smooth); }
.timeline-item:nth-child(even) .timeline-number { left: -25px; }
.timeline-content { padding: 30px; background: white; position: relative; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); transition: all var(--transition-smooth); border: 1px solid rgba(0, 119, 182, 0.05); }
.timeline-item:hover .timeline-content { transform: translateY(-5px); box-shadow: var(--shadow-lg), var(--shadow-glow); }
.timeline-item:hover .timeline-number { background-color: var(--color-primary); color: white; transform: scale(1.1); }
@media screen and (max-width: 768px) { .timeline-premium::after { left: 31px; } .timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; } .timeline-item:nth-child(even) { left: 0%; } .timeline-number, .timeline-item:nth-child(even) .timeline-number { left: 6px; } }
