body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    background-color: #0f172a;
    background-image:
        radial-gradient(at 0% 0%, rgba(0, 165, 178, 0.05) 0%, transparent 50%),
        radial-gradient(at 100% 100%, rgba(0, 165, 178, 0.03) 0%, transparent 50%);
    color: #f1f5f9;
    min-height: 100vh;
}

/* Typography Consistency */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    color: #f1f5f9;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.1;
}

h2 {
    font-size: 2rem;
    line-height: 1.2;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.3;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    color: #cbd5e1;
}

.text-base {
    font-size: 1rem;
    line-height: 1.6;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.6;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.6;
}

/* Section Headings */
section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

section p {
    font-size: 1rem;
    color: #94a3b8;
}

.gradient-overlay {
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.95) 0%, rgba(5, 150, 105, 0.9) 100%);
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.stat-card {
    background: #00A5B2;
}

.hero-slide {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-slider {
    position: relative;
    overflow: hidden;
}

.hero-slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide-item.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    animation: slideInLeft 0.8s ease-out;
}

.hero-slide-content.content-right {
    animation: slideInRight 0.8s ease-out;
    text-align: right;
    margin-left: auto;
}

.hero-slide-content.content-right h1,
.hero-slide-content.content-right p,
.hero-slide-content.content-right .hero-buttons {
    text-align: right;
}

.hero-slide-content.content-right .hero-buttons a {
    display: inline-block;
}

.hero-buttons a.hidden {
    display: none !important;
}

.hero-slide-content.content-right .hero-description {
    margin-left: auto;
}

.hero-slide-content.content-left .hero-description {
    margin-right: auto;
}

.hero-slide-content.content-left {
    text-align: left;
}

.hero-slide-content.content-left h1,
.hero-slide-content.content-left p,
.hero-slide-content.content-left .hero-buttons {
    text-align: left;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slider-indicator {
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-indicator.active {
    background-color: white;
    transform: scale(1.2);
}

.partners-slider {
    overflow: hidden;
    position: relative;
}

.partners-track {
    display: flex;
    animation: slidePartners 30s linear infinite;
}

.partners-track:hover {
    animation-play-state: paused;
}

@keyframes slidePartners {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.partner-logo {
    flex-shrink: 0;
    width: 200px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-logo img {
    max-width: 150px;
    max-height: 60px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%) opacity(1);
}

/* Consistent Card Styling */
.card-section {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(100, 116, 139, 0.3);
    backdrop-filter: blur(10px);
}

/* Smooth Transitions */
* {
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}