@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap");

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth; /* Enables smooth scrolling */
}

:root{
    --main-color: #72138f;
    --secondary-color: #959ff8;
}
body{
    font-family: 'Poppins', sans-serif;
}

h1, h2 {
    font-family: sans-serif;
    font-weight: 400;
}

.tops {
    width: 100%;
    height: 2.5vh;
    background-color: black;
    color: #fff;
    font-size: 10px;
    text-align: center;
    
}

a{
    text-decoration: none;
}

li{
    list-style: none;
}

.flex{
    display: flex;
}

.flex_space{
    display: flex;
    justify-content: space-between;
}

button{
    border: none;
    background: none;
    outline: none;
    transition: 0.5s;
    cursor: pointer;
}

.primary-btn{
    background: #72138f;
    color: #fff;
    padding: 15px 40px;
    border-radius: 5px;
    font-weight: bold;
    border: 2px solid #959ff8;
}

.primary-btn:hover{
    background: #959ff8;
    border-color: #72138f;
}

.secondary-btn{
    background: #959ff8;
    color: #fff;
    padding: 15px 40px;
    border: 2px solid #fff;
    border-radius: 5px;
    font-weight: bold;
}

.secondary-btn:hover{
    background: #72138f;
}

.container{
    max-width: 85%;
    margin: auto;
}

/*-----------heder------------*/

header{
    
    height: 10vh;
    line-height: 10vh;
    padding: 20 10px;
    
}

header .logo img{
   
    width: 150px;
    height: 150px;
    margin: 0 20px;
    margin-bottom: -30px;
}

header ul{
    display: inline-block
}

header ul li{
    display: inline-block;

}

header ul li a{
    color: #72138f;
    margin: 0 20px;
    transition: 0.5s;
    font-weight: 500;
    padding: 10px 20px;
    font-size: larger;
}

header ul li a:hover{
    color: #959ff8;
}

header ul li a:active {
    border: 2px solid #72138f;
}

header i{
    margin: 0 20px;
}

header button{
    margin: 13px 40px;
}

header .navlinks span{
    display: none;
}

header .h11 {
    color: #72138f; 
    display: flex;
    align-items: center;
}

.scrollToTopBtn {
    position: fixed;
    bottom: 15%;
    right: 30px;
    display: none; /* Hide by default */
    background-color: #72138f;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 1000;
}

.scrollToTopBtn:hover {
    background-color: #959ff8;
}

@media only screen and (max-width: 768px){
   header{
    background-color: #fff;
   }
   
    header ul{
        position: absolute;
        top: 139px;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #72138f;
        overflow: hidden;
        transition: max-height 0.5s;
        text-align: center;
        z-index: 9;
    }

    header ul li{
        display: block;
        
    }

     header ul li a{
        color: #fff;
     }

     header ul li a:hover {
        color: #959ff8;
     }

     header i{
        color: #fff;
     }

     header .navlinks span{
        color: #959ff8;
        display: block;
        cursor: pointer;
        line-height: 10vh;
        font-size: 25px;
        margin-top: 15px;
     }

     header .h12{
        display: none;
     }

    }

/*-----------header ends------------*/



/*-----------home starts------------*/

.home{
    height: 100vh;
    color: #fff;
}

.home img{
    width: 100%;
    height: 100vh;
    object-fit: cover;
    margin-top: 15px;
    opacity: 1;
}

.home .text{
    position: absolute;
    top: 25%;
    left: 5%;
   
}

.home #text{
    top: 14%;
    left: 7%;
    color: #72138f;
}

.home #text h1 {
    color: #fff;
    background: #72138f;
}

.home .text h1{
    font-size: 80px;
    font-weight: 400;
    font-family: serif;
    color: #fff;
}

.home p{
    margin: 40px 0;
    text-align: center;
        
}

.home button{
    margin-left: 200px;
    font-size: large;
    width: 220px;
    height: 60px;
    padding: 10px 0;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next{
    position: absolute;
    top: 40%;
    height: 50px;
    width: 50px;
    color: #72138f !important;
}

.owl-carousel .owl-nav .owl-prev{
    left: 0;
}

.owl-carousel .owl-nav .owl-next{
    right: 0;
}

/*-----------home ends------------*/

/*book section starts*/

.grid{
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-gap: 20px;

}

input{
    outline: none;
    border: none;
    width: 100%;
    border-radius: 3px;
}

.book{
    padding: 40px 0;
    background: #72138f;
    color: #fff;
}

h1{
    font-family: serif;
}

h2 {
    color: #72138f;
}

.book h1{
   font-size: 28px;
}

.book h1 span{
    color: #959ff8;
}

.book input{
    padding: 10px;
}

.book input:nth-last-child(1){
    background: #72138f;
    color: #fff;
    
}


/*-----------book section ends------------*/

/*-----------about starts------------*/

.left {
    width: 50%;
    padding: 30px;
}

.right img {
    object-fit: cover;
    height: 300px;
    width: 300px;
    margin-top: 1%;
}

.right1 img {
    object-fit: cover;
    height: 400px;
    width: 400px;
    margin-top: 12%;
}
.top{
    margin-top: 80px;
}

.mtop{
    margin-top: 40px;
}

.heading h1{
    font-size: 100px;
    font-weight: 500;
    opacity: 0.2;
    font-family: serif;
    position: absolute;
    top: -30px;
}

.heading h2{
    margin: 30px 0;
    font-size: 45px;
    font-family: serif;
    font-weight: 400;
}

.about .heading h1{
   top: 55px;
}

.about{
    position: relative;
}

.about .left{
    margin-top: 40px;
}


.about p{
    font-size: 15px;
   
}

.about button{
    margin: 80px 0;
    width: 200px;
   font-size: larger;
}

/*-----------about ends------------*/

/*-----------counter starts------------*/

.counter {
    height: 30vh;
    width: 100%;
    color: #fff;
}

.counter .grid{
    grid-template-columns: repeat(4, 1fr);
   text-align: center;
   place-items: center;
   padding-top: 60px;
}

/*-----------counter ends------------*/

/*-----------container starts------------*/

.container{
    max-width: 85%;
    margin: auto;
}

/*-----------container ends------------*/

/*-----------rooms starts------------*/

.rooms{
    position: relative;
}

.rooms .text{
    border: 1px solid #72138f;
    border-top: none;
    padding: 30px;
}

.owl-carousel1 .owl-nav .owl-prev,
.owl-carousel1 .owl-nav .owl-next{
    position: absolute;
    top: -20%;
    height: 50px;
    width: 50px;
    background: #72138f !important;
    color: #fff;
}

.owl-carousel1 .owl-nav .owl-prev i,
.owl-carousel1 .owl-nav .owl-next i{
    color: #fff;
}

.owl-carousel1 .owl-nav .owl-prev{
    left: 90;
}

.owl-carousel1 .owl-nav .owl-next{
    right: 0;
}

/*-----------rooms ends------------*/

/*-----------services starts------------*/

.services{
    position: relative;
}

.grid2{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}

.services .left{
    padding: 15px;
}

.services .box{
    border: 1px solid #72138f;
    text-align: center;
    transition: 0.5s;
    padding: 10px;
}

.services .box .text{
    margin: 20px 0;
    border: 1px dashed #fff;
}

.services i{
    font-size: 100px;
    color: #72138f;
    transition: 0.5s;
}

.services h3{
    font-size: 20px;
    font-weight: 400;
    margin-top: 5px;
    transition: 0.5s;
}

.services .box .text img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 100px;
    max-width: 100px;
}

.services img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    
}

.services .box:hover{
    background: #959ff8;
    color: #fff;
    cursor: pointer;
}

.services .box:hover i,
.services .box:hover h3{
    color: #fff;
}

#services {
    margin: 10% 25%;
}

#services h2 {
    text-align: center;
    margin: 3% 0;
    font-family: sans-serif;
    font-weight: bold;
}

#services p {
    text-align: center;
    line-height: 110%;
}

.container ul li{
    line-height: 2rem;
}

.ul
{
 margin-left: 10%;
 list-style-type: square;
 padding: 0;
 line-height: 30px;
}

.ul li {
     position: relative; 
     padding-left: 20px; 
 }

 .ul li::before {
     content: ''; 
     position: absolute; 
     left: 0; 
     top: 0; 
     width: 10px; 
     height: 10px; 
     background-color: #72138f; 
     margin-top: 2%;
 }

.ol {
    margin-left: 30%;
    list-style-type: lower-latin;
    line-height: 210%;
}

.ol li {
    position: relative; 
    padding-left: 20px; 
}

.ol li::before {
    content: ''; 
    position: absolute; 
    left: 0; 
    top: 0; 
    width: 10px;
    height: 10px;
    background-color: #72138f; 
    margin-top: 1%;
}

ol.styled-list {
     
    padding-left: 0; /* Remove default padding */
    text-align: left; /* Align text to the left */
    margin-left: 10%;
    margin-top: 5%;
}

.styled-list span {
   font-weight: bold;
    padding-left: 20px; /* Indent for list items */
    margin-left: 20%;
    margin-bottom: 5%;
}

ul.circle-list {
    list-style-type: circle; /* Use circle bullets for unordered lists */
    padding-left: 20px; /* Indent for nested list */
    text-align: left; /* Remove default margin from ul to maintain spacing */
    margin-left: 18%;
    margin-top: 2%;
    
}

ul.circle-list li {
    margin-bottom: 5px; /* Add space between list items */
   
}

h5 {
    text-align: center;
    color: #72138f;
    font-size: 20px;
    font-weight: bold;
    margin-bottom:50px 15px;
}


#service-select {
    background-color: #959ff8;
    border: none;
    width: 100px;
    height: 20px;
    font-size: 18px;
    font-weight: bold;
    color: #72138f;

}

.animate {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 8%;
}


.u_list {
    margin: 5% 40%;
    padding: 0;
    list-style-type: circle;
    line-height: 30px;
    width: 100%;
}

.u_list li {
    position: relative;
    padding-left: 30px;
}

.u_list li::before {
    content: ''; 
        position: absolute; 
        left: 0; 
        top: 0; 
        width: 10px; 
        height: 10px; 
        background-color: #72138f; 
        margin-top: 0.5%;  
}

.p4{
    margin: 100px 15% 50px 15%;
    font-size: 20px;
    text-align: center;
   }

/*-----------services ends------------*/

/*----------contact start------------*/

.contact{
    background: #c5caf8;
    width: 100%;
    padding-bottom: 5px;
  }
  
  .contact form{
    text-align: center;
    max-width: 50rem;
    margin: 1rem auto;
    margin-bottom: 3rem;
    margin-top: 5rem;
  }
  
  .contact form input,
  .contact form textarea{
        width: 100%;
        color: var(--second-bg);
        background: var(--);
        margin-bottom: .8rem;
        border: none;
        border-radius: 5px;
        padding: .7rem;
  }
  
  .contact form textarea{
    resize: none;
  }
  .contact form button{
    background: var(--main-color);
    width: 50%;
    border: 2px solid var(--second-bg);
  }
  
  .main-text{
    text-align: center;
    margin-bottom: 2rem;
    width: 100%;
  }
  
  .main-text h1{
    font-size: 100px;
    font-weight: 500;
    opacity: 0.1;
    font-family: serif;
    position: absolute;
    color: var(--main-color);
    margin-left: 30%;
    margin-top: 0;
  }
  
  .main-text h2{
   font-size: 80px;
   font-family: serif;
   font-weight: 400;
   color: var(--main-color);
   top: 40%;
   margin-top: 6rem;
   margin-left: 1rem;
  }

/*----------contact end--------------*/

/*-------gallery starts----------*/

.gallery{
   position: relative;
}

.gallery img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height:300px ;
}

.gallery .img{
    position: relative;
    height: 250px;
    width: 250px;
    margin: 0;
}

.gallery .img::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: #959ff8;
    width: 255px;
    height: 251px;
    z-index: 2;
    opacity: 0;
    transition: 0.5s;
}

.overlay{
    position: absolute;
    top: 35%;
    left: 25%;
    z-index: 3;
    text-align: center;
    color: #fff;
   opacity: 0;
    transition: 0.5s;
}

.gallery span{
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    text-align: center;
    border: 2px solid #fff;
}

.overlay h3{
    margin-top: 20px;
    font-weight: 500;
}

.gallery .items:hover .overlay,
.gallery .items:hover .img::after{
    opacity: 1;
    cursor: pointer;
}

.gallery .owl-nav .owl-prev{
    left: 85%;
}

.gallery .owl-nav .owl-next{
    right: 5%;
}

.gallery .owl-nav .owl-next,
.gallery .owl-nav .owl-prev{
    top: -40%;
}

/*-----------gallery ends------------*/

/*-----------customer starts------------*/

.Customer{
    height: 70vh;
    width: 100%;
    color: #fff;
    font-weight: bolder;
    text-align: center;
    margin-top: 0;
}

.Customer .container{
    max-width: 80%;
}

.Customer .item{
    padding: 10% ;
    
}

.Customer i{
    width: 100px;
    height: 100px;
    background: #72138f;
    line-height: 100px;
    border-radius: 50%;
    font-size: 50px;
    margin-bottom: 10px;
    margin-top: 50px;
    color: #fff;
}

.Customer p{
  line-height: 30px;
  width: 100%;
  background-color: #72138f;
  border-radius: 35px;
  padding:3%;
  color: #fff;
}

.Customer h3{
    margin-top: 20px;
    color: #72138f;
}

.Customer label{
    background-color: #72138f;
}

.full-review {
    display: none;
}

.review-summary {
    display: block;
}

.read-more-button {
    display: none;
}

.read-more-button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background-color: #72138f;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.read-more-button:hover {
    background-color: #959ff8;
}

.full-review {
    margin: 0;
}

.owl-carousel2 .owl-dots{
    position: absolute;
    bottom: 100px;
    left: 46.6%;
}

.owl-carousel2 .owl-dots i{
    color: #72138f !important;
}

.owl-carousel2 .owl-dots i:hover button{
    color: #959ff8 !important;
}

.owl-carousel2 span {
  border: 2px solid #72138f;
  background: transparent;
}

.owl-carousel2 .active span {
    background: #72138f !important;
    border: 2px solid #72138f;
}

.owl-carousel2 .owl-nav .owl-prev{
    left: 0;
    background: transparent !important;
}

.owl-carousel2 .owl-nav .owl-next{
    right: 0;
    background: transparent !important;
}
/*-----------customer ends------------*/

/*-----------news starts------------*/

.news {
    position: relative;
 
}

.news i {
    color: #72138f;
    text-transform: capitalize;
    font-size: 18px;
}

.news label {
    margin-top: 12px;
    margin-right: 20px;
}

.news .left {
    padding: 30px 0;
    width: 65%;
}

.news .right {
    width: 35%;
    margin-top: 40px;
    margin-left: 20px;
}

.news img {
    width: 100%;
}

.news .items p {
    padding-top: 20px;
    border-top: 1px solid #72138f;
  }
  
  .news .box {
    border-bottom: 1px solid #72138f;
    padding: 40px 0;
  }
  
  .news .box:nth-child(1){
    padding-top: 0;
  }
  
  .news .box:nth-last-child(1){
    border-bottom: none;
  }
  
  .news .box img{
    width: 110px;
    height: 114px;
    object-fit: cover;
  }
  
  .news .stext{
    padding: 0 0 0 20px;
  }

/*-----------news ends------------*/

/*-----------newsletter starts------------*/

.newsletter {
    position: relative;
    
}

.newsletter .container {
    background: #72138f;
    padding: 40px 30px;
    position: absolute;
    top: -70px;
    left: 8%;
    width: 100%;
    margin-top: 25px;
}

.newsletter h1{
    width: 100%;
    font-size: 50px;
    color: #fff;
    margin-top: 10px;
}

.newsletter input {
    padding: 20px;
}

.newsletter input:nth-child(2) {
    width: 80;
    background: #959ff8;
}

.newsletter input:nth-child(3) {
    color: #72138f;
}

.newsletter input:nth-last-child(1) {
    margin-left: 20px;
    width: 30%;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
}

/*------------newsletter ends------------*/

/*-----------footer starts------------*/

footer{
    background: #959ff8;
    color: var(--main-color);
    padding: 10% 0 5% 0;
  }
  
  footer .grid{
    grid-template-columns: 3fr 3fr 3fr 3fr;
  }
  
  footer p {
    color: #fff;
    font-size: 15px;
    line-height: 25px;
  }

  footer .icon {
    margin: 10px 20px 30px 10px;
  }
  
  footer .icon i{
   
    color: var(--main-color);
  }
  
  footer .icon i:hover{
    cursor: pointer;
    color: #fff;
  }
  
  footer h2{
    color: var(--main-color);
    margin-bottom: 10px;
    font-weight: bold;
  }
  
  footer li{
    margin-bottom: 20px;
  }
  
  footer a{
    color: #fff;
  }
  
  footer a:hover{
    color: #72138f;
  }
  
  footer i{
    color: var;
    margin: 20px 0;
    margin-right: 20px;
  }
  
  footer label{
    margin: 20px 0;
    color: #fff;
  }
  
  footer img{
    height: 200px;
    border-radius: 50%;
    margin-top: 0;
    margin-left: 0;
  }

  .legal{
    padding: 15px 0;
    background: var(--main-color);
    color: #fff;
    border-top: 1px solid ;
    text-align: center;
  }

/*-----------footer ends------------*/

/*-----------media query strts------------*/

@media (min-width: 769px) and (max-width: 1200px) {
    .item .full-review {
        display: block;
    }

    .read-more-button {
        display: none;
    }

    .review-summary {
        display: none;
    }
}

@media (min-width: 481px) and (max-width: 768px){
    .home {
        color: #fff;
        height: 70vh;
        margin: 40px 0 15px 0;
        width: 100%;
    }

    .home .text {
        top: 20%;
        left: 15%;
    }

    .home img {
        height: 70vh;
        width: 100%;
        object-fit: cover;
    }

    .home .text h1 {
        font-size: 40px;
    }

    .left, .right{
        width: 100%;
    }

    .right img {
        margin-top: 0;
        margin-left: 0;
        width: 100%;
    }

    .book h1{
        margin-bottom: 20px;
        margin-left: 15%;
    }

    .container.flex, .book .flex_space{
        flex-direction: column;
    }

    .container.services p {
        width: 100%;
        text-align: left;
    }

    .book .grid{
        grid-template-columns: repeat(2, 1fr);
        width: 70%;
        margin-left: 15%;
    }
    .counter .grid {
        grid-template-columns: repeat(1, 1fr);
        width: 100%;
        padding: 0 20px;
    }

    .owl-carousel .owl-nav .owl-prev {
        left: 80%;
        
    }

    .owl-carousel .owl-nav .owl-prev,
    .owl-carousel .owl-nav .owl-next {
        top: -1%;
    }

   /* .gallery .owl-nav .owl-prev {
        left: 75%;
    }

    .rooms .owl-nav .owl-prev,
    .rooms .owl-nav .owl-next{
        top: -20%;
    }
    .rooms .owl-nav .owl-prev{
        left: 80%;
    }
  
    .gallery .owl-nav .owl-prev,
    .gallery .owl-nav .owl-next{
        top: -20%;
    }*/

    .services .flex_space{
        flex-direction: column;
    }

    .Customer {
        margin-top: 5%;
        margin-bottom: 42%; 
       }

    .owl-carousel2 .owl-dots{
    position: absolute;
    bottom: 100px;
    left: 30%;

    }

    .Customer.container {
        max-width: 80%;
       
    }

    .read-more-button {
        display: inline-block;
    }

    .full-review {
        display: none;
    }

    .owl-carousel2 .owl-dots {
        bottom: 0;
        left: 40%;
       
    }

    .news.container {
        max-width: 100%;
        margin-top: 35%;
        margin-left: 1%;
    }


    .news.content.flex {
        flex-direction: column;   
       
    }

    .news .left {
        padding: 10px 0;
        width: 100%;
        margin-left: -6%;
        
    }

    .news .right {
       margin-left: -96%;
        margin-top: 130%;
        width: 100%;
    }
    

    .newsletter {
        position: relative;
    }

    .newsletter .container {
        background: #72138f;
        padding: 40px 30px;
        position: relative;
        top: -70px;
        left: -2%;
        width: 100%;
        margin-top: 25px;
    }

    .newsletter .flex_space {
        flex-direction: column;
    }

    .newsletter input:nth-last-child(2) {
        width: 100%;
        margin: 20px 0;
    }

    .newsletter input:nth-last-child(1) {
    
        margin: 0;
    }

    footer .grid {
        grid-template-columns: repeat(1, 1fr);
        margin-left: 15%;
    }
}

/*-----------media query maxi 768 ends------------*/

/*------------media maxi 428 starts---------*/

@media (max-width: 480px){
  header{
        background-color: #fff;
    
    }
    header .logo img{
        width: 100px;
        height: 100px;
        margin: 0 10px;
        margin-bottom: -20px;
    }

       .home{ 
        height: 50vh;
        margin-top: 15.5%;
        width: 100%;
       }

       .home #text{
        height: 10vh;
       }

       .home #text p{
        margin-top: 1%;
        font-size: 12px;
       }

       .home img{
        height: 70vh;
       margin: 0;
        width: 80%;
        object-fit: cover;
       }

       .home .text h1 {
        font-size: 18px;
        text-align: center;
    }

    .home button {
        margin-left: 15%;
        margin-top: 3%;
    }

    .book {
        height: 70vh;
        margin-top: 35%;
    }

    .book .grid{
        grid-template-columns: repeat(1, 1fr);
        width: 70%;
        margin-left: 10%;
       
    }


    .about h1 {
        font-size: 20px;
        margin-top: 0;
    }

    .about h2 {
     font-size: 30px;
     text-align: center;
    }

    .about p {
        width: 100%;
        text-align: center;
    }

    .about .p1 {
        width: 80%;
        margin-left: 5%;
        text-align: justify;
    }

    .styled-list  {
        font-size: 15px;
        margin-left: -30%;
        padding-left: 0;
        margin-right: 2%;
    }

    .about h3 {
        font-size: 20px;
       width: 80%;
       text-align: center;
        
    }

    .container.flex {
        flex-direction: column;
        margin-left: 0;
    }

    .right , .left {
        width: 100%;
        object-fit: cover;
    }

    .right img{
        width: 200px;
        height: 300px;
        object-fit: cover;
        margin: 2% 3%;
    }

    .rights {
        margin: 2% 3%;
    }

    .services .flex_space{
        flex-direction: column;
    }

    .grid2{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 10px;
        margin-left: -10%;
    }

    .heading h1 {
        font-size: 50px;
        margin-left: 4%;
    }

    .gallery .owl-nav .owl-prev,
    .gallery .owl-nav .owl-next{
        top: -20%;
        height: 50px;
        width: 50px;
        right: 20%;
    }

    .Customer {
        margin-top: 0;
        width: 100%;
       }

    .Customer.container {
        max-width: 100%;
       
    }

    .owl-carousel2 .owl-dots {
        bottom: 0;
        left: 40%;
    }
    .news .left {
       display: none;
    }

    .news .right {
       width: 100%;
    }

    .newsletter .container {
        display: block;
        position: relative;
        left: -2%;
        width: 100%;
    }

    .newsletter h1{
        width: 100%;
        font-size: 30px;
        margin: 0;
    }

    .newsletter input:nth-last-child(1) {
        margin-left: 80px;
        width: 50%;
        margin-top: 15px; 
    }

    footer .grid {
        grid-template-columns: repeat(1, 1fr);
        margin-left: 10%;
    }

    h3 {
        font-size: 20px;
        margin-top: 5px;
       text-align: center;
       margin-left: 0;
    }

    .contact {
        margin-top: 20%;
    }

    .contact h1 {
        margin: 0 15%;
        font-size: 35px;
    }

    .contact h2 {
        text-align: center;
        font-size: 35px;
    }

    .contact form {
        margin-left: 5%;
        width: 90%;
        margin-top: 5%;
    }

    .contacts .h34 {
        font-size: 20px;
        margin-left: 2%;
    }

    .contacts .p2{
        font-size: 15px;
        margin-left: 1%;
    }

    .pb{
        font-size: 10px;
        text-align: justify;
    }

    img {
        width: 300px;
        height: 400px;
        object-fit: cover;
        margin-left: 12%;
    }

    .chat {
        position: fixed;
        bottom: 15%;
        right: 10%;
        background-color: #72138f;
        color: white;
        border-radius: 50%;
        width: 10%;
        height: 10%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        cursor: pointer;
       
    }

    .heading h1 {
        font-size: 50px;
        margin-top: 45%;
    }

    .heading h2 {
        font-size: 30px;
        margin-top: 0;
        margin-left: 0;
    }

    h3 {
        font-size: 30px;
        width: 100%;
        margin-left: 12%;
    }

    .Customer {
        margin-bottom: 95%;
        
    }

    .Customer p {
        width: 100%;
    }

    .owl-carousel2 .owl-dots{
    position: absolute;
    bottom: 20px;
    left: 33%;

    }

    p {
        font-size: 15px;
        margin-left: 6%;
        text-align: justify;
    }

    .p1 {
        font-size: 8px;
        margin-left: 10%;
        text-align: justify;
    }

    .p3 {
        text-align: left;
        margin-left: 3%;
    }

    .p4 {
        font-size: 15px;
        margin-left: 2%;
        text-align: justify;
        max-width: 80%;
    }

    .u_list {
        margin-left: 8%;
        max-width: 80%;
    }
}
  

/*-------------media mxi 428 ends----------*/