/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background: #f7f9fc;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}

/* Header */
header {
    background: #1e88e5;
    color: white;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header .logo {
    font-family: 'outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    cursor: pointer;
}

header nav {
    display: flex;
    gap: 20px;
}

header .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

header .nav-links li a {
    font-weight: 600;
    color: white;
    position: relative;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

header .nav-links li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: #ffca28;
    transition: width 0.3s ease;
}

header .nav-links li a:hover {
    color: #ffca28;
}

header .nav-links li a:hover::after {
    width: 100%;
}

header .menu-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
}

@media (max-width: 768px) {
    header nav {
        display: none;
    }
    header .menu-toggle {
        display: block;
    }
}

/* Button Styles */
button,
a.cta {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(90deg, #1e88e5, #42a5f5);
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

button:hover,
a.cta:hover {
    background: linear-gradient(90deg, #42a5f5, #1e88e5);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

button:focus,
a.cta:focus {
    outline: 2px solid #ffca28;
    outline-offset: 2px;
}

button:disabled,
a.cta:disabled {
    background: #ccc;
    color: #666;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

/* Global Styles */
body {
    font-family: poppins, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #f7f9fc;
    color: #333;
}

/* Intro Section */
.intro-section {
    background: #1e88e5;
    color: white;
    padding: 50px 20px;
    text-align: center;
}
.intro-container h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.intro-container p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    margin: 0 auto;
    max-width: 600px;
}

/* Why Feedback Section */
.why-feedback-section {
    padding: 50px 20px;
    background: white;
    text-align: center;
}
.why-feedback-container h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1e88e5;
}
.why-feedback-container p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    margin-bottom: 30px;
    color: #555;
}
.future-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}
.stat-item {
    text-align: center;
}
.stat-item h3 {
    font-size: 2rem;
    color: #1e88e5;
}
.stat-item p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #555;
}


/* Feedback Form Section */
.feedback-form-section {
    padding: 50px 20px;
    background: #f7f9fc;
    text-align: center;
}
.feedback-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.feedback-form-container h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #1e88e5;
}
.feedback-form-container p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}
.feedback-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.form-group label {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 5px;
    display: inline-block;
    align-items: left;
}
.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Poppins', sans-serif;
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}
.submit-btn {
    font-family: 'jost', sans-serif;
    background: #1e88e5;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}
.submit-btn:hover {
    background: #42a5f5;
}
/* Popup Overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: opacity 0.3s ease;
}

.popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.popup-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    margin-bottom: 20px;
}

.popup-content button {
    background: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

.popup-content button:hover {
    background: #0056b3;
}

/* Hide Popup */
.hidden {
    display: none;
}

/* Form Group Label Styles */
.form-group label {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 5px;
    display: inline-block;
    text-align: left; /* Aligns the label to the left */
    width: 100%; /* Ensures label takes full width */
}

/* Footer Section */
.footer {
    background-color: #1e88e5;
    color: white;
    padding: 40px 20px;
    margin-top: 50px;
}

.footer-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.footer-column h4 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-column p,
.footer-column ul {
    font-size: 1rem;
    line-height: 1.6;
}

.footer-column ul {
    list-style: none;
    padding-left: 0;
}

.footer-column ul li a {
    color: white;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffca28;
}

.social-links li a {
    font-size: 1.2rem;
    color: white;
    transition: color 0.3s ease;
}

.social-links li a:hover {
    color: #1e88e5;
}
