/* General styles */
body {
    background-image: url('bg5.jpg'); /* Replace with your image path or URL */
    background-size: cover; /* Makes the image cover the entire page */
    background-repeat: no-repeat; /* Prevents tiling */
    background-attachment: fixed; /* Keeps the image fixed while scrolling */
    background-position: center; /* Centers the image */
}


/* Header styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
   
}

.logo {
    display: flex;
    align-items: center;
}
.logo img {
    width: 200px; /* Adjust the size as needed */
    height: auto; /* Maintains the aspect ratio */
}

.navbar a {
    margin: 0 15px;
    text-decoration: none;
    color: #f7f4f4;
    font-weight: bold;
}

.navbar a:hover {
    color: #007BFF;
}

/* Hero section styles */
.hero {
    background: url('background.jpg') no-repeat center center/cover;
    color: rgb(250, 247, 247);
    height: 80vh;
    display: flex;
    align-items:flex-start;
    justify-content: center;
    text-align: center;
    padding:20px;
} 

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 5px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
    
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    padding: 10px 20px;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 5px;
}

.btn-primary {
    background-color: #007BFF;
    color: white;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.btn-secondary:hover {
    background-color: white;
    color: #007BFF;
}
.contact-section {
    padding: 50px 20px;
    text-align: center;
   
}

.contact-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fbf9f9;
}

.contact-details p {
    margin: 10px 0;
    font-size: 1.2rem;
    color: #faf7f7;
}

.contact-form {
    margin-top: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form button {
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #0056b3;
}
.contact-section p {
    color: white; /* Changes text color to white */
}