/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
    padding: 0;
    margin: 0;
    font-size: 16px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Navigation */
/* Header Styling */
header {
    display: flex;
    justify-content: space-between; /* This will push the logo and nav items apart */
    align-items: center; /* Center items vertically */
    padding: 20px; /* Add space for better visibility */
    background-color: #333; /* Background color for the header */
    position: relative; /* Allow absolute positioning for Sign In button */
}

/* Logo Styling */
header .logo {
    color: #ffffff; /* White color for the logo */
    font-size: 24px; /* Adjust size of the logo */
    font-weight: bold; /* Make the font bold */
}

/* Navigation Styles */
nav {
    display: flex;
    justify-content: center; /* Center the navigation items horizontally */
    width: 100%; /* Ensure nav takes up full width */
}

/* Navigation Links List */
nav ul {
    list-style: none;
    display: flex;
    gap: 20px; /* Space between each item */
    padding: 0;
    margin: 0;
}

/* List item styles */
nav ul li {
    display: inline-block;
}

/* Link styling */
nav ul li a {
    text-decoration: none;
    color: #ffffff; /* White color for the links */
    font-weight: bold;
    padding: 10px 15px;
    transition: background 0.3s;
}

/* Hover effect */
nav ul li a:hover {
    background-color: #ff9800; /* Orange color on hover */
    border-radius: 5px;
}

/* Sign In Button Styling (Positioned to the top-right corner) */
.nav-btn {
    background-color: #007BFF; /* Blue background for the Sign In button */
    padding: 12px 18px; /* Larger padding for the button */
    border-radius: 5px; /* Rounded corners for the button */
    font-weight: normal; /* Remove bold for the button text */
    color: white; /* White text color */
    transition: background 0.3s, transform 0.3s;
}

/* Sign In Button Hover Effect */
.nav-btn:hover {
    background-color: #0056b3; /* Darker blue on hover */
    transform: scale(1.1); /* Slight zoom effect on hover */
}

/* Position Sign In Button to the Right */
header .nav-btn {
    position: absolute; /* Position it absolutely within the header */
    top: 20px; /* Align it to the top */
    right: 20px; /* Align it to the right */
}



/* Hero Section */
.hero {
    background-image: url('B.png'); /* Update path to your image */
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 120px 20px;
    position: relative;
}

.hero h1 {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta-button {
    background-color: #f39c12;
    color: #fff;
    padding: 15px 40px;
    font-size: 18px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #e67e22;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Section Styles */
section {
    padding: 80px 20px;
    text-align: center;
}

h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
    font-weight: 600;
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #f39c12;
    margin: 20px auto;
}

/* About Us Section */
#about p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 22px;
    line-height: 1.8;
    text-align: justify; /* Aligns text better */
}

/* Services Section */
.service-list {
    display: flex;
    justify-content: center; /* Centers the services */
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.service-item {
    position: relative;
    width: 30%;
    height: 300px; /* Increased height */
    border-radius: 10px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: scale(1.05); /* Slight zoom on hover */
}

/* Overlay to ensure text is visible */
.service-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay */
    color: #fff;
    padding: 20px;
    border-radius: 0 0 10px 10px;
    text-align: center;
}

.service-item h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.service-item p {
    font-size: 16px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .service-list {
        flex-direction: column;
        gap: 20px;
    }

    .service-item {
        width: 100%;
        height: 250px;
    }
}

/* Pricing Section */
form {
    max-width: 800px;
    margin: 50px auto;
    background-color: #fff;
    padding: 40px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 16px;
}

form label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: #2c3e50;
}

form input,
form select,
form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 2px solid #3498db;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
    background-color: #f8f8f8;
}

form button {
    background-color: #3498db;
    color: #fff;
    padding: 15px 30px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

form button:hover {
    background-color: #2980b9;
}

/* Testimonials Section */
.testimonial {
    background-color: #fff;
    padding: 40px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-style: italic;
    text-align: center;
    margin: 50px auto;
    max-width: 900px;
}

.testimonial p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.testimonial h3 {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
}

/* Contact Section */
#contact {
    background-color: #ecf0f1;
    padding: 50px 20px;
    text-align: center;
}

#contact h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

#contact p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #555;
}

#contact a {
    color: #3498db;
    font-size: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

#contact a:hover {
    color: #f39c12;
}

/* Fix alignment for the CTA button in contact */
#contact .cta-button {
    display: inline-block; /* Make sure the button is inline with other text */
    margin-top: 20px;
    background-color: #f39c12;
    color: white;
    padding: 15px 40px;
    font-size: 18px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

#contact .cta-button:hover {
    background-color: #e67e22;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}



/* Mobile Responsiveness */
@media (max-width: 768px) {
    .service-list {
        flex-direction: column;
        gap: 40px;
    }

    .service-item {
        width: 80%;
        margin-bottom: 30px;
    }

    .cta-button {
        font-size: 18px;
        padding: 12px 30px;
    }

    form {
        width: 90%;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .testimonial {
        margin-top: 20px;
    }
}
/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif; /* Consistent font */
    background-color: #f4f4f4; /* Light background color */
}

/* Header Styling */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #333;
}

header .logo {
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    padding: 10px 15px;
}

nav ul li a:hover {
    background-color: #ff9800;
    border-radius: 5px;
}

/* Auth Container Styling */
.auth-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 8px;
    max-width: 400px;
    margin: 40px auto;
}

.auth-container h2 {
    color: #333;
    font-size: 28px;
    margin-bottom: 20px;
}

.auth-container form {
    width: 100%;
}

.auth-container label {
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
    display: block;
}

.auth-container input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
}

.auth-container button.auth-btn {
    width: 100%;
    padding: 12px;
    background-color: #007BFF;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.auth-container button.auth-btn:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

/* Link Styling */
.auth-container p {
    margin-top: 20px;
    font-size: 16px;
}

.auth-container p a {
    color: #007BFF;
    text-decoration: none;
}

.auth-container p a:hover {
    text-decoration: underline;
}
