* {
  padding: 0px;
  text-align: center;
}
.header{
  min-height: 100vh;
  width: 100;
  background-image: url(panditji.png);
  background-position: center;
  background-size: cover;
  position: relative;
  
}
nav{
display: flex;
padding: 2% 6%;
justify-content: space-between;
align-items: center;

}
nav img{
width: 80px;


}
.nav-link{
flex: 1;
text-align: right;

}

.nav-link ul li{
list-style: none;
display: inline-block;
padding: 8px 12px;
position: relative;

}
.nav-link ul li::after{
content: '';
width: 0%;
height: 2px;
background-color: #cf2b62;
display: block;
margin: auto;
transition: 0.5s;
}
.nav-link ul li:hover::after{

width: 100%;
}
.nav-link ul li a{
text-decoration: none;
color: rgb(245, 240, 240);
font-family: sans-serif;



}

.menu-icon{
  display: none;
}
.menu-icon i{
  color: #fff;
  font-size: 30px;
  display: none;
}

.text-box{
width: 90%;
color: #eee9e9;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
text-align: center;
}
.text-box h1{
font-size: 50px;
}
.text-box p{
margin: 10px  0 40px;
font-size: 14px;
color: white;


}
/*whatsapp btn*/
#whatsapp{
  display: inline-block;
  text-decoration: none;
  color: #eee9e9;
  border: 1px solid white;
  padding: 7px 25px;
  font-size: 13px;
  background: rgb(119, 247, 119);
  position: relative;
  cursor: pointer;
  border-radius: 20px;
  }
  #whatsapp:hover{
    border: 1px solid #742233;
    background: #8b001c;
    transition: 1s;
  }
  
/*end whatsapp */
.hero-btn{
display: inline-block;
text-decoration: none;
color: #eee9e9;
border: 1px solid white;
padding: 12px 34px;
font-size: 13px;
background: transparent;
position: relative;
cursor: pointer;
}
.hero-btn:hover{
  border: 1px solid #742233;
  background: #8b001c;
  transition: 1s;
}


.container {
  padding: 16px;
}
h2 {
  margin-top: 4px;
  font-family: -apple-ystem, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  text-align: center;
}
.avatar {
  width: 100px;
  height: 100px;
  vertical-align: middle;
}
.Registration {
  margin: auto;
  width: 550px;
  margin-top: 30px;
  margin-bottom: 30px;
  box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0.1);
  box-shadow: 0 5px 10px rgba(0, 0, 0.2);
}
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
input[type="date"],
select {
  width: 400px;
  border: none;
  padding: 12px 20px;
  text-align: left;
  margin: 5px 0px;
  display: inline-block;
  border: 1px solid blue;
  border-radius: 5px;
}
input[type="Submit"] {
  width: 300px;
  padding: 14px 20px;
  background-color: #4caf50;
  border: none;
  cursor: pointer;
  margin-top: 20px;
  color: #000;
  font-weight: bold;
  font-variant: small-caps;
  border-radius: 1em;
}
input[type="Submit"]:hover {
  opacity: 0.8;
}

div label {
  font-weight: bolder;
  padding: 3px;
  margin: 0px;
  text-align: left;
}
select:focus,
input[type="tel"]:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="date"]:focus {
  border: 2px solid blue;
}
input[type="radio"] {
  margin-left: 10px;
  display: inline-table;
}

.our-service{
  min-height: 100vh;
  width: 100%;
  background-color: rgb(248, 214, 152);
}
.service-wrapper{
  padding: 5% 8%;

}
.service{
  display: flex;
  flex-direction: column;
  align-items: center;
}
h1{
  color: #fff;
  font-size: 5rem;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: transparent;
  letter-spacing: 4px;
  background-color: rgb(240, 201, 29);
  background:linear-gradient(8deg, rgba(240, 201, 29) 0%,rgba(0,230,173,1) 41%, rgba(41,17,45,1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
h1::after{
  content: "";
  position: absolute;
  top: 100%;
  left: 10%;
  height: 8px;
  width: 8px;
}

h1 span{
  position: absolute;
  top: 100%;
  left: 10%;
  height: 8px;
  border-radius: 50%;
  background-color: aqua;
  animation: anim .5s linear infinite;
}

@keyframes anim {
  95%{
    opacity: 1;

  }
  100%{
    opacity: 0;
    left: 88%;
  }
}
 .cards{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 60px;
  margin-top: 80px;
 }
 .card{
  height: 230px;
  width: 370px;
  background-color: #e0762f;
  padding: 3% 5%;
  border: 0.2px solid bisque;
  border-radius: 8px;
  transition: .6s;
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  overflow: hidden;
 }

 .card:after{
  content: --;
  position: absolute;
  top: 150%;
  left: -200px;
  width: 120%;
  transition: rotate(50deg);
  background-color: #fff;
  height: 180px;
  filter: blur(30px);
  opacity: 0.5;
  transition: 1s;

 }

 .card:hover:after{
   width: 225%;
   top: -100%;
 }
 .card i{
  color: #72e2ae;
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 3.3rem;
 }
 .card h2{
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;

 }
 .card p{
  text-align: left;
  width: 100%;
  margin: 12px 0;
  color:#1d0305 ;
 }
 .card:hover{
  background-color: transparent;
  transform: translateY(-8px);
  border-color: #00ff37;

 }
 .card:hover i{
  color: #00ff37;

 
}
  
   /*schedual */
   .container {
    width: 80%;
    margin: 20px auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
h2 {
    color: #e27d0a;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}
table, th, td {
    border: 1px solid #ddd;
    padding: 8px;
}
th {
    background-color: #e27d0a;
    color: white;
}
.appointment {
    margin: 20px 0;
    font-size: 1.2em;
}

/*end schedual*/
/*review section of client*/

.section_container{
  width:100%;
  max-width: 1200px;
  margin: auto;
  padding:1rem;
  text-align: center;
}
.rev{
  margin-bottom: 2rem;

}
.rev p{
  letter-spacing: 2px;
  font-size: 1rem;
  font-weight:500;
  
}
.rev h2{
  font-family: 'noto serif', serif;
  font-size: 2rem;
  font-weight: 900;

}
.testimonials_grid{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap:2rem;
  margin-bottom: 2rem;
 
}
.card-r{
  padding: 2rem;
  display: grid;
  gap:1rem;
  background-color: var(--extra-light);
  border-radius: 5px;
  box-shadow: 5px 5px 30px rgba(0, 0, 0, -1);
  cursor: pointer;

}
.card-r i{
  font-size: 1rem;
  color: gold;

}
.card-r p{
  font-size: 1rem;
  font-weight: 500;


}
.card-r hr{
  width:40px;
  margin:auto;
  color: var(--text-light);

}
.card-r img{
 width: 60px;
 height: 60px;
 margin: auto;
 border-radius: 100%;
 border: 1px solid var(--primary-color);
}
.card-r .name{
  font-size: .9rem;
  font-weight: 400;
  color: var(--text-light);
  transition: .3s;
}
.card-r .name:hover{
 color: var(--primary-color);
 
}

/*review section of client end*/

/*about us*/

/*.............about us section.............*/
.sub-header{
  height: 50vh;
  width: 100%;
  background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(image/home.jpg);
  background-position: center;
  background-size: cover;
  text-align: center;
  color: #eee9e9;
}
.sub-header h1{
  margin-top: 100px;
}
.about-us{
  width: 80%;
  margin: auto;
  padding-top:80px;
  padding-bottom: 50px;

}
.about-col{
  
  flex-basis: 48%;
  padding: 30px 2px;
}
.about-col img{
  width: 100%;

}
.about-col h1{
  padding: 0;
}
.about-col p{
  padding: 15px 0 25;

}
.red-btn{
  border: 1px solid #f44366;
  background: transparent;
  color: #f44366;

}
.red-btn:hover{
  color: #eee9e9;
}
/*about end */

/*footer*/
.footer{

  width: 100%;
  text-align: center;
  padding: 30px 0;
  background-color: #222;

}
.footer h4{
  margin-bottom: 25px;
  margin-top: 20px;
  font-weight: 600;
  color: #ddd;

}
.footer p{
  color: #ddd;
}
.icons .fa{
  color: #ff1818;
  margin: 0 13px;
  cursor: pointer;
  padding: 18px 0;
}

.fa-heart-o{
  color: #f44366;
}
.contacts{
  display: block;
  flex-direction: wrap;
  align-items: right;
  color: #ddd;
}
.contacts h4{
  color: #ddd;
  font-weight: 300;
  
  text-spacing-trim: 20px;
}
.contacts p{
  color: #ddd;
  font-weight: 300;
 
}
/*footer end*/

@media screen and (max-width:1200px) {
  .cards{
    grid-template-columns: repeat(1,1fr);
  }
  .testimonials_grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;

  }
}
@media screen and (max-width:700px) {
  .cards{
    grid-template-columns: repeat(1,1fr);
  }
  h1{
    font-size: 3.5rem;
  }
  .nav-link ul{
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    text-align: center;
    gap: 0;
    flex-wrap: wrap;
  }
  nav-link ul li{
        padding: 20px;
  }
  .menu-icon{
    display: block;
  }
  .testimonials_grid{
    grid-template-columns: repeat(1, 1fr);
    

  }

}
.whatsapp-button {
            position: fixed;
            bottom: 100px;
            right: 2px;
            padding: 15px;
            text-align: center;
            cursor: pointer;
            z-index: 1000;
            text-decoration: none;
        }
        
        a{
            text-decoration:none;
        
        }
