/* @import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap'); */


@font-face {
    font-family: 'Times New Roman', Times, serif !important;
    src: url('./ProcreateSignature.otf') format('opentype');
    /* Adjust path as needed */
}

@font-face {
    font-family: 'Times New Roman', Times, serif !important;
    src: url('./Times\ Regular.ttf') format('truetype');
}

body {
    margin: 0px !important;
    font-family: 'Times New Roman', Times, serif !important;
}

.a_tag {
    text-decoration: none;
    color: #fff;
}

.a_tag:hover {
    text-decoration: none;
    color: #fff;
}






.loader {
    bottom: 0;
    height: 100%;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 1111;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: #fff;
}

.loader-spinner {
    width: 75px;
    height: 75px;
    margin: 0;
    background: transparent;
    border-top: 4px solid #002E5B;
    border-right: 4px solid transparent;
    border-radius: 50%;
    -webkit-animation: 1s spin linear infinite;
    animation: 1s spin linear infinite;
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}



/* /////////////================-------------  HEADER SECTION  --------------==============///////////// */


.sticky_header {
    position: sticky;
    top: 0;
    z-index: 10;
}

.header {
    height: 120px;
    width: 100%;
    background-color: #071b2f;
    display: grid;
    grid-template-columns: repeat(2, 1fr);

}

.media {
    display: flex;
    padding-left: 75px;
    align-items: center;
}

.media img {
    height: 70px;
}

.call-img {
    width: 15px;
}

.toggle-sidebar {
    display: none;
    cursor: pointer;
    color: white;
    font-size: 24px;
    align-self: center;
    justify-self: end;
    padding-right: 20px;
}

.header_content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding-right: 15px;
}

.contact-button {
    /* width: 130px; */
    
    border: 1px;
    border-radius: 5px;
    color: white;
    background-color: red;
    display: flex;
    justify-content: center;
    align-items: center;
    padding:  10px 15px;
    gap: 10px;
    line-height: 18px !important;
    font-size: 14px;
}

.contact-button i{
    font-size: 20px;
}

.header_content svg {
    margin-right: -9px;
}

.dropdown-menu {
    background-color: red !important;
    color: white !important;
    width: 200px !important;
    width: max-content !important;
    position: absolute !important;
    top: 25px !important;
    right: 0 !important;
    left: auto !important;
    margin: 0 !important;
}

.dropdown-menu li {
    border-bottom: 1px solid black !important;
    padding: 5px 10px !important;
}

.dropdown-menu li:last-child {
    border-bottom: none !important;
}

.dropdown-menu li a {
    color: white !important;
}

.dropdown-menu li:hover {
    background-color: #ba0000 !important;
}

.cursor-pointer {
    cursor: pointer;
}

.close-sidebar {
    color: wheat;
    display: flex;
    justify-content: end;
}

.sidebar-links a {
    display: block;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.sidebar-links a:hover {
    background-color: #e9d8b9;
    color: black;
    border-radius: 5px;
}

.w-90 {
    width: 95px;
}

.w-80 {
    width: 81px;
}

.toggle-sidebar {
    display: none;
    cursor: pointer;
    color: white;
    font-size: 24px;
    align-self: center;
    justify-self: end;
    padding-right: 20px;
}

.slide_btn {
    display: none;
    cursor: pointer;
    color: white;
    font-size: 24px;
    align-self: center;
    justify-self: end;
    padding-right: 10px;
    cursor: pointer;
    transition: left 0.4s ease;
}

.slide_btn.click {
    left: 260px;
}

.slide_btn span {
    color: white;
    font-size: 28px;
    line-height: 45px;
}

.sidebar {
    position: fixed;
    /* width: 250px; */
    height: 100%;
    right: -450px;
    background-color: #071b2f;
    transition: right 0.4s ease;
}

.sidebar.show {
    right: 0px;
    /* Change left to right */
    width: 450px;
    z-index: 20;
}

.sidebar .text {
    color: white;
    font-size: 25px;
    font-weight: 600;
    line-height: 65px;
    text-align: center;
    background-color: #071b2f;
    letter-spacing: 1px;
}

nav ul {
    background: #071b2f;
    height: 100%;
    width: 100%;
    list-style: none;
}

nav ul li {
    line-height: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

nav ul li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

nav ul li a {
    position: relative;
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding-left: 40px;
    font-weight: 500;
    display: block;
    width: 100%;
    border-left: 3px solid transparent;
}

nav ul li.active a {
    color: red;
    background: 071B2F;
    border-left-color: red;
}

nav ul li a:hover {
    background-color: #071b2f;
}

nav ul ul {
    position: static;
    display: none;
}

nav ul .feat-show.show {
    display: block;
}

nav ul .serv-show.show1 {
    display: block;
}

nav ul ul li {
    line-height: 42px;
    border-top: none;
}

nav ul ul li a {
    font-size: 17px;
    color: #e6e6e6;
}

nav ul li.active ul li a {
    color: #e6e6e6;
    background-color: #071b2f;
    border-left-color: transparent;
}

nav ul li.active ul li a:hover {
    color: red;
    background-color: #071b2f;
    border-left-color: transparent;
}

nav ul ul li a:hover {
    color: red;
    background-color: #071b2f;
}

nav ul li a span {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font-size: 22px;
    transition: transform 0.4s;
}

nav ul li a span.rotate {
    transform: translateY(-50%) rotate(-180deg);
}

a:hover {
    text-decoration: none;
}

.nav ul li.active a {
    color: red;
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #202020;
    z-index: -1;
    text-align: center;
}

.content .header {
    font-size: 45px;
    font-weight: 600;
}

.content p {
    font-size: 30px;
    font-weight: 500;
}

.feat-show,
.serv-show,
.res-show {
    display: none;
}

.show,
.show1,
.show2 {
    display: block;
}

.form-group {
    margin-bottom: 0px !important;
}

.form-gap {
    display: flex;
    gap: 10px;
}

.form-contact {
    display: block;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    width: 100%;
}

.modal-header {
    border-bottom: none;

}

.modal-header h5 {
    display: flex;
    justify-content: center;
    width: 100%;
}

.modal-body {
    padding-inline: 1rem;
    padding-block: 0;
    margin-bottom: 25px;
    padding: 1rem 2rem !important;
}

.modal_close {
    background-color: transparent;
    border: none;
    font-size: 35px;
    color: #E11F26;
}

.modal-submit {
    border: none;
    color: white;
    border-radius: 5px;
}

.modal_btn {
    float: right;
    padding: 10px 30px;
    margin-top: 30px !important;
    background-color: #E11F26;
    color: #fff;
}

.r_a_bg {
    background-color: #E11F26;
    color: #fff;
}

.r_a_bg a:hover {
    background-color: #E11F26;
    color: #fff;
    cursor: pointer;
}

@media (max-width: 880px) {

    .header_content>div {
        display: none;
        padding-left: 130px;
    }

    .slide_btn {
        display: block;
    }
}

@media (min-width: 880px) {
    .sidebar.show {
        display: none;
    }
}

@media (max-width: 450px) {
    .header_content>div {
        display: none;
        padding-left: 0px;
    }

    .media {
        padding-left: 10%
    }

    .sidebar.show {
        width: 100%;
    }

    .header {
        height: 100px;
    }

    .media img {
        height: 60px;
    }
}


/* ///////////================--------------  BANNER SECTION  -------------===============////////////*/




.main_bringing {
    width: auto;
    background: url(./image/bringing_img.svg) no-repeat center;
    background-size: cover;
    border-bottom: 1px solid #ffffff2d;
}

.banner_img_mob {
    display: none;
}

.welcome {
    font-family: 'Times New Roman', Times, serif;
}

.welcome_para {
    width: 600px;
}

.bringing_title {
    font-size: 60px;
    font-family: 'Times New Roman', Times, serif;
}

.bringing_sub_title {
    font-family: 'Times New Roman', Times, serif;
}

.bringing_content_box {
    padding: 75px;
    padding-top: 100px;
}

.where_better {
    padding-top: 40px;
    color: red;
    font-size: 28px;
    font-weight: bold;
}

.where_para_1 {
    width: 600px;
    font-family: 'Times New Roman', Times, serif;
    font-size: 16px;
}

.where_para_2 {
    padding-top: 20px;
    width: 600px;
    font-family: 'Times New Roman', Times, serif;
    font-size: 16px;
}

.socialmedia {
    padding: 0px 120px;
  display: flex;
  justify-content: end;
  color: #fff;
  padding-bottom: 40px;
  padding-top: 10px;
}


.socialmedia_mob .a_tag {
    text-decoration: none;
}

.socialmedia_mob .a_tag:hover .bi-whatsapp {
    background-color: green;
}

.socialmedia_mob .a_tag:hover .bi-envelope {
    background-color: rgb(154, 146, 0);
}

.socialmedia_mob .a_tag:hover .bi-instagram {
    background-color: #fd4997;
    ;
}

.socialmedia_mob .a_tag:hover .bi-geo-alt {
    background-color: rgb(0, 76, 255);
}

.socialmedia .bi {
    width: 35px;
    height: 35px;
    margin: 5px;
    border: 2px solid;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 1024px) {
    .main_bringing {
        background: url(./image/main_bg_mob.jpg) no-repeat center;
        background-size: cover;
    }

    .bringing_content_box {
        background: #0b0e1ead;
        padding: 30px;
        padding-top: 30px;
        padding-top: 50px;
    }

    .media {
        padding-left: 25px;
    }

    /* .banner_img_mob{
        display: block;
        width: 100%;
    } */
}


.s_media_3rd {
    padding: 0px;
    position: absolute;
    bottom: 20px;
    right: 150px;
}

@media only screen and (max-width: 768px) {
    .welcome_para {
        width: 100%;
    }

    .where_para_1,
    .where_para_2 {
        width: 100%;
    }

    .bringing_content_box {
        text-align: center;
    }

    .socialmedia_mob {
        padding: 0px;
        padding-top: 20px;
        justify-content: center;
        padding-bottom: 20px;
    }

}



/* ==========--------------   ABOUT SECTION  ---------------=========== */



.about_container {
    background: url(./image/main_bg.png) no-repeat center;
    background-size: cover;
    overflow: hidden;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ffffff2d;
    position: relative;

}


.about_head {
    padding-top: 50px;
    padding-left: 150px;
}

.about_arab {
    margin: 0;
    font-size: 30px;
    font-family: 'Times New Roman', Times, serif;
    color: #fff;
    font-weight: 500;
}

.about_content {
    margin: 0;
    font-size: 25px;
    font-family: 'Times New Roman', Times, serif;
    color: #fff;
    font-weight: 500;
    margin-top: 10px;
}

.about_first_img {
    width: 95%;
    padding: 50px;
    padding-left: 110px;
}

.about_sec_img {
    display: flex;
    align-items: center;
    position: absolute;
    top: 150px;
    right: 200px;

}

.about_sec_img img {
    width: 350px;
}


.about_container .socialmedia {
    /* padding: 50px 120px; */
    display: flex;
    justify-content: end;
    color: #fff;
    /* position: absolute; */
    bottom: 0;
    right: 10px;
}

.about_first_img_container {
    padding-top: 100px;
}


.about_first_img_container_mob{
    display: none;
}

@media only screen and (max-width: 1350px) {
    .about_sec_img img {
        width: 300px;
    }
}


@media only screen and (max-width: 1170px) {
    .about_sec_img {
        top: 100px;
        right: 130px;
    
    }
}

@media only screen and (max-width: 1024px) {
    .about_container {
        height: auto;
    }

    .about_head {
        padding-left: 0px;
        text-align: center;
    }

    .about_first_img_container {
display: none;
    }

    .about_first_img {
        width: 95%;
        padding: 0px;
        margin-bottom: 50px;
    }

    .about_sec_img {
        justify-content: center;
        margin: 50px 0px !important;

    }

    .about_sec_img img {
        width: 50%;
    }

    .about_container .socialmedia {
        bottom: -10px;
        right: -11px;
    }

    .about_sec_img {
        position: inherit;
        display: flex;
        justify-content: center;
        align-content: center;
    
    }
    .about_first_img_container_mob{
        display: flex;
        justify-content: center;

    }
    .about_first_img_container_mob img{
        width: 80%;
    }

}

@media only screen and (max-width: 768px) {
    .about_arab {
        font-size: 25px;
    }

    .about_content {
        font-size: 20px;
        padding: 0px 20px;
    }

    .about_container .socialmedia {
        bottom: -48px;
        right: -11px;
        justify-content: center;
    }
}



/* ==========--------------   IMAGE SECTION  ---------------=========== */

.otic_img_main_section {
    position: absolute;
}

.otic_img_section {
    height: 100vh;
    position: relative;
    background: url(./image/main_bg.png) no-repeat center;
    background-size: cover;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #ffffff2d;
}

.otic_bg_img {
    height: 80vh;
    width: 100%;
}

.otic_position_img {
    height: 100vh;
    width: 55vw;
    position: absolute;
    top: 0;
    left: 150px;
}


@media only screen and (max-width: 1024px) {
    .otic_position_img {
        height: 100vh;
        width: 67vw;
        position: absolute;
        top: 0;
        left: 0;
    }
}

@media only screen and (max-width: 768px) {
    .otic_position_img {
        height: 81vh;
        width: 100%;
        position: absolute;
        top: 80px;
        left: 0;
    }

}

@media only screen and (max-width: 490px) {
    .otic_position_img {
        height: 60vh;
        width: 100%;
        position: absolute;
        top: 160px;
        left: 0;
    }

}

@media only screen and (max-width: 450px) {
    .otic_position_img {
        height: 50vh;
        width: 100%;
        position: absolute;
        top: 210px;
        left: 0;
    }

}



/* ==========--------------   FOOTER SECTION   ---------------=========== */


.footer {
    background: url(./image/main_bg.png) no-repeat center;
    /* height: 100vh; */
    background-size: cover;
    overflow: hidden;
    font-family: 'Times New Roman', Times, serif;
    position: relative;

}

.footer_top {
    height: 30vh;
    width: 100%;
    background-color: #E11F26;
    opacity: 24%;
    display: flex;
    justify-content: center;
    z-index: 0;
}

.footer_left {
    padding-top: 150px;
    display: flex;
    justify-content: end;
    height: 100%;
}

.footer_logo {
    height: 200px;
}

.footer_contact {
    padding: 50px;
}

.footer_contact h1 {
    color: #E11F26;
    font-size: 20px;
}

.mail_section{
    display: flex;
    gap: 20px;
}

.mail_icon{
    display: flex;
    gap: 10px;
    margin-top: 10px;
}
.mail_icon img {
    width: 20px;
}

.mail_icon span {
    color: #fff;
    word-break: keep-all;

}
.mail_icon svg {
    fill: #fff;
    word-break: keep-all;

}

.contact_no {
    display: flex;
    gap: 20px;
}

.contact_call {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.contact_call img {
    width: 20px;
}

.contact_call span {
    color: #fff;
    word-break: keep-all;

}
.contact_call span a{
    font-size: 14px;
}

.footer_top_img_mob {
    display: none;
}

.footer_top_img_mob img {
    height: 30vh;
}

.footer_center {
    position: relative;
}


.footer_center img {
    position: absolute;
    top: -260px;
    left: 0;
    height: 120vh;
    width: 100%;
}

.footer_right {
    padding: 0px !important;
}

.footer_right iframe {
    filter: grayscale();
    width: 100%;
}

.req_btn {
    display: flex;
    justify-content: center;
    padding-top: 30px;
}

.req_btn button {
    padding: 20px 30px;
    background-color: #E11F26;
    color: #fff;
    font-size: 18px;
    border: none;
    border-radius: 0px 50px 50px 50px;

}

@media only screen and (max-width: 1024px) {
    .footer_center {
        display: none;
    }

    .footer_top_img_mob {
        display: flex;
        position: absolute;
        top: 0px;
        width: 100%;
        justify-content: center;
    }

}

@media only screen and (max-width: 768px) {
    .footer_left {
        padding-top: 30px;
        justify-content: center;
    }

    .footer_right {
        margin-bottom: 40px;
    }

    .footer_logo {
        height: 180px;
        padding-left: 30px;
    }

    .footer_media {
        padding: 0px;
        justify-content: center;
        margin-top: 20px;
    }
}





/* ///////////////================---------------   SERVICE PAGES  ---------------=================/////////////// */


.service_banner {
    position: relative;
    /* height: 70vh; */
    /* width: auto; */
    /* background: url(./image/diagostic_img.svg) no-repeat center; */
    background-size: cover;
    display: flex;
    justify-items: end;
}

.service_banner img {
    width: 100%;
    background-size: cover;
    height: 500px;
}

.service_header {
    position: absolute;
    width: 100%;
    height: 100px;
    bottom: 0;
    background-color: rgba(7, 27, 47, 0.8);
    align-content: center;
    color: white;
    padding-left: 35px;
    font-size: 40px;
}

.service_para {
    padding: 30px;
    font-size: 20px;
}

.para {
    padding: 10px;
}






#card {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    background: #FFFFFF;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

#avatar {
    width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 180px;
}

#info {
    width: 100%;
    height: 100%;
    margin: 0 15px;
    display: flex;
    flex-direction: column;
}

#name {
    font-size: 24px;
    font-weight: 800;
    margin: 0;
    padding: 0;
}

#name_head {
    font-size: 34px;
    font-weight: 800;
    margin: 0;
    padding: 40px;
}

#activity {
    color: #999999;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -.5px;
    margin: 0;
    padding: 0;
}


@media only screen and (max-width: 1024px) {
    .service_header {
        height: 70px;
        font-size: 25px;
    }

    #name_head {
        text-align: center;
    }

}


@media only screen and (max-width: 768px) {
    .service_header {
        height: 50px;
        font-size: 20px;
        padding-left: 20px;
    }

    .service_para {
        padding: 8px;
        font-size: 16px;
    }


}




/* ///////////////================---------------   RESOURSCE PAGES  ---------------=================/////////////// */


.ear_work_img {
    height: 400px;
    border: 2px solid rgba(7, 27, 47, 0.8);
    ;
    margin: 20px;
    border-radius: 20px;
}

.guide {
    padding: 8rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cyan {
    --border-color: hsl(0, 78%, 62%);
    grid-area: 1 / 1 / 3 / 2;
}

.red {
    --border-color: hsl(0, 78%, 62%);
}

.orange {
    --border-color: hsl(0, 78%, 62%);
}

.blue {
    --border-color: hsl(0, 78%, 62%);
    grid-area: 1 / 3 / 3 / 4;
}


.card_grid {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(200px, 1fr));
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.card {
    max-width: 400px;
    margin: 0 auto;
    padding: 1rem;
    border-top: 5px solid var(--border-color) !important;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(23, 79, 138, 0.1);
}

.card_title {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: var(--fw-bold);
}

.card_content {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.card_img {
    margin-left: auto;
    display: block;
}

@media (max-width: 768px) {
    .service_banner img {
        height: 200px;
    }

    .ear_work_img {
        height: 200px;
    }

    .guide {
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .card_grid {
        grid-template-columns: repeat(2, minmax(200px, 1fr));
        align-items: stretch;
    }

    .cyan {
        grid-area: auto;
    }

    .blue {
        grid-area: auto;
    }

    .card {
        max-width: 300px;
    }
}

@media screen and (max-width: 500px) {
    .card_grid {
        grid-template-columns: repeat(1, minmax(200px, 1fr));
    }
}


/* /////////////================-------------  FAQ SECTION  --------------==============///////////// */

.faq_header {
    padding-top: 30px;
}

.faq_header h2 {
    width: 100%;
    bottom: 0;
    align-content: center;
    color: #071b2f;
    font-size: 50px;
    text-align: center;
    font-weight: 700;
}

.faq_header p {
    width: 100%;
    bottom: 0;
    align-content: center;
    color: #071b2f;
    font-size: 25px;
    text-align: center;
    font-weight: 500;
}


.faq {
    text-align: center;
    padding: 20px;
    max-width: 100rem;
    margin: 0 auto;
    /* Added to center the content horizontally */
}

.faq-icon {
    height: 18px;
    width: 18px;
    margin-top: 3px;
}

.accordion {
    color: #071b2f;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border-radius: 10px;
    outline: none;
    transition: 0.4s;
    border: 1px solid #071b2f;
    align-items: center;
}

.faq_btn_cont {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0px;
}

.faq_content .active,
.accordion:hover {
    background-color: rgb(192, 41, 41);
    color: white;
}

.faq_content .active {
    border-radius: 10px 10px 0px 0px;
}

.details-description {
    font-size: 22px;
    margin-top: 20px;
}

.panel {
    padding: 0 10px;
    padding-left: 40px;
    padding-right: 40px;
    background-color: #f3ecea;
    margin-top: -28px;
    color: #282a35;
    display: none;
    overflow: hidden;
    border-radius: 0px 0px 10px 10px;
    text-align: left;
}

.panel,
.accordion {
    margin-bottom: 2rem;
}

button.accordion {
    font-weight: bold;
    font-size: 16px;
}

.paragraphs {
    margin-top: 10px;
    margin-bottom: 10px;
    white-space: pre-wrap;
}

.faq_img_sec {
    display: flex;
    justify-content: center;
    align-items: center;
}


@media screen and (max-width: 768px) {
    .faq_header p {
        font-size: 20px;
    }
}





/* //////////////==============-----------------  COMMON FOOTER  ---------------===================////////////////// */


.common_footer {
    background-color: #071b2f;
}