body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
}
/* Default for larger screens */
body {
  font-size: 16px;
}

@media (max-width: 768px) {
  /* Styles for tablets and smaller */
  body {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  /* Styles for phones */
  body {
    font-size: 12px;
  }
}


.container {
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
    background-image: url('c:\xampp\htdocs\lush\milk.jpg'); /* Replace with your image path */
    background-size: cover; /* Ensures the image covers the entire div */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    padding: 20px; /* Adds padding inside the container */
    border-radius: 10px; /* Optional: rounds the edges of the container */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Optional: adds a shadow for better appearance */
  }
  

/* Hero Section */
/* Ensure the header has the proper height */
header {
  height: 50vh; /* Full height of the viewport, adjust if you want it smaller */
  display: flex;
  align-items: center; /* Vertically center the content */
  justify-content: center; /* Horizontally center the content */
  text-align: center;
  position: relative;
}

/* Hero Section Styles */
.hero {
  position: relative; /* Change to relative */
  width: 100%;
  height: 50vh; /* Ensure it's only the upper half of the viewport */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 1s ease-in-out;
}
.hero {
  position: relative;
  width: 100%;
  height: 50vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: url(#ripple); /* Apply SVG filter */
}


@keyframes ripple-wave {
  0%, 100% {
    filter: url(#ripple) scale(10);
  }
  50% {
    filter: url(#ripple) scale(15);
  }
}


@keyframes ripple {
  0%, 100% {
    filter: brightness(0.7) blur(2px);
    transform: scale(1);
  }
  50% {
    filter: brightness(0.8) blur(4px);
    transform: scale(1.02);
  }
}
.ripple-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('images/ripple.gif') repeat;
  opacity: 0.3;
  z-index: 1;
  animation: moveRipple 6s infinite linear;
}

@keyframes moveRipple {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100% 100%;
  }
}
.container {
  position: relative;
  z-index: 2;
  color: white;

  text-align: center;
  color: white;
  padding: 50px;
}

.cta {
  text-decoration: none;
  color: white;
  background-color: #661a1a;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.cta:hover {
  background-color: #f0a500;
}

/* Hero Text and Button */
.hero .container {
  position: relative;
  z-index: 2; /* Ensures text is above the background */
  color: white;
}

h1, h2, p {
  margin: 0;
  padding: 0;
}

.cta {
  text-decoration: none;
  color: white;
  background-color: #661a1a;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.cta:hover {
  background-color: #f0a500;
}


.slider img {
  width: 100%;
  height: auto;
  object-fit: cover; /* Ensures the image fills the container */
}

  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  .hero .cta {
    display: inline-block;
    padding: 10px 20px;
    background-color: #f0a500;
    color: rgb(181, 51, 51);
    text-decoration: none;
    border-radius: 5px;
  }
  
/* Highlight Cards Section */
.highlight-cards {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin: 40px auto;
    padding: 20px;
  }
  
  .highlight-cards .container {
    display: flex;
    gap: 20px;
  }
  
  .card {
    flex: 1 1 calc(33.33% - 20px);
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background: #fff;
    animation: heartbeat 1.5s infinite;
    transform-origin: center;
    cursor: pointer;
    transition: transform 0.3s;
  }
  
  .card:hover {
    transform: scale(1.05);
  }
  
  .card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #ddd;
  }
  
  .card h3 {
    font-size: 1.5rem;
    margin: 10px 0;
  }
  
  .card p {
    font-size: 1rem;
    margin: 10px 15px;
    color: #666;
  }
  
  .card .read-more {
    display: inline-block;
    margin: 15px 0;
    padding: 10px 15px;
    background-color: #ff5722;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
  }
  
  .card .read-more:hover {
    background-color: #e64a19;
  }
  
  /* Heartbeat Animation */
  @keyframes heartbeat {
    0%,
    100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
  }
  /* Social Media Bar */
.social-bar {
    background-color: #fff; /* Background color for the bar */
    padding: 5px 20px;
    z-index: 10; /* Adjust the value as needed */
    position: relative; /* Ensure z-index works */
    display: block;
    visibility: visible;
    opacity: 1;
  }
  
  .social-bar .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  
  .social-bar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
  }
  
  .social-bar ul li {
    margin-left: 10px;
  }
  
  .social-bar ul li a img {
    width: 20px; /* Icon size */
    height: 20px;
    display: block;
  }
  
  .social-bar ul li a:hover img {
    filter: brightness(1.5); /* Brightens the icon on hover */
  }
  
.navbar {
  background: #040226;
  color: black;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  top: 0; /* Sticks to the top of the viewport */
  z-index: 1000; /* Keeps it above other elements */
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3); /* Optional: Add shadow */

}
/* Style for the logo */
.navbar .logo img {
    height: 50px; /* Adjust size as needed */
    width: auto;
    justify-content: center;
  }

.navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  
}

.navbar ul li {
  margin: 0 15px;
}

.navbar ul li a {
  color: white;
  text-decoration: none;
}

.navbar ul li a:hover {
  text-decoration: underline;
}
.social-bar a {
  color: #fff; /* White text for dark backgrounds */
  background-color: #333; /* Dark background */
}

.services {
  background: #f4f4f4;
  padding: 50px 0;
}

.services h2 {
  text-align: center;
  margin-bottom: 20px;
}

.service-cards {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.card {
  background: #fff;
  padding: 20px;
  margin: 10px;
  flex: 1 1 calc(25% - 20px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  text-align: center;
}

.card h3 {
  margin-top: 0;
}

.footer {
  background-color: #333;
  color: #fff;
  padding: 50px 0;
  text-align: center;
}

.footer .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-logo img {
  max-width: 150px;
}

.footer-nav, .footer-social, .footer-vision {
  flex: 1;
  margin: 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-nav h3,
.footer-social h3,
.footer-vision h3 {
  margin-bottom: 10px;
  font-size: 1.4rem;
  font-weight: bold;
}

.footer-nav ul,
.footer-social ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.footer-nav ul li,
.footer-social ul li {
  margin: 10px 0;
}

.footer-nav a,
.footer-social a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
}

.footer-nav a:hover,
.footer-social a:hover {
  color: #f0a500; /* Hover effect for links */
}

.footer-social .social-icon {
  margin: 0 10px;
  font-size: 1.5rem;
}

.footer-vision p {
  font-size: 1rem;
  color: #bbb;
  max-width: 500px;
  margin: 20px auto;
}

@media (max-width: 768px) {
  .footer .container {
    flex-direction: column;
    align-items: center;
  }

  .footer-logo {
    margin-bottom: 20px;
  }

  .footer-nav,
  .footer-social,
  .footer-vision {
    text-align: center;
    align-items: center;
  }

  .footer-social .social-icon {
    font-size: 2rem;
    margin: 0 15px;
  }
}


/* Projects Done Section */
.projects-done {
    padding: 40px 20px;
    background-color: #f9f9f9;
    text-align: center;
  }
  
  .projects-done h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: black;
  }
  
  .projects-done p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
  }
  
  .project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 0 auto;
  }
  
  .project-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s;
  }
  
  .project-card:hover {
    transform: scale(1.05);
  }
  
  .project-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid #ddd;
  }
  
  .project-card h3 {
    font-size: 1.25rem;
    margin: 10px;
  }
  
  .project-card p {
    font-size: 1rem;
    margin: 10px;
    color: #666;
  }
/* Quote Section */
.quote-section {
    padding: 40px 20px;
    background: #333; /* Dark background for emphasis */
    color: #fff;
    text-align: center;
  }
  
  .quote-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  
  .engineer-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ff5722; /* Highlight border color */
  }
  
  .quote-text {
    max-width: 600px;
  }
  
  .quote {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .engineer-name {
    font-size: 1.25rem;
    font-weight: bold;
    margin: 5px 0;
  }
  
  .engineer-title {
    font-size: 1rem;
    color: #ff5722; /* Accent color */
  }
/* Clients Section */
.clients-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
    text-align: center;
  }
  
  .clients-section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .clients-section p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
  }
  
 /* Swiper Container */
.swiper-container {
  width: 100%; /* Full width */
  padding: 20px 0; /* Optional: Add padding for spacing */
}

/* Swiper Slide (Individual client logo) */
.swiper-slide {
  display: flex;
  justify-content: center; /* Center image horizontally */
  align-items: center; /* Center image vertically */
  width: auto; /* Let the slides take the natural width based on content */
  height: 150px; /* Adjust height of the slide */
}

/* Image inside the swiper-slide */
.swiper-slide img {
  max-width: 50%; /* Ensure image doesn't overflow */
  height: 20%; /* Ensure image covers the slide height */
  object-fit: contain; /* Ensure the image maintains its aspect ratio */
  max-height: 50%; /* Restrict the height to the slide's height */
}

  
  /* Optional: Styling for navigation buttons and pagination */
  .swiper-button-next,
  .swiper-button-prev {
    color: #ff5722; /* Customize button color */
  }
  
  .swiper-pagination-bullet {
    background-color: #ff5722; /* Customize pagination bullets */
  }
  
  .swiper-pagination-bullet-active {
    background-color: #d43f00; /* Active bullet color */
  }
  
  /* Navigation Buttons */
  .swiper-button-next,
  .swiper-button-prev {
    color: #ff5722;
  }
    /* Heartbeat animation for the h1 */
/* Horizontal movement animation */
@keyframes moveHorizontal {
    0% {
      transform: translateX(-100%); /* Start from the left outside the screen */
    }
    50% {
      transform: translateX(100%); /* Move to the right outside the screen */
    }
    100% {
      transform: translateX(-100%); /* End back on the left side */
    }
  }
  
  /* Apply the animation to the h1 */
  .hero h1 {
    display: inline-block;
    font-size: 3rem; /* Adjust font size as needed */
    white-space: nowrap; /* Prevent text from wrapping */
    animation: moveHorizontal 5s ease-in-out infinite; /* Apply animation */
  }

  /*services page*/

  
  .background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20%;
    object-fit: cover; /* Ensures the video covers the entire header area */
    z-index: -1; /* Places the video behind the overlay content */
  }
  
  .overlay {
    position: relative;
    z-index: 2; /* Ensures the overlay content is above the video */
    color: white;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8); /* Adds a shadow for text readability */
  }
  
  .overlay h1 {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  
  .overlay p {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
  
  .overlay .cta {
    padding: 10px 20px;
    background-color: #f0a500;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
  }
  
  .overlay .cta:hover {
    background-color: #d88a00;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .overlay h1 {
      font-size: 2rem;
    }
  
    .overlay p {
      font-size: 1rem;
    }
  }
  
  
/* General Styles */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

h1, h2, h3 {
  text-align: center;
  margin: 0;
}

p {
  text-align: center;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('hero-bg.jpg') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.2rem;
}

/* Services Section */
.services {
  margin-top: -50px; /* Negative margin to overlap with header */
  padding-top: 20px; /* Add padding if needed */
  background-color: #fff; /* Background color for better visibility */
  position: relative;
  z-index: -6; /* Ensure it appears above the background video */
  box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1); /* Optional: Add shadow for depth */
}

.services h2 {
  text-align: center;
  margin-bottom: 20px;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
  
  .service-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
  }
  
  .service-card.expanded {
    max-height: 400px; /* Increased height for expanded state */
  }
  
  .more-info {
    display: none;
    font-size: 0.9rem;
    margin-top: 10px;
    color: #555;
  }
  
  .service-card.expanded .more-info {
    display: block;
  }
  
  .learn-more {
    margin-top: 10px;
    padding: 10px 20px;
    background: #f0a500;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .learn-more:hover {
    background: #e4c837;
  }
  button.learn-more {
    position: relative; /* Ensure proper placement */
    z-index: 10; /* Bring button above any overlay */
    pointer-events: auto; /* Ensure the button can be clicked */
  }
  
  /* Responsive adjustments for smaller screens */
  @media (max-width: 992px) {
    .service-cards {
      grid-template-columns: repeat(2, 1fr); /* 2 cards per row on medium screens */
    }
  }
  
  @media (max-width: 576px) {
    .service-cards {
      grid-template-columns: 1fr; /* 1 card per row on small screens */
    }
  }
  
  /* Services Section */
.services {
  padding: 50px 20px;
  background: #f9f9f9;
}

.services h2 {
  margin-bottom: 30px;
  font-size: 2rem;
}

/* Service Card Styles */
.service-cards {
    display: grid; /* Use grid layout */
    grid-template-columns: repeat(4, 1fr); /* 4 cards per row */
    gap: 20px; /* Spacing between cards */
    margin-top: 20px;
  }
  
  .service-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
  }
  
  .service-card.expanded {
    max-height: 400px; /* Increased height for expanded state */
  }
  
  .more-info {
    display: none;
    font-size: 0.9rem;
    margin-top: 10px;
    color: #555;
  }
  .service-card .more-info {
    display: none; /* Hidden by default */
  }
  
  .service-card.expanded .more-info {
    display: block; /* Visible when expanded */
  }
  
  .service-card .learn-more {
    margin-top: 10px;
    cursor: pointer;
  }
  
  .learn-more {
    margin-top: 10px;
    padding: 10px 20px;
    background: #f0a500;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .learn-more:hover {
    background: #e4c837;
  }
  
  /* Responsive adjustments for smaller screens */
  @media (max-width: 992px) {
    .service-cards {
      grid-template-columns: repeat(2, 1fr); /* 2 cards per row on medium screens */
    }
  }
  
  @media (max-width: 576px) {
    .service-cards {
      grid-template-columns: 1fr; /* 1 card per row on small screens */
    }
  }

  .gallery {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
  }
  
  .gallery h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  .gallery p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }
  
  .gallery-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .gallery-item img,
  .gallery-item video {
    width: 100%;
    height: 80%;
    display: block;
  }
  
  .gallery-item .caption {
    padding: 10px;
    font-size: 0.9rem;
    color: #333;
  }
  .testimonials {
    padding: 60px 20px;
    background-color: #f4f4f4;
    text-align: center;
  }
  
  .testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  .testimonials p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
  }
  
  .testimonial-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  
  .client-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
  }
  
  blockquote {
    font-style: italic;
    font-size: 1rem;
    color: #333;
    margin-bottom: 10px;
  }
  
  .client-name {
    font-size: 0.9rem;
    font-weight: bold;
    color: #666;
  }
  
  /* Swiper specific styles */
  .swiper {
    width: 100%;
    height: auto;
  }
  
  .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .pricing {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
  }
  
  .pricing h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .pricing p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
  }
  
  .pricing-tier {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
    padding: 20px;
    transition: all 0.3s ease;
  }
  
  .pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .pricing-header h3 {
    font-size: 1.8rem;
  }
  
  .toggle-btn {
    background-color: #bd3d29;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .toggle-btn:hover {
    background-color: #bd3d29;
  }
  
  .pricing-details {
    display: none;
    padding-top: 20px;
    text-align: left;
  }
  
  .pricing-details ul {
    list-style-type: none;
    padding: 0;
  }
  
  .pricing-details li {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  
  .price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #8d5b10;
    margin-top: 20px;
  }
  
  .select-btn {
    background-color: #b06d2e;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
  }
  
  .select-btn:hover {
    background-color: #7d6428;
  }

  /* General Styles */
/* General Styles */


.container {
  width: 80%;
  margin: 0 auto;
  padding: 40px 0;
}

/* About Us Section */
/* General Styles */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

.container {
  width: 80%;
  margin: 0 auto;
  padding: 40px 0;
}

/* About Introduction Section (Above About Us) */
/* About Introduction Section (Above About Us) */
/* About Introduction Section */
/* About Introduction Section */
.about-introduction {
  position: relative;
  height: 50vh; /* Optional: full screen */
  overflow: hidden;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Makes the video fill the container while preserving aspect ratio */
  z-index: -1; /* Ensure the video stays behind the content */
  transition: transform 0.2s ease-out; /* Smooth transition for video movement */
}

/* Optional: Add a smooth effect for text */
.about-introduction h1, .about-introduction .intro {
  position: relative;
  z-index: 1; /* Ensure text is above the video */
  color: white; /* Ensure text color is visible on video */
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5); /* Optional text shadow for visibility */
}

.container {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
}

.about-introduction:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  filter: blur(5px) saturate(1.5) grayscale(0.2);
  z-index: -1; /* Ensure it's behind the content */
  transition: transform 0.2s ease-out;
}

.about-introduction .intro {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

/* About Us Section with Background Image */
.about-us {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 0;
  color: white;
  text-align: center;
}

.about-us .overlay {
  background-color: rgba(0, 0, 0, 0.5); /* dark overlay to make text stand out */
  padding: 50px 0;
}

.about-us h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.intro {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.about-info {
  flex: 1;
  padding: 0 20px;
  text-align: left;
}

.about-info h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.about-info p {
  font-size: 1.1rem;
  color: #ddd;
}

/* Core Values */
.about-values {
  margin: 40px 0;
}

.about-values h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-values ul {
  list-style-type: none;
  padding: 0;
}

.about-values li {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.about-values i {
  margin-right: 10px;
  color: #ffb400;
}

/* Trust Indicators Section */
.trust-indicators {
  background-color: #f9f9f9;
  padding: 60px 0;
}

.trust-indicators h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 40px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  justify-items: center;
}

.trust-item img {
  max-width: 150px;
  height: auto;
}

.rating i {
  color: #f39c12;
}

.rating p {
  font-size: 1rem;
  color: #333;
}

.company-history {
  background-color: #f4f4f4;
  padding: 50px 0;
}

.company-history .container {
  max-width: 1200px;
  margin: 0 auto;
}

.company-history h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.company-history p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.team-slider {
  padding: 50px 0;
  background-color: #f9f9f9;
}

.team-slider h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.team-slider-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.team-slider-items {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.team-member {
  width: 250px;
  text-align: center;
  border: 2px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin: 0 15px;
}

.team-member:hover {
  transform: scale(1.05);
}

.team-member-photo img {
  width: 100%;
  height: 50;
  border-bottom: 2px solid #ddd;
}

.team-member-info {
  padding: 20px;
}

.team-member-info h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.team-member-info p {
  font-size: 1.1rem;
  color: #555;
}
.more-info {
  display: none;
}


.more-info-btn {
  background-color: #b44b2b;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

.more-info-btn:hover {
  background-color: #e4442f;
}

.team-member-details {
  display: none;
  margin-top: 15px;
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}

.team-member.active .team-member-details {
  display: block;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 1;
}

.prev {
  left: 0;
}

.next {
  right: 0;
}

.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.video-background video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.5; /* Reduce opacity to let text stand out */
}
 
.contact-container {
  display: flex;
  justify-content: space-between;
  padding: 50px;
  gap: 50px;
}

.contact-form {
  width: 50%;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.input-group {
  margin-bottom: 20px;
}

.input-group label {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.input-group textarea {
  resize: vertical;
}

.submit-btn {
  background-color: #bd3d29;
  color: white;
  padding: 15px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #bd3d29;
}

.contact-info {
  width: 40%;
  padding: 30px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 1.1rem;
  margin: 10px 0;
}

#map {
  width: 100%;
  height: 300px;
  margin-top: 30px;
  border-radius: 10px;
}
.case-study {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.case-content {
  flex: 1;
  padding: 20px;
}

.case-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.reverse {
  flex-direction: row-reverse;
}

.portfolio-projects, .case-studies, .client-testimonials, .cta {
  padding: 40px 20px;
  text-align: center;
}
.portfolio-projects .project-card, .case-studies .case-study {
  display: inline-block;
  width: 30%;
  margin: 10px;
  text-align: center;
}
.portfolio-projects img {
  max-width: 100%;
  height: auto;
}
.project-card h3, .case-study h3 {
  font-size: 1.2em;
  margin-top: 10px;
}
.project-card a {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}
header.hero-small {
  padding-bottom: 50px; /* Adjust this value if more space is needed */
  position: relative;
  z-index: 1; /* Keeps the header on top while other elements stay below */
}


.hero-proj {
  position: relative;
  padding: 50px 0;
  text-align: center;
}

.hero-proj .proj-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  background-color: #f9f9f9;
}

.hero-proj .hero-image {
  flex: 1;
  width: 100%;
  object-fit: cover;
  border-radius: 15px 0 0 15px;
  margin-right: 5%;
}

.hero-proj .card-content {
  flex: 1;
  padding: 30px;
  background: #ffffff;
  border-radius: 0 15px 15px 0;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}

.hero-proj .card-content h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero-proj .card-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #333;
}

.hero-proj .learn-more {
  color: #b71c1c;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.3s;
}

.hero-proj .learn-more:hover {
  border-bottom: 2px solid #b71c1c;
}




/* Header Section */


.header-text {
  flex: 1;
}

.about1-us-card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: absolute;
  left: 10%; /* Moves the card slightly to the left of the image */
  top: 110px;  /* Adjust this to move the card vertically */
  width: 100%;  /* Make the card smaller, 40% of the width */
  max-width: 400px;  /* Set a max width to avoid it becoming too large */
  z-index: 2;  /* Ensure the card stays above the image */
  border-bottom: 9px solid rgb(126, 7, 13); /* Adds a thick blue line below the card */
}

.header-image img {
  width: 60%;
  height: 90%;
  border-radius: 8px;
  position: absolute;
  right: 17%; /* Moves the image away from the right edge */
  top: 20px;
  max-height: 400%;
  object-fit: cover;
}


/* Section 1 Styling */
.section-1 {
  background: linear-gradient(135deg, #84241d, #aa4020,#711414);   
  color: #fff;
  text-align: center;
  padding: 50px 20px;
  box-sizing: border-box;
  max-height: 650px;
}

.section-1 h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.section-1 p {
  font-size: 1rem;
  margin-bottom: 40px;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.stat {
  max-width: 300px;
  box-sizing: border-box;
}

.stat h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.stat p {
  font-size: 1rem;
}

/* Responsive styles for small screens */
@media only screen and (max-width: 768px) {
  /* Portfolio Projects Section */
  .portfolio-projects .project-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
    width: 100%
  }
  .portfolio-projects .project-card img {
    max-width: 1o0%;
    height: auto;
    margin-bottom: 10px;
  }

  /* Case Studies Section */
  .case-studies .case-study {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
    width: 100%
  }
  .case-studies .case-study.reverse {
    flex-direction: column;
  }
  .case-studies .case-image img {
    max-width: 90%;
    height: auto;
    margin-bottom: 10px;
  }
  .case-studies .case-content {
    margin-bottom: 20px;
  }

  /* Testimonials Section */
  .testimonials .testimonial-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .testimonials .testimonial-card img.client-photo {
    max-width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
  }
  .swiper {
    width: 100%;
  }

  /* Call to Action Section */
  .cta {
    text-align: center;
    padding: 15px;
  }
  .cta a {
    display: inline-block;
    margin-top: 10px;
    font-size: 16px;
    color: #007BFF;
    text-decoration: underline;
  }

  /* Footer Section */
  #footer {
    padding: 20px;
    text-align: center;
    font-size: 14px;
    background-color: #f9f9f9;
  }
}


@media only screen and (max-width: 768px) {
  /* Contact Container */
  .contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  /* Contact Form */
  .contact-form {
    width: 100%;
    max-width: 500px;
    text-align: center;
    margin-bottom: 20px;
  }
  .contact-form h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .contact-form .input-group {
    margin-bottom: 15px;
  }
  .contact-form label {
    font-size: 14px;
    margin-bottom: 5px;
    display: block;
  }
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  .contact-form .submit-btn {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }

  /* Contact Info */
  .contact-info {
    width: 100%;
    max-width: 500px;
    text-align: center;
  }
  .contact-info h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .contact-info p {
    font-size: 14px;
    margin-bottom: 10px;
  }

  /* Map */
  #map {
    width: 100%;
    height: 200px;
    margin-top: 15px;
    background-color: #e0e0e0; /* Placeholder color for map */
  }
}

@media only screen and (max-width: 768px) {
  /* About Us Section */
  .about-us {
    background-size: cover;
    background-position: center;
    padding: 20px;
    color: #fff;
  }
  .about-us .overlay {
    padding: 20px;
  }
  .about-us .about-info, .about-values {
    margin-bottom: 20px;
    text-align: center;
  }
  .about-us h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .about-us p, .about-values ul li {
    font-size: 14px;
  }
  .about-values ul {
    padding: 0;
    list-style: none;
  }
  .about-values ul li {
    margin-bottom: 10px;
  }

  /* Company History Section */
  .company-history {
    padding: 20px;
    text-align: center;
  }
  .company-history h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .company-history p {
    font-size: 14px;
    line-height: 1.6;
  }

  /* Trust Indicators Section */
  .trust-indicators {
    padding: 20px;
  }
  .trust-indicators h2 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
  }
  .trust-indicators .trust-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  .trust-indicators .trust-item {
    flex: 1 1 calc(50% - 20px); /* Two items per row */
    text-align: center;
  }
  .trust-indicators img {
    max-width: 100%;
    height: auto;
  }
  .trust-indicators .rating {
    font-size: 14px;
    margin-top: 10px;
  }

  /* Team Slider Section */
  .team-slider {
    padding: 20px;
  }
  .team-slider h2 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
  }
  .team-slider-container {
    overflow-x: auto;
    white-space: nowrap;
  }
  .team-slider-items {
    display: inline-flex;
    gap: 15px;
  }
  .team-member {
    display: inline-block;
    width: 250px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 15px;
    background: #fff;
  }
  .team-member img {
    max-width: 100%;
    height: auto;
    border-radius: 50%;
    margin-bottom: 10px;
  }
  .team-member h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .team-member p {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .more-info-btn {
    font-size: 14px;
    padding: 5px 10px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
}
