body {
    position: relative; 
}

.d-flex{
  gap:10px;
}

.d-flex > div{
    min-width: 300px !important;
  }

.bg-dark{
    background-color: #0c1618 !important;
}

.navbar-expand-lg .navbar-collapse{
  justify-content: flex-end;
}

#section1, #section2, #section3, #section4, #section5, #section6{
    min-height: 100vh;
    font-family: 'Prompt',sans-serif;
    font-size: 5vw;
    line-height: 7vw;
    letter-spacing: 3px;
    font-weight: bold;
    text-align: center;
    position: relative;
    color: #fff;
    padding:100px 50px 20px;
}

#section6{
  min-height: unset;
}

.showanimation{
    opacity: 0;
}

@keyframes example {
    0% {top: 50vh; opacity: 0;}
    100% {top: 0; opacity: 1;}
}

.lightBg{
  background-color: #000;
  /* background-image: linear-gradient(to top, lightgrey 0%, lightgrey 1%, #e0e0e0 26%, #efefef 48%, #d9d9d9 75%, #bcbcbc 100%); */
}

.darkBg{
  background-color: #000;
  /* background-image: linear-gradient(-20deg, #616161 0%, #9bc5c3 100%); */
}

nav{
    z-index: 1;
}

.animationdiv{
    position: relative;
    top: 100vh;
    animation-name: example;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

#section1 img{
    width: 80%;
    height: auto;
}

.smallText{
    font-size: 20px;
    line-height: 23px;
    letter-spacing: 3px;
    color: #b0ffd4c9;
}

#section2, #section4{
    /* background-color: #cdcdcd; */
}

#section2 p{
    margin-bottom: 50px;
}

.typewriter p {
  overflow: hidden; /* Ensures the content is not revealed until the animation */
  border-right: .15em solid orange; /* The typwriter cursor */
  white-space: nowrap; /* Keeps the content on a single line */
  margin: 0 auto; /* Gives that scrolling effect as the typing happens */
  letter-spacing: .15em; /* Adjust as needed */
  animation: 
    typing 3.5s steps(40, end),
    blink-caret .75s step-end infinite;
}

/* The typing effect */
@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

/* The typewriter cursor effect */
@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: orange; }
}

#section2 .bio{
    font-size: 20px;
    text-align: left;
    line-height: 25px;
    letter-spacing: 1px;
    font-weight: normal;
    /* width: 40%; */
    /* padding-top: 50px; */
}

#section3>div{
    width: 49%;
}

.services{
    font-size: 20px;
    line-height: 25px;
    font-weight: normal;
    letter-spacing: 2px;
}
.services p {
  margin-bottom: 0;
  cursor: pointer;
}
.services p:hover{
  color: #b01414;
  transform: scaleY(1.2);
}
.border-left{
    border-left: 1px solid;
}

.flip-card {
    background-color: transparent;
    width: 25%;
    height: 350px;
    perspective: 1000px;
    font-size: 18px;
    letter-spacing: normal;
    line-height: 22px;
  }
  
  .flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  }
  
  .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
  }

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
  }
  
  .flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  
  .flip-card-front {
    /* background-color: #f7f1f1; */
    color: black;
    border-radius: 10px;
    padding: 20px;
    background-image: linear-gradient(-225deg, #E3FDF5 0%, #FFE6FA 100%);
  }

  .flip-card-front p {
    font-weight: normal;
}
  
  .flip-card-back {
    /* background-color: #f7f1f1; */
    color: black;
    transform: rotateY(180deg);
    border-radius: 10px;
    padding: 50px 20px;
    background-image: linear-gradient(-225deg, #E3FDF5 0%, #FFE6FA 100%);
  }

  .flip-card-back p {
    font-weight: normal;
}

  .flip-img{
    width:150px;
    height:150px; 
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .contactDiv{
    display: flex;
    gap: 20px;
    margin-top: 20px;
  }

  .innerDiv{
    width: 30%;
    word-break: break-all;
  }
  .smallText2{
    font-size: 14px;
    line-height: 17px;
    line-height: normal;
    color: #fff;
  }

  footer{
    position: fixed;
    bottom: 0;
    display: block;
    width: 100%;
    padding: 0 15px;
    background: black;
    color: #fff;
  }

  .contactImg{
    width: 100%;
  }

  .contactMainDiv{
    width: 49%;
  }

  .owlBtn{
    position: absolute;
    font-size: 28px;
    line-height: 28px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid transparent;
    color: #fff;
    text-align: center;
    padding: 0;
    font-weight: bold;
  }

  .owl-prev{
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .owl-next{
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }

  .owl-carousel .owl-item img{
    height: 100px;
  }

@media (max-width: 991px) {
    #section3>div{
        width: 100%;
    }    
}

@media (max-width: 500px) {
    .border-left{
        padding-left: 10%;
    }
    .contactMainDiv{
      width: 100% !important;
    }
    #section1, #section2, #section3, #section4, #section5{
      padding: 100px 10px 20px !important;
      min-height: unset;
    }
}

