@import url("https://fonts.googleapis.com/css2?family=Merienda:wght@300..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
/* font-family: "Merienda", cursive; */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
:root {
  --primary-color: #ff5e15;
}
h2{
    text-transform: capitalize;
    font-family: "Playfair Display", serif;
    font-weight: 800;
    font-size: 50px;
}
h4{
    font-family:Arial, Helvetica, sans-serif;
    color: var(--primary-color);
    text-transform: uppercase;
}
h5{
    font-family: "Playfair Display", serif;
    font-size: 25px;
    text-transform: capitalize;
}
ul{
    padding-left: 0;
}
li{
    list-style: none;
    line-height: 30px;
    text-transform: capitalize;
}
a{
    text-decoration: none;
    
}
a:hover{
    color: var(--primary-color) !important;   
}
#navbar{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
}

.navbar-brand {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 40px;
  color: var(--primary-color);
}
.nav-link {
  font-size: 20px;
  font-family: "Playfair Display", serif;
  color: black;
  margin-right: 20px;
}
.nav-link:hover {
  color: var(--primary-color);
}
.navbar-collapse {
  max-height: 80vh;
  overflow-y: auto;
}
.navbar-toggler {
  background-color: var(--primary-color);
}
.navbar-toggler-icon {
  font-size: 20px;
}
.navBtn {
  padding: 10px 15px;
  outline: none;
  border: none;
  background-color: var(--primary-color);
  color: white;
  font-weight: bold;
}
.navbar-collapse{
    overflow: visible;
}
.dropdown-menu{
    border: none;
}

/* Navbar End */
/* Swiper start */
#main {
  width: 100%;
  height: 100vh;
}
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  position: relative;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swiperOverlay {
  position: absolute;
  top: 33px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.473);
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiperOverlayContent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 900px;
  height: fit-content;
  /* background-color: red; */
  z-index: 999;
}

.swiperOverlayContent h1 {
  text-align: center;
  text-transform: capitalize;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 80px;
  color: white;
}
.swiperOverlayContent h4 {
  text-transform: uppercase;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--primary-color);
  font-weight: bold;
}
.swiperOverlayContent p {
  color: white;
  font-size: 22px;
  text-align: center;
}

@media (max-width: 575px) {
  .swiperOverlayContent {
    padding: 0 8px;
  }
  .swiperOverlayContent h1 {
    font-size: 38px;
  }

  .swiperOverlayContent p {
    font-size: 16px;
   
  }
}

@media (min-width: 576px) {
  .swiperOverlayContent {
    padding: 0 8px;
  }
  .swiperOverlayContent h1 {
    font-size: 70px;
  }

  .swiperOverlayContent p {
    font-size: 20px;
   
  }
}
@media (min-width: 992px) {
  .swiperOverlayContent {
    padding: 0 8px;
  }
  .swiperOverlayContent h1 {
    font-size: 80px;
  }

  .swiperOverlayContent p {
    font-size: 22px;
   
  }
}
.buttons{
    display: flex;
    gap: 10px;
}
.heroBtn{
    border: none;
    width: 150px;
    padding: 10px 0;
    font-weight: bold;
    transition: all 0.5s;
    background-color: black;
    color: white;
}
.heroBtn:nth-child(2){
    background-color: var(--primary-color);
}
.heroBtn:nth-child(2):hover{
    background-color: white;
    transition: all 0.5s;
    color: var(--primary-color);
}
/* Hero Section Complete */
.aboutSection{
    padding-top: 70px;
    width: 100%;
}
.aboutImage{
    width: 100%;
    height: 500px;
    border-top: 7px solid var(--primary-color);
    border-left: 7px solid var(--primary-color);
}
.aboutImage img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.aboutContent h4{
    text-transform: uppercase;
    color: var(--primary-color);
}
.aboutContent h2 {
  text-transform: capitalize;
  font-family: "Playfair Display", serif;
  font-weight: 800;
  /* font-size: 50px; */
  color: #001248;
}
.aboutContent p{
    font-size: 20px;
}
.aboutImgtwo{
    border-top: 5px solid var(--primary-color);
    border-left: 5px solid var(--primary-color);
    border-right: 5px solid black;
    border-bottom: 5px solid black;
}
.qualityImg{
    width: 150px;
    height: 150px;
}
.qualityImg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.engSvg img{
    width: 60px;
    height: 60px;
    margin-right: 10px;
}
.engSvg h4{
    font-family: "Playfair Display", serif;
    font-weight: 600;
}
@media (max-width: 575px) {
    .aboutSection{
    padding-top: 50px; 
}

 .aboutContent p{
    font-size: 16px;
}
.qualityImg{
    width: 100%;
    height: 100%;
}
}


.satisfactionContent i{
    color: var(--primary-color);
    font-size: 20px;
    font-weight: bold;
    margin-right: 10px;
}
.satisfactionContent p{
    font-size: 18px;
}
.discoverBtn{
    border: none;
    width: 150px;
    padding: 10px 0;
    font-weight: bold;
    transition: all 0.5s;
    background-color: var(--primary-color);
    color: white;
}

/* About page Complete */

/* Why choose us start */
.whychooseUsHeading h4{
    text-transform: uppercase;
    color: var(--primary-color);
}

.blockItems img{
    width: 120px;
    height: 120px;
}
.blockItems{
    transition: 0.5s;
}
.blockItems:hover{
    background-color: white;
    transition: 0.5s;
}

/* Why choose us section end */

/* Our service section start */
#ourService{
    background-color: #f2f3f5;
}
.ourserviceContent h4{
    color: var(--primary-color);
}

.serviceBlockItems{
    width: 100%;
    height: 450px;
    position: relative
}
.serviceBlockItems img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.serviceBlockItems{
    position: relative;
    overflow: hidden;
}
.serviceBlockItems:hover .serviceName{
    left: 100%;
    transition: 0.5s;
}
.one{
    position: relative;
    width: 100%;
    height: 100%;
}
.serviceName{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    z-index: 999;
}
.serviceNameReadmore{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.76);
    transition: 0.5s;
    transform: translateY(-100%);
}

.serviceBlockItems:hover .serviceNameReadmore{
    transition: 0.5s;
    transform: translateY(0);
}

.serviceNameReadmore{
    padding: 0 10px;
}

.serviceNameReadmore img{
    width: 80px;
    height: 80px;
}
.serviceNameReadmore h3{
    color: var(--primary-color);
}
.serviceBtn{
    border: none;
    width: 150px;
    padding: 10px 0;
    font-weight: bold;
    transition: all 0.5s;
    background-color: var(--primary-color);
    color: white;
}


/* completed project start */
.completedcard{
    border-top: 10px solid var(--primary-color);
    border-left: 10px solid var(--primary-color);
    border-bottom: 10px solid rgb(14, 13, 13);
    border-right: 10px solid rgb(22, 21, 21);
}
.completedcard img{
    width: 80px;
    height: 80px;
}
.completedcard div{
    background-color: var(--primary-color);
    font-size: 30px;
    font-weight: bold;
}
.completeProjectBtn{
    border: none;
    width: 150px;
    padding: 10px 0;
    font-weight: bold;
    transition: all 0.5s;
    background-color: var(--primary-color);
    color: white;
}


.project button{
    border: none;
    background-color: black;
    color: white;
    width: 150px;
    padding: 7px 10px;
}

/* .project img {
  height: 100%;
} */

.project img {
  width: 100%;
  height: 200px;
  object-fit: cover; /* 🔥 VERY IMPORTANT */
  display: block;
}

.teamMember img{
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.teamMember{
    border: 1px solid black;
    padding: 3px;
}

.articleContent button{
    border: none;
    background-color: var(--primary-color);
    color: white;
    width: 150px;
    padding: 7px 10px;
}

footer h5{
    margin-bottom: 20px;
}
footer p{
    line-height: 30px;
}

footer i{
    margin-right: 20px;
}
.web{
    color: var(--primary-color);
}


@media (max-width:575px){
    h2{
        font-size: 30px;
    }
}
/* .hide{
  display:none;
} */