 @import url('https://fonts.cdnfonts.com/css/gotham-6');
 @import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300&display=swap');
 @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200&display=swap');

                     
   body {
      margin: 0;
      padding: 0;
      font-family: Arial, sans-serif;
      background-color: black;
      color: white;
      font-family: 'Montserrat', sans-serif;
    }

    .banner {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background-color: rgba(255, 255, 255, 0);
      z-index: 999;
    }

    .logo {
      float: left;
      padding: 15px;
      color: white;
    }

    .menu {
      float: right;
      padding: 15px;
      background-color: transparent;
      margin-top: 15px;
      margin-right: 15px;
      font-weight: 600;
    }

    .menu a {
      color: white;
      text-decoration: none;
      margin-left: 15px;
      transition: color 0.3s;
    }

    .menu a:hover {
      color: #efa229;
    }

    .menu-toggle {
        display: none; /* Hide menu toggle by default */
      }

    .video-container {
      position: relative;
      height: 0;
      padding-bottom: 56.25%;
      overflow: hidden;
    }

    .video-container video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .social-icons {
      position: fixed;
      bottom: 50px;
      right: 20px;
      opacity: 1;
      transition: opacity 0.3s;
      color: white;
    }

    .social-icons.hidden {
      opacity: 0;
    }

    .social-icons a {
      display: inline-block;
      margin-left: 10px;
      color: white;
      text-decoration: none;
      transition: color 0.3s;
    }

    .social-icons a:hover {
      color: #666;
    }


    .content {
      margin-top: 100px;
      text-align: center;
      font-size: 24px;
    }

     /* Media Query for Mobile View */
     @media (max-width: 768px) {
        .menu {
          display: none; /* Hide menu on mobile view */
        }
  
        .menu-toggle {
          display: block; /* Show menu toggle on mobile view */
          position: fixed;
          top: 15px;
          right: 10px;
          width: 30px;
          height: 35px;
          cursor: pointer;
          z-index: 9999;
        }
  
        .menu-toggle .bar {
          display: block;
          width: 100%;
          height: 3px;
          background-color: white;
          margin-bottom: 5px;
        }
  
        .logo {
          width: 100px;
          padding: 10px;
        }
  
        .banner {
          background-color: rgba(255, 255, 255, 0);
        }
  
        .menu.show {
          display: block;
          position: fixed;
          top: 60px;
          right: -15px;
          width: 100%;
          height: calc(100vh - 60px);
          background-color: black;
          overflow-y: auto;
        }
  
        .menu.show a {
          display: block;
          padding: 10px;
          border-bottom: 1px solid black;
        }
    }

    .section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: nowrap;
  }
  
  .column {
      flex: 1;
      padding: 10px;
      
  }
  
  .column img {
      max-width: 100%;
      height: auto;

  }
  
  .about-content {
      text-align: left;
      color: #efa229;
  }
  .about-content p{
    text-align: justify;
  }
  
  @media screen and (max-width: 600px) {
    .section {
        flex-direction: column;
        align-items: stretch;
    }
    
    .column {
        width: 100%;
    }
}

.red{
  color: white;
  text-decoration: none;
  border-bottom: 1px solid white;
}


.section-port {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 120vh;
  background-image: url('background.jpg');
  background-size: cover;
  background-position: center;
}

/* Style the title */
.section-port h1 {
  text-align: center;
  color: #efa229;
  letter-spacing: 2px;
}

/* Style the paragraph */
p {
  text-align: center;
  color: white;
  margin: 20px 0;
  text-align: center;
}

/* Style the image container */
.image-container {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap; /* Added property for smaller screens */
}

/* Style the images */
.image-container a {
  display: inline-block;
  position: relative;
  width: 300px;
  height: 500px;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
  transform-origin: center center; /* Added property for smoother zoom */
}
.image-container video{
  filter: grayscale(100%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-container a:hover video{
  filter: grayscale(0%);
}
/* Zoom effect on hover */
.image-container a:hover img {
  transform: scale(1.1);
}

/* Style the image titles */
.image-container .image-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-container a:hover .image-title {
  opacity: 1;
}

/* Change the image color on hover */
.image-container img:hover {
  filter: grayscale(0%);
}

/* Media query for mobile view */
@media (max-width: 768px) {
  .image-container a {
    margin: 10px 0; /* Added margin for smaller screens */
    height: 300px;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .section-port {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 170vh;
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
  }
  
}
.service-section {
  text-align: center;
  padding-top: 30px;
}

.service-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #efa229;
  letter-spacing: 2px;
}

.service-paragraph {
  margin-bottom: 20px;
}

.service-image {
  display: inline-block;
  margin: 0 100px;
  margin-bottom: 20px;
  padding-top: 20px;
}

.service-paragraph::after {
  content: "";
  display: block;
  height: 20px;
}

/* Common styles for all screen sizes */

.our-process {
  background-image: url("17.jpg");
  background-size: cover;
  padding: 40px;
}

.container {
  max-width: 960px;
  margin: 0 auto;
}

.section-title {
  font-size: 28px;
  color: #efa229;
  text-align: center;
}

.section-description {
  font-size: 16px;
  color: #ffffff;
  text-align: center;
  margin-bottom: 30px;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}

.image-item {
  text-align: center;
}

.image-item img {
  width: 300px;
  border-radius: 30px;
  filter: grayscale(100%);
}

.our-process h3 {
  color: #efa229;
  text-shadow: 2px 0px 2px #222121;
}

.image-description {
  font-size: 14px;
  color: #ffffff;
  margin-top: 10px;
}

/* Media queries for responsive layout */

@media screen and (max-width: 768px) {
  /* Adjustments for screens up to 768px wide */
  
  .image-grid {
    grid-template-columns: 1fr;
  }

  .image-item img {
    width: 100%;
  }

  .section-title {
    font-size: 24px;
  }

  .section-description {
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  /* Adjustments for screens up to 480px wide */

  .our-process {
    padding: 20px;
  }

  .section-title {
    font-size: 20px;
  }

  .section-description {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .image-item img {
    border-radius: 20px;
  }

  .image-description {
    font-size: 12px;
    margin-top: 5px;
  }
}

.client-reviews {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.review-card {
  width: 250px;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 20px;
  margin: 10px;
}

.client-info {
  display: flex;
  align-items: left;
  margin-bottom: 10px;
}

.client-name {
  font-size: 18px;
  margin-right: 10px;
}

.star-ratings {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #ffc107; /* Yellow */
  font-size: 20px;
}

.client-review {
  font-size: 16px;
  line-height: 1.4;
  text-align: justify;
}

hr.solid {
  border-top: 3px solid #bbb;
}

/* Original code */

footer {
  background-color: #000;
  padding: 20px;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-columns p {
  text-align: justify;
}

.footer-column {
  flex-basis: 33.33%;
  padding: 10px;
  
}

.footer-logo img {
  height: 80px;
  width: auto;
}

.footer-column h4 {
  margin-top: 0;
  color: #efa229;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 5px;
}

.footer-column ul li a {
  text-decoration: none;
  color: white;
}

.footer-column p {
  margin-top: 10px;
}

/* Media query for mobile devices */

@media (max-width: 768px) {
  .footer-columns {
    flex-wrap: wrap;
  }

  .footer-column {
    flex-basis: 100%;
    border-left: none;
    margin-bottom: 20px;
  }
}

.second-footer {
  background-color: #000;
  padding: 20px;
  text-align: center;
  position: relative;
}

.second-footer:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #ccc;
}

.banner-portfolio {
  width: 100%;
  height: 450px;
  background-image: url('banner-portfolio.jpg');
  background-size: cover;
  filter: grayscale(100%);
}

/* Media queries for mobile responsiveness */
@media (max-width: 767px) {
  .banner-portfolio {
    height: 400px;
  }
}

.portfolio {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  margin-top: 20px;
  font-size: 40px;
}

.row-portfolio {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-top: 30px;
}

.image-link {
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.image-container-portfolio {
  position: relative;
  width: 500px;
  height: 500px;
}

.image-container-portfolio img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #fff;
}

.overlay h3,
.overlay p {
  margin: 0;
  padding: 0;
}

.image-link:before {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 0;
  height: 0;
  border: 2px solid #fff;
  transition: width 0.3s ease, height 0.3s ease, top 0.3s ease, left 0.3s ease;
}

.image-link:hover:before {
  top: -2px;
  left: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
}

.image-container-portfolio:hover .overlay {
  opacity: 1;
}

/* Add border line animation here */
/* Mobile responsiveness */
@media (max-width: 768px) {
  .row-portfolio {
    flex-wrap: wrap;
  }

  .image-container-portfolio {
    width: 100%;
    height: auto;
  }
}
.watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  width: 150px;
}
/* Your existing CSS code */

/* Add the following CSS to disable right-click menu */
.image-link {
  /* Disable right-click menu */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.social-footer {
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-footer li {
  display: inline-block;
  margin-right: 10px;
}

.social-footer li:last-child {
  margin-right: 0;
}

/* Call Now Button Styles */
.call-now-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #efa229;
  color: white;
  padding: 15px 20px 15px 50px;
  border-radius: 50px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s, transform 0.3s;
  z-index: 1000;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.call-now-button::before {
  content: "\f879";
  font-family: 'uicons-regular-straight' !important;
  position: absolute;
  left: 20px;
  font-size: 20px;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.call-now-button:hover {
  background-color: #d89a1e;
  transform: scale(1.05);
}

/* Mobile responsive styles for call button */
@media (max-width: 768px) {
  .call-now-button {
    bottom: 15px;
    right: 15px;
    padding: 12px 18px 12px 40px;
    font-size: 14px;
  }
  
  .call-now-button::before {
    left: 15px;
    font-size: 18px;
  }
}
/* Add more styles for other social media icons here */
.vl {
  border-left: 1px solid white;
  height: 400px;
}
@media (max-width: 768px) {
  .vl{
    display: none;
  }
}
.map-container {
  position: relative;
  width: 100%;
  padding-bottom: 83.5%; /* Adjust the aspect ratio as needed */
  height: 0;
}

.map-container iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

@media (max-width: 480px) { /* Adjust the breakpoint as needed */
  .map-container {
      padding-bottom: 75%; /* Adjust the aspect ratio as needed */
  }

  .map-container iframe {
      width: 300px;
      height: 300px;
  }
}

.contact-section {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.contact-title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 40px;
  color: #efa229;
  padding-bottom: 50px;
}

.contact-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact-column {
  width: 100%;
  margin-bottom: 20px;
}
.contact-column p{
  text-align: left;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.contact-form button {
  padding: 10px 20px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #45a049;
}

.contact-map {
  width: 100%;
  margin-top: 20px;
  text-align: center;
}

/* Media queries for smaller screens */
@media (min-width: 768px) {
  .contact-columns {
      flex-wrap: nowrap;
  }

  .contact-column {
      width: 48%;
      margin-bottom: 0;
  }
}
.about-us{
  text-align: justify;
}
.client-section {
  text-align: center;
  margin: 20px;
}

.client-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.client {
  margin: 20px;
}

.client img {
  max-width: 150px;
}

.client p {
  margin-top: 10px;
}
