body{
    font-family: 'Inter',sans-serif;
    background-color: #171717;
    margin: 0;
    display: flex;
    flex-direction: column;
    cursor: url('cursor.png') 4 4, auto;
    opacity: 0; /* Start invisible */
    animation: fadeIn 0.5s ease-in forwards; /* Apply fade-in animation */
}

body::-webkit-scrollbar {
    display: none;
}

  
  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

.nav-bar{
    z-index: 2;
    display: flex;
    position: fixed;
    padding: 10px;
    margin-top: 30px;
    justify-content: space-evenly;
    align-self: center;
    background: rgba(61, 61, 61, 0.9); /* Transparent background */
    backdrop-filter: blur(6.96986px); /* Frosted glass blur */
    border: 1px solid rgba(255, 255, 255, 0.1); /* Light border */
    border-radius: 50px; /* Rounded edges */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4); /* Subtle shadow */
}

.nav-bar .items a{
    text-decoration: none;
    color: rgba(184, 184, 184, 0.6);
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
    width: max-content;
    padding: 12px 40px;
    transition: color 0.5s ease-in-out;
}

.nav-bar .items a:hover{
    color: rgba(255, 255, 255, 1);
}


.sections{
    position: relative;
    margin: 0 auto;
    width: 80vw;
    z-index: 1;
    align-self: center;
}
.section1{
    margin-top: 185px;
    width: 60vw;
}
.heading{
    color: white;
    font-weight: 700;
    font-size: 48px;
}
.sub-heading{
    color: #868686;
    font-weight: 400;
    font-size: 24px;
    padding-top: 28px;
}
button{
    cursor: url('cursor.png') 4 4, pointer;
}
a{
    cursor: url('cursor.png') 4 4, pointer;
}
.button-grad{
    background: linear-gradient(135deg, #002EB8, #FF0000);
    font-size: 20px;
    border-radius: 10px;
    border: #171717 1px solid;
    padding: 10px 24px;
    font-weight: 500;
    font-family: inherit;
    margin-top: 30px;
    color: #ffffff;
    background-size: 150% 150%; /* Increase background size for animation */
    transition: background-position 0.7s ease, transform 0.7s ease;
}

.button-grad:hover {
    background-position: 100% 0; /* Shift gradient */
    transform: scale(1.03);
}

.button-normal{
    font-size: 20px;
    border: transparent 1px solid;
    padding: 10px 24px;
    font-weight: 500;
    font-family: inherit;
    margin-left: 30px;
    border-radius: 15px;
    text-align: center;
    background-color: transparent; /* Transparent by default */
    transition: background-color 0.7s ease, transform 0.7s ease;/* Smooth transition */
}

.button-normal:hover {
    border: #ffffff transparent 1px; /* Optional: Change border color on hover */
    background-color: #2d2d2d;
    transform: scale(1.03);

}

.text-gradient {
    background: linear-gradient(90deg, #ffffff, #474747);
    background-clip: text;
    color: transparent;
}

.section2{
    margin-top: 60px;
    margin-bottom: 60px;
}

.card-container{
    display: flex;
    justify-content: space-between;
}
.card{
    height: 350px;
    background-color: #000000;
    border-radius: 60px;
    width: 310px;
    display: flex;
    flex-direction: column-reverse;
    transition: all 0.7s ease;
    /* border: #22ff00 3px solid; */
}
.card:hover{
    transform: scale(1.04);
}
.card-heading{
    font-size: 24px;
    color: white;
    font-weight: 600;
    padding: 40px;
    /* border: #FF0000 1px solid; */
}
.material-icons {
    /* Icon styles */
    font-size: 12px; /* Adjust the size as needed */
    vertical-align: middle; /* Align the icon vertically with the text */
    margin-right: 10px; /* Add spacing between the icon and text */
    font-weight: bold;
  }

.img-container{
    display: flex;
    /* border: #3300ff 1px solid; */
    margin: 50px;
    height: 100%;
}

.projects .card{
    width: auto;
    margin: 20px auto;
    border-radius: 30px;
}

.projects .card:hover{
    transform: none;
}
