/* Reset default margins and paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Ensure the body and html take up full height */
body, html {
    height: 100%;
    font-family: Arial, sans-serif;
}



/* Header styling */
header {
    background: #333;
    color: #fff;
    padding: 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 1rem;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Hero section styling */
#hero {
    position: relative;
    background-image: url('images/1.jpeg'); /* Path to the image */
    background-size: cover; /* Ensures the image covers the entire section */
    background-position: center; /* Centers the image */
    height: 100vh; /* Full viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 4rem; /* Adjust based on header height */
}

/* Overlay to darken the background image for better text readability */
#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Keep the dark overlay */
    z-index: 1;
    pointer-events: none; /* This allows clicks to pass through */
}


/* Overlay content styling */
#hero .overlay {
    position: relative;
    z-index: 2;
}

#hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

#hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #f4208f; /* Button background color */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #d81b7a; /* Darker shade on hover */
}

/* Section styling */
section {
    padding: 4rem 2rem;
    text-align: center;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

section p, section ul {
    font-size: 1rem;
    line-height: 1.6;
}

section ul {
    list-style: none;
    padding: 0;
}

section ul li {
    margin-bottom: 0.5rem;
}

/* About Us Section */
#about-us {
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff; /* White background */
}

.about-container {
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem; /* Add spacing between elements */
}

.about-text {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #b6862b; /* Gold color for heading */
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.btn-more {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #b6862b; /* Gold button color */
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-more:hover {
    background-color: #a67525; /* Darker shade on hover */
}

.about-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 10px; /* Optional rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
}

/* Contact Us Section Styling */
#contact {
    background-color: #2c2c2c; /* Darker background for contrast */
    color: #fff;
    padding: 4rem 2rem;
    text-align: center; /* Center align header text */
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem; /* Add spacing between columns */
    justify-content: space-between;
    align-items: flex-start;
}

/* Header Text */
#contact p {
    font-size: 1.2rem;
    margin-bottom: 2rem; /* Space below the header text */
    color: #fff;
    line-height: 1.5;
}

/* Contact Details */
.contact-details {
    flex: 1;
    min-width: 300px;
    text-align: left; /* Align text to the left for details */
}

.contact-details h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffcc00; /* Gold for headings */
    text-transform: uppercase;
}

.contact-details p,
.contact-details a {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #fff; /* Set phone number and email text to white */
}

.contact-details a {
    text-decoration: none;
    font-weight: bold;
    color: #fff; /* Keep email links white */
}

.contact-details a:hover {
    text-decoration: underline;
    color: #ffd633; /* Gold on hover */
}

/* Contact Form */
.contact-form {
    flex: 1;
    min-width: 300px;
    background-color: #444; /* Slightly lighter form background */
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Add shadow for depth */
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #ffcc00;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    background-color: #fff;
    color: #333;
    box-shadow: inset 0px 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow inside inputs */
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    display: block;
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    background-color: #f4208f; /* Bright pink button */
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-form button:hover {
    background-color: #d81b7a;
    transform: translateY(-2px); /* Subtle hover lift effect */
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .contact-container {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-details, .contact-form {
        min-width: 100%;
    }
}
/* Services Section */
#services {
    background-color: #000; /* Black background */
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
}

#services .section-header h2 {
    font-size: 2.5rem;
    color: #b6862b; /* Gold color for heading */
    margin-bottom: 1rem;
}

#services .section-header p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.6;
    color: #fff;
}

.fields-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.field {
    background-color: #1a1a1a; /* Dark grey card background */
    border-radius: 10px;
    padding: 2rem;
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.field:hover {
    transform: translateY(-10px); /* Lift effect */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.field .icon img {
    width: 60px; /* Adjust size of the icon */
    margin-bottom: 1rem;
}

.field h3 {
    font-size: 1.5rem;
    color: #b6862b; /* Gold for headings */
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.field p {
    font-size: 1rem;
    line-height: 1.6;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .fields-container {
        flex-direction: column;
        align-items: center;
    }
}

/* Apply the filter to all images in the "icons" folder */
img[src^="icon/"] {
    filter: brightness(0) invert(1); /* Makes the icons white */
    width: 60px; /* Adjust size of the icons */
    margin-bottom: 1rem;
    transition: filter 0.3s ease;
}

/* Optional hover effect */
img[src^="icon/"]:hover {
    filter: brightness(0) invert(0.8); /* Slightly dim on hover */
}


/* Team Section */
#team {
    background-color: #000; /* Black background */
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
}

#team .section-header h2 {
    font-size: 2.5rem;
    color: #b6862b; /* Gold color */
    margin-bottom: 1rem;
}

#team .section-header p {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 3rem;
}

.team-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.team-member {
    background-color: #1a1a1a; /* Dark grey background for cards */
    border-radius: 10px;
    padding: 2rem;
    width: 250px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px); /* Lift effect on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.team-member img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.team-member h3 {
    font-size: 1.5rem;
    color: #b6862b; /* Gold color for names */
    margin-bottom: 0.5rem;
}

.team-member p {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icons a img {
    width: 30px;
    transition: transform 0.2s ease;
}

.social-icons a img:hover {
    transform: scale(1.2); /* Slight zoom effect on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .team-container {
        flex-direction: column;
        align-items: center;
    }

    .team-member {
        width: 100%;
        max-width: 300px;
    }
}

/* Contact Section */
#contact {
    padding: 4rem 2rem;
    background-color: #fff;
    color: #333;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-form,
.contact-details {
    flex: 1;
    min-width: 300px;
}

.contact-form h2 {
    font-size: 2rem;
    color: #b6862b; /* Gold color */
    margin-bottom: 1rem;
}

.contact-form p {
    font-size: 1rem;
    margin-bottom: 2rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    background-color: #fff;
}

.contact-form textarea {
    resize: vertical;
}

.send-button {
    display: inline-block;
    background-color: #b6862b; /* Gold color */
    color: #fff;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.send-button:hover {
    background-color: #977340; /* Slightly darker gold */
}

.contact-details iframe {
    border: none;
    margin-bottom: 1rem;
}

.contact-details p {
    margin: 0.5rem 0;
    font-size: 1rem;
    color: #333;
}

.contact-details .map-link {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 1rem;
    color: #ffcc00; /* Gold color for the link */
    text-decoration: none;
    font-weight: bold;
}

.contact-details .map-link:hover {
    text-decoration: underline;
    color: #d4a300; /* Darker gold on hover */
}


.contact-details .icon {
    font-size: 1.5rem;
    color: #b6862b; /* Gold color */
    margin-right: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
    }           

/* Contact Section */
.contact-details {
    color: #333; /* Default text color for the section */
}

.contact-details p {
    font-size: 1rem;
    margin: 0.5rem 0;
    color: #333; /* Black text */
}

.contact-details a {
    color: #333; /* Black link color */
    text-decoration: none; /* No underline */
    font-weight: bold;
}

.contact-details a:hover {
    color: #b6862b; /* Gold color on hover */
    text-decoration: underline;
}
}

#footer {
    background-color: #000;
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem; /* Space between sections */
}

.footer-logo,
.footer-links,
.footer-contact,
.footer-social {
    flex: 1;
    min-width: 250px;
}

.footer-logo img {
    width: 150px; /* Adjust image size */
    margin-bottom: 1rem;
}

.footer-logo p {
    font-size: 1rem;
    line-height: 1.6;
    color: #fff;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    color: #b6862b; /* Gold color */
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-links ul li a:hover {
    color: #b6862b; /* Gold hover color */
}

.footer-contact p a {
    color: #b6862b;
    text-decoration: none;
}

.footer-contact p a:hover {
    text-decoration: underline;
}

/* Updated Social Icons Layout */
.footer-social {
    text-align: center;
}

.social-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 icons per row */
    gap: 1rem; /* Spacing between icons */
    justify-content: center; /* Center align the grid */
}

.social-icons a img {
    width: 40px; /* Adjust icon size */
    transition: transform 0.3s ease;
}

.social-icons a img:hover {
    transform: scale(1.2); /* Slight zoom on hover */
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 2rem;
    border-top: 1px solid #333;
    padding-top: 1rem;
    font-size: 0.9rem;
    color: #aaa;
}

.navbar {
    display: flex;
    justify-content: center; /* Center the nav-center items */
    align-items: center;
    position: relative;
}

.nav-center {
    display: flex;
    gap: 20px; /* Adjust spacing between centered items */
}

.nav-right {
    position: absolute;
    right: 0;
}

.nav-right li {
    list-style: none;
}

.nav-right a {
    text-decoration: none;
    padding: 10px 15px;
}

.hero-icons {
    position: absolute;
    top: 10px; /* Adjust as needed */
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 50px;
    z-index: 1000; /* Ensure it's above all elements */
}

/* Ensure icons are clickable and bright */
.hero-icons a {
    display: flex;
    align-items: center;
}

/* Make the icons brighter */
.hero-icon {
    width: 60px; /* Adjust size */
    height: 60px;
    cursor: pointer;
    filter: brightness(1.8); /* Make them brighter */
    transition: transform 0.3s ease, filter 0.3s ease;
}

/* Add hover effect for more brightness */
.hero-icon:hover {
    transform: scale(1.2); /* Slightly enlarge */
    filter: brightness(2.2); /* Even brighter */
}








