@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

nav {
  width: 100%;
  position: sticky !important;
  top: 0;
  left: 0;
  box-shadow: 0px 5px 8px rgba(0, 0, 0, 0.5);
  z-index: 10;
}

.navbar-brand {
  font-weight: 700;
  color: azure !important;
}

.nav-link {
  color: azure !important
}

.nav-link:hover {
  border-bottom: 1px solid chartreuse;
}

section {
  width: 100%;
  min-height: 100vh;
}

/*HomeSection*/
#Home {
  width: 100%;
  height: 100vh;
  background: linear-gradient(rgba(122, 224, 4, 0.7), rgba(3, 3, 3, 0.9)), url(logo\ for\ WEB.jpg);
  background-size: auto auto;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  color: rgb(214, 230, 129);
  flex-direction: column;
}

#Home p {
  position: absolute;
  top: 80%;
  font-size: 70px;
  font-family: 'Calibri';
  opacity: 0;
  animation: text 3s ease-in-out;
}

#Home p:nth-child(1) {
  animation-delay: 0s;
}

#Home p:nth-child(2) {
  animation-delay: 3s;
}

#Home p:nth-child(3) {
  animation-delay: 6s;
}

#Home p:nth-child(4) {
  animation-delay: 9s;
}

@keyframes text {
  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

#Home span {
  color: crimson;
}

@media screen and (max-width: 576px) {
  #Home p {
    font-size: 80px;
  }
}

/* About */

#About {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(rgba(224, 220, 4, 0.7), rgba(243, 9, 9, 0.9));
}

.circle {
  width: 400px;
  height: 400px;
  background: rgb(248, 248, 248);
  border-radius: 50%;
  position: relative;
  box-shadow: 0px 5px 8px rgba(0, 0, 0, 0.5);
  margin-bottom: 3%;
  margin-top: 8%;
  transition: 1s;
}

.circle img {
  position: absolute;
  height: 300px;
  top: -12%;
  left: 10%;
  border-bottom-left-radius: 25%;
  filter: drop-shadow(0px 50px 30px rgba(0, 0, 0, 0.8));
  transition: 1s;

}

.circle:hover {
  width: 700px;
  height: 400px;
  border-radius: 10px;
  transition: 1s;

}

.circle:hover img {
  position: absolute;
  top: 2%;
  left: 2%;
  transition: 1s;
}

.circle .Content {
  opacity: 0;
}

.text-justify {
  background: rgba(241, 241, 239, 0.8);
  text-align: justify;
  font-family: 'Calibri';
  padding: 2%;
  text-decoration-color: rosybrown;
}

.circle:hover .Content {
  position: absolute;
  top: 5%;
  Left: 35%;
  align-items: flex-start;
  color: rgb(37, 33, 33);
  opacity: 1;
  transition: 1s;
  border: 1px rgba(25, 33, 66, 0.7);

}

@media screen and (max-width: 576px) {
  .circle {
    width: 400px;
    height: 400px;
    background: rgb(181, 221, 5);
    border-radius: 50%;
    position: relative;
    box-shadow: 0px 5px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 3%;
    margin-top: 8%;
    transition: 1s;
  }

  .circle:hover {
    width: 500px;
    height: 500px;
    border-radius: 10px;
    transition: 1s;

  }

  .circle:hover .Content {
    position: absolute;
    top: 5%;
    padding: 1%;
    left: 40%;
    align-items: flex-start;
    color: rgb(10, 10, 10);
    opacity: 1;
    transition: 1s;


  }
}

/* Power BI Samples*/


#PowerBI {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(75deg, rgb(190, 7, 78), rgb(211, 13, 122))
}

.carousel {
  width: 70%;
  height: 80vh;
  box-shadow: 10px 20px 10px rgba(0, 0, 0, 0.4);
}

.Slide {
  width: 100%;
  height: 80vh;

}

.title-BI {
  background: rgba(230, 63, 113, 0.8);
  text-align: center;
  font-family: 'Calibri';
  font-weight: bold;
  font-style: normal;

}

@media screen and (max-width: 576px) {
  .carousel {
    width: 70%;
    height: 40vh;
    box-shadow: 10px 20px 10px rgba(0, 0, 0, 0.4);
  }

  .Slide {
    width: 100%;
    height: 40vh;

  }


}

/*PythonSection*/

#Python {
  padding-top: 2%;
}

.card {
  margin-top: 5%;
}

.card:hover {
  box-shadow: 8px 15px 10px rgba(0, 0, 0, 0.3);
  transition: 0.5s;
}
.styled-table {
  border-collapse: collapse;
  margin: 25px 0;
  font-size: 0.9em;
  font-family: sans-serif;
  min-width: 400px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
.styled-table thead tr {
  background-color: #009879;
  color: #ffffff;
  text-align: left;
}
.styled-table thead tr.tr1 {
  background-color: #5a7c09;
  color: #ffffff;
  text-align:left;
  text-decoration: solid;
  text-justify: auto;
}
.styled-table th,
.styled-table td {
    padding: 12px 15px;
}
.styled-table tbody tr {
  border-bottom: 1px solid #dddddd;
}

.styled-table tbody tr:nth-of-type(even) {
  background-color: #f3f3f3;
}

.styled-table tbody tr:last-of-type {
  border-bottom: 2px solid #009879;
}
.styled-table tbody tr.active-row {
  font-weight: bold;
  color: #009879;
}
#contact {
  padding-top: 5%;
  background: linear-gradient(75deg, rgb(190, 7, 78), rgb(211, 13, 122));
}

#contact iframe {
  box-shadow: 8px 15px 10px rgba(0, 0, 0, 0.3);

}

#certificates{
  display:flex;
  justify-content: center;
  align-items: center;
  padding-top: 3%;
  background: linear-gradient(rgba(248, 248, 7, 0.7), rgba(223, 22, 89, 0.9));
}
.carousel{
width: 80%;
height: 80vh;
background-color: rgba(240, 4, 95, 0.2);
box-shadow: 10px 20px 10px rgba(0, 0, 0, 0.4);
}

.disimage{
  width: 80%;
  height: 80vh;
  padding-top: 5%;
  padding-left: 35%;
  padding-bottom: 18%;
 }
.textalign{
  justify-content: space-evenly;
  text-indent:0px;
  padding-top: -120%;
  padding-left: 25%;
  text-overflow:clip;
}
@media screen and (max-width:570px){
  .carousel{
    width: 90%;
    height: 50vh;
    box-shadow: 10px 20px 10px rgba(0, 0, 0, 0.4);

  }
  .disimage{
    width: 80%;
    height: 50vh;
    padding-top: 5%;
  
  }
  .textalign{
    justify-content: center;
    padding-top: 10%;
    padding-left: 25%;
  }
}