*{
  box-sizing: border-box;
}
body{
  background-color:#000;
  font-family: 'space Grotesk',Sans-Serif;
}
.cont{
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto;
  margin-top: -5px;
}  


.cont >img{
 height: 150px;
  width: 150px;
  border-radius: 50%;
object-fit: cover;
  border: 1px solid yellow;
  animation: pulse-border 2s infinite;
}


.d1{
min-height: 100vh;
  display: flex;
 align-items: center;
  justify-content: center;
width: 100%;
  color: white;
flex-direction: column;
 gap: 20px;
padding-top: 50px;
  
}
.ch1{
  background-color:#1a1a1a;
  color: white;
  padding: 40px;
  border-radius: 24px;
width: 100%;
  text-align: center;
  position: relative;
display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  margin: 0!important;
  z-index: 2;
}
.ch1::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: -1;
  border-radius: 24px;
  background: linear-gradient(45deg, blue, purple);
  filter: blur(30px);
  opacity: 0.4;
  animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { transform: scale(0.95); opacity: 0.3; }
  50% { transform: scale(1.05); opacity: 0.6; }
}
  
.ch1 > h1{
  color:#fff;
  letter-spacing: -1px;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 0px;
  font-weight: 800;
    background: linear-gradient(90deg, #fff, #5865f2, #fff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine-text 5s linear infinite;
  margin-top: -10px;
}
@keyframes shine-text {
  to { background-position: 200% center; }
}

.ch1 >p{
  color: #aaa;
  margin-top: -10px;
  font-size: 1.2rem;
  max-width: 80%;
  letter-spacing: 0.5px;
  opacity: 0.8;
}
@keyframes flat {
  0% { 
    transform: translateY(0px);
    }
    50%{
      transform: translateY(-5px);
    }
  100% { 
    transform: translateY(0px);
    
  }
}

.crl{
  width: 15px;
  height: 15px;
  background-color: green;
  border-radius: 50%;
position: absolute;
right: 100px;
bottom: -2px;
z-index: 10;
 border: 2px solid #1a1a1a; 
}
.bento-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
  
padding: 10px;
  margin-top: -10px;
}
.box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #333;
  border-radius: 15px;
  padding: 20px 15px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(5px);
  
}
.box:hover {
  border-color: #5865f2;
  transform: translateY(-3px);
}
.Y2{
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-top: 10px;
}
.serv {
  position: relative;
  border-radius: 24px;
  overflow: hidden; 
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
cursor: pointer;
padding: 15px;
background: linear-gradient(145deg, #1e1e1e, #161616);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.serv > a > img{
 width: 100%;
  height: auto;
  max-height: 300px;
 background: #111; 
 object-fit: cover;
 object-position: top;
 border-radius: 16px;
 margin-bottom: 12px;
 transition: transform 0.5s ease;
 filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.5));
 
}
.serv h4 {
  font-size: 20px;
  color: #fff;
  margin: 10px 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.serv h4::after {
  content: '↗';
  font-size: 23px;
  color: #5865f2;
  opacity: 0.8;
  transition: 0.3s;
}
.serv:hover {
  background: rgba(88, 101, 242, 0.05);
  border-color: #5865f2;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.serv:hover img {
  transform: scale(1.05);
}
.serv:hover h4::after {
  opacity: 1;
  transform: translate(3px, -3px);
}
.serv > a{
  text-decoration: none;
  display: block;
}
.border-wrap {
  position: relative;
  width: 95%;
  max-width: 800px;
  padding: 2.5px;
  border-radius: 26px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: flat 4s ease-in-out infinite; 
  margin-top: -30px;
  
}
.border-wrap::before {
  content: "";
  position: absolute;
  width: 180%;
  height: 180%;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    #00d2ff 15%,
    #3a7bd5 30%,
  transparent 40%,
    transparent 60%,
    #00d2ff 75%,
    #3a7bd5 90%,
    transparent 100%
);
  animation: rotate-glow 6s linear infinite;
}

@keyframes rotate-glow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.contact-btn {
  display: block;
  width: 100%;
  max-width: 350px;
  margin: 30px auto 10px auto;
  padding: 18px;
  background: linear-gradient(135deg, #00d2ff, #3a7bd5);
  color: white;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.1rem;
  text-align: center;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  box-shadow: 0 10px 20px rgba(58, 123, 213, 0.3);
}
.contact-btn::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 20%;
  height: 200%;
  background: rgba(255, 255, 255, 0.4);
  transform: rotate(30deg);
  transition: none;
  animation: shimmer 4s infinite;
}

@keyframes shimmer {
  0% { left: -60%; }
  20% { left: 120%; }
  100% { left: 120%; }
}

.contact-btn:hover {
  transform: scale(1.03);
  filter: brightness(1.1);
  box-shadow: 0 15px 30px rgba(0, 210, 255, 0.4);
}
h3{
  font-size: clamp(1.5rem, 2vw, 1.5rem);
  
}
.social-pills {
  display: flex;
  gap: 5px;
  justify-content: center;
  margin: 5px 0;
}
.pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05); 
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 50px; 
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.3s all ease;
}
.pill svg { width: 18px; fill: #5865f2; }
.pill:hover {
  background: #5865f2;
  transform: translateY(-3px);
  border-color: #fff;
}
.pill:hover svg { fill: #fff; }

.git{
  background-color: green;
  font-size: 1.5rem;
  font-weight: bold;
}

