@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100;200;300;400;500;600;700;800;900&family=Roboto:wght@100&family=Russo+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inspiration:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inspiration&family=Questrial&display=swap');
*{
    margin: 0;
    padding: 0;
    font-family: 'Roboto Slab', serif;
}
.container{
    max-width: 80%;
    margin: auto;
}
.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.4), rgba(4,9,30,0.4)), url(Images/ds.png);
    background-position: center;
    background-size: cover;
    position: relative;
}
nav{
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #181818;
    opacity: .85;
}
nav img{
    width: 70px;
}
nav h4{
    font-family: 'Inspiration', cursive;
    font-size: 55px;
    font-weight: 400;
    color: rgb(255, 255, 255);
}
nav h1{
    font-family: 'Inspiration', cursive;
    font-size: 55px;
    font-weight: 400;
    color: white;
}
.logo img{
    width: 70px;
}
header nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
}
.hamburger{
    display: none;
}
.bar{
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.5s ease-in-out;
    background-color: #fff;
}
header{
    flex: 1;
    text-align: right;
}
header ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
header ul li a{
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 18px;
}
header ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #068f06;
    display: block;
    margin: auto;
    transition: 0.3s;
}
header ul li:hover::after{
    width: 100%;
}
.slider-wrapper{
    position: relative;
    max-width: 72rem;
    margin: 0 auto;
}
.slider{
    position: relative;
    display: flex;
    height: 600px;
    width: 850px;
    overflow-x: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    border-radius: 0.5rem;
    touch-action: pan-y;
}
.slider img{
    position: absolute;
    flex: 1 0 100%;
    scroll-snap-align: start;
    object-fit: cover;
    transition: transform 0.3s;
    top: 0;
    left: 0;
}
.slider-nav{
    display: flex;
    column-gap: 1rem;
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
.slider-nav a{
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.95;
    transition: opacity ease 250ms;
}
.slider-nav a:hover{
    opacity: 1;
    background-color: #068f06;
}
.text-box{
    width: 90%;
    color: rgb(255, 255, 255);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.text-box h1{
    font-family: 'Inspiration', cursive;
    font-size: 95px;
    color: rgb(255, 255, 255);
}
.text-box p{
    margin: 10px 0 40px;
    font-size: 18px;
    color: rgb(255, 255, 255);
}
.hero-btn{
    font-family: 'Roboto Slab', serif;
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border-radius: 20px;
    padding: 12px 34px;
    font-size: 18px;
    background: black;
    position: relative;
    cursor: pointer;
}
.hero-btn:hover{
    border: 1px solid #068f06;
    background: #068f06;
    transition: 0.5s;
}
.hamburger{
    display: none;
}
.bar{
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.5s ease-in-out;
    background-color: #096e1f;
}
@media(max-width: 700px){
    .slider-wrapper2{
        display: none;
    }
    .slider{ 
        height: 300px;
        width: 340px;
    }
    .slider-nav{
        bottom: 3.5rem;
    }
    header{
        position: relative;
    }
    header ul{
        display: block;
        position: fixed;
        left: -100%;
        top: 5rem;
        flex-direction: column;
        background-color: rgb(0, 39, 3);
        width: 100%;
        border-radius: 10px;
        text-align: center;
        transition: 0.5s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0);
        z-index: 9999;
    }
    nav{
    z-index: 1;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    }
    nav h1{
        font-family: 'Inspiration', cursive;
        font-size: 40px;
        font-weight: 400;
        color: white;
    }
    .logo img{
        width: 60px;
    }
    header ul.active{
        left: 0%;
    }
    header ul li{
        margin: 2.5rem 0;
    }
    header ul li a{
        color: rgb(255, 255, 255);
        font-weight: 200;
    }
    .hamburger{
        display: block;
        cursor: pointer;
    }
    .hamburger.active .bar:nth-child(2){
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1){
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(3){
        transform: translateY(-8px) rotate(-45deg);
    }
}
/*---- Main Page ----*/

.content{
    width: 90%;
    margin: auto;
    text-align: center;
    padding-top: 20px;
}
h1{
    font-size: 46px;
    font-weight: 600;
    color: rgb(5, 5, 5);
}
p{
    font-family: 'candara', serif;
    color: rgb(0, 0, 0);
    font-size: 24px;
    font-weight: 300;
    line-height: 20px;
    padding: 10px;
}
.row{
    margin-top: 2%;
    display: flex;
    justify-content: space-between;
    border-spacing:0; 
    border-collapse: collapse;
   
}
.content-col{
    flex-basis: 30%;
    background: #696969;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.3s;
}
h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}
@media(max-width: 700px){
    .row{
        flex-direction: column;
    }
    h1{
        font-size: 36px;
        font-weight: 600;
        color: rgb(5, 5, 5);
    }
    p{
        color: rgb(0, 0, 0);
        font-size: 18px;
        font-weight: 300;
        line-height: 20px;
        padding: 10px;
    }
}
.col{
    width: 90%;
    margin: auto;
    text-align: center;
    padding-top: 80px;
    padding-bottom: 100px;
    flex-basis: 48%;
}
.col img{
    width: 100%;
    height: 90%;
    display: block;
}
@media(max-width: 700px){
    .col img{
        width: 100%;
        height: 90%;
        display: block;
    }
}
.act{
    margin: auto;
    text-align: center;
    padding: 5px;
    min-height: 60vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.37), rgba(4,9,30,0.37)), url(Images/03.jpg);
    background-position: center;
    background-size: cover;
}
.act-col{
    width: 90%;
    margin: auto;
    margin-bottom: 80px;
    text-align: center;
    padding-top: 80px;
    flex-basis: 48%;
}
.act-col2{
    width: 90%;
    margin: auto;
    text-align: center;
    padding-top: 80px;
    padding-bottom: 100px;
    padding-right: 45px;
    flex-basis: 48%;
}
.act-col img{
    width: 80%;
    height: 60%;
    display: block;
}
.act h1{
    color: white;
}
.act p{
    color: white;
}
@media(max-width: 700px){
    .act{
        min-height: 80vh;
        width: 100%;
    }
    .act-col img{
        display: none;
    }
}
.amen{
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
}
.amen-col{
    flex-basis: 48%;
    padding: 30px 2px;
}
.amen-col img{
    width: 100%;
    height: 86%;
    display: block;
}
@media(max-width: 700px){
    .amen{
        padding-top: 40px;
        padding-bottom: 20px;
    }
    .amen-col{
        flex-basis: 20%;
        padding: 14px 2px;
    }
    .amen-col img{
        width: 100%;
        height: 69%;
        display: block;
    }
}
.review{
    margin: auto;
    text-align: center;
    padding: 5px;
    min-height: 80vh;
    width: 86%;
    background-image: linear-gradient(rgba(4,9,30,0.6), rgba(4,9,30,0.6)), url(Images/05.png);
    background-position: center;
    background-size: cover;
}.review h1{
    color: white;
}
.review p{
    color: white;
}
.review video{
    height: 600px;
    width: 400px;
}
.revbtn{
    display: none;
}
.fa-brands{
    color: #fff;
    font-size: 38px;
}
@media(max-width: 700px){
    .review{
        margin: auto;
        text-align: center;
        padding: 5px;
        min-height: 80vh;
        width: 100%;
    }
    .review-row{
        background-color: #068f06;
    }
    .review-col{
        width: 90%;
        margin: auto;
        text-align: center;
        padding-top: 80px;
        padding-bottom: 100px;
        flex-basis: 48%;
    }
    .review video{
        height: 500px;
        width: 290px;
    }
    .revbtn{
        display: block;
    }
}
.footer{
    width: 100%;
    text-align: center;
    padding: 30px 0;
    background-color: #181818;
}
.footer h4{
    margin-bottom: 15px;
    margin-top: 20px;
    font-weight: 600;
    color: rgb(255, 255, 255);
}
.footer p{
    color: rgb(255, 255, 255);
}
/*----------- About Me page -----------*/

.sub-header{
    min-height: 60vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.5), rgba(4,9,30,0.5)), url(Images/04.png);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
}
.sub-header h1{
    margin-top: 100px;
    color: #fff;
}
.about-me{
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
}
.about-text-box{
    width: 90%;
    color: rgb(255, 255, 255);
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.about-text-box h1{
    font-family: 'Inspiration', cursive;
    font-size: 120px;
    color: rgb(255, 255, 255);
}
.about-text-box p{
    margin: 10px 0 40px;
    font-size: 18px;
    color: rgb(255, 255, 255);
}
.about-col{
    flex-basis: 48%;
    padding: 30px 2px;
}
.about-col img{
    width: 100%;
    height: 86%;
    display: block;
}
.about-col video{
    margin: auto;
    width: 100%;
    height: 40%;
    display: block;
}
.about-col h1{
    padding-top: 0;
}
.about-col p{
    padding: 15px 0 25px;
}
.act2{
    margin: auto;
    text-align: center;
    padding: 5px;
    min-height: 40vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.37), rgba(4,9,30,0.37)), url(Images/03.jpg);
    background-position: center;
    background-size: cover;
}
.act2 h1{
    color: white;
}
.act2 p{
    color: white;
}
.image-container img{
    display: none;
}
@media only screen and(max-width: 700px){
    .image-container img{
        display: block;
        width: 100%;
        height: 69%;
    }
}
@media(max-width: 700px){
    .sub-header{
    min-height: 100vh;
    }
    .about-text-box{
        top: 50%;
    }
    .about-text-box h1{
        font-family: 'Inspiration', cursive;
        font-size: 90px;
        color: rgb(255, 255, 255);
    }
    .about-text-box p{
        margin: 10px 0 40px;
        font-size: 18px;
        color: rgb(255, 255, 255);
    }
    .about-col video{
        width: 100%;
        height: 40%;
    }
    .about-col img{
        width: 100%;
        height: 69%;
        display: block;
    }
    .act2{
        width: 98%;
        background-image: linear-gradient(rgba(4,9,30,0.6), rgba(4,9,30,0.6)), url(Images/03.jpg);
    }
    .about-col img{
        width: 99%;
        height: 69%;
        display: block;
    }
}

/*----------- Reviews page -----------*/

.reviews{
    width: 100%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
    background-color:#446e44;
}
.reviews-col{
    flex-basis: 48%;
    padding: 30px 2px;
    background-color:#446e44;
    text-align: center;
}
@media(max-width: 700px){
    .reviews-row{
        background-color:#446e44;
    }
    .reviews-col{
        flex-basis: 48%;
        padding: 30px 2px;
        text-align: center;
    }
    .reviews-col img{
        width: 100%;
        height: 80%;
        display: block;
    }
}
.hr-container{
    position: relative;
    width: 80%;
    align-items: center;
  }
hr{
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    border: 1px solid #000;
    margin: 0;
}
.reviews-col h1{
    font-family: 'Questrial', sans-serif;
    padding-top: 0;
    font-size: 40px;
    font-weight: 200;
    color: #fff;
}
.reviews-col h4{
    font-family: 'Questrial', sans-serif;
    font-weight: 200;
    font-size: 33px;
    color: #fff;
}
.reviews-col p{
    font-family: 'Questrial', sans-serif;
    font-size: 24px;
    font-weight: 60;
    color: #fff;
}
.star{
    display: inline-block;
    font-size: 48px; 
    color: gold; 
    cursor: pointer;
  }
/*------------ Villa Page ---------*/

.sub-header3{
    min-height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7), rgba(4,9,30,0.7)), url(Images/13.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
}
.sub-header3 h1{
    margin-top: 100px;
    color: #fff;
}
.villa-row{
    margin-top: 2%;
    display: flex;
    justify-content: space-between;
    border-spacing:0; 
    border-collapse: collapse;
   
}
.villa-col{
    width: 90%;
    margin: auto;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 5px;
    flex-basis: 48%;
}
.villa-col img{
    width: 100%;
    height: 90%;
    display: block;
}
.villa-text-box{
    width: 90%;
    color: rgb(255, 255, 255);
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.villa-text-box h1{
    font-family: 'Inspiration', cursive;
    font-size: 120px;
    color: rgb(255, 255, 255);
}
.villa-text-box p{
    margin: 10px 0 40px;
    font-size: 18px;
    color: rgb(255, 255, 255);
}
.gallery{
    width: 90%;
    margin: auto;
    padding-top: 20px;
    padding-bottom: 10px;
}
.gallery-col{
    width: 90%;
    margin: auto;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 10px;
    flex-basis: 48%;
}
.slider-wrapper2{
    position: relative;
    max-width: 48rem;
    margin: 0 auto;
}
.slider2{
    display: flex;
    aspect-ratio: 4 / 3;
    overflow-x: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    border-radius: 0.5rem;
}
.slider2 img{
    flex: 1 0 100%;
    scroll-snap-align: start;
    object-fit: cover;
}
.slider-nav2{
    display: flex;
    column-gap: 1rem;
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
.slider-nav a{
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.75;
    transition: opacity ease 250ms;
}
.slider-nav a:hover{
    opacity: 1;
}
.location{
    width: 80%;
    margin: auto;
    padding: 20px 0;
}
.location iframe{
    width: 100%;
}
.slideshow-container {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
}
.slideshow{
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    transition: transform 1s;
}
.slideshow img{
    width: 100%;
    height: auto;
    object-fit: cover;
}
.tile-bar{
    display: none;
    justify-content: center;
    margin-top: 10px;
}
.tile{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: grey;
    margin: 0 5px;
    cursor: pointer;
}
.tile.selected {
    background-color: #068f06;
}
@media(max-width: 700px){
    .villa-text-box h1{
        font-size: 85px;
    }
    .villa-row{
        margin: 0px 0px;
        display: flex;
        flex-direction: column;
    }
    .villa-col img{
        width: 95%;
        padding: 0.4rem;
    }
    .villa-col video{
        width: 95%;
        height: 250px;
        padding: 0.4rem;
    }
}

.villa-col h1{
    padding-top: 0;
}
.villa-col p{
    padding: 15px 0 25px;
}
/*------------ Contact Us Page --------------*/

.contact-us{
    width: 80%;
    margin: auto;
}
.contact-col{
    flex-basis: 48%;
    margin-bottom: 30px;
}
.contact-us  div .fa{
    font-size: 28px;
    margin: 10px;
    margin-right: 30px;
}
.contact-col div{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.contact-col div p{
    padding: 0;
}
.contact-col div h5{
    font-size: 20px;
    margin-bottom: 5px;
    color: #555;
    font-weight: 400;
}
.contact-col input, .contact-col textarea{
    width: 60%;
    padding: 10px;
    margin-bottom: 20px;
    outline: none;
    border: 1px solid #ccc;
    box-sizing: border-box;
}
.contact-col button{
    display: inline-block;
    text-decoration: none;
    color: rgb(12, 12, 12);
    border: 1px solid rgb(10, 10, 10);
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.fa-solid{
    font-size: 32px;
}