* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  :root{
    --bg-color: #fff;
    --white:#fff;
    --orange:#FFAC1C;
    --text-color:#000;
    --card-color: #fff;
    --navbar-bg-color: #fff;
    --navbar-text-color: #000;
    --first-color: #0e2431;
    --modal-bg-color: #fff;
    --body-bg-color: #fefefe;
    --card-bg-color: #fff;
    --bg-transparent-color: rgba(0, 0, 0, 0.1);
    --transparent-color-01: rgba(0, 0, 0, 0.1);
    --transparent-color-02: rgba(106, 89, 209, 0.1);
    --line-color: #d7d7d7;
    --border-color: #000;
}
.dark-mode {
    --bg-color: #121212;
    --white:rgb(30, 30, 30);
    --text-color:#fff;
    --orange:#eba631;
    --card-color: #1e1e1e;
    --first-color: #cdc8c8;
    --modal-bg-color: #292828;
    --navbar-bg-color: #343a40; /* Dark mode navbar background color */
    --navbar-text-color: #ffffff; /* Dark mode navbar text color */
    --border-color: #fff;
}
body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: var(--bg-color);
    
}

/* Nav */
nav a {
    text-decoration: none;
}

nav {
    position: relative;
    /* box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.075); */
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.07), 0 4px 8px rgba(0, 0, 0, 0.07), 0 8px 16px rgba(0, 0, 0, 0.07), 0 16px 32px rgba(0, 0, 0, 0.07), 0 32px 64px rgba(0, 0, 0, 0.07);
}
.navbar-collapse{
    width: 100%;
    display: flex;
    justify-content: flex-end;
    z-index: 2;
    color: var(--navbar-text-color);
    /* float: right; */
}
#navbarSupportedContent ul li{
    margin: 10px 20px;
    padding: 10px 20px;
}
#navbarSupportedContent ul li:hover{
    color: var(--white);
    background-color: #909090;
}
/* .header{
    height: 10px !important;
} */

#navbarSupportedContent ul li a {
    color: var(--black);
    text-decoration: none;
}
nav .navbar-brand h2{
    margin-left: 50px;
    font-family: 'Popins',sans-serif;
}

.homepage{
    width: 100%;
    height: 90vh;
    background-size: cover;
    background-position: center;
    transition: 1s ease-in-out;
    color: var(--text-color);
}
.layer{
    height: 50vh;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: center;
    align-items: center;
    padding: 20px;
    backdrop-filter: blur(5px);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    color: var(--white);
    background-color: rgba(0, 0, 0, 0.25);
}
.layer .btn{
    background-color: var(--orange);
    border: 1px solid var(--orange);
}
.layer .btn:hover{
    color: var(--orange);
    background: transparent;
    border: 1px solid #fff;
}
#homecontainer{
    position: relative;
}
#homecontainer .layer{
    position: absolute;
    top: 20vh;
}
#contact-btn{
    position: fixed;
    margin-top: -4%;
    margin-left: 3%;
    z-index: 999;
}
#theme{
    position: fixed;
    top: 15%;
    right: 5px;
    background-color: var(--orange);
    z-index: 999;
}

/* About */
.about{
    padding: 100px 0;
    color: var(--text-color);
}


/* Weoffer */
.we-offer{
    /* margin: 100px 0; */
    /* height: 90vh; */
    color: var(--text-color);
}
.we-offer .grid-item {
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    background-color: var(--card-color);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.07), 0 4px 8px rgba(0, 0, 0, 0.07), 0 8px 16px rgba(0, 0, 0, 0.07), 0 16px 32px rgba(0, 0, 0, 0.07), 0 32px 64px rgba(0, 0, 0, 0.07);
}

.grid-item img {
    max-width: 100%;
    height: auto;
}
  
  @keyframes slide {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
  }
  
  .logos {
    overflow: hidden;
    padding: 60px 0;
    background: #c4c0c0;
    white-space: nowrap;
    position: relative;
    border-radius: 10px;
  }
  
  .logos:before,
  .logos:after {
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    content: "";
    z-index: 2;
  }
  
  .logos:before {
    left: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), #c4c0c0);
  }
  
  .logos:after {
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), #c4c0c0);
  }
  
  .logos:hover .logos-slide {
    animation-play-state: paused;
  }
  
  .logos-slide {
    display: inline-block;
    animation: 5s slide infinite linear;
  }
  
  .logos-slide img {
    height: 100px;
    margin: 0 40px;
  }

.section-title-01{
    font-size: 4.5em;
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(to top, transparent 0%, var(--first-color) 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: .1;
}

.section-title-02{
    font-size: 2.5em;
    font-weight: 700;
    transform: translateY(-80px);
    color: var(--first-color);
}

.projects .container .content{
    width: 100%;
}

.projects-list{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    max-width: 100%;
    gap: 35px;
    margin: 0 auto;
}

.projects-list .img-card{
    position: relative;
    max-width: 100%;
    height: 360px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    cursor: pointer;
}

.projects-list .img-card .overlay{
    transition: 1s ease;
}

.projects-list .img-card:hover .overlay{
    z-index: 777;
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.projects-list .img-card .info{
    z-index: 777;
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 20px;
    color: white;
    transform: translateY(20px);
    opacity: 0;
    transition: .5s ease;
}

.projects-list .img-card:hover .info{
    transform: translateY(0);
    opacity: 1;
}

.projects-list .img-card .info h3{
    font-size: 1.5em;
}

.projects-list .img-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.projects-model{
    z-index: 999999;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background: var(--transparent-color-01);
    backdrop-filter: blur(20px);
    visibility: hidden;
    opacity: 0;
    transition: .3s ease;
}

.projects-model.active{
    visibility: visible;
    opacity: 1;
}

.projects-model-body{
    position: relative;
    background: var(--modal-bg-color);
    color: var(--text-color);
    max-width: 600px;
    margin: 20px;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transform: translateY(-50px);
    transition: .5s ease;
}

.projects-model.active .projects-model-body{
    transform: translateY(0);
}

.projects-close-btn{
    position: absolute;
    top: 0;
    right: 0;
    margin: 20px;
    cursor: pointer;
}

.projects-model-body h3{
    font-size: 1.5em;
    text-align: center;
}

.projects-model-body img{
    width: 100%;
    margin: 20px 0;
    border-radius: 10px;
}

.projects-model-img{
    display: flex;
    justify-content: center;
    align-items: center;
}

.project-model-links{
    width: 100%;
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-model-links a p i, .project-model-links a p{
    color: var(--first-color);
    font-size: 1.1em;
}



.flex-center{
    display: flex;
    justify-content: center;
    align-items: center;
}

.container{
    position: relative;
    flex-direction: column;
}

.booknowbtn{
    padding:10px;
    font-size: 15px;
    background-color: orange;
    border: none;
    border-radius:10px;
    color: white;
}


/* Booking page */
.main{
    background-image:url(images/register_img.jpg);
    background-size: cover;
}
h1{
    text-align: center;
}
#form{
    background-color:var(--card-color);
    color: var(--text-color);
    width: 40%;
    margin: 10vh  auto ;
    padding: 4%;
    font-size: 15px;
}
.inputgroup{
    display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  position: relative;
}
.inputgroup .input{
    background-color: transparent;
    border: 1px solid var(--text-color)!important;
    color: var(--text-color);
}
.input-label{
    position: absolute;
    top: 55%;
    left: 15px;
    transform: translateY(-50%);
    transition: .3s ease;
    font-size: 16px;
}

span{
    color: red;
}

/* .input{
    border: 2px solid black;
} */

.input:focus ~ .input-label, .input:not(:placeholder-shown) ~ .input-label{
    top: 5px;
    font-size: 14px;
    padding: 0 5px;
    background-color: var(--card-color);
}

#form button{
    color: white;
    font-size: medium;
    border-radius: 5px;
    align-items: center;
    padding: 10px;
    margin-top: 10px;
    cursor: pointer;
}
.inputgroup input{
    border-radius: 5px;
    padding: 15px;
    width: 100%;
    font-size: 15px;
    margin-top: 6px;
    border-color:black;
}
.inputgroup input:focus{
    outline: 0;
}
.inputgroup.error{
    color:rgb(155, 47, 47);
    font-size: 12px;
    font-style:initial;
}
.inputgroup.success input{
    border-color: green;
}
.inputgroup.error input{
    border-color: red;
}

/* Footer */
address {
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    background-color: var(--bg-color);
  }
  
  .container {
    display: flex;
    justify-content: space-around;
    padding: 10px;
  }
  
  .contact-main {
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .contact {
    text-align: left;
    margin-bottom: 20px;
    padding: 20px;
  }
  
  /* h1 {
    color: #333;
  }
  
  p {
    color: #666;
  } */
  
  ul {
    list-style: none;
    padding: 0;
  }
  
  li {
    margin-bottom: 5px;
  }
  
  address {
    font-style: normal;
    margin-top: 5px;
    color: #666;
  }
  
  .logo {
    /* display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-around;*/
    align-items: center; 
    text-align: center;
    /* margin-top: 20px; */
  }
  
  .logo a {
    margin: 0 10px;
    text-decoration: none;
    font-size: 30px;
    transition: transform 0.5s ease;
  }
  .logo :hover {
    transform: translateY(-5px);
  }

  /* Responsive */

@media screen and (max-width:700px){
    #form{
        width: 80%;
    }
   
    .projects-list .img-card .info{
        opacity: 1;
    }
    
}