/* FORM WRAPPER */
#ht-main-nav .contact-info li span {
    color: #fff!important;
}
.referral-form,
.wpcf7 form {
    max-width: 1100px;
    margin: auto;
    font-family: inherit;
}
.wpcf7-not-valid-tip {
    position: relative;
    right: 0;
    font-size: 0.8rem;
    bottom: 0;
    margin-bottom:0!important;
    /* margin: 0 !important; */
}
/* SECTION HEADINGS */
span.wpcf7-form-control.wpcf7-checkbox {
    border:none;
}
.wpcf7 h5,
.referral-form h5 {
    text-align: center;
    color: #03B1A9;
    font-weight: 700;
    margin: 40px 0 20px;
    letter-spacing: 1px;
}

/* LABELS */
.wpcf7 label {
    font-weight: 600;
    color: #333;
    display: block;
    margin-bottom: 6px;
}

/* INPUTS */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="date"],
.wpcf7 select,
.wpcf7 textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    font-size: 14px;
    transition: 0.3s ease;
}

/* TEXTAREA */
.wpcf7 textarea {
    min-height: 120px;
    resize: vertical;
}

/* FOCUS */
.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
    border-color: #03B1A9;
    outline: none;
    box-shadow: 0 0 0 2px rgba(3,177,169,0.15);
}

/* CHECKBOX & RADIO */
.wpcf7 input[type="checkbox"],
.wpcf7 input[type="radio"] {
    margin-right: 6px;
}

.wpcf7-list-item {
    margin-right: 18px;
}

/* FILE UPLOAD */
.wpcf7 input[type="file"] {
    border: 1px dashed #03B1A9;
    padding: 10px;
    border-radius: 6px;
    background: #f9fefe;
}

/* SUBMIT BUTTON */
.wpcf7 input[type="submit"] {
    background: #03B1A9;
    color: #fff;
    border: none;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s ease;
    margin-top: 20px;
}

.wpcf7 input[type="submit"]:hover {
    background: #028e86;
}

/* GRID LAYOUT */
.form-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* TWO & FULL COLUMN */
.col-2 { grid-column: span 2; }
.col-3 { grid-column: span 3; }
.col-4 { grid-column: span 4; }
/* ===============================
   Contact Form 7 – Careers Form
   =============================== */

.wpcf7-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

/* Labels */
.wpcf7-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 14px;
    color: #1f2937;
}

/* Inputs, Select, Textarea */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="file"],
.wpcf7-form select,
.wpcf7-form textarea {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 20px;
    font-size: 14px;
    border-radius: 6px;
    border: 1px solid #d1d5db;
    background-color: #f9fafb;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Placeholder */
.wpcf7-form ::placeholder {
    color: #9ca3af;
}

/* Focus State */
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: #03B1A9;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* Select dropdown arrow fix */
.wpcf7-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%236b7280' viewBox='0 0 20 20'%3E%3Cpath d='M5.5 7l4.5 4.5L14.5 7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
}

/* File Upload */
.wpcf7-form input[type="file"] {
    padding: 10px;
    background-color: #ffffff;
    cursor: pointer;
}

/* Textarea */
.wpcf7-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Submit Button */
.wpcf7-form input[type="submit"] {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    background-color: #03B1A9;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Submit Hover */
.wpcf7-form input[type="submit"]:hover {
    background-color: #03B1A9;
    transform: translateY(-1px);
}

/* Spinner Alignment */
.wpcf7-spinner {
    display: block;
    margin: 15px auto 0;
}

/* Validation Errors */
.wpcf7-not-valid {
    border-color: #dc2626 !important;
}

.wpcf7-not-valid-tip {
    font-size: 13px;
    color: #dc2626;
    margin-top: -15px;
    margin-bottom: 15px;
}

/* Success & Error Messages */
.wpcf7-response-output {
    margin-top: 20px;
    padding: 14px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
}

.wpcf7-mail-sent-ok {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #10b981;
}

.wpcf7-validation-errors,
.wpcf7-mail-sent-ng {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .wpcf7-form {
        padding: 20px;
    }
    .themeht-btn .btn-icon {
    height: 30px;
    width:30px;
    }
    .themeht-btn {
    font-size: 14px;
    padding-left:10px;
    }
    .banner-content h6 {
    padding: 4px;
}
.banner-slider.style-one .banner-content h6 span {
    font-size: 10px;
}
.mb-3 {
    margin-bottom: 0.5rem !important;
}
.mb-4 {
    margin-bottom: 0.5rem !important;
}
h4, .h4 {
    line-height: normal!important;
    font-size: 22px!important;
}
.service-item.style-4 .service-desc {
    padding: 10px 15px;
}
.service-item.style-4 .service-icon,.service-item.style-1 .service-icon{
    width: 60px;
    height: 60px;
    border-radius: 8px;
    font-size: 36px;
    left: 78%;
}
.service-item.style-1 .service-icon{
    bottom:0;
}
.swiper-pagination {
    margin-top: 15px;
}
.service-item .service-desc p {
    font-size: 14px;
}
    .theme-title h6 {
        font-size: 12px;
        letter-spacing: 1.5px;
        line-height: 20px;
    }
.theme-title.text-white h6 {
    background-color: transparent;
    box-shadow: rgb(81 81 81 / 36%) 3px 3px 6px 0px inset, rgb(59 59 59 / 8%) -3px -3px 6px 1px inset!important;
}
    .main-nav .sub-menu li a {
        padding: 6px 0;
        line-height: 22px;
    }
    .main-nav ul.sub-menu.show {
        padding: 10px;
        border: 1px solid #efefef;
    }
    .list-icon li {
        font-size: 14px;
        margin-bottom: 5px;
        line-height: 22px;
    }
    .testimonial .testimonial-img {
    width: 35px;
    height: 35px;
    }
    .testimonial-rating i {
        font-size: 14px;
    }
    .testimonial.style-1 {
    width: 200px;
    border-radius: 12px;
    margin: 0px 0;
    padding: 15px;
    border-bottom: 1px solid rgba(1, 81, 202, 0.15);
}
 .testimonial-rating i {
        font-size: 16px;
    }
    .testimonial p {
    margin: 10px 0;
}
.list-icon li i {
    font-size: 14px;
    margin-right: 10px;
    
}
.elementor-widget-text-editor .elementor-drop-cap {
    font-size: 40px;
}
.featured-item.style-1 {
    padding: 15px;
    border-radius: 16px;
    height: 100%;
}
.featured-item.style-1 .featured-icon i {
    line-height: 1;
    font-size: 40px;
    margin-top: 10px;
}
.service-item.style-1 .service-desc {
    padding: 15px;
}
.service-item.style-1 {
    padding: 0 0 15px 0;
}
    .wpcf7-form {
        padding: 10px;
    }

.wpcf7-form input[type="text"], .wpcf7-form input[type="email"], .wpcf7-form input[type="tel"], .wpcf7-form input[type="file"], .wpcf7-form select, .wpcf7-form textarea {
    width: 100%;
    padding: 5px 10px;
    margin-bottom: 5px;
    font-size: 12px;
    border-radius: 6px;
    border: 1px solid #d1d5db;
    background-color: #f9fafb;
    height: auto;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.wpcf7-form-control.wpcf7-select, select {
    border-radius: 6px;
    padding: 10px;
    font-size: 14px;
    font-size: 12px;
    
}
.wpcf7 input[type="submit"] {
    padding: 8px 40px;
    font-size: 14px;
    margin-top: 5px;
}
h2.text-anime-style {
    text-align: center;
}
.ht-subtitle {
    text-align: center;
}
.nav-menu-toggle {
    font-size: 32px;
    background: #fff;
    box-shadow: rgb(99 99 99 / 16%) 0px 2px 8px 0px;
}
.featured-title h4 {
    font-size: 18px !important;
    margin-bottom: 5px;
}
    .wpcf7-not-valid-tip {
        font-size: 12px;
        margin-top: -6px;
        color: #dc2626 !important;
    }
.breadcrumb-2 .page-title, .breadcrumb-3 .page-title {
    padding: 70px 0 0;
    border-radius: 0 0 10px;
}
    .page-title h1 {
        font-size: 22px !important;
        line-height: 30px !important;
        margin-bottom: 30px;
    }
        .theme-title p {
        margin:0;
        font-size: 14px!important;
        text-align: justify!important;
        line-height: 24px!important;
    }
    .featured-item p {
    font-size: 14px;
    text-align: justify;
    margin-top: 10px;
}
.breadcrumb-item, .breadcrumb-item a {
    font-size: 12px;
    line-height: 18px;
}
h4.ht-heading {
    font-size: 18px !important;
}
.wpcf7 h5, .referral-form h5 {
    font-size: 18px;
    margin: 10px 0 10px 0 !important;
}
.wpcf7-form-control.wpcf7-textarea {
    max-height: 50px;
}
span.wpcf7-form-control.wpcf7-checkbox {
    border: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0 15px;
}
.wpcf7-list-item {
    margin: 0;
}
.footer-menu li {
    margin-bottom: 4px;
}
}
/* RESPONSIVE */
@media (max-width: 992px) {
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .wpcf7 input[type="submit"] {
        width: 100%;
        border-radius: 6px;
    }
}
