
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  background: #000;
  color: #fff;
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-family: 'Inter', sans-serif;
}

body::-webkit-scrollbar { display: none; }


.archivo {
  font-family: "Archivo Black", sans-serif;
}


.hero {
  position: relative;
  min-height: 60vh;
  padding: 80px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  animation: fadeUp 1.5s ease forwards;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}


.bg-img {
  position: absolute;
  inset: 0;
  background-image: url('Images/hero.gif'); 
  background-size: cover;
  background-position: center;
  filter: brightness(0.1);
  z-index: 1;
}



.description {
  margin: 1;
  color: #7a7a7a;
}

.descriptiontwo {
  margin: 1;
  color: #ff7e7996;
}

.btn {
  padding: 10px 24px;
  border-radius: 50px;
  background: linear-gradient(90deg, #00f7ff31, #6a00ff3a);
  border: none;
  color: white;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 0, 0, 0.3);
}
.Language {
  font-family: "Archivo Black", sans-serif;

}
.Language:hover{
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 0, 0, 0);
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.pfp-icon {
  min-height: 75px;
  max-height: 175px;
  border-radius: 50%;
  transition: transform 0.5s ease;
}




.pfp-icon:hover {
  animation: spin 2s linear infinite;
}



@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}


.section {
  min-height: 50vh;
  max-height: 125vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #111;
}


.card_programming {
  background: #16161618;
  padding: 50px;
  border-radius: 20px;
  width: 90%;
  max-width: 600px;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.8s ease;
}

.skills {
  list-style: none;
  margin-top: 5px;
}

.skills li {
  font-family: "Archivo Black", sans-serif;
  font-size: 1.2rem;
  margin: 5px 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.skills i {
  font-size: 1.5rem;
  color: #7a7a7a;
}


.socials_profile {
  background-color: #7a7a7a46;
  align-content: center;
}

.social-icon {
  height: 75px;
  width: 75px;
}


.socialtext {
  text-align: left;
}


.cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .cards-wrapper {
    flex-direction: row;
  }
  .card_programming {
    flex: 1;
  }
}


.card_programming.show {
  opacity: 1;
  transform: translateY(0);
}


@media (max-width: 600px) {
  .btn {
    font-size: 1rem;
    padding: 12px 28px;
  }

  .social-icon {
    height: 60px;
    width: 60px;
  }
}

.socialwrapper{
  font-family: "Archivo Black", sans-serif;
  align-self: center;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 20px 0;
}

.social-icons li {
  list-style: none;
}

.social-icons li a {
  width: 80px;
  height: 80px;
  background-color: #fff;
  text-align: center;
  line-height: 80px;
  font-size: 35px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  border: 3px solid #fff;
  display: block;
  z-index: 1;
}

.social-icons li a .icon {
  position: relative;
  color: #262626;
  transition: 0.5s;
  z-index: 3;
}

.social-icons li a:hover .icon {
  color: #fff;
  transform: rotateY(360deg);
}

.social-icons li a:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f00; 
  transition: 0.5s;
  z-index: 2;
}

.social-icons li a:hover:before {
  top: 0;
}

.social-icons li:nth-child(1) a:before { background: #333; } 
.social-icons li:nth-child(2) a:before { background: #55acee; } 
.social-icons li:nth-child(3) a:before { background: #0077b5; } 
.social-icons li:nth-child(4) a:before { background: #3b5999; } 

.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.popup .popuptext {
  display: inline-block; 
  visibility: hidden;
  width: 200px; 
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px 10px; 
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%); 
  white-space: normal; 
  line-height: 1.5; 
}

.popup .popuptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.popup .show {
  visibility: visible;
  animation: fadeIn 0.5s;
}
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

.About_Medivider {
  position: absolute;
  inset: 0;
  background-image: url('Images/hero.gif'); 
  background-size: cover;
  background-position: center;
  filter: brightness(0.6);
  z-index: 1;
  flex-direction: column;  
  justify-content: flex-start; 
  align-items: center;        
  gap: 50px;                   
  display: flex;
}


.parent {
  position: relative; 
  min-height: 100vh;  
}


.bottombar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.445);
  display: flex;
  align-items: center;
  padding-left: 10px;   
  z-index: 10;
}

.button_container {
  display: flex;
  gap: 15px;           
}

.home_button {
  min-height: 45px;
  max-height: 95px;
  min-width: 45px;
  max-width: 95px;
  padding: 5px;
  background-color: rgba(143, 142, 142, 0.11);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.home_button:hover {
  transform: translateY(-3px);
  background-color: rgba(255, 255, 255, 0);
}

.App_box, .App_boxtwo {
  display: flex;             /* Use flexbox to align items */
  justify-content: center;   /* Center the fake app horizontally */
  align-items: center;       /* Center the fake app vertically */
  background-size: cover;    /* Cover background */
}
.App_boxtwo {
  margin-top: 50px;  /* Add 50px space below the first box */
}

.fake_app {
  position: absolute;
  top: 5%;
  left: 5%;
  flex: auto;
  min-height: 50px; 
  text-align: center; 
  align-self: center;  
  width: 150px;
  height: auto;      
}

.appname {
  font-size: 12px;
  margin-top: 5px;
  text-align: center;
  color: white;
}

#description {
  text-align: center;
  padding: 80px 20px;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: bold;
}

.description-card {
  max-width: 750px;
  margin: auto;
  padding: 30px;

  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
  transition: 0.3s ease;
}

.description-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 35px rgba(120, 0, 255, 0.4);
}

.description-card p {
  line-height: 1.7;
  margin-bottom: 15px;
  color: #dcdcdc;
}

.description-card a {
  color: #ff4c4c;
  text-decoration: none;
  font-weight: bold;
}

.description-card a:hover {
  text-decoration: underline;
}

