*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body{
  overflow-x: hidden;
  
  
}

/* START:STYLING  FOR THE NAVBAR STARTS FROM HERE */

.navbar{
  position: fixed;
  height: 13vh;
  width: 100vw;
  background: linear-gradient(100deg, #d58936  0%, #69140e 74%);
}

.navbar-brand img{
  width: 75px;
  height: 75px;
  border-radius: 60px;
  margin-left: 20px;
}

/* Align menu items to the right */
 .navbar-nav {
  margin-left: auto;
}

/* Add spacing between menu items */
.navbar-nav .nav-item {
  margin-left: .5rem;
  padding-right: 30px;
}

.navbar-toggler-icon {
  background-color: white; 
}

.navbar-nav .nav-link {
  position: relative; /* Required for the underline effect */
  color: white; /* Initial text color */
  transition: color 0.3s ease;
}

.navbar-nav .nav-link.active {
  color: white;
}

/* Hover text color change */
.navbar-nav .nav-link:hover {
  color: #d58936; /* Color on hover */
}

/* Underline effect on hover */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #d58936; /* Color of the underline */
  transition: width 0.3s ease, left 0.3s ease;
}

/* Expanding underline on hover */
.navbar-nav .nav-link:hover::after {
  width: 100%;
  left: 0;
}

/* Keep underline on active page */
.navbar-nav .nav-link.active::after {
  color: white;
  width: 100%;
  left: 0;
}

/* GET PRICE LIST BUTTON  */
.pricing{
  border: #fff 2px solid;
}

.pricing:hover{
  border:#d58936 2px solid
}

/* &&&&&&&&&&&&&&&&&&&&&&&&&&& */
/* END: STYLING FOR THE NAVBAR ENDS HERE */

#services{
  padding-top: 6vh;
  display: flex;
  flex-direction:column;
  width:100vw;
  height: 70vh; 
  align-items: center;
  justify-content: center;
  animation: serve 3s; 
  /* background: lightcoral; */
  
}
@keyframes serve {
  0% {
      transform: rotateX(0deg) scale(0);
  }

}
.our-services{
  padding-top: 8vh;

  display: flex;
  flex-direction: column;
  width: 95vw;
  height: 60vh;
  align-items: center;
  justify-content: center;
  /* background-color: red; */
} 

.our-services h1{
font-family: fantasy;
font-size: 35px;
color: #69140e;
}

.line{
  width: 100px;
  height: 4px;
  background-color: #69140e;
}



.our-services p{
  margin-top: 2vh;
  text-align: center;
  width: 55vw;
  height: 37vh;
  font-size: 20px;
  color: #69140e;
  /* background-color: blue; */
}
/* ************************************************** */
.our-work{
  display: flex;
  flex-wrap: wrap;
  width: 100vw;
  height: 218vh;
  align-items: center;
  justify-content: space-evenly;
  /* background-color: blue; */
}
.our-work::before{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-image: url(/pages/headcan-removebg-preview.png);
    background-repeat: repeat;
    background-size: contain;
    background-position: center center;
    background-attachment: fixed;
    opacity: 0.1;
}

.parent {
  cursor: pointer;
}



.parent{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width:360px;
  height:450px;   
}
.parent img{
  width: 360px;
  height: 450px;
 
}

.child{
  position: absolute;
  visibility: hidden;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  font-weight: bolder;
  background-color: red;
  left: 0;
  bottom: 0;
  width: 0;
  height: 0;
  transition: width 0.4s ease, height 0.4s ease;
  
}
.parent:hover .child{
  visibility: visible;
  width:320px;
  height:410px;
  opacity: 0.7;
  
}

.child p{
  margin-top: 4vh;
  width: 270px;
  font-weight: normal;
}
/* ************************************************************** */
/* **************************** */
.project {
  margin-top: 15vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100vw;
  height: 265vh;
  text-align: center;
  /* background-color: red; */
}


.project-head{
  display: flex;
  flex-direction: column;
  width: 60vw;
  height: 150vh;
  
   /* background-color: yellow; */
}


.project-head h1{
  font-family: fantasy;
  font-size: 30px;
  color: #69140e;
  }

  .project-head p{
    font-size: 20px;
    color: #69140e;
    }


.project-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 105vh;
  width: 98vw;
  gap: 20px;
  /* background-color: red; */
}

.project-item {
  width: 300px;
  height:45vh;
  cursor: pointer;
  border-radius: 6px;
  transition: transform 0.2s;
  background-color: #d58936;
}

.project-item:hover {
  transform: scale(1.1);
}

.lightbox {
  margin-top: 6vh;
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.lightbox-content {
  background-color: black;
  width: 50vw;
  height: 85vh;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #d58936;
  font-size: 40px;
  font-weight: bolder;
  cursor: pointer;
}
/* *********************************************************************** */
#reach-out{
  position: relative;
  display: flex;
  width: 100vw;
  height: 95vh;
  align-items: center;
  justify-content: space-evenly;
  background-color:#d58936;
}
#reach-out::before{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0; 
  background-image: url(/pages/ladywriting-removebg-preview.png);
    background-repeat: repeat;
    background-size: contain;
    background-position: center center;
    background-attachment: fixed;
    opacity: 0.3; 
}

.xyz{
  margin-left: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: center;
  width: 35vw;
  height: 80vh;
  gap: 15px;
  padding-left: 20px;
 
}

.xyz h1{
  font-family: fantasy;
  font-size: 28px;
  color: #69140e;
}

.xyz a{
  text-decoration: none;
  color: #69140e;
}

.xyz p{
  font-size: 20px;
  color: #69140e;
}

.xyz a :hover{
  color: red;
}

.men-at-work {
  overflow: hidden;
  width: 35vw;
  height: 80vh;
  justify-content: center;
  align-items: center;
  margin-bottom: 16vh;
  /* background-color: red; */
}

.slide-in-image {
  width: 30vw; /* Adjust to the desired image size */
  height: 85vh;
  opacity: 0;
  transform: translateX(100%); /* Start position: off the screen to the right */
  transition: transform 1s ease, opacity 1s ease;
}

.slide-in-image.visible {
  transform: translateX(0);
  opacity: 1;
}

/* Get quote button  */
.fancy-button {
  position: relative;
  width: 150px;
  height: 50px;

  font-size: 16px;
  color: #fff;
  background-color: #69140e;
  border: 2px solid white;
  border-radius: 5px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: color 0.4s ease;
}

.fancy-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: red;
  transition: left 0.4s ease;
  z-index: 0;
}

.fancy-button:hover::before {
  left: 0; /* Slide effect on hover */
}

.fancy-button:hover {
  color: #ffffff;
  border-color: #69140e; /* Border color change */
}

.fancy-button span{
  position: relative;
  z-index: 1; 
}
.fancy-button a{
  text-decoration: none;
  color: white;
}

/* ************************************************************ */





footer{
  display: flex;
  width: 100vw;
  height: 10vh;
  color: white;  
  justify-content: right;
  align-items: center;
  font-size: 16px;
  background: linear-gradient(100deg, #69140e 0%, #d58936 74%);
}

.foot{
  display: flex;
  width: 18vw;
  height: 10vh;
  color: white;  
  justify-content: center;
  place-items: center;
  font-size: 16px;
}

.foot a{
  color: white;
  text-decoration: none;  
}
.foot a:hover{
  color: red;
}

.tag{
 text-shadow:2px 2px 2px grey;
 animation:bayo 2s ease 1s infinite;
}

@keyframes bayo{

 0%{
    transform:rotateX(-45deg);
}
 50%{
    transform:rotateY(45deg);
}
} 
  
