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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
}

.transparent-nav {
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #64ffda !important;
    letter-spacing: 0.5px;
}

.nav-link {
    color: #ccd6f6 !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #64ffda !important;
}

#heroCarousel {
    margin-top: 56px;
}

.carousel-item {
    height: 100vh;
    min-height: 600px;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    filter: brightness(0.6);
}

.carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    z-index: 10;
}

.carousel-caption h1 {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1s ease;
}

.carousel-caption p {
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1.2s ease;
}

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

.btn-primary {
    background: linear-gradient(135deg, #0a7ea4 0%, #0d9488 100%);
    border: none;
    padding: 12px 32px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(10, 126, 164, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 126, 164, 0.4);
    background: linear-gradient(135deg, #0d9488 0%, #0a7ea4 100%);
}

.section-content {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
}

.section-content h2 {
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.section-content .lead {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
}

.section-content img {
    transition: transform 0.3s ease;
}

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

.section-content ul li {
    color: #334155;
    font-size: 1.05rem;
    padding-left: 0.5rem;
}

.shadow-lg {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1) !important;
}

.footer {
    background: linear-gradient(135deg, #0a192f 0%, #112240 100%);
    color: #8892b0;
    padding: 60px 0 30px;
}

.footer h5 {
    color: #ccd6f6;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer a {
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #64ffda !important;
}

.footer hr {
    opacity: 0.1;
}

@media (max-width: 991px) {
    .carousel-item {
        height: 70vh;
        min-height: 500px;
    }

    .carousel-caption h1 {
        font-size: 2rem;
    }

    .section-content {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .carousel-caption h1 {
        font-size: 1.5rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }

    .btn-lg {
        padding: 10px 24px;
        font-size: 1rem;
    }
}
