/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Universal Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #bebebe;
    text-align: center;
    padding: 20px;
}
#about{
    max-width: 80%;
    margin:auto;
    text-align: left;
    line-height: 40px;
}
/* Header Styling */
header {
    background: linear-gradient(to right, #2c3e50, #1abc9c);
    padding: 30px 0;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

nav ul {
    list-style: none;
    padding: 10px;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s ease-in-out;
}

nav ul li a:hover {
    color: #ecf0f1;
}

/* Hero Section */
.hero {
    background: url('hero-image.jpg') center/cover no-repeat;
    padding: 100px 20px;
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero h2 {
    font-size: 3rem;
    font-weight: bold;
}

.hero p {
    font-size: 1.3rem;
    margin: 20px auto;
    max-width: 800px;
}

.cta {
    display: inline-block;
    padding: 15px 30px;
    background: #e67e22;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

.cta:hover {
    background: #d35400;
}

/* Service Section */
.service {
    background: white;
    padding: 30px;
    margin: 20px auto;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.service:hover {
    transform: translateY(-10px);
}

.service h3 {
    font-size: 1.8rem;
    color: #2c3e50;
}

.service p {
    font-size: 1.1rem;
    color: #555;
}

/* Testimonials */
blockquote {
    font-style: italic;
    background: #ecf0f1;
    padding: 20px;
    max-width: 600px;
    margin: 20px auto;
    border-left: 5px solid #3498db;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Contact Form */
form {
    max-width: 600px;
    margin: 30px auto;
    padding: 20px;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
}

button {
    padding: 12px 25px;
    background: #3498db;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

button:hover {
    background: #2980b9;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding: 20px;
    margin-top: 30px;
}

/* FAQ Section Styling */
#faq {
    background: #f9f9f9;
    padding: 50px 20px;
    border-radius: 10px;
    margin: 40px auto;
    max-width: 900px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

#faq h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 30px;
}

.faq-container {
    text-align: left;
    margin: 0 auto;
    max-width: 800px;
}

.faq-item {
    background: white;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-item h3 {
    color: #3498db;
    font-size: 1.8rem;
}

.faq-item p {
    font-size: 1.2rem;
    color: #555;
    margin-top: 10px;
}

/* Case Studies Section */
#case-studies {
    background: white;
    padding: 50px 20px;
    margin: 40px auto;
    max-width: 900px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

#case-studies h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 30px;
}

.case-study {
    background: #f9f9f9;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.case-study:hover {
    transform: translateY(-5px);
}

.case-study h3 {
    font-size: 1.8rem;
    color: #3498db;
}

.case-study p {
    font-size: 1.2rem;
    color: #555;
    margin-top: 10px;
}
/* Footer Section */
footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 30px;
    font-size: 1.2rem;
}

.footer-content {
    margin-bottom: 15px;
}

footer a {
    color: #f39c12;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

footer a:hover {
    color: #e67e22;
}

