body {
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
}

/* ==============================
   Hero Section
============================== */

.ef-page-hero {
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 30vh;        
    display: flex;          
    align-items: center;     
    justify-content: center;  
    text-align: center;      
    background-image: url('../img/bg-3.png');
    height: 40vh;
}

.page-content {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 50px;
    font-weight: 700;
    color: #000 !important;
}

.breadcrumb-link {
    font-size: 25px;
    color: #000 !important;
}

.breadcrumb-link a {
    color: #000 !important;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb-link a:hover {
    color: #6255FA !important;
}

.breadcrumb-link .separator {
    margin: 0 8px;
    color: #000 !important;
}

.breadcrumb-link .active {
    color: #6255FA !important;
    font-weight: 400;
}


/* ==============================
   Contact Section
============================== */

.contact-section {
    padding: 60px 15px;
    background: #f9f9f9 !important;
    display: flex;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
}

.contact-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
    align-items: flex-start;
}

.left-column, .right-column {
    background: #fff !important;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.left-column:hover, .right-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
}

.section-title span.sub-heading {
    display: inline-block;
    font-size: clamp(12px, 3vw, 16px);
    font-weight: 600;
    color: #6255FA !important;
    margin-bottom: 8px;
}

.section-title h2 {
    font-size: clamp(22px, 5vw, 32px);
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.section-title h2 span {
    color: #6255FA !important;
    transition: color 0.3s ease, transform 0.3s ease;
}

.section-title h2 span:hover {
    color: #4e42d6 !important;
    transform: translateY(-3px);
}

.elysia-content-box p,
.contact-wrapper p {
    font-size: clamp(14px, 3.5vw, 16px);
    color: #555 !important;
    margin-bottom: 25px;
}

.social-links {
    margin-top: 20px;
}

.social-links h4 {
    font-size: clamp(16px, 4vw, 18px);
    margin-bottom: 10px;
    font-weight: 600;
}

.social-links a.social-icon {
    display: inline-block;
    font-size: clamp(20px, 5vw, 24px);
    color: #6255FA !important;
    margin-right: 15px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a.social-icon:hover {
    color: #4e42d6 !important;
    transform: scale(1.3);
}

.ef-iconic-info-box {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 12px;
    border-radius: 10px;
}

.ef-iconic-info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12) !important;
}

.ef-iconic-info-box .icon-box {
    font-size: clamp(22px, 5vw, 28px);
    color: #6255FA !important;
    margin-right: 15px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.ef-iconic-info-box:hover .icon-box {
    transform: scale(1.3) rotate(10deg);
    color: #4e42d6 !important;
}

.ef-iconic-info-box h4 {
    font-size: clamp(16px, 4vw, 18px);
    font-weight: 600;
    margin-bottom: 6px;
}

.ef-iconic-info-box p {
    font-size: clamp(14px, 3.5vw, 15px);
    margin: 0;
}

.ef-iconic-info-box a {
    color: #555 !important;
    text-decoration: none;
}

.ef-iconic-info-box a:hover {
    color: #6255FA !important;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-size: clamp(12px, 3vw, 14px);
    font-weight: 600;
    margin-bottom: 6px;
    color: #333 !important;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 14px;
    font-size: clamp(14px, 3.5vw, 15px);
    border: 1px solid #ddd !important;
    border-radius: 6px;
    outline: none;
    transition: border 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #6255FA !important;
    box-shadow: 0 0 8px rgba(98, 85, 250, 0.25) !important;
    transform: scale(1.02);
}

.contact-form textarea {
    resize: none;
}

.theme-btn {
    display: inline-block;
    background: #6255FA !important;
    color: #fff !important;
    padding: 14px 30px;
    border: none;
    border-radius: 6px;
    font-size: clamp(14px, 4vw, 16px);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.theme-btn:hover {
    background: #4e42d6 !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 15px rgba(98, 85, 250, 0.4) !important;
}


/* ==============================
   Responsive Grid & Mobile Centering
============================== */

@media (max-width: 991px) {
    .contact-section .container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
        justify-content: center;
        align-items: center;
    }

    .left-column,
    .right-column {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .contact-form {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .left-column,
    .right-column {
        max-width: 100%;
        padding: 20px;
    }

    .breadcrumb-link {
        font-size: clamp(12px, 4vw, 16px);
    }

    .section-title h2 {
        font-size: clamp(20px, 5vw, 24px);
    }

    .theme-btn {
        width: 100%;
    }
}