a.backtop:hover
 {
    background: linear-gradient(45deg, #0078b5, #01082d) !important;
    color: #fff;
}

.ft{
    color: #fff !important;
}
.ft :hover{
    color: #0078b5 !important;
}

.ft2{
    color: #fff !important;
}
.ft2 :hover{
    color: #0078b5 !important;
}
.single-work_list a:hover {
    color: #0078b5 !important;
}


.journal-detail2 {
    position: relative;
    padding: 50px 0px 50px;
}

.p2{
    position: relative;
    line-height: 1.7em;
    color: white;
    font-size: 16px;
}

.main-footer h2 {
      margin-top: 20px !important; 

}


/* Custom Quote Form Styles */
.custom-quote__area {
    padding: 100px 0;
    position: relative;
}

.custom-quote__title {
    font-size: 42px;
    line-height: 1.2em;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
}

.custom-quote__subtitle {
    font-size: 18px;
    line-height: 1.7em;
    color: #6c6c6c;
    margin-bottom: 40px;
    font-family: 'Inter', sans-serif;
}

.form-section {
    margin-bottom: 40px;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.form-section__title {
    font-size: 22px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.form-label {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
}

.form-control {
    width: 100%;
    height: 50px;
    padding: 10px 20px;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    background: #fff;
    color: #1a1a1a;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-control:focus {
    border-color: var(--theme-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(var(--theme-color-rgb), 0.1);
}

textarea.form-control {
    height: auto;
    min-height: 120px;
    resize: vertical;
}

.subservices-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.subservice-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-right: 15px;
    font-size: 14px;
    color: #6c6c6c;
    transition: all 0.3s ease;
}

.subservice-option:hover {
    color: var(--theme-color);
}

.checkbox-custom {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 1px solid #e5e5e5;
    border-radius: 3px;
    margin-right: 8px;
    position: relative;
    transition: all 0.3s ease;
}

.subservice-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.subservice-option input[type="checkbox"]:checked + .checkbox-custom {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}

.subservice-option input[type="checkbox"]:checked + .checkbox-custom:after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* File Upload Styles */
.file-upload-area {
    border: 2px dashed #e5e5e5;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.file-upload-area.highlight {
    border-color: var(--theme-color);
    background-color: rgba(var(--theme-color-rgb), 0.05);
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    color: #6c6c6c;
    font-size: 15px;
}

.file-upload-label i {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--theme-color);
}

.file-input {
    display: none;
}

.file-preview {
    margin-top: 20px;
    text-align: left;
}

.file-preview-item {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    background: #f9f9f9;
    border-radius: 5px;
    margin-bottom: 8px;
    font-size: 14px;
}

.file-preview-item i {
    margin-right: 10px;
    color: var(--theme-color);
}

.file-remove {
    margin-left: auto;
    cursor: pointer;
    color: #0078b5;
}

.file-upload-info {
    font-size: 13px;
    color: #999;
    margin-top: 10px;
}

/* Submit Button - Matching Montek Theme */
.form-submit {
    text-align: center;
    margin-top: 30px;
}

.custom-submit-btn {
    background-color: var(--theme-color);
    color: #fff;
    border: none;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    font-family: 'Inter', sans-serif;
}

.custom-submit-btn:hover {
    background-color: #1a1a1a;
    color: #fff;
}

.custom-submit-btn i {
    margin-left: 10px;
    transition: all 0.3s ease;
}

.custom-submit-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .custom-quote__area {
        padding: 80px 0;
    }
    
    .custom-quote__title {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .custom-quote__area {
        padding: 60px 0;
    }
    
    .custom-quote__title {
        font-size: 30px;
    }
    
    .form-section {
        padding: 20px;
    }
    
    .subservices-group {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 575px) {
    .custom-quote__title {
        font-size: 26px;
    }
    
    .form-section__title {
        font-size: 20px;
    }
}