:root {
    --primary-dark: #1D165C; /* Approximate dark blue from image */
    --primary-light: #ffffff;
    --accent-green: #00cba9; /* Approximate green from submit button */
    --input-border: #ced4da;
    --card-bg: rgba(255, 255, 255, 0.05); /* For left side cards */
    --card-border: rgba(255, 255, 255, 0.1);
}

/*body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
}*/

.contact-container {
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 1200px;
    width: 100%;
}

/* Left Side */
.left-panel {
    background-color: var(--primary-dark);
    color: #fff;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.left-panel h2 {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 28px;
}

.left-panel p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 30px;
}

.contact-card {
    border: 1px solid #372AAA;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.icon-box {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 20px;
    background: #0C054D;
    border-radius: 13px;
}

.flag-icon {
    font-size: 24px;
}

.contact-details h6 {
    margin: 0;
    font-size: 14px;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-bottom: 7px;
}

.contact-details p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    opacity: 1;
}

.social-links {
    margin-top: 30px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.social-links span {
    font-weight: 600;
    margin-right: 15px;
    font-size: 20px;
}
.footer_social_links {
    display: flex;
    background: #0C054D;
    gap: 22px;
    padding: 10px;
    border-radius: 10px;
}
.social-btn {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.social-btn:hover {
    background-color: #fff;
    color: var(--primary-dark);
}

/* Right Side */
.right-panel {
    padding: 40px;
    background-color: #fff;
}

.form-control, .form-select {
    height: 55px;
    border-radius: 10px;
    border: 1px solid #ced4da;
    padding: 10px 15px;
    font-size: 14px;
}

.form-label-custom {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    display: block;
}

.custom-input {
    width: 100%;
    height: 50px;
    border: 1px solid #ccc;
    border-radius: 8px; /* Slightly rounded */
    padding: 0 15px;
    font-size: 15px;
    color: #333;
    margin-bottom: 20px;
    outline: none;
    transition: border-color 0.3s;
}

/* Select specific fix */
select.custom-input {
    background-color: #fff;
    padding-right: 30px; /* Space for arrow */
}

.custom-input:focus {
    border-color: var(--primary-dark);
}

textarea.custom-input {
    height: 120px;
    padding-top: 15px;
    resize: none;
}

.contact-container .submit-btn {
    background: linear-gradient(90deg, #00cba9, #00b395);
    color: #fff;
    border: none;
    padding: 12px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    float: right;
    transition: opacity 0.3s;
}

.submit-btn:hover {
    opacity: 0.9;
}

/* Close button simulation */
.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background-color: #00cba9;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
}

.relative-container {
    position: relative;
}

.news-block-one .inner-box .image-box img {
    max-width: 100%;
    width: 435px !important;
}