﻿.contact-us-section {
    background: url('../sysimage/contactus/contactus_back.png') no-repeat;
    background-size: cover;
}
.Contact-form-section{
    background:#f2f4f5;
}
.form-field {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

    .form-field:hover {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
        transform: translateY(-1px);
    }

.input-wrapper.input-error {
    border: 2px solid #E81D25 !important;
    border-radius: 12px !important;
}

.input-wrapper {
    display: flex;
    align-items: center;
    padding: 0;
}

.icon-section {
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #e9ecef;
    min-width: 60px;
}

    .icon-section i {
        color: #495057;
        font-size: 18px;
    }

.input-section {
    flex: 1;
    padding: 0;
}

.field-label {
    color: #212529;
    font-weight: 600;
    font-size: 16px;
    margin: 0;
    padding: 12px 20px 5px 20px;
    line-height: 1.2;
}

.form-input {
    border: none;
    outline: none;
    width: 100%;
    padding: 5px 20px 15px 20px;
    font-size: 14px;
    color: #6c757d;
    background: transparent;
    transition: all 0.3s ease;
}

    .form-input::placeholder {
        color: #adb5bd;
    }

    .form-input:focus {
        color: #495057;
    }

.form-field:focus-within {
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
    border-color: #86b7fe;
}

@media (max-width: 768px) {
    .field-container {
        margin: 0 10px;
    }

    .icon-section {
        min-width: 50px;
        padding: 15px;
    }

        .icon-section i {
            font-size: 16px;
        }
    .sub-btn{
        text-align:center !important;
    }
}

/*capcha CSS*/
.captcha-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

canvas {
    background: #fff;
}

.refresh {
    font-size: 24px;
    cursor: pointer;
}

.btn-submit {
    padding: 15px 100px;
    border-radius: 10px;
    background: #EA1D25;
    border: none;
    color: white;
}

/*It Consulting Company*/
.contact-card {
    background: url('../sysimage/contactus/contact_back.png') no-repeat;
    background-size: cover;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px 30px;
    text-align: center;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

    .contact-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transition: left 0.6s ease;
    }

    .contact-card:hover::before {
        left: 100%;
    }

    .contact-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

.email-card {
    background: url('../sysimage/contactus/email_back.png') no-repeat;
    background-size:cover;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px 30px;
    text-align: center;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

    .email-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transition: left 0.6s ease;
    }

    .email-card:hover::before {
        left: 100%;
    }

    .email-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

.whatsapp-card {
    background: url('../sysimage/contactus/wpback.png') no-repeat;
    background-size: cover;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 21px 30px;
    text-align: center;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

    .whatsapp-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transition: left 0.6s ease;
    }

    .whatsapp-card:hover::before {
        left: 100%;
    }

    .whatsapp-card:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

.wechat-card {
    background: url('../sysimage/contactus/wechat_back.png') no-repeat;
    background-size: cover;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .wechat-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transition: left 0.6s ease;
    }

    .wechat-card:hover::before {
        left: 100%;
    }

    .wechat-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

.contact-card:hover {
    transform: scale(1.1) rotate(5deg);
}

.email-card:hover  {
    transform: scale(1.1) rotate(5deg);
}

/*.whatsapp-card:hover{
    transform: scale(1.1) rotate(5deg);
}*/
.wechat-card:hover  {
    transform: scale(1.1) rotate(5deg);
}


.contact-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.wechat-card:hover  {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.email-card:hover  {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}


.floating-animation {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Animation delays for staggered effect */
.email-card:nth-child(1) {
    animation-delay: 0.1s;
}

.contact-card:nth-child(2) {
    animation-delay: 0.2s;
}

.whatsapp-card:nth-child(3) {
    animation-delay: 0.3s;
}

.wechat-card:nth-child(4) {
    animation-delay: 0.4s;
}
.wp-Qrcode {
    justify-content: center;
}
.wp-Qrcode img {
    width: auto;
}

.wechat-Qrcode {
    justify-content: center;
}

    .wechat-Qrcode img {
        width: auto;
    }

/*map location css*/

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;   
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
@media (max-width: 768px) {
    
    .map-title {
        font-size: 22px;
    }
}