.social-icons {
    display: flex;
    gap: 6px;
}

.social-icons a {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s;
    font-size: 12px;
}

.social-icons a:hover {
    transform: scale(1.1);
}

.social-icons a:nth-child(1) { background-color: #3b5998; }
.social-icons a:nth-child(2) { background-color: #000; }
.social-icons a:nth-child(3) { background-color: #0077b5; }
.social-icons a:nth-child(4) { background-color: #25d366; }

.language-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    cursor: pointer;
    font-size: 12px;
    color: #666;
}

.language-selector img {
    width: 16px;
}

.search-box {
    display: flex;
}

.search-box input {
    width: 150px;
    padding: 6px 10px;
    border: 1px solid #ddd;
    border-right: none;
    border-radius: 3px 0 0 3px;
    font-size: 12px;
}

.search-box button {
    padding: 6px 12px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 0 3px 3px 0;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-box button:hover {
    background-color: #000;
}

/* Banner */
.banner {
    height: 350px;
    background-image: url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?w=1600&h=400&fit=crop');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.banner-title {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    text-align: center;
}

/* Breadcrumb */
.breadcrumb {
    background-color: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #666;
}

.breadcrumb a {
    color: #2850a0;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb .separator {
    color: #999;
}

/* Contact Section */
.contact-section {
    padding: 60px 0 80px;
    background-color: #fff;
}

.contact-wrapper {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Left Side - Contact Info */
.contact-info-box {
    flex: 1;
}

.contact-info-box h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.help-text,
.form-text {
    color: #666;
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.info-item i {
    font-size: 18px;
    color: #999;
    width: 20px;
    margin-top: 2px;
}

.info-content {
    flex: 1;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.info-content strong {
    color: #333;
    display: block;
    margin-bottom: 2px;
}

/* Vertical Divider */
.vertical-divider {
    width: 1px;
    background-color: #ddd;
    align-self: stretch;
}

/* Right Side - Contact Form */
.contact-form-box {
    flex: 1;
}

.contact-form-box h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 13px;
    color: #333;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: Arial, sans-serif;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2850a0;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background-color: #2850a0;
    color: #fff;
    padding: 12px 35px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: #1e3f80;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(40, 80, 160, 0.3);
}

/* Map Section */
.map-section {
    background-color: #f8f8f8;
    padding: 0;
}

.map-container {
    width: 100%;
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}
.required{
    color: red;
}
@media (max-width: 768px) {
    .banner{
        height: 360rem;
    }
    .banner-title{
        font-size: 28px;
    }
   .contact-section{
        padding: 30px 0;
    }
    .contact-wrapper{
        display: block;
    }
    .contact-form-box h2{
        font-size: 24px;
        text-align: center;
    }
    .form-row{
        display: flex;
        justify-content: space-between;
        gap: 0px;
    } 
    .form-group{
        width: 48%;
    }
    .form-group.full-width {
        width: 100%;
    }
}