/* Global Styles */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f5f5f5;
}

/* Header Styles */
header {
    background: #333;
    color: #fff;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    padding: 0.5rem 1rem;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.login-btn {
    background: #f90;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    color: #333;
    transition: background 0.3s;
}

.login-btn:hover {
    background: #f67f00;
}

/* Hero Section */
#hero {
    background: url('hero-image.jpg') no-repeat center center/cover;
    color: #fff;
    height: 80vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px; /* Added padding to prevent text from hitting edges */
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

#hero .container {
    z-index: 2;
    max-width: 700px; /* Limit container width to avoid stretching */
    width: 100%;
    padding: 20px;
}

#hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

#hero p {
    font-size: 1.1rem;
    color: #f2f2f2;
    margin-bottom: 2rem; /* Added more space between text and button */
}

#hero .cta-btn {
    background: #f90;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    color: #333;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 1rem; /* Add margin to ensure button doesn't touch the text */
    display: inline-block;
    width: 200px; /* Set a consistent width */
}

#hero .cta-btn:hover {
    background: #f67f00;
}


/* Section Styles */
section {
    padding: 3rem 0;
    text-align: center;
}

section h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #333;
    font-weight: bold;
}

/* About Section */
#about {
    background: #fff;
    padding: 4rem 0;
}

#about p {
    max-width: 800px;
    margin: 0 auto 2rem auto;
    font-size: 1.1rem;
}

/* Features Section */
#features {
    background: #f9f9f9;
}

.feature-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.feature {
    flex: 1 1 30%;
    background: #fff;
    padding: 1.5rem;
    margin: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature h3 {
    color: #444;
    margin-bottom: 1rem;
}

/* Pricing Section */
#pricing {
    background: #fff;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.card {
    flex: 1 1 30%;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.card h3 {
    background: #333;
    color: #fff;
    padding: 1rem;
    border-radius: 8px 8px 0 0;
}

.card ul {
    list-style: none;
    padding: 0;
}

.card ul li {
    padding: 0.5rem 0;
}

.card h4 {
    font-size: 1.8rem;
    margin: 1.5rem 0;
    color: #444;
}

.card .cta-btn {
    background: #f90;
    padding: 0.75rem 1.5rem;
    margin-top: 1rem;
    border: none;
    border-radius: 4px;
    color: #333;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    display: inline-block;
    min-width: 150px; /* Consistent button width */
}

.card .cta-btn:hover {
    background: #f67f00;
}

/* Contact Section */
#contact {
    background: #f9f9f9;
}

form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

form input, form textarea {
    width: 100%;
    padding: 1rem;
    margin: 0.5rem 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

form textarea {
    resize: vertical;
    height: 150px;
}

form .cta-btn {
    width: 100%;
    padding: 1rem;
    border: none;
    background: #f90;
    color: #333;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s;
}

form .cta-btn:hover {
    background: #f67f00;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1.5rem 0;
}
/* Section Styles */
.about-section {
    padding: 3rem 0;
    background-color: #fff;
}

/* Two-Column Layout */
.two-column .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.two-column img {
    width: 100%;
    border-radius: 8px;
}

/* Mission & Vision Styling */
.vision-box {
    background: #f4f4f4;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Values Section Styling */
#values .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    text-align: center;
}

.value-card {
    background: #f4f4f4;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Text Styling */
h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Call to Action Section */
#cta-about {
    background: #2c3e50;
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.cta-btn {
    background: #e67e22;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}
.hero-section {
    background: #2c3e50;
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.hero-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-section p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.2rem;
}

/* Features Section */
.grid-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.feature-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card img {
    width: 80px;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 1rem;
    color: #555;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}
.feature-card .icon svg {
    width: 80px;
    height: 80px;
    fill: #e67e22; /* Accent color for the icons */
    margin-bottom: 1rem;
}
#hero-pricing {
    background: #2c3e50;
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

#hero-pricing h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

#hero-pricing p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.2rem;
}

/* Pricing Section */
.grid-pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.pricing-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.pricing-card .price {
    font-size: 2rem;
    font-weight: bold;
    color: #e67e22;
    margin-bottom: 1rem;
}

.pricing-card .price span {
    font-size: 1rem;
    color: #555;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.features-list li {
    padding: 0.5rem 0;
    font-size: 1rem;
    color: #555;
}

.pro-plan {
    background: #f9f9f9;
}

.pro-plan .price {
    color: #e67e22;
}

.cta-btn {
    background: #e67e22;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}
.hero-section .contact-link {
    color: #f39c12;
    font-weight: bold;
    text-decoration: underline;
}

.hero-section .contact-link:hover {
    color: #e67e22;
}
/* Hero Section for Contact */
#hero-contact {
    background: #2c3e50;
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

#hero-contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

#hero-contact p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.2rem;
}

/* Contact Form Section */
#contact-form form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

#contact-form label {
    display: block;
    margin-top: 1rem;
    font-weight: bold;
    font-size: 1rem;
    color: #333;
}

#contact-form input, #contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    margin-top: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    color: #333;
}

#contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

/* Contact Information Section */
#contact-info .container {
    text-align: center;
}

#contact-info p {
    font-size: 1.1rem;
    margin: 1rem 0;
}

.social-icons a {
    margin: 0 0.5rem;
}

.social-icons img {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.social-icons a:hover img {
    transform: scale(1.1);
}

/* Button Style */
.cta-btn {
    background: #e67e22;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    margin-top: 1rem;
    display: inline-block;
}
/* Hero Section for Login */
#hero-login {
    background: #2c3e50;
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

#hero-login h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

#hero-login p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.2rem;
}

/* Login Form Section */
#login-form form {
    max-width: 400px;
    margin: 2rem auto;
    text-align: left;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#login-form label {
    display: block;
    margin-top: 1rem;
    font-weight: bold;
    color: #333;
}

#login-form input {
    width: 100%;
    padding: 0.75rem;
    margin-top: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    color: #333;
}

#login-form button {
    width: 100%;
    padding: 0.75rem;
    margin-top: 1rem;
    border: none;
    border-radius: 4px;
    background: #e67e22;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

#login-form button:hover {
    background: #d35400;
}

.login-options {
    text-align: center;
    margin-top: 1rem;
}

.login-options p {
    font-size: 0.9rem;
}

.login-options a {
    color: #e67e22;
    text-decoration: underline;
}

.login-options a:hover {
    color: #d35400;
}

