
/* ////////banner/////////////////// */

.banner {
            width: 100%;
            height: 400px;
            background-image: url('images/About-back-img.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }
        
        
        .breadcrumb {
            display: flex;
            align-items: center;
            background-color: rgba(255, 255, 255, 0.8);
            padding: 15px 25px;
            border-radius: 30px;
            z-index: 1;
            margin-top: 80px;
        }
        
        .breadcrumb a {
            text-decoration: none;
            color: #333;
            font-size: 18px;
            display: flex;
            align-items: center;
        }
        
        .breadcrumb a:hover {
            color: #000;
        }
        
        .breadcrumb-separator {
            margin: 0 10px;
            color: #333;
            font-size: 18px;
        }
        
        .breadcrumb-current {
            color: #333;
            font-size: 18px;
            font-weight: bold;
        }
        
        /* Mobile Responsive */
        @media (max-width: 768px) {
            .banner {
                height: 400px;
            }
            
            .breadcrumb {
                padding: 12px 20px;
            }
            
            .breadcrumb a,
            .breadcrumb-separator,
            .breadcrumb-current {
                font-size: 16px;
            }
        }
   


/* ///////// Dealer Form/////////// */

body{
    background-color: #f6f6f6;
}

.header {
    padding: 45px 20px;
    text-align: center;
    margin-bottom: 20px;
}

.header h2 {
    margin: 0;
    color: #333;
    font-size: 28px;
    font-weight: normal;
}

.container {
    max-width: 860px;
    margin: 0px auto 40px auto; /* Adjust top margin for spacing from header */
    background-color: #e2e2e2;
    padding: 40px;
    border-radius: 8px;
}

.description {
    text-align: center;
    margin-bottom: 40px;
    color: #222222;
    line-height: 1.6;
    font-size: 16px;
    padding: 0 10px; /* Add some padding for better readability on small screens */
}

.franchisee-form .form-row {
    display: flex;
    gap: 20px; /* Space between input fields in a row */
    margin-bottom: 20px;
}

.franchisee-form .form-row input[type="text"],
.franchisee-form .form-row input[type="email"],
.franchisee-form .form-row input[type="tel"],
.franchisee-form .form-row select {
    flex: 1; /* Each input/select takes equal space */
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box; /* Include padding and border in element's total width */
}

.franchisee-form .form-row input::placeholder,
.franchisee-form .form-row select option[value=""] {
    color: #999;
}

.franchisee-form .single-field {
    justify-content: flex-start; /* Align single field to the left */
}

.franchisee-form .single-field select {
    max-width: calc(50% - 10px); /* Adjust max-width to match one input field */
}

.radio-group {
    margin-top: 25px;
    margin-bottom: 30px;
    text-align: center;
}

.radio-group p {
    margin-bottom: 15px;
    color: #1e1e1e;
    font-size: 16px;
}

.radio-group label {
    margin: 0 15px;
    color: #555;
    font-size: 16px;
    cursor: pointer;
}

.radio-group input[type="radio"] {
    margin-right: 8px;
    vertical-align: middle;
}

.captcha-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap; /* Allow items to wrap on small screens */
}

.captcha-display {
    background-color: #eee;
    border: 1px solid #ccc;
    padding: 10px 20px;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
    border-radius: 4px;
    color: #333;
    user-select: none; /* Prevent text selection */
}

.captcha-group input[type="text"] {
    flex: 0 1 180px; /* Allow it to grow, but prefer a base width */
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

.captcha-group .reload-captcha {
    background: none;
    border: none;
    color: #007bff;
    cursor: pointer;
    font-size: 14px;
    text-decoration: underline;
    padding: 5px; /* Add some padding for easier clicking */
}

.send-button {
    display: block; /* Make button take full width of its container */
    width: 150px; /* Set a fixed width for the button */
    margin: 0 auto; /* Center the button */
    background-color: #fff; /* White background */
    color: #333; /* Dark text */
    padding: 12px 25px;
    border: 1px solid #ccc; /* Light grey border */
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.send-button:hover {
    background-color: #f0f0f0; /* Slightly darker grey on hover */
    color: #000;
    border-color: #999;
}

/* Media Queries for Responsiveness */

/* For screens smaller than 768px (e.g., tablets and large phones) */
@media (max-width: 768px) {
    .container {
        padding: 20px;
        margin: 20px auto; /* Adjust margin for smaller screens */
    }

    .header h2 {
        font-size: 24px;
    }

    .description {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .franchisee-form .form-row {
        flex-direction: column; /* Stack inputs vertically */
        gap: 15px;
    }

    .franchisee-form .single-field select {
        max-width: 100%; /* Full width for single select */
    }

    .captcha-group {
        flex-direction: column; /* Stack captcha elements vertically */
        align-items: center;
        gap: 10px;
    }

    .captcha-group input[type="text"] {
        width: 100%; /* Full width for captcha input */
        max-width: 250px; /* Limit max width for better appearance */
    }
}

/* For screens smaller than 480px (e.g., smaller phones) */
@media (max-width: 480px) {
    .header {
        padding: 15px 10px;
    }

    .header h2 {
        font-size: 20px;
    }

    .container {
        padding: 15px;
    }

    .franchisee-form .form-row input,
    .franchisee-form .form-row select {
        font-size: 14px;
        padding: 10px 12px;
    }

    .radio-group label {
        font-size: 14px;
        margin: 0 10px;
    }

    .captcha-display {
        font-size: 20px;
        padding: 8px 15px;
    }

    .captcha-group .reload-captcha {
        font-size: 13px;
    }

    .send-button {
        width: 120px;
        padding: 10px 20px;
        font-size: 16px;
    }
}