
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f4f4f4;
}
p,h3,nav a, a ,*{
    font-family: 'Jost';

}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #333;
  padding: 5px 10px;
  color: white;
  border-radius: 8px;
}.header-logo img

.logo {
  font-size: 20px;
  font-weight: bold;
}
.header-wrapper.sticky img {
    max-height: 75px;
}

.menu-toggle {
  font-size: 28px;
  cursor: pointer;
  display: none; /* Hidden by default */
}

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

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  padding: 8px 12px;
  transition: 0.3s;
}

.nav-links ul li a:hover {
  background: #000;
  border-radius: 5px;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
  .menu-toggle {
      display: block; /* Show on mobile */
  }
  nav#desktop-menu {
    display: none;
}
  .nav-links {
      display: none; /* Hide menu initially */
      flex-direction: column;
      width: 100%;
      position: absolute;
      top: 75px;
      left: 0;
      background: var(--footer-color) !important;
      text-align: center;
  }

  .nav-links li {
      margin: 0;
      padding: 10px 0;
      border-top: 1px solid #444;
  }

  .nav-links a {
      display: block;
      width: 100%;
  }
.nav-links a.active{
    color: #ffffff !important;
}
  #mobile-menu{
    display: block !important;
  }
   .sticky .nav-links {
    display: none; /* Hide menu initially */
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
    background: var(--footer-color) !important;
    text-align: center;
    /* transition: 0.3s; */
}
}
/*  */
body {
  font-family: jost;
  margin: 0;
  padding: 0;
  overflow-x: hidden !important;
}
h1, h2 {
  font-family: jost;
}
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0px;
}
.header-logo img {
  max-width: 200px;
  max-height:130px;
}
nav {
  display: flex;
  gap: 15px;
}
nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
}
section {
  padding: 50px 20px;
  text-align: center;
  width: 100%;
  clear: both;
}

.header-wrapper {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff; /* Adjust as needed */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
    transition: all 0.3s ease;
    z-index: 1000;
}

.sticky {
        position: fixed;
    padding: 7px 20px;
    background: rgba(255, 255, 255, 0.9); /* Slight transparency on sticky */
}

/*slider*/
h3.service-name-bottom {
  padding: 19px 0px;
}
.slider {
  width: 100%;
  height: 80vh !important;
  overflow: hidden;
  position: relative;
  padding: 0;
}

/* Slider Cintent */
.slider-content h1{
  font-size: 45px;
  background: #FFFFFF;
background: linear-gradient(to right, #FFFFFF 30%, var(--footer-color) 70%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
margin-bottom: 0px;
line-height: 52px;

}
/* Slider-content End */
.swiper-container {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.swiper-slide {
  position: relative;
  background-size: cover;
  background-position: center;
}
.swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.445); /* Black overlay with 50% transparency */
}
.slider-content {
  position: absolute;
  top: 38%;
  left: 14%;
  transform: translateY(-50%);
  text-align: left;
  color: #fff;
  max-width: 27%;
}
.slider-content h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.slider-content p {
  font-size: 19px;
  margin-bottom: 15px;
  line-height: 29px;
}
.slider-button {
  display: inline-block;
  padding: 10px 20px;
  background: #ff6600;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.about-container img {
  width: auto;
  height: auto;
}
/*services*/
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease;
  text-align: center;
  cursor: pointer;
  min-height: 123px;

}

.service-item:hover {
  transform: scale(1.05);
}

/* Image styling */
.service-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

/* Hide service-info initially */
.service-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  text-align: center;
  padding: 15px;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Move the title above description on hover */
.service-item:hover .service-info {
  opacity: 1;
  transform: translateY(0);
    padding: 5px 0px;
    border-radius: 10px;
}

/* Title Styling */
.service-name {
  font-size: 23px;
  font-weight: bold;
  margin: 0;
    padding: 15px 0px 0px;
    
}

/* Description Styling */
.service-description {
  font-size: 14px;
  margin: 5px 0 0;
  line-height: 1.4;
}



/* About  */
.container.hidden ,.hidden{
  display: none;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1300px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.about-content {
  flex: 1;
  text-align: left;
  transform: translateX(-50px);
  opacity: 0;
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.about-content h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.about-content p {
  font-size: 17px;
  line-height: 1.6;
}

/* .about-image {
  flex: 1.5; 
  max-width: 55%; 
  display: flex;
  justify-content: flex-end;
  transform: translateX(50px);
  opacity: 0;
  transition: opacity 1s ease-out, transform 1s ease-out;
} */
.about-image {

  justify-content: flex-end;
  transform: translateX(50px);
  opacity: 0;
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.about-image img {
  max-width: 85%;
  height: auto;
  border-radius: 10px;
}

.about-container.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-container.visible .about-content {
  transform: translateX(0);
  opacity: 1;
}

.about-container.visible .about-image {
  transform: translateX(0);
  opacity: 1;
}

.services-section {
  position: relative;
  width: 100%;
  padding: 80px 20px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
}

.services-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(
    --site-color,
    rgba(0, 0, 0, 0.6)
  ); /* Default Transparent Black */
}

.container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  font-size: 32px;
  color: #fff; /* Title Color */
  margin-bottom: 30px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.service-item {
  background: rgba(255, 255, 255, 0.2); /* Light Transparent Background */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.service-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.service-item p {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  padding: 20px;
}

.service-item:hover {
  transform: translateY(-5px);
}

/*
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}
*/
.gallery-grid {

  display: grid !important;

  grid-template-columns: repeat(5, minmax(250px, 1fr));

  gap: 15px;

  max-width: 100% !important;

    margin: 0px auto;

    justify-content: start;

    padding-top: 20px;

}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}

.gallery-item img {
  width: auto;
  height: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
  border-radius: 10px;
}

.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(70%);
}

.gallery-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover::before {
  opacity: 1;
}
.gallery-item::after {
  content: ""; /* FontAwesome magnifying glass */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 24px;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}
/* Footer */

.footer-section {
  background-color: var(--footer-color);
  padding: 50px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
  gap: 50px;
}

.footer-contact {
  width: 40%;
  min-width: 250px;
}

.footer-contact p {
  font-size: 16px;
  margin-bottom: 8px;
  color: #fff;
  line-height: 25px;
}

.footer-contact a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

.footer-map {
  width: 100%;
  height: 250px;
  overflow: hidden;
  margin-top: 15px;
  border-radius: 10px;
}

.footer-form {
  width: 50%;
  max-width: 450px;
}




.footer-form input,
.footer-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

.footer-form textarea {
  height: 90px;
}

.footer-form button {
  background-color: var(--footer-form-color);
  color:#fff;
  border: none;
  padding: 10px 15px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  border: 1px solid #fff;
  margin-top: 6px;
}

.footer-form button:hover {
  background-color: darken(var(--site-color), 10%);
  border: 1px solid #fff;
  color: #fff;
}
h2.footer-section-title {
  color: #fff;
  padding-bottom: 15px;
  padding-top: 10px;
}
.error { color: red; font-size: 14px; }
/* sticky icons */
.sticky-icons {
    position: fixed;
    top: 20%;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #007BFF;
    color: white;
    text-decoration: none;
    font-size: 24px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease, transform 0.2s ease;
}

.icon:hover {
    background: #0056b3;
    transform: scale(1.1);
}
.icon {
  background-color: var(--footer-color) !important;
}


span.success.responce {
  background-color: #fffffff7;
  padding: 5px;
  margin-top: 9px;
  display: flex;
}
/* Medira Query */


@media only screen and (max-width: 1200px){
  .footer-section{

    padding-bottom: 100px;
  }
  .icon {
    background-color: var(--footer-color) !important;
    width: 45%;
}
  .sticky-icons {
    top: 90%;
    display: flex;
    flex-direction: row;
    position: fixed;
    width: 95%;
        align-content: space-between;
        justify-content: center;
        box-shadow: 2px 7px 23px -3px rgba(32, 0, 0, .34);
        background-color: #ededed;
        padding: 12px;
        border-radius: 10px;
        gap: 30px !important;
}
h2.gallery-section-title {
  padding-bottom: 15px;
}
}
@media only screen and (max-width: 760px){
  .slider-content{
    position: absolute;
    top: 30%;
    left: 9%;
    transform: translateY(-50%);
    text-align: left;
    color: #fff;
    max-width: 85%;
  }
  .slider-content h1 {
    font-size: 32px;
    line-height: 40px;
}
.swiper-button-next, .swiper-button-prev{
  display: none !important;
}
.slider { 
  height: 58vh !important;
}
.about-container{
display: block;
}
section {
  padding: 32px 0px !important;
 
}
section#home {
  padding: 0px !important;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
}
.footer-content {
  display: block;
}
.footer-contact {
  width: 48%;
  min-width: 343px;
}
.footer-form {
  width: 100%;
 
}
.footer-form .form-group {
  margin-bottom: 15px;
  width: 100%;
}
}
@media only screen and (min-width:768px) and (max-width:991px) {
  footer#contact {
    overflow-x: hidden;
}

.gallery-grid {
  grid-template-columns: repeat(2, minmax(250px, 1fr));
  gap: 16px;
}

.gallery-item img {
  width: 93%;
}
.footer-form {
  margin-top: -74%;
  margin-left: 49%;
}
  .slider {
    height: 55vh !important; 
}
.footer-content {
  display: block;
}
.slider-content {
  top: 25%;
  left: 4%;
  max-width: 63%;
}
.footer-contact {
  width: 46%;
}
form#footer-contact-form {
  display: flex;
  flex-direction: column;
  column-gap: 5px !important;
  row-gap: 10px;
}
.footer-form button{
  width: 25%;
}
.swiper-button-next, .swiper-button-prev{
  display: none !important;
}
.about-container{
  display: block;
  }
  .services-section {
    padding: 2px 13px 23px 20px !important;
}

section#gallery {
  width: 100%;
}
}

@media only screen and (min-width: 1024px){
     .gallery-center {

    justify-content: center; /* Center images when less than 5 */

    display: flex !important;

  }
  nav a.active {
    color: #ffffff !important ;
}
  .footer-form .form-group {
    margin-bottom: 15px;
  }
  .form-group:nth-child(3) {
    width: 100%;
  }
  .form-group:nth-child(4) {
    width: 100%;
  }
  form#footer-contact-form {
    display: flex;
    flex-wrap: wrap;
}
.form-group {
  display: flex;
  flex-direction: column;
}
.footer-form button {
  width: 33%;
}
.form-group:nth-child(2) {
  margin-left: 6px;
}
.form-group {
  display: inline-flex;
}
}

@media only screen and (min-width:1024px) and (max-width:1100px) {
  .swiper-button-next, .swiper-button-prev{
    display: none !important;
  }
  .slider-content {
    left: 4%;
    max-width: 54%;
    top: 27%;
}
.slider {
  height: 58vh !important;
}
.about-container{
  display: block;
  }
  section#services {
    padding: 22px 20px;
}
.gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(174px, 1fr));
}
form#footer-contact-form{
  display: grid;
}
.form-group:nth-child(2) {
  margin-left: 0px;
}
}

