/*==================================
INNER PAGE HERO SECTION
==================================*/

.inner-page-hero{
    background:linear-gradient(
        135deg,
        #0A2E6D 0%,
        #123f92 100%
    );
    padding:140px 0 120px;
    position:relative;
    overflow:hidden;
}

/* Hero Decorative Circle Left */

.inner-page-hero::before{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
    top:-180px;
    left:-180px;
}

/* Hero Decorative Circle Right */

.inner-page-hero::after{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    border-radius:50%;
    background:rgba(255,255,255,.04);
    bottom:-150px;
    right:-120px;
}

/* Hero Content */

.inner-page-content{
    max-width:900px;
    margin:auto;
    text-align:center;
    position:relative;
    z-index:2;
}

/* Hero Badge */

.inner-page-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:rgba(255,255,255,.12);
    color:#fff;
    padding:12px 24px;
    border-radius:50px;
    margin-bottom:25px;
    backdrop-filter:blur(10px);
    font-size:15px;
    font-weight:500;
}

.inner-page-badge i{
    color:#ff7a00;
}

/* Hero Heading */

.inner-page-hero h1{
    font-family:'Playfair Display', serif;
    font-size:72px;
    font-weight:700;
    line-height:1.1;
    color:#fff;
    margin-bottom:25px;
}

.inner-page-hero h1 span{
    color:#ff7a00;
}

/* Hero Orange Divider */

.inner-page-hero h1::after{
    content:'';
    display:block;
    width:100px;
    height:4px;
    background:#ff7a00;
    margin:25px auto 0;
    border-radius:50px;
}

/* Hero Description */

.inner-page-hero p{
    max-width:750px;
    margin:auto;
    color:rgba(255,255,255,.85);
    font-size:18px;
    line-height:1.9;
}


/*==================================
CONTACT INFO SECTION
==================================*/
/*==================================
CONTACT INFO
==================================*/

.contact-info{
    background:#f8f9fc;
}

.section-desc{
    max-width:700px;
    margin:15px auto 0;
    color:#666;
}

.info-card{

    background:#fff;

    padding:40px 25px;

    text-align:center;

    border-radius:25px;

    height:100%;

    position:relative;

    overflow:hidden;

    transition:.4s;

    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.info-card::before{

    content:'';

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:#ff7a00;

    transform:scaleX(0);

    transition:.4s;
}

.info-card:hover::before{

    transform:scaleX(1);
}

.info-card:hover{

    transform:translateY(-12px);

    background:#0A2E6D;
}

.info-icon{

    width:90px;
    height:90px;

    margin:auto auto 25px;

    border-radius:50%;

    background:#f3f7ff;

    display:flex;
    align-items:center;
    justify-content:center;

    transition:.4s;
}

.info-icon i{

    font-size:36px;

    color:#ff7a00;
}

.info-card h4{

    color:#0A2E6D;

    margin-bottom:15px;

    transition:.4s;
}

.info-card p,
.info-card a{

    color:#666;

    text-decoration:none;

    transition:.4s;

    display:block;

    margin:0;
}

.info-card:hover h4,
.info-card:hover p,
.info-card:hover a{

    color:#fff;
}

.info-card:hover .info-icon{

    background:rgba(255,255,255,.12);
}

/*==================================
CONTACT FORM SECTION
==================================*/

.contact-form-section{
    background:#ffffff;
}

.contact-wrapper{
    background:#f8f9fc;
    border-radius:35px;
    padding:60px;
}

.contact-desc{
    color:#666;
    margin:25px 0;
    line-height:1.8;
}

.contact-feature{

    display:flex;
    align-items:center;

    gap:12px;

    margin-bottom:18px;

    font-weight:500;

    color:#0A2E6D;
}

.contact-feature i{
    color:#ff7a00;
}

.contact-form-box{

    background:#fff;

    padding:40px;

    border-radius:30px;

    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.form-control{

    height:58px;

    border:1px solid #e5e7eb;

    border-radius:15px;

    padding:0 20px;

    transition:.3s;
}

textarea.form-control{

    height:150px;

    padding-top:15px;
}

.form-control:focus{

    border-color:#ff7a00;

    box-shadow:none;
}

.contact-btn{

    background:#ff7a00;

    color:#fff;

    border:none;

    padding:15px 35px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;
}

.contact-btn:hover{

    background:#0A2E6D;

    color:#fff;
}

.contact-btn i{

    margin-right:8px;
}

/* Mobile */

@media(max-width:768px){

    .contact-wrapper{

        padding:30px 20px;
    }

    .contact-form-box{

        padding:25px;
    }
}

/*==================================
GOOGLE MAP SECTION
==================================*/

.map-section iframe{
    width:100%;
    height:450px;
    border:none;
}


/*==================================
CONTACT CTA SECTION
==================================*/

.contact-cta{
    background:#f8f9fc;
}

/* CTA Box */

.cta-box{
    background:linear-gradient(
        135deg,
        #0A2E6D,
        #123f92
    );

    color:#fff;
    text-align:center;
    padding:70px 30px;
    border-radius:30px;
}

/* CTA Button */

.cta-btn{
    display:inline-block;
    margin-top:20px;
    background:#ff7a00;
    color:#fff;
    padding:14px 35px;
    border-radius:50px;
    text-decoration:none;
}


/*==================================
MOBILE RESPONSIVE
==================================*/

@media(max-width:991px){

    .inner-page-hero{
        padding:120px 0 100px;
    }

    .inner-page-hero h1{
        font-size:56px;
    }

}

@media(max-width:768px){

    .inner-page-hero{
        padding:90px 0 80px;
    }

    .inner-page-hero h1{
        font-size:40px;
    }

    .inner-page-hero p{
        font-size:16px;
    }

    .inner-page-badge{
        font-size:14px;
        padding:10px 20px;
    }

}