/*--------------------------------------------------------------
# Contact One
--------------------------------------------------------------*/
.contact-one {
    position: relative;
    display: block;
    background-color: var(--gorent-black);
    padding: 120px 0 120px;
    overflow: hidden;
    z-index: 1;
}

.contact-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: .05;
    z-index: -1;
}

.contact-one__img {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.contact-one__img img {
    width: auto;
    animation: topBottom 3s ease-in-out infinite;
}

.contact-one__left {
    position: relative;
    display: block;
    margin-right: 80px;
}

.contact-one__left .section-title__title {
    color: var(--gorent-white);
}

.contact-one__form {
    position: relative;
    display: block;
}

.contact-one__input-box {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.contact-one__input-box input[type="text"],
.contact-one__input-box input[type="email"] {
    height: 60px;
    width: 100%;
    background-color: transparent;
    border: 1px solid rgba(var(--gorent-white-rgb), .10);
    padding-left: 20px;
    padding-right: 20px;
    outline: none;
    font-size: 16px;
    font-weight: 400;
    color: rgba(var(--gorent-white-rgb), .70);
    display: block;
    border-radius: var(--gorent-bdr-radius);
}

.contact-one__input-box .select-box {
    width: 100%;
}

.contact-one__input-box .nice-select {
    height: 60px;
    width: 100%;
    background-color: transparent;
    border: 1px solid rgba(var(--gorent-white-rgb), .10);
    padding-left: 20px;
    padding-right: 20px;
    outline: none;
    font-size: 16px;
    color: rgba(var(--gorent-white-rgb), .70);
    font-weight: 400;
    border-radius: var(--gorent-bdr-radius);
    line-height: 60px;
    display: block;
    float: none;
}

.contact-one__input-box .nice-select:after {
    position: absolute;
    top: 22px;
    right: 20px;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid rgba(var(--gorent-white-rgb), .70);
    border-right: 2px solid rgba(var(--gorent-white-rgb), .70);
    margin-top: 0px;
    z-index: 10;
}

.contact-one__input-box .nice-select .option {
    color: var(--gorent-white);
}

.contact-one__input-box .nice-select .option.selected {
    font-weight: 500;
}

.contact-one__input-box .nice-select .list {
    background-color: var(--gorent-base);
}

.contact-one__input-box .nice-select .option:hover,
.contact-one__input-box .nice-select .option.focus,
.contact-one__input-box .nice-select .option.selected.focus {
    color: var(--gorent-white);
}

.contact-one__input-box textarea {
    height: 175px;
    width: 100%;
    background-color: transparent;
    border: 1px solid rgba(var(--gorent-white-rgb), .10);
    padding: 15px 20px 30px;
    outline: none;
    font-size: 16px;
    font-weight: 400;
    color: rgba(var(--gorent-white-rgb), .70);
    position: relative;
    display: block;
    border-radius: var(--gorent-bdr-radius);
}

.contact-one__input-box.text-message-box {
    height: 175px;
}

.contact-one__btn-box {
    position: relative;
    display: block;
}

.contact-one__btn-box .thm-btn {
    border: none;
}

.contact-one__btn-box .thm-btn::after {
    background-color: var(--gorent-white);
}

.contact-one__btn-box .thm-btn:hover {
    color: var(--gorent-black);
}


/*--------------------------------------------------------------
# Contact Info
--------------------------------------------------------------*/
/* SR Engineering Contact Info Section */
.contact-info {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(236, 63, 5, 0.16), transparent 34%),
        radial-gradient(circle at bottom right, rgba(32, 20, 107, 0.18), transparent 36%),
        linear-gradient(135deg, #fff8f4 0%, #f4f6ff 48%, #ffffff 100%);
    z-index: 1;
}

.contact-info::before {
    content: "";
    position: absolute;
    top: -130px;
    left: -120px;
    width: 380px;
    height: 380px;
    background: linear-gradient(135deg, #ec3f05, #20146b);
    border-radius: 50%;
    opacity: 0.13;
    filter: blur(12px);
}

.contact-info::after {
    content: "";
    position: absolute;
    right: -150px;
    bottom: -150px;
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, #20146b, #3f4f83);
    border-radius: 50%;
    opacity: 0.14;
    filter: blur(14px);
}

.contact-info .container {
    position: relative;
    z-index: 2;
}

/* Heading */
.contact-info__heading {
    max-width: 780px;
    margin: 0 auto 55px;
    text-align: center;
}

.contact-info__tagline {
    display: inline-block;
    margin-bottom: 15px;
    padding: 9px 22px;
    border-radius: 50px;
    background: rgba(236, 63, 5, 0.1);
    color: #ec3f05;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-info__heading h2 {
    margin: 0;
    font-size: 46px;
    line-height: 1.15;
    font-weight: 900;
    color: #20146b;
}

.contact-info__heading h2 span {
    color: #ec3f05;
}

.contact-info__heading p {
    max-width: 630px;
    margin: 18px auto 0;
    font-size: 18px;
    line-height: 1.7;
    color: #555d75;
}

/* Contact Card */
.contact-info__single {
    position: relative;
    height: 100%;
    min-height: 335px;
    padding: 34px;
    margin-bottom: 30px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 22px 65px rgba(32, 20, 107, 0.11);
    border: 1px solid rgba(63, 79, 131, 0.18);
    overflow: hidden;
    transition: all 0.45s ease;
}

.contact-info__single::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 135px;
    height: 135px;
    background: linear-gradient(
        135deg,
        rgba(236, 63, 5, 0.16),
        rgba(32, 20, 107, 0.14)
    );
    border-radius: 0 0 0 100%;
    transition: all 0.45s ease;
}

.contact-info__single::after {
    content: "";
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 0;
    height: 6px;
    border-radius: 30px 30px 0 0;
    background: linear-gradient(90deg, #ec3f05, #20146b, #3f4f83);
    transform: scaleX(0);
    transition: all 0.45s ease;
}

.contact-info__single:hover {
    transform: translateY(-14px);
    box-shadow: 0 35px 90px rgba(32, 20, 107, 0.2);
}

.contact-info__single:hover::before {
    width: 100%;
    height: 100%;
    border-radius: 0;
}

.contact-info__single:hover::after {
    transform: scaleX(1);
}

/* Icon */
.contact-info__icon {
    position: relative;
    width: 84px;
    height: 84px;
    margin-bottom: 28px;
    border-radius: 28px;
    background: linear-gradient(135deg, #ec3f05 0%, #20146b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 38px rgba(236, 63, 5, 0.25);
    z-index: 2;
    transition: all 0.45s ease;
}

.contact-info__single:hover .contact-info__icon {
    transform: rotate(-7deg) scale(1.08);
    background: #ffffff;
}

.contact-info__icon span {
    font-size: 34px;
    color: #ffffff;
    line-height: 1;
    transition: all 0.35s ease;
}

.contact-info__single:hover .contact-info__icon span {
    color: #ec3f05;
}

/* Content */
.contact-info__content {
    position: relative;
    z-index: 2;
}

.contact-info__content p {
    margin: 0 0 8px;
    color: #ec3f05;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.contact-info__content h3 {
    margin: 0 0 16px;
    font-size: 27px;
    font-weight: 900;
    color: #20146b;
    line-height: 1.25;
}

.contact-info__details {
    margin-bottom: 24px;
}

.contact-info__details h4 {
    margin: 0 0 10px;
    color: #30384f;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
}

.contact-info__details h4 a {
    color: #30384f;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info__details h4 a:hover {
    color: #ec3f05;
}

.contact-info__address {
    font-size: 16.5px !important;
    font-weight: 600 !important;
    line-height: 1.8 !important;
}

/* Button */
.contact-info__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 24px;
    border-radius: 50px;
    background: #20146b;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.35s ease;
}

.contact-info__btn span {
    font-size: 18px;
    line-height: 1;
}

.contact-info__btn:hover {
    background: #ec3f05;
    color: #ffffff;
    transform: translateX(4px);
}

/* Highlighted Middle Card */
.contact-info__single--active {
    background: linear-gradient(135deg, #20146b 0%, #3f4f83 100%);
    border-color: rgba(200, 208, 234, 0.25);
}

.contact-info__single--active::before {
    background: linear-gradient(
        135deg,
        rgba(236, 63, 5, 0.22),
        rgba(200, 208, 234, 0.14)
    );
}

.contact-info__single--active .contact-info__content p {
    color: #ffb39d;
}

.contact-info__single--active .contact-info__content h3,
.contact-info__single--active .contact-info__details h4,
.contact-info__single--active .contact-info__details h4 a {
    color: #ffffff;
}

.contact-info__single--active .contact-info__btn {
    background: #ffffff;
    color: #20146b;
}

.contact-info__single--active .contact-info__btn:hover {
    background: #ec3f05;
    color: #ffffff;
}

/* Responsive */
@media only screen and (max-width: 991px) {
    .contact-info {
        padding: 90px 0 60px;
    }

    .contact-info__heading h2 {
        font-size: 38px;
    }

    .contact-info__single {
        min-height: 310px;
    }
}

@media only screen and (max-width: 767px) {
    .contact-info {
        padding: 70px 0 40px;
    }

    .contact-info__heading {
        margin-bottom: 38px;
    }

    .contact-info__heading h2 {
        font-size: 30px;
    }

    .contact-info__heading p {
        font-size: 16px;
    }

    .contact-info__single {
        min-height: auto;
        padding: 28px 24px;
        border-radius: 24px;
    }

    .contact-info__icon {
        width: 72px;
        height: 72px;
        border-radius: 22px;
    }

    .contact-info__icon span {
        font-size: 25px;
    }

    .contact-info__content h3 {
        font-size: 24px;
    }

    .contact-info__details h4 {
        font-size: 16px;
    }

    .contact-info__address {
        font-size: 15px !important;
    }
}

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.contact-page {
    position: relative;
    display: block;
    padding: 0 0 120px;
    z-index: 1;
}

.contact-page__inner {
    position: relative;
    display: block;
    background-color: var(--gorent-black);
    border-radius: 20px;
    padding: 60px 0 60px;
}

.contact-page__left {
    position: relative;
    display: block;
    margin-left: 60px;
    margin-right: 10px;
}

.google-map__one {
    position: relative;
    display: block;
    border: none;
    height: 523px;
    width: 100%;
    border-radius: 20px;
}

.contact-page__right {
    position: relative;
    display: block;
    margin-left: 20px;
    margin-right: 40px;
}

.contact-page__form-title {
    font-size: 25px;
    font-weight: 700;
    line-height: 1.2em;
    /* letter-spacing: -1.44px; */
    color: #e0450e;
}

p.contact-page__form-ttitle {
    font-size: 17px;
    padding: 10px 0 18px;
    color: #ffffff;
}

.contact-page__form {
    position: relative;
    display: block;
}

.contact-page__input-box {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.contact-page__input-box input[type="text"],
.contact-page__input-box input[type="email"],
.contact-page__input-box input[type="tel"],
.contact-page__input-box input[type="number"] {
    height: 57px;
    width: 100%;
    background-color: rgba(var(--gorent-white-rgb), 0.05);
    border: 1px solid rgba(var(--gorent-white-rgb), .10);
    padding-left: 20px;
    padding-right: 20px;
    outline: none;
    font-size: 16px;
    font-weight: 400;
    color: var(--gorent-gray);
    display: block;
    border-radius: 10px;
}

.contact-page__input-box .select-box {
    width: 100%;
}

.contact-page__input-box .nice-select {
    height: 57px;
    width: 100%;
    background-color: rgba(var(--gorent-white-rgb), 0.05);
    border: 1px solid rgba(var(--gorent-white-rgb), .10);
    padding-left: 20px;
    padding-right: 20px;
    outline: none;
    font-size: 16px;
    color: var(--gorent-gray);
    display: block;
    font-weight: 400;
    border-radius: 20px;
    line-height: 57px;
    float: none;
}

.contact-page__input-box textarea {
    font-size: 16px;
    color: var(--gorent-gray);
    height: 175px;
    width: 100%;
    background-color: rgba(var(--gorent-white-rgb), 0.05);
    border: 1px solid rgba(var(--gorent-white-rgb), .10);
    padding: 15px 20px 30px;
    border-radius: 20px;
    outline: none;
    font-weight: 400;
    position: relative;
    display: block;
}

.contact-page__input-box.text-message-box {
    height: 175px;
}


.contact-page__btn-box {
    position: relative;
    display: block;
}

.contact-page__btn-box .thm-btn {
    border: none;
}

.contact-page__btn-box .thm-btn:hover {
    color: var(--gorent-black);
}

.contact-page__btn-box .thm-btn::before,
.contact-page__btn-box .thm-btn::after {
    background-color: var(--gorent-white);
}

/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/


/* Input and textarea text color */
.contact-page__input-box input,
.contact-page__input-box select,
.contact-page__input-box textarea {
    color: #ffffff !important;
}

/* Placeholder color */
.contact-page__input-box input::placeholder,
.contact-page__input-box textarea::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Select dropdown text color */
.contact-page__input-box select {
    color: #ffffff !important;
}

/* Select option text color (for dropdown list) */
.contact-page__input-box select option {
    color: #000000;
}