body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #f4f4f4;
}

.header {
    background-color: #8B0000; /* Dark red color */
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
}

.portal-info h1 {
    margin: 0;
}

.navbar {
    background-color: #8B0000; /* Dark red color */
    color: white;
    padding: 10px 20px;
}

.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.navbar li {
    margin-right: 20px;
}

.navbar a {
    color: white;
    text-decoration: none;
}

.tile-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 equal columns */
    gap: 20px;
    padding: 20px;
}

.tile {
    background-color: #fff;
    color: white;
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    font-size: 20px;
    cursor: pointer;
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tile i {
    font-size: 48px; /* Larger icon size */
    margin-bottom: 10px;
}

.tile h2 {
    margin: 0;
    font-size: 28px;
}

.tile span {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: bold;
}

.tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .tile-container {
        grid-template-columns: repeat(2, 1fr); /* 2 equal columns on smaller screens */
    }
}
/* Existing CSS styles */

/* New styles for the quotation page */
.quote-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.quote-details, .contact-details {
    flex: 1;
    margin: 0 10px;
}

.quote-details p, .contact-details p {
    margin: 5px 0;
}

.contact-details h3 {
    margin-top: 0;
    font-size: 18px;
}

.quote-info {
    margin-top: 20px;
}

.quote-section, .work-details {
    margin-bottom: 20px;
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.work-details table {
    width: 100%;
    border-collapse: collapse;
}

.work-details th, .work-details td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

.work-details th {
    background-color: #f4f4f4;
}

.work-details input {
    width: 100%;
    box-sizing: border-box;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

button {
    background-color: #8B0000; /* Dark red color */
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 4px;
}

button:hover {
    background-color: #a52a2a; /* Slightly lighter red */
}

