*{
  margin: 0;
  padding: 0;
}
body{
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
}
nav{
  background-color: white;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
}
nav ul {
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;

}
nav li{
  height: 80px;
}
nav a{
  height: 100%;
  padding: 0 50px;
  text-decoration: none;
  display: flex;
  align-items: center;
  color:#3c2466;
  font-weight: bold;
  font-size: large;

}
nav a:hover{
  color: #d8b5ea;
}
nav li:first-child{
  margin-right: auto;
  padding: 0;
}
nav ul li a img{
  width: auto;
  height: 70px;
  
}
.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 250px;
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.sidebar li {
  width: 100%;
}
.sidebar a {
  width: 100%;
}
.menu-button{
  display: none;
}

/*Image slider*/

.img-slider {
  position: relative;
  width: auto;
  height: 650px;
  margin: 0px;
 
}
.img-slider .slide {
  z-index: 1;
  position: absolute;
  width: 100%;
  clip-path: circle(0% at 0 50%);
}
.img-slider .slide.active{
  clip-path: circle(150% at 0 50%);
  transition: 2s;
  transition-property: clip-path;
}
.img-slider .slide img{
  z-index: 1;
  width: 100%;

  height: 650px;
}
.img-slider .slide .info {
  position: absolute;
  top: 20%;
  padding: 15px 30px;
}
.img-slider .slide .info h2{
  color: white;
  font-size: 45px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 2px;
}
.img-slider .slide .info p{
  color: white;
  background: rgba(0, 0, 0, 0.1);
  font-size: 16px;
  width: 40%;
  padding: 10px;
  border-radius: 4px;
  margin-top: 10px;
}
.img-slider .navigation{
  z-index: 2;
  position: absolute;
  display: flex;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
}
.img-slider .navigation .btn {
  background: rgba(255, 255, 255, 0.5);
  width: 12px;
  height: 12px;
  margin: 10px;
  border-radius: 50%;
  cursor: pointer;
}
.img-slider .navigation .btn.active{
  background:#3c2466;
  box-shadow: #3c2466;
}

/*About us*/
.aboutHeading{
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  margin: 20px auto;
}
.aboutHeading h1{
  font-size: 50px;
  color: #3c2466;
  margin-bottom: 25px;
  position: relative;
}
.aboutHeading h1::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  display: block;
  margin: 0 auto;
  background-color: #d8b5ea;
}
.aboutHeading p{
  font-size: 18px;
  color: black;
  margin-bottom: 25px;
}
.aboutContainer{
width: 90%;
margin-top: 0 auto;
padding: 10px 20px;
}
.about{
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
}
.about-image{
flex: 1;
margin-right: 40px;
overflow: hidden;
border-radius: 45%;
margin-left: 40px;
}
.about-image img{
  max-width: 100%;
  height: auto;
  display: block;
  transition: 0.5s ease;
}
.about-image:hover img{
  transform: scale(1.2);
}
.about-content{
  flex: 1;
  margin-left: 35px;
}
.about-content h2{
  font-size: 23px;
  margin-bottom: 15px;
  color: #3c2466;
}
.about-content p{
  font-size: 18px;
  line-height: 1.5;
  color: black;
}
.about-content .Chat-us{
  display: inline-block;
  padding: 10px 20px;
  background-color: #3c2466;
  color: white;
  font-size: 19px;
  text-decoration: none;
  border-radius: 25px;
  transition: 0.3s ease;
}
.about-content .Chat-us:hover{
  background-color: #d8b5ea;
  cursor: pointer;
}
/*Services*/
.ServiceContainer{
  width: auto;
  height: auto;
  padding: 0 8%;
}
.ServiceContainer h1{
  font-size: 50px;
  color: #3c2466;
  margin-bottom: 25px;
  position: relative;
  padding-top: 5%;
  text-align: center;
}
.ServiceContainer h1::after{
  content: "";
  width: 250px;
  height: 4px;
  position: absolute;
 bottom: -5px;
 left: 50%;
  background: #d8b5ea;
  transform: translateX(-50%);
}
.row{
  margin-top: 20px;
  padding-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 30px;
}
.service{
  text-align: center;
  padding: 25px 10px;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  background: transparent;
  transition: transform 0.5s, background 0.5s;

}
.service i{
font-size: 40px;
margin-bottom: 10px;
color: #3c2466;
}
.service h2{
  font-weight: 600;
  margin-bottom: 8px;
}
.service:hover{
  background: #d8b5ea;
  color: #fff;
  transform: scale(1.05);
}
.service:hover i{
  color: white;
}
/*Contact*/
.contact{
 height: auto;
 padding: 50px;
 text-align: center;
 background-color: rgb(219, 233, 251);
}
.ContactContainer{
  max-width: 900px;
  margin:0 auto;
}
.ContactContainer h1{
  font-size: 50px;
  color: #3c2466;
  margin-bottom: 40px;
  position: relative;
}
.ContactContainer h1::after{
  content: "";
  width: 250px;
  height: 4px;
  position: absolute;
 bottom: -5px;
 left: 50%;
  background: #d8b5ea;
  transform: translateX(-50%);
}
.contact-wrapper{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
 
}
.contact-form{
  text-align: left;
}
.contact-form h3{
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
}
.form-group{
  margin-bottom: 20px;
}
input, textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  background-color: #d8b5ea;
  color:#333;
}
input:focus,
textarea:focus{
  outline: none;
  box-shadow: 0 0 8px #bbb;
}
button{
  display: inline-block;
  padding: 12px 24px;
  background-color: #3c2466;
  color: white;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
}
button:hover{
  background-color: #d8b5ea;
}
.Contact-info{
  text-align: left;
  padding-left: 50px;
}
.Contact-info h3{
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
}
.Contact-info p{
  margin-bottom: 10px;
  color: #555;
}
.Contact-info i{
 color: #3c2466;
 margin-right: 10px;  
}
.footer{
  padding: 40px 0;
  background-color: #fff;
}
.footer ul{
  margin-top: 0;
  padding: 0;
  font-size: 18px;
  list-style: none;
  line-height: 1.6;
  margin-bottom: 0;
  text-align: center;
}
.footer ul a{
color: #3c2466;
text-decoration: none;
opacity: 0.8;
}
.footer ul li{
  display: inline-block;
  padding: 0 15px;
}
.footer ul li a:hover{
  opacity: 1;
}
.footer .copyright{
  margin-top:15px ;
  text-align: center;
  font-size: 13px;
  color: black;
}
.Privacy{
  width: 60%;
  margin-left: 20%;
  margin-top: 50px;
}
.Privacy h1{
  color: #3c2466;
}

/*Gallery*/
.galleryContainer{
  width: 90%;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 5%;
}
.gallery{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  grid-gap: 30px;
}
.gallery img{
  width: 100%;
}
/*Mobile Phones*/

@media(max-width: 800px){
.hideOnMobile{
  display: none;
}
.menu-button{
  display: block;
}
.img-slider{
  width: auto;
  height: 300px;
}
.img-slider .slide img{
  height: 300px;
}
.img-slider .slide .info {
  padding: 10px 25px;
  top: 20%;
}
.img-slider .slide .info h2{
  font-size: 25px;
}
.img-slider .slide .info p{
  width: 70%;
  font-size: 11px;
}
.img-slider .navigation{
  bottom: 25px;
}
.img-slider .navigation .btn{
  width: 10px;
  height: 10px;
  margin: 8px;
}
/*About us*/
.aboutHeading{
  padding: 0px 20px;
}
.aboutHeading h1{
  font-size: 36px;
}
.aboutHeading p{
  font-size: 17px;
  margin-bottom: 0px;
}
.aboutContainer{
  padding: 0px;
}
.about{
  padding: 20px;
  flex-direction: column;
}
.about-image{
  margin-right: 0px;
  margin-bottom: 20px;
}
.about-content p{
  padding: 0;
  font-size: 16px;
}
.about-content .Chat-us{
  font-size: 16px;
}
.ServiceContainer h1{
  font-size: 36px;
}
.ContactContainer{
  padding: 20px;
}
.contact-wrapper{
 
  grid-template-columns: 1fr;
  
 
}
.ContactContainer h1{
  font-size: 36px;
 
}
.Privacy h1{
  font-size: 30px;
}
.Privacy h2{
  font-size: 18px;

}
.Privacy p{
  font-size: 12px;
}

}

@media(max-width: 400px){
  .sidebar{
    width: 100%;
  } 
}
    