@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
*{
	margin:0;
	padding:0;
	box-sizing:border-box;
    text-decoration:none;
	list-style:none;
    font-family: "Lato", serif;
    font-optical-sizing: auto;
}





 .navigation {
     height: 100px;
     background: #fff;
     position: fixed;
     z-index: 9999;
     width: 100%;
}
 .brand {
     /*! position: absolute; */
     padding-left: 20px;
     float: left;
     line-height: 55px;
     text-transform: uppercase;
     font-size: 1.4em;
     padding: 20px 20px;
     padding-bottom: 0;
}
 .brand a, .brand a:visited {
     color: #ffffff;
     text-decoration: none;
}
 .nav-container {
     max-width: 1200px;
     margin: 0 auto;
}
 nav {
     float: right;
}
 nav ul {
     list-style: none;
     margin: 0;
     padding: 0;
     margin-right: 10px;
}
 nav ul li {
     float: left;
     position: relative;
}
 nav ul li a,nav ul li a:visited {
     display: block;
     padding: 25px 20px;
     line-height: 55px;
     color: #090909;
     background: #262626 ;
     text-decoration: none;
}
 nav ul li a{
     background: transparent;
     /*! color: #FFF; */
     font-size: 1.2rem;
     /*! font-weight: 200; */
    position: relative;
    transition: 0.3s ease;
}
nav ul li a:before{
  content: "";
  width: 20px;
  height: 1px;
  position: absolute;
opacity: 0;
  transition: 0.3s ease;
 top: 50%;
  left: 40%;
  background-color: #333;
}

nav ul li a:hover::before{
  opacity: 1;
  top: 65%;
}
 nav ul li a:hover, nav ul li a:visited:hover {
     /*! background: #2581DC; */
     color: #737070;
}
 .navbar-dropdown li a{
     background: #2581DC;
}
 nav ul li a:not(:only-child):after, nav ul li a:visited:not(:only-child):after {
     padding-left: 4px;
     content: ' \025BE';
}
 nav ul li ul li {
     min-width: 190px;
}
 nav ul li ul li a {
     padding: 15px;
     line-height: 20px;
}
 .navbar-dropdown {
     position: absolute;
     display: none;
     z-index: 1;
     background: #fff;
     box-shadow: 0 0 35px 0 rgba(0,0,0,0.25);
}
/* Mobile navigation */
 .nav-mobile {
     display: none;
     position: absolute;
     top: 20px;
     right: 20px;
     background: #0000;
     height: 55px;
     width: 70px;
}


















.slider-container {
  width: 90%;
  position: relative;
  overflow: hidden;
  transition: 0.4s ease;
  display: block;
  /*! cursor: ; */
  margin: 0px auto;
}

.slider-container:hover .slide-image{
   -ms-transform: scale(1.1); /* IE 9 */
  -webkit-transform: scale(1.1); /* Safari 3-8 */
  transform: scale(1.1);
}
.slide {
  width: 100%;
  display: none;
}

.slide-image {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  filter: brightness(0.6);
   transition: 0.4s ease;
}

.slide-content {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  /*! padding: 1rem; */
  background: #182d3542;
}
.slide-title {
  width: 100%;
  max-width: 50rem;
  color: white;
  font-size: 2rem;
  font-weight: 500;
  text-transform: capitalize;
  padding: 0 10px;
}
.slide-desc {
  width: 100%;
  max-width: 50rem;
  color: lightgray;
  font-size: 1.1rem;
  /*! font-weight: 400; */
}
.slide-btn {
  color: white;
  background-color: #fff0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  font-weight: 300;
  margin-top: 1rem;
  border-radius: 0.1rem;
  padding: 1rem 2rem;
  text-transform: capitalize;
  transition: ease 0.3s;
  border: 1px solid aliceblue;
}
.slide-btn:hover {
  gap: 1rem;
}

.slide-number-container {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 5;
  font-size: 1.5rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  color: rgba(211, 211, 211, 0.788);
  letter-spacing: 0.2rem;
}
.slide-number-container hr {
  width: 3rem;
  transform: rotate(130deg);
  border-color: rgba(211, 211, 211, 0.788);
}

.slider-nav {
  position: absolute;
  bottom: 35%;
  right: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /*! gap: 1043%; */
  width: 100%;
}
.slider-nav-btn {
  cursor: pointer;
  background-color: rgba(211, 211, 211, 0.226);
  color: white;
  font-size: 1.5rem;
  padding: 0.5rem;
  border-radius: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease 0.3s;
}
.slider-nav-btn:hover {
  background-color: rgba(227, 227, 227, 0.6);
  color: black;
}


.fade {
  animation-name: fade;
  animation-duration: 1s;
}
@keyframes fade {
  from {
    opacity: 0.8;
  }
  to {
    opacity: 1;
  }
}


















.about-us-section {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10rem;
}
.about-container {
  display: flex;
  /*! max-width: 1300px; */
  width: 90%;
  align-items: center;
  justify-content: space-around;
}
.about-text {
  flex: 1;
  padding: 0 40px;
}
.about-text h1 {
  font-size: 4rem;
  font-weight: normal;
  margin-bottom: 20px;
  position: relative;
  color: #704a3b;
}
.about-text h1:before{
  content:"";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  background: #704a3b;
  height: 3px;
}
.about-text h4{
  font-size: 2.7rem;
  font-weight: 400;
  margin-bottom: 10px;
}
.about-text p {
  font-size: 21px;
  line-height: 1.6;
  font-weight: 400;
}
.about-text a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  display: inline-block;
  margin-top: 10px;
}
.about-text a::before {
  content: "\25A0";
  margin-right: 5px;
}
.about-image {
  flex: 1;
  justify-content: center;
  display: flex;
}
.about-image img {
  width: 100%;
  border-radius: 5px;
  max-width: 700px;
  position: relative;
  transition: 0.4s ease;
  z-index: -1;
}
.img-section{
  overflow: hidden;
  transition: 0.4s ease;
}

.img-section:hover .about-img{
  -ms-transform: scale(1.1); /* IE 9 */
  -webkit-transform: scale(1.1); /* Safari 3-8 */
  transform: scale(1.1);
}
.about-time {
  display: flex;
  gap: 20px;
  font-size: 19px;
  margin-top: 2rem;
  margin-bottom: 10px;
}


.services-section{
  width: 100%;
  display: flex;
  justify-content: center;
}


.services {
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: auto;
  max-width: 1300px;
  width: 90%;
  flex-wrap: wrap;
  gap: 50px;
}
.service{
  width: 100%;
  max-width: 500px;
  height: 350px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 5px -4px black;
  justify-content: space-between;
}

.service img {
  width: 100%;
  max-width: 500px;
  position: relative;
  transition: 0.4s ease;
  z-index: -1;
  height: 220px;
  object-fit: cover;
}


.services-title{
  text-align: center;
  margin: 5rem 0;
}

.services-title h2{
  font-size: 3.5rem;
  margin-bottom: 10px;
  font-weight: 500;
}

.services-title p{
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 300;
}





.services-sct{
  margin-top: 10rem;
}





























/*footer ----------------------------------------------------------------*/
/* Footer Styling */
footer {

  color: #000;
  padding: 50px 0 20px;
  font-family: Arial, sans-serif;
  margin-top: 10rem;
  box-shadow: 0 -10px 5px -10px #00000029;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-section h3 {
  color: #000;
  font-size: 1.2em;
  margin-bottom: 20px;
  position: relative;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 30px;
  height: 2px;
  background-color: #fed2b9;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
  text-align: center;
}

.footer-section ul li a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #4d4d4d;
}

.footer-section ul li a i {
  margin-right: 5px;
  color: #fed2b9;
}

.social-links {
  margin-bottom: 20px;
}

.social-links a {
  display: inline-block;
  width: 55px;
  height: 55px;
  background-color: #333;
  color: #fff;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: #fff;
  transform: translateY(-3px);
  color: #000;
}



.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #333;
  position: relative;
}







.footer {
backdrop-filter: blur(50px);
background: #000000d4;
}


.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}