﻿:root {
    --primary-blue: #009CD0;
    --dark-heading: #212529;
    --light-bg    : #f8f9fa;
    --text-color  : #666666;
}

/*-------------------------------------------------------------------hero section-------------------------------------------------------------------*/
.service-hero-section {
    position       : relative;
    height         : 60vh;
    display        : flex;
    justify-content: center;
    align-items    : center;
    text-align     : center;
    color          : white;
}

.service-hero-section img {
    width   : 100%;
    height  : 100%;
    display : block;
    position: absolute;
    top     : 0;
    left    : 0;
    z-index : 0;
}

.service-hero-section::before {
    content         : '';
    position        : absolute;
    top             : 0;
    left            : 0;
    width           : 100%;
    height          : 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index         : 1;
}

.service-hero-section h1 {
    font-size: 48px;
    margin   : 0 0 15px;
}

.service-hero-section p {
    font-size: 18px;
    margin   : 0 0 40px;
    padding  : 0 190px;
}

.breadcrumb {
    display         : flex;
    align-items     : center;
    background-color: rgba(255, 255, 255, 0.22) !important;
    padding         : 10px 30px !important;
    border-radius   : 0px !important;
    font-size       : 14px;
    font-weight     : 600;
    color           : white;
}

.breadcrumb a {
    color                : white;
    text-decoration      : underline;
    text-decoration-color: transparent;
    transition           : text-decoration-color 0.3s ease, text-underline-offset 0.3s ease;
}

.breadcrumb a:hover {
    color                : white;
    text-decoration-color: white;
    text-underline-offset: 3px;
}

.breadcrumb i {
    color    : #ccc;
    margin   : 0 5px;
    font-size: 14px;
}

/*-------------------------------------------------------------------map section-------------------------------------------------------------------*/
.map-section {
    padding         : 60px 0px;
    background-color: rgb(239, 243, 247);
    box-sizing      : border-box;
}

.section-title {
    text-align   : center;
    font-size    : 2.5rem;
    font-weight  : 700;
    color        : var(--heading-color);
    margin-bottom: 10px;
}

.section-subtitle {
    text-align   : center;
    font-size    : 17px;
    color        : #666;
    margin-bottom: 50px;
    max-width    : 750px;
    margin-left  : auto;
    margin-right : auto;
    position     : relative;
}

.map-section-view img {
    width   : 100%;
    display : block;
    position: relative;
}

.map-marker {
    position        : absolute;
    width           : 15px;
    height          : 15px;
    border          : 3px solid #007BFF;
    border-radius   : 50%;
    background-color: #fff;
    cursor          : pointer;
    z-index         : 2;
}

.map-marker::before {
    content         : '';
    position        : absolute;
    top             : 50%;
    left            : 50%;
    width           : 100%;
    height          : 100%;
    border-radius   : 50%;
    background-color: rgba(6, 118, 238, 0.6);
    z-index         : -1;

    animation: ripple 1.5s ease-out infinite;
}

.map-marker:hover {
    transform: scale(1.4);
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity  : 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(4);
        opacity  : 0;
    }
}

.map-tooltip {
    position       : absolute;
    bottom         : 100%;
    left           : 50%;
    transform      : translateX(-50%) translateY(-20px);
    width          : 220px;
    min-height     : 100px;
    background     : rgba(0, 0, 0, 0.85);
    color          : #fff;
    padding        : 8px 10px;
    border-radius  : 0px;
    font-size      : 12px;
    white-space    : pre-line;
    text-align     : center;
    display        : flex;
    flex-direction : column;
    justify-content: center;
    align-items    : center;
    opacity        : 0;
    pointer-events : none;
    transition     : opacity 0.5s ease, transform 0.5s ease;
    z-index        : 10;
}

.map-tooltip::after {
    content     : "";
    position    : absolute;
    top         : 100%;
    left        : 50%;
    transform   : translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.85) transparent transparent transparent;
}

.map-marker:hover .map-tooltip {
    opacity  : 1;
    transform: translate3d(-50%, -70px, 0);
    transform: translateX(-50%) translateY(-12%);
}

.map-marker:hover .map-tooltip {
    pointer-events: auto;
}

.map-tooltip .tooltip-title {
    font-size    : 20px;
    font-weight  : bold;
    margin-bottom: 4px;
}

.map-tooltip .tooltip-subtitle {
    color    : #ccc;
    font-size: 13px;
}

.mobile-tooltip {
    display: none;
}

.contact-section {
    background-image   : url('../img/world_contact.png');
    background-repeat  : no-repeat;
    background-position: left bottom;
    width              : 100%;
    position           : relative;
}

.collapse.show,
.collapsing,
.contact-qna-content {
    transition: none !important;
    height    : auto !important;
}

.contact-section .row {
    margin-left : 0;
    margin-right: 0;
}

.contact-qna-col-left {
    background-color   : #212121;
    color              : white;
    background-image   : url(../img/wave-overlay.png);
    background-position: bottom left;
    background-repeat  : no-repeat;
}

.contact-qna-inner {
    padding      : 60px 70px;
    padding-right: 80px;
    height       : 100%;
}

.contact-qna-title {
    font-size    : 40px;
    font-weight  : 700;
    margin-bottom: 10px;
}

.contact-qna-subtitle {
    font-size    : 16px;
    color        : #ccc;
    margin-bottom: 40px;
}

.contact-highlight-link {
    color          : #ffffff;
    font-weight    : 600;
    text-decoration: underline;
    cursor         : pointer;
}

.contact-header-underline {
    width        : 230px;
    height       : 3px;
    background   : linear-gradient(to right, #0582CA 40%, #d3d3d3 20%);
    margin-bottom: 30px;
}

.contact-accordion {
    border          : none;
    background-color: white;
}

.contact-qna-item {
    border          : none;
    border-bottom   : 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom   : 0;
    background-color: transparent;
}

.contact-qna-toggle {
    border          : none;
    width           : 100%;
    padding         : 15px 20px;
    font-size       : 17px;
    font-weight     : 500;
    text-align      : left;
    display         : flex;
    justify-content : space-between;
    align-items     : center;
    cursor          : pointer;
    background-color: white;
    color           : black;
    transition      : all 0.3s;
}

.contact-qna-toggle span.contact-qna-link {
    color: inherit;
}

.contact-qna-item.active .contact-qna-toggle {
    background-color: var(--primary-blue);
    color           : white;
}

.contact-qna-icon-box {
    display        : flex;
    justify-content: center;
    align-items    : center;
    width          : 20px;
    height         : 20px;
}

.contact-qna-item:not(.active) .contact-qna-icon-box {
    background-color: var(--primary-blue);
}

.contact-qna-item:not(.active) .contact-qna-icon-box i {
    color    : white;
    font-size: 12px;
}

.contact-qna-item.active .contact-qna-icon-box {
    background-color: transparent;
    padding-right   : 5px;
}

.contact-qna-item.active .contact-qna-icon-box i {
    color    : white;
    font-size: 16px;
}

.contact-qna-content {
    display: none;
}

.contact-qna-content.show {
    display: block;
}

.contact-qna-body {
    background-color: white;
    color           : black;
    padding         : 15px;
    font-size       : 15px;
    border          : none;
}


.contact-form-col-right {
    background-color: #f0f0f0;
    color           : #333;
}

.contact-form-inner {
    padding      : 50px 0px;
    padding-right: 35px;
    height       : 100%;
}

.contact-form-title {
    font-size    : 40px;
    font-weight  : 700;
    margin-bottom: 10px;
    color        : #333;
}

.contact-form-subtitle {
    font-size    : 16px;
    color        : #666;
    margin-bottom: 40px;
}

.contact-form-col-right .contact-header-underline {
    background-color: var(--primary-blue);
}

.contact-form-control:focus {
    box-shadow  : none;
    border-color: var(--primary-blue);
}

.contact-submit-btn {
    background         : linear-gradient(to left, var(--primary-blue) 0%, var(--primary-blue) 50%, black 50%, black 100%);
    background-size    : 250% 100%;
    background-position: right bottom;
    color              : #ffffff !important;
    border             : none;
    padding            : 10px 24px !important;
    border-radius      : 4px;
    font-weight        : 600;
    font-size          : 15px;
    cursor             : pointer;
    display            : flex;
    align-items        : center;
    gap                : 8px;
    text-decoration    : none;
    transition         : background-position 0.4s ease-in-out;
}


.contact-submit-btn:hover {
    background-position: left bottom;
    color              : #ffffff;
    text-decoration    : none;
}

.contact-terms-text {
    font-size: 14px;
    color    : #666;
}

.contact-form .row>[class*="col-"] {
    padding-left : 0;
    padding-right: 0;
}

.contact-form-control,
.form-select.form-control,
.contact-form-col-right .form-select {
    height          : 38px !important;
    line-height     : 38px;
    padding         : 0 10px;
    box-sizing      : border-box;
    border          : 1px solid #ddd;
    border-radius   : 4px;
    font-size       : 0.8rem !important;
    background-color: white;
    width           : 100%;
}

.contact-form-control[rows="5"] {
    height     : auto;
    line-height: 1.5;
    padding    : 8px 10px;
    resize     : none;
}

.input-size {
    height: 50px !important;
}

.contact-form .row .col-sm-6:nth-child(even) {
    padding-left: 10px;
}

.contact-form .row .col-sm-6:nth-child(odd) {
    padding-right: 10px;
}

.contact-form-control[type="file"] {
    height            : 38px;
    line-height       : 1;
    padding           : 0;
    appearance        : none;
    -webkit-appearance: none;
    -moz-appearance   : none;
    font-size         : 0.8rem;
}


.contact-form-control[type="file"]::-webkit-file-upload-button {
    width           : 25%;
    height          : 38px;
    background-color: white;
    color           : black;
    border          : none;
    border-right    : 1px solid #ddd;
    cursor          : pointer;
    margin          : 0;
    padding         : 0 10px;
    box-sizing      : border-box;
    line-height     : 38px;
    text-align      : center;
    background      : #cccc;
}

.contact-title {
    color      : white;
    font-size  : 40px;
    font-weight: 700;
}

.contact-subtitle {
    color    : white;
    font-size: 16px;
}

.error-message {
    display: none;
}

.has-error .error-message {
    display: block;
    color: #dc3545;
    font-size: 13px;
    margin-top: 5px;
}

.has-error input,
.has-error textarea,
.has-error select {
    border: 1px solid #dc3545;
}


.elementor-widget-container {
    margin: 32px 0px 0px 0px;
}

.elementor-icon-box-wrapper {
    display       : flex;
    text-align    : start;
    flex-direction: row;
}

.elementor-icon-box-icon {
    display      : inline-flex;
    flex         : 0 0 auto;
    margin-right : var(--icon-box-icon-margin, 15px);
    margin-left  : 0;
    margin-bottom: unset;
    line-height  : 1;
}

.elementor-icon {
    fill        : #EDEDED;
    color       : #EDEDED;
    border-color: #EDEDED;
    font-size   : 44px;
}

.elementor-icon-box-title a {
    color          : white;
    box-shadow     : none;
    text-decoration: unset;
}

.elementor-icon-box-title a:hover {
    color          : var(--primary-blue);
    box-shadow     : none;
    text-decoration: unset;
}

.elementor-animation-bounce-in {
    transition-duration: .5s;
}

.elementor-icon {
    display    : inline-block;
    line-height: 1;
    transition : all .3s;
    color      : #69727d;
    font-size  : 50px;
    text-align : center;
}

.elementor-icon svg {
    width   : 60px;
    height  : 60px;
    position: relative;
    display : block;
}

.elementor-icon-box-content {
    flex-grow: 1;
}

.elementor-icon-box-title {
    font-size     : 17px;
    font-weight   : bold;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom : 8px;
    color         : #FFFFFF;
}

.elementor-icon-box-description {
    color        : #EDEDED;
    font-size    : 15px;
    font-weight  : 400;
    line-height  : 24px;
    margin-bottom: 10px;
}

.elementor-social-icons-wrapper {
    display       : flex;
    flex-direction: row;
    align-items   : center;
    gap           : 12px;
    flex-wrap     : nowrap;
}

.elementor-social-icons-wrapper .elementor-grid-item {
    display: flex;
}

.elementor-grid-item .elementor-icon {
    display        : inline-flex;
    justify-content: center;
    align-items    : center;
    transition     : all .3s;
    border-radius  : 50%;
}

.elementor-social-icon {
    background-color: #1A191D;
    --icon-padding  : 0.8em;
    border          : 2px solid #FFFFFF40;
    color           : #fff;
    cursor          : pointer;
    width           : 45px;
    height          : 45px;
    font-size       : 17px;
    position        : relative;
    overflow        : visible;
}

.elementor-social-icon:hover {
    color           : white;
    text-decoration : unset;
    border-color    : #00AEEF;
    background-color: #00AEEF;
    animation       : pulse 1.2s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

a.elementor-animation-bounce-in:hover {
    animation: bounceInHover 0.6s ease-out;
}

@keyframes bounceInHover {
    0% {
        transform: scale(1);
    }

    30% {
        transform: scale(1.15);
    }

    50% {
        transform: scale(0.92);
    }

    70% {
        transform: scale(1.08);
    }

    90% {
        transform: scale(0.98);
    }

    100% {
        transform: scale(1);
    }
}

span.elementor-animation-wobble-vertical:hover {
    animation: wobbleVertical 0.6s ease-out;
}

@keyframes wobbleVertical {
    0% {
        transform: translateY(0);
    }

    20% {
        transform: translateY(-6px);
    }

    40% {
        transform: translateY(5px);
    }

    60% {
        transform: translateY(-4px);
    }

    80% {
        transform: translateY(3px);
    }

    100% {
        transform: translateY(0);
    }
}

.ggmap-view {
    line-height: 0;
}

.ggmap-view iframe {
    display: block;
}

/*------------------------------------------------Scroll button-------------------------------------------------*/
.scroll-to-top-btn {
    display         : none;
    position        : fixed;
    bottom          : 20px;
    right           : 20px;
    z-index         : 99;
    width           : 50px;
    line-height     : 50px;
    text-align      : center;
    background-color: var(--primary-blue);
    color           : #fff;
    border-radius   : 4px;
    box-shadow      : 0 2px 5px 0 rgba(0, 0, 0, 0.26);
    font-size       : 20px;
}

.scroll-to-top-btn:hover {
    background-color: #077499;
    color           : #fff;
    transform       : scale(1.05);
}

.scroll-to-top-btn i {
    pointer-events: none;
}

.footer-title2 {
    display        : flex;
    flex-direction : row;
    justify-content: space-between;
}

@media (max-width: 450px) {
    .service-hero-section {
        position  : relative;
        padding   : 80px 15px;
        text-align: center;
        overflow  : hidden;
        min-height: 350px;
        margin-top: 70px;
    }

    .service-hero-section img {
        position  : absolute;
        top       : 0;
        left      : 0;
        width     : 100%;
        height    : 100%;
        object-fit: cover;
        z-index   : 0;
    }

    .service-hero-section .container {
        position: relative;
        z-index : 2;
    }

    .service-hero-section .row {
        width  : 100%;
        margin : 0;
        display: block;
    }

    .service-hero-section h1 {
        color        : white;
        font-size    : 26px;
        font-weight  : 700;
        line-height  : 1.3;
        margin-bottom: 10px;
    }

    .service-hero-section p {
        color        : rgba(255, 255, 255, 0.8);
        font-size    : 14px;
        margin-bottom: 15px;
        padding      : 0 10px;
    }

    .service-hero-section .breadcrumb {
        color          : white;
        font-size      : 13px;
        padding        : 10px 20px !important;
        justify-content: center;
    }

    .service-hero-section .breadcrumb a {
        color          : white;
        text-decoration: none;
    }

    .service-hero-section .breadcrumb i {
        font-size     : 10px;
        vertical-align: middle;
        margin        : 0 5px;
    }

    .map-tooltip {
        display       : none !important;
        opacity       : 0 !important;
        pointer-events: none !important;
    }

    .mobile-tooltip {
        position       : absolute;
        top            : 0;
        left           : 0;
        width          : 100%;
        height         : 100%;
        display        : none;
        justify-content: center;
        align-items    : center;
        padding        : 20px;
        z-index        : 20;
    }

    .mobile-tooltip-content {
        background   : #fff;
        padding      : 20px 25px;
        border-radius: 12px;
        width        : 90%;
        max-width    : 340px;
        position     : relative;
        text-align   : center;
    }

    .mobile-tooltip-content span {
        display: block;
    }

    .mobile-tooltip-content #mobile-tooltip-title {
        font-size    : 20px;
        font-weight  : bold;
        margin-bottom: 6px;
    }

    .mobile-tooltip-content #mobile-tooltip-subtitle {
        font-size: 14px;
        color    : #666;
    }

    .mobile-close {
        position       : relative;
        top            : -8px;
        left           : 46%;
        width          : 32px;
        height         : 32px;
        border-radius  : 50%;
        background     : rgba(0, 0, 0, 0.75);
        border         : none;
        cursor         : pointer;
        display        : flex;
        justify-content: center;
        align-items    : center;
        text-align     : center;
        transition     : background 0.2s ease;
    }

    .mobile-close::before,
    .mobile-close::after {
        content      : "";
        position     : absolute;
        width        : 18px;
        height       : 2px;
        background   : #fff;
        border-radius: 2px;
    }

    .mobile-close::before {
        transform: rotate(45deg);
    }

    .mobile-close::after {
        transform: rotate(-45deg);
    }

    .mobile-close:hover {
        background: rgba(0, 0, 0, 0.9);
    }

    .contact-qna-title,
    .contact-qna-title {
        font-size: 30px;
    }

    .contact-qna-col-left {
        background-position: bottom center;
        background-size    : 100% auto;
    }

    .contact-qna-inner {
        padding: 0px 15px 35px 15px;
    }

    .contact-title {
        font-size : 35px;
        text-align: center;
    }

    .contact-subtitle {
        font-size : 17px;
        text-align: center;
    }

    .contact-qna-title {
        font-size: 32px;
    }

    .contact-qna-subtitle {
        font-size    : 15px;
        margin-bottom: 30px;
    }

    .contact-header-underline {
        margin-bottom: 20px;
    }

    .contact-qna-toggle {
        padding  : 12px 15px;
        font-size: 16px;
    }

    .contact-qna-body {
        padding  : 10px 15px;
        font-size: 14px;
    }

    .contact-form-inner {
        padding: 100px 15px;
    }

    .contact-form-title {
        font-size    : 32px;
        margin-bottom: 15px;
    }

    .contact-form-subtitle {
        font-size    : 15px;
        margin-bottom: 30px;
    }

    .contact-form .row .col-sm-6 {
        width        : 100%;
        padding-left : 0 !important;
        padding-right: 0 !important;
    }

    .contact-form .row .col-sm-6:nth-child(even),
    .contact-form .row .col-sm-6:nth-child(odd) {
        padding-left : 0;
        padding-right: 0;
    }

    .contact-form-control[type="file"]::-webkit-file-upload-button {
        width: 30%;
    }

    .elementor-icon-box-wrapper {
        flex-direction: column;
        text-align    : center;
        align-items   : center;
    }

    .elementor-icon-box-content {
        margin-top: 20px;
        width     : 70%;
    }

    .elementor-social-icons-wrapper {
        justify-content: center;
    }

    #scrollToTopBtn {
        bottom: 30px;
        right : 15px;
    }
}

@media (min-width: 992px) and (max-width: 1299px) {
    .service-hero-section {
        height: 60vh;
    }

    .service-hero-section h1 {
        font-size: 48px;
    }

    .service-hero-section p {
        font-size: 18px;
        padding  : 0 100px;
    }

    .contact-qna-inner,
    .contact-form-inner {
        padding: 40px;
    }

    .contact-qna-title,
    .contact-form-title {
        font-size: 40px;
    }

    .contact-qna-subtitle,
    .contact-form-subtitle {
        font-size: 15px;
    }

    .contact-form .row .col-sm-6:nth-child(even) {
        padding-left: 5px;
    }

    .contact-form .row .col-sm-6:nth-child(odd) {
        padding-right: 5px;
    }
}


@media (min-width: 1300px) and (max-width: 1700px) {

    .service-hero-section {
        height: 60vh;
    }

    .service-hero-section h1 {
        font-size: 48px;
    }

    .service-hero-section p {
        font-size: 18px;
        padding  : 0 220px;
    }

    .contact-qna-inner,
    .contact-form-inner {
        padding: 60px 25px;
    }

    .contact-qna-title,
    .contact-form-title {
        font-size: 40px;
    }

    .contact-qna-subtitle,
    .contact-form-subtitle {
        font-size: 17px;
    }

    .contact-form .row .col-sm-6:nth-child(even) {
        padding-left: 15px;
    }

    .contact-form .row .col-sm-6:nth-child(odd) {
        padding-right: 15px;
    }
}