/* Reset and Body Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f7f7f7;
    text-align: center;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    padding-bottom: 60px;
}

/* Header */
header {
    background-color: white;
    border-bottom: 2px solid #ccc;
    padding: 50px 0;
}

.logo {
    float: left;
    width: 100%;
    height: auto;
    max-width: 100px;
}
.phone {
    float: right;
    font-size: 30px;
    color: #1a73e8;
    text-decoration: none;
    padding-top: 20px;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

/* Quote and Book Section */
.quote-book {
    background-color: #fff;
    padding: 40px 0;
    border-bottom: 2px solid #ccc;
}
.quote-book h1 {
    font-size: 36px;
    color: #2a356a;
}
.quote-book p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #666;
}
.services {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.service-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}
.service-card h2 {
    font-size: 24px;
    color: #2a356a;
    margin-bottom: 10px;
}
.service-card p {
    font-size: 14px;
    margin-bottom: 20px;
    color: #666;
}
.service-icon {
    max-width: 100%;
    border-radius: 50%;
    margin-bottom: 20px;
}
.recommended {
    font-size: 14px;
    color: #f39c12;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}
.service-button {
    background-color: #2a356a;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    width: 100%;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease;
}
.service-button:hover {
    background-color: #1e264c;
    transform: scale(1.05);
}

/* Benefits Section */
.benefits {
    background-color: #fff;
    padding: 40px 0;
}
.benefits h2 {
    font-size: 28px;
    color: #2a356a;
    margin-bottom: 30px;
    font-weight: bold;
}
.benefits-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.benefits-list ul {
    list-style: none;
    font-size: 16px;
    color: #666;
}
.benefits-list li {
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services {
        flex-direction: column;
        align-items: center;
    }

    .benefits-list {
        flex-direction: column;
        align-items: center;
    }

    .phone {
        float: none;
        display: block;
        text-align: center;
        padding-top: 10px;
    }
}




/* Modern Step Indicator */
.step-indicator {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 30px;
    padding: 10px 0;
}

.step-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: lightgray;
    z-index: -1;
}

.step-indicator div {
    width: 20%;
    text-align: center;
    position: relative;
}

.step-indicator div span {
    background-color: #ddd;
    padding: 15px;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-indicator div.completed span {
    background-color: #34c759;
    color: white;
    box-shadow: 0 0 10px rgba(52, 199, 89, 0.5);
}

.step-indicator div.completed::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 3px;
    background-color: #34c759;
    z-index: -1;
}

.step-indicator div.active span {
    background-color: #4285f4;
    color: white;
    box-shadow: 0 0 10px rgba(66, 133, 244, 0.5);
}

.step-indicator div.active::after {
    background-color: #4285f4;
}

/* Form Beautification */
input, select {
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid #ccc;
    padding: 12px;
    transition: all 0.3s ease;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

input:focus, select:focus {
    border-color: #4285f4;
    box-shadow: 0px 4px 8px rgba(66, 133, 244, 0.2);
    outline: none;
}

label {
    font-weight: 500;
    color: #333;
}

/* Beautified Buttons */
.submit-btn {
    background-color: #4285f4;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    box-shadow: 0px 4px 10px rgba(66, 133, 244, 0.3);
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #356ac3;
    box-shadow: 0px 6px 12px rgba(66, 133, 244, 0.5);
}

.back-btn {
    background-color: #333;
    color: white;
    padding: 10px 30px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.back-btn:hover {
    background-color: #111;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
}

/* Button Row Styling */
.button-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

/* Section Padding */
.row {
    padding: 10px 0;
}

.body1 {
    font-family: 'Poppins', sans-serif;
    background-color: #f7f7f7;
    padding: 20px;
}

.container1 {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 20px;
}
