/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    color: #ffffff;
}

body {
    background: linear-gradient(to right, #4b6cb7, #182848);
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url('../assets/images/hero.jpg'); /* Background image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: 100vh;
    padding-top: 80px; /* Padding to push content below navbar */
}

/* Navbar */
.navbar {
    width: 100%;
    position: fixed;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navbar a {
    text-decoration: none;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 8px;
    transition: background 0.3s;
}

.navbar a:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Logo Styling */
.logo {
    height: 40px;
    width: auto;
}

/* Section Styling */
.section {
    padding: 6rem;
    margin: 4rem 5%;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    width: 90%;
    max-width: none;
    height: calc(100vh - 160px); /* Height adjustment */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.section h2 {
    margin-bottom: 1.5rem;
    font-size: 2.5rem; /* Large and attractive */
    color: #ffffff;
    text-align: center;
}

.section p {
    font-size: 1.5rem;
    color: #e0e0e0;
    text-align: center;
    margin-bottom: 2rem;
}

/* Form Styling */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.form-group textarea {
    resize: none;
}

/* Submit Button */
.btn {
    background: linear-gradient(90deg, #ff7eb3, #ff758c); /* Attractive gradient */
    border: none;
    color: white;
    font-size: 1.2rem;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn:hover {
    background: linear-gradient(90deg, #ff758c, #ff7eb3);
    transform: scale(1.05);
}

/* Smooth Transition Effects */
.navbar,
.section,
.btn {
    transition: backdrop-filter 0.3s ease, background 0.3s ease;
}

/* About Section Specific */
#about h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

#about ul li {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

#about ul li a {
    color: #1e90ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

#about ul li a:hover {
    color: #ff4500;
    text-decoration: underline;
}

/* Gallery Section */
#gallery h2 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

#gallery .image {
    display: inline-block;
    margin: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

#gallery .image:hover {
    transform: scale(1.05);
}

