/* General Reset and Basic Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

/* Container for main content */
.container {
    width: 80%;
    margin: 0 auto;
    max-width: 1200px;
}

/* Navbar */
.navbar {
    background-color: #1e3d58;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .navbar-brand {
    color: white;
    font-size: 1.8rem;
    text-decoration: none;
}

.navbar-menu ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
}

.navbar-menu ul li {
    margin-left: 20px;
}

.navbar-menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
}

.navbar-toggle {
    display: none;
    cursor: pointer;
}

.navbar-toggle .icon-bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background-color: #1e3d58;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero .btn-primary {
    background-color: #00aaff;
    color: white;
    padding: 12px 30px;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 5px;
}

.hero .btn-primary:hover {
    background-color: #0077cc;
}

/* About Section */
.about {
    background-color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about p {
    font-size: 1.1rem;
    color: #555;
}

/* Services Section */
.services {
    background-color: #f4f4f4;
    padding: 60px 0;
    text-align: center;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.service-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.card {
    background-color: white;
    padding: 30px;
    width: 30%;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
}

.card .icon {
    font-size: 40px;
    color: #00aaff;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.card p {
    font-size: 1rem;
    color: #666;
}

/* Pricing Section */
.pricing {
    background-color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.pricing h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table th, table td {
    padding: 15px;
    border: 1px solid #ddd;
    text-align: center;
}

table th {
    background-color: #1e3d58;
    color: white;
}

table tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* FAQ Section */
.faq {
    background-color: #f4f4f4;
    padding: 60px 0;
    text-align: center;
}

.faq h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.accordion {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 20px;
}

.accordion-item h3 {
    font-size: 1.4rem;
    color: #333;
    cursor: pointer;
    padding: 10px;
    background-color: #1e3d58;
    color: white;
    border: none;
    width: 100%;
    text-align: left;
}

.accordion-item p {
    font-size: 1rem;
    color: #666;
    padding: 10px;
    background-color: #f9f9f9;
    display: none;
}

.accordion-item.active p {
    display: block;
}

.accordion-item h3:hover {
    background-color: #0077cc;
}

/* Contact Section */
.contact {
    background-color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact form input, .contact form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.contact form button {
    padding: 12px 30px;
    font-size: 1rem;
    background-color: #00aaff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact form button:hover {
    background-color: #0077cc;
}

/* Footer Section */
footer {
    background-color: #1e3d58;
    color: white;
    padding: 20px 0;
    text-align: center;
}

footer p {
    margin-bottom: 10px;
}

footer .social {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-size: 1.1rem;
}

footer .social:hover {
    text-decoration: underline;
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    .navbar-menu {
        display: none;
        width: 100%;
        background-color: #1e3d58;
        position: absolute;
        top: 60px;
        left: 0;
        padding: 15px;
    }

    .navbar-menu.active {
        display: block;
    }

    .navbar-menu ul {
        flex-direction: column;
        align-items: center;
    }

    .navbar-toggle {
        display: block;
    }

    .navbar ul li {
        margin: 10px 0;
    }
}
/* Services Section */
.services {
    background-color: #f4f4f4;
    padding: 60px 0;
    text-align: center;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.service-cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px; /* Adds space between cards */
}

.card {
    background-color: white;
    padding: 30px;
    width: 30%;  /* Default width for large screens */
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
}

.card .icon {
    font-size: 40px;
    color: #00aaff;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.card p {
    font-size: 1rem;
    color: #666;
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    /* Adjust service card layout */
    .service-cards {
        justify-content: center;  /* Center cards */
    }

    .card {
        width: 90%;  /* Full width for smaller screens */
        margin: 10px 0;  /* Vertical margin between cards */
    }

    .hero h1 {
        font-size: 2rem;  /* Adjust heading size */
    }

    .hero p {
        font-size: 1rem;  /* Adjust paragraph size */
    }
}
