
/*end*/

















* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f9f9f9;
            color: #333;
            overflow-x: hidden;
        }
        a, p, h2, h3 { /* Corrected: Removed trailing comma before closing brace */
            text-decoration: none;
            color: inherit;
        }
        body {
            display: flex; /* Changed from empty display to flex for better layout control */
            flex-direction: column;
            background-repeat: no-repeat; /* Prevent repetition of the image */
            background-position: center; /* Center the image */
            background-color:#f5f5f5;
            height: auto;
        }
        .gen-container{
            min-height: 100%;
        }

        .header-container {
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 1000;
        }
        .hero-image {
            height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .content-container {
            flex: 1; /* Takes available space */
            padding-top: 70px; /* Adjust this based on your header height */
            margin-bottom: 10px; /* Space for the footer */
            min-height: 100vh;
            text-align: center;
            justify-content: center;
            background-size: cover;  
            background-repeat: no-repeat; /* Prevent repetition of the image */
            background-position: center; /* Center the image */
            align-items: center; /* Center content vertically */
        }   

        @media (max-width: 480px) {
            .content-container {
                height: 50vh;
            }
        }
        /*hero area*/
        .hero-content {
            padding: 20px;
            margin-top: 160px;
            margin-left:30%;
            margin-right: 30%;
            max-width: 100%;
            justify-content: center;
            align-items: center;
            text-align: center;
            place-items: center;
        }

        .cta-button {
            display: inline-block;
            padding: 10px 20px;
            background-color: #f05a28; /* Button color */
            color: white;
            text-decoration: none;
            border-radius: 5px;
            margin-top: 10px;
        }
        .gr-button{
            display: inline-block;
            padding: 10px 20px;
            background-color: #0f2e18; /* Button color */
            color: white;
            text-decoration: none;
            border-radius: 5px;
            margin-top: 10px;
        }
        /*end*/






        


/*portfolios */
.hero-image {
  height: 40vh;
  background: url('../images/hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.portfolio-room-section {
display: flex;
height: 300px;
align-items: center;
justify-content: space-around;
padding: 2rem 1.5rem;
background-color: #f5efeb;
text-align: left;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.8);

}
.portfolio-room-section img {
border-radius: 50%;
height: 250px;
width:250px;
margin-left: -50px;
overflow: auto;

}

.portfolio-room-details {
display: flex;
flex-direction: column;
gap: 0.1rem;
text-align: center;
width:70%;
}



.gallery-title {
text-align: center;
font-size: 24px;
font-weight: bold;
margin-bottom: 20px;
}

.toggle-buttons {
text-align: center;
margin-bottom: 20px;
}

.toggle-buttons button {
border: 1px solid #ccc;
padding: 10px 20px;
margin: 0 5px;
background-color: white;
font-weight: bold;
cursor: pointer;
transition: background-color 0.3s;
}

.toggle-buttons .active {
background-color: #a39470;
color: white;
}

.gallery-container {
display: flex;
margin-bottom: 20px;
justify-content: center;
gap: 10px; /* Space between the main image and thumbnails */
flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.main-image {
text-align: center;
margin-bottom: 20px;
width: 700px;
height: 400px;
margin: 0 ; /* Center the main image container */
overflow: hidden;
}

.main-image img {
width: 100%;
height: 100%;
object-fit: container; /* Maintain aspect ratio and fit the container */
border-radius: 10px;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.thumbnail-grid {
display: flex;
flex-direction: column;
gap: 10px;
align-items: center; /* Center the thumbnails vertically */
margin-left: 0px; /* Add space between the thumbnails and main image */
}

.thumbnail-grid img {
width: 150px;
height: 123px;
object-fit: cover;
border-radius: 5px;
cursor: pointer;
transition: transform 0.2s, box-shadow 0.2s;
}

.thumbnail-grid img:hover {
transform: scale(1.05);
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
.gallery-container {
flex-direction: column;
}
.portfolio-room-section {
height: auto;
flex-direction: column;
padding: 1rem;
}
.main-image {
width: 100%;
height: auto;
}
.thumbnail-grid {
flex-direction: row; /* Display thumbnails horizontally on small screens */
justify-content: center;
gap: 15px;
}

.main-image {
width: 100%; /* Make the main image take full width on smaller screens */
height: auto; /* Maintain aspect ratio */
}

.thumbnail-grid img {
width: 120px; /* Adjust thumbnail size for smaller screens */
height: 80px;
}
}

    .featured-projects, .services, .testimonials, .call-to-action, .about-us, .blog-highlights {
      padding: 50px 20px;
      text-align: center;
    }
    @media (max-width: 480px) {
        .call-to-action video{
            max-width: 200px;
        }
    }
    .project-grid, .service-list, .blog-posts {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 20px;
    }

    .project, .service, .post {
      margin: 10px;
      width: 200px; /* Adjust based on your design */
    }

    .project img, .service img, .post img {
      width: 100%;
      border-radius: 5px;
    }

    .about-us img {
      width: 100%;
      max-width: 100px; /* Limit size */
      border-radius: 5px;
    }

 


/*  video section */

.call-to-action {
      background: linear-gradient(135deg, #0d3b66, #faf0ca);
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    margin: 2rem auto;
    padding: 2rem;
    max-width: 900px;
}

.call-to-action h2 {
    color: #333;
    font-size: 1.8rem;
}

.call-to-action .btn-primary {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.call-to-action .btn-primary:hover {
    background: #0056b3;
}
@media (max-width: 768px) {
  .call-to-action h2 {
    font-size: 1.5rem;
  }

  .call-to-action video {
    max-width: 400px;
  }
}

@media (max-width: 480px) {
  .cta-button {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
  .call-to-action video {
    max-width: 150px;
  }
}

/* end of video section */
/*slider*/
.slider-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.slider img {
  flex-shrink: 0;
  width: 100%; /* Default: full width on mobile */
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

/* Optional: show 3 images per view on desktop */
@media (min-width: 769px) {
  .slider img {
    width: calc(100% / 3); /* Show 3 images side-by-side */
  }
}




@media (min-width: 768px) {
  .slider img {
    width: 33.33vw; /* 3 images side by side on larger screens */
  }
}



/*about section*/
.about-us {
  padding: 40px;
  background-color: #f9f9f9;
  text-align: center;
}

.about-us h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 30px;
}

.testimonial-section {
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.testimonial-content {
  display: flex; /* Makes the image and blockquote align in one row */
  align-items: center; /* Aligns image and text vertically in the same row */
  gap: 20px; /* Adds spacing between the image and blockquote */
  text-align: left; /* Aligns text content to the left */
}

.testimonial-image {
  width: 50px;
  height: 100px;
  border-radius: 50%; /* Makes the image round */
}

blockquote {
  font-style: italic;
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  margin: 0; /* Removes default margin for better alignment */
  flex: 1; /* Ensures the blockquote takes up the remaining space */
}

.testimonial-section h3 {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin: 10px 0 0; /* Adds spacing above the name */
}

/* Responsive Design */
@media (max-width: 768px) {
  .testimonial-content {
      flex-direction: column; /* Stacks the image and blockquote vertically */
      text-align: center; /* Centers text for smaller screens */
  }

  .testimonial-image {
      margin-bottom: 15px; /* Adds space between the image and blockquote */
  }

  blockquote {
      font-size: 16px; /* Adjust font size for smaller screens */
  }

  .testimonial-section h3 {
      font-size: 18px;
  }
}
/* end of about*/

/* bloghighlights*/

/* Default styling for larger screens */
.custom-blog-highlights {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 20px;
  background-color: #f9f9f9;
}

/* Blog post container */
.custom-blog-post {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: calc(33.33% - 15px);
  text-align: center;
}

/* Blog post image */
.custom-blog-post-image {
  width: 100%;
  height: 250px;
}

/* Blog post title */
.custom-blog-post-title {
  font-size: 20px;
  font-weight: bold;
  margin: 15px 10px 10px;
  color: #333;
}

/* Blog post excerpt */
.custom-blog-post-excerpt {
  font-size: 16px;
  color: #555;
  margin: 0 10px 20px;
  line-height: 1.5;
}

/* Read more link */
.custom-read-more {
  display: inline-block;
  font-size: 14px;
  color: #007bff;
  text-decoration: none;
  margin-bottom: 15px;
  transition: color 0.3s;
}

.custom-read-more:hover {
  color: #0056b3;
}

/* Responsive styling for smaller screens */
@media (max-width: 768px) {
  .custom-blog-highlights {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .custom-blog-post {
    width: 90%; /* Full width with padding */
    max-width: 400px;
  }

  .custom-blog-post-image {
    height: 200px;
  }
}

/* Extra small screens (e.g., phones) */
@media (max-width: 480px) {
  .custom-blog-post-title {
    font-size: 18px;
  }

  .custom-blog-post-excerpt {
    font-size: 14px;
  }

  .custom-blog-post-image {
    height: 150px;
  }
}

/*end of blog*/

/*happy clients*/


.swiper {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding-bottom: 40px;
}

/* Rounded images inside slider or swiper */


.feedback {
  background-color: #f8f8f8;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.client-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.feedback-content p {
  font-size: 15px;
  margin-bottom: 10px;
  color: #555;
}

.feedback-content h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
  color: #222;
}

/*end of happy clients*/
/*consultation*/

/* Consultation Section */
.consultation {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.consultation-container {
  display: flex;
  flex-direction: row;
  max-width: 1200px;
  width: 100%;
  height: auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  flex-wrap: wrap; /* Allow wrapping on small screens */
}

.image-container {
  flex: 1;
  min-width: 300px;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.text-container {
  flex: 1;
  padding: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.text-container h2 {
  font-size: 24px;
  font-weight: 400;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.5;
}

.consultation-button {
  background-color: #d4af37;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.consultation-button:hover {
  background-color: #b38e2c;
}

/* Responsive Design */
@media (max-width: 768px) {
  .consultation-container {
    flex-direction: column;
  }

  .image-container,
  .text-container {
    width: 100%;
  }

  .text-container {
    padding: 20px;
  }

  .text-container h2 {
    font-size: 20px;
  }

  .consultation-button {
    font-size: 14px;
    padding: 8px 16px;
  }
}


/*end of consultation*/
/*end of portfolio*/







/* Category Menu */
.category-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 20px 0;
  gap: 15px;
}

.category-btn {
  padding: 10px 20px;
  border: none;
  background-color: #ddd;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.category-btn.active {
  background-color: #555;
  color: white;
}

.category-btn:hover {
  background-color: #aaa;
}

/* Slider Container */
.slider-container {
  position: relative;
  max-width: 90%;
  margin: auto;
  overflow: hidden;
  border-radius: 10px;
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 20px; /* Gap between images */
  padding: 10px;
}

.slider img {
  width: calc((100% / 3) - 20px); /* Default: 3 images at a time with gaps */
  object-fit: cover;
  height: 300px;
  border-radius: 10px;
  flex-shrink: 0;
}

/* Slider Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 18px;
  z-index: 10;
  border-radius: 50%;
}

.slider-btn.prev {
  left: 10px;
}

.slider-btn.next {
  right: 10px;
}

.slider-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
  .slider img {
      width: calc((100% / 1) - 20px); /* Show 2 images at a time */
      height: 250px;
  }
}

@media (max-width: 480px) {
  .slider img {
      width: 100%; /* Show 1 image at a time */
      height: 200px;
  }
}

/* end of slider*/  


