@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
/* font-family: Roboto */
@import url('https://fonts.cdnfonts.com/css/arial-mt');
/*  font-family: 'Arial MT', sans-serif;
    font-family: 'Arial MT Narrow', sans-serif;
    font-family: 'Arial Rounded MT', sans-serif;
    font-family: 'Arial Rounded MT Bold', sans-serif;
    font-family: 'ArialMT', sans-serif;
    font-family: 'Arial MT Black', sans-serif; */
:root{
/* -- Fonts -- */
--font-roboto: "Roboto";
--font-arial-sans-serif: "ArialMT', sans-serif";

/*---- color ----*/
--color-dark-brown: #333232;
--color-light-grey: #f2f2f2;
--color-white: #ffffff;
--color-red: #ee344e;
}

/* ========= Home ========== */
body{
    overflow-x: hidden;
}
/* ------ top navbar ----- */
.top-nav {
    background-color: #0798bc;
    padding: 6px 24px;
}
.menu-box {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.menu-box>ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    gap: 20px;
    justify-content: space-between;
}
.menu-box>ul>li>a {
    text-decoration: none;
    color: var(--color-light-grey);
    font-size: 18px;
    font-weight: 400;
    font-family: var(--font-roboto);
    display: flex;
    align-items: center;
    gap: 13px;
}
/* --- main navigation --- */
.bg-nav.light {
    background-color: var(--color-light-grey);
    font-family: var(--font-roboto);
    padding: 0px 9px;
}
.logo-box{
    padding-left: 6px;
}
.logo-box>a>img {
    padding: 10px;
    width: 215px;
}
.mob-icon-items{
    display: flex;
    padding: 0;
    align-items: center;
    list-style: none;
    gap: 33px;
    font-size: 20px;
    margin: 0;
}
.mob-icon-col{
    color: #0798bc;
}
.bg-nav.light.header-fixed-top {
    position: fixed;
    top: -50px;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 999999;
    -webkit-transition: -webkit-transform .8s;
    transition: -webkit-transform .8s;
    -o-transition: transform .8s;
    transition: transform .8s;
    transition: transform .8s, -webkit-transform .8s;
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
    background-color: var(--color-light-grey);
}
.main-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}
.main-nav > li {
    position: relative;
}
.main-nav > li > a {
    background-color: transparent;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    color: var(--color-dark-brown);
    position: relative;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: var(--font-roboto);
    letter-spacing: 0.5px;
    transition: 0.5s;
    z-index: 1;
}
.main-nav > li > a::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    border-top: 2px solid #262626;
    border-bottom: 2px solid #262626;
    transform: scaleY(2);
    opacity: 0;
    transition: 0.3s;
}
.main-nav > li > a::after{
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0798bc;
    transform: scale(0);
    opacity: 0;
    transition: 0.3s;
    z-index: -1;
}
.main-nav > li > a:hover{
    color: var(--color-white);
    transition: 0.3s;
}
.main-nav > li > a:hover::before{
    transform: scaleY(1);
    opacity: 
}
.main-nav > li > a:hover::after{
    transform: scaleY(1);
    opacity: 1;
}
/*------ Banner Section --------*/
.banner-content {
    padding: 130px 0px;
    height: 69vh;
	width: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	position: relative;
	z-index: 2;
    &::after{
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
}
.banner-content>h1 {
    font-family: var(--font-roboto);
    font-weight: 700;
    color: var(--color-white);
    font-size: 60px;
    overflow: hidden;
}
.banner-content h3 {
    font-family: var(--font-roboto);
    font-weight: 400;
    color: var(--color-light-grey);
    font-size: 40px;
    overflow: hidden;
}
.banner-content p {
    font-family: var(--font-roboto);
    font-weight: 400;
    color: var(--color-light-grey);
    font-size: 16px;
    letter-spacing: 1px;
    text-align: center;
}
.owl-dots {
	display: none !important;
}
.btn-theme {
    font-size: 17px;
    font-weight: 600;
    font-family: var(--font-roboto);
    padding: 9px 16px;
    background: linear-gradient(90deg, #61d7fd 0%, #3699f8 100%);
    color: var(--color-white);
    border-radius: 10px;
    border: none;
    transition: 0.3s;
    text-decoration: none;
}
.btn-theme:hover{
    box-shadow: 3px 4px 5px 0px #000;
    transition: 0.3s;
}
/*-------- Consultant Career ----------*/
.consultant-bg{
    background-color: #f9f9f9;
    padding: 10px 0px;
}
.fa-building-columns:before{
    font-size: 32px;
}
.cons-icon-flex{
        h2{
            color: var(--color-dark-brown);
            font-weight: bold;
        }

}
.cons-career-flex{
    display: flex;
    flex-direction: column;
}
.consultant{
    font-family: var(--font-roboto);
    font-weight: 600;
    color: var(--color-dark-brown);
    font-size: 18px;
    letter-spacing: 0.5px;
    margin-bottom: 0;
}
.career{
    font-family: var(--font-roboto);
    font-weight: 400;
    color: var(--color-dark-brown);
    font-size: 19px;
    letter-spacing: 0.5px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 20px;
}
.fa-angle-down:before{
    color: var(--color-dark-brown);
}
.flex-margin{
    display: flex;
    justify-content: center;
    margin-top: 18px;
}
.dropdown-arrow-flex{
    display: flex;
    align-items: center;
}
.dropdown-head{
    font-family: var(--font-roboto);
    color: var(--color-dark-brown);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: 0.5s;
}
.dropdown:focus-visible{
    outline: none;
}
.dropdown-item{
    font-family: var(--font-roboto);
    font-weight: 400;
    color: var(--color-dark-brown);
    font-size: 17px;
}
.dropdown-menu.show{
    background-color: var(--color-light-grey);
}
.dropdown-toggle{
    border: none;
}
.dropdown-toggle::after {
    display: none;
}
.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active{
    border: none;
}
.btn:hover{
    border: none;
}
.dropdown-item.active, .dropdown-item:active{
    background-color: #0798bc ;
}
.dropdown-item:focus, .dropdown-item:hover{
    background-color: #0798bc ;
    color: var(--color-white);
}
/*---------- Service Section -----------*/
.video{
    iframe{
        width: 100%;
        height: 200px;
    }
}
.service-flex{
    display: flex;
}
.service-heading{
    font-family: var(--font-roboto);
    font-weight: 500;
    color: var(--color-white);
    font-size: 22px;
    text-align: left;
    letter-spacing: 0.5px;
    margin: 0;
}
.service-text{
    font-family: var(--font-roboto);
    font-weight: 400;
    color: var(--color-white);
    font-size: 16px;
    letter-spacing: 0.3px;
    text-align: center;
    margin: 0;
}
.service-icon{
    width: 100% !important;
    border-radius: 10px;
}
.service-details{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
    padding-inline: 10px;
    padding-bottom: 20px;
}
.service-item{
    transition: all .5s;
    height: 100%;
    background: linear-gradient(to top, #40c6f2 0%, #0565c3 100%);
    padding: 4px;
    border-radius: 10px;
    overflow: hidden;
}
.service-item:hover{
    transform: translateY(-5px);
}
.border-right{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0px 25px;
    border-left: 1px solid;
    border-image: linear-gradient(to top, #40c6f200, #ffffff, #40c6f200);
    border-image-slice: 1;
}
.border-right:first-child{
    border: 0;
}
/*--------- Who We Are -----------*/
.about-box{
    background-color: #fff;
    box-shadow: 0px 0px 17px 0px #00000033;
    border-radius: 20px;
    overflow: hidden;
    .doctor-details{
        padding: 30px;
    }
}
.about-myself-bg{
    background-color: var(--color-white);
    position: relative;
    padding: 50px 0;
}
.doctor-details >h6{
    font-family: var(--font-roboto);
    font-weight: 500;
    color: var(--color-red);
    font-size: 17px;
    text-transform: uppercase;
    margin-bottom: 0;
}
.brown-heading{
    font-family: var(--font-roboto);
    font-weight: 600;
    color: var(--color-dark-brown);
    font-size: 45px;
    margin: 0;
    background: linear-gradient(90deg, #40c6f2 0%, #0565c3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.red-heading{
    color: var(--color-red);
}
.small-heading{
    font-family: var(--font-roboto);
    font-weight: 500;
    font-size: 19px;
}
.doctor-provide>p{
    font-family: var(--font-roboto);
    font-weight: 400;
    color: var(--color-dark-brown);
    font-size: 18px;
    line-height: 23px;
}
.know-flex{
    display: flex;
    justify-content: flex-end;
}
.know-flex>a{
    text-decoration: none;
    color: var(--bs-link-hover-color);
    &:hover{
        color: var(--bs-cyan);
    }
}
.know-more{
    font-family: var(--font-roboto);
    font-weight: 500;
    font-size: 17px;
    text-transform: uppercase;
}
.pos-rel{
    position: relative;
}
.background-write{
    position: absolute;
    margin-top: 123px;
    top: 0;
    right: 0px;
    font-family: var(--font-roboto);
    font-size: 96px;
    color: #d7d7d7;
    font-weight: 600;
}
.doc-img-flex{
    display: flex;
    justify-content: flex-end;
}
.doctor-img{
    width: 500px;
    position: relative;
    margin-top: 84px;
}
.client-box-bg{
    position: absolute;
    bottom: 20px;
    background: linear-gradient( 42deg, #f2f2f2, transparent );
    /* background-color:var(--color-light-grey); */
    border-radius: 4px;
}
.horoscope-bg{
    margin: 12px;
    background-color: var(--color-white);
    border-radius: 4px;
    position: relative;
    overflow-x: hidden;
}
.satisfie-icon-bg{
    position: absolute;
    background: linear-gradient(90deg, #40c6f2 0%, #0565c3 100%);
    border-radius: 50px;
    top: -14px;
    left: -9px;
    padding: 20px;
}
.satisfie-icon{
    width: 50px;
    padding: 4px;
    filter: brightness(0) saturate(100%) invert(98%) sepia(68%) saturate(407%) hue-rotate(224deg) brightness(113%) contrast(99%);
}
.count-flex{
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: flex-end;
    padding-top: 10px;
    padding-right: 10px;
}
.count-flex>h1{
    margin: 0;
    font-family: var(--font-roboto);
    font-weight: 600;
    font-size: 35px;
    color: var(--color-dark-brown);
}
.count-flex p{
    font-family: var(--font-roboto);
    font-weight: 400;
    font-size: 16px;
    color: var(--color-dark-brown);
}
.service-provide{
    padding: 16px 0px;
    margin: 0;
}
.service-provide p{
    margin: 0;
    font-family: var(--font-roboto);
    font-weight: 400;
    font-size: 18px;
    color: var(--color-dark-brown);
}
.service-list{
    list-style: none;
    display: flex;
    gap: 10px;
    align-items: center;
}
.fa-check:before {
    color: #0565c3;
    font-size: 18px;
}
.client-solve{
    background: linear-gradient(90deg, #40c6f2 0%, #0565c3 100%);
    padding: 10px 10px;
    border-radius: 6px;
    margin: 10px 0px;
}
.solve-icon{
    width: 50px;
    filter: brightness(0) saturate(100%) invert(98%) sepia(68%) saturate(407%) hue-rotate(224deg) brightness(113%) contrast(99%);
    position: absolute;
}
.solve-flex{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.solve-flex>h1{
    margin: 0;
    font-family: var(--font-roboto);
    font-weight: 600;
    font-size: 35px;
    color: var(--color-white);
}
.solve-flex p{
    margin: 0;
    font-family: var(--font-roboto);
    font-weight: 400;
    font-size: 18px;
    color: var(--color-white);
}
a,img{
    transition: all .5s;
}
/*------------ Specialist ------------*/
.specialist-section{
    padding: 50px 0;
    background: ghostwhite;
}
.specialist-heading{
    font-family: var(--font-roboto);
    font-weight: 600;
    font-size: 35px;
    color: var(--color-dark-brown);
    text-align: left;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #40c6f2 0%, #0565c3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.specialist-section-bg{
    background: #ffffff;
    box-shadow: 0px 0px 17px 0 #0000002b;
    border-radius: 8px;
    padding: 10px;
    transition: 0.3s ease;
    position: relative;
    text-align: center;
    overflow: hidden;
    height: 100%;
    h4{
        font-size: 20px;
    }
}
.specialist-section-bg:hover{
    box-shadow: 3px 4px 5px 0px #adb5bd;
    /* background: linear-gradient(64deg, #0666c3 0%, #61d7fd 100%); */
    transition: 0.3s ease; 
    .specialist-icon img{
        transform: rotateY(180deg);
    }
}
.specialist-icon{
    width: 90px;
    height: 90px;
    background: linear-gradient(64deg, #0666c3 0%, #61d7fd 100%);
    position: relative;
    border-radius: 50%;
    padding: 16px;
    margin-inline: auto;
    margin-bottom: 10px;
    img{
        filter: brightness(0) saturate(100%) invert(98%) sepia(68%) saturate(407%) hue-rotate(224deg) brightness(113%) contrast(99%);
    }

}
.specialist-icon-flex{
    display: flex;
    /* justify-content: center; */
    gap: 10px;
    align-items: center;
}
.specialist-details{
    font-family: var(--font-roboto);
    font-weight: 400;
    font-size: 14px;
    color: var(--color-dark-brown);
    text-align: center;
}
.white-know{
    color: var(--bs-link-hover-color);
    text-decoration: none;
    &:hover{
        color: var(--bs-cyan);
    }
}
/*-------- Academics Experience ---------*/
.experience-heading{
    font-family: var(--font-roboto);
    font-weight: 600;
    font-size: 35px;
    color: var(--color-dark-brown);
    text-align: left;
    padding: 30px 40px;
    margin: 0;
    background: linear-gradient(90deg, #40c6f2 0%, #0565c3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.experience-img{
    width: 100%;
    opacity: 0.5;
}
.img-rel{
    position: relative;
}
.experience-abs{
    position: absolute;
    top: 0;
}
.experience-margin{
    margin-top: 30px;
}
.experience-margin>h4{
    font-family: var(--font-roboto);
    font-weight: 600;
    font-size: 26px;
    color: var(--color-dark-brown);
    letter-spacing: 1px;
}
.experience-list{
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
}
.experience-list p{
    margin: 0;
    font-family: var(--font-roboto);
    font-weight: 400;
    font-size: 18px;
    color: var(--color-dark-brown);
}
.fa-circle:before{
    font-size: 10px;
    color: #0565c3;
    display: flex;
}
.cardio-doc-details{
    font-family: var(--font-roboto);
    font-weight: 400;
    font-size: 18px;
    color: #201f1fd6;;
}
/*----------- Client’s Openion ----------*/
.client-ope-bg{
    background-color: #efeee8;
    padding-bottom: 14px;
}
.experience-heading.heading-center{
    text-align: center;
}
.experience-heading span{
    color: var(--color-red);
}
.img-ope-flex{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}
.img-name-flex{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.client-name{
    font-family: var(--font-roboto);
    font-weight: 500;
    font-size: 20px;
    color: var(--color-dark-brown);
    margin-bottom: 0;
}
.client-name.text-color{
    font-size: 18px;
    text-align: center;
    color: #585755;
    font-weight: 400;
}
.client-ope-flex{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.view-more-button{
    color: #000000;
    padding: 7px 32px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    font-family: var(--font-roboto);
    letter-spacing: 1px;
    font-size: 14px;
    border-radius: 68px;
    font-weight: 500;
    border: 1px solid #000000;
    background-color: transparent;
    transition: 0.3s;
}
.view-more-button:hover{
    color: var(--color-light-grey);
    background-color: #0798bc;
    border: 1px solid #0798bc;
    transition: 0.3s;
}
.text-center{
    text-align: center !important;
}
/*------------ Footer ------------*/
.footer-bg{
    background-color: #264160;
    padding: 30px 20px;
}
.astro-img{
    width: 100%;
    padding-bottom: 20px;
}
.title-footer {
    color: var(--color-white);
    font-size: 20px;
    font-family: var(--font-roboto);
    text-transform: capitalize;
    font-weight: 500;
    border-bottom: 1px solid var(--color-light-grey);
    width: 125px;
    letter-spacing: 1px;
    /* padding-top: 20px; */
}
.footer-quick-link {
    padding: 0;
    list-style: none;
    margin: 0;
}
.link{
    color: var(--color-white);
    font-size: 16px;
    text-decoration: none;
    font-family: var(--font-roboto);
    font-weight: 400;
    letter-spacing: 1px;
    margin: 0;
}
.link span{
    margin-left: 3px;
}
.fa-square-phone:before {
    content: "\f098";
    font-size: 20px;
    font-weight: 900;
}
.fa-whatsapp:before {
    content: "\f232";
    font-size: 20px;
}
.fa-envelope:before {
    content: "\f0e0";
    font-size: 20px;
}
.follow-flex-end{
    display: flex;
    justify-content: flex-end;
}
.social-icon-flex{
    display: flex;
    align-items: center;
}
.follow-us{
    color: var(--color-white);
    font-size: 14px;
    font-family: var(--font-roboto);
    font-weight: 400;
    letter-spacing: 1px;
    margin: 0;
}
.social-icon-flex ul{
    display: flex;
    margin: 0;
    font-size: 22px;
    gap: 12px;
    padding: 10px;
}
.social-icon-flex li{
    list-style: none;
}
.social-icon-flex li>a{
    color: var(--color-white);
    transition: 0.3s;
}
.social-icon-flex li>a:hover{
    color: #61d7fd;
    transition: 0.3s;
}
.copyright-bg{
    background-color: #0798bc;
    padding: 8px 0px;
}
.copy-right{
    color: var(--color-white);
    font-size: 16px;
    font-family: var(--font-roboto);
    font-weight: 400;
    letter-spacing: 1px;
    text-align: center;
    margin: 0;
}
/*------- Fixed social media --------*/
.icon-position {
    position: fixed;
    top: 0;
    /* bottom: 50%; */
    right: 0;
    z-index: 1;
    height: 100%;
}
.icon-style {
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-right: 15px;
}
.icon {
    margin-bottom: 20px;
}
.icon>a{
    color: var(--color-light-grey);
    font-size: 25px;
}
.icon-size-col{
    width: 55px;
}
.whatsapp-size{
    width: 50px;
    box-shadow: 0px 2px 3px #00000061;
    border-radius: 50px;
}
/* ========== About =========== */

/* --------- Banner Section --------- */
.about-img{
    height: 300px;
    padding: 10px 10px;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}
.about-banner-heading{
    font-family: var(--font-roboto);
    font-size: 70px;
    color: var(--color-white);
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
    margin: 0;
}
/* ------- About Us Content --------- */
.about-us{
    padding: 50px 0px;
}
.about-heading{
    font-family: var(--font-roboto);
    font-weight: 600;
    font-size: 35px;
    color: var(--color-dark-brown);
    text-align: left;
}
.about-content-img{
    width: 100%;
    margin: 22px 0px;
}
.about-content{
    font-family: var(--font-roboto);
    font-weight: 400;
    font-size: 18px;
    color: var(--color-dark-brown);
    text-align: left;
}
.about-content.bold{
    font-size: 18px;
    font-weight: 600;
}
/* ============== Contact Us =============== */

/* ------------ Contact Us Content ----------- */
.contact-us-bg{
    padding: 30px;
}
.contact-heading{
    font-family: var(--font-roboto);
    font-size: 30px;
    color: var(--color-dark-brown);
    font-weight: 600;
    letter-spacing: 1px;
    text-align: left;
    margin-bottom: 13px; 
}
.astro-name{
    font-family: var(--font-roboto);
    font-size: 25px;
    color: #0565c3;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: left;
    margin-bottom:5px;
}
.astrologer-details{
    font-family: var(--font-roboto);
    font-size: 19px;
    color: var(--color-dark-brown);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-align: left;
    margin-bottom: 20px; 
}
.astrologer-details.margin{
    margin-bottom: 10px;
}
.contact-booking{
    font-family: var(--font-roboto);
    font-size: 20px;
    color: var(--color-dark-brown);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-align: center;
    margin: 10px 0px;
}
.phone-mail-flex {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    cursor: pointer;
}
.locate-flex {
    display: flex;
    gap: 15px;
    margin-bottom: 0px;
}
.whatsapp-icon{
    width: 24px;
}
.contact-us {
    margin-top: 2px;
    color: #000000;
    font-family: var(--font-roboto);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 0;
}
.icon-margin{
    margin: 0;
}

/* ========== Youtube Video ========== */

/*----------- Youtube Video Content ------------*/
.contact-heading.margin-none{
    margin: 0;
}
.conhead-youtube-flex{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.youtube-icon{
    width: 40px;
}
.youtube-video-flex{
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* =========== Remedies ========== */

/*---------- Remedies Content ----------*/
.about-banner-heading.remedies-black{
    color: #000000;
}
.stone-img-flex{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.stone-details{
    font-family: var(--font-roboto);
    font-size: 20px;
    color: var(--color-dark-brown);
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center; 
}
/* --------- Light Box ---------- */
.lightboxpreview {
    transition: all .3s linear;
    padding-top:60%;
    cursor:pointer;
    background-size:cover;
}
.lightbox-close { 
    cursor:pointer;
    margin-left: auto;
    position:absolute;
    right:-30px;
    top:-30px;
    color:white;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}
.lightbox-container, .lightbox-btn, .lightbox-image-wrapper, .lightbox-enabled{transition:all .4s ease-in-out;}
.lightbox_img_wrap {
  position:relative;
  overflow:hidden;
}
.lightbox-enabled:hover {
    filter: none;
}
.lightbox-enabled {
    width:100%;
    height:100%;
    cursor:pointer;
}
.lightbox-container {
    width:100vw;
    height:100vh;
    position:fixed;
    top:0;
    left:0;
    display:flex;
    align-items:center;
    justify-content:center;
    background-color: rgb(0 0 0 / 90%);
    z-index: 99999999;
    opacity:0;
    pointer-events:none;
}
.lightbox-container.active {
    opacity:1;
    pointer-events:all;
}
.lightbox-image-wrapper {
    display:flex;
    transform:scale(0);
    align-items:center;
    justify-content:center;
    max-width:90vw;
    max-height:90vh;
    position:relative;
    cursor: pointer;
}
.lightbox-container.active .lightbox-image-wrapper {transform:scale(1);}
.lightbox-btn, #close {
  color:white;
  z-index:9999999;
  cursor:pointer; 
  position:absolute;
  font-size:50px;
}
.lightbox-btn:focus {
    outline:none;
}
.left {left:50px;}
.right {right:50px;}
#close {
  top:35px;
  right:50px;
}
/* .full-screen{
    top: 50px;
    right: 80px;
    color:white;
  z-index:9999999;
  cursor:pointer; 
  position:absolute;
  font-size:50px;
} */
.lightbox-image {
    width:100%;
    -webkit-box-shadow: 5px 5px 20px 2px rgba(0,0,0,0.19); 
    box-shadow: 5px 5px 20px 2px rgba(0,0,0,0.19);
    max-height:100vh;
    object-fit:cover;
}
@keyframes slideleft {
    33% {transform:translateX(-300px);
    opacity:0;
    }
    66% {transform:translateX(300px);
    opacity:0;
    }
}
.slideleft {
   animation-name: slideleft;
   animation-duration: .5s; 
   animation-timing-function: ease; 
}
@keyframes slideright {
    33% {transform:translateX(300px);
    opacity:0;}
    66% {transform:translateX(-300px);
    opacity:0;}
}
.slideright{
   animation-name: slideright;
   animation-duration: .5s; 
   animation-timing-function: ease; 
}
/*----------- Clients Reviews --------------*/
.client-name-flex{
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
    .client-name{
        margin-bottom: 0;
    }
}
.client-img{
    width: 84px;
    height: 84px;
}
.client-name.text-align{
    text-align: left;
}
.client-red-name{
    font-family: var(--font-roboto);
    font-weight: 500;
    font-size: 27px;
    color: #0565c3;
}

/* *********************************
    Personal
********************************** */
.personal{
    .card {
        border: none;
        border-radius: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        height: 100%;
    }
    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
    }
    .card img {
        width: 100%;
        object-fit: contain;
    }
    .card-title {
        color: #0798bc;
        font-weight: bold;
    }
    .card-text {
        color: #555;
    }
    .note {
        margin-top: 1.5rem;
        font-style: italic;
        color: #fc4747;
    }
    h5{
        color: #0798bc;
    }
}
.thm-color{
    color: #0798bc;
}