body {
    font-family: "Google Sans", sans-serif;
    overflow-x: hidden;
}
html,body {
    overflow-x: hidden;
}
a:not([href]):not([class]), a:not([href]):not([class]):hover {
    color: rgba(255,255,255,.72);
}
.pt-90 {
    padding-top: 90px;
}
.df-nav-scx-menu {
    display:flex;
    align-items:center;
    justify-content:center;
    gap:35px;
    list-style:none;
    margin:0;
    padding:0;
}

.df-nav-scx-menu .nav-link{
    padding:0;
    color:#000;
    text-decoration:none;
    font-weight:500;
}

.df-nav-scx-toggle{
    border:0;
    background:transparent;
    font-size:28px;
    color:#000;
    padding:0;
}

.df-nav-scx-toggle:focus{
    box-shadow:none;
}

@media (max-width:991.98px){

    .navbar-collapse{
        background:#fff;
        margin-top:20px;
        padding:20px;
        border-radius:12px;
        box-shadow:0 10px 30px rgba(0,0,0,.08);
    }

    .df-nav-scx-menu{
        flex-direction:column;
        align-items:flex-start;
        gap:18px;
        width:100%;
    }

    .df-nav-scx-btn{
        width:100%;
        display:flex;
        justify-content:center;
    }

}
.df-nav-scx {
    background: #fff;
    position: relative;
    z-index: 999;
}

.df-nav-scx-top {
    padding: 5px 0;
    border-bottom: 1px solid #ececec;
    background: #2a85cb;
}

.df-nav-scx-top-text span {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
}

.df-nav-scx-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.df-nav-scx-social a {
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

.df-nav-scx-social a:hover {
    color: #383838;
}

.df-nav-scx-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 20px;
    border-left: 1px solid #ececec;
}

.df-nav-scx-icon {
    width: 30px;
    height: 30px;
    background: #f3f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2a85cb;
    font-size: 16px;
    flex-shrink: 0;
}

.df-nav-scx-info small {
    display: block;
    font-size: 13px;
    color: #fff;
    margin-bottom: 2px;
}

.df-nav-scx-info h6 {
    margin: 0;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
    color: #fff;
}

.df-nav-scx-main {
    padding: 10px 0;
}

.df-nav-scx-logo img {
    max-width: 130px;
    width: 100%;
}

.df-nav-scx-menu ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 34px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.df-nav-scx-menu li {
    position: relative;
}

.df-nav-scx-menu li.active:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 28px;
    height: 3px;
    background: #2a85cb;
    border-radius: 30px;
}

.df-nav-scx-menu a {
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    color: #222;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: .3s;
}

.df-nav-scx-menu a:hover {
    color: #2a85cb;
}

.df-nav-scx-menu .active a {
    color: #2a85cb;
}

.df-nav-scx-btn-wrap {
    text-align: right;
}

.df-nav-scx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(90deg, #2962ff, #2a85cb);
    border-radius: 10px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    transition: .3s;
}

.df-nav-scx-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(41, 98, 255, .2);
}


/***************
1400px
****************/

@media(max-width:1400px) {

    .df-nav-scx-menu ul {
        gap: 26px;
    }

}


/***************
1200px
****************/

@media(max-width:1199px) {

    .df-nav-scx-menu ul {
        gap: 18px;
    }

    .df-nav-scx-menu a {
        font-size: 14px;
    }

    .df-nav-scx-btn {
        padding: 14px 22px;
        font-size: 14px;
    }

    .df-nav-scx-info {
        padding-left: 15px;
    }

    .df-nav-scx-info h6 {
        font-size: 14px;
    }

}


/***************
992px
****************/

@media(max-width:991px) {

    .df-nav-scx-top {
        display: none;
    }

    .df-nav-scx-main {
        padding: 25px 0;
    }

    .df-nav-scx-logo {
        text-align: center;
        margin-bottom: 25px;
    }

    .df-nav-scx-logo img {
        max-width: 180px;
    }

    .df-nav-scx-menu {
        margin-bottom: 25px;
    }

    .df-nav-scx-menu ul {
        justify-content: center;
        flex-wrap: wrap;
        gap: 18px;
    }

    .df-nav-scx-menu li.active:after {
        left: 50%;
        transform: translateX(-50%);
        bottom: -7px;
    }

    .df-nav-scx-btn-wrap {
        text-align: center;
    }

    .df-nav-scx-btn {
        width: 220px;
    }

}


/***************
768px
****************/

@media(max-width:767px) {

    .df-nav-scx-main {
        padding: 20px 0;
    }

    .df-nav-scx-logo {
        margin-bottom: 20px;
    }

    .df-nav-scx-logo img {
        max-width: 160px;
    }

    .df-nav-scx-menu ul {
        flex-direction: column;
        gap: 15px;
    }

    .df-nav-scx-menu li {
        width: 100%;
        text-align: center;
    }

    .df-nav-scx-menu a {
        justify-content: center;
        font-size: 15px;
    }

    .df-nav-scx-menu li.active:after {
        left: 50%;
        transform: translateX(-50%);
        bottom: -6px;
    }

    .df-nav-scx-btn {
        width: 100%;
        max-width: 260px;
        padding: 14px;
    }

}


/***************
576px
****************/

@media(max-width:575px) {

    .df-nav-scx-logo img {
        max-width: 145px;
    }

    .df-nav-scx-menu a {
        font-size: 14px;
    }

    .df-nav-scx-btn {
        font-size: 14px;
        padding: 13px;
    }

}


/***************
420px
****************/

@media(max-width:420px) {

    .df-nav-scx-logo img {
        max-width: 130px;
    }

    .df-nav-scx-menu ul {
        gap: 12px;
    }

    .df-nav-scx-menu a {
        font-size: 13px;
    }

    .df-nav-scx-btn {
        width: 100%;
        font-size: 13px;
        padding: 12px;
    }

}

.df-hero-scx {

    padding: 110px 0;
    background-image: url('../img/hero-2.png');
    background-size: cover;
    background-position: center;
    overflow: hidden;

    position: relative;

}

.df-hero-scx-content {

    max-width: 640px;

}

.df-hero-scx-subtitle {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 5px 10px;

    background: #fff;

    border-radius: 40px;

    font-size: 14px;

    font-weight: 700;

    color: #2a85cb;

    margin-bottom: 20px;

}

.df-hero-scx-subtitle i {

    font-size: 14px;

}

.df-hero-scx-content h1 {

    font-size: 50px;
    font-weight: 800;
    line-height: 1.05;
    color: #0b1028;
    margin-bottom: 10px;

}

.df-hero-scx-content h1 span {

    display: block;

    color: #2a85cb;

}

.df-hero-scx-content p {

    font-size: 22px;
    line-height: 1.5;
    color: #68758f;
    margin-bottom: 25px;
    max-width: 600px;

}

.df-hero-scx-btn {

    display: inline-flex;

    align-items: center;

    gap: 18px;

    padding: 16px 18px 16px 28px;

    background: linear-gradient(90deg, #2962ff, #2a85cb);

    border-radius: 18px;

    font-size: 18px;

    font-weight: 600;

    color: #fff;

    text-decoration: none;

    box-shadow: 0 15px 35px rgba(18, 93, 255, .25);

}

.df-hero-scx-btn span {

    width: 40px;

    height: 40px;

    background: #fff;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #125dff;

    margin-left: 10px;

}



@media(max-width:1400px) {

    .df-hero-scx-content h1 {

        font-size: 72px;

    }

    .df-hero-scx-content p {

        font-size: 24px;

    }

    .df-hero-scx-image {

        height: 650px;

    }

}

@media(max-width:1199px) {

    .df-hero-scx-content h1 {

        font-size: 60px;

    }

    .df-hero-scx-content p {

        font-size: 20px;

    }



}

@media(max-width:991px) {

    .df-hero-scx {

        padding: 70px 0;

        text-align: center;

    }

    .df-hero-scx-content {

        margin: auto;

    }

    .df-hero-scx-content h1 {

        font-size: 52px;

    }

    .df-hero-scx-content p {

        font-size: 18px;

    }

    .df-hero-scx-image {

        margin-top: 50px;

        height: 600px;

    }

}

@media(max-width:767px) {

    .df-hero-scx-content h1 {

        font-size: 42px;

    }

    .df-hero-scx-btn {

        font-size: 16px;

        padding: 14px 18px;

    }

    .df-hero-scx-btn span {

        width: 42px;

        height: 42px;

    }

    .df-hero-scx-image {

        height: 500px;

    }





}

@media(max-width:575px) {

    .df-hero-scx {

        padding: 50px 0;

    }

    .df-hero-scx-content h1 {

        font-size: 34px;

    }

    .df-hero-scx-content p {

        font-size: 16px;

        line-height: 1.8;

    }

    .df-hero-scx-subtitle {

        font-size: 13px;

        padding: 10px 18px;

    }

    .df-hero-scx-btn {

        width: 100%;

        justify-content: center;

    }

    .df-hero-scx-image {

        height: 360px;

    }





}

.df-hmabt-scx {

    padding: 100px 0;

    background: #f7fafd;

    overflow: hidden;

}

.df-hmabt-scx-content {

    padding-right: 40px;

}

.df-hmabt-scx-subtitle {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 10px 20px;

    background: #edf2ff;

    border-radius: 30px;

    font-size: 13px;

    font-weight: 700;

    color: #2a85cb;

    margin-bottom: 25px;

}

.df-hmabt-scx-subtitle i {

    font-size: 11px;

}

.df-hmabt-scx-content h2 {

    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    color: #101426;
    margin-bottom: 25px;

}

.df-hmabt-scx-content h2 span {

    display: block;

    color: #2a85cb;

}

.df-hmabt-scx-content p {

    font-size: 16px;
    line-height: 1.5;
    color: #67748d;
    margin-bottom: 25px;

}

.df-hmabt-scx-list {

    margin: 0;

    padding: 0;

    list-style: none;

    margin-bottom: 35px;

}

.df-hmabt-scx-list li {

    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 17px;

    color: #2f364f;

    margin-bottom: 12px;

}

.df-hmabt-scx-list i {

    color: #2a85cb;

}

.df-hmabt-scx-counter {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid #e5e7ef;

    padding-top: 30px;

    margin-top: 20px;

    margin-bottom: 35px;

}

.df-hmabt-scx-item {

    text-align: center;

    border-right: 1px solid #eceff5;

    padding: 0 10px;

}

.df-hmabt-scx-item:last-child {

    border: none;

}

.df-hmabt-scx-item i {

    font-size: 24px;

    color: #2a85cb;

    margin-bottom: 12px;

}

.df-hmabt-scx-item h4 {

    font-size: 25px;

    font-weight: 800;

    margin-bottom: 5px;

    color: #2a85cb;

}

.df-hmabt-scx-item p {

    margin: 0;

    font-size: 11px;

    line-height: 1.5;

}

.df-hmabt-scx-btns {

    display: flex;

    align-items: center;

    gap: 20px;

    flex-wrap: wrap;

}

.df-hmabt-scx-btn {

    padding: 18px 28px;

    background: linear-gradient(90deg, #2a85cb, #1451eb);

    border-radius: 14px;

    font-size: 14px;

    font-weight: 600;

    color: #fff;

    text-decoration: none;

    display: flex;

    align-items: center;

    gap: 12px;

}

.df-hmabt-scx-video {

    display: flex;

    align-items: center;

    gap: 12px;

    font-size: 14px;

    font-weight: 600;

    color: #222;

    text-decoration: none;

}

.df-hmabt-scx-video span {

    width: 46px;

    height: 46px;

    border-radius: 50%;

    border: 2px solid #2a85cb;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #2a85cb;

}

.df-hmabt-scx-gallery img {
    width: 100%;


}




@media(max-width:991px) {

    .df-hmabt-scx {

        padding: 70px 0;

    }

    .df-hmabt-scx-content {

        padding-right: 0;

        margin-bottom: 50px;

    }

    .df-hmabt-scx-content h2 {

        font-size: 46px;

    }

    .df-hmabt-scx-counter {

        grid-template-columns: repeat(2, 1fr);

        gap: 25px;

    }

    .df-hmabt-scx-item {

        border: none;

    }






}

@media(max-width:767px) {

    .df-hmabt-scx-content h2 {

        font-size: 36px;

    }

    .df-hmabt-scx-counter {

        grid-template-columns: 1fr 1fr;

    }





    .df-hmabt-scx-exp {

        width: 120px;

        height: 130px;

        padding: 20px;

    }

    .df-hmabt-scx-exp h3 {

        font-size: 34px;

    }

    .df-hmabt-scx-exp p {

        font-size: 13px;

    }

}

@media(max-width:575px) {

    .df-hmabt-scx-content h2 {

        font-size: 30px;

    }

    .df-hmabt-scx-btns {

        flex-direction: column;

        align-items: flex-start;

    }

    .df-hmabt-scx-btn {

        width: 100%;

        justify-content: center;

    }





    .df-hmabt-scx-counter {

        grid-template-columns: 1fr;

    }

}

.df-srvcd-scx {
    padding: 100px 0;
    background: #fff;
}

.df-srvcd-scx-head {
    max-width: 750px;
    margin: auto;
    text-align: center;
    margin-bottom: 60px;
}

.df-srvcd-scx-subtitle {
    display: inline-block;
    padding: 8px 22px;
    border-radius: 30px;
    background: #eef3ff;
    color: #2a85cb;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.df-srvcd-scx-head h2 {
    font-size: 40px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 10px;
}

.df-srvcd-scx-head h2 span {
    color: #2a85cb;
}

.df-srvcd-scx-head p {
    font-size: 18px;
    line-height: 1.8;
    color: #6b7280;
}

.df-srvcd-scx-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .06);
    transition: .35s;
    height: 100%;
}

.df-srvcd-scx-card:hover {
    transform: translateY(-8px);
}

.df-srvcd-scx-img {
    height: 190px;
    overflow: hidden;
}

.df-srvcd-scx-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.df-srvcd-scx-card:hover img {
    transform: scale(1.08);
}

.df-srvcd-scx-icon {
    position: absolute;
    top: 165px;
    left: 30px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #2a85cb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    border: 4px solid #fff;
}

.df-srvcd-scx-body {
    padding: 45px 30px 30px;
}

.df-srvcd-scx-body h3 {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 15px;
}

.df-srvcd-scx-body p {
    font-size: 16px;
    line-height: 1.8;
    color: #6b7280;
    margin-bottom: 20px;
}

.df-srvcd-scx-body a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    color: #2a85cb;
    text-decoration: none;
}

.df-srvcd-scx-body a i {
    font-size: 13px;
}

@media(max-width:991px) {

    .df-srvcd-scx {
        padding: 70px 0;
    }

    .df-srvcd-scx-head h2 {
        font-size: 42px;
    }

}

@media(max-width:767px) {

    .df-srvcd-scx-head h2 {
        font-size: 34px;
    }

    .df-srvcd-scx-head p {
        font-size: 16px;
    }

    .df-srvcd-scx-body {
        padding: 42px 22px 22px;
    }

    .df-srvcd-scx-body h3 {
        font-size: 21px;
    }

}

@media(max-width:575px) {

    .df-srvcd-scx {
        padding: 50px 0;
    }

    .df-srvcd-scx-head {
        margin-bottom: 40px;
    }

    .df-srvcd-scx-head h2 {
        font-size: 28px;
    }

    .df-srvcd-scx-img {
        height: 180px;
    }

    .df-srvcd-scx-icon {
        left: 20px;
    }

}

.df-port-scx {
    background: #fff;
    padding: 100px 0;
}

.df-port-scx-head {
    text-align: center;
    max-width: 750px;
    margin: auto;
    margin-bottom: 50px;
}

.df-port-scx-subtitle {
    display: inline-block;
    padding: 8px 20px;
    background: #edf3ff;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    color: #2a85cb;
    margin-bottom: 18px;
}

.df-port-scx-head h2 {
    font-size: 40px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 18px;
}

.df-port-scx-head h2 span {
    color: #2a85cb;
}

.df-port-scx-head p {
    font-size: 18px;
    line-height: 1.8;
    color: #6b7280;
}

.df-port-scx-tabs {
    gap: 15px;
}

.df-port-scx-tabs .nav-link {
    padding: 14px 30px;
    border-radius: 40px;
    background: #fff;
    color: #111827;
    font-weight: 600;
    border: 1px solid #e7ebf5;
    transition: .3s;
}

.df-port-scx-tabs .nav-link.active {
    background: linear-gradient(90deg, #2a85cb, #4f46e5);
    color: #fff;
    box-shadow: 0 12px 30px rgba(37, 99, 255, .25);
}

.df-port-scx-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
}

.df-port-scx-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: .5s;
    display: block;
}

.df-port-scx-card:hover img {
    transform: scale(1.08);
}

.df-port-scx-overlay {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: rgba(12, 23, 51, .92);
    padding: 20px;
    border-radius: 15px;
    transform: translateY(25px);
    opacity: 0;
    transition: .35s;
}

.df-port-scx-card:hover .df-port-scx-overlay {
    opacity: 1;
    transform: translateY(0);
}

.df-port-scx-overlay span {
    display: inline-block;
    padding: 6px 14px;
    background: #2a85cb;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.df-port-scx-overlay h4 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

@media(max-width:991px) {

    .df-port-scx {
        padding: 70px 0;
    }

    .df-port-scx-head h2 {
        font-size: 42px;
    }

}

@media(max-width:767px) {

    .df-port-scx-head h2 {
        font-size: 34px;
    }

    .df-port-scx-tabs {
        justify-content: flex-start !important;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
    }

    .df-port-scx-tabs .nav-link {
        white-space: nowrap;
    }

}

@media(max-width:575px) {

    .df-port-scx {
        padding: 50px 0;
    }

    .df-port-scx-head h2 {
        font-size: 28px;
    }

    .df-port-scx-card img {
        height: 240px;
    }

}
.df-footer-scx{
padding:90px 0 30px;
background:linear-gradient(135deg,#02142f,#041f49 55%,#03162f);
position:relative;
overflow:hidden;
}

.df-footer-scx::before{
content:"";
position:absolute;
left:-120px;
top:-120px;
width:320px;
height:320px;
background:rgba(37,99,255,.08);
filter:blur(80px);
border-radius:50%;
}

.df-footer-scx::after{
content:"";
position:absolute;
right:-100px;
bottom:-100px;
width:280px;
height:280px;
background:rgba(99,102,241,.08);
filter:blur(80px);
border-radius:50%;
}

.df-footer-scx-brand{
padding-right:40px;
}

.df-footer-scx-logo{
display:inline-block;
margin-bottom:10px;
}

.df-footer-scx-logo img{
max-width:150px;
}

.df-footer-scx-brand p{
color:rgba(255,255,255,.75);
font-size:16px;
line-height:2;
margin-bottom:30px;
}

.df-footer-scx-social{
display:flex;
gap:14px;
}

.df-footer-scx-social a{
width:46px;
height:46px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
background:rgba(255,255,255,.06);
border:1px solid rgba(255,255,255,.08);
color:#fff;
font-size:16px;
transition:.3s;
text-decoration:none;
}

.df-footer-scx-social a:hover{
background:#2563ff;
transform:translateY(-4px);
}

.df-footer-scx-links h4{
color:#fff;
font-size:22px;
font-weight:700;
margin-bottom:28px;
position:relative;
padding-left:18px;
}

.df-footer-scx-links h4::before{
content:"✦";
position:absolute;
left:0;
top:0;
color:#2563ff;
font-size:12px;
}

.df-footer-scx-links ul{
padding:0;
margin:0;
list-style:none;
}

.df-footer-scx-links ul li{
margin-bottom:16px;
}

.df-footer-scx-links ul li a{
color:rgba(255,255,255,.72);
font-size:16px;
text-decoration:none;
transition:.3s;
}

.df-footer-scx-links ul li a:hover{
color:#3b82f6;
padding-left:8px;
}

.df-footer-scx-bottom{
margin-top:70px;
padding-top:30px;
border-top:1px solid rgba(255,255,255,.08);
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
gap:20px;
}

.df-footer-scx-bottom p{
margin:0;
color:rgba(255,255,255,.6);
font-size:15px;
}

.df-footer-scx-bottom-links{
display:flex;
gap:30px;
flex-wrap:wrap;
}

.df-footer-scx-bottom-links a{
color:rgba(255,255,255,.6);
font-size:15px;
text-decoration:none;
transition:.3s;
}

.df-footer-scx-bottom-links a:hover{
color:#3b82f6;
}

@media(max-width:991px){

.df-footer-scx{
padding:70px 0 30px;
}

.df-footer-scx-brand{
padding-right:0;
}

.df-footer-scx-bottom{
flex-direction:column;
text-align:center;
}

}

@media(max-width:767px){

.df-footer-scx{
padding:60px 0 25px;
}

.df-footer-scx-links h4{
margin-bottom:20px;
}

.df-footer-scx-bottom-links{
justify-content:center;
gap:18px;
}

.df-footer-scx-social{
justify-content:center;
}

.df-footer-scx-brand{
text-align:center;
}

}
.df-contact-scx{
padding:100px 0;
background:#fff;
}

.df-contact-scx-left{
padding-right:40px;
}

.df-contact-scx-subtitle{
display:inline-block;
padding:8px 18px;
background:#edf3ff;
border-radius:30px;
font-size:13px;
font-weight:700;
color:#2563ff;
margin-bottom:18px;
}

.df-contact-scx-left h2{
font-size:52px;
font-weight:800;
color:#15233d;
margin-bottom:18px;
}

.df-contact-scx-left p{
font-size:17px;
line-height:1.9;
color:#6b7280;
margin-bottom:35px;
}

.df-contact-scx-item{
display:flex;
gap:15px;
align-items:flex-start;
}

.df-contact-scx-icon{
width:48px;
height:48px;
background:#2a85cb;
border-radius:10px;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
font-size:18px;
flex-shrink:0;
}

.df-contact-scx-item h5{
font-size:18px;
font-weight:700;
margin-bottom:4px;
color:#15233d;
}

.df-contact-scx-item span a{
font-size:15px;
color:#2a85cb;
text-decoration: none;
}

.df-contact-scx-social{
margin-top:35px;
display:flex;
align-items:center;
gap:14px;
flex-wrap:wrap;
}

.df-contact-scx-social h6{
margin:0 10px 0 0;
font-weight:700;
color:#15233d;
}

.df-contact-scx-social a{
width:40px;
height:40px;
border-radius:50%;
background:#f2f5fb;
display:flex;
align-items:center;
justify-content:center;
color:#15233d;
text-decoration:none;
transition:.3s;
}

.df-contact-scx-social a:hover{
background:#2563ff;
color:#fff;
}

.df-contact-scx-form{
background:#eef4f2;
padding:35px;
border-radius:12px;
}

.df-contact-scx-form .form-control{
height:52px;
border:none;
background:#fff;
border-radius:6px;
font-size:15px;
box-shadow:none;
}

.df-contact-scx-form textarea.form-control{
height:auto;
resize:none;
padding-top:15px;
}

.df-contact-scx-form [type=submit] {
padding:14px 35px;
background:#2a85cb;
border:none;
color:#fff;
font-weight:600;
text-transform:uppercase;
font-size:14px;
border-radius:4px;
transition:.3s;
}

.df-contact-scx-form [type=submit]:hover{
background:#2563ff;
}

.df-contact-scx-map{
margin-top:60px;
border-radius:12px;
overflow:hidden;
box-shadow:0 8px 30px rgba(0,0,0,.08);
}

.df-contact-scx-map iframe{
width:100%;
height:380px;
border:none;
display:block;
}

@media(max-width:991px){

.df-contact-scx{
padding:70px 0;
}

.df-contact-scx-left{
padding-right:0;
margin-bottom:30px;
}

.df-contact-scx-left h2{
font-size:42px;
}

}

@media(max-width:767px){

.df-contact-scx{
padding:60px 0;
}

.df-contact-scx-left h2{
font-size:34px;
}

.df-contact-scx-form{
padding:25px;
}

.df-contact-scx-map iframe{
height:300px;
}

}

@media(max-width:575px){

.df-contact-scx-left h2{
font-size:30px;
}

.df-contact-scx-social{
justify-content:flex-start;
}

.df-contact-scx-form{
padding:20px;
}

}
/* Floating Button */

.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:25px;
    z-index:9999;

    display:flex;
    align-items:center;
    gap:12px;

    padding:15px 22px;

    background:linear-gradient(135deg,#25D366,#128C7E);
    color:#fff;

    text-decoration:none;

    border-radius:60px;

    box-shadow:
        0 12px 35px rgba(37,211,102,.35),
        0 5px 15px rgba(0,0,0,.15);

    backdrop-filter:blur(15px);

    transition:.35s ease;

    overflow:hidden;
}

/* Shine Animation */

.whatsapp-float::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:60%;
    height:100%;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.4),
        transparent
    );
    transition:.8s;
}

.whatsapp-float:hover::before{
    left:150%;
}

.whatsapp-float:hover{
    transform:translateY(-5px) scale(1.05);
    box-shadow:
        0 18px 45px rgba(37,211,102,.45);
}

/* Pulse Ring */

.whatsapp-float::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:60px;
    border:2px solid rgba(37,211,102,.45);
    animation:pulse 2s infinite;
}

@keyframes pulse{
    0%{
        transform:scale(1);
        opacity:.8;
    }
    70%{
        transform:scale(1.35);
        opacity:0;
    }
    100%{
        opacity:0;
    }
}

/* Icon */

.whatsapp-float i{
    font-size:32px;
    line-height:1;
}

/* Text */

.whatsapp-float span{
    font-size:16px;
    font-weight:600;
    white-space:nowrap;
}

/* Mobile */

@media(max-width:768px){

    .whatsapp-float{
        width:65px;
        height:65px;
        border-radius:50%;
        justify-content:center;
        padding:0;
    }

    .whatsapp-float span{
        display:none;
    }

    .whatsapp-float i{
        font-size:34px;
    }

}