/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}


body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #121212; /* Dark background */
    color: #e0e0e0; /* Light text */
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    background-color: #1f1f1f; /* Darker background for header */
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f4a261;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 1rem;
}

.navbar a {
    text-decoration: none;
    color: #e0e0e0;
    transition: color 0.3s;
}

.navbar a:hover {
    color: #f4a261; /* Highlight color */
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 0;
}

.hero h2 {
    font-size: 2rem;
    font-family: ;
}

.hero span {
    color: #f4a261;
}

/* About Section */
.about {
    text-align: center;
    padding: 3rem 0;
    height: auto;
}


/* Projects Section */
.projects {
    padding: 7rem 0;
    text-align: center;
}

.project-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.project {
    background-color: #1f1f1f; /* Project card background */
    display: flex;
    border-radius: 15px;
    align-items: center;
    gap: 10px;
}

.project h3 {
    margin-bottom: 0.5rem;
    color: #f4a261;
}

/* Contact Section */
.contact {
    text-align: center;
    padding: 3rem 0;
}

.btn {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background-color: #f4a261;
    color: #121212;
    text-decoration: none;
    border-radius: 3%;
    transition: 0.3s;
}

.btn:hover {
    background-color: #e76f51;
}

/* Footer */
.footer {
    text-align: center;
    padding: 1rem 0;
    background-color: #1f1f1f;
    color: #e0e0e0;
    margin-top: 2rem;
}
/* From Uiverse.io by m1her */ 
.radio-input {
    display: flex;
    align-items: center;
    gap: 2px;
    background-color: black;
    padding: 4px;
    border-radius: 10px;
    z-index: -1;
  }
  
  .radio-input input {
    display: none;
  }
  
  .radio-input .label {
    width: 90px;
    height: 60px;
    background: linear-gradient(to bottom, #333333, rgb(36, 35, 35));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px;
    transition: all 0.1s linear;
    border-top: 1px solid #4e4d4d;
    background-color: #333333;
    position: relative;
    cursor: pointer;
    box-shadow: 0px 17px 5px 1px rgba(0, 0, 0, 0.2);
  }
  
  .label:has(input[type="radio"]:checked) {
    box-shadow: 0px 17px 5px 1px rgba(0, 0, 0, 0);
    background: linear-gradient(to bottom, #1d1d1d, #1d1d1d);
    border-top: none;
  }
  
  .label:first-child {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
  }
  
  .label:last-child {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
  }
  
  .label::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 103%;
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(
      to bottom,
      transparent 10%,
      transparent,
      transparent 90%
    );
    transition: all 0.1s linear;
    z-index: -1;
  }
  
  .label:has(input[type="radio"]:checked)::before {
    background: linear-gradient(
      to bottom,
      transparent 10%,
      #cae2fd63,
      transparent 90%
    );
  }
  
  .label .text {
    color: black;
    font-size: 15px;
    line-height: 12px;
    padding: 0px;
    font-weight: 800;
    text-transform: uppercase;
    transition: all 0.1s linear;
    text-shadow:
      -1px -1px 1px rgb(224, 224, 224, 0.1),
      0px 2px 3px rgb(0, 0, 0, 0.3);
  }
  
  .label input[type="radio"]:checked + .text {
    color: rgb(202, 226, 253);
    text-shadow: 0px 0px 12px #cae2fd;
  }
  

  .card {
    --background: linear-gradient(to left, #f7ba2b 0%, #ea5358 100%);
    width: 250px;
    height: 254px;
    padding: 5px;
    border-radius: 1rem;
    overflow: visible;
    background: #f7ba2b;
    background: var(--background);
    position: relative;
    z-index: 1;
   }
   
   .card::after {
    position: absolute;
    content: "";
    top: 30px;
    left: 0;
    right: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    transform: scale(0.8);
    filter: blur(25px);
    background: #f7ba2b;
    background: var(--background);
    transition: opacity .5s;
   }
   
   .card-info {
    --color: #181818;
    background: var(--color);
    color: var(--color);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    overflow: visible;
    border-radius: .7rem;
   }
   
   .card .title {
    font-weight: bold;
    letter-spacing: .1em;
   }
   
   /*Hover*/
   .card:hover::after {
    opacity: 0;
   }
   
   .card:hover .card-info {
    color: #f7ba2b;
    transition: color 1s;
   }
   

   /* From Uiverse.io by bhaveshxrawat */ 
.card1 {
  width: 190px;
  height: 254px;
  background: #07182E;
  position: relative;
  display: flex;
  place-content: center;
  place-items: center;
  overflow: hidden;
  border-radius: 20px;
}

.card1 h2 {
  z-index: 1;
  color: white;
  font-size: 2em;
}

.card1::before {
  content: '';
  position: absolute;
  width: 100px;
  background-image: linear-gradient(180deg, #e76f51, #f7ba2b);
  height: 130%;
  animation: rotBGimg 3s linear infinite;
  transition: all 0.2s linear;
}

@keyframes rotBGimg {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.card1::after {
  content: '';
  position: absolute;
  background: #141313;
  inset: 5px;
  
  border-radius: 15px;
}  
/* .card:hover:before {
  background-image: linear-gradient(180deg, rgb(81, 255, 0), purple);
  animation: rotBGimg 3.5s linear infinite;
} */

.skills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}

.h2g{
  height: auto;
  width: 5120vh;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #f4a261;
}
#skills{
  height: auto;
}


.h2h{
  color: #f4a261;
}

.p2{
  text-decoration: none;
  color: inherit;
}

.p3{
  text-decoration: none;
  color: inherit;
}


.container5 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container5 .glass {
  position: relative;
  width: 180px;
  height: 200px;
  background: linear-gradient(#fff2, transparent);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 25px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  border-radius: 10px;
  margin: 0 -45px;
  backdrop-filter: blur(10px);
  transform: rotate(calc(var(--r) * 1deg));
}

.container5:hover .glass {
  transform: rotate(0deg);
  margin: 0 10px;
}

.container5 .glass::before {
  content: attr(data-text);
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.container5 .glass svg {
  font-size: 2.5em;
  fill: #fff;
}

.l1{
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0
  'opsz' 24
}


