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

html{
  scroll-behavior: smooth;
}

body{
  overflow-x: hidden;
}
/* ********************************************************** */
.free-gift{
  position: absolute;
  width: 130px;
  height: 130px;
  background-color: red;
  text-align: center;
  top: 15%;
  right: 2%;
  z-index: 1;
  animation:gift 2s ease 3s infinite;  
}

@keyframes gift{

 0%{
    transform:rotateY(0deg);
}
25%{
  transform:rotateY(90deg);
}
 50%{
    transform:rotateX(0deg);
}
75%{
  transform:rotateX(60deg);
}
100%{
  transform:rotateX(0deg);
}
}
.free-gift img{
  width: 100%;
  height: 100%;
}
.free-gift a{
  color: yellow;
  text-decoration: none;
  text-shadow: red 2px 2px 2px;    
}


/* 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 */


#home{
  padding-top: 20vh;
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: 100vh; 
  justify-content: center;
  align-items: center;
  background-image: url(./pageswitback/Designer2.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center; 
}


/* START- CENTER CAPTION ON LANDING-PAGE AND REQUEST SERVICE BUTTON HERE */
.content {
  height: 85vh;
  width: 90vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* background-color: #69140e; */
}

/* *************************** */
/*start- P-pas Synergy */
.content h1{
    font-family: fantasy;
    font-size: 90px;
    letter-spacing: 3px;
    text-align: center;
    word-spacing: 40px;
    color: white;
    text-shadow: #d58936 5px 5px 5px;
    animation: ppas 2s;
}
@keyframes ppas {
  0% {
      transform: rotateX(180deg) scale(0);
  }

}

/* start- company slogan */
.content h3{
  font-family: 'Splash', cursive;
  letter-spacing: 3px;
  font-size: 35px;
  color: white;
  text-shadow: #d58936 3px 3px 3px;
  margin-top: 35px;
  animation: slogan 3s;
}
@keyframes slogan {
  0% {
      transform: rotateX(180deg) scale(0);
  }
}

/* end-company slogan */
/* *************************************** */
/* Get quote button  */
.request-btn {
  margin-top: 50px;
  position: relative;
  width: 200px;
  height: 70px;
  font-size: 20px;
  color: #fff;
  background-color: #69140e;
  border: 2px solid white;
  border-radius: 5px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: color 0.4s ease;
  animation: request 3.5s;
}
@keyframes request {
  0% {
      transform: rotateX(180deg) scale(0);
  }

}

.request-btn a{
  text-decoration: none;
  color: white;
}


.request-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #d58936;
  transition: left 0.4s ease;
  z-index: 0;
}

.request-btn:hover::before {
  left: 0; /* Slide effect on hover */
}

.request-btn:hover {
  color: #ffffff;
}

.request-btn span {
  position: relative;
  z-index: 1; /* Keep text on top */
}



/* END- CENTER CAPTION LANDING-PAGE AND REQUEST SERVICE HERE */
/* ************************************************************************ */
#promo{
  margin-top: 5vh;
  display: flex;
  width: 100vw;
  height: 75vh;
  justify-content: center;
  align-items: center;
  background-image: url(./prjct-img/2onruff.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.promo-banner {
  overflow-y: hidden;
  width: 50vw;
  height: 40vh; 
  opacity: 0;
  transform: translateX(-100%); /* Start position: off the screen to the right */
  transition: transform 2s ease, opacity 1s ease;
}

.promo-banner.visible {
  transform: translateX(0);
  opacity: 1;
}

.discount img{
  width: 100%;
  height: 100%;
}
/* ****************************************************************** */

/* START- ABOUT SECTION BEGINS HERE */
#about{
  padding-top: 2vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 225vh;
  width: 100vw;
  /* background-color: #69140e; */
}


/*start- core-vision-mission div */
.core-vision-mission{
  margin-top: 30px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100vw;
  height: 68vh;
  color: white;
  background-color: #69140e;
}
/*end- core-vision-mission div */

.believe{
  display: flex;
  flex-direction: column;
  height: 55vh;
  width:45vw ;
  /*text-align:center;*/
  justify-content: center;
  background-color: #d58936;
  padding-left: 10px;
}

.believe h1{
  font-size: 28px;
}

.believe p{
  font-size: 18px;
  padding-top: 10px;
  width: 100%;
  height: 70%;
}

#about .core-vision-mission > .believe{
  scale: 0.9; opacity: 1;
  animation: fade-in linear;
  animation-timeline: view(10%);
  animation-range:contain;
}
@keyframes fade-in {
  to {scale: 0; opacity: 0;}
}

/* *********************************** */
/*start- ppas description styling */
.about-ppas-container{
  margin-top: 50px;
  position: relative;
    width: 100vw;
    height: 145vh;
    display: flex;
    justify-content: center;
    align-items: center;
    /*padding-top: 30px;*/
    /* background-color: blue; */
}

.about-ppas-container::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-image: url(./pageswitback/helmet.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    /* background-attachment: fixed; */
    opacity: 0.3;
}

.texts{
  height: 120vh;
  width: 60vw;
  /* background-color: yellow; */
}


.texts img{
  width: 250px;
  height: 250px;
  border-radius: 150px;
  margin-left:1rem;
  shape-outside:circle();
  float: left;
  margin-right:3rem;
}

.texts h1{
  font-family: fantasy;
  font-size: 30px;
  letter-spacing: 1px;
  color: #69140e;
  text-align: center;  
}

.texts p{
  font-size: 20px;
  color: #69140e;
}
/* END- ABOUT SECTION ENDS HERE */

/* ***************************************************************************************** */
/* START: GALLERY SECTION  */
/* **************************** */
.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: 32px;
  color: #69140e;
  }

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

.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-top: 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: #d58936;
  transition: left 0.4s ease;
  z-index: 0;
}

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

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

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


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

/* STYLING FOR THE FOOTER AREA  */
footer{
  display: flex;
  width: 100vw;
  height: 10vh;
  color: white;  
  justify-content: right;
  align-items: center;
  font-size: 16px;
  background: linear-gradient(100deg, #d58936  0%, #69140e 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);
}
} 