/* General Styles */

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f9f9f9;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

h1,
h2,
h3 {
    color: #2c3e50;
}

a {
    text-decoration: none;
    color: #3498db;
}

a:hover {
    color: #2980b9;
}


/* Header */

header {
    background: #2c3e50;
    padding: 20px 0;
}

header .logo {
    width: 220px;
    margin-bottom: 10px;
}

header nav ul {
    list-style: none;
    padding: 30;
    display: flex;
    gap: 0px;
    justify-content: center;
}

header nav ul li a {
    color: white;
    font-weight: bold;
    font-size: 1rem;
}

header nav ul li a:hover {
    color: #3498db;
}


/* Hero Section */

.hero {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: white;
    text-align: center;
    padding: 30px 0;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button {
    background: #e74c3c;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #c0392b;
}


/* About Us Section */

.about {
    text-align: center;
    padding: 60px 0;
}

.about p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}


/* Solutions Section */

.solutions {
    background: #ecf0f1;
    padding: 60px 0;
}

.solutions h2 {
    text-align: center;
    margin-bottom: 40px;
}

.solution-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
}

.card i {
    font-size: 2rem;
    color: #3498db;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.card p {
    font-size: 0.9rem;
    color: #666;
}


/* Why Choose Us Section */

.why-choose-us {
    padding: 60px 0;
    text-align: center;
}

.why-choose-us ul {
    list-style: none;
    padding: 0;
}

.why-choose-us li {
    font-size: 1.1rem;
    margin: 10px 0;
}


/* Contact Section */

.contact {
    background: #2c3e50;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.contact h2 {
    margin-bottom: 20px;
}

.contact form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.contact input,
.contact textarea {
    padding: 10px;
    border-radius: 5px;
    border: none;
}

.contact button {
    background: #3498db;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact button:hover {
    background: #2980b9;
}

.whatsapp-button {
    display: inline-block;
    background: #25d366;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 20px;
    transition: background 0.3s ease;
}

.whatsapp-button:hover {
    background: #128c7e;
}


/* Footer */

footer {
    background: #34495e;
    color: white;
    text-align: center;
    padding: 20px 0;
}


/* Solution Page Styles */

.solution-hero {
    background: #3498db;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.solution-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.solution-hero p {
    font-size: 1.2rem;
}

.solution-details {
    padding: 60px 0;
    text-align: center;
}

.solution-details h2 {
    margin-bottom: 20px;
}

.solution-details ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.solution-details ul li {
    font-size: 1.1rem;
    margin: 10px 0;
}


/* Responsive Design */

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    .hero h2 {
        font-size: 1.2rem;
    }
    .solution-cards {
        flex-direction: column;
        align-items: center;
    }
    .card {
        width: 100%;
        max-width: 300px;
    }
    header nav ul {
        flex-direction: column;
        gap: 10px;
    }
}


/* Go Back Button */

.back-button {
    background: #3498db;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.back-button:hover {
    background: #2980b9;
}


/* Scroll Buttons */

.scroll-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.scroll-button {
    background: #3498db;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.scroll-button:hover {
    background: #2980b9;
}

.top-button {
    margin-bottom: 10px;
}