@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Bai+Jamjuree:wght@400;500;600;700&family=Barlow:wght@400;500;600;700&family=Dancing+Script:wght@500&family=Dosis:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600&family=Karla:ital,wght@0,200..800;family=Courgette&family=Dancing+Script:wght@400;500;600;700family=Shippori+Mincho+B1:wght@400;500;700&family=Suranna&family=Edu+SA+Hand:wght@400;500;600;700family=Signika:wght@300..700&family=Oswald:wght@200..700&family=Pathway+Gothic+One&family=Jost:ital,wght@0,100..900;1,100..900&family=Cinzel:wght@700&family=Italianno&family=Noticia+Text:wght@400;700&family=Roboto&family=Satisfy&family=Spline+Sans:wght@300..700&display=swap');

/* * {
  outline: 1px solid red; 
} */

body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Dosis", sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
}

:root {
    /* --color-body: #b6cbce;
    --color-heading: #eef3db; */
    --color-base: rgba(219, 72, 92, 0.358);
    --color-base2: rgba(9, 128, 188, 0.4);
    /* --color-brand: #e33d53; */
    /*--color-brand: #f70994;*/
    /*--color-brand2: #0981bc;*/
    /*--color-brand-dual:  linear-gradient(135deg,var(--color-brand),#6eb8dd,var(--color-brand2));*/
    --color-brand: #636B2F;
    --color-brand2: #93AB85;
    --color-brand-dual:  linear-gradient(135deg,var(--color-brand),var(--color-brand2));
    /* --sidbar-width: 240px; */
    /* --font-base: "Bai Jamjuree"; */
}

h2,h3,h4,h5 {
    font-weight: 600;
}

h1{
    font-family: "Shippori Mincho B1", serif;
    font-weight: 500;
    font-style: normal;
    color: #000;
}

p{
    /* font-family: "Barlow", sans-serif; */
    font-family: "Karla", sans-serif;
    color: #000;
    font-optical-sizing: auto;
    font-weight: 500;
    line-height: 2rem;
}

.jost-one{
    font-family: "Jost", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
  }

.dancing-script-new {
  font-family: "Dancing Script", cursive;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.karla-new {
  font-family: "Karla", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}


a {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    text-decoration: none;
}

img {
    width: 100%;
}

section {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* #hero {

    height: 100vh;
    display: flex;
    align-items: center; 
    justify-content: center;
    background-size: cover;
    background-position: center;
}

#hero h1 {
    font-weight: 600;
    letter-spacing: 2px;
} */

/* .overlay {
    position: relative;
    z-index: 2;
}

.overlay::after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;

    background-color: rgba(9, 129, 188, 0.2);
    z-index: -1;
} */

.btn {
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-brand{
    color: #fff;
    background-color: var(--color-brand);
    border-color: var(--color-brand);
    border-radius: 100px;
}

.btn-brand:hover {
    color: #fff;
    background-color: transparent;
    border-color: #fff;
}

.btn-secondary {
    border-radius: 100px;
}

.btn-secondary:hover{
    border: 2px solid #000 !important;
    color: #fff !important;
    background-color: #000 !important;
}

.navbar{
    padding-top: 0px;
    padding-bottom: 0px;
}
.navbar-nav .nav-link {
    color: #fff;
    margin-right: 1rem;
}

.navbar-nav .nav-link.active {
    color: var(--color-brand);
}

@media (max-width: 990px) {
    .nav-btn{
        display: none;
}
}

@media (max-width: 400px) {
    .navbar-brand h3,
    .navbar-brand h4{
        font-size: 1rem;
}
.navbar-brand img{
        height: 46px !important;
}
}

.intro {
    margin-bottom: 50px;
}

/* .intro .divider{
    background-color: var(--color-brand);
    background: linear-gradient(blue, red);
    height: 3px;
    width: 180px;
    margin: 18px auto;
} */


#milestone {
    background-image: url(../img/cover.jpg);
}

/* .counter .number {
    line-height: 1;
}

.counter .divider {
    width: 80px;
    height: 2px;
    background-color: var(--color-brand2);
    margin: 18px auto;
} */

.project {
    position: relative;
    overflow: hidden;
}

.project-info {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 40%;
    background-color: var(--color-brand2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    line-height: 1rem;
    color: #fff;
    text-align: center;
    opacity: 0;
    transform: scale(0);
    transition: all 0.8s ease;
}

.project:hover .project-info {
    opacity: 1;
    transform: scale(1);
}

.project img{
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height:fit-content;
}

@media (max-width: 500px) {
    .project-info p, 
    .project-info h5{
        line-height: 1rem;
        text-align: center;
    }
}

/* ------------home-service------------ */

.icon-box {
    width: 80px;
    height: 80px;
    background-color: var(--color-brand2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    /* margin: 0 auto 24px auto; */
    color: #fff;
    flex: none;
    margin-bottom: 1rem !important;
}

.icon-box i {
    font-size: 34px;
}

/* .service-box {
    flex-grow: 1;
    display: flex;
    height: 100%;
    transition: all .5s ease-in-out;
}

.service-box:hover {
    transform: scale(1.03);
}
.service-box:hover .icon-box i{
    width: 80px;
    height: 80px;
    background-color: var(--color-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    transform: scale(1.05);
}
@media (max-width: 991px) {
    .service-box{
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
    .icon-box {
        background-color: #db485c;

    }
} */

.service-box{
    box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all .5s ease-in-out;
}

.service-box:hover{
    transform: scale(1.03);
}

.service-box i{
    font-size: 50px;
}
/* .service-box h5{
    margin-top: 24px;
    margin-bottom: 12px;
} */

.service-box:hover i{
    color: var(--color-brand);
}

.flip{
    background-color: transparent;
    transition: transform 0.6s;
}

.service-box:hover .flip{
    transform: rotateY(180deg);
}

.service-box h3{
    color: #000;
    font-weight: 700;
}
.service-box p{
    font-weight: 700;
}


/* ----------mine------------ */

.whatsapp_main {
    width: 5rem;
    top: 80%;
    right: 5%;
    z-index: 30; 
    transition: all 0.5s;
}

.whatsapp_main:hover {
    transform: scale(1.2) translateY(-0.5rem);
    /* transform: translateY(-0.5rem); */
}



.link-custom{
    font-weight: 700;
    position: relative;
}

.link-custom::after{
    content: "";
    width: 0%;
    height: 2px;
    background-color: var(--color-brand);
    position: absolute;
    left: 0;
    top: 100%;
    transition: all 0.4s;
}

.link-custom:hover::after{
    width: 80%;
}


.about{
    /* background-color: var(--color-brand2); */
    background: var(--color-brand-dual);
    border-radius: 10px;
}
.about img{
    border-radius: 10px;
}

.text-justify{
    text-align: justify;
    font-weight: 400;
}

.about h2 {
    color: #fff;
    font-family: "Shippori Mincho B1", serif;
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 1px 1px 2px #000;
}

.about p{
    font-family: 'Times New Roman', Times, serif;
    color: #fff;
}


.hero-right img{
    /* background-image: url(../img/Logo_Final.png); */
    background-repeat: no-repeat;
    /* margin-left: 50%; */
    width: 100%;
    height: 60%;

}

.hero {
    height: 100vh;
    /* background: linear-gradient(135deg,var(--color-brand),#fff,var(--color-brand2)); */
    /* background-image: url(/img/physiotherapy_hero.jpg); */
    /* background-image: url(../img/physiotherapy_hero.jpg); */
    background-image: url(/static/img/chronic.jpeg);
    background: linear-gradient(rgba(95, 134, 163, 0.5), rgba(97, 94, 97, 0.6)), url(../img/chronic.jpeg);
    /* display: block; */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero h1, 
.hero h3{
    color: #fff;
    filter: drop-shadow(1px 1px 2px #000);
}

.hero-text{
    padding-left: 1rem ;
}

.hero img {
    filter: drop-shadow(1px 1px 2px #000);
    /* background-color: #fff;
    border-radius: 5%; */
}

.navbar{
     background:  var(--color-brand-dual);
}

.navbar-brand img {
    height: 60px;
    /* filter: drop-shadow(0 0 2rem #fff); */
    filter: drop-shadow(1px 1px 2px #000);
}
.navbar-brand h3,h4{
    color: #fff;
    font-weight: 900 !important;
    line-height: 1;
    text-shadow: 1px 1px 2px #000;
}


.content {
  padding: 100px 40px;
  background: #f5f5f5;
  height: 200vh; /* Extra height to enable scrolling */
}

.social-links a i{
    color: #fff;
    font-size: 20px;
    margin-left: 10px;
    transition: 0.2s ease-in;
    transition-property: color, transform;
}

.social-links a i:hover{
    color: var(--color-brand);
    transform: scale(1.3);
}

/* .navbar{
    margin-top: 20px;
} */

/* @media only screen and (max-width: 600px) {
  body {
    background-color: lightblue;
  }
} */
/* ---------------------- */


/* ----------navbar-toggler start----------- */
.navbar-toggler{
    width: 20px;
    height: 20px;
    position: relative;
    transition: .5s ease-in-out;
}

.navbar-toggler,
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
    border: 0;
}

.navbar-toggler span{
    margin: 0;
    padding: 0;
}

.toggler-icon {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #db485c;
    border-radius: 1px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.middle-bar{
    margin-top: 0px;
}

.navbar-toggler .top-bar{
    margin-top: 0px;
    transform: rotate(135deg);
}

.navbar-toggler .middle-bar{
    opacity: 0;
    filter: alpha(opacity=0);
}

.navbar-toggler .bottom-bar {
    margin-top: 0px;
    transform: rotate(-135deg);
}

.navbar-toggler.collapsed .top-bar{
    margin-top: -20px;
    transform: rotate(0deg);
}

.navbar-toggler.collapsed .middle-bar{
    opacity: 1;
    filter: alpha(opacity=100);
}

.navbar-toggler.collapsed .bottom-bar{
    margin-top: 20px;
    transform: rotate(0deg);
}

.navbar-toggler.collapsed .toggler-icon{
    background: var(--color-brand);
}

/* -----------navbar-toggler end------------- */

/* .owl-car{
  height: 400px;
} */

/* review */

/* .star {
    color: yellow;
    background-color: #db485c;
    border-radius: 10px;
    padding-block: 10px;
}

.card-img img{
    width: 80px;
    height: 80px;
    justify-content: center;
    margin: auto;

    border: #161515 3px solid;
    border-radius: 50%;
} */



/* about-page */
.right-image img{
    max-width: 50%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    margin-bottom: 25px;
    float: right;
    margin-left: 25px;
    padding: 10px;
    
}

.left-image img {
    max-width: 50%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    margin-bottom: 25px;
    float: left;
    margin-right: 25px;
    padding: 10px;
}

@media (max-width: 500px) {
    .right-image img {
        max-width: 100%;
        padding: 5px;
        border-radius: 10px;
    }
    .left-image img {
        max-width: 100%;
        padding: 5px;
        margin-top: 20px;
        border-radius: 10px;
    }
}

.heading-underline {
    position: relative;
    width: max-content;
    display: inline;
}

.heading-underline::after{
    content: "";
    background: linear-gradient(135deg,var(--color-brand),var(--color-brand2));
    height: 4px;
    border-radius: 5px;
    width: 100%;
    position: absolute;
    bottom: 0;
    bottom: calc(-20%);
    left: 0;
}

.about-page p{
    text-align: justify;
}

/* CONTACT */
#contact {
    position: relative;
    z-index: 2;
}

#contact::after {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(219, 72, 92, 0.263),rgba(9, 128, 188, 0.207)), url(/static/img/contact_back.jpeg);
    /* background: linear-gradient(rgba(var(--color-brand), 0.8), rgba(var(--color-brand2), 0.8)), url(/img/cover.jpg); */
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

#contact .form-control {
    border-radius: 0;
}

#contact .form-control:focus {
    box-shadow: none;
    border-color: var(--color-brand);
}

.form-group button:hover{
    color: var(--color-brand);
    border: 2px solid var(--color-brand);
}

.contact-address i{
    color: var(--color-brand2);
    border: 2px solid var(--color-brand2);
    padding: 20px;
    font-size: 50px;
    border-radius: 50%;
    margin-right: 20px;
}

.contact-address p{
    color: #ffffff !important;
    text-shadow: 1px 1px 2px #000;
}

.contact-address h6{
    color: var(--color-brand2) !important;
    text-transform: uppercase;
    font-weight: 900 !important;
    text-shadow: 1px 1px 2px #000;
}


@media (max-width: 1100px) {
    .contact-address i{
        font-size: 30px;
        padding: 10px;
        /* background-color: #db485c; */
    }
    .contact-address p{
        font-size: 15px;
        color: #fff;
    }
}

@media (max-width: 360px) {
    .contact-address p{
        font-size: 10px;
        color: #fff;
    }
}

.map-details iframe{
    /* border: 10px solid rgb(179, 173, 173); */
    border: 5px solid #534e4e;
    border-radius: 10px;
}

/* --------------------------- */

 #reviews{
    background-color: #0f1e33;
      display: flex;
      justify-content: center;
      align-items: center;
      height: auto;
}


    .item {
      overflow: visible;
      position: relative;
      margin: auto;
      width: 100%;
      padding: 30px 20px 50px;
      border-radius: 20px;
      text-align: center;
      color: white;
      backdrop-filter: blur(20px);
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    }

    .profile-pic {
      position: absolute;
      top: 0;
      margin-top: 20px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 80px;
      border-radius: 50%;
      overflow: hidden;
      border: 4px solid white;
      background-color: white;
    }

    .profile-pic img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .name {
      margin-top: 80px;
      font-weight: 700;
      font-size: 18px;
      color: white;
    }

    .company {
      font-size: 12px;
      color: #ccc;
      margin-bottom: 20px;
    }

    .quote-circle {
      position: relative;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: #67c76b;
      margin: 0 auto 15px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 148px;
      color: white;
    }

    .quote {
        position: absolute;

        bottom: -120px;
    }

    .line {
        position: absolute;
        top: 185px;
        z-index: -1;
        left: 0;

      height: 1px;
      width: 100%;
      background: #ccc;
      margin: 15px 0;
    }
/* @import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600&family=Courgette&family=Shippori+Mincho+B1:wght@400;500;700&family=Suranna&family=Signika:wght@300..700&family=Oswald:wght@200..700&family=Pathway+Gothic+One&family=Jost:ital,wght@0,100..900;1,100..900&family=Cinzel:wght@700&family=Italianno&family=Noticia+Text:wght@400;700&family=Roboto&family=Satisfy&family=Spline+Sans:wght@300..700&display=swap'); */


    .text {
      font-size: 16px;
      color: white;
      line-height: 1.5;
      font-family: "Spline", sans-serif;;
    }

    .stars {
      margin-top: 15px;
      color: gold;
      font-size: 18px;
    }

/* .owl-carousel .owl-stage-outer{
    overflow: visible !important;
}  */

/*---------------------- yahoo baba settings */


/* .item{
    background: cyan;
    height: 300px;
    padding: 10px;
} */

/* .item {
    width: 200px;
    height: auto;
    margin: auto;
} */

#services {
    background: var(--color-brand-dual)
}


/* new nav -------------- */

.navi-img {
    width: 20px;
    height: 40px;
}

/* ----------services-page----------- */

#service-page h2{
    font-family: "Shippori Mincho B1", serif;
}

/* -----media query--- */

@media (max-width: 500px) {
  .top-nav i,span {
    font-size: 13px;
  }
  .social-links a i{
    font-size: 15px;
    margin-left: 4px;
  }
  /* .service-box{
    display: block;
    text-align:center;
  }
  .service-box .icon-box{
    margin-left: 37%;
  } */
}

/* .services-frm-pg{

} */

@media (max-width: 770px) {
.services-frm-pg{
    /* background-color: #6eb8dd; */
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
    letter-spacing: normal;
    --bs-gutter-x:0;
}
}


.services-frm-pg img {
    border: 4px solid rgba(133, 197, 229, 0.576);
    border-radius: 1rem;
    width: 100%;
    transition: all .5s ease-in-out;
}

.services-frm-pg img:hover {
    transform: scale(1.1);
}

.services-frm-pg{
      /* overflow: visible;
      position: relative; */
      margin: auto;
      width: 100%;
      padding: 20px;
      border-radius: 20px;
      color: rgb(14, 13, 13);
      backdrop-filter: blur(10px);
      background: var(--color-brand-dual);
      box-shadow: 0 8px 12px rgba(0,0,0,0.25);
      transition: all .5s ease-in-out;
      border: 2px solid transparent;
      /* transition: border 1.0s ease; */
}

.services-frm-pg:hover{
    transform: scale(1.03);
    border: 2px solid var(--color-brand);
}

.services-frm-pg h2, 
.services-frm-pg p{
    color: #fff;
}

/* revie read more */

.review-text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Show only 3 lines */
  -webkit-box-orient: vertical;
  transition: all 0.3s ease;
}

.review-text.expanded {
  -webkit-line-clamp: unset;
}

.read-more-toggle {
  color: #007bff;
  cursor: pointer;
  display: inline-block;
  margin-top: 5px;
  font-weight: 500;
}



/*-------------- login page----------- */

.login{
    background: url(../img/img1.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.form-signin{
    background-color: rgba(0, 0, 0, 0.699);
    border-radius: 10px;
    color: #fff;
}

.form-signin img{
    height: 100%;
    width: 6rem;
}

/* ------------admin-head------------- */
.admin-head{
    background: url(../img/admin.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 30rem;
    width: 100%;
}


.modal-body{
    position: relative;
}

.top-close{
    position: absolute;
    top: 10px;
    right: 30px;
}

/* .modal-body img{
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    margin-left: 0px;
} */

.modal-image {
    /* background-image: url(/static/img/modal.jpeg); */
    background: linear-gradient(rgba(219, 72, 92, 0.263),rgba(9, 128, 188, 0.207)), url(/static/img/pop-up.jpeg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#Gallary p{
    /*text-shadow: 1px 1px 2px #fff;*/
    font-weight: 600;
}

#Gallary h5{
    text-shadow: 1px 1px 2px #000;
    font-weight: 600;
}

/* ----------1july---------- */
.owl-carousel{
    position: relative;
}

.owl-nav span{
    position: absolute;
    /* background-color: #db485c; */
    /* padding: 20px; */
    top: 35%;
}



.owl-prev span{ 
    background-color: rgba(9, 10, 9, 0.733) !important;
    padding: 40px 25px;
    margin-left: -12px;
}

.owl-next span{
    background-color: rgba(9, 10, 9, 0.733) !important;
    padding: 40px 25px;
    margin-left: -50px;
}

.owl-nav span:hover{
    background-color: rgba(0, 0, 0, 0.81) !important;
}