body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: #6CACE4;
  font-family: 'BankGothicLight';
  src: url('fonts/bank-gothic-light.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* Define the font */
@font-face {
  font-family: 'BankGothicLight';
  src: url('fonts/bank-gothic-light.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


/* Header */


.nav-menu li a {
  font-style: none;
    font-weight: bold;
    font-size: 16px;
     color: rgba(0, 0, 0, 0.5);
    text-decoration: none;
          }
   .nav-menu nav ul {
    list-style-type: none;
    display: flex;
    margin: 0;
    padding: 0;
  font-family: 'BankGothicLight';
  
  }
  
  
          /* Page transition styles */
          .page-transition {
              position: fixed;
              top: 0;
              left: 0;
              width: 100%;
              height: 100%;
              display: flex;
              background-color: transparent;
              transform: scaleX(0);
              transform-origin: center;
              transition: transform 5.5s ease;
              z-index: 1;
              pointer-events: none; /* Prevent interaction during animation */
          }
  
          .page-transition::before,
          .page-transition::after {
              content: '';
              position: absolute;
              top: 0;
              width: 50%;
              height: 100%;
              transition: transform 2s ease;
          }
  
          .page-transition::before {
              left: 0;
              background-color:#368FD1;
              transform-origin: left;
            
          }
  
          .page-transition::after {
              right: 0;
              background-color:#ff3333;
              transform-origin: right;
          }
  
          .page-transition.show {
              transform: scaleX(5);
          }
  
          .page-transition.show::before {
              transform: translateX(-100%);
          }
  
          .page-transition.show::after {
              transform: translateX(100%);
          }
  
          .content {
              position: relative;
              z-index: 2;
          }
.nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 20px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}


.nav-menu nav ul {
  list-style-type: none;
  display: flex;
  margin: 0;
  padding: 0;

  font-family: 'BankGothicLight';

}



.nav-menu nav ul li a {

  font-style: none;
  font-weight: bold;
  font-size: 16px;

  color: rgba(0, 0, 0, 0.5);
  text-decoration: none;


}

.nav-menu nav ul li a.contact-button {
  background-color: #368FD1;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
}

.nav-menu ul li a {
  color: #333;
  text-decoration: none;

}

 .logo {
  display: inline-block;
}

.logo img {
  height: 50px;
}



nav {
  display: flex;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #f0a500;
}

.responsive_nav {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background-color: #ff3333;
  /* Red background color for the responsive_nav */
  padding: 10px;
  border-radius: 5px;
  position: absolute;
  right: 30px;
  top: 5px;
}

.responsive_nav div {
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 5px;
  transition: all 0.3s ease;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-links {
    /* position: absolute;
      right: 0;
      height: 100vh;
      top: 0;
      background-color:#4D6DD6;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 100%;
      transform: translateX(100%);
      transition: transform 0.5s ease-in;
      color: white;
       */
    position: fixed;
    right: 0;
    height: 100vh;
    top: 0;
    z-index: 999;
    width: 250px;
    background-color: #368FD1;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    transform: translateX(100%);
    transition: transform 0.5s ease-in;
    color: white;
    display: flex;
  }

  .nav-links li {
    margin: 20px 0;
  }

  .nav-links li a {
    font-size: 24px;
  }

  .responsive_nav {
    display: flex;
  }

  .nav-active {
    transform: translateX(0);
  }

  .responsive_nav.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .responsive_nav.toggle .line2 {
    opacity: 0;
  }

  .responsive_nav.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
  }
}

.nav-menu ul li a.active {
  color: #DA202B;
  font-weight: bold;

}
.content-right {
  flex-grow: 1;
  margin-left: 15px;
  flex-shrink: 0;
}

/* Hero Section */
/* Base styles */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;

  color: white;
}

.hero-content h1 {

  margin-bottom: 20px;
  color: #000000;
  font-size: 38.26px;
  font-weight: 300;
  line-height: 49.74px;
  text-align: left;
  
}

.hero-content {
  max-width: 50%;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.cta-button {
  background-color: #E75959;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
}

.hero-image img {
  max-width: 100%;
  border-radius: 10px;
}

/* Tablet styles */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .hero-content {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .cta-button {
    font-size: 0.9rem;
  }

  .hero-image img {
    max-width: 100%;
    margin-left: 0px;

  }
}

/* Mobile styles */
@media (max-width: 480px) {
  .hero {
    padding: 10px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 0.8rem;
  }

  .cta-button {
    font-size: 0.8rem;
    padding: 8px 16px;
  }
}






/* product layout */



/* Base styles */
.container {
  padding: 20px;
  background-color: #E75959;
  color: white;
  margin: 30px;
  border-radius: 30px;
}

.container h1 {
  margin-bottom: 10px;
  font-size: 44px;
  font-weight: 300;
  line-height: 75px;
  letter-spacing: 0.02em;
  text-align: center;
  color: black;
}

.description {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 20px;
}

.products {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.product-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card {
  /* background-color: #fff; */
  color: black;
  border-radius: 15px;
  overflow: hidden;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
  max-width: 250px;
  flex: 1;
  position: relative;
}

.image-product-container {
  position: relative;
  overflow: hidden;
}

.image-product-container img {
  width: 100%;
  border-radius: 15px 15px 0 0;
}

.overlay {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #f1f1f1;
  width: 100%;
  text-align: center;
  padding: 10px;
  font-size: 0.9rem;
  border-radius: 0 0 15px 15px;
}

.product_viewall {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.view-all-button2 {
  background-color: white;
  color: red;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 1rem;
  position: relative;
}

.circle2 {
  background-color: red;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: absolute;
  left: 25px;
  top: 25px;
}

/* Tablet styles */
@media (max-width: 768px) {
  .products {
    flex-direction: column;
    align-items: center;
  }

  .card {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .container h1 {
    font-size: 1.8rem;
  }

  .description {
    font-size: 0.9rem;
  }

  .view-all-button2 {
    width: 80px;
    height: 80px;
    font-size: 0.9rem;
  }

  .circle2 {
    width: 40px;
    height: 40px;
    left: 20px;
    top: 20px;
  }
}

/* Mobile styles */
@media (max-width: 480px) {
  .container {
    padding: 10px;
  }

  .container h1 {
    font-size: 1.5rem;
  }

  .description {
    font-size: 0.8rem;
  }

  .view-all-button2 {
    /* width: 60px;
      height: 60px; */
    font-size: 0.8rem;
  }

  .circle2 {
    width: 30px;
    height: 30px;
    left: 15px;
    top: 15px;
  }

  .overlay {
    font-size: 0.8rem;
    padding: 8px;
  }
}


/* .cta-button {
    background-color: #DA202B;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    text-decoration: none;
}





.container {
    background-color: #DA202B;
    height: 690px;
    top: 2217px;
    left: 29px;
    gap: 0px;
    border-radius: 30px 30px 30px 30px;
    opacity: 0px;
    padding-right: -2px;
    padding-left: 33px;
    align-content: center;
    margin-left: 20px;
    margin-right: 20px;
}





h1 {
   
    font-size: 60px;
    font-weight: 300;
    line-height: 78px;
    letter-spacing: 0.05em;
    text-align: center;
    margin-bottom: 10px;
    color: #FFFFFF;
}

.description {
    
font-size: 16px;
font-weight: 300;
line-height: 36px;
text-align: center;
color: #FFFFFF;
margin-bottom: 20px;
}

.products {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.product, .view-all {
    color: #000000;
    width: 30%;
    position: relative;
}

.product img {
    width: 793px;
    height: 528px;
    top: 2518px;
    left: 29px;
    gap: 0px;
    border-radius: 0px 0px 0px 8px;
    opacity: 0px;
    
}

.product p {
    font-size: 1em;
    margin-top: 10px;
}

.view-all {
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-all a {
    text-decoration: none;
    color: #ff0000;
    font-size: 1.2em;
    font-weight: bold;
} */




/* project layout */
.projects,
.clients {
  padding: 50px 20px;
  text-align: center;
  margin-top: -78px;


}

.projects h2,
.clients h2 {
  margin-bottom: 10px;
  font-size: 44px;
  font-weight: 300;
  line-height: 75px;
  letter-spacing: 0.02em;
  text-align: center;
  color: black;

}

.projects p {
  color: #FFFFFF;
  line-height: 35px;
  font-size: 20px;
}

.project-grid,
.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 62px;
}

.project {
  /* flex: 0 1 calc(30% - 40px);
    margin: 20px;
    padding: 0px; */
  width: 356.46px;
  height: 330.6px;
  top: 1666px;
  left: 983.51px;
  gap: 0px;
  opacity: 0px;


}

.project img,
.product img {
  max-width: 94%;
  height: 85%;
}

.project a {
  max-width: 94%;
  height: 85%;
}

/* Clients Section */
.clients .testimonial {
  margin: 20px;
  padding: 20px;
  border: 1px solid #ddd;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}




/* footer style and media query */
/* Footer Styles */
.footer {
    background-color:#2875AE;
    color: #fff;
    padding: 20px 0;
    width: 100%;
    box-sizing: border-box;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    flex-wrap: wrap; /* Allow columns to wrap on smaller screens */
}

.footer-column {
    flex: 1;
    margin: 0 10px;
    min-width: 200px; /* Ensures columns don’t shrink too much */
}

.footer-column h3, .footer-column h4 {
    margin-bottom: 10px;
}

.footer-column h4 {
    text-decoration: underline;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-column ul li a:hover {
    text-decoration: none;
}

.footer-column form {
    display: flex;
    margin-top: 15px;
   /* flex-direction: column; Stack form elements on small screens */
}

.footer-column input[type="email"] {
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 4px;
    flex: 1;
    margin-right: 10px;
    outline: none;
}

.footer-column button {
    padding: 05x;
    background-color: #fff;
    color: #1F398D;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    height: 35px;
}

.footer-column button:hover {
    background-color: #ccc;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px auto;
    padding: 0 20px;
    border-top: 1px solid #fff;
    padding-top: 20px;
    box-sizing: border-box;
    flex-wrap: wrap; /* Allows elements to stack on smaller screens */
}

.footer-bottom p {
    margin: 0;
}

.footer-socials {
    display: flex;
    margin-top: 10px;
}

.footer-socials a {
    margin-left: 10px;
}

.footer-socials i {
    width: 24px;
    height: 24px;
    color: white;
    font-size: 30px;
}

/* Media Queries */

/* Tablets */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column; /* Stack columns vertically */
        align-items: center;
    }

    .footer-column {
        margin: 10px 0;
        text-align: center; /* Center text for better readability */
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }
}

/* Mobile Devices */
@media (max-width: 480px) {
    .footer-container {
        padding: 0 10px; /* Reduce padding on smaller screens */
    }

    .footer-column {
        margin: 10px 0;
        text-align: center;
    }
    .footer-column p{
      line-height: 1.6;
    }
    .footer-column ul li{
      line-height: 1.5;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 0 10px;
    }

    .footer-socials {
        justify-content: center;
        margin-top: 20px;
    }
}
.nav-menu nav ul li a.contact-button {
    background-color: #368FD1;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
}


/* VIEW ALL BUTTON FROM OUR PROJECT  */

.view-all-button {
  position: relative;
  display: inline-block;
  width: 331px;
  height: 310px;
  background-color: #f8f8f8;
  border-radius: 0 78px 0 78px;
  text-align: center;
  line-height: 140px;
  color: #000;
  /* font-family: Arial, sans-serif; */
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  overflow: hidden;
}

.view-all-button .circle {
  position: absolute;
  top: 104px;
  left: 123px;
  width: 60px;
  height: 60px;
  background-color: #E75959;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.view-all-button .circle::after {
  content: '>';
  color: #fff;
  font-size: 20px;
}

.view-all-button span {
  position: relative;
  top: 130px;
  right: 5px;
  display: inline-block;
}

.project h3 {
  color: #FFFFFF;
  font-family: 'BankGothicLight';
  line-height: 1;
}

.view-all-button2 {
  position: relative;
  display: inline-block;
  width: 244px;
  height: 282px;
  background-color: #f8f8f8;
  border-radius: 0px 120px 0px 0px;
  ;
  text-align: center;
  line-height: 140px;
  color: #000;
  /* font-family: Arial, sans-serif; */
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  overflow: hidden;
  margin-top: 10px;
}

/* view button from our products */
.view-all-button2 .circle2 {
  position: absolute;
  top: 104px;
  left: 76px;
  width: 60px;
  height: 60px;
  background-color: #E75959;
  /* border-radius: 50%; */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 9px;
}

.view-all-button2 .circle2::after {
  content: '>';
  color: #fff;
  font-size: 20px;
}

.view-all-button2 span {
  position: relative;
  top: 130px;
  right: 5px;
  display: inline-block;
}

.nav-menu ul li a:hover {

  color: #DA202B;
}

.outer_box {

  opacity: 0.8;
  filter: blur(277px);
  border-radius: 259.5px;
  background: #FFFFFF;
  margin-right: 72px;
  width: 519px;
  height: 519px;
}

.ellipse-799 {
  opacity: 0.8;
  filter: blur(277px);
  border-radius: 259.5px;
  background: #FFFFFF;
  margin-right: 72px;
  width: 519px;
  height: 519px;
}

.frame-5 .our-projects {
  border: 1px solid #FFFFFF;
  margin-bottom: 30px;
  display: inline-block;
  overflow-wrap: break-word;

  font-weight: 300;
  font-size: 60px;
  letter-spacing: 1.2px;
  line-height: 1.25;
  color: #FFFFFF;
}

.frame-5 .container-18 {
  position: relative;
  margin: 0 11px 111px 11px;
  display: flex;
  align-self: flex-start;
  width: 1389px;
  box-sizing: border-box;
}

.frame-5 .container-4 {
  position: relative;
  display: flex;
  flex-direction: row;
  width: 1389px;
  height: fit-content;
  box-sizing: border-box;
}

.frame-5 .container-22 {
  margin: 91.1px 72.8px 26.5px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 362.6px;
  height: fit-content;
  box-sizing: border-box;
}

.frame-5 .container-1 {
  margin: 91.1px 0 26.5px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 362.6px;
  height: fit-content;
  box-sizing: border-box;
}

.frame-5 .container-17 {
  margin: 0 122.2px 45.9px 0;
  display: flex;
  flex-direction: row;
  width: fit-content;
  box-sizing: border-box;
}

.frame-5 .container-8 {
  margin: 0 155.2px 128.5px 155.2px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-self: flex-start;
  width: 716.7px;
  box-sizing: border-box;
}


.product-container {
  display: flex;
  gap: 20px;
  margin-right: 39px;
}

.card {
  position: relative;
  width: 300px;
  border-radius: 10px;
  overflow: hidden;
  height: fit-content;

}

.image-product-container {
  position: relative;
}

.image-product-container img {
  width: 100%;
  /* height: auto; */
  display: block;
}

.overlay {
  position: absolute;
  bottom: 0;
  background: rgb(239 229 229 / 50%);
  color: white;
  width: 89%;
  left: 11px;
  text-align: center;
  padding: 13px 0px 29px 0px;

  bottom: 12px;
}

header .nav-menu .content-right p {
  margin: 0;
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  /* margin-left: -15px; */
  margin-left: -10px;
}

/* slider style */
.swiper-container {
  width: 100%;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
  width: 100%; 
}

.slider-title {
  text-align: center;
  font-size: 44px;
  margin-bottom: 20px;
  color: black;
  font-weight: 300;
  line-height: 1;
}

.swiper-wrapper {
  display: flex;
  /* position: relative;
    overflow: hidden;
    width: 100%; */
}

.swiper-slide {

  border-radius: 10px;
  overflow: hidden;

  position: relative;
  transition: transform 0.3s ease, filter 0.3s ease;
  transform: scale(0.9);
  filter: blur(2px);
  /* Slight blur effect for non-active slides */
}

.swiper-slide img {
  width: 100%;
  height: auto;
}

.banner-info {
  padding: 15px;
  text-align: center;
}

.banner-info h3 {
  margin: 10px 0;
  font-size: 20px;
  color: #333;
}

.banner-info p {
  margin: 5px 0;
  font-size: 16px;
  color: #666;
}

.rating {
  font-size: 14px;
  color: #f26a4b;
}

.swiper-pagination {
  bottom: 10px !important;
}

.swiper-button-prev,
.swiper-button-next {
  color: #333;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.swiper-button-prev {
  left: 10px;
}

.swiper-button-next {
  right: 10px;
}

.swiper-slide-active {
  transform: scale(1);
  /* Scale the active slide to full size */
  filter: blur(0);
  /* Remove blur for the active slide */
  z-index: 2;
  /* Ensure the active slide is above the others */
}

.swiper-container.grabbing {
  cursor: grabbing;
}

/*  responsive*/
/* Responsive Styles */
/* @media (max-width: 1024px) {
  .hero {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }

  .hero-content {
      max-width: 100%;
      margin-bottom: 20px;
  }

  .project-grid {
      grid-template-columns: repeat(2, 1fr);
  }

  .products .card {
      max-width: 100%;
  }

  .footer .footer-container {
      flex-direction: column;
      align-items: center;
  }
}

@media (max-width: 768px) {
  .nav-menu {
      flex-direction: column;
      align-items: center;
  }

  .nav-menu nav ul {
      flex-direction: column;
      align-items: center;
  }

  .nav-menu nav ul li {
      margin: 10px 0;
  }

  .hero-content h1 {
      font-size: 28px;
  }

  .hero-content p {
      font-size: 16px;
  }

  .project-grid {
      grid-template-columns: 1fr;
  }

  .swiper-container {
      padding: 20px;
  }

  .footer-column {
      text-align: center;
  }
}

@media (max-width: 480px) {
  .nav-menu .logo img {
      max-width: 120px;
  }

  .hero-content h1 {
      font-size: 24px;
  }

  .hero-content p {
      font-size: 14px;
  }

  .footer-socials i {
      font-size: 16px;
  }

  .swiper-container {
      padding: 10px;
  }
}
 */
/* Base Styles: Mobile First Approach (default styles are for mobile) */

/* For large desktops and laptops */
@media only screen and (min-width: 1200px) {
  .nav-menu nav ul li {
    margin-left: 60px;
  }

  .hero-content h1 {
    font-size: 44px;
    line-height: 47px;
  }

  .hero-content p {
    font-size: 20px;
    line-height: 35px;
  }

  h1 {
    font-size: 80px;
    line-height: 100px;
  }

  .description {
    font-size: 20px;
    line-height: 38px;
  }

  .project,
  .product {
    width: 30%;
  }

  /* .view-all-button, .view-all-button2 {
    width: 278px;
    height: 279px;
    font-size: 20px;
  } */

  .footer-container {
    max-width: 1400px;
    padding: 0 40px;
  }

  .footer-column {
    margin: 0 20px;
  }

  .swiper-container {
    padding: 60px 0;
  }

  .slider-title {
    font-size: 44px;
  }

  .swiper-slide {
    transform: scale(0.9);
    filter: blur(0px);
  }
}

/* .container {
  max-width: 1200px;
} */

.contact-info {
  padding: 50px;
}

.contact-form {
  padding: 50px;
}

/* For medium-sized desktops and laptops */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .nav-menu nav ul li {
    margin-left: 50px;
  }

  .hero-content h1 {
    font-size: 50px;
    line-height: 65px;
  }

  .hero-content p {
    font-size: 18px;
    line-height: 32px;
  }

  h1 {
    font-size: 70px;
    line-height: 90px;
  }

  .description {
    font-size: 20px;
    line-height: 36px;
  }

  .project,
  .product {
    width: 32%;
  }

  .view-all-button {
    width: 360px;
    height: 320px;
    font-size: 18px;
  }

  .view-all-button2 {
    width: 220px;
    height: 280px;
    font-size: 18px;
  }

  .footer-container {
    max-width: 1200px;
    padding: 0 30px;
  }

  .footer-column {
    margin: 0 15px;
  }

  .swiper-container {
    padding: 55px 0;
  }

  .slider-title {
    font-size: 44px;
  }
  .nav-menu .content-right .p {
    margin: 0;
    font-size: 12px;
    line-height: 1;
}
}

  /* p {
    margin: 0;
    font-size: 12px;
    line-height: 1;

} */
/* For tablets */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .nav-menu nav ul li {
    margin-left: 40px;
  }

  .hero-content h1 {
    /* font-size: 45px; */
    line-height: 60px;
    font-size: 41px;
  }

  .hero-content p {
    font-size: 16px;
    line-height: 30px;
  }

  h1 {
    font-size: 60px;
    line-height: 80px;
  }

  .description {
    font-size: 20px;
    line-height: 34px;
  }

  .project,
  .product {
    width: 48%;
  }

  .view-all-button,
  .view-all-button2 {
    width: 300px;
    height: 280px;
    font-size: 16px;
  }

  .view-all-button2 {
    width: 200px;
    height: 233px;
    font-size: 16px;
  }

  .footer-container {
    max-width: 1000px;
    padding: 0 20px;
  }

  .footer-column {
    margin: 0 10px;
  }

  .swiper-container {
    padding: 50px 0;
  }

  .slider-title {
    font-size: 44px;
  }
  
}

/* For large phones */
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .nav-menu nav ul li {
    margin-left: 30px;
  }

  .hero-content h1 {
    font-size: 38px;
    line-height: 50px;
  }

  .hero-content p {
    font-size: 15px;
    line-height: 28px;
  }

  h1 {
    font-size: 50px;
    line-height: 70px;
  }

  .description {
    font-size: 20px;
    line-height: 32px;
  }

  .project,
  .product {
    width: 48%;
  }

  .view-all-button,
  .view-all-button2 {
    width: 280px;
    height: 240px;
    font-size: 14px;
  }

  .footer-container {
    max-width: 800px;
    padding: 0 15px;
  }

  .footer-column {
    margin: 0 10px;
  }

  .swiper-container {
    padding: 45px 0;
  }

  .slider-title {
    font-size: 44px;
  }
  
}

/* For small phones */
@media only screen and (max-width: 575px) {

  .product-container
  {
    display: flex;
    /* gap: 20px; */
    /* margin-right: 39px; */
    flex-direction: column;
    /* align-items: center; */
    /* justify-content: space-evenly; */
    align-content: center;
    flex-wrap: wrap;
    width: 192px;
 
 }
 
 .view-all-button2 {
  width: 164px;
  height: 124px;
  font-size: 12px;
  border-radius: 0px 44px 0px 0px;
  top: -7px;
  margin-left: 20px;
}

  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    /* padding: 10px 15px; */
  }

  .nav-menu nav ul {
    flex-direction: column;
    align-items: flex-start;
    /* margin:-87% */

  }

  .nav-menu nav ul li {
    margin-left: 0;
    margin-bottom: 10px;
  }
  .nav-menu nav ul li .cont {
    margin-left: 0;
    margin-bottom: 10px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content h1 {
    /* font-size: 30px;
    line-height: 40px; */
    font-size: 16px;
        line-height: 40px;
        margin-left: 16px;
  }

  .hero-content p {
    font-size: 14px;
    line-height: 25px;
  }

  h1 {
    font-size: 40px;
    line-height: 60px;
  }

  .description {
    font-size: 20px;
    line-height: 30px;
  }

  .projects h2,
  .clients h2 {
    font-size: 44px;
    line-height: 60px;
  }

  .project,
  .product {
    width: 100%;
    margin-bottom: 20px;
  }

  .view-all-button {
    width: 250px;
    height: 200px;
    font-size: 12px;
  }

  .view-all-button2 {
    width: 88px;
    height: 105px;
    font-size: 12px;
    bottom: 7;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-column {
    margin-bottom: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .swiper-container {
    padding: 40px 0;
  }

  .slider-title {
    font-size: 44px;
  }

  .view-all-button2 .circle2 {
    top: 46px;
    left: 48px;
    width: 41px;
    height: 43px;
  }
  .view-all-button2 span {
    position: relative;
    top: 44px;
    right: 5px;
    display: inline-block;
}
  @media only screen and (max-width: 575px) {
    .view-all-button2 {
      width:166px;
      height: 175px;
      font-size: 12px;
      border-radius: 0px 44px 0px 0px;
      top: -7px;
    }
.overlay{
  left: 7px;
  bottom: 9px;
}
.footer-bottom p {
  margin-top: 17px;
}

.circle{
  margin-left: -35px;
}
    
  /* new animation */

  }
  
}