/* Header Section Styling  */
marquee{
    color: blue;
    background-image: linear-gradient(rgb(247, 59, 7),rgb(219, 243, 248),rgb(77, 240, 7));
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
}
*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}
.header{
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
    background-color:white;
    /* background-image: url(images/image2.jpg); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* animation: change 10s infinite ease-in-out;   */
}
.header p {
    color: blue;
    font-family: 'Times New Roman', Times, serif;
}
.header p span {
    color: green;
    font-family: 'Times New Roman', Times, serif;
}

.imageSet{
    border-radius: 10%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;  
}
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 20px;
    padding: 10px;
    background-color: #fc0606;
    color: #fff;
    border: none;
    border-radius: 30%;
  }
  
.prev-btn {
    left: 10px;
  }
  
.next-btn {
    right: 10px;
  }
.zoom-buttons {
    position: absolute;
    bottom: 30px;
    right: 240px;
  }
  
.zoom-buttons button {
    font-size: 20px;
    padding: 5px;
    cursor: pointer;
    background-color: black;
    color: white;
    border-radius: 20%;
  }

.icons-1 {
    border-radius: 10px;
    margin-top: 5px;
    margin-left: -40px;
    width: 250px;
    margin-bottom: 0px;
    display: flex;
}
.phoneCall {
    color: yellow;
    margin-top: 13px;
    text-decoration: none;
    padding-right: 10px;
}
.icons-1 #phone {
    color: white;
}
.text-box .icons{
    background: white;
    border-radius: 10px;
    margin-top: 20px;
    margin-left: 500px;
    width: 220px;
    margin-bottom: 0px;
    display: flex;
    background: white;   
}
.text-box .icons:hover{
    background: black; 
}
.hero-btn-1 {
    display: inline-block;
    text-decoration: none;
    color: black;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: green;
    position: relative;
    cursor: pointer;
    border-radius: 10px;
}
.hero-btn-1:hover{
    border: 1px solid green;
    background: yellow;
    transition: 1s;
}
@keyframes change{
    0%
    {
        background-image: url(images/image1.jpg);
    }
    20%
    {
        background-image: url(images/image2.jpg);
    }
    40%
    {
        background-image: url(images/image3.jpg);
    }
    60%
    {
        background-image: url(images/image4.jpg);
    }
    80%
    {
        background-image: url(images/image5.jpg);
    }
    100%
    {
        background-image: url(images/image1.jpg);
    }
}
nav{
    display: flex;
    padding: 2% 2%;
    justify-content: space-between;
    align-items: center; 
    height: 25px;
    background-image: linear-gradient(rgb(1, 69, 69),black,rgb(1, 69, 69));
    
}

.nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul li {
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
    line-height: 20px;
}
.nav-links ul li a{
    color: white;
    text-shadow: -2px 5px 5px blue;
    text-decoration: none;
    font-size: 16px;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.designlogo {
    position: fixed;
    height: 65px;
    left: 0px;
    width: 65px;
    border-radius: 10px;
}


.logo {
    color: white;
    font-size: 25px;
    line-height: 80px;
    padding: 0 52px;
    font-weight: bold;
    font-family: 'Josefin Sans', sans-serif;
    cursor: pointer;
    text-decoration: none;
    text-shadow: -2px 5px 5px rgb(168, 50, 50);
}
nav ul {
    float: right;
    margin-right: 20px;
    line-height: 10px;
}


nav ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #f44336;
    display: block;
    margin: auto;
    transition: 0.5s;
}
nav ul li:hover::after{
    width: 100%;
}

.hero-btn {
    display: inline-block;
    text-decoration: none;
    color: black;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: yellow;
    position: relative;
    cursor: pointer;
    border-radius: 10px;
}
.hero-btn:hover{
    border: 1px solid green;
    background: green;
    transition: 1s;
}
nav .fa-solid{
    display: none;
}

/* Services Section Styling  */
.services{
    width: 100%;
    margin: auto;
    text-align: center;
    padding-top: 10px;
    background: white;
}
.services h1{
    font-size: 25px;
    font-weight: 600;
    color: rgb(168, 50, 50);
    text-shadow: -2px 5px 5px silver;
    font-family: 'Times New Roman', Times, serif;
}
.services p{
    color: black;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
    font-family: 'Times New Roman', Times, serif;
}
.row{
    margin-top: 0.5%;
    margin-left: 0.5%;
    margin-right: 0.5%;
    display: flex;
    justify-content: space-between;
    width: 98%;
    color: black;
}
.service-col{
         flex-basis: 31%;
         background: goldenrod;
         border-radius: 10px;
         margin-bottom: 5%;
         padding: 20px 12px;
         box-sizing: border-box;
         transition: 0.5s;       
}
h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}
.service-col:hover{
    box-shadow: 0 0 40px 0px goldenrod;
}

/* Photo Galerry Styling Section  */
.photo-gallery{
    width: 100%;
    margin: auto;
    text-align: center;
    padding-top: 10px;
    background: white;
    color: black;
}
.photo-gallery h1{
    font-family: 'Times New Roman', Times, serif;
    color: rgb(168, 50, 50);
    text-shadow: -2px 5px 5px silver;
}
.photo-gallery p{
    margin-top: 20px;
    font-family: 'Times New Roman', Times, serif;
}
.photo-gallery p {
    margin-top: 20px;
    font-family: 'Times New Roman', Times, serif;
}
.para2 {
    text-align: left;
}
.photo-gallery-col{
    flex-basis: 32%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    display: grid;
}
.photo-gallery-col img{
    width: 100%;
    height: 300px;
    display: block;
}
.layer{
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}
.photo-gallery-col:hover{
    box-shadow: 0 0 40px 0px goldenrod;
    transform: scale(1.2);
    cursor: pointer;
}
.layer:hover{
    background: rgba(226, 0, 207, 0.2);
    
}
.layer h3{
    width: 100%;
    font-weight: 500;
    color: white;
    font-size: 26px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 0;
    transition: 0.5s;
}
.layer:hover h3{
    bottom: 49%;
    opacity: 1;
}

/* Facilities Section Styling */

.facilities{
    width: 100%;
    background: white;
    color: black;
    margin: auto;
    text-align: center;
    padding-top: 10px;
}
.facilities h1{
    font-family: 'Times New Roman', Times, serif;
    color: rgb(168, 50, 50);
    text-shadow: -2px 5px 5px silver;
}
.facilities p{
    font-family: 'Times New Roman', Times, serif;
}
.facilities-col{
    flex-basis: 30%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
    /* background-color: rgb(168, 50, 50); */
    background-color: rgba(254, 1, 1, 0.654); 
}

.facilities-col img{
    width: 40%;
    height: 100px;
    border-radius: 10px;
    display: block;
}

.facilities-col img:hover{
    box-shadow: 0 0 40px 0px goldenrod;
    transform: scale(1.2);
    cursor: pointer;
}
.facilities-col p{
    padding: 0;
    text-align: center;
    font-family: 'Times New Roman', Times, serif;  
    color: white;  
}
.facilities-col h3{
    margin-top: 16px;
    margin-left: 15px;
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    text-shadow: -2px 5px 5px rgba(22, 190, 13, 0.694);
    color: rgb(245, 245, 1);
}

/* Testimonials Section Styling */
.testimonials{
    width: 100%;
    margin: auto;
    padding-top: 30px;
    text-align: center;
    background: white;
    color: black;
}
.testimonials h1{
    font-family: 'Times New Roman', Times, serif;
    color: rgb(168, 50, 50);
    text-shadow: -2px 5px 5px silver;    
}
.testimonials p{
    margin-top: 1%;
    font-family: 'Times New Roman', Times, serif;
}
.testimonials-col{
    flex-basis: 40%;
    border-radius: 10px;
    margin-top: 4%;
    text-align: left;
    background: black;
    padding: 25px;
    cursor: pointer;
    display: flex;
    color: white;
    height: 50%;
    margin-bottom: 2%;

}
.testimonials-col img{
    width: 50%;
    height: 120px;
    margin-left: 5px;
    margin-right: 30px;
    border-radius: 50%;
}
.testimonials-col p{
    padding: 0;

}
.testimonials-col h3{
    margin-top: 15px;
    text-align: left;
    
}
.fa-star,.fa-star-half-stroke {
    color:red;
}

/* footer section styling */

.footer{
    width: 100%;
    text-align: center;
    padding: 30px 0 ;
    background-image: linear-gradient(rgb(140, 140, 222),yellow,green);
}
.footer h4{
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;
    font-family: 'Rubik Doodle Shadow', system-ui;
    color: black;
    font-size: 22px;
    text-shadow: -2px 5px 5px rgb(168, 50, 50);
}
.footer p span{
    color: #f44336;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: bolder;
    font-size: 12px;
}
.icons-1 #facebook{
   color: blue;
   margin: 0 13px;
   cursor: pointer;
   padding: 18px 0;
}
.icons-1 #instagram{
    color: red; 
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
    
 }
.icons-1 #whatsapp{
    color: rgb(5, 180, 5);
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
 }
.icons-1 #youtube{
    color: red;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
 }
.icons-1 #twitter{
    color: white;
    margin: 0 13px;
   cursor: pointer;
   padding: 18px 0;
 }

 #heart{
    color: red;
 }

.fa-brands:hover{
    transform: scale(150%); 
 }

 .phoneCall:hover {
    transform: scale(150%);
 }
 
 .pcount, .vcount {
    text-decoration: none;
    padding: 10px;
    margin: 10px;
    color: #fff;
    font-weight: bolder;
    background-color: #ee3239;
    border-radius: 10px;
 }

 /* ------ About us Page (about.html)------ */
.sub-header{
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/image2.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: white;
}
.sub-header h1{
    margin-top: 100px;
}
.about-us {
    width: 100%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
    background: black;
    color: white;
}
 
.about-col{
   flex-basis: 48%;
   padding: 5px 0px;
   position: relative;
   overflow: hidden;
}
.about-col h1 {
    font-family: 'Times New Roman', Times, serif;
    color: rgb(168, 50, 50);
    text-shadow: -2px 5px 5px silver;
}
.about-col p {
    color: black;
    font-family: 'Times New Roman', Times, serif;
}
.about-col img{
    width: 100%;   
}


#youtube-video1{
    margin-top: 20px;
    margin-bottom: 10px;

}

/* -----Contact us Section Styling ----- */

.location{
    width: 80%;
    margin: auto;
    padding: 80px 0;
    padding-top: 10px;
    text-align: center;
    background: white;
    color: black;    
}
.location-col{
    border-radius: 5%;
    box-shadow: 0 0 90px 0px goldenrod;
}
.location h1{
    font-family: 'Times New Roman', Times, serif;
    color: rgb(168, 50, 50);
    text-shadow: -2px 5px 5px silver;
    padding-bottom: 10px;
}
.location p {
    font-family: 'Times New Roman', Times, serif;
    padding-bottom: 10px;
    text-align: left;
}
.location iframe{
    width: 100%;
}
.contact-us{
    width: 80%;
    margin: auto;
    margin-left: 20px;
    
}
.contact-col{
    flex-basis: 40%;
    margin-bottom: 30px; 
}
.contact-col div{
    display: flex; 
    align-items: center;
    margin-bottom: 40px;
    
}
.contact-col div .fa-solid{
    font-size: 28px;
    color: rgb(168, 50, 50);
    margin: 10px;
    margin-right: 30px;
}
.contact-col div h5{
    font-size: 15px;
    margin-bottom: 5px;
    color: black;
    font-weight: 400;
    font-family: 'Times New Roman', Times, serif;
}
.contact-col input, .contact-col textarea{
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid silver;
    box-sizing: border-box;

}
#msg{
    color: black;
    margin-top: 5px;
    display: block;
}
#Query{
    padding-bottom: 10px;
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 120px;
    margin-left: -1px;
    margin-bottom: 20px;
    color: rgb(69, 71, 71);

}
.inputInfo{
    border-radius: 10px;
    background-color: rgba(168, 50, 50, 0.135);
    color: blue;
}



/* Add this at the end of your style.css file */
.animated-from-bottom {
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 1s, transform 1s;
  }
  
  .animated-from-bottom.show {    
    opacity: 1;
    transform: translateY(0);
  }
  
  .review-container {
    width: 100%;
    margin: 50px auto;
    position: relative;
}

.reviews-wrapper {
    display: flex;
    overflow: hidden;
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

.review-card {
    flex: 0 0 50%; /* Two cards at a time */
    box-sizing: border-box;
    padding: 20px;
    text-align: center;
}

.review-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.sliding-btn {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    font-weight: bold;
    padding: 10px;
    background-color: #3498db;
    color: #fff;
    border: none;
    outline: none;
    border-radius: 10px;
    /* user-select: none; */
}

#prev-btn {
    left: 0;
    background-color: rgb(168, 50, 50);
}

#next-btn {
    right: 0;
    background-color: rgb(168, 50, 50);
}

.link-style{
    text-decoration: none;
    font-weight: bolder;
    color: rgb(50, 78, 168);
}


/* Responsive Design  */
@media(max-width: 768px){
    .designlogo {
        position: fixed;
        height: 38px;
        left: 0px;
        width: 38px;
    }
    label.logo{
        font-size: 15px; 
    }
    nav .icons-1 {
        margin-top: 32%;
        margin-left: -220px;
    }
    .icons-1 #twitter {
        color: black;
    }
    #about-section {
        margin-top: 10%;
    }
   .nav-links ul li{
    display: block;
   }
    .nav-links{
        position: fixed;
        background: goldenrod;
        height: 100vh;
        width: 200px;
        top:0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .fa-solid{
        display: block;
        color: white;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 30px;

    }
    .hero-btn:hover{
        border: 1px solid green;
        background: green;
        transition: 1s;
    }
    .row{
        flex-direction: column;
    }
    .testimonials-col img{
        margin-left: 0px;
        margin-right: 15px;   
    }
    #Query{
        padding-bottom: 5px;
        padding-top: 5px;
        padding-left: 5px;
        padding-right: 50px;
        margin-left: 10px;
        margin-bottom: 30px;
        margin-top: 10px;
    }
    .zoom-buttons {
        position: absolute;
        bottom: 30px;
        right: 180px;
      }
      
    .zoom-buttons button {
        font-size: 20px;
        padding: 5px;
        cursor: pointer;
        background-color: black;
        color: white;
        border-radius: 20%;
      }
    #prev-btn {
        left: 0;
        margin-top: 140px;
    }
    
    #next-btn {
        right: 0;
        margin-top: 140px;
    }
    
    .pcount, .vcount {
        text-decoration: none;
        padding: 10px;
        margin: 10px;
        color: #fff;
        font-weight: bolder;
        background-color: #ee3239;
        font-size: small;
        border-radius: 10px;
     }
     
}



