/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background-image: linear-gradient(#e8f3fd,#a9caff);
  background-size: cover;
  width: 100%;
}

/* Navbar Styles */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: #ffffff00;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.047);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  top: 0;
  width: 100%;
  background-color: rgba(51, 51, 51, 0); /* Transparent initially */
  color: white;
  transition: background-color 0.3s ease;
  user-select: none; /* Prevent selection */
  -webkit-user-drag: none; /* Disable dragging in WebKit browsers */
}

.scrolled {
  background-color: rgb(255, 255, 255); /* Fully opaque when scrolled */
}

.logo img {
  width: 180px;
  height: auto;
  padding-left: 5%;
  padding-top: 3%;
}

.nav-links {
  list-style: none;
  display: flex;
  font-family:Verdana, Geneva, Tahoma, sans-serif;
}

.nav-links li {
  margin: 0 20px;
}

.nav-links a {
  color: #000;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  padding-top: 1%;
}

.nav-links a:hover {
  color: #090e76;
}

/* Hamburger Menu */
.menu-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-icon span {
  background-color: #000;
  height: 3px;
  margin: 4px 0;
  width: 25px;
}

.imgfirst{
  position: relative;
  width: 100%;
  object-fit: cover;
  user-select: none; /* Prevent selection */
  pointer-events: none; /* Disable drag behavior */
  -webkit-user-drag: none; /* Disable dragging in WebKit browsers */
}

.imgsecond{
  position: absolute;
  height: 75%;
  width: 73%;
  bottom: 0;
  padding-left: 28%;
  object-fit: cover;
  user-select: none; /* Prevent selection */
  pointer-events: none; /* Disable drag behavior */
  -webkit-user-drag: none; /* Disable dragging in WebKit browsers */
}

.tagline{
  position: absolute;
  height: 25%;
  width: 80%;
  bottom: 0;
  padding-left: 23%;
  object-fit:cover ;
  user-select: none; /* Prevent selection */
  pointer-events: none; /* Disable drag behavior */
  -webkit-user-drag: none; /* Disable dragging in WebKit browsers */
}

/*----------------------------------------------------social-icons----------------------------------------------------*/

.social-icons{
  width: 70px;
  position: fixed;
  top: 25%;
  left: 1%;
  transform: translateY(-50%) ;
  z-index: 1000;

  transition: top 0.1s ease;
  
}

.social-icons img{
  display: block;
  width: 25px;
  margin: 0 auto 20px ;
  cursor: pointer ;
}

/*----------------------------------------------------slider-------------------------------------------*/

.our_projects{
  font-size: 45px;
}
/* Slider Container */
.container_project {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 0;
}

/* Swiper Container */
.swiper {
  width: 100%;
  height: 60vh; /* Adjust height as needed */
  padding-bottom: 2rem;
}

/* Swiper Slide */
.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

/* Slide Content */
.slide-content {
  position: relative;
  width: 90%;
  height: 90%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25), 0 6px 6px rgba(0, 0, 0, 0.22);
  transition: transform 0.5s ease-in-out;
}

.slide-content:hover {
  transform: scale(1.05);
}

.slide-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Navigation Buttons */
.swiper-button-prev,
.swiper-button-next {
  color: #333;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 10px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: rgba(255, 255, 255, 1);
}

/* Pagination */
.swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #ff5722;
}

.swiper-pagination {
  position: absolute;
  bottom: 10px;
  text-align: center;
  width: 100%;
}

/*=========================================================== SERVICES CARD ========================================================================*/

#services h1{
  font-size: 50px;
}
.cards-containers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 50px;
  padding-top: 110px;
}
.cards {
  position: relative;
  width: 200px;
  height: 245px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 0px; /* Add margin to separate rows */
  margin-right: 5%;
  margin-left: 5%;
}
.cards:hover {
  transform: scale(1.05);
}
.cards img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.cards:hover img {
  transform: scale(1.1);
}
.cards .text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #bfa792;
  color: #fff;
  padding: 10px;
  box-sizing: border-box;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.cards:hover .text {
  transform: translateY(0);
}

/*----------------------------------------------about us-------------------------------------------*/

#about h1{
  font-size: 50px;
}
.image-section {
  display: flex;
  flex-direction: column;
 
  align-items: center;
  padding: 100px 20px;
  height: 100vh; /* Full viewport height */
  position: relative;
}

.card {
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.card img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transform: scale(0.95);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.card img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.card-text {
  margin: 20px;
}

.card-left {
  align-self: flex-start;
  padding-left: 100px;
}

.card-left h1{
  text-align: left;
  padding-left: 35px;
}

.card-right {
  align-self: flex-end;
  display: flex;
  flex-direction: row-reverse;
  padding-right: 100px;
}

.card-right h1{
  text-align: right;
  padding-right: 37px;
}

.card-right .card-text {
  margin-left: 20px; 
}

.card.visible {
  opacity: 1;
  transform: translateY(0);
}
.card-text p{
 padding-left: 30px;
 padding-right: 30px;
}

/*------------------------------------------CONTACT US-------------------------------*/

#contact{
  height: auto;
  width: 100%;
  background: #4d566d;
  display: flex;
  color: white;
  text-align: left;
  padding-left: 4.5%;
  padding-top: 1%;
  padding-bottom: 1%;
}

.contact a{
  color: white;
}
.contact h2{
  text-align: left;
}

      /* Container styling */
      .containerss {
          padding: 0;
          width: 100%;
          max-width: 1200px;
          display: flex;
          flex-wrap: wrap;
          justify-content: space-around;
          z-index: 1; /* Ensure content stays above video */
      }

      /* Card styling */
      .cardss {
          background: rgba(255, 255, 255, 0.1);
          backdrop-filter: blur(10px);
          margin: 20px;
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
          border-radius: 15px;
          flex: 1;
          min-width: 280px;
          transition: transform 0.3s ease, box-shadow 0.3s ease;
          color: #f4f4f9;
      }

      .cardss:hover {
          transform: translateY(-5px);
          box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
      }

      .cardss h3 {
          font-size: 22px;
          margin-bottom: 10px;
          margin-top: 2%;
          margin-left: 2%;
          color: #ffcc00;
      }

      .cardss p {
          margin-bottom: 20px;
          margin-left: 2%;
          color: #cccccc;
      }

      .cardss a {
          text-decoration: none;
          color: #ffcc00;
          font-weight: bold;
          transition: color 0.3s ease;
      }

      .cardss a:hover {
          color: #fff;
      }

      /* Map styling */
      #map {
          height: 400px;
          width: 100%;
          background-color: #ccc;
          border-radius: 10px;
      }



/* ------------------------------------------------------------------------------Responsive Styles ----------------------------------------------------------------------- */
@media (max-width: 800px) {
  .menu-icon {
    display: flex;
  }

  .navbar {
    padding: 6px 11px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #333;
    position: absolute;
    top: 60px;
    right: 10px;
    width: 200px;
    border-radius: 5px;
    padding: 10px 0;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    margin: 10px 0;
    text-align: center;
  }

  .nav-links a {
    color: #fff;
  }

  .logo img {
    width: 95px;
  }

  .imgfirst{
    position: relative;
    width: 100%;
  }

.imgsecond{
  position: absolute;
  height: 87%;
  width: 70%;
  bottom: 0;
  padding-left: 27%;
}

.tagline{
  position: absolute;
  height: 76%;
  width: 90%;
  bottom: 0;
  padding-left: 13%;
}

}

/* Image and Section Styles */
section {
  padding: 20px 0px;
  text-align: center;
}

.imgfirst img, .imgsecond img, .tagline img {
  width: 100%;
  height: auto;
}


/* Profile Link */
.profile-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.profile-link:hover {
  background: #f0f0f0;
}

/* Profile Page Styles */
.profile-container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 2rem;
}

.profile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.home-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.8rem 1.5rem;
  background: #3b82f6;
  color: white;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.home-button:hover {
  background: #2563eb;
  transform: translateY(-2px);
}

.inquiry-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Responsive Table */
@media (max-width: 768px) {
  .inquiry-table {
    display: block;
    overflow-x: auto;
  }
}

/* Profile Card */
.user-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

/* Status Badges */
.status-badge {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.status-pending { background: #fff3cd; color: #856404; }
.status-in-progress { background: #cfe2ff; color: #052c65; }
.status-completed { background: #d1e7dd; color: #0a3622; }

/* Download Button */
.download-btn {
  padding: 0.5rem 1rem;
  background: #3b82f6;
  color: white;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.download-btn:hover {
  background: #2563eb;
}



