* {
    padding: 0px;
    margin: 0px;
}

html {
    background-color: #FBFBF9;
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    scroll-behavior: smooth;
}

h1 {
    color: #546E7A;
    font-weight: 600;
    font-size: 4.5rem;
    animation-delay: 0.75s;
}

h2 {
    color: #546E7A;  
    font-weight: 200;
    font-size: 1.5rem;
    animation-delay: 5s;
}

h3 {
    color: #546E7A;
    font-weight: 600;
    font-size: 2.5rem;
    animation-delay: 0.75s;
}

a {
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
}

p {
    font-size: 1em;
    color: #546E7A;
    line-height: 1.25;
    font-weight: 300;
}

section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1em;
    width: 80%;
    margin: 0 auto;
}

.heroContainer {
    height: 100vh;
}

.imgContainer {
    position: relative; 
    display: flex;
    align-items: center;
    justify-content: center;   
    height: 260px;
    width: 260px;
}


.myPortrait {
  animation: introPicture .75s ease-in-out;
  z-index: 10;
  position: absolute;
}

.squareOne {
  opacity: 0;
  animation: rotateSquareOne 0.75s ease-out forwards;
  animation-delay: 0.75s;
}

.squareTwo {
  opacity: 0;
  animation: rotateSquareTwo 0.75s ease-out forwards;
  animation-delay: 0.75s;
}

.squareThree {
  opacity: 0;
  animation: rotateSquareThree 0.75s ease-out forwards;
  animation-delay: 0.75s;
}

.redSquare{
    background: rgba(229, 57, 53, 0.27);
    border-radius: 25px;
    /* box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); */
    backdrop-filter: blur(9.8px);
    -webkit-backdrop-filter: blur(9.8px);
    border: 1px solid white;
    width: 198px;
    height: 198px;
    position: absolute;
    z-index: 9;
}

.yellowSquare{
    background: rgba(253, 216, 53, 0.27);
    border-radius: 25px;
    /* box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); */
    backdrop-filter: blur(9.8px);
    -webkit-backdrop-filter: blur(9.8px);
    border: 1px solid white;
    width: 198px;
    height: 198px;
    position: absolute;
    z-index: 8;
}

.blueSquare {
    background: rgba(30, 136, 229, 0.27);
    border-radius: 25px;
    /* box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); */
    backdrop-filter: blur(9.8px);
    -webkit-backdrop-filter: blur(9.8px);
    border: 1px solid white;
     width: 198px;
    height: 198px;
    position: absolute;
    z-index: 7;
}

.heroText {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.fadeInUp {
    opacity: 0;
    animation: fadeInUp .75s ease-out forwards;
}

.textDelayOne {
     animation-delay: 1.75s;
}

.textDelayTwo {
     animation-delay: 2s;
}

.ctaDelay {
     animation-delay: 2.3s;
}


.buttonContainer {
    display: flex;
    align-items: center;
    gap: 1em;
    margin-top: 1em;
}

.primaryButton {
    background: #1E88E5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1em;
    border-radius: 10px;
    gap: 0.5em;
    color: #fff;
    transition: background-color 0.3s ease;
}

.primaryButton:hover {
    background-color: #1565C0;
}

.secondaryButton {
    background: #ffffff;
    border: 1px solid #E0E0E0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1em 1.5em;
    border-radius: 10px;
    gap: 0.5em;
    color: #546E7A;
    transition: background-color 0.3s ease;
}

.secondaryButton:hover {
    background-color: #FAFAFA;
}

.textDelayTwo {
     animation-delay: 2s;
}


.infoSections {
      padding-top: 5%;
      margin-bottom: 7%;
}

.subHeading {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.headingBadge {
    background: #F3E5F5;
    padding: .5em 1em;
    border: 1px solid #E1BEE7;
    border-radius: 100px;
    color: #8E24AA;
    display: flex;
    align-items: center;
    gap: .5em;
    margin-bottom: .75em;
}

.headingBadgeTwo {
    background: #E0F2F1;
    padding: .5em 1em;
    border: 1px solid #B2DFDB;
    border-radius: 100px;
    color: #00897B;
    display: flex;
    align-items: center;
    gap: .5em;
    margin-bottom: .75em;
}

.headingBadgeThree {
    background: #E3F2FD;
    padding: .5em 1em;
    border: 1px solid #BBDEFB;
    border-radius: 100px;
    color: #1E88E5;
    display: flex;
    align-items: center;
    gap: .5em;
    margin-bottom: .75em;
}


.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1em;
}

.item {
    text-align: left;
    background: #ffffff;
    max-width: 100%;
    padding: 1.5em;
    box-shadow: 0px 5px 15px 5px rgba(133, 133, 133, 0.05);
    -webkit-box-shadow: 0px 5px 15px 5px rgba(133, 133, 133, 0.05);
    -moz-box-shadow: 0px 5px 15px 5px rgba(133,133,133,0.05);
    border-radius: 15px;
    transition: box-shadow 0.5s ease-in-out;
}

.item:hover {
    box-shadow: 0px 5px 15px 5px rgba(133, 133, 133, 0.25);
    cursor: default;
}

.itemHeader {
    display: flex;
    align-items: center;
    margin-bottom: 1.5em;
    gap: 1em;
}

.itemSubHeader {
    display: flex;
    flex-direction: column;
    gap: .25em;
}

.itemHeaderText {
    font-size: 1.25em;
    font-weight: 400;
}

.itemDate {
    color: #90A4AE;
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.itemText {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.itemImg {
    height: 50px;
}

.gridTwo {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1em;
  width: 100%;
}

.gridThree {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1em;
  width: 100%;
}

.skillIcon {
    background: #FCE4EC;
    border: 1px solid #F8BBD0;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.skills {
    display: flex;
    flex-direction: column;
    gap: 1em;
    align-items: center;
    text-align: center;
}


.skillSubheading {
    font-weight: 400;
}

.skillText {
    display: flex;
    flex-direction: column;
    gap: .25rem;
}

.skillIcon svg {
  transition: transform 0.3s ease;
  transform-origin: 50% 50%;
}

.item:hover .skillIcon svg {
  transform: scale(1.15);
}

.toolIcon {
    background: #EDE7F6;
    border: 1px solid #D1C4E9;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.toolIcon svg {
  transition: transform 0.3s ease;
  transform-origin: 50% 50%;
}

.item:hover .toolIcon svg {
  transform: scale(1.15);
}

.tools {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.toolsSubheading {
    font-size: 1.25em;
    font-weight: 400;
}

.toolText {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.toolHeader {
    display: flex;
    align-items: center;
    gap: 1em;
}

.toolBadge {
    background: #FAFAFA;
    padding: .5em 1em;
    border: 1px solid #F5F5F5;
    border-radius: 100px;
    color: #757575;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.toolBadge:hover {
    background: #E8F5E9;
    border: 1px solid #C8E6C9;
    color: #43A047;
}

.toolBadge:hover {
    cursor: default;
}


.contactCard {
    background: #ffffff;
    max-width: 700px;
    padding: 1.5em;
    box-shadow: 0px 5px 15px 5px rgba(133, 133, 133, 0.05);
    -webkit-box-shadow: 0px 5px 15px 5px rgba(133, 133, 133, 0.05);
    -moz-box-shadow: 0px 5px 15px 5px rgba(133,133,133,0.05);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: .5em;
    align-items: center;
    transition: box-shadow 0.5s ease-in-out;
}

.contactCard:hover {
    box-shadow: 0px 5px 15px 5px rgba(133, 133, 133, 0.25);
    cursor: default;
}


.footerText {
    text-align: center;
    font-size: 1.25em;
    line-height: 1.5;
}

.buttonFooter {
    justify-content: center;
}

.contactIcon {
    background: #E3F2FD;
    border: 1px solid #BBDEFB;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
}


.item:hover {
    box-shadow: 0px 5px 15px 5px rgba(133, 133, 133, 0.25);
    cursor: default;
}

.contactSections {
      padding-top: 5%;
      /* margin-bottom: 10%; */
}

footer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 2%;
    padding-bottom: 10%;
    font-size: .85rem;
}

.heart {
  display: inline-block;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.heart:hover {
  animation: pump 0.6s ease-in-out;
}

