/* @import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Righteous&display=swap'); */

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Righteous font family */
@font-face {
    font-family: "Righteous"; 
    src: url('./font-family/righteous/Righteous-Regular.woff2') format('woff2'), 
         url('./font-family/righteous/Righteous-Regular.woff') format('woff'),
         url('./font-family/righteous/Righteous-Regular.ttf') format('truetype'); 
    font-weight: normal; 
    font-style: normal;
}
/* josefin font family */
@font-face {
    font-family: "Josefin Sans"; 
    src: url('./font-family/josefin/JosefinSans-Medium.woff2') format('woff2'), 
         url('./font-family/josefin/JosefinSans-Medium.woff') format('woff'),
         url('./font-family/josefin/JosefinSans-Medium.ttf') format('truetype'); 
    font-weight: 500; 
    font-style: normal;
}

/* josefin font family */
@font-face {
    font-family: "Josefin Sans";
    src: url('./font-family/josefin/JosefinSans-Regular.woff2') format('woff2'), 
         url('./font-family/josefin/JosefinSans-Regular.woff') format('woff'),
         url('./font-family/josefin/JosefinSans-Regular.ttf') format('truetype'); 
    font-weight: normal; 
    font-style: normal;
}

body{
    font-family: "Righteous";
    font-weight: 400;
    font-style: normal;
}

:root{
    --white: #ffffff;
    --black: #000000;
    --rich-black: #1b1b1b;
    --gray-F7: #f7f7f7;
    --darkgray-A9: #a9a9a9;
    --gainsboro: #e9e9e9;
    --red-Ae: #ae6251;
    --dim-gray: #5e5e5e;
    --charcoal-dark: #474747;
    --light-gray: #dadada;
    --linen-F6: #f6f6f6;
    --red-EF: #ef0000;
    --brown-6A: #6a392f;
    --black-59: #595959;
    --black-26: #262626;
    --black-16: #161616;
    --silver-A4: #a4a4a4;
}

img{
    max-width: 100%;
    height: auto;
}

a{
    text-decoration: none;
}

.main_title{
    font-size: 42px;
    line-height: 1.4;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-family: "Righteous";
}

.container{
    max-width:1280px;
    margin: auto;
}

.header{
    padding: 16px;
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 99;
}
.header .logo_text{
    color: var(--red-Ae);
    font-size: 24px;
    line-height: 32px;
    font-weight: 400;
    font-family: "Josefin Sans";
    padding: 0 24px;
    line-height: 1.23;
}
/* hero section */
.hero_section{
    min-height: 60vh;
    display: flex;
    background-color: var(--black);
}
.hero_section .heroleft_imgwrpper,
.hero_section .heroright_detailswrapper {
    width: 50%;
    max-width: 100%;
}

.hero_section .heroleft_imgwrpper{
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%), url('./images/hero-bg-img.webp');
    background-repeat: no-repeat;
    background-size: auto, cover;
    background-position: center;
}

.hero_section .heroright_detailswrapper .herorightdtls_wrapperinner{
    max-width: 427px;
    margin: auto;
    padding: 72px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}    

.hero_section .heroright_detailswrapper .herorightdtls_wrapperinner .hero_title{
    color: var(--gray-F7);
}

.hero_section .heroright_detailswrapper .herorightdtls_wrapperinner .we_make_text{
    font-size: 24px;
    line-height: 1;
    margin-top: 16px;
    color: var(--darkgray-A9);
    font-family: "Josefin Sans";
}

.hero_section .heroright_detailswrapper .herorightdtls_wrapperinner .get_in_touch{
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    background-color: var(--white);
    min-height: 56px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    padding:8px 32px;
    margin-top: 24px;
    font-family: "Josefin Sans";
    text-transform: uppercase;
    letter-spacing: 0.063em;

}

.hero_section .heroright_detailswrapper .herorightdtls_wrapperinner .get_in_touch:hover{
    background-color: var(--gainsboro);
}

/* about us section */
.about_us_section{
    padding: 56px 0;
}

.about_us_section .about_us_title{
    color: var(--red-Ae);
    text-align: center;
    margin-bottom: 40px;
}

.about_us_section .card_row{
    display: flex;
    flex-wrap: wrap;
}

.about_us_section .card_row .card{
    width: 33.33%;
    padding: 0 24px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}
.about_us_section .card_row .card_img{
    border-radius: 50%;
}
.about_us_section .card_row .card .card_title{
    color: var(--rich-black);
    font-size: 24px;
    line-height: 1.3;
    font-weight: 400;
    font-family: "Josefin Sans";
    text-transform: capitalize;
}

.about_us_section .card_row .card .card_paragraph{
    color: var(--dim-gray);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    font-family: "Josefin Sans";
}

/* conatct form */
.contact_form{
    font-family: "Josefin Sans";
    text-align: center;
}
.contact_form .contactform_details .contact-title{
    color: var(--red-Ae);
    margin-bottom: 40px;
    text-align: center;
}
.contact_form .contactform_details .content_wrapper{
    margin-bottom: 16px;
}
.contact_form .contactform_details .contactform_details_text{
    font-size: 24px;
    line-height: 1.5;
    /* color: var(--dim-gray); */
    color: var(--rich-black);
    margin-bottom: 24px;
    font-weight: 400;
}
.contact_form .contactform_details .content_wrapper .email_phone_text{
    margin-bottom: 24px;
    display: inline-block;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
    color: var(--red-Ae);
}
.contact_form .contactform_details .content_wrapper .email_phone_text:hover{
    color: var(--brown-6A);
}
.contact_form .contactform_details .content_wrapper .email_phone_text .label{
    color: var(--dim-gray);
}
.contact_form .contactform_details .contactform_details_texttwo{
    font-size: 18px;
    line-height: 1.5;
    color: var(--dim-gray);
    margin-bottom: 24px;
    display: inline-block;
}
.contact_form .contactform_details .toggle-dropdown .tg-header{
    display: flex;
    gap: 4px;
    cursor: pointer;
}
.contact_form .contactform_details .toggle-dropdown .tg-header span{
    color: var(--red-Ae);
}
.contact_form .contactform_details .toggle-dropdown .tg-header span:hover{
    color: var(--brown-6A);
}
.contact_form .contact_form_wrpper{
    padding: 56px 24px;
    max-width: 600px;
    margin: auto;
}

.contact_form .contact_form_wrpper .form_title{
    color: var( --rich-black);
    font-size: 24px;
    line-height: 1.3;
    font-weight: 400;
    text-align: center;
    margin-bottom: 24px;
    font-family: "Josefin Sans";
}

.contact_form .contact_form_wrpper .custom_form .form_input label{
    color: var(--charcoal-dark);
    font-size: 16px;
    line-height: 1.5;
    position: relative;
    text-transform: capitalize;
    font-family: "Josefin Sans";
    position: absolute;
    display: block;
    left: 15px;
    top: 15px;
    transition: all 0.15s ease 0s;
}
.contact_form .contact_form_wrpper .custom_form .form_input{
    position: relative;
    margin-bottom: 24px;
}
.contact_form .contact_form_wrpper .custom_form .form_input .error_msgemail{
    color: var(--red-EF);
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
    margin-top: 4px;
    text-align: left;
}
.contact_form .contact_form_wrpper .custom_form .form_input .form_control{
    padding: 23px 16px 7px;
    width: 100%;
    background-color: var(--linen-F6);
    border: 0;
    border-bottom: 4px solid var(--light-gray);
    font-size: 14px; 
    color: var(--charcoal-dark);
    font-family: "Josefin Sans";
}
.contact_form .contact_form_wrpper .custom_form .form_input textarea.form_control{
    min-height: 171px;
    resize: vertical;
}
.contact_form .contact_form_wrpper .custom_form .form_input .form_control:focus{
    box-shadow: currentcolor 0px 0px 0px 1px inset;
    outline: 0;
}

/* Change label size when input is focused */
.contact_form .contact_form_wrpper .custom_form .form_input .form_control:focus + label,
.contact_form .contact_form_wrpper .custom_form .form_input .form_control.has-value + label {
    font-size: 14px; 
    top: 5px; 
}

.contact_form .contact_form_wrpper .custom_form .doc_upload{
    color: var(--red-Ae);
    font-size: 18px;
    font-weight: 400;
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 16px;
    display: block;
}
.contact_form .contact_form_wrpper .custom_form .upload-preview{
    position: relative;
}

.contact_form .contact_form_wrpper .custom_form .upload-preview .delete-file{
    position: absolute;
    right: 24px;
    top: 16px;
    cursor: pointer;
}
.contact_form .contact_form_wrpper .custom_form .upload-preview .file-name{
    background: #00000008;
    padding: 16px 50px 16px 24px;
    margin-bottom: 8px;
    color: var(--rich-black);
    font-size: 17px;
    line-height: 1.5;
    font-weight: 400;
    text-align: left;
}
.contact_form .contact_form_wrpper .custom_form .doc_upload .doc_uploadicon{
    display: flex;
    gap: 4px;
    cursor: pointer;
    position: relative;
    z-index: 1;
    width: 80%;
}


.toggle-content {
    display: none; /* Hide the content initially */
}

.toggle-dropdown.active .toggle-content {
    display: block; /* Show the content when active */
    text-transform: capitalize;
    text-align: left;
    display: inline-block;
    width: 100%;
}
.toggle-dropdown.active .toggle-content .day_name{
    width: 42px;
    display: inline-block;
    padding: 1px 0;
    text-transform: capitalize;
}
.toggle-dropdown.active .toggle-content .current-day-active{
    font-weight: 500;
}
.toggle-header {
    cursor: pointer; /* Change cursor to pointer */
    display: flex; /* Flex layout for header */
    /* justify-content: center;  */
    align-items: center; /* Center the items vertically */
    gap: 4px;
    min-width: 41px;
    position: relative;
}
/* .toggle-header::after {
    position: absolute;
    content: '';
    width: 250px;
    left: 0;
    height: 100%;
    z-index: 9;
    background-color: transparent;
} */
.arrow-icon {
    transition: transform 0.3s ease; /* Smooth rotation for the arrow */
}

.toggle-dropdown.active .arrow-icon {
    transform: rotate(180deg); /* Rotate arrow when dropdown is active */
    margin-top: -5px;
}


.contact_form .contact_form_wrpper .custom_form .doc_upload:hover{
    color: var(--brown-6A);
}

.contact_form .contact_form_wrpper .custom_form .doc_upload .attachments_docs{
    color: var(--black-59);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    margin-top: -18px;
}

.contact_form .contact_form_wrpper .custom_form .doc_upload .attachments_docs #attachments-count{
    text-align: right;
    width: 100%;
    display: inline-block;
}
.contact_form .contact_form_wrpper .custom_form .doc_upload .attachments_docs #file-list{
    margin-top: 40px;
}

.contact_form .contact_form_wrpper .form_captcha{
    color: var(--black-59);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    padding: 8px 16px;
    text-align: center;
}
.contact_form .contact_form_wrpper .form_captcha .form_captchawrapper{
    padding-top: 24px;
}
.contact_form .contact_form_wrpper .form_captcha a{
    color: var(--red-Ae);
}
.contact_form .contact_form_wrpper .form_captcha a:hover{
    color: var(--brown-6A);
}

/* .contact_form .contact_form_wrpper .custom_form .buttons_inline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
} */
.contact_form .contact_form_wrpper .custom_form .buttons_inline .send_btn{
    background-color: var(--black);
    font-size: 16px;
    font-weight: 600;
    min-height: 56px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    padding: 8px 32px;
    margin-top: 24px;
    font-family: "Josefin Sans";
    text-transform: uppercase;
    letter-spacing: 0.063em;
    color: var(--white);
    border: 0;
    cursor: pointer;
}

.contact_form .contact_form_wrpper .custom_form .buttons_inline .send_btn:hover{
    background-color: var(--black-26);
}


.footer_section{
    background-color: var(--black-16);
    padding: 56px 0;
    font-family: "Josefin Sans";    
}

.footer_section .footer_content{
    color: var(--silver-A4);
    font-size: 18px;
    line-height: 1.5;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer_section .footer_content a{
    color: var(--silver-A4);
}

.footer_section .footer_content .divider_column{
    border-right: 1px solid;
    margin: 0 10px;
    height: 16px;
}

.footer_section .footer_content a:hover{
    color: var(--white);
}

.footer_section .footer_content .go_daddy_link{
    color: #b86b5a;
}
.footer_section .footer_content .go_daddy_link:hover{
    color: #e4b4ac;
}

.border_divider{
    display: flex;
    align-items: center;
    justify-content: center;
}

