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

:root {
    --primary-color: #004d40; /* Deep Teal */
    --accent-color: #00bfa5; /* Teal Accent */
    --text-color: #333;
    --bg-light: #f4f6f8;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --card-bg: #ffffff;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Navbar */
nav {
    background: rgba(0, 77, 64, 0.9) !important;
    backdrop-filter: blur(10px);
    box-shadow: none !important;
    height: 80px;
    line-height: 80px;
}

nav .brand-logo img {
    height: 50px;
    margin-top: 15px;
    filter: brightness(0) invert(1); /* Make logo white if it isn't */
}

nav ul a {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Parallax Container */
.parallax-container {
    height: 600px; /* Taller hero */
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-container .section-title {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px 40px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.1);
}

.parallax-container h1 {
    font-size: 3.5rem;
    margin: 0;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: white;
}

.stats-section i {
    color: var(--primary-color);
    font-size: 4rem !important;
    margin-bottom: 15px;
}

.stats-section h5, .stats-section h4 {
    font-weight: 700;
    color: var(--primary-color);
    margin: 10px 0;
}

.stats-section p {
    font-size: 1.1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Cards */
.card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    background: white;
    height: 100%;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
}

.card .card-image {
    height: 200px;
    overflow: hidden;
}

.card .card-image img {
    object-fit: cover;
    height: 100%;
    transition: transform 0.5s ease;
}

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

.card .card-title {
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.card .card-content {
    padding: 24px;
}

.card .card-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* Footer */
.page-footer {
    background-color: #1a1a1a !important; /* Darker footer */
    padding-top: 40px;
}

.page-footer h5 {
    font-weight: 700;
    margin-bottom: 20px;
}

.page-footer a {
    color: var(--accent-color) !important;
}

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

.btn-custom {
    background: var(--primary-color);
    border-radius: 30px;
    padding: 0 30px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,77,64,0.3);
}

.btn-custom:hover {
    background: var(--accent-color);
    box-shadow: 0 6px 20px rgba(0,191,165,0.4);
}
