/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Header */
.header-top {
    background: #333;
    color: white;
    padding: 10px;
    text-align: center;
}

.navbar {
    display: flex;
    justify-content: space-between;
    background: #007bff;
    padding: 15px;
    position: relative;
}

.navbar ul {
    list-style: none;
    display: flex;
    padding: 0;
}

.navbar ul li {
    margin: 0 10px;
}

.navbar ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Responsive Menu */
.menu-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .navbar ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #007bff;
        position: absolute;
        top: 50px;
        left: 0;
        padding: 10px;
    }
    .navbar ul.show {
        display: flex;
    }
}

/* Breadcrumb */
.breadcrumb {
    background: url('../../assets/img/projectf.jpg') no-repeat center;
    background-size: cover;
    text-align: center;
    padding: 50px 0;
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

/* Banner */
.banner {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

/* Search Box */
.search-container {
    text-align: center;
    margin: 30px 0;
}

.search-container input {
    width: 60%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.search-container button {
    padding: 10px 15px;
    background: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.search-container button:hover {
    background: #0056b3;
}

/* About Page */
.about {
    text-align: center;
    padding: 40px;
    background: #f9f9f9;
}

.about .container {
    max-width: 900px;
    margin: auto;
}

/* Contact Form */
.contact-container {
    max-width: 900px;
    margin: auto;
    padding: 40px 20px;
    text-align: center;
    background: #f9f9f9;
    border-radius: 10px;
}

.contact-container h2 {
    margin-bottom: 10px;
    color: #007bff;
}

.contact-info p {
    font-size: 16px;
    margin: 5px 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    background: #007bff;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.contact-form button:hover {
    background: #0056b3;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 15px;
    position: relative;
}

/* Fixed Call & WhatsApp Buttons */
.fixed-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fixed-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
}

.call-btn {
    background: #28a745;
}

.whatsapp-btn {
    background: #25D366;
}

/* Pricing Section */
.pricing-section {
    text-align: center;
    padding: 40px;
    background: #f9f9f9;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.pricing-card {
   /* background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 300px;*/
}

.pricing-card h3 {
    margin-bottom: 10px;
}

.pricing-card .price {
    font-size: 22px;
    font-weight: bold;
    color: #007bff;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
}

.pricing-card ul li {
    margin: 5px 0;
}

.pricing-card button {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
}

.pricing-card button:hover {
    background: #0056b3;
}
