body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background: linear-gradient(to bottom, #A7C5E1, #F0E7E9); 
}

/* Header */
.header {
    background-color: transparent; 
    color: white;
    padding: 10px;
    position: fixed; 
    width: 100%; 
    z-index: 1000; 
    transition: background-color 0.3s ease; 
    
}
.offcanvas {
    width: 250px; 
}


.nav-link {
    color: white;
    margin: 0 15px;
    text-transform: uppercase;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #f1faee;
}

.hero-section {
    position: relative;
    height: 80vh; 
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    width: 100%;
    overflow: hidden; 
}


.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('0413.png') center/cover no-repeat;
    opacity: 0.9;
    z-index: 1;
}


.hero-content {
    position: relative;
    z-index: 2; 
    color: #fff; 
}


.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-top: 1rem;
}

.btn-cta {
    padding: 10px 20px;
    font-size: 1.2rem;
    background-color: #007bff;
    border: none;
    color: white;
    text-transform: uppercase;
    transition: background-color 0.3s;
}

.btn-cta:hover {
    background-color: #0056b3;
}

.hero-content {
    padding: 20px;
    border-radius: 10px;
    background: none; 
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeIn 1.5s ease-in-out forwards;
}


.btn-cta {
    padding: 15px 30px;
    background-color: #e63946;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 50px;
    transition: background-color 0.3s ease;
}

.btn-cta:hover {
    background-color: #f77f00;
}


.highlight-card {
    transition: transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 80px;
    margin-bottom: 20px;
}

.about-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.about-section.visible {
    opacity: 100;
    transform: translateY(0);
}

.animated-card {
    transition: transform 0.3s;
}

.animated-card:hover {
    transform: scale(1.05);
}


/* Footer */
footer {
    background-color: #1d3557;
    color: white;
    padding: 40px 20px;
    margin-top: 40px;
}

.contacts h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contacts p {
    margin: 5px 0;
}

footer p {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 20px;
}

/* Animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }

    .btn-cta {
        padding: 10px 20px;
    }
}

.scrolled {
    background-color: #1d3557; 
    color: white; 
    opacity: 1;
}
