/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-image: url('C:/Users/Bhavana.k/OneDrive/Desktop/dream/web/fii.jpg'); /* Path to your background image */
    background-size: cover;
    background-position: center;
    height: 100vh;
}

/* Header Section */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    background-color: #f3efef; /* Semi-transparent background */
    position: relative;
    z-index: 3;
}

.logo {
    height: 50px;
    width: auto;
}

.title {
    font-size: 1.8em;
    color: #FFD700;
}

/* Hero Section */
.hero {
    position: relative;
    height: calc(100vh - 80px); /* Adjust height to fit below header */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 20px;
}

/* Overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for readability */
    z-index: 1;
}

/* Content */
.content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.content h2 {
    font-size: 3em;
    font-weight: bold;
    line-height: 1.2;
}

.content p {
    font-size: 1.1em;
    margin: 20px 0;
}

.button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #d4a373; /* Match button color from example */
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #b3865e; /* Darken on hover */
}

/* Navbar Styling */
.navbar {
    position: absolute;
    top: 60px; /* Slightly lower from the top */
    right: 40px; /* Positioned in the top-right corner */
    z-index: 2;
}

.navbar ul {
    list-style-type: none;
    display: flex;
    gap: 15px;
}

.navbar li {
    display: inline;
}

.navbar a {
    color: #FFD700; /* Light color for links */
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: color 0.3s;
}

.navbar a:hover {
    color: #fff; /* White on hover */
}
.contact {
    padding: 40px 20px;
    text-align: center;
    background-color: #f9f9f9; /* Light background for contrast */
    color: #333; /* Text color */
}

.contact h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #d4a373; /* Accent color */
}

.contact p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    font-size: 1em;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    background-color: #d4a373; /* Button color */
    border-radius: 5px;
    transition: background-color 0.3s;
}

.contact-button img {
    width: 24px;
    height: 24px;
}

.contact-button:hover {
    background-color: #b3865e; /* Darken on hover */
}



/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 10px 20px;
        flex-direction: column;
    }
    .title {
        font-size: 1.5em;
    }
    .navbar {
        top: 100px; /* Adjust for smaller screens */
    }
    .navbar ul {
        flex-direction: column;
        align-items: flex-end;
    }
    .content h2 {
        font-size: 2.5em;
    }
}
