﻿
#userName-error, #userEmail-error, #userPhoneno-error, #message-error, #industry-error {
    color: red;
}

.bg_load {
    float: left;
    position: fixed;
    width: 100%;
    text-align: center;
    height: 100%;
    z-index: 999;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.7);
}

.loader_animation {
    animation-name: rotatey;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: rotatey;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: rotatey;
    -moz-animation-duration: 2s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: rotatey;
    -ms-animation-duration: 2s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: rotatey;
    -o-animation-duration: 2s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

@-webkit-keyframes rotatey {
    from {
        -webkit-transform: rotatey(0deg);
        -moz-transform: rotatey(0deg);
        -ms-transform: rotatey(0deg);
        -o-transform: rotatey(0deg);
        transform: rotatey(0deg);
    }

    to {
        -webkit-transform: rotatey(360deg);
        -moz-transform: rotatey(360deg);
        -ms-transform: rotatey(360deg);
        -o-transform: rotatey(360deg);
        transform: rotatey(360deg);
    }
}

@-moz-keyframes rotatey {
    from {
        -moz-transform: rotatey(0deg);
    }

    to {
        -moz-transform: rotatey(360deg);
    }
}

.full_layout_without_container {
    padding: 80px 15px 50px;
}

.opacity_half_color {
    opacity: 0.5;
}

.opacity_70_color {
    opacity: 0.7;
}

.padding_75 {
    padding: 75px 0;
}


.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    background-color: #16989A;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.contact-text p, .contact-text a {
    color: #666;
    text-decoration: none;
    line-height: 1.6;
    transition: color 0.3s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

    .contact-text a:hover {
        color: var(--primary);
    }

.contact-form {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 500;
        color: var(--dark);
    }

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

    .form-control:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
        outline: none;
    }

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.section-title {
    margin-bottom: 30px;
}

    .section-title h2 {
        font-size: 2.2rem;
        color: #2c3e50;
        display: inline-block;
        padding-bottom: 10px;
        background: #086d6e;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: bold;
    }

    .section-title p {
        font-size: 1.2rem;
        color: #2c3e50;
    }

    .section-title h2::after {
        content: '';
        display: block;
        width: 100px;
        height: 4px;
        background: #086d6e;
        margin: 10px auto 0;
        border-radius: 2px;
    }

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        margin-top: 0 !important;
    }

    .contact-item .section-title h2 {
        font-size: 1.8rem;
    }

    .contact-text p,
    .contact-text a {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 1.8rem;
    }

    .section-title p {
        font-size: 1rem;
    }

    .form-group label {
        font-size: 0.95rem;
    }

    .form-control {
        padding: 0.7rem;
        font-size: 0.95rem;
    }

    .btn {
        width: 100%;
        font-size: 1rem;
        padding: 0.75rem;
    }
    .row {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .contact-text h3 {
        font-size: 1.3rem;
    }

    .contact-text p,
    .contact-text a {
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 1.6rem;
    }

        .section-title h2::after {
            width: 60px;
            height: 3px;
        }

    .contact-form {
        padding: 1.5rem;
    }

    #contact .container {
        margin-top: 80px !important;
    }

    body {
        font-size: 14px;
    }
}

