@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
}
.btnnn {
  margin-top: 70px;
}
.btnnn1 {
  width: 100%;
}
.btnnn2 {
  width: 100%;
}
/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  background-color: #f2f2f2;
  overflow: hidden;
}

.slideshow-container {
  position: relative;
  max-width: 100%;
  height: 100vh;
  margin: auto;
  overflow: hidden;
}

.mySlides {
  display: none;
  position: relative;
  height: 100vh;
}

.mySlides img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

/* Adding a dark overlay to the background images */
.mySlides::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Adjust opacity as needed */
  z-index: 1; /* Keep the overlay behind the text */
}

/* Hero content on top of the image */
.hero-content {
  position: absolute;
  text-align: center;
  color: goldenrod;
  padding: 20px;
  z-index: 2; /* Ensure the content is above the overlay */
  /* Optional: darken the text container background */
  border-radius: 10px;

  transform: translate(-50%, -50%);
}
.hero-heading {
  color: rgb(255, 255, 255);
}

.hero-content h2 {
  font-size: 72px;
  letter-spacing: 10px;
  width: 100%;
  margin-bottom: 20px;
  color: white;
}

.hero-content h3 {
  font-size: 32px;
  margin-top: 20px;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

/* Restored Book Appointment Button */
.book-appointment {
  display: inline-block;
  margin-top: 30px;
  padding: 15px 30px;
  font-size: 18px;
  text-transform: uppercase;
  color: #ffffff;
  background-color: #ff6f61;
  border-radius: 50px;
  border: 2px solid #fff;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.book-appointment:hover {
  background-color: transparent;
  color: #ffffff;
  border-color: #ff6f61;
  transform: translateY(-3px); /* Elevation hover effect */
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
}

/* Navigation buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 3px;
  user-select: none;
  transition: 0.6s ease;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Animations */
@keyframes slideIn {
  from {
    transform: translate(-50%, -60%);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade animation for slides */
.fade {
  animation: fadeEffect 1.5s ease-in-out;
}

@keyframes fadeEffect {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

/* Responsive adjustments */
@media only screen and (max-width: 768px) {
  .hero-content {
    padding: 15px;
    border-radius: 10px;
  }

  .hero-heading {
    font-size: 40px;
  }

  .hero-subheading {
    font-size: 18px;
  }

  .book-appointment {
    font-size: 16px;
    padding: 12px 25px;
  }
}

@media only screen and (max-width: 480px) {
  .hero-heading {
    font-size: 32px;
  }

  .hero-subheading {
    font-size: 16px;
  }

  .book-appointment {
    font-size: 14px;
    padding: 10px 20px;
  }
}

.about-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
  background-color: white;
}

.about-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width: 1200px;
  width: 100%;
}

.logo-container {
  flex: 1;
  text-align: center;
  padding-right: 20px;
}

.logo-container img {
  width: 250px;
  height: auto;
}

.about-text {
  flex: 2;
  padding-left: 20px;
}

.about-text h5 {
  font-size: 16px;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-text h2 {
  font-size: 36px;
  margin-top: 10px;
  margin-bottom: 20px;
  color: #222222;
}

.about-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #555555;
}

/* Responsive Adjustments */

@media only screen and (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .logo-container {
    padding-right: 0;
    padding-bottom: 20px;
  }

  .about-text {
    padding-left: 0;
  }
}

.offer-section {
  background-color: #b8b8a8;
  padding: 60px 20px;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.offer-images {
  display: flex;
  flex: 2;
  justify-content: space-between;
}

.image-box {
  position: relative;
  width: 48%;
}

.image-box img {
  width: 100%;
  height: auto;
  display: block;
}

.image-box p {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 5px 10px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
}

.offer-text {
  flex: 1;
  padding-left: 30px;
  color: #ffffff;
}

.offer-text h5 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: #dddddd;
}

.offer-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.offer-text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  margin: 20px;
}

.learn-more {
  font-size: 16px;
  text-decoration: none;
  color: #ffffff;
  border-bottom: 1px solid white;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}

.learn-more:hover {
  color: #cccccc;
}

/* Responsive Adjustments */
@media only screen and (max-width: 768px) {
  .offer-container {
    flex-direction: column;
    text-align: center;
  }
  .offer-section {
    height: auto;
  }

  .offer-images {
    flex-direction: column;
  }

  .image-box {
    width: 100%;
    margin-bottom: 20px;
  }

  .offer-text {
    padding-left: 0;
  }
}
.video-section {
  position: relative;
  height: 80vh;
  width: 100%;
  overflow: hidden;
}

.video-container {
  position: relative;
  height: 100%;
  width: 100%;
}

video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.video-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.video-overlay h5 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.video-overlay h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

.video-overlay p {
  font-size: 18px;
  margin-bottom: 30px;
}

.view-project {
  font-size: 16px;
  text-decoration: none;
  color: white;
  border-bottom: 1px solid white;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}

.view-project:hover {
  color: #cccccc;
}

/* Responsive adjustments */
@media only screen and (max-width: 768px) {
  .video-overlay h2 {
    font-size: 32px;
  }

  .btnn2 {
    width: 100%;
  }

  .video-overlay p {
    font-size: 16px;
  }
}

@media only screen and (max-width: 480px) {
  .video-overlay h2 {
    font-size: 24px;
  }
  .btnn2 {
    width: 100vw;
  }

  .video-overlay p {
    font-size: 14px;
  }
}
.featured-section {
  background-color: white;
  padding: 50px 0;
  text-align: center;
}

.featured-container {
  max-width: 1200px;
  margin: 0 auto;
}

.featured-text {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: #333;
}

.featured-logos {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

.featured-logos img {
  max-height: 50px;
  margin: 0 20px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.featured-logos img:hover {
  opacity: 1;
}

/* Responsive adjustments */
@media only screen and (max-width: 768px) {
  .featured-logos {
    flex-direction: column;
  }

  .featured-logos img {
    margin: 15px 0;
  }
}
/* Testimonial Section */
/* Testimonial Section */
.testimonial-section {
  background-color: #b3b3a1;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}

.testimonial-slider {
  max-width: 1200px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* Grid Layout for Testimonials with equal height and width */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two equal columns */
  gap: 20px;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 400px; /* Fixed height */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
  padding: 20px;
  background-color: #ffffff;
  height: 100%; /* Ensures content takes full height */
}

.testimonial-content h5 {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #333333;
  margin-bottom: 20px;
}

.testimonial-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #444444;
  margin-bottom: 10px;
}

.testimonial-content .author {
  color: #0d0a0a;
  margin-top: 20px;
  font-weight: bolder;
}

.testimonial-image {
  height: 400px; /* Fixed height for image container */
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Fills container, may crop */
  display: block;
}

/* Navigation Buttons */
.testimonial-nav {
  margin-top: 30px;
}

.nav-btn {
  background-color: #888888;
  color: white;
  border: none;
  padding: 12px;

  font-size: 27px;

  margin: 0 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.nav-btn:hover {
  background-color: #555555;
}

/* Responsive Design */
@media only screen and (max-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr; /* Stack content on mobile */
    height: auto; /* Adjust height automatically */
  }

  .testimonial-content,
  .testimonial-image {
    width: 100%;
    height: auto; /* Allow dynamic height adjustment */
  }

  .testimonial-image img {
    height: 300px; /* Fixed image height for better mobile view */
    width: 100%;
  }
}

.services-section {
  background-color: white;
  padding: 60px 20px;
  text-align: center;
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.service-box {
  flex: 1 1 calc(50% - 20px); /* Two boxes per row */
  margin: 10px;
  text-align: center;
}

.service-box img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.service-box h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
}

.service-box p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
}

/* Special styling for the last box to center it */
.service-box:nth-child(5) {
  flex: 1 1 100%; /* Full-width for the last box */
}

/* Responsive Design */
@media only screen and (max-width: 768px) {
  .service-box {
    flex: 1 1 100%; /* Full width on small screens */
  }
}
.parallax-section {
  position: relative;
  height: 100vh; /* Full height section */
  background: url("1.png") no-repeat center center/cover; /* Add your background image */
  background-attachment: fixed; /* Parallax scrolling effect */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.parallax-container {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.parallax-content h5 {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: #ffffff;
}

.parallax-content h1 {
  font-size: 56px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
}

.parallax-content p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #ffffff;
}

.start-project-btn {
  font-size: 16px;
  text-decoration: none;
  color: white;
  padding: 10px 30px;
  border: 1px solid white;
  transition: all 0.3s ease;
}

.start-project-btn:hover {
  background-color: white;
  color: #333;
}

/* Responsive Adjustments */
@media only screen and (max-width: 768px) {
  .parallax-content h1 {
    font-size: 36px;
  }

  .parallax-content p {
    font-size: 16px;
  }

  .start-project-btn {
    padding: 10px 20px;
  }
}
.follow-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #f9f9f9;
}

.follow-heading p {
  font-size: 16px;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 10px;
}

.follow-heading h2 {
  font-size: 36px;
  color: #888;
  margin-bottom: 40px;
  font-family: "Georgia", serif;
}

.image-gallery {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.gallery-item {
  flex: 1 1 18%; /* Allows up to 5 images per row, adapts based on screen size */
  max-width: 18%;
  min-width: 150px;
  margin-bottom: 20px;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Responsive Design */
@media only screen and (max-width: 768px) {
  .gallery-item {
    flex: 1 1 45%; /* Two images per row on smaller screens */
    max-width: 45%;
  }
}

@media only screen and (max-width: 480px) {
  .gallery-item {
    flex: 1 1 100%; /* Full-width image on mobile screens */
    max-width: 100%;
  }
}
.footer-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: left;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo img {
  width: 200px;
  margin: 30px; /* Adjust size of the logo */
}

.footer-column {
  flex: 1;
  margin: 10px;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #333;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #666;
  text-decoration: none;
  font-size: 14px;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.footer-column form {
  display: flex;
  flex-direction: column;
}

.footer-column input[type="email"] {
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
}

.footer-column button {
  padding: 10px;
  background-color: #a5a58d;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.footer-column button:hover {
  background-color: #888888;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-icons a {
  font-size: 20px;
  color: #666;
  text-decoration: none;
}

.social-icons a:hover {
  color: #333;
}

/* Footer bottom text */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #777;
}

/* Responsive Styling */
@media only screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .social-icons {
    width: 100%;
    justify-content: space-around;
  }

  .footer-column {
    margin-bottom: 40px;
  }

  .footer-logo {
    text-align: center;
    margin-bottom: 30px;
  }
}
/* General Button Styling */

/* Hero Section Enhancements */
.hero-content {
  position: absolute;
  text-align: center;
  color: white;
  /* Dark overlay to improve text visibility */
  padding: 20px 40px;
  border-radius: 10px;
  top: 50%;
  left: 50%;
  width: 84%;
  transform: translate(-50%, -50%);
}

.hero-content h2 {
  font-size: 57px;
  letter-spacing: 6px;
}

.hero-content h3 {
  font-size: 21px;
  margin-top: 20px;
  letter-spacing: 1px;
}

/* Parallax Section Enhanced Styling */
.parallax-section {
  background: url("3.jpg") no-repeat center center/cover;
  background-attachment: fixed;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.parallax-content {
  text-align: center;
  color: white;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay */
  padding: 30px 60px;
  border-radius: 12px;
  animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animation for smooth scrolling buttons */
.appointment-btn {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgb(3, 3, 3);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(212, 97, 187, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
  }
}

/* Responsive Design Adjustments */
@media only screen and (max-width: 768px) {
  .hero-content h2 {
    font-size: 35px;
  }

  .hero-content h3 {
    font-size: 18px;
  }
}

.video-section {
  position: relative;
  height: 80vh;
  width: 100%;
  overflow: hidden;
}

.video-container {
  position: relative;
  height: 100%;
  width: 100%;
}

video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.video-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
}

.video-overlay h5 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.video-overlay h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

.video-overlay p {
  font-size: 18px;
  margin-bottom: 30px;
}

.view-project {
  font-size: 16px;
  text-decoration: none;
  color: white;
  border-bottom: 1px solid white;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}

.view-project:hover {
  color: #cccccc;
}

/* Responsive adjustments for video section */
@media only screen and (max-width: 768px) {
  .video-overlay h2 {
    font-size: 32px;
  }

  .video-overlay p {
    font-size: 16px;
  }
}

@media only screen and (max-width: 480px) {
  .video-overlay h2 {
    font-size: 24px;
  }

  .video-overlay p {
    font-size: 18px;
    margin: 14px;
  }
}
/* Base reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Container for the projects */
.project-showcase {
  position: relative;
  width: 100%;
  padding: 50px 0;
  overflow: hidden;
  background-color: #b3b3a1;
}

.projects-wrapper {
  overflow: hidden;
  width: 100%;
}

.projects-container {
  display: flex;
}

.project {
  flex: 0 0 33.33%; /* Each project takes 1/3rd of the width by default */

  text-align: center;
  padding: 20px;
}

.project.active {
  opacity: 1;
  transform: scale(1);
}

.project img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.project-info {
  margin-top: 15px;
}

.project-info h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.project-info p {
  font-size: 14px;
  color: #777;
}

/* Controls */
.controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.nextbtnn {
  margin-right: 20px;
}

.controls button {
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  padding: 20px;
  cursor: pointer;
  border-radius: 50%;
  color: white;
  font-size: 18px;
  pointer-events: all;
}

.controls button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
@media (max-width: 768px) {
  .appointment-btn {
    width: 70vw;
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .projects-container {
    flex-wrap: nowrap; /* Prevent wrapping */
  }

  .project {
    flex: 0 0 100%; /* Full width on mobile */
  }
}

/* Fine-tuning for small screens */
@media (max-width: 480px) {
  .project {
    padding: 10px;
  }
}

/* Info Section Layout */
.info-section {
  width: 100%;
  padding: 0px 20px;
  background-color: #f9f9f9;
}

.info-row {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two equal columns */
  gap: 20px;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 600px; /* Fixed height */
}

/* .info-row:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
} */

.info-content,
.info-image {
  width: 100%;
  height: auto;
}

.info-content {
  width: 100%;
  height: auto;
}

.info-content h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #333;
}

.info-content p {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.6;
}

.info-image img {
  width: 100%;
  height: 100%; /* Ensure image fills the container */
  object-fit: cover;
}

/* Reverse the order for alternating rows */
.testimonial-grid.reverse {
}

/* Animation for appearing on scroll */
.info-row {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.info-row.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive adjustments */
@media only screen and (max-width: 768px) {
  .info-row {
    flex-direction: column;
    text-align: center;
    margin: 40px 0;
  }

  .testimonial-grid.reverse {
    flex-direction: column;
  }

  .info-content,
  .info-image {
    width: 100%;
    height: auto;
  }

  .info-content {
    padding-right: 0;
  }

  .info-content h2 {
    font-size: 2rem;
  }

  .info-content p {
    font-size: 1rem;
  }

  .info-image img {
    width: 100%;
    height: 100%; /* Ensure image fills the container */
    object-fit: cover;
  }
}
/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap");

/* Global Styles */
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* Header Section */
.project-header {
  text-align: center;
  padding: 50px 20px;
  background-color: #ffffff;
}

.project-header h1 {
  font-size: 48px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 10px;
}

.project-header p {
  font-size: 18px;
  color: #888888;
  font-weight: 400;
}

/* Hero Section */
.hero-project img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Project Description Section */
.project-description {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
}

.project-description h2 {
  font-size: 36px;
  font-weight: 600;
  color: #333333;
}

.project-description p {
  font-size: 18px;
  color: #555555;
  max-width: 900px;
  margin: 0 auto;
  margin-top: 20px;
  line-height: 1.7;
}

/* Image Gallery */
.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 40px 20px;
  background-color: #f2f2f2;
}

.gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* Shop The Look Section */
.shop-the-look {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.shop-the-look h2 {
  font-size: 32px;
  font-weight: 600;
  color: #333333;
}

.shop-items {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 40px;
}

.shop-items .item {
  flex: 1 1 calc(33.33% - 40px);
  max-width: 300px;
  margin: 10px;
  text-align: center;
}

.shop-items .item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
}

.shop-items .item p {
  font-size: 18px;
  color: #555;
}

/* Next Page Button */
.next-page {
  text-align: center;
  padding: 40px;
  background-color: #f2f2f2;
}

.next-button {
  display: inline-block;
  background-color: #333;
  color: white;
  padding: 15px 30px;
  text-transform: uppercase;
  font-size: 16px;
  text-decoration: none;
  border-radius: 50px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.next-button:hover {
  background-color: #555;
  transform: scale(1.1);
}

/* Footer Section */
.project-footer {
  background-color: #333333;
  color: white;
  text-align: center;
  padding: 30px 20px;
}

.project-footer p {
  font-size: 14px;
  color: #ccc;
}

/* Responsive Adjustments */
@media only screen and (max-width: 768px) {
  .project-header h1 {
    font-size: 36px;
  }

  .project-description h2 {
    font-size: 28px;
  }

  .shop-items .item {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .next-button {
    padding: 12px 25px;
  }
}
/* Company Overview Section Styling */
.company-overview {
  background-color: #f9f9f9;
  padding: 50px 0;
}

.company-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.company-logo img {
  max-width: 400px;
  height: auto;
  margin-right: 50px;
}

.company-content {
  max-width: 700px;
  line-height: 1.8;
}

.company-content h5 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  color: #666;
}

.company-content h2 {
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #333;
}

.company-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
}

/* Make it Responsive */
@media screen and (max-width: 768px) {
  .company-container {
    flex-direction: column;
    text-align: center;
  }
  .company-logo {
    margin-left: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .company-logo img {
    margin-bottom: 20px;
  }

  .company-content {
    max-width: 100%;
  }

  .company-content h2 {
    font-size: 36px;
  }

  .company-content p {
    font-size: 16px;
  }
}

@media screen and (max-width: 480px) {
  .company-content h2 {
    font-size: 32px;
  }

  .company-content p {
    font-size: 14px;
  }
}
/* General Button Styling */
/* General Button Styling */
.appointment-btn {
  display: inline-block;
  padding: 15px 35px; /* Increased padding for larger button */
  background-color: #ff6f61; /* Vibrant orange color to stand out */
  color: white;
  font-size: 20px; /* Larger font size */
  font-weight: bold; /* Stronger emphasis on text */
  border: 1px solid black;
  border-radius: 10px; /* Smooth, rounded edges */
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); /* Elevated shadow for a 3D effect */
  margin-top: 30px;
}

.appointment-btn:hover {
  background-color: #e68900; /* Slightly darker on hover */
  transform: translateY(-5px); /* Subtle lift effect */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4); /* Enhance shadow on hover */
}

/* Responsive Design */
@media only screen and (max-width: 768px) {
  .appointment-btn {
    width: 80vw; /* Make the button full width on mobile */
    padding: 20px 20px; /* Slightly reduce padding for mobile */
    font-size: 14px; /* Adjust font size for smaller screens */
  }
}
@media screen and (max-width: 480px) {
}

/* Hero Section Enhancements */
.hero-content {
  position: absolute;
  text-align: center;
  color: white;
  padding: 40px;
  border-radius: 12px;
  top: 10%;
  left: 50%;
  width: 90%; /* Increased for better spacing */
  transform: translate(-50%, -50%);
  /* background-color: rgba(0, 0, 0, 0.2); Dark overlay for better contrast */
}

.hero-content h2 {
  font-size: 36px;
  letter-spacing: 7px;
  margin-bottom: 20px;
}

.hero-content h3 {
  font-size: 20px;
  margin-top: 10px;
  letter-spacing: 3px;
}

/* Fixing Missing White Space (Padding and Margins) */
.section {
  padding: 60px 20px; /* Added padding for white space */
}

.section p {
  margin-bottom: 20px; /* Added margin for better spacing between elements */
}

/* Alignment Fixes */
/* Company Overview Section Styling */
.company-overview {
  background-color: #f9f9f9;
  padding: 50px 0;
}

.company-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.company-logo img {
  max-width: 300px;
  height: auto;
  margin-right: 50px;
}

.company-content {
  max-width: 700px;
  line-height: 1.8;
}

.company-content h5 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  color: #666;
}

.company-content h2 {
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #333;
}

.company-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
}

/* Make Company Overview Responsive */
@media screen and (max-width: 1024px) {
  .company-container {
    flex-direction: column; /* Stack content vertically */
    text-align: center;
  }

  .company-logo img {
    margin-bottom: 20px;
    max-width: 200px; /* Smaller image on tablet */
  }

  .company-content h2 {
    font-size: 36px;
  }

  .company-content p {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .company-container {
    flex-direction: column; /* Stack content for mobile */
    text-align: center;
    padding: 0 10px; /* Narrower padding for mobile */
  }

  .company-logo img {
    margin-bottom: 20px;
    max-width: 180px; /* Smaller logo for mobile */
  }

  .company-content {
    max-width: 100%; /* Full width content on mobile */
  }

  .company-content h2 {
    font-size: 32px; /* Smaller title on mobile */
  }

  .company-content p {
    font-size: 14px; /* Smaller text on mobile */
  }
}

@media screen and (max-width: 480px) {
  .company-content h2 {
    font-size: 28px;
  }

  .company-content p {
    font-size: 14px;
    line-height: 1.5;
  }

  .company-logo img {
    max-width: 150px; /* Further reduce logo size on very small screens */
  }
}

/* Buttons Spacing */
.button-row {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.button-row .appointment-btn {
  margin: 10px;
}
/* Responsive adjustments for Hero Section */
@media only screen and (max-width: 768px) {
  .hero-content {
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    top: 50%; /* Adjust top positioning for better alignment */
    left: 50%;
    transform: translate(-50%, -55%);
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  .hero-heading {
    font-size: 35px;
    margin-bottom: 10px;
    line-height: 1.2; /* Better line spacing for smaller screens */
  }

  .hero-subheading {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .appointment-btn {
    font-size: 22px;
    padding: 12px 25px;
    margin-top: 20px; /* Adjust margin for spacing */
  }
}

@media only screen and (max-width: 480px) {
  .hero-heading {
    font-size: 28px;
    line-height: 1.1;
  }

  .hero-subheading {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .appointment-btn {
    font-size: 18px;
    padding: 20px 20px;
    margin-top: 15px; /* Additional spacing */
  }
}

/* General white space improvements */
.section {
  padding: 60px 20px; /* Add more padding for comfortable spacing */
}

.info-section {
  padding: 80px 20px; /* More white space around sections */
}

.info-row {
  margin: 40px 0; /* More space between rows */
}

.footer-section {
  padding: 70px 20px; /* Increase white space in footer */
}

.project-showcase {
  padding: 30px 10px; /* More spacing for project section */
}

/* Text alignment adjustments */
.company-overview .company-content h2,
.info-content h2 {
  text-align: center; /* Center-align text for mobile */
}

/* Fine-tuning for small screens */
@media only screen and (max-width: 480px) {
  .section {
    padding: 50px 15px;
  }

  .info-content h2 {
    font-size: 24px; /* Smaller font on mobile for better fit */
  }

  .info-content p {
    font-size: 16px;
  }
}

/* Info Section Layout Update */
/* Info Section Layout Update */
.info-section {
  width: 100%;
  padding: 60px 0; /* Adjusted padding */

  display: flex;
  flex-direction: column;
}

.info-row {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two equal columns */
  gap: 20px;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 600px; /* Fixed height */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

/* .info-row:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
} */

.info-content {
  padding: 20px;
  background-color: #ffffff;
  height: 100%;
  /* Ensures content takes full height */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.content-child {
  width: 84%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.info-content h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #333;
}

.info-content p {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px; /* Increased margin */
}

/* Full-screen image styling */
.info-image {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.info-image img {
  width: 100%; /* Full width of the container */
  height: 100%; /* Full height to cover the side */
  object-fit: cover; /* Ensures the image covers the area without distortion */
  border-radius: 0; /* Removes any border-radius */
  box-shadow: none; /* Removes any box-shadow for full-screen effect */
}

/* Reverse for alternating rows */

.testimonial-grid.reverse {
  flex-direction: row-reverse;
}

/* Responsive Adjustments */
@media only screen and (max-width: 768px) {
  .info-row {
    grid-template-columns: 1fr; /* Stack content on mobile */
    height: auto;
  }

  .testimonial-grid.reverse {
    flex-direction: column;
  }

  .info-content {
    padding: 20px;
  }

  .info-content h2 {
    font-size: 2rem;
  }

  .info-content p {
    font-size: 1rem;
  }

  .info-image img {
    max-width: 100%;
    height: auto; /* Ensures proper aspect ratio on smaller screens */
  }
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.slideshow-container {
  position: relative;
  max-width: 100%;
  height: 100vh;
  margin: auto;
  overflow: hidden;
}

.mySlides {
  display: none;
  position: relative;
  height: 100vh;
}

.mySlides img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

/* Remove overlay, instead use shadow for better image visibility */
.hero-content {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  /* background: rgba(0, 0, 0, 0.3); Transparent background for text block */
  padding: 20px;
  border-radius: 10px;
}

.hero-heading {
  font-size: 3.5rem;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
}

.hero-subheading {
  font-size: 1.8rem;
  margin-top: 10px;
}

/* Responsive adjustments for mobile view */
@media only screen and (max-width: 768px) {
  .hero-content {
    padding: 10px;
    width: 90%;
  }

  .hero-heading {
    font-size: 2.5rem;
  }

  .hero-subheading {
    font-size: 1.2rem;
  }
}

@media only screen and (max-width: 480px) {
  .hero-heading {
    font-size: 2rem;
  }

  .hero-subheading {
    font-size: 1rem;
  }
  .hero {
    top: 20px;
  }
}

/* Navigation buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 3px;
  user-select: none;
  transition: 0.6s ease;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
.how-to-use {
  background: #f4f4f4;
  padding: 80px 20px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #222;
  margin-bottom: 50px;
}

.highlight {
  color: #ff4d00;
  font-size: 18px;
}

/* .use-card {
  background: white;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  width: 320px; 
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
} */

.use-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.3);
}

.use-icon {
  font-size: 3rem;
  color: #ff4d00;
  margin-bottom: 20px;
}

.use-card h3 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #222;
  margin-bottom: 15px;
}

.use-card p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 0;
  line-height: 1.5;
}

/* Responsive - Mobile Par 2-2 Row Me Aayenge */
@media (max-width: 992px) {
  .col-md-6 {
    width: 50%;
  }
}

/* Responsive - Mobile Par Cards Ek Column */
@media (max-width: 768px) {
  .col-md-4 {
    width: 100%;
    margin-bottom: 20px;
  }
}
/* Ensure all cards stay in one row */
/* Desktop ke liye teeno ek row me */
.row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 20px;
}

/* Cards ka width fix taaki ek row me aaye */
.use-card {
  width: 300px;
  min-height: 350px;
  background: white;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

/* ✅ Mobile ke liye teeno alag rows me aa jayenge */
@media (max-width: 768px) {
  .row {
    flex-wrap: wrap; /* Mobile pe cards alag rows me aa jayenge */
  }

  .use-card {
    width: 100%;
    padding: 40px 0px;
    min-height: 400px; /* Mobile me full width */
  }
}
.core-principles {
  background: linear-gradient(45deg, #b3b3a1, #987f57);
  padding: 60px 20px;
}

.principle-container {
  background: #f7f6f6;
  padding: 40px 20px;
  margin: 20px auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
  text-align: center;
}

.section-title {
  font-size: 28px;
  color: linear-gradient(45deg, #b3b3a1, #987f57);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.section-title i {
  font-size: 30px;
  color: #b3b3a1;
}

/* Values & Services Containers */
.values-container,
.services-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.value-card,
.service-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  width: 250px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.value-card i,
.service-card i {
  font-size: 40px;
  color: #b3b3a1;
  margin-bottom: 10px;
}

.value-card h3,
.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: black;
}

.value-card p,
.service-card p {
  font-size: 16px;
  color: #444;
}

/* Responsive Design */
@media (max-width: 768px) {
  .values-container,
  .services-container {
    flex-direction: column;
    align-items: center;
  }

  .value-card,
  .service-card {
    width: 90%;
  }

  .section-title {
    font-size: 24px;
  }
}
.navbar {
  position: fixed; /* Navbar ko fix kar diya */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000; /* Ensure it's always on top */
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(45deg, #b3b3a1, #987f57);
  padding: 15px 5%;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  margin: 5px auto;
  background: white;
  transition: 0.3s;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  transition: 0.3s ease;
}

/* Default hover effect */
.nav-links a:hover {
  color: #ffe600;
}

/* Active page ke liye alag color */
.nav-links a.active {
  color: #ffcc00;

}

/* Ensure content does not hide under navbar */

.logo img {
  height: 50px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: #ffe600;
}
.technical-comparison {
  background: #f7f6f6;
  padding: 60px 20px;
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 28px;
  color: black;
  margin-bottom: 30px;
}

.table-wrapper {
  overflow-x: auto; /* Mobile के लिए Scrollable बनाएगा */
  border-radius: 10px;
  background: white;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px; /* Scrollable effect देगा small screens पर */
}

th,
td {
  padding: 12px;
  border: 1px solid #ddd;
  text-align: center;
}

th {
  background: #082e83;
  color: white;
  font-weight: bold;
}

td {
  background: #fff;
  color: #333;
}

.price-header {
  background: #ff6f61;
  color: white;
  font-weight: bold;
  font-size: 20px;
  padding: 15px;
}

.price-row td {
  background: #f9f9f9;
  font-weight: bold;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .table-wrapper {
    overflow-x: scroll; /* Mobile पर Table Scrollable रहेगा */
  }

  table {
    min-width: 600px;
  }

  .section-title {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: linear-gradient(45deg, #b3b3a1, #987f57);
    position: absolute;
    top: 60px;
    right: 0;
    width: 50%;
    text-align: center;
    padding: 10px 0;
    box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.3);
  }

  .nav-links.show {
    display: flex;
  }
}

.footer {
  background: linear-gradient(45deg, #b3b3a1, #987f57);
  color: white;
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
  position: relative;
  bottom: 0;
  width: 100%;
}