/* Global styles */
body {
    font-family: Arial, sans-serif;
    background-image: url('background-image.jpg'); /* Replace with your image URL */
    background-size: cover;
    background-attachment: fixed;
    margin: 0;
    position: relative; /* Add this line */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header styles */
.header-wrapper {
    position: relative; /* Add this line */
    z-index: 2; /* Add this line */
    text-align: center;
}

.nav-wrapper {
    position: relative; /* Add this line */
    z-index: 1; /* Add this line */
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 0px;
    padding: 10px 20px; /* Adjust padding as needed */
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 20px;
    text-align: center;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #167abc;
}

/* Section styles */
.section-wrapper {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.65); /* Reduced opacity */
    border-radius: 20px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    padding: 40px;
    backdrop-filter: blur(5px); /* Apply the glass effect */
    text-align: center;
    display: flex; /* Use Flexbox */
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items horizontally */
}

/* Footer styles */
.footer-wrapper {
    background-color: transparent; /* Transparent background */
    text-align: center;
}

/* Pseudo-element for blurred background */
.header-wrapper::before,
.nav-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('background-image.jpg'); /* Replace with your image URL */
    background-size: cover;
    z-index: -1;
    opacity: 0.7;
    filter: blur(5px);
    border-radius: 20px;
}

/* Button styles */
.custom-button {
    background-color: rgba(176, 211, 244, 1); /* ARGB-2364422 or #23A39B */
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    margin-top: 20px; /* Add margin to create space between image and button */
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration:none;
}

.custom-button:hover {
    background-color: rgba(152, 183, 211, 1); /* Darker shade on hover */
}
