.no-js .hero-content,
.no-js .content-section {
    opacity: 1; /* Ensure visibility without animations */
}

/* General Styles */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background-color: #fff;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

h1, h2, h3, h4 {
    margin: 0;
}

p {
    line-height: 1.6;
}

ul {
    list-style-type: none;
    padding: 0;
}

/* Header Styles */
header {
    background-color: rgba(13, 110, 253, 0.8); /* Semi-transparent blue */
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(5px); /* For a futuristic look */
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10%;
}

.logo {
    font-size: 28px;
    color: #fff;
    font-weight: bold;
    letter-spacing: 2px;
}

.nav-links a {
    color: #fff;
    margin-left: 20px;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #d1e0ff;
}

/* Hero Section */
.hero {
    background: url('img/retail_background.webp') no-repeat center center/cover;
    height: 600px;
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for text visibility */
}

.hero-content {
    position: relative;
    opacity: 0;
}

.hero-content.animate {
    animation: fadeInUp 1s ease-in-out forwards;
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 24px;
    margin-bottom: 30px;
}

.btn {
    background-color: #fff;
    color: #0d6efd;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}

.btn:hover {
    background-color: #0d6efd;
    color: #fff;
}

/* Content Sections */
.content-section {
    padding: 80px 10%;
    text-align: center;
    opacity: 0;
}

.content-section.animate {
    animation: fadeInUp 1s ease-in-out forwards;
}

.content-section h2 {
    font-size: 40px;
    color: #0d6efd;
    margin-bottom: 50px;
    position: relative;
}

.content-section h2::after {
    content: '';
    width: 60px;
    height: 4px;
    background-color: #0d6efd;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.text-content, .image-content {
    flex: 1;
    min-width: 300px;
    margin: 20px;
}

.text-content ul {
    text-align: left;
}

.text-content li {
    margin-bottom: 15px;
    font-size: 18px;
}

.text-content li::before {
    content: '✔';
    color: #0d6efd;
    margin-right: 10px;
}

.image-content img {
    max-width: 100%;
    border-radius: 10px;
    opacity: 0;
}

.image-content img.animate {
    animation: fadeIn 2s ease-in-out forwards;
}

/* Packages */
.packages-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.package {
    background-color: #f9f9f9;
    margin: 20px;
    padding: 40px;
    border-radius: 10px;
    width: 300px;
    opacity: 0;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.package.animate {
    animation: slideUp 0.8s ease-in-out forwards;
}

.package:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.package-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.package-header img {
    width: 80px;
    margin-bottom: 20px;
}

.package-content {
    text-align: center;
}

.package-content p {
    font-size: 16px;
    margin-bottom: 20px;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Optional for better appearance */
}

.contact-form input, .contact-form textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.contact-form button {
    padding: 15px;
    background-color: #0d6efd;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #004ab9;
}

/* Footer */
footer {
    background-color: #0d6efd;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .content-section h2 {
        font-size: 32px;
    }

    .text-content, .image-content {
        margin: 10px 0;
    }

    .package {
        width: 100%;
        margin: 20px 0;
    }

    .package-header {
        align-items: center;
    }
}
