* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  font-family: "Roboto", sans-serif;
  height: 100%;
  overflow-x: hidden;
}

header {
  margin-top: 0;
  background-color: #ffffff;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  z-index: 1001;
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.571) 0px 0px 5px;
}


header a {
  color: #ff0000;
  font-weight: bold;
  font-size: 25px;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: larger;
}

.hamburger {
  width: 30px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 3px;
  background-color: #ff0000;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

.sidebar {
  height: 100%;
  width: 250px;
  position: fixed;
  top: 0;
  left: -250px;
  background-color: #d2d2d2;
  padding-top: 70px;
  transition: left 0.3s ease;
  z-index: 1000;
}

.sidebar ul {
  list-style-type: none;
  padding: 0;
}

.sidebar ul li {
  padding: 10px 25px;
  border-bottom: 1px solid #b5c2d0;
}

.sidebar ul li a {
  color: #cf1e1e;
  text-decoration: none;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.sidebar ul li a:hover {
  color: #000000;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 999;
  transition: opacity 0.3s ease;
}

.show-sidebar {
  left: 0;
}

.show-overlay {
  display: block;
}

.searchbar {
  font-size: 15px;
  padding-left: 10px;
  padding-right: 20px;
  width: auto;
  height: 35px;
  border-radius: 5px;
  border-color: #a21f1f65;
  border: 1px solid #c0c0c0;
  outline: 0 !important;
}

/* call to action */
.tada {
  margin-right: 10px;
  font-size: 1rem;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  animation: tada 1.5s ease-in-out infinite;
}
a{
  text-decoration: none;
}

@keyframes tada {

  0%,
  100% {
    transform: scale(1);
  }

  10%,
  20% {
    transform: scale(0.9) rotate(-3deg);
  }

  30%,
  50%,
  70%,
  90% {
    transform: scale(1.1) rotate(3deg);
  }

  40%,
  60%,
  80% {
    transform: scale(1.1) rotate(-3deg);
  }
}

/* banner slider */

.slide-div {
  display: flex;
  width: 100%;
  max-height: 500px;
  background-color: #fffefe;

  margin-top: 70px;
  margin-bottom: 10px;
  justify-content: space-around;
  align-items: center;
  background: linear-gradient(to right, rgba(152, 26, 26, 0.197), rgba(255, 255, 255, 0.951), rgba(253, 253, 253, 0.126), rgba(227, 227, 227, 0.23));  
}

.slideshow-container {
  position: relative;
 
  align-items: center;
  width: 100%;
  height: 70%;
  overflow: hidden;
  border-radius: 10px;
  background-color: #007bff00;

}

.slides-wrapper {
  display: flex;
  align-items: center;
  transition: transform 1s ease-in-out;
}

.slide {
  align-items: center;
  min-width: 100%;
  height: 100%;
}

img {

  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Left-aligned Text Block */
.text-container {
  position: relative;
  margin-left: 60px;
  width: 100%;
  color: rgb(75, 75, 75);
  font-size: 16px;
  padding: 20px;
  border-radius: 10px;
}
#text-title{
  font-size: 25px;
  margin-bottom: 3px;
  margin-top: -15px;
  margin-left: 20px;
  color: rgb(255, 0, 0);
  text-align: left;
}
#text-content{
    font-size: 20px;
    color: #848383;
    margin-left: 20px;
}

.text-container ul {
  list-style-type: none;
  margin: 5px 0;
}

.text-container li {
  margin: 2px 0;
  font-size: 15px;
}
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 20px;
  height: 50px;
  font-weight: normal;
  cursor: pointer;
  border: none;
  
  background-color: #7c858600;
}

.prev {
  left: -30px;
}

.next {
  right: 3%;
}
.prev:hover, .next:hover {
    
    background-color: #d2d3d36c;
}



/* Container for the recent views */
.recent-container {
  display: flex; /* Use flexbox for layout */
  flex-wrap: nowrap; /* Prevent wrapping of items */
  overflow-x: auto; /* Allow horizontal scrolling */
  gap: 5px; /* Add space between items */
  padding: 5px; /* Padding around the container */
  scroll-snap-type: x mandatory; /* Optional: For smooth scrolling snapping */
  scrollbar-width: none;
  margin-top: -20px;
}

/* Each view block */
.view {
  position: relative;
  background-color: #ffffff;
  flex: 0 0 auto; /* Prevent flex items from growing/shrinking */
  width: 150px; /* Set a fixed width for each view */
  display: flex;
  justify-content: center; /* Center the content inside each view */
  align-items: center; /* Center the content vertically */
  border: 2px solid #ddd; /* Add a light border around the views */
  border-radius: 8px; /* Rounded corners */
  padding: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow effect */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover transition */
}

/* Hover effect for the view */
.view:hover {
  transform: translateY(-2px); /* Slight lift effect on hover */
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2); /* Increase shadow on hover */
}

/* Inside the view, styling the image */
.view-items img {
  width: 100%; /* Ensure the image takes full width of its container */
  height: 135px; /* Maintain aspect ratio */
  border-radius: 6px; /* Round the image corners */
}

/* booking container */
.booking-container {
  display: flex;

  margin:auto;
  width: 85%;
  height: 100px;
  justify-content: space-evenly;
  align-items: center;
  background-color: #000000;
  border-radius: 10px;
  font-size: 40px;
  color: rgba(255, 0, 0, 0.748);
}

.booking h3{
  font-size: 20px;
  color: #dddddd;
}
.booking-img img {
  max-width: 300px;
  height: 200px;
  border-radius: 8px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

}
.booking button{
    border-radius: 3px;
    padding: 5px;
    border: none;
    cursor: pointer;
    background-color: red;
    color: white;
    font-weight: bold;
}
.heading{
  color: red;
  width: 100%;
  padding: 10px;
  margin-top:10px;
  background: linear-gradient(to bottom, rgba(152, 26, 26, 0.197), rgba(255, 255, 255, 0.951), rgba(101, 175, 109, 0.126), rgba(18, 154, 43, 0.23));  

}
.heading h1{
  font-size: 20px;
}
.heading small {
    display: block; 
    font-size: 0.7rem; 
    line-height: 1.2; 
    margin-top: 5px; 
    color: #646464;
  }



/* brand Container */
.h2{
text-align: center;
color: rgb(255, 255, 255);
font-size: 15px;
width: 100%;
margin: 5px 0 5px 0;
background-color: #515b5c;
}
.top-brand {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-left: 10px;
  
}

.brand {
  max-width: 150px;
  height: 80px;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* why choose container */
.why-choose{
  display: flex;
  margin: 10px;
  margin-left: 0;
  margin-right: 0;
  background: linear-gradient(to bottom, rgba(186, 186, 186, 0.121), rgba(255, 255, 255, 0.951), rgb(255, 255, 255), rgba(135, 133, 133, 0.082));  
}
.trulink h3{
  color: red;
  text-align: center;
  font-weight: bold;
 
}
.trulink{
  text-align: left;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 20px;
  font-weight: bolder;
  margin-top: 10px;
  margin-left: 10px;
  color: #797979;
  background-color:  rgba(0, 0, 0, 0);
}

/* services type */

.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
 
  background: linear-gradient(to bottom, rgba(152, 26, 26, 0.197), rgba(255, 255, 255, 0.951), rgba(101, 175, 109, 0.126), rgba(18, 154, 43, 0.23));  

}
@media  screen and (min-width: 769px) {
  .services {
    display: flex;
    flex-wrap: nowrap;
    justify-content: left;
    overflow: scroll;
    scrollbar-width: none;
    

  }
  .s-type{
    min-width: 350px;
    
  }
}

/* Each service box */
.s-type {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin: 10px;
  width: 300px;
  padding: 20px;
  display: flex;
  align-items: center; /* Align items vertically centered */
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
}

.s-type:hover {
  transform: scale(1.02);
  background-color: #fff;
}

/* Icon styling */
.icone {
  font-size: 0px;
  color: #007bff;
  margin-right: 20px; /* Adds space between the icon and text */
}

/* Description section */
.discriptions {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

h5 {
  font-size: 18px;
  margin-bottom: 10px;
  color: red; /* Apply red color to the title */
}

/* Aligning the text */
.s-type .discriptions {
  text-align: left;
}

/* Optional: Adding a hover effect on the descriptions */
.s-type:hover .discriptions {
  color: #555;
}


.area {
  display: flex; /* Use flexbox for layout */
  flex-wrap: nowrap; /* Prevent wrapping of items */
  overflow-x: auto; /* Allow horizontal scrolling */
  gap: 5px; /* Add space between items */
  padding: 5px; /* Padding around the container */
  scroll-snap-type: x mandatory; /* Optional: For smooth scrolling snapping */
  scrollbar-width: none;
  background-color: #555;
}

.area-name {
  min-width: 90px;
  min-height: 90px;
  background-color: #ffffff;
  margin: 10px;
  display: flex;
  justify-content: center; /* Centering the icon horizontally */
  align-items: center; /* Centering the icon vertically */
  border-radius: 8px;
  font-size: 12px;
  color: rgba(255, 0, 76, 0.8);
  font-weight: bold;
  cursor: pointer;
}

.area-icone {
  width: 60px;  /* Adjust the width of the icon */
  height: 60px; /* Adjust the height of the icon */
  background-color: #cacaca00;  /* Example icon color */
  border-radius: 50%; /* Circle shape */
  text-align: center;

}
.area-icone i{
  color: rgba(255, 0, 76, 0.8);
  font-size: 50px;
}

.area-name:hover{
  background-color: #5ac8d0;
  transform: scale(0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.571);
}
/* footer Styling */
.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 30px;
  background: linear-gradient(to bottom, rgba(169, 62, 62, 0.1), rgba(255, 255, 255, 0.951), rgba(124, 174, 129, 0.126), rgba(73, 166, 90, 0.084));
  font-family: Arial, sans-serif;
}

.service {
  flex: 1;
  margin: 5px;
  min-width: 160px;
  
 
}

.service ul {
  list-style-type: none;
  width: 100%;
}
.service address{
  width: 100%;
}

.service p {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 20px;
  color: rgb(255, 0, 0);
}

.service li {
  margin: 5px;
  font-size: 14px;
  font-weight: bold;
  text-align: left;
  color: #20202099;
  
}

.service a {
  text-decoration: none;
  color: #333;
}

.service li:hover {
  color: #ff0000;
}


/* Icons Style */
.service i {
  margin-right: 10px;
  color: red;
}

/* Join Us Form */
#subscribe {
  display: flex;
  align-items: center;
  justify-content: left;
  margin-top: 10px;
  background-color: #67676700;
}

#subscribe input[type="tel"] {
  padding: 8px;
  width: 60%;
  margin-right: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

#subscribe button {
  padding: 10px 20px;
  background-color: #ff0000;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#subscribe button:hover {
  background-color: #c10b0b;
}

.copyright{
  background-color: #bebebeaf;
  color: rgb(67, 65, 65);
  text-align: center;
  font-size: 15px;
  margin-top: 5px;
  margin-bottom: 5px;
}







