/* Base reset */
* {
    margin: 0;
    padding: 0;
}

/* box-sizing and font sizing */
*,
*::before,
*::after {
    box-sizing: inherit;
    scroll-behavior: smooth;
}

html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}


body {
    font-size: 1.8rem; /* 18px */
    font-weight: 400;
    line-height: 1.4;
    color: #1d1d1b;
    font-family: 'Raleway', sans-serif;
    overflow-x: hidden;
}

h1,
h2 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    text-align: center;
}

h1 {
    font-size: 6rem;
}

h2 {
    font-size: 4.2rem;
}

ul {
    list-style: none;
    margin-bottom: 0rem;
}

a {
    text-decoration: none;
    color: #fff;
}

img {
    display: block;
    width: 100%;
}



/* Styles for the navigation bar */
nav{
  position: fixed;
  width: 100%;
  height: 100px;
  background-color: #00ccff;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  background-color: #00ccff;
  background-image: url('/assets/nav.png'); /* Add this line */
  background-repeat: no-repeat; /* If you don't want your image to repeat */
  background-size: cover; /* This will cover the entire area */
  z-index: 0;
}

nav.higher {
  z-index: 10;
}

nav.scrolled {
  z-index: 5; /* choose a value between the default and the higher value */
}

/*Styling logo*/
.logo{
  color: white;
  font-weight: bold;
  text-decoration: none;
}
.logo img {
  margin-left: 150px;
  width: 270px;
}

.logo .img1 {
  margin-left: 150px;
  width: 200px;
}

/*Styling Links*/
.nav-links {
  color: white;
  margin-right: 150px;
  display: flex;
  list-style: none;
  padding: 0 0.7vw;
  justify-content: flex-end; /* aligns items to the right */
  align-items: center;
  text-transform: uppercase;
}
.nav-links li a{
  text-decoration: none;
  margin: 0 0.7vw;
  font-size: large;
  font-weight: 800;
}
.nav-links li a:hover {
  color: #fff;
}
.nav-links li {
  position: relative;
}
.nav-links li a::before {
  content: "";
  display: block;
  height: 3px;
  width: 0%;
  background-color: #fff;
  position: absolute;
  transition: all ease-in-out 250ms;
  margin: 0 0 0 10%;
}
.nav-links li a:hover::before{
  width: 80%;
}



/*Styling Hamburger Icon*/
.hamburger div{
  width: 30px;
  height:3px;
  background: #f2f5f7;
  margin: 5px;
  transition: all 0.3s ease;
}
.hamburger{
  display: none;
}

/*Stying for small screens*/
@media screen and (max-width: 800px){
  nav{
    position: relative;
    padding: 0;
  }
  .hamburger{
      display:block;
      position: absolute;
      cursor: pointer;
      right: 5%;
      top: 50%;
      transform: translate(-5%, -50%);
      z-index: 12;
      transition: all 0.7s ease;
  }
  .logo img {
    margin-left: 0px;
    width: 170px;
  }

  .logo .img1 {
    margin-left: 0px;
    width: 70px;
  }

  .nav-links{
      position: fixed;
      background: #007997;
      z-index: 10;
      height: 100vh;
      width: 100%;
      flex-direction: column;
      justify-content: space-evenly;
      clip-path: circle(50px at 90% -20%);
      -webkit-clip-path: circle(50px at 90% -10%);
      transition: all 1s ease-out;
      pointer-events: none;
      margin-right: 0px;
      padding: 0;
  }
  .nav-links.open{
      clip-path: circle(1000px at 90% -10%);
      -webkit-clip-path: circle(1000px at 90% -10%);
      pointer-events: all;
  }

}
/*Animating Hamburger Icon on Click*/
.toggle .line1{
  transform: rotate(-45deg) translate(-5px,6px);
}
.toggle .line2{
  transition: all 0.7s ease;
  width:0;
}
.toggle .line3{
  transform: rotate(45deg) translate(-5px,-6px);
}


select#languageSelector {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  border: none;
  padding: 5px;
  width: 150px; /* Adjust the width as needed */
}

select#languageSelector option {
  padding: 5px;
  background-repeat: no-repeat;
  background-position: 5px center;
}

#banner {
  position: relative;
  height: 800px; /* Adjust the height as needed */
  background-color: rgba(0, 0, 0, 0.233);
  
  border-bottom: 100px solid #00ccff;
}

#banner::before {
  content: '';
  position: absolute;
  bottom: -100px; /* Positioning just above the border */
  left: 0;
  width: 100%;
  height: 100px; /* This is the height of your image "border" */
  background: url('/assets/nav.png') no-repeat center center;
  background-size: cover;
  z-index: 0; /* Ensure the pseudo-element is on top */
}

.strip {
  width: 100%; /* This will cover the full width of the containing element */
  height: 100px; /* This is the height of the div */
  background: url('/assets/nav.png') no-repeat center center, #00ccff;;
  background-size: cover;
  padding-bottom: 20px;
}


#banner video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* New styles for the slider and buttons */
.image-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;  /* to ensure it stays in the background */
}

.slider-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;  /* to make sure images cover the banner */
}

#left-button,
#right-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.7);
  padding: 10px 15px;
  border: none;
  cursor: pointer;
  z-index: 1;
}

#left-button {
  left: 10px;
}

#right-button {
  right: 10px;
}




#banner .img1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.Banner_content{
  position: absolute;
  margin-left: 150px;
  top: 35%;
  text-align: left;
  color: #ebebeb;
  font-size: 30px;
  font-weight: 800;
  max-width: 45%;
}

.Banner_content h6{
  font-size: 70px;
  color: white;
  font-weight: 800;
}

/* For tablets and small desktops */
@media (max-width: 1024px) {
  .Banner_content {
    font-size: 30px;
    margin-left: 100px;
    max-width: 75%;
  }

  .Banner_content h6 {
    font-size: 50px;
  }
}

.Banner_contentse {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ebebeb;
  font-size: 40px;
  font-weight: 800;
  text-align: center;
  height: 100%;  /* Consider setting this if it isn't already set elsewhere in your CSS */
  width: 100%;   /* Consider setting this if it isn't already set elsewhere in your CSS */
}
.Banner_contentse h6{
  font-size: 70px;
  color: white;
  font-weight: 800;
}

@media (max-width: 768px) {
  .Banner_content{
    position: absolute;
    margin-left: 60px;
    top: 35%;
    text-align: left;
    color: #ebebeb;
    font-size: 18px;
    font-weight: 800;
  }
  .Banner_content h6{
    font-size: 40px;
  }
}



/* Welcome section */

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    height: 250px;
    position: relative;
    margin-bottom: 150px;
    margin-left: 60px;
    margin-right: 60px;
  }

  .video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }

  .logo {
    width: 200px;
    height: 150px;
  }

  .phone-number {
    padding-top: 10%;
  }

  .phone-number span{
    color: #1d1d1b;
    font-size: 22px;
  }

  .phone-number span b{
    color: #1d1d1b;
    font-size: 22px;
    font-weight: 700;
  }

  

#welcome-section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #fff;
    z-index: 0;
}

.WelcomeDiv{
    width: 60%;
}


.Heading{
    text-align: center;
    font-family: raleway,Sans-serif;
    font-size: 70px;
    text-transform: none;
    line-height: 1.2em;
    letter-spacing: 1px;
}


.Welcome{
    font-weight: 800;
}

.Licensed{
    font-weight: 300;
}
 
.details {
    margin-top: 50px;
    text-align: center;
    padding: 5% 11%;
    background-color: #1d1d1d;
    margin-left: 5%;
    margin-right: 5%;

}

.details h3{
  background-color: #00ccff;
    font-size: 28px;
    font-weight: 700;
    text-transform: none;
    font-style: normal;
    /* text-decoration: none; */
    line-height: 1.4em;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.details h6 {
    font-family: questrial, Sans-serif;
    font-size: 22px;
    font-weight: 400;
    text-transform: none;
    font-style: normal;
    text-decoration: none;
    line-height: 1.3em;
    letter-spacing: -.29px;
    color: #fff;
    text-align: justify;
    text-align-last: center;
    padding: 0 20px; /* Equal padding from left and right */
}




/* Booking section */
.BookingSection{
    background-color: #fff;
    margin-bottom: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
}




  .form {
    font-size: 15px;
    width: 500px;
    padding: 20px;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
  }

  .form-label1 {
    display: block;
    margin-bottom: -30px;
    font-weight: bold;
  }

  .form-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #00ccff;
    border-radius: 4px;
  }

  .form-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #00ccff;
    border-radius: 4px;
  }

  .form-button {
    width: 100%;
    padding: 10px;
    background-color: #00ccff;
    border-radius: 25px;
    border: none;
    color: #1d1d1b;
    font-weight: bold;
    cursor: pointer;
  }

 

  /* roofing section */
.roofing-section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 10rem;
    background-color: #fff;
    z-index: 0;
}

.roofingDiv{
    width: 50%;
}

.roofingDiv p{
    font-size: 18px;
}

.containerroofing {
    padding-top: 100px ;
    display: flex;
    background-color: #1d1d1b;
    width: 100%;
    position: relative;
    align-items: center;
  }

  .column {
    flex: 1;
    padding: 20px;
    color: #fff;
  }

  .row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
  }


  .row h3{
    font-size: 20px;
    font-weight: 700;
    color: #00ccff;
  }

  .row p{
    color: #d6e1ec;
    font-family: questrial,Sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
    font-style: normal;
    text-decoration: none;
    line-height: 1.3em;
    letter-spacing: -.29px;
  }

  .icon1 {
    width: 300px;  /* Adjust as needed */
    height: auto;  /* Maintains the image aspect ratio */
    display: block;  /* For better control */
    margin: auto;
    margin-bottom: 20px;
  }

  .imageDIV {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1d1d1b;
    background-image: url('/assets/bgc.png');  /* Add your image path here */
    background-repeat: no-repeat;  /* Prevents the image from repeating */
    background-position: center center;  /* Centers the background image */
    background-size: cover;  /* Makes the image cover the entire div */
    width: 100%;
    /* If you want to set a specific height, you can add it too, for example: */
    /* height: 500px; */
}



  .image {
    max-width: 35%;
    height: auto;
    animation: zoomInOut 6s ease-in-out infinite;
  }

  /* Define the animation */
@keyframes zoomInOut {
  0% {
    transform: scale(0.8); /* Starting scale (normal size) */
  }
  50% {
    transform: scale(1); /* Zoom in to 120% */
  }
  100% {
    transform: scale(0.8); /* Zoom back to normal size (100%) */
  }
}
  
  @media (max-width: 768px) {
    .logo {
        width: 100px;
        height: 50px;
      }
      .WelcomeDiv{
        width: 90%;
    }
    .roofingDiv{
        width: 90%;
    }
    .Heading{
        font-size: 40px;
    }
    .details {

        margin-left: 1%;
        margin-right: 1%;
    }
    .details h3{
        font-size: 18px;

    }
    
    .details h6{
        font-size: 14px;

    }
    .form {
        width: 300px;
      }
      .containerroofing {
        flex-direction: column;
      }
      .column {
        width: 100%;
      }
  }
/* Projects section */
.projects-section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10rem 2rem;
    background-color: #1d1d1b;
    color: #fff;
}


.projects-section .roofingDiv .Heading span{
    font-size: 44px;
}

/* "Automagic" image grid using no media queries */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 1rem;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    margin-bottom: 6rem;
}

@media (max-width: 30.625em) {
    .projects-section {
        padding: 6rem 1rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }
}






.project-image {
    height: 200px;
    width: 100%;
    object-fit: cover;
    transition: color 0.3s ease-out;
}



.project-title {
    font-size: 1.5rem;
    padding-top: 2rem ;
    color: #00ccff;
}

.project-titlep {
    font-size: 1.3rem;
    color: #c4c4c4;
}



.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 2px;
}

.btn-show-all {
    font-size: 2rem;
    background: #303841;
    transition: background 0.3s ease-out;
    color: white;
}

.btn-show-all:hover {
    background: #be3144;
}

.btn-show-all:hover > i {
    transform: translateX(2px);
}

.btn-show-all > i {
    margin-left: 10px;
    transform: translateX(0);
    transition: transform 0.3s ease-out;
}

.myDimension{
    font-size: x-large;
}

.dimensionIcon{
    font-size: -webkit-xxx-large;
}


.containerreview {
    display: flex;
    flex-direction: column;
  }

  .box {
    width: 100%;
    margin-bottom: 10px;
  }

  @media (min-width: 768px) {
    .containerreview {
      flex-direction: row;
    }

    
  }

.Review {
    padding: 1rem;
  }

  @media screen and (min-width: 650px) {
    .Review {
      padding: 48px;
      padding: 3rem;
    }
  }
  .Review-details {
    display: flex;
    align-items: center;
  }
  .Review-body p {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
    font-style: normal;
    text-decoration: none;
    line-height: 1.3em;
    letter-spacing: -.29px;
  }
  
  .Review-rating{
    font-size: 18px;
  }
  .Review-star {
    color: #1d1d1b;
  }

  .Review-body .Review-title + p {
    margin-top: 0;
  }
  .Review-title{
    color: #1d1d1b;
    font-size: 14px;
    font-weight: 700;
    text-transform: none;
    font-style: normal;
    text-decoration: none;
    line-height: 1.3em;
    letter-spacing: -.29px;
  }
.review-section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    padding: 10rem 2rem;
    color: #1d1d1b;
    background-color: #fff;
}

.booking-section{
    background-color: #1d1d1b;
    color: #fff;
    }
.containerbooking {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 150px;
    
  }

  .column2 {
    width: 50%;
    padding: 10px;
    box-sizing: border-box;
  }

  .column2.left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-top: 10px;
    padding: 40px;
  }

  .column2.right {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .headingbooking {
    font-size: 45px;
    font-weight: 300;
    text-transform: none;
    text-decoration: none;
    line-height: 1.2em;
    letter-spacing: 1px;
  }

  .button-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* Adjust the gap between the button and images as per your preference */
    padding: 10px;
  }
  
  .button-container a{
    color: #1d1d1b;
  }

  .button {
    border: none;
    background-color: #00ccff;
    font-size: 24px;
    border-radius: 25px;
    padding: 10px 60px 10px 60px;
  }
  
  .image-left{
    width: 80px; /* Adjust the width as per your image dimensions */
    height: 80px; /* Adjust the height as per your image dimensions */
  }
  .image-right {
    margin-top: 100px;
    width: 80px; /* Adjust the width as per your image dimensions */
    height: 120px; /* Adjust the height as per your image dimensions */
  }
  
  .svg-overlay {
    position: absolute;
    width: 150px;
    height: 100px;
    margin-left: -150px;
    margin-top: 10px;
    stroke-dasharray: 100%;
    animation: draw-line 6s linear infinite;
  }

  .svg-overlay1 {
    position: absolute;
    width: 500px;
    margin-top: 20px;
    margin-left: -350px;
    stroke-dasharray: 100%;
    animation: draw-line 6s linear infinite;
  }

  .svg-overlay2 {
    position: absolute;
    width: 600px;
    margin-left: -500px;
    stroke-dasharray: 100%;
    animation: draw-line 6s linear infinite;
  }

  .logobooking {
    max-width: 30%;
    height: auto;
    margin-bottom: 10px;
  }

  @media (max-width: 768px) {
    .containerbooking {
      flex-direction: column;
      align-items: center;
    }

    .column2 {
      width: 100%;
      padding: 0%;
    }

    .column2.left {
      align-items: center;
      padding: 0%;
    }

    .logobooking {
     margin: 20px;
      max-width: 60%;
    }
  }





a{
  text-decoration:none !important;
  min-width: fit-content;
  width: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
}

a, button{
  transition:0.5s;
}

a, p{
  font-size:14px;
}

h1, h2, h3, h4, h5, h6{
  color:#1d1d1d;
  font-weight:600;
}

a, button, input, textarea, select{
  outline:none !important;
}

fieldset{
  border:0;
}

.title{
  color:#1d1d1d;
}

.flex, .fixed_flex{
  display:flex;
}

.flex-content{
  width:100%;
  position:relative;
}

.padding_1x{
  padding:1rem;
}

.padding_2x{
  padding:2rem;
}

.padding_3x{
  padding:3rem;
}

.padding_4x{
  padding: 4rem;
  padding-bottom: 2rem;
}

.btn{
  padding:0.8rem 2rem;
  border-radius:5px;
  text-align:center;
  font-weight:500;
  text-transform:uppercase;
}

.btn_1{
  border:1px solid #1d1d1b;
  background-color:#1d1d1b;
  color:#00ccff;
}

.btn_1:hover{
  background-color:transparent;
  color:var(--primary);
}

.btn_2{
  border:1px solid var(--secondary);
  background-color:var(--secondary);
  color:var(--primary);
}

.btn_2:hover{
  border:1px solid var(--primary);
  background-color:var(--primary);
  color:var(--secondary);
}

@media (max-width:920px){
  .flex{
      flex-wrap:wrap;
  }
  
  .padding_1x, .padding_2x, .padding_3x, .padding_4x{
      padding:1rem;
  }

  .btn{
      padding:0.5rem 1rem;
  }
  
  a, p{
      font-size:12px;
  }
}
 
/***************************
               FOOTER
****************************/
footer{
  background-color:#1d1d1b;
  color:white;
}

footer h3{
  color:white;
  margin-bottom:1.5rem;
}

footer a{
  color:white;
  display:block;
  margin: 5px 0;
}

footer a:hover{
  color:white;
}

footer fieldset{
  padding:0;
}

footer fieldset input{
  background-color:#00ccff;
  border:0;
  color:white;
  padding:1rem;
}

footer fieldset .btn{
  background-color: #007997;
  border-radius:0;
  border:0;
  color: #000;
}

footer fieldset .btn_2:hover{
  background-color:#00ccff;
  border:0;
  color:white;
}

footer .flex:last-child{
  align-items:center;
}

footer .flex:last-child .flex-content:last-child{
  text-align:right;
}


footer .flex:last-child p{
  color:var(--white);
}

footer .flex:last-child a{
  width:40px;
  display:inline-block;
  background-color:#00ccff;
  color:white;
  padding:0.5rem;
  margin-right:3px;
  text-align:center;
}

footer .flex:last-child a:hover{
  background-color:#b9da01bb;
  color:white;
}

.footer-logo {
  max-width: 50%;
  display: block;
  margin-right: auto;
}

.contact-item2 {
  display: flex;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  align-items: center;
  gap: 10px; /* space between icon and text */
  margin: 15px 0; /* spacing between items */
}


.footer-description {
  margin-top: 1rem;
  color: var(--lite);
}
.social-icons {
  margin-top: 1rem;
  display: flex;
  justify-content: left;
}

.social-icons a {
  color: var(--lite);
  margin-right: 10px;
  font-size: 1.2rem;  /* Adjust icon size as needed */
  transition: color 0.3s ease;  /* Smooth color transition */
}

.social-icons a:last-child {
  margin-right: 0;
}

.social-icons a:hover {
  color: var(--white);  /* Color change on hover */
}
.link-grid {
  font-size: 14px;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns */
}

.copyright {
  font-size: medium;
  margin-top: 20px;  /* Optional: Adds space between the grid and the copyright text */
  text-align: center;
  border-top: 1px solid #00ccff;  /* Adjust the color as needed */
  padding-top: 10px;  /* Adds some space between the border and the text */
}


@media (max-width:1100px){
  footer .flex:first-child{
      flex-wrap:wrap;
  }
  
  footer .flex:first-child .flex-content{
      flex: 1 1 40%;
  }
}

@media (max-width:920px){
  footer .flex:last-child .flex-content:last-child{
      text-align:left;
  }
}

@media (max-width:320px){
  footer .flex:first-child .flex-content{
      flex:1 1 100%;
  }
}

@keyframes draw-line {
  0% {
    stroke-dashoffset: 70%;
    opacity: 1;
  }
  10% {
    stroke-dashoffset: 0%;
    
  }
  80% {
    stroke-dashoffset: 0%;
    opacity: 1;
  }
  85% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}



/* Marqee */
.marquee {
  --duration: 60s;
  --gap: 10px;
  background-color: #fff;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
  padding-top: 50px;
/*   transform: skewY(3deg); */
}


.marquee2 {
  --duration: 60s;
  --gap: 10px;
  background-color: #00ccff;
  display: flex;
  overflow: hidden;
  user-select: none;
  padding-top: 50px;
  padding-bottom: 50px;
/*   transform: skewY(3deg); */
}

.marquee__group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
  animation: scroll var(--duration) linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .marquee__group {
    animation-play-state: paused;
  }
}

.marquee__group img {
  max-width: clamp(10rem, 1rem + 28vmin, 20rem);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 1rem;
  width: 150px;
}


.marquee--reverse .marquee__group {
  animation-direction: reverse;
  animation-delay: calc(var(--duration) / -2);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

.contact-info {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.contact-item {
  text-align: center;
  margin: 10px;
}


.contact-item i {
  font-size: 24px;
  margin-bottom: 10px;
}

.contact-item a {
  text-decoration: none;
  color: #333;
  font-size: 22px;
}

.contact-item a:hover {
  color: #007bff;
}


/* General styles for the reservation card */
#reservation-card {
  position: absolute;
  top: 80px;
  right: 150px;
  background-color: #ffffffd8;
  padding: 20px;
  width: 400px;
  z-index: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

#reservation-card h2 {
  margin-top: 0;
  font-size: 24px;
  color: #333;
}

/* Reservation form styles */
#reservation-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

#reservation-form label {
  font-size: 16px;
  color: #333;
}

#reservation-form input,
#reservation-form textarea {
  width: 100%;
  padding: 8px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

#reservation-form button {
  background-color: #007bff;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

#reservation-form button:hover {
  background-color: #0056b3;
}


@media screen and (max-width: 768px) {
  #reservation-card {
    display: none;
  }
}



.ContactDiv {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
}

.containerContact {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.containerContact h1{
  font-size: 50px;
}

.form-containerContact {
  background-image: url(/assets/bg.png);
  background-repeat: repeat;
  background-position: center center;
  background-size: cover;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin: 0;
  padding-left: 200px;
  
}

.form-containerContact h1 {
  font-size: 2em;
  color: #333;
  margin-bottom: 0.7em;
  text-align: left;
}

.form-containerContact p {
  font-size: 0.6em;
  color: #666;
  text-align: left;
  margin-bottom: 2em;
  width: 50%;
}

.image-containerContact {
  flex: 1;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-containerContact img {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .ContactDiv {
    height: auto;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .containerContact {
      flex-direction: column;
  }
  .contactheading{
    font-size: 40px !important;
  }
  .form-containerContact {
    padding-left: 10px;
    align-items: center;
  }
  .form-containerContact p {
    width: 80%;
  }
  .image-containerContact {
      display: none;
  }
}

.contact-info2 {
  background-color: #1d1d1d; /* change as needed */
  padding: 15px;
  border-radius: 5px;
  margin: 10px 0;
  text-align: center; /* aligns text to center */
  
}

.contact-info2 p {
  color: white;
  font-size: 24px;
  margin: 5px 0;
  line-height: 1.5;
}

.contact-info2 a {
  font-size: 20px;
  color: #00ccff; /* change as needed */
  text-decoration: none;
}

.contact-info2 a:hover {
  color: #0077ff;
  text-decoration: underline;
}


ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

li {
  float: left;
  padding: 0 10px;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  left: 50%;  
  transform: translateX(-50%);
  min-width: 270px;
  background-color: white;
  border-radius: 20px;
  z-index: 4;
}

.dropdown-content a{
  color: #1d1d1d;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  color: #c2c2c2 !important;
  
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Change z-index of the entire navbar when hovering over the dropdown */
.dropdown:hover ~ nav {
  z-index: 10;
}

.services {
  display: flex;
  flex-wrap: wrap;
}

.service {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px;
}


.service img {
  width: 40%;
  height: auto;
}

.service .text {
  width: 60%;
  padding: 20px;
}

.service .text p{
  font-size: 1em;
}

.service .text h2{
  font-size: 2em;
}

.service.white {
  background-color: #fff;
  color: #1d1d1b;
}

.service.black {
  background-color: #1d1d1b;
  color: #fff;
}

.service.black h2{
  color: #fff;
}

/* Responsive design */
@media screen and (max-width: 768px) {
  .service {
    flex-direction: column;
  }
  .service img,
  .service .text {
    width: 100%;
  }
  
}
a.undecorated {
  font-size: 1em;
  text-decoration: none;
  color: inherit;
}



.btn,
.btn:focus,
.btn:active {
  position: relative;
  display: inline-block;
  font-family: "Ropa Sans", sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  color: #000;
  padding: 0 18px;
  border-radius: 0;
  border: none;
  background-color: #00ccff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}
.btn:before,
.btn:after {
  position: absolute;
  display: block;
  content: "";
  width: 30px;
  height: 30px;
  transform: rotate(45deg);
  z-index: 3;
}
.btn:hover:before,
.btn:hover:after {
  background-color: hsla(0, 0%, 100%, 1);
}
.btn:before {
  bottom: 4px;
  right: 4px;
  border-right: 3px solid hsla(0, 0%, 100%, 1);
}
.btn:after {
  top: 4px;
  left: 4px;
  border-left: 3px solid hsla(0, 0%, 100%, 1);
}
.btn .btn-text,
.btn:focus .btn-text,
.btn:active .btn-text {
  color: hsla(0, 0%, 100%, 1);
}
.btn .btn-text,
.btn:hover .btn-text {
  position: relative;
  display: block;
  line-height: 1;
  padding: 1.25rem 1.5rem;
  border-top: 3px solid hsla(0, 0%, 100%, 1);
  border-bottom: 3px solid hsla(0, 0%, 100%, 1);
  z-index: 3;
}
.btn:hover .btn-text {
  color: #1d1d1d;
  background-color: hsla(0, 0%, 100%, 1);
}
.btn .btn-text:before,
.btn .btn-text:after {
  display: block;
  position: absolute;
  content: "";
  width: 20px;
  height: calc(100% - 13px);
  z-index: 3;
}
.btn:hover .btn-text:before,
.btn:hover .btn-text:after {
  background-color: hsla(0, 0%, 100%, 1);
}
.btn .btn-text:before {
  left: -18px;
  bottom: -3px;
  border-bottom: 3px solid hsla(0, 0%, 100%, 1);
  border-left: 3px solid hsla(0, 0%, 100%, 1);
}
.btn .btn-text:after {
  top: -3px;
  right: -18px;
  border-top: 3px solid hsla(0, 0%, 100%, 1);
  border-right: 3px solid hsla(0, 0%, 100%, 1);
}

.btn1 {
  background-color: #00ccff;
  color: black;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 24px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 10px;
  border: none;
  transition: background-color 0.3s ease;
}

.btn1:hover {
  background-color: #008bad;
  color: #1d1d1d;
}


.containercontact {
  width: 80%;
  margin: auto;
  
  padding: 20px;
}
h1 {
  text-align: center;
}
.description {
  text-align: center;
  margin-bottom: 20px;
}
.description2 {
  font-size: 16px;
  text-align: left;
  margin-bottom: 20px;
}
.info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.info-item {
  flex: 1;
  margin: 10px;
  padding: 10px;
  text-align: center; 
}

.info-border{
  border: 1px solid #e0e0e0;
  line-height: 2.5;
}

.info-content {
  display: flex;
  align-items: center; 
  justify-content: center; 
  gap: 10px; 
}

.info-item img {
  height: 50px; /* Adjust this as necessary to change the image size */
  width: auto;
}

.info-item h3 {
  margin-top: 10px;
  text-align: center;
}

.line {
  height: 5px;
  border-radius: 20px;
  background: #333;
  margin-bottom: 20px;
}

@media (max-width: 768px) { 
  .info {
    flex-direction: column; /* Stack .info-item elements vertically on smaller screens */
  }

  .info-item {
    margin-bottom: 20px; /* Add bottom margin for stacked items */
  }

  /* Adjustments to other styles can be added here as needed */
}


.containerabout {
  display: flex;
  overflow: hidden; 
}

.image-containerabout, .description-containerabout {
  padding: 10px;
}

.image-containerabout {
  flex: 0 0 40%; /* Set the width of this container to 40% of its parent */
  display: flex;
  justify-content: flex-end;
}

.description-containerabout {
  flex: 1; /* This allows the description container to take up the remaining space */
}

.image-containerabout img {
  max-width: 300px; /* It's better to set this to 100% so that the image will adjust within its container's width */
  height: auto;
  margin-right: 50px;
}

/* Media query for screens smaller than 768px */
@media (max-width: 768px) {
  .containerabout {
    flex-direction: column; /* On small screens, stack them vertically */
  }
  
  .image-containerabout, .description-containerabout {
    flex: 1 0 100%; /* Allow them to take up the full width on small screens */
  }
  .image-containerabout img {
    margin-right: 0px;
  }
}


.team-section {
  /* No need to set flex here if you only want the members to be side by side */
  background-color: #1d1d1d;
  padding: 40px;
  text-align: center;  /* Will center the heading */
}

/* Use flexbox only for the team members so they're side by side on desktop */
.team-members {
  display: flex;
  justify-content: space-between;
}

/* ... (rest of the styles remain unchanged) ... */


.team-section h2 {
  text-align: center;
  margin-bottom: 20px;  /* Adds some space below the heading */
  color: #fff;
}


.team-member {
  flex: 1;
  text-align: center;
  margin: 10px;
  color: #ffffff;
  display: flex;           /* Adding flex for vertical alignment of content */
  flex-direction: column;  /* Ensures content is stacked vertically */
  align-items: center;     /* Centers the content horizontally */
}

.team-member img {
  width: 300px;            /* Setting the width */
  height: auto;
  margin-bottom: 10px;
}

.team-member h3, .team-member p {
  margin: 10px 0;
  color: #fff;
}

.team-member button {
  background-color: #4CAF50;  /* Giving a color to the button for better visibility */
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
}

.team-member button:hover {
  background-color: #45a049;  /* A darker shade for hover effect on the button */
}

/* ... (previous styles) ... */

.btn-link {
  background-color: #00ccff;  
  color: #000;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none; /* Removes the default underline from anchor tags */
  display: inline-block; /* Allows you to apply padding and other block properties */
  cursor: pointer;
  text-align: center;    /* Centers the text within the "button" */
}

.btn-link:hover {
  background-color: #008bad;
  color: #fff;
}


@media (max-width: 768px) {
  .team-members {
    flex-direction: column;  /* Stack team members vertically */
    align-items: center;     /* Center the team members horizontally */
  }

  .team-member {
    margin-bottom: 20px;     /* Adds space between stacked team members */
    width: 100%;             /* Make the team members take the full width */
    max-width: 400px;        /* You can set a max-width to prevent them from becoming too wide */
  }
}

.whatsapp-button {
  display: block;
  position: fixed;
  right: 20px;
  bottom: 20px;
  text-decoration: none;
  transition: transform 0.3s ease, opacity 0.3s ease;  /* Transition for smooth scaling and opacity change */
  z-index: 11;

}

.whatsapp-button img {
  width: 70px;  
  height: 70px;
}

.whatsapp-button:hover {
  opacity: 0.9;
  transform: scale(1.1);  /* Scales the size up to 110% of original on hover */
}

/* Styling for mobile: centered at the bottom */
@media (max-width: 768px) {

  .whatsapp-button img {
    width: 50px;  
    height: 50px;
  }
  /* Reset the scale effect for mobile (optional) */
  .whatsapp-button:hover {
      transform: translateX(-50%) scale(1.1);
  }
}





.booking-content {
  display: flex;               /* Flexbox layout */
  justify-content: center;    /* Center the items horizontally */
  align-items: center;        /* Align the items vertically in the center */
  gap: 20px;                  /* Space between the flex children */
}

.booking-image {
  max-height: 400px;          /* Or any value as per your requirement */
  width: auto;
  flex-shrink: 0;             /* Prevents the images from shrinking */
}


@media (max-width: 768px) {
  .booking-image {
    display: none;
  }
}
