.hero{
  height: 100vh;
  /* background: #f6f6f6; */
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, .6), rgba(0, 0, 0, 0.5)),url(../img/why-choose-bg-new.webp);
  background-size: cover;
  background-position: center;
}
.hero .grid_row{
  padding-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.hero .image{
  max-width: 500px;
  margin: auto;
  position: relative;
}
.hero .image .call_btn{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background-color: var(--first-color);
  border-radius: 50px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero .image .call_btn .icon{
  background-color: #fff;
  max-width: 40px;
  min-width: 40px;
  max-height: 40px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}
.hero .image .call_btn .icon i{
  color: var(--first-color);
  
}
.hero .image img{
  width: 100%;
}

.hero .content{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero .content h1 {
  font-size: 50px;
  line-height: 55px;
  text-transform: capitalize;
  color: #fff;
  font-weight: 700;
  font-family: var(--title-font);
}

.hero .content p {
  color: #fff;
  max-width: 100%;
  font-weight: 200;
}

.hero .content .main-btn{
  display: flex;
  gap: 20px;
  margin-top: 16px;
}





















.main_wrapper  {
  background:url(../img/hero/new-hero.webp);
  display: block;
  width: 100%;
  height: 80vh;
  background-size: cover;
  background-position: center;
}

/* .main_wrapper .swiper-slide.two {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, .2), rgba(0, 0, 0, 0.5)), url(../img/hero/hero-1.webp);
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
}

.main_wrapper .swiper-slide.three {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, .2), rgba(0, 0, 0, 0.5)), url(../img/hero/hero-2.webp);
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
} */

.main_wrapper .swiper-button-next,
.main_wrapper .swiper-button-prev {
  right: 20px; /* Position from the right edge */
  left: auto;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.421); /* optional for better visibility */
  border-radius: 50%;
  color: white;
  z-index: 10;
}

/* Adjust vertical spacing between them */
.main_wrapper .swiper-button-prev {
  top: 45%;
}

.main_wrapper .swiper-button-next {
  top: 55%;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  display: none; /* Hide default Swiper arrows */
}
.swiper-button-next::before {
  content: "\f105"; /* Font Awesome chevron-right */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: white;
  font-size: 20px;
}

.swiper-button-prev::before {
  content: "\f104"; /* Font Awesome chevron-left */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: white;
  font-size: 20px;
}


/* Position pagination to the right side */





.main_wrapper .hero_content {
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* align-items: center;
  text-align: center; */
  justify-content: center;
  max-width: 50%;
}

.main_wrapper .hero_content h1 {
  font-size: 55px;
  line-height: 55px;
  text-transform: capitalize;
  color: #000;
  font-weight: 700;
  font-family: var(--title-font);
}

.main_wrapper .hero_content p {
  color: #000;
  max-width: 100%;
  font-weight: 200;
}





.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  background-color: var(--first-color);
  width: 10px;
  height: 10px;
  border: 1px solid #fff;
  padding: 3px;
}





.services {
  background: #fff;
}

.services .grid_row {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.services .productSwiper {
  padding: 100px 10px 60px;
  position: relative;
}

.services .item {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
  padding: 20px;
  border-radius: 20px;
  text-align: center;
  background: #fff;
}

.services .item .product_data {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.services .item .product_img {
  height: 200px;
  width: 100%;
}

.services .item .product_img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.services .item .product_name {
  font-size: 16px;
  height: 35px;
  font-weight: 600;
}

.services .item .product_desc {
  color: var(--text-color-light);
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 20px;
}

.services .item .main_btn {
  max-width: fit-content;
  margin: auto;
}



.services .swiper-controls {
  position: absolute;
  top: 30px;
  right: 50px;
  z-index: 10;
  padding: 10px;
}

.services .swiper-button-prev,
.services .swiper-button-next {
  max-width: 50px;
  max-height: 50px;
  min-width: 50px;
  min-height: 50px;
  background-color: var(--first-color);
  color: #fff;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services .swiper-button-next{
  right: -50px;
}
.services .swiper-button-prev{
  left: -40px !important;
}

/* Adjust vertical spacing between them */


.services .swiper-button-next::after,
.services .swiper-button-prev::after {
  display: none; /* Hide default Swiper arrows */
}
.services .swiper-button-next::before {
  content: "\f105"; /* Font Awesome chevron-right */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: white;
  font-size: 20px;
}

.services .swiper-button-prev::before {
  content: "\f104"; /* Font Awesome chevron-left */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: white;
  font-size: 20px;
}


.about{
  background-color: #f6f6f6;
}
.about .grid_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about .section__subtitle {
  text-align: start;
}

.about .content ul {
  margin: 10px 0px 20px;
}

.about .content ul li {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 600;
}

.about .content ul li i {
  color: var(--first-color);
}



.why_choose_us {
  background: url(../img/why-choose-bg.webp);
  background-size: cover;
  background-position: center;
  height: auto;
  background-attachment: fixed;
  z-index: 1;
  position: relative;
}

.why_choose_us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.why_choose_us>* {
  position: relative;
  z-index: 3;
}

.why_choose_us .section__subtitle {
  color: #fff;
}

.why_choose_us .section_title {
  color: #fff;
}

.why_choose_us .grid_row {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;

}

.why_choose_us .item {
  text-align: center;
  color: #fff;
  border: .5px solid #ffffff88;
  padding: 50px;
}

.why_choose_us .icon {
  max-width: 80px;
  margin: 0 auto 16px;
  background-color: var(--first-color);
  padding: 16px;
  border-radius: 50px;
}

.why_choose_us .item h6 {
  font-size: 20px;
  font-weight: 700;
}



.image-slider {
  margin-top: 40px;
}

.image-slider .swiper-slide {
  height: 380px;
  overflow: hidden;
  cursor: pointer;
}
.image-slider .swiper-slide img{
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.3s ease;
}
.image-slider .swiper-slide:hover img {
  transform: scale(1.02);
  cursor: pointer;
}
.project_overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Black overlay */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s ease;
  font-size: 20px;
  font-weight: 500;
}
.image-slider .swiper-slide:hover .project_overlay {
  opacity: 1;
}

.image-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.view-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  padding: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  z-index: 2;
  transition: background 0.3s ease;
}

.view-icon:hover {
  background: rgba(255, 255, 255, 0.8);
  color: #000;
}

.clients{
  margin: 50px 0 0px;
}
.clients .flex_row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.clients .item {
  width: calc(100% / 5 - 20px); /* 5 items per row (15 items total = 3 rows) */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}

.clients .item img {
  width: 100%;
  max-width: 150px;
  filter: grayscale(0%);
  transition: filter 0.3s ease;
}

.clients .item img:hover {
  filter: grayscale(0%);
}





.contact_page_form_wrapper {
  background-color: #f6f6f6;
}

.contact_page_form_wrapper .grid_row_two {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: center;
}

.contact_page_form {
  background-color: #fff;
  padding: 30px;
  border-radius: 30px;
}

.contact_page_form h3 {
  font-size: 20px;
  font-weight: 700;
}

.contact_page_form form {
  margin-top: 30px;
}

.contact_page_form .input_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact_page_form input {
  height: 50px;
  border-radius: 10px;
}

.contact_page_form textarea {
  border-radius: 15px;

}

.contact_page_form input:focus,
.contact_page_form textarea:focus {
  box-shadow: none;
  outline: none;
}

.contact_page_form .form-label {
  color: var(--text-color-light);
  font-size: 14px;
  font-weight: 400;
}

.contact_page_form input::placeholder,
.contact_page_form textarea::placeholder {
  color: var(--text-color-light);
  font-size: 14px;
  font-weight: 400;
}

.contact_page_form_wrapper .main-btn::before {
  display: none;
}

.contact_page_form_wrapper .main-btn:hover {
  color: #fff !important;
}


.contact_page_form_wrapper .contact_details {
  background-color: var(--secondary-color);
  padding: 30px;
  border-radius: 30px;
}

.contact_page_form_wrapper .contact_details h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 600;
}

.contact_page_form_wrapper .contact_image img {
  border-radius: 30px;
  overflow: hidden;
}




footer {
  background: #000;
  padding: 50px 0;
}


footer .footer_container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
  gap: 50px;
  padding: 30px 0;
  color: #fff;
}


@media screen and (max-width:1399px) {
  footer .footer_container {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media screen and (max-width:1156px) {
  footer .footer_container {
    grid-template-columns: 1fr 1fr;
  }

  footer .contact_flex_row {
    display: none;
  }
}

footer .footer_logo {
  width: 200px;
  margin-bottom: 20px;
}

footer .footer_contact li {
  display: flex;
  align-items: center;
  gap: 8px;
}

footer .footer_contact li i {
  max-width: 40px;
  max-height: 40px;
  min-width: 40px;
  min-height: 40px;
  background: var(--first-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

footer .footer_contact li a,
footer .footer_contact li p {
  font-size: 16px;
  color: #fff;
}

footer .footer_title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
}

footer .footer_links li {
  display: flex;
  gap: 8px;
}

footer .footer_links li i {
  color: var(--first-color);
}

footer .footer_links li a {
  color: #fff;
  transition: all .3s;
  font-size: 14px;
  font-weight: 300;
}


footer .footer_links li a:hover {
  color: var(--first-color);
}

footer ul li {
  margin-top: 10px;
  margin-bottom: 16px;
}

footer .social_links {
  display: flex;
  gap: 16px;
}

footer .social_links li {
  max-width: 40px;
  max-height: 40px;
  min-width: 40px;
  min-height: 40px;
  background-color: var(--first-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

footer .social_links a {
  font-size: 20px;
  color: #fff;
}


footer .copyright {
  padding: 20px 0 0;
  border-top: .5px solid var(--first-color);
}
footer .copyright p{
  color: #fff;
  font-weight: 200;
}


.page_banner {
  height: 350px;
  background: url(../img/hero/new-hero1.webp);
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page_banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.page_banner .container {
  position: relative;
  z-index: 2;
}

.page_banner h2 {
  color: #fff;
  font-weight: 800;
  font-family: var(--title-font);
}


/* about_page */


.vision_mission .grid_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.vision_mission .mission,
.vision_mission .vision {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.vision_mission h3 {
  font-size: 32px;
  font-weight: 700;
  font-family: var(--title-font);
}

.about_page .contact_page_form_wrapper {
  padding: 70px 0;
}



/* products_page */

.products_page .services .grid_row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.products_page .product_img {
  margin-bottom: 20px;
}

.products_page .product_name {
  font-size: 20px !important;
  margin-bottom: 16px;
}


/* projects_page */

.projects_page .grid_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.projects_page .item {
  border-radius: 20px;
  overflow: hidden;
}

.projects_page .image-wrapper {
  position: relative;
  overflow: hidden;
}

.projects_page .image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
}

.projects_page .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Black overlay */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s ease;
  font-size: 20px;
  font-weight: 500;
}

/* .projects_page .content {
  position: absolute;
  bottom: -100%;
  left: 30px;
  width: 100%;
  color: white;
  padding: 10px;
  transition: bottom 0.3s ease;
} */

.projects_page .image-wrapper:hover .overlay {
  opacity: 1;
}

.projects_page .image-wrapper:hover .content {
  bottom: 0;
}

.projects_page .image-wrapper:hover {
  cursor: pointer;
}

/* @media screen and (max-width:1056px){
  .projects_page .overlay {
    opacity: 1;
  }
  
} */



/* contact_page */

.contact_page .contact_page_form_wrapper {
  padding: 70px 0;
}

.contact_page .contact_page_form_wrapper .grid_row_two {
  grid-template-columns: 1fr 1.5fr;
  align-items: start;
  gap: 0;
}

.contact_page .contact_details {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact_page .contact_details .item {
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 10px;
}

.contact_page .contact_details .item .icon {
  max-width: 70px;
  max-height: 70px;
  min-width: 70px;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--first-color);
}

.contact_page .contact_details .item .icon i {
  color: #fff;
  font-size: 32px;
}

.contact_page .contact_details .item h6 {
  font-size: 20px;
  font-weight: 600;
}

.contact_page .contact_details .item p,
.contact_page .contact_details .item a {
  font-weight: 400;
  color: #000;
}





.product-detail-page .box {
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  padding: 30px;
  border-radius: 10px;
}

.product-detail-page .product_image {
  margin-bottom: 30px;
}

.product-detail-page .product_data ul {
  list-style: disc;
  padding-left: 15px;
  margin: 20px 0;
}

.product-detail-page .product_data ul li {
  margin-top: 16px;
  font-size: 18px;
}




.project_page .project_single_grid{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}

.project_page .item{
  text-align: center;
}
.project_page .cover_image{
    width:100%;
    height:250px;
  margin-bottom: 20px;
  overflow:hidden;
  border-radius:10px;
}
.project_page .cover_image img{
    width:100%;
    height:100%;
    object-fit:cover;
    
}
.project_page .project_name{
  color: var(--first-color);
}

/*.project-detail-page .container{*/
/*    max-width:1024px;*/
/*    margin:auto;*/
/*}*/
.project-detail-page .grid_row{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  
}





