
:root {
    --primary: #243d8f;
    --secondary: #f90;
    --dark: #0f172a;
    --light: #f8fafc;
    --text: #212529bf;
    --border: #e2e8f0;
}
.contact-container {
    width: 100%;
    max-width: 1390px;
    margin: 0 auto;
    padding: 0 15px;
}
.section-badge {
    display: inline-block;
    /* background: rgba(20, 19, 16, 0.15); */
    color: #1a2a4a;
    border: 2px solid #ffbf00;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 50px;
    width: fit-content;
    margin-bottom: 15px;
}
.contact-hero {
    position: relative;
    background:
        linear-gradient(rgba(15, 23, 42, .75), rgba(15, 23, 42, .8)),
        url('../image/power-of-attorney-registration-pune.png');
    background-size: cover;
    background-position: center;
    padding: 100px 0 110px;
    overflow: hidden;
}

/* .contact-hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 153, 0, .12);
    border-radius: 50%;
    top: -220px;
    right: -180px;
} */



.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 162, 39, 0.2);
    border: 1px solid rgba(201, 162, 39, 0.4);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    width: fit-content;
}

.list li .link {
    color: #fff;
}

.hero-title span {
    color: var(--secondary);
}

.hero-desc {
    color: rgba(255, 255, 255, .88);
    line-height: 1.4;
    margin-bottom: 35px;
        padding-right: 125px;
}

.hero-btns {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 34px;
    text-decoration: none;
    font-weight: 700;
    transition: .35s ease;
}

.hero-btn-primary {
    background: var(--secondary);
    color: #fff;
    box-shadow: 0 15px 40px rgba(255, 153, 0, .35);
}

.hero-btn-primary:hover {
    transform: translateY(-4px);
    color: #fff;
}

.hero-btn-outline {
    border: 1px solid rgb(255 253 255);
    color: #fff;
    background: green;
    backdrop-filter: blur(10px);
}
.hero-btn-outline:hover {
    transform: translateY(-4px);
}

.hero-features {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.hero-feature {
      display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #eeeeee42;
    color: #fff;
    background: rgba(255, 255, 255, .08);
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 15px;
    backdrop-filter: blur(8px);
}
.section-desc {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text);
    margin-bottom:0px;
}
.section-title span {
    color: var(--secondary);
}
/* =========================
   WHITE CONTACT SECTION
========================= */

#contact-us-section {
    position: relative;
    padding: 80px 0;
    background: #ffffff;
    overflow: hidden;
}

.bg-overlay-contact{
    display:none;
}

.contact-wrapper{
    position: relative;
    z-index: 2;
}

.contact-card {
    background: #f8f9fa;
    border: 1px solid #e9e9e9;
    border-radius: 14px;
    padding: 40px;
    box-shadow: 0 10px 1px rgba(0, 0, 0, 0.06);
    height: 100%;
}

/* BADGE */

.contact-badge{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,153,0,0.1);
    color: #f90;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

/* TITLE */

.contact-title{
    font-size: 46px;
    line-height: 1.2;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
}

.contact-title span{
    color: #f90;
}

.contact-desc{
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 35px;
}

/* FORM */

#serviceEnquiryForm .form-control{
    background: #fff;
    border: 1px solid #e3e3e3;
    border-radius: 14px;
    color: #111;
    transition: 0.3s ease;
}

#serviceEnquiryForm .form-control::placeholder{
    color: #888;
}

#serviceEnquiryForm .form-control:focus{
    border-color: #f90;
    background: #fff;
    box-shadow: none;
}

/* BUTTON */

.submit_form{
    background: #f90;
    color: #fff;
    border: none;
    border-radius: 14px;
    font-weight: 600;
    transition: 0.3s ease;
}

.submit_form:hover{
    background: #111;
    color: #fff;
}

/* INFO BOX */

.info-box{
    display: flex;
    gap: 18px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.info-icon{
    min-width: 58px;
    height: 58px;
    border-radius: 16px;
    background: rgba(255,153,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f90;
    font-size: 24px;
        border: 1px solid #f90;
}

.info-content h6{
    color: #111;
    margin-bottom: 8px;
    font-size: 18px;
}

.info-content span,
.info-content a{
    color: #666;
    text-decoration: none;
    line-height: 1.7;
    transition: 0.3s ease;
}

.info-content a:hover{
    color: #f90;
}

/* SOCIAL */

.social-container{
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}


.form .submit_form {
    padding-inline: 2rem;
    padding-block: 0.7rem;
    text-decoration: none;
    transition: all 0.5s;
    background-color: #233e8d;
    color: white;
    border-radius: 5px;
    border: solid 1px var(--primary);
}
.social-container-01
 {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.social-item-01 {
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    font-size: 17px;
    width: 35px;
    padding: 15px;
    height: 35px;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border: 1px solid #fff;
    background-color: #243d8f;
}
.social-item-01:hover {
    background-color: #fff;
    color: #f90;
    border: solid 1px var(--primary);
}

/* RESPONSIVE */

@media(max-width:991px){

    .contact-card{
        padding: 35px 25px;
    }

    .contact-title{
        font-size: 34px;
        text-align: center;
    }

    .contact-desc{
        text-align: center;
    }

    .contact-badge{
        margin: 0 auto 20px;
    }

    .mobile-center{
        text-align: center;
    }

    .social-container{
        justify-content: center;
    }
}

@media only screen and (max-width: 767px) {

.contact-hero {
    padding: 70px 15px;
}
.hero-content {
    max-width: 100%;
}
.hero-desc {
    padding-right: 0px;
    margin-bottom: 0px;
}
    .hero-title {
        font-size: 31px;
    }
    #contact-us-section {
    padding: 60px 10px;
}
    .social-container {
        justify-content: left;
    }
    .mobile-center {
        text-align: left;
    }

}