body,h1,h2,h3,h4,h5,h6 {font-family: "Lato", sans-serif;}
body, html {
  height: 100%;
  color: #454C54;
  line-height: 1.8;
  z-index: 9999;

}



/* Create a Parallax Effect */
.bgimg-1, .bgimg-2, .bgimg-3 {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -333;

}

/* Second image (Portfolio) */
.bgimg-2 {
  background-image: url('pics/bg22.jpg');
  min-height: 400px;
}


.w3-wide {letter-spacing: 10px;}
.w3-hover-opacity {cursor: pointer;}

/* Turn off parallax scrolling for tablets and phones */
@media only screen and (max-device-width: 1600px) {
  .bgimg-1, .bgimg-2, .bgimg-3 {
    background-attachment: scroll;
    min-height: 400px;
  }
}



/* navbar style*/

* {
  font-family: "Lato", sans-serif;

}

.navbar{
    z-index: -333;
    position: fixed;

}

.navbar .navbar-brand {
  font-size: 30px;
  color: white;
  background: #1B2E3C;
}
.navbar .nav-item {
  padding: 10px 20px;
  color: white;
  background: #1B2E3C;
}
.navbar .nav-link {
  font-size: 20px;
  margin-left: 10px;
  color: white;
  background: #1B2E3C;
}
.fa-bars {
  color: white;
  font-size: 30px;
  background: #1B2E3C;
}

.navbar-brand {
  display: inline-block;
  padding: 10px;
}

.navbar-brand img {
  width: 100px; /* Adjust the width as per your logo's size */
  height: auto;
}



/* slideshow style */

.slider {
  width: 100%;
  height: 600px; /* Adjust the height as per your requirements */
  overflow: hidden;
  position: relative; 
  background-color: #1B2E3C;
  
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide.active {
  opacity: 1;
}


.slide-text {
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
}

.slide-text h2 {
  font-size: 45px;
  margin-bottom: 10px;
}

.slide-text p {
  font-size: 60px;
}

/* Mobile-friendly styles */
@media (max-width: 750px) {
  .slider{
    height: 300px;
  }

  .slide-text p {
  font-size: 35px;
}

  .w3-third {
    width: 33.3333%;
    float: left;
    padding: 0 8px;
    box-sizing: border-box;
  }
}


.w3-row-padding {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: -10px;
  padding-left: 10%;
  padding-right: 10%;
}

.hidden {
  display: none;
}







/*footer*/

footer {
  background-color:#454C54;
  padding: 20px;
  width: 100%;
}

.containerf {
  max-width: 1200px;
  margin: 0 auto;
}

.follow-us {
  text-align: center;
  color: #F3E3E2;
}

.follow-us h3 {
  margin-bottom: 10px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: #555;
  font-size: 40px;
  color: white
}

.social-icons a:hover {
  color: #F3E3E2;
}



.container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
}

.left-div, .right-div {
  padding: 10px;
}

.left-div {
  background-color: transparent;
}

.right-div {
  background-color: transparent;
}

@media (max-width: 768px) {
  .container {
    grid-template-columns: 1fr;
  }
}

/*side menue side*/
.floating-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

.floating-button button {

  border-radius: 50%; /* Make the button circular */

  width: 75px;

  height: 75px;

}


.floating-button2 {
  position: fixed;
  bottom: 120px;
  right: 30px;
  z-index: 999;
}

.floating-button2 button {

  border-radius: 50%; /* Make the button circular */
  width: 75px;
  height: 75px;

}

@media (max-width: 768px) {
  .floating-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.floating-button button {

  border-radius: 50%; /* Make the button circular */

  width: 50px;

  height: 50px;

}


.floating-button2 {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 999;
}

.floating-button2 button {

  border-radius: 50%; /* Make the button circular */
  width: 50px;
  height: 50px;

}
}

.menus {
  position: fixed;
  right: -600px;
  top: 0;
  width: 600px;
  height: 100%;
  background-color: #1B2E3C;;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  transition: right 0.3s;
}

.menus.open {
  right: 0;
}

.close-btn {
  position: center;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

@media (max-width: 1000px) {
 .menus {
  position: fixed;
  right:-100%;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #1B2E3C;;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  transition: right 0.3s;
}

}



.horizontal-line {
  border: none;
  border-top: 2px solid grey; /* Adjust the line thickness and color as needed */
  margin: 10px 0; /* Adjust the margin as needed */
  padding-bottom: 20px;
}


/*imahe bigger*/
img {
  transition: transform 0.3s; /* Transition effect for smooth scaling */
}

img.bigger {
  transform: scale(1.5); /* Increase the scale to make the image bigger */
  position: center;
}


@media (max-width: 750px) {
  img.bigger {
    transform: scale(2.5); /* Increase the scale to make the image bigger */
    padding-left: auto;
    padding-right: auto;
  }
}

#w3-row-hidden {
  display: none;
}

.show-more-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

.line {
  flex-grow: 1;
  height: 1px;
  background-color: #000;
  margin: 0 10px;
}

#showMoreBtn {
  border: none;
  background-color: transparent;
  padding: 0;
  font-size: inherit;
  cursor: pointer;
  font-size: 20px;
}


/*video style*/

  .video-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    grid-gap: 20px;
    padding-left:  10%;
    padding-right: 10%;
  }
  
  .video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .video video {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
  
  @media screen and (max-width: 768px) {
    /* Adjust for mobile screens */
    .video-container {
      grid-template-columns: 1fr;
    }
  }

/* Dialogue box styles */
.dialogue-box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #f8f8f8;
  border-radius: 6px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  padding: 20px;
  text-align: center;
}

.dialogue-box h3 {
  font-size: 24px;
  margin-top: 0;
}

.dialogue-box p {
  font-size: 18px;
  margin-bottom: 0;
}

.success-dialogue {
  background-color: #5cb85c;
  color: #fff;
}

.failure-dialogue {
  background-color: #d9534f;
  color: #fff;
}

.close-button {
  background-color: #454C54;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 10px 16px;
  font-size: 16px;
  cursor: pointer;
}




.transparent-box {
  background-color: rgba(27, 46, 60, 0.8); /* Transparent black color */
  color: #fff; /* Text color */
  padding-left:  30px; 
  padding-right: 30px;/* Padding around the text */
  display: inline; /* Display as an inline element */

}





/* services*/



.serv-div {
  font-family: Arial, sans-serif;
  margin: 0;
  padding-top: : 10px;

  box-sizing: border-box;
}

.containers {
  display: grid;
  grid-template-columns: repeat(3, 2fr);
  grid-gap: 20px;
  padding-left: 10%;
  padding-right: 10%;
  padding-top: 64PX;
  padding-bottom: 64PX;
}

.column {
  background-color: #f2f2f2;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.picture {
  width: 40%;
  height: auto;
  border-radius: 10px;
}

.description {
  margin-top: 10px;
  font-size: 16px;
  color: #666;
}

@media (max-width: 800px) {
  /* Mobile-friendly layout */
  .containers {
    grid-template-columns: 1fr;
    padding: 5%;
  }
  .picture {
    width: 40%;
    height: auto;
    border-radius: 10px;
  }
}