/* Add styles here */

/* Existing CSS */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: background-color 0.3s, color 0.3s;
}

header.transparent {
    background-color: transparent;
    color: white;
}

header.solid {
    background-color: white;
    color: black;
}

.nav-links a {
    color: inherit; /* Allow text color to inherit from header */
}

/* Add some padding to the body to avoid content being overlapped by the fixed header */
body {
    padding-top: 60px; /* Adjust based on header height */
}

/* Existing styles for the hero section */
.hero {
    margin-top: -60px; /* To ensure the hero is below the fixed header */
    position: relative;
    height: 400px;
    overflow: hidden;
}

/* Other existing styles... */


.wsrtngh{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1000px;
    margin:0 auto;
}
.nav-links {
    list-style: none;
    display: flex;
    text-decoration:none;
}

.nav-links li {
    margin-left: 20px;
     
}

.nav-links li a {
    list-style: none;
    text-decoration:none
  
}



.slider {
    height: 100%;
    width: 100%;
    position: relative;
}

.slide {
    display: none;
    height: 100%;
    width: 100%;
    position: absolute;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide.active {
    display: block;
}

.caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 8px;
}

.caption h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.caption p {
    margin-bottom: 15px;
}

.button-container {
    display: flex;
    justify-content: center;
}

.btn {
    background-color: #ff5722; /* Button color */
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 0 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #e64a19; /* Darker shade on hover */
}

/* Responsive Styles for Buttons */
@media (max-width: 768px) {
    .caption h1 {
        font-size: 20px; /* Smaller title for smaller screens */
    }
    .caption p {
        font-size: 14px; /* Smaller description */
    }
    .btn {
        padding: 8px 16px; /* Smaller button padding */
    }
}

.controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.controls button {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 768px) {
    header {
        padding: 10px;
    }

    nav {
        flex-direction: column;
    }

    .nav-links {
        flex-direction: column;
        margin-top: 10px;
    }

    .nav-links li {
        margin-left: 0;
        margin-top: 5px;
    }

    .hero {
        height: 300px; /* Reduce height for smaller screens */
    }

    .caption {
        font-size: 14px; /* Smaller caption text */
    }
}

@media (max-width: 480px) {
    .controls button {
        padding: 5px; /* Smaller button padding */
    }

    .caption {
        font-size: 12px; /* Even smaller caption text */
    }
}/* Existing CSS */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: background-color 0.3s, color 0.3s;
}

header.transparent {
    background-color: transparent;
    color: white;
}

header.solid {
    background-color: white;
    color: black;
}

.nav-links a {
    color: inherit; /* Allow text color to inherit from header */
}

/* Add some padding to the body to avoid content being overlapped by the fixed header */
body {
    padding-top: 60px; /* Adjust based on header height */
}

/* Existing styles for the hero section */
.hero {
    margin-top: -60px; /* To ensure the hero is below the fixed header */
    position: relative;
    height: 400px;
    overflow: hidden;
}

/* Other existing styles... */

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    text-decoration:none;
}

.nav-links li {
    margin-left: 20px;
     
}

.nav-links li a {
    list-style: none;
    text-decoration:none
  
}



.slider {
    height: 100%;
    width: 100%;
    position: relative;
}

.slide {
    display: none;
    height: 100%;
    width: 100%;
    position: absolute;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide.active {
    display: block;
}

.caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 8px;
}

.caption h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.caption p {
    margin-bottom: 15px;
}

.button-container {
    display: flex;
    justify-content: center;
}

.btn {
    background-color: #ff5722; /* Button color */
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 0 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #e64a19; /* Darker shade on hover */
}

/* Responsive Styles for Buttons */
@media (max-width: 768px) {
    .caption h1 {
        font-size: 20px; /* Smaller title for smaller screens */
    }
    .caption p {
        font-size: 14px; /* Smaller description */
    }
    .btn {
        padding: 8px 16px; /* Smaller button padding */
    }
}

.controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.controls button {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 768px) {
    header {
        padding: 10px;
    }

    nav {
        flex-direction: column;
    }

    .nav-links {
        flex-direction: column;
        margin-top: 10px;
    }

    .nav-links li {
        margin-left: 0;
        margin-top: 5px;
    }

    .hero {
        height: 300px; /* Reduce height for smaller screens */
    }

    .caption {
        font-size: 14px; /* Smaller caption text */
    }
}

@media (max-width: 480px) {
    .controls button {
        padding: 5px; /* Smaller button padding */
    }

    .caption {
        font-size: 12px; /* Even smaller caption text */
    }
}

.back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
  }
  
  .back-to-top:hover {
    background: #f54242;
    color: #fff;
  }
  
  .back-to-top.active {
    visibility: visible;
    opacity: 1;
  }
  
  .whatsapp-sticky {
    position: fixed;
    right: 15px;
    bottom: 135px;
    background: transparent;
    width: 45px;
    height: 45px;
    border-radius: 50px;
    z-index: 10;
  }
  
  
  .telephone-sticky {
    position: fixed;
    right: 15px;
    bottom: 80px;
    background: transparent;
    width: 45px;
    height: 45px;
    border-radius: 50px;
    z-index: 10;
  }
  
  .instagram-sticky {
    position: fixed;
    right: 15px;
    bottom: 25px;
    background: transparent;
    width: 45px;
    height: 45px;
    border-radius: 50px;
    z-index: 10;
  
  }
  
  