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

html{
  scroll-behavior: smooth;
}

body{
  /* overflow-y: hidden; */
  overflow-x: hidden;
  
}
/* ************************************************** */

/* START:STYLING  FOR THE NAVBAR STARTS FROM HERE */
/* Style the navbar */
.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;
}

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

.nav-item {
  margin-left: 0.5rem;
  padding-right: 30px;
}

.nav-link {
  color: white;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #d58936;
}

.dropdown-menu {
  position: absolute !important;
  top: 100%; /* Align dropdown directly below the parent */
  left: 0; /* Align dropdown with the parent item */
  background-color: #69140e;
  border: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.dropdown-item {
  color: white;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-item:hover {
  background-color: #d58936;
  color: white;
}


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

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


/* &&&&&&&&&&&&&&&&&&&&&&&&&&& */

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

/* START- ABOUT SECTION BEGINS HERE */
#about{
    margin-top: 10vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 200vh;
    width: 100vw;
    /* background-color: yellow; */
  }
  
  .our-company{
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 15vh;
    justify-content: center;
    align-items: center;
    /* background-color: #f8de7e; */
  }
  
  .our-company h1{
    font-family: fantasy;
    font-size: 35px;
    color: #69140e;
    }
  .line{
    margin-top: 5px;
    width: 100px;
    height: 4px;
    background-color: #69140e;
  }
  
  
 /*start- core-vision-mission div */
.core-vision-mission{
  margin-top:10vh;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100vw;
  height: 70vh;
  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: 40px;
    position: relative;
      width: 100vw;
      height: 140vh;
      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: black; */
  }
  
  
  .texts img{
    width: 250px;
    height: 250px;
    border-radius: 150px;
    margin-left:1rem;
    shape-outside:circle();
    float: left;
    margin-right:3rem;
    opacity: 0; /* Start invisible */
    animation: fadeIn 2s ease-in forwards; /* Apply the fade-in animation */
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.5); /* Start small */
  }
  100% {
    opacity: 1;
    transform: scale(1); /* Grow to full size */
  }
}
  
  .texts h1{
    font-family: fantasy;
    font-size: 30px;
    letter-spacing: 1px;
    color: #69140e;
    text-align: center;  
  }
  
  .texts p{
    font-size: 20px;
    color: #69140e;
  }
/* **************************************************   */
  
  
  /* <!--START THE TEAM PROFILE BEGIN HERE--> */
  #team{
    margin-top:8vh;
    padding-top: 5vh;
    display: flex;
    flex-direction:column;
    width:100vw;
    height: 190vh; 
    align-items: center;
    /* background: lightcoral; */
  }
  .our-team{
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 40vh;
    align-items: center;
    /* background-color: #f8de7e; */
  }
  
  #team h1{
  font-family: fantasy;
  font-size: 35px;
  color: #69140e;
  }

  .our-team p{
    display: flex;
    margin-top: 2vh;
    text-align: center;
    width: 50vw;
    height: 25vh;
    font-size: 20px;
    color: #69140e;
    /* background-color: red; */
  }
  
  
  .team-profile {
    margin: 20px; /* Add space around each profile card */
    display: flex;
    flex-direction: column;
    width: 310px;
    height: 410px;
    background:#69140e;
    transform: translateX(100%);
    opacity: 0;
    transition: transform 1s ease, opacity 1s ease;
  }
  
  .team-profile.visible {
    animation: slideIn 1s ease forwards;
  }
  @keyframes slideIn {
    from {
      transform: translateX(-100%);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  .team-container {
    display: flex;
    flex-wrap: wrap;
    width: 83vw;
    height: auto;
    justify-content: space-evenly;
    align-items: center;
    /* background-color: orange; */
    overflow-y: hidden;
    overflow-x: hidden;
  }
  
  .team-profile img {
    width: 100%;
    height: 75%;
  }
  
  .team-details {
    width: 100%;
    height: 95px;
    color: white;
    background-color: rgb(213, 0, 0);
  }
  
  .team-details h1 {
    font-family: fantasy;
    letter-spacing: 1px;
    font-size: 28px;
    text-align: center;
    color: white !important;
  }
  
  .team-profile p {
    text-align: center;
    font-size: 18px;
    color: white;
  }
  
  /* <!--END THE TEAMS PROFILE END HERE   --> */
/* *************************************************** */
  #client{
    padding-top: 5vh;
    display: flex;
    flex-direction:column;
    width:100vw;
    height: 120vh; 
    align-items: center;
    /* background: lightblue; */
  }
  .our-client{
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 50vh;
    align-items: center;
    /* background-color: #f8de7e; */
  }  
  #client h1{
  font-family: fantasy;
  font-size: 35px;
  color: #69140e;
  }

  .our-client p{
    margin-top: 2vh;
    text-align: center;
    width: 65vw;
    height: 35vh;
    font-size: 20px;
    color: #69140e;
    /* background-color: red; */
  }

/* ******************************************************************** */
  .man{
    width: 100vw;
    height: auto;
    /* background-color: yellow; */
}
.slider{
  color: red;
    width: 100vw;
    height: 30vh;
    overflow: hidden;
    mask-image: linear-gradient(
        to right,
        transparent,
        #000 10% 90%,
        transparent
    );
}
.slider .list{
    display: flex;
    width: 100vw;
    min-width: calc(var(--width) * var(--quantity));
    position: relative;
}
.slider .list .item{
    width: var(--width);
    height: var(--height);
    position: absolute;
    left: 100%;
    animation: autoRun 6s linear infinite;
    transition: filter 0.5s;
    animation-delay: calc( (6s / var(--quantity)) * (var(--position) - 1) - 10s)!important;
}
.slider .list .item img{
    width: 100%;
}
@keyframes autoRun{
    from{
        left: 100%;
    }to{
        left: calc(var(--width) * -1);
    }
}
.slider:hover .item{
    animation-play-state: paused!important;
    filter: grayscale(1);
}
.slider .item:hover{
    filter: grayscale(0);
}
.slider[reverse="true"] .item{
    animation: reversePlay 10s linear infinite;
}
@keyframes reversePlay{
    from{
        left: calc(var(--width) * -1);
    }to{
        left: 100%;
    }
}

/* *********************************************************************** */
#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;
  /* font-size: 20px; */
}

.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: #d58936; */
}

.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; /* Keep text on top */
}

.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);
}
} 
  
  
  /* END- ABOUT SECTION ENDS HERE */