* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif; } 
body{
  min-height: 100vh;
  background: linear-gradient(45deg, #fdfdfd, #868886, #585650, #0a0a09);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

@keyframes gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }

}

nav {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.8rem 2rem !important; /* Increased vertical padding from 0.3rem to 0.8rem */
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
nav ul {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin: 0 !important; /* Override Bootstrap margin */
  padding: 0 !important; /* Override Bootstrap padding */
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0 !important; /* Override Bootstrap padding */
  display: flex;
  align-items: center;
}

/* Add this to reset Bootstrap's li styles */
nav ul li {
  margin: 0 !important;
  padding: 0 !important;
}

.main-nav a:hover {
  color: #6b6657;
}
.main-nav > ul > li.active > a{  /* this is new, what this does is access the first List and Color the text */
  color: #000000;
  cursor: default;
}

@media (max-width: 425px) {
  .main-nav ul{
          justify-content: center;
          flex-wrap: wrap;
          gap: 1rem;
   }
   
}


@media (max-width: 3840px) {
  nav a img{
      display: none;
  }
  
}

@media (max-width: 700px) {
  nav a img{
      display: block;
  }
  
}

@media (max-width: 700px) {

  nav a .index{
      display: none;
  }
  nav a .tech{
      display: none;
  }
  nav a .cert{ 
      display: none;
  }
  nav a .exp{
      display: none;
  }
  nav a .blog{
      display: none;
  }
  nav a .info{
      display: none;
  }
  nav a .phone{
      display: none;
  }
  nav a .docu{
      display: none;
}
} 
/* From Uiverse.io by vinodjangid07 */ 
.Btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: transparent;
    position: relative;
    /* overflow: hidden; */
    border-radius: 7px;
    cursor: pointer;
    transition: all .3s;
  }
  
  .svgContainer {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    -webkit-backdrop-filter: blur(0px); /* Added for Safari support */
    backdrop-filter: blur(0px);
    letter-spacing: 0.8px;
    border-radius: 10px;
    transition: all .3s;
    border: 1px solid rgba(156, 156, 156, 0.466);
  }
  
  .BG {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: #181818;
    z-index: -1;
    border-radius: 10px;
    pointer-events: none;
    transition: all .3s;
  }
  
  .Btn:hover .BG {
    transform: rotate(35deg);
    transform-origin: bottom;
  }
  
  .Btn:hover .svgContainer {
    background-color: rgba(156, 156, 156, 0.466);
    -webkit-backdrop-filter: blur(4px); /* Added for Safari support */
    backdrop-filter: blur(4px);
  }
  
  /* From Uiverse.io by vinodjangid07 */ 
.Btns {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: transparent;
    position: relative;
    /* overflow: hidden; */
    border-radius: 7px;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .svgContainers {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    -webkit-backdrop-filter: blur(0px); /* Added for Safari support */
    backdrop-filter: blur(0px);
    letter-spacing: 0.8px;
    border-radius: 10px;
    transition: all 0.3s;
    border: 1px solid rgba(156, 156, 156, 0.466);
  }
  
  .BGs {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: #0077b5;
    z-index: -1;
    border-radius: 10px;
    pointer-events: none;
    transition: all 0.3s;
  }
  
  .Btns:hover .BGs {
    transform: rotate(35deg);
    transform-origin: bottom;
  }
  
  .Btns:hover .svgContainers {
    border: 1px solid rgba(216, 216, 216, 0.466);
    background-color: rgba(190, 190, 190, 0.466);
    -webkit-backdrop-filter: blur(4px); /* Added for Safari support */
    backdrop-filter: blur(4px);
  }
 /* Profile Card Styling */
.profile-card {
    -webkit-backdrop-filter: blur(12px); /* Added for Safari support */
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 500px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.contact-title {
    color: white;
    font-size: 2rem;
    text-align: center;
}

.contact-subtitle {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    font-size: 1.1rem;
    max-width: 300px;
}

.button-container {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1rem;
}

@media (max-width: 768px) {
  nav ul{
    display: flex;
    gap: 1rem;
}

}
 