@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Grand+Hotel&family=Huninn&family=Michroma&family=Satisfy&display=swap');
*{
  margin: 0%;
  padding: 0;
  box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
  }
body::-webkit-scrollbar{
  display: none;
}
    /* === Loader === */
    #loader {
      background-color: #121212;
      height: 100%;
      width: 100%;
      position: fixed;
      z-index: 1000;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .loader {
      display: flex;
      justify-content: space-between;
      width: 80px;
      height: 30px;
    }

    .ball {
      width: 18px;
      height: 18px;
      background-color: #00ffff;
      border-radius: 50%;
      animation: bounce 0.6s infinite ease-in-out;
    }

    .ball:nth-child(2) {
      animation-delay: 0.2s;
      width: 30px;
      height: 30px;
    }

    .ball:nth-child(3) {
      animation-delay: 0.4s;
    }
    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-20px); }
    }
    /*=====loder end=====*/
    /* === Wiper Animation === */
    #wiper {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #000000;
      z-index: 999;
      animation: wipe 1s ease forwards;
      animation-delay: 3s;
    }

    @keyframes wipe {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(100%);
      }
    }
    /*================Wiber Animations end=============*/

/*==========================Background Animation========*/


.area{
    background: rgb(194,194, 194);   
    width: 100%;
    height:inherit;
}

.circles{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.circles li{
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 253, 253, 0.225);
    animation: animate 25s linear infinite;
    bottom: -150px;
    
}

.circles li:nth-child(1){
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}


.circles li:nth-child(2){
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3){
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4){
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5){
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6){
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7){
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8){
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9){
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10){
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}
@keyframes animate {

    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

}

/*========================Background Animation end========*/

body{
  background-color: rgb(194, 194, 194);
  width: 100vw;
  transition: all 0.5s ease;
}
.box1{
  min-height: 100vh;
  width: 100vw;
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: 10vh 90vh;
  grid-template-areas: 
  "h h"
  "img con"
  ;
}

/*==================== nav-bar-start ======================*/

.box1 .nav{
  width: 100%;
  position: fixed;
  grid-area: h;
  display: flex;
  justify-content: space-between;
  padding: 10px 4%;
  z-index: 10;
}

.box1 .nav .logo{
  font-weight: bolder;
  padding: 5px;
  border-radius: 10px 0px;
  height: fit-content;
  box-shadow:white 0.1px 0.1px 6px;
  animation: 1s ease;
  font-size: 1.2em;
  text-shadow: white 2px 2px 1px;
  letter-spacing: 1px;
}

.box1 .nav .link{
  display: flex;
}
.box1 .nav .link li{
  list-style: none;
  padding: 5px;
}
.box1 .nav .link li a{
  text-decoration: none;
  padding: 5px;
  letter-spacing: 1.5px;
  color: rgb(0, 0, 0);
  font-family:cursive;
  font-weight: 600;
  text-shadow: white 1px 2px 1px;
}

.box1 .nav .link li a:hover{
 
  color: #f6f6f6;
  text-shadow: #000000 1.5px 1.5px 2px;
  transition: all 0.3s ease;
}
.box1 .nav .link li a:active{
  color: #c2f0d5;
  transition: all 0.3s ease;
}



.box1 .nav .bar{
  cursor: pointer;
  user-select: none;
    z-index: 10;
}
.bars{
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

/* Transform hamburger to X */
.bar.active .bars:nth-child(1){
  transform: rotate(45deg) translate(5px,5px);
  background-color: aliceblue;
}
.bar.active .bars:nth-child(2){
  opacity: 0;
}
.bar.active .bars:nth-child(3){
  transform: rotate(-45deg) translate(6px,-6px);
}
/* Transform handburgwer to x*/

/*==================== nav-bar-end ======================*/





/*==================== side-bar-start ======================*/
.box1 .s-bar{
  height: 70vh;
  width: 40%;
  z-index: 22222;
  background-color: rgb(96, 94, 94);
  color: white;
  margin-top: 10vh;
  position:absolute ;
  right: -40%;  
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  transition: all 0.5s ease;
  
}

.box1 .s-bar .s-link{
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items:center;
  gap: 35px;
}
.box1 .s-bar .s-link li{
  list-style: none;
}
.box1 .s-bar .s-link li a:hover{
  color: rgb(148, 225, 255);
  text-shadow: #000000 1.5px 1.5px 2px;
  transition: all 0.3s ease;
}
.box1 .s-bar .s-link a{
  text-decoration: none;
  font-weight: bolder;
  color: #fbfbfb;
}
.s-bar.show{

  right: 0;
  transition: all o.5s ease;
  
}
/*==================== side-bar-end ======================*/

.box1 .box1-img{
  grid-area: img;
  display: flex;
  justify-content: center;
  align-items: center;
}
.box1 .box1-img .img{
  height: 100%;
  width: 310px;
  margin-left: 150px;
  margin-top: -10vh;
  transition: all 0.5s ease;
}
.box1 .box1-con{
  grid-area: con;
  display: grid;
  align-items: center;
  justify-content: center;
  position: relative;
}
.box1 .box1-con .con{
  margin-top:-82px ;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0% 20px;
}
.box1 .box1-con h1{
  font-family: "Satisfy", cursive;
  font-weight: 1000;
  letter-spacing: 2.5px;
  word-spacing: 3px;
  font-size: 3em;
  text-shadow: white 2px 2px 1px;
  font-style: normal;
  text-align: center;
}


/* ============typein animation start=========== */
    #typewriter {
      font-size: 1.7em;
      border-right: 0.1em groove #f6f6f6;
      white-space: nowrap;
      font-weight: bold;
      overflow: hidden;
      display: inline-block;
      height: 1.5em;
      letter-spacing: 2.5px;
      word-spacing: 5px;
      text-shadow: #6c6c6c 2px 2px ;
      font-family: "Satisfy", cursive;
      text-align: center;
    }

    .typing {
      animation: typing 2s steps(var(--steps)) forwards;
    }

    @keyframes typing {
      from { width: 0ch; }
      to { width: var(--width); }
    }

    @keyframes blink {
      50% { border-color: transparent; }
    }

    .blinking {
      animation: blink 0.75s step-end infinite;
    }
/* ============typein animation end=========== */
/* ============Cv ball animation start=========== */

    .box1 .box1-con .con .cv{
      position: absolute;
      bottom: 100px;
      right: 110px;
    }
    /* Hidden checkbox */
    input[type="checkbox"] {
      display: none;
    }

    label {
      display: inline-block;
      cursor: pointer;
    }

    .ball-cv {
      
      width: 60px;
      height: 60px;
      background: radial-gradient(circle at 30% 30%,  white,rgb(194,194,194));
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      color: rgb(0, 0, 0);
      font-size: 2.5rem;
      font-weight: bolder;
      box-shadow: inset -5px -5px 15px rgba(255, 255, 255, 0.3),
                  inset 5px 5px 15px rgba(0, 0, 0, 0.2),
                  0 10px 20px rgba(0, 0, 0, 0.2);
      animation: bounce 1.2s infinite ease-in-out;
      transition: transform 0.3s;
    }

    @keyframes bounce {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-30px);
      }
    }

    /* Stop animation when checkbox is checked */
    #togglee:checked + label .ball-cv {
      animation: none;
    }
/* ============Cv ball animation start=========== */

/*===============Box-2-start==========================*/

.box2{
  min-height: 100vh;
  width: 100vw;
  box-shadow: 2px 2px 5px; 
  display: grid;
  align-items: center;
  align-items: center;
  grid-template-columns: 37% auto ;
  grid-template-rows: 5vh 90vh;
  grid-template-areas: "about about" "a-pic a-con";
  background: linear-gradient( rgba(0, 0, 0, 0),rgba(0, 0, 0, 0.5)), url(./media/image/product-scene.jpg) center center / cover fixed no-repeat;
}

/* .about-head{
  grid-area: about;
  height: 100%;
  width: 100%;
}
.about-head h1{ 
  display: flex;
  justify-content: center;
  align-items: end;
  font-size: 40px;
  font-weight: bolder;
  height: 100%;
  width: 100%;
  color: #000000;
  text-shadow: rgb(255, 255, 255) 1px 2px 1px;
  letter-spacing: 2.5px;
  word-spacing: 5px;
  font-family: "Satisfy", cursive;
} */
 .a-head{
  padding-top: 0;
  margin-top: 12vh;
 }
.about-pic{
  grid-area: a-pic;
  display: flex;
  align-items: end;     /* vertical centering */
  justify-content: center;
  width: 100%;
  height: fit-content;
  /* border: 2px solid blue; */
  /* margin-top: -52px; */

}
.about-pic .a-img{
  /* border: 2px solid black; */
  background-color: #dadada;
  min-width: 250px;
  height: 77vh;
  border-radius:32px;
  box-shadow:  rgb(255, 255, 255) 1px 2px 1px, #ffffff 4px 5px 3px;
}
.about-pic .a-img img{
  height: 100%;
  width: 100%;
  border-radius: 32px;
}

.about-con{
  height: 100%;
  grid-area: a-con;
  padding: 5% 22px;
  display: flex;
  flex-direction: column;
  justify-content:space-around;
  /* border: 2px solid green; */

}
.a-head h1{
  display: none;
  grid-area: a-h;
  text-align: center;
  padding-top: 31px;
  font-size: 40px;
  font-weight: bolder;
  color: #000000;
  text-shadow: rgb(255, 255, 255) 1px 2px 1px, #bde0f8 4px 5px 3px;
  letter-spacing: 2.5px;
  word-spacing: 5px;
  font-family: "Satisfy", cursive;
}
.about-con h1{
  font-size: 40px;
  font-weight: bolder;
  color: #000000;
  text-shadow: rgb(255, 255, 255) 1px 2px 1px, #bde0f8 4px 5px 3px;
  letter-spacing: 2.5px;
  word-spacing: 5px;
  font-family: "Satisfy", cursive;

}
.about-con h3{
  font-family:cursive;
  font-weight: 600;
  font-style: normal;
  font-size: 30px;
  text-shadow: white 1px 2px 1px;
}
.about-con p{
  font-weight: 520;
  font-family: cursive;
  color: white;
  text-shadow: #0b0b0b 0.5px 1px 1px,black 1px 1px 1px;

}
.about-con p i{
  color: black;
  text-shadow: none;
  font-weight: bolder;
  font-style: normal;
  text-transform: capitalize;
  padding-right: 5px;

}
/*===============Box-2-end============================*/

/*===============Box-3-start============================*/
.box3{
  min-height: 100vh;
  width: 100vw;
  z-index: 5;
  position: relative;
  overflow: hidden;
  background-attachment: fixed;
  background-color: rgba(0, 0, 0, 0.4);
}
.round, .round2, .box-z {
  height: 550px;
  width: 550px;
  position: absolute;

}
.round {
  top: 50px;
  left: -50px;
  z-index: 1;
  height: 350px;
  width: 350px;
}

.round2 {
  height: 450px;
  width: 350px;
  top: 50%;
  left: 30%;
  z-index: 1;
}

.box-z {
  height: 30%;
  top:0;
  bottom: -20px;
  right: 60px;
  z-index: 1;
}


.box3 h1{
  
  display: flex;
  justify-content: center;
  align-items: end;
  height: 20vh;
  color: rgb(255, 255, 255);
  font-family: "Satisfy", cursive;
  text-shadow: rgb(0, 0, 0) 2px 2px 1px, #d33f58 1px 2px 14px;
  letter-spacing: 2px;
  
}
.skills{

  min-height: 77.5vh;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}
    .card {
      height: 350px;
      width: 220px;
      margin-top: 22px;
      perspective: 1000px;
      animation: bounce 2s ease-in-out infinite;
      z-index: 33;
      cursor: pointer;
    }
    .card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: inherit;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      z-index: 0;
    }

    .inner-card {
      background-color: transparent;
      height: 100%;
      width: 100%;
      border-radius: 10px;
      position: relative;
      transition: transform 0.6s;
      transform-style: preserve-3d;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    }

    .card:hover .inner-card {
      transform: rotateY(180deg);
    }

    .front, .back {
      z-index: 1;
      position: absolute;
      width: 100%;
      height: 100%;
      backface-visibility: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-evenly;
      flex-wrap: wrap;
      font-size: 24px;
      color: white;
      border-radius: 10px;
      text-shadow: 2px 2px 1px black,1px 2px 1px white;
    }

    .card-i {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
    }
    .card-i p{
      
      color: #000000;
      text-shadow: white 2px 1px 1px;
      font-weight: bolder;

    }
    .card-i svg{
      height: 43px;
      width: 43px;
    }
    .card-i i{
      font-size: 43px;
      color: #000000;
      text-shadow: none;
    }
    svg .icon {
    fill: red; 
    border: 2px solid red;
    }
    
    .front {
      background-color:transparent;
    
    }

    .back {
      background-color: #bde0f8;
      transform: rotateY(180deg);
    }

    .skills img {
      height: 120px;
    }

    @keyframes bounce {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-10px);
      }
    }
/*===============Box-3-end============================*/


/*===============Box-4-start============================*/


.box4{
  min-height: 100vh;
  width: 100vw;
  margin: 3px;
  background: linear-gradient(0deg, rgba(115, 115, 115, 1)11%, rgba(148, 187, 233, 0.5) 95%);  display: flex;
  justify-content: center;
  align-items: center;
}

.project_container{
  
}
.project_container h1{
  font-family: "Satisfy", cursive;
  letter-spacing: 2.5px;
  text-shadow: 2px 2px 1px white, 2px 1px 3px rgb(38, 210, 249);
  text-align: center;
  margin: 25px;
}
.card_container{
  width: 100vw;
  height: 100%;
  display: flex;
  gap: 10px;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 35px;
}

.cards{
  border: 2px solid rgb(79, 79, 79);
  height: 225px;
  width: 65%;
  box-shadow: 1px 0px 15px rgba(137, 43, 226, 0.2);
  margin-left: -20%;
  display: flex;
  border-radius: 15px;
  justify-content: end;
  background-color: rgba(255, 255, 255 ,0.4);
}
.inner_cards {
  height: 100%;
  width: 25%;
  background: radial-gradient(circle, rgba(148, 187, 233, 1) 0%,rgba(194, 194, 194, 1) 100%);
  border-radius:15px;
  display: flex;
  z-index: 2;
  justify-content: center;
  align-items: center;
  font-weight: bolder;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.inner_cards_2{
  width: 75%;
  z-index: 1;
  height: 100%;
  border-radius: 0 15px 15px 0;
  background-color: rgb(194, 194, 194);


  /* new code */
      display: flex;
      justify-content:space-between;
      align-items: stretch; 

}
    .inner_cards_2 div{
      display: flex;
      justify-content: end;
      align-items: center;
      position: relative;
      border-radius: 10px 10px;
      box-shadow: 2px 2px 3px black;
      cursor: pointer;
      overflow: hidden;
      padding: 13px 0px;
    }
    .inner_cards_2 h1{
      position: absolute;
      font-family:Verdana, Geneva, Tahoma, sans-serif;
      right: -40px;
      rotate: 90deg;  
      font-size: 1em;
      color: rgb(255, 255, 255);
      text-shadow: 1px 1px 1px rgb(0, 0, 0);
      opacity: 1;
      visibility: visible;
      text-decoration: underline;
      transition: opacity 0.5s ease, visibility 0.5s ease;
    }
    #last-card{
      
      text-align: center;
      rotate: 0deg;     
      left: -33px;

    }
    .inner_cards_2 div:hover{
      flex: 3;
      transition: all 0.5s ease;
    }
    .inner_cards_2 > div:hover > h1 {
      opacity: 0;
      visibility: hidden;
    }
    .inner_cards_2 > div:hover > a img{
    filter: blur(0);
    transition: all 0.5s ease;  
    cursor: pointer;
    }
    .box-p-1{
 
      flex: 1;
      z-index: 3;
    }
    .box-p-2{

      flex: 1;
      z-index: 2;
    }
    .box-p-3{

      flex: 1;
      z-index: 1;
    }
    .inner_cards_2 img{
      height: 100%;
      width: 100%;
      border: 2px solid white;
      border-radius: 10px 10px;
      filter: blur(4px);
    }


.cen_cards{
  margin-left: 20%;
}
.cen_cards  .inner_cards{
  text-align: center;
  border-radius: 0 15px 15px 0;
}
.cen_cards  .inner_cards_2{
   border-radius:  15px 0 0 15px ; 
}

/*===============Box-4-end============================*/

/*===============Box-5-start============================*/


.box5 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 100vh;
  width: 100vw;
  overflow: hidden;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5)),
              url(./media/image/last-2.2.jpeg) center center / cover fixed no-repeat;
              background-blend-mode: darken;
}
.firefly {
  position: absolute;
  width: 1px;
  height: 3px;
  background: #fffb99;
  border-radius: 50%;
  box-shadow: 0 0 8px 2px #fffb99;
  opacity: 0;
  animation: blink 2s infinite ease-in-out;
}
@keyframes blink {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}


.contact-box{
  height: 80vh;
  width: 80%;
  box-shadow:  #bde0f8 2px 2px 10px;
  background-color: rgba(0, 0, 0, 0.2);
  margin: 0;
  border-radius: 30px;
  padding: 0 10px;  
  color: rgb(255, 255, 255);
  font-weight: bolder;
  letter-spacing: 1px;
  display: flex;

  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.in-cont-box1{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40%;
  padding-top:10px;
  height: 70vh;
  border-right: 1.5px solid #bde0f8;
}
.in-cont-box1 form{
  display: flex;
  flex-direction: column;
  align-items: center;
  align-items: start;

  width: 80%;
}
label{
  font-size: small;
  font-weight: bolder;
}
.in-cont-box1 form input{
  width: 100%;
  height: 25px;
  border: none;
  background-color: transparent;
  border-bottom: 1px solid white;
  color: rgb(228, 228, 228);
  letter-spacing: 2px;
  font-size: large;

}
input:focus{
  border:none;
  outline: none;
}
label{
  font-weight: 100;
  text-shadow: black 1px 2px 1px;
}
.in-cont-box1 form textarea{
  width: 100%;
  height: 50px;
  padding: 5px;
}
textarea:focus{
  border: none;
  outline: none;
}
.in-cont-box1 form button{
  height: 35px;
  width: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  background-color: #061f0b;
  border: none;
  color: white;
  border: 2px solid white;
  margin-top: 10px;
  cursor: pointer;
}
form button:hover{
background-color: #00ffff;
color: #000000;
border: #0b0b0b;
}
form button:active{
  background-color: green;
}
.in-cont-box2{
  width: 60%;
  height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content:center;
  gap: 30px;
  align-items:start;
  padding-left: 25px;
  text-shadow: black 1px 2px 1px;
}
.in-cont-box2 h1{
    font-family: "Satisfy", cursive;
}
.box5 i{
  color: #78c8fa;
  padding: 0 10px;
  
}
.box5 h5 i{
 font-size: 1.5em;
 cursor: pointer;
}

/*===============Box-5-end============================*/


/* ============Media Qurey=========== */


@media (orientation: portrait){


  /* ====================Box-1====================== */
  .box1 .nav .bar .bars{
  height: 3px;
  width: 25px;
  margin: 5px;
  background-color: black;
}
.img{
  margin:0%;
}
  .box1{
    grid-template-columns: 100%;
    grid-template-rows: 5vh 60vh 30vh;
    grid-template-areas: 
  "h h"
  "img img"
  "con con"
  ;
  }
  .box1 .box1-img .img{
    width: 70%;
    margin-left: 0%;
    margin-top: 0%;
  }
  .link{
    display: none !important;
  }


  .ball2 {
      width: 50px;
      height: 50px;
      }
  .ball-cv{
    width: 50px;
    height: 50px;
    
  }

  .box1 .box1-con .con .cv{
  position: absolute;
  bottom:0px;
  right: 10px;
}
  /* ====================Box-1====================== */

  /* ====================Box-2====================== */
  
  .a-head h1{
  display: block;
}

  .box2 {
    min-height: 165vh;
    
  }
  .box2{
    grid-template-columns:  1fr ;
    grid-template-rows: 15vh 70vh min-content(0vh);
    grid-template-areas: "a-h" "a-pic" "a-con";
  }  
  .about-pic{
      padding: 5% 0%;
      align-items: start;
  }
  .about-pic .a-img{
    height: 65vh;
  }

  .about-con {
    margin-top: -33px;
    padding: 2px 44px;
    line-height: 22px;
  }

  .about-con p,h3{
    text-align: center;
  }
  .about-con h1{
    display: none;
  }
 

  /* ====================Box-2====================== */
  /* ====================Box-3====================== */
 
.round {
  top: 40%;
  left: 0px;
  z-index: 1;
  height: 150px;
  width: 350px;
}

.round2 {

  width: 350px;
  top: 82%;
  left: 30%;
  z-index: 1;
}

.box-z {
  top:10%;
  bottom: 20px;
  right: 0px;
  z-index: 1;
}

  /* ====================Box-3====================== */
 
 
  /* ====================Box-4====================== */
 .box4{
  padding: 10px;
  min-height: 50vh;
 }
.cards{
  height: 150px;
  width: 96%;
  margin: 0px;
}
.cen_cards{
  margin-left: 0%;
} 
  /* ====================Box-4====================== */
  
  /* ====================Box-5====================== */
  
.contact-box{
  flex-wrap: nowrap;
  flex-direction: column-reverse;
  height: 100%;
  padding: 10% 0%;
  margin: 10% 0;
}
.in-cont-box1{
  height: fit-content;
  margin: 10%;
  width: 100%;

} 
.in-cont-box2{
  justify-content: center;
  align-items: center;
  height: fit-content;
  width: 100%;
  padding-left: 0px;
} 
.in-cont-box2 p{
  text-align: center;
}


 
  /* ====================Box-5====================== */


}



