@font-face {
  font-family: "KaushanScript";
  src: url("../fonts/KaushanScript-Regular.otf") format(opentype);
  font-weight: normal;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}

body * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  min-width: 1200px;
  width: 100%;
  overflow-x: auto;
  /** linear gradient is affected by browser window size **/
  /**background: linear-gradient(90deg,#046007, #2bff5d, #ffae00);**/
  /** min height sets browser window background size/height **/
  min-height: 100vh;
}

.menu-toggle {
  display: none;
}

  /*navigationLinks class begins */
 .navigationLinks {
  display: flex;
  list-style: none;
  gap: 2vw;
  position: relative;
  right: -9vw;
  
} 
.navigationLinks a {
  color: rgba(244, 82, 147, 0.568);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.3em;
  position: relative;
  padding: 10px 20px;
  border-radius: 25px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
  display: block;
  text-transform: capitalize;
}
.navigationLinks a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.134));
  border-radius: 25px;
  transform: scale(0);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: -1;
}

.navigationLinks a:hover::before {
  transform: scale(1);
}

.navigationLinks a::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #faa73b, #7bf244, #074b04);
  border-radius: 2px;
  transform: translateX(-31px);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: -1;
}
.navigationLinks a:hover::after {
  width: 70%;
}

.navigation img {
  width: 17rem; /* Forces image to match total screen width */

  margin-right: -50vw;

  position: absolute;
  top: 4.7rem;
  left: 6rem;
  transform: translate(-50%, -50%);

  /* Optional: Ensures the browser allows visibility outside the parent */
  visibility: visible;
}

.nav-links{
  display: none;
}

.headingContent {
  display: flex;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 10px;
  margin-bottom: 0px;
  padding-bottom: 0px;
  font: 1em sans-serif;
  align-items: center;
  justify-content: center;
}

/*topHeading class begins */
.topHeading {
  padding: 0.5em 0 2em 0;
  text-align: center;
  position: relative;
  z-index: 10;
  color: rgba(244, 82, 147, 0.8);
}

.topHeading h1 {
  font-family: "KaushanScript", sans-serif;
  /* font-size: clamp(3rem, 6vw, 5rem); */
  font-size: 5vw;
  /*color: white;*/
  margin-bottom: 20px;
  font-weight: 700;
  text-transform: capitalize;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.566);
  animation:
    textBg 3s ease-in-out alternate,
    h1Movement 3s ease-in-out alternate;
}

@keyframes textBg {
  0% {
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    transform: scale(1);
  }
  50% {
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    transform: scale(1);
  }
  70% {
    text-shadow: 0 0 11px rgba(0, 0, 0, 0.4);
    transform: scale(1);
  }
  100% {
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.566);
    transform: scale(1);
  }
}

@keyframes h1Movement {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.topHeading p {
  font-size: 1.5rem;
  /*color: rgba(255, 255, 255, 0.9);*/
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease-out 0.3s both;
  text-transform: capitalize;
  text-justify: auto;
}

.topHeadingButtonGrid {
  display: flex;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 0px;
  padding-bottom: 0px;
  font: 1em sans-serif;
}

/* new top heading button */
.headingButton {
  /*display: inline-block;*/
  padding: 5px;
  background: linear-gradient(
    45deg,
    rgba(244, 82, 147, 0.607),
    rgba(230, 146, 179, 0.607)
  );
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  /*transition: all 0.3s ease;*/
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  animation:
    fadeInUp 1s ease-out 0.6s both,
    pulse 2s ease-in-out 1s backwards;
  width: 100%;
  text-align: center;
  text-transform: lowercase;
}

@keyframes fadeInUp {
  from {
    transform: scale(0.5) translateY(0);
  }
  to {
    transform: scale(1) translateY(5px);
  }
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(255, 107, 107, 0);
  }
}
.topHeadingButton::first-letter {
  text-transform: uppercase;
}

.topHeadingButton:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
  background: linear-gradient(45deg, #ff5252, #ff3d00);
}

.propertiesContent {
  text-align: left;
  font-size: 1rem;
  color: rgb(244, 82, 147);
  /* margin-bottom: 60px; */
  font-weight: 100;
  border: solid 1px rgb(244, 82, 147);
  border-radius: 50px;
  margin: 1em 1.8em 2em 1.8em;
}

.propertiesContent:hover {
  box-shadow: 0 5px 30px 5px rgba(0, 0, 0, 0.145);
}

.propertiesHeading {
  text-align: center;
  text-transform: capitalize;
  /*padding-bottom:50px;*/
}
.propertiesHeading h2 {
  padding-top: 15px;
  color: rgb(244, 82, 147);
}

.propertiesContentGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 0 30px;
  margin-bottom: 0px;
  margin-top: 30px;
  padding-bottom: 30px;
}

.propertiesContentItem {
  padding: 20px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;

  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  animation:
    fadeInUp 1s ease-out both,
    itemFloat 6s ease-in-out both;
  width: 100%;
  text-align: justify;
  text-transform: lowercase;
}

.propertiesContentItem li::first-letter {
  text-transform: uppercase;
}

.propertiesContentItem p::first-letter {
  text-transform: uppercase;
}

.propertiesContentItem h3 {
  text-transform: capitalize;
  color: #484846a2;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 500;
}
.propertiesContentItem p {
  color: rgb(4, 2, 0);
  font-weight: 100;
  text-decoration: dotted;
  text-align: center;
}

.portfolio-item p::first-letter {
  text-transform: uppercase;
}

.propertiesContentItem em {
  display: block;
  margin-bottom: 20px !important;
  /*padding-bottom: 40px !important;*/
  text-transform: capitalize;
}

.bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  z-index: -1;
  background: linear-gradient(45deg, #fa94a8b3, #ffbc3688, #73fe5b7b);
  background-size: 400% 400%;
  animation:
    bgAnimation 15s ease infinite,
    bgMovement 20s;
}

@keyframes bgAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes bgMovement {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-50px);
  }
}

.bgImageTop {
  background-image: url(../images/himalayan-salt.png);
  background-position: center top; /* Positions it at the top-center */
  background-repeat: repeat-x;
  height: 100%;
  width: 100%;
}

header {
  margin: 0px auto;

  background: #ffffff;
  width: 80%;

  position: relative;
  top: 0;
  left: 0;
  z-index: 5;

  backdrop-filter: blur(10px);
  border: solid 1px rgba(244, 82, 147, 0.8);
  border-radius: 50px;
  transition: all 0.3s ease;
  animation: navigationBg 0.4s ease-in-out forwards;
}

main {
  margin: 4em auto 2em auto;

  background: #ffffff;
  /* backdrop-filter works when theres no background defined */
  backdrop-filter: blur(10px);
  border: solid 1px rgba(128, 44, 78, 0.303);
  width: 80%;
  border-radius: 50px;

  padding: 1.1em;
  transition: all 0.3s ease;
  animation: navigationBg 0.4s ease-in-out forwards;
}

/* container class is used in different sections/divs using the same css style */
.container {
  /* max-width: 1200px; */
  max-width: none;
  margin: 0 auto;
  padding: 0 3%;
}

/* headerDiv begins */
/* container div inside headerDiv begins */
/* navigation class begins */
.navigation {
  display: flex;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.429);
  padding: 0.7em 1em;
  position: relative;

  transition: all 0.3s ease;
  animation: navigationBg 0.4s ease-in-out forwards;
}



@keyframes navigationBg {
  0% {
    transform: translateX(-250px);
  }
  100% {
    transform: translateX(0px);
  }
}


/* navigationLinks class ends */

  /* .navigation img{
    top: 70%;
  }

  .navigationLinks{
    gap: 20px;
    
  }

  .flexItem:nth-child(2){
  display: flex;
  }

  .logo{display: none;}

  .headingContent{
      font-size: 85%;
    } */

/* @media (width <= 768px) {
  body{
  min-width: 768px;
  }
} */

/* for-phone-only */


@media (width >= 1100px){
    .logo{
  display: none;
    }
    .navigationLinks {
  
  right: -14vw;
  
} 
}

/* for-tablet-landscape-up */
@media (899px <= width <= 1100px) {
  body {
    min-width: 899px;
  }

  .logo{
  display: none;
    }

  .navigation img {
    left: 6rem;
    /* width: 25vw;
    top: 12vh; */
  }

  .headingContent{
    font: 0.9em sans-serif;
  }

}

@media (width <= 899px) {
    body{
        min-width: 600px;
        overflow-x: auto;
        width: 100%;
    }
  .navigation img {
    display: none;
  }

  /* responsive logo styling */
  .logo {
    text-wrap: wrap;
    display: block;
    left: -13vw;


  font-size: 1.5rem;
  font-weight: bold;
  color: rgba(244, 82, 147, 0.568);
  text-decoration: none;
  transition: all 0.3s ease;
  animation: logoMovement 3s ease-in-out infinite alternate;

  width: fit-content;
  position: relative;
  z-index: 11;
}

@keyframes logoMovement {
  from {
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.715);
  }
  to {
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.418);
  }
}

.logo:hover {
  transform: scale(1.1) rotate(5deg);
  text-shadow: 0 0 25px rgba(255, 255, 255, 0.8);
}
/*logo class ends */


  


  /* Navigation Links - Desktop View */
  .navigationLinks {
    display: none;
  }

  .hamburger {
    display: flex; /* Show hamburger on mobile */
    z-index: 1001; /* Keep above the menu overlay */
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    /*height: 21px; Hide the actual checkbox input completely */
    height: 2rem; /* Hide the actual checkbox input completely */
  }

  @keyframes burgerMenu {
    0% {
      background-color: #000;
    }
    100% {
      background-color: #ffffff;
    }
  }

  .hamburger .bar {
    height: 3px;
    width: 100%;
    background-color: rgba(231, 151, 33, 0.826);
    opacity: 1;
    border-color: rgba(231, 151, 33, 0.826);
    border-style: double;
    border-width: 3px;
    border-radius: 10px;

    transition: background-color 0.3s ease;
    transition: opacity 1s ease;
    transition:
      border-width 1s ease,
      border-style 1s ease,
      border-color 1s ease;
  }

  /* Off-screen Mobile Menu Overlay */
  .menu-toggle:checked ~ .nav-links {
    position: absolute;
    right: -11vw;
    opacity: 1;
    background-color: #e2e1e1e9;
    backdrop-filter: blur(12px); /* Blurs elements behind */
  }
  .nav-links {
    
    z-index: 10;

    padding: 20px;
    border: 1px solid rgba(231, 151, 33, 0.826);
    list-style: none;
    width: 50vw;

    border-radius: 25px;
    transition: all 0.33s ease-in-out;
    /* animation: navigationNav 0.4s ease-in-out backwards; */
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: absolute;
    right: 24vw;
    top: -17%;
    min-height: 100vh;
    opacity: 0;
  }

  @keyframes navigationNav {
    0% {
      transform: translateX(-250px);
    }
    100% {
      transform: translateX(0px);
    }
  }

  .nav-links a {
    color: #ffffff;

    text-decoration: none;
    font-weight: 500;

    padding: 2.5vh 0;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: visible;
    display: block;
    text-transform: capitalize;
  }

  .nav-links a::after {
    content: "";
    position: absolute;
    bottom: 3px;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(90deg, #faa73b, #7bf244, #074b04);
    border-radius: 2px;
    transform: translateX(-31px);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: -1;
  }
  .nav-links a:hover::after {
    width: 70%;
  }

  .nav-links a:hover::before {
    transform: scale(1);
  }

  .nav-links a:hover::after {
    width: 70%;
  }

  .nav-links li {
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
    margin: 0;
    border-bottom: solid 1px #eda41c;
    align-items: center;
    text-align: center;
    background: rgba(254, 141, 186, 0.77);
  }

  .menu-toggle:checked ~ .hamburger .bar {
    background-color: #067b00e0;
    border: solid 3px #067b00e0;
  }

  /* CSS CHECKBOX HACK TRICK */
  /* 1. Slide in Menu when Checked */
  /* .menu-toggle:checked ~ .nav-links {
  right: 0;
} */

  /* 2. Animate Hamburger into an "X" when Checked */
  .menu-toggle:checked ~ .hamburger .bar:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }

  .menu-toggle:checked ~ .hamburger .bar:nth-child(2) {
    opacity: 0; /* Hide middle line */
  }

  .menu-toggle:checked ~ .hamburger .bar:nth-child(3) {
    transform: translateY(-18px) rotate(-45deg);
  }

  /* .navigationLinks {
    display: none;
  } */

  .topHeading {
    padding: 5vh 0;
  }

  .topHeading .container {
    padding: 0;
  }

  .topHeading h1 {
    /* font-size: large; */
    font-size: 5vw;
  }

  .topHeading p {
    font-size: medium;
    text-align: center;
    margin-bottom: 2.5vh;
  }

  /* .headingContent{
      font-size: 3vw;
    } */

  .topHeadingButtonGrid {
    display: flex;
    flex-direction: row; /* Default: horizontal layout */
    flex-wrap: wrap; /* Essential for items to wrap to new lines if space is tight */
    gap: 8px;
  }

  .headingButton {
    padding: 5px 8px;
    /* font-size: 2.3vw; */
  }

  .propertiesContentGrid {
    padding-bottom: 10px;
    margin-top: 20px;
  }

  .propertiesContentItem {
    font-weight: 100;
    /* font-size: 2.5vw; */
  }

  .propertiesContentItem:nth-child(2) {
  padding: 0;
  margin: 0 auto;
}

  .propertiesHeading {
    text-align: center;
    text-transform: capitalize;
    font-size: 2.3vw;
  }

  .propertiesContent h2{
    font-size: 1.3rem;
  }

  .contact-content {
    padding: 30px 20px;
  }

  .social-links {
    gap: 15px;
  }

  .parent {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

@media (max-width: 599px) {
}

/* for-tablet-portrait-up */
/* @media (width <= 600px) {
  body {
    min-width: 600px;
  }
} */

/* for-tablet-landscape-up */

/* for-desktop-up */
/* @media (min-width: 1200px) { } */

/* for-medium-desktop-up */
/* @media (width <= 1400px) {
    body{
    width: 1400px;
  }
 } */

/* for-big-desktop-up */
/* @media (width: 1800px) {
    body{
        min-width: 1800px;
    }
 } */




/* navigation class ends */
/* divHeader class ends */





@keyframes contactIconFloat {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.contactIcon {
  /* Optional: Smoothly return to 0 deg when mouse leaves */
  /*transition: transform 0.5s;*/
  color: rgb(255, 255, 255);
  font-size: 30px;
}

.contactIcon:hover {
  /* Trigger animation on hover */
  animation: icon360 0.4s linear;
}

@keyframes icon360 {
  0% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(2) rotate(180deg);
  }
  100% {
    transform: scale(1) rotate(360deg);
  }
}

/*from { transform: rotate(0deg) scale(0.2); }
to { transform: rotate(360deg) scale(2); }*/

/* topHeading button ends*/
/* topHeading class ends */



/* portfolio section starts */
/* section-title starts */
.section-title {
  text-align: center;
  font-size: 3rem;
  color: white;
  margin-bottom: 60px;
  font-weight: 700;
  text-transform: capitalize;
}
/*section-title ends */

/*portfolio-grid starts */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.portfolio-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  animation:
    fadeInUp 1s ease-out both,
    itemFloat 6s ease-in-out both;
  margin: 0 auto;
  width: 100%;
}

.portfolio-item h3 {
  text-transform: capitalize;
  color: #484846a2;
}

.portfolio-item p {
  padding: 5% 0;
  color: rgb(4, 2, 0);
  font-weight: 100;
}

.portfolio-item p::first-letter {
  text-transform: uppercase;
}

.portfolio-item:nth-child(1) {
  animation-delay: 0.3s, 0s;
  animation-duration: 1s, 6s;
}

.portfolio-item:nth-child(2) {
  animation-delay: 0.4s, 2s;
  animation-duration: 1s, 6s;
}

.portfolio-item:nth-child(3) {
  animation-delay: 0.5s, 4s;
  animation-duration: 1s, 6s;
}

@keyframes itemFloat {
  0%,
  100% {
    transform: translateY(0px) rotateY(0deg);
  }
  25% {
    transform: translateY(-5px) rotateY(1deg);
  }
  75% {
    transform: translateY(5px) rotateY(-1deg);
  }
}

.portfolio-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 170, 170, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.portfolio-item::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(148, 32, 80, 0.1));
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.portfolio-item:hover::before {
  opacity: 1;
}

.portfolio-item:hover::after {
  opacity: 1;
}

.tech-tags {
  display: flex;
  /*grid: auto auto / auto auto auto auto;*/
  /* grid-template-columns: 1fr 1fr 1fr;  Three equal columns */
  gap: 1rem; /*Space between rows and columns */
  justify-content: center; /* aligns flex items to center of flex container */
}

.tech-tag {
  background: rgba(226, 64, 64, 0.532);
  color: white;
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 15px;
  margin: 2% 1%;
  padding: 2%;
  border: 1px solid rgba(244, 82, 147, 0.8);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  width: 100%;
  z-index: 1;
  text-transform: capitalize;
}

.tech-tag img {
  width: 100%;
  height: auto;
}

@keyframes tagMovement {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(-5px);
  }
}

.tech-tag::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(45, 199, 61, 0.249));
  transition: left 0.5s ease;
}

.tech-tag:hover::before {
  left: 100%;
}

.tech-tag:hover {
  background: rgba(248, 184, 58, 0.249);
  transform: scale(1.1) translateY(-10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: black;
  background-image: url("../images/coarsepaint.png");
  background-origin: border-box;
  background-clip: border-area;
}
/* portfolio-grid ends */
/* portfolio section ends */

/* contact section begins */
.contact {
  /*padding: 80px 0;*/
  text-align: center;
  position: relative;
  z-index: 10;
  margin: 0;
  color: rgb(118, 118, 118);
  padding-bottom: 3%;
  /*background: #3956e5;*/
}

.contact h2 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 700;
  animation: textGlow 4s ease-in-out infinite alternate;
  text-transform: capitalize;
}

.contact p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.contact p::first-letter {
  text-transform: uppercase;
}
/*contact-content div begins*/
.contact-content {
  /* background: rgba(255, 255, 255, 0.1); */
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 2% 0;
  margin: 0;
  border: solid 1px rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  animation: contactFadeInUp 1s ease-out 0.6s both;
  position: relative;
  overflow: hidden;
}

@keyframes contactFadeInUp {
  from {
    transform: translateY(-5px);
  }
  to {
    transform: translateY(0px);
  }
}

@keyframes contactFloat {
  0%,
  100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.01);
  }
}

.contact-content::before {
  content: "";
  position: absolute;
  top: -2em;
  right: -2em;
  bottom: -2em;
  left: -2em;
  background: linear-gradient(45deg, #ffc16b, #63cd4e, #0f5108);
  border-radius: 32px;
  z-index: -1;
  animation: borderGlow 4s ease-in-out infinite alternate;
  opacity: 0;
  transition: opacity 0.3s ease;
}

@keyframes borderGlow {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.7;
  }
}

.contact-content:hover::before {
  opacity: 0.8;
}

.contact-content:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 5px 45px 5px rgba(0, 0, 0, 0.3);
}

/*social-links div begins */
.social-links {
  display: flex;
  justify-content: center;
  gap: 2em;
}

/* start of social-link class */
.parent {
  position: relative; /* Established reference for absolute positioning */
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.2);
  display: inline-block; /* Or block, depending on your needs */
  width: 60px;
  height: 60px;
  /*  background: rgba(255, 255, 255, 0.2);*/
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  transition: all 0.4s ease;
  animation: socialBounce 1s ease-in 3 alternate-reverse;
  padding: 10px;
}

.parent::before {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(45deg, #96a367, #878787);
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
  z-index: -1;
}

.parent::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.parent:hover::before {
  opacity: 1;
  transform: scale(1);
}

.parent:hover::after {
  width: 100%;
  height: 100%;
}

.child {
  display: none; /* Hide by default */
  position: absolute;
  top: -70%; /* Positions the top edge of child at bottom edge of parent */
  width: fit-content; /* Optional: matches parent width */
  height: fit-content;
  background-color: lightcoral;
  /*: rgba(248, 184, 58, 0.249);*/
  /*transform: scale(1.1) translateY(-10px);*/
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: black;
  align-items: center;
  /* left: -50%; */
  animation: contactAdress 400ms ease-out both;
  margin-left: -100%;
  width: calc(100% + 100px);
  border-radius: 20px;
  border: #ffffff 1px solid;
  font-size: small;
  overflow: hidden;
  /*overflow: auto;*/
  padding: 10%;
  z-index: 30;
}

.child p {
  font-size: small;
  padding: 0;
  margin: 0;
}

@keyframes contactAdress {
  from {
    transform: translateY(-30px) scale(0.5);
  }
  to {
    transform: translateY(0px) scale(1);
  }
}

/* Show child when parent is hovered */
.parent:hover .child {
  display: block;
}

/*social-link navigation link ends*/
/*social-links div ends*/
/*contact-content div ends*/

.copyright-section {
  text-align: center;
  color: #189811;
  margin: -20px 0 10px 0;
}

/*responive design starts*/
/* @media (max-width: 768px) {
    .navigationLinks{
        display: none;
    }

    .topHeading{
        padding: 60px 0;
    }

    .topHeadingButtonGrid{
        display: flex;
        flex-direction: row; /* Default: horizontal layout */
/* flex-wrap: wrap;     /* Essential for items to wrap to new lines if space is tight */
/* gap: 20px; 
        font: 1em sans-serif;
    }

    .propertiesContentGrid{
        grid-template-columns: 1fr;
    }

    .contact-content{
        padding: 30px 20px;
    }

    .social-links{
        gap: 15px;
    }

    .parent{
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
} */
