/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: 'Inter', sans-serif;
    background: radial-gradient(circle at top, #0f172a, #020617);
    color: #e2e8f0;
    
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

/* Main card */
.contact-card {
    max-width: 700px;
    margin: 80px auto;
    padding: 30px;
    
    background: linear-gradient(
        145deg,
        rgba(30,41,59,0.9),
        rgba(15,23,42,0.9)
    );
    backdrop-filter: blur(12px);
    
    
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    
    box-shadow: 0 0 40px rgba(0,0,0,0.4);
    position: relative;
}

.contact-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(#00f5d4, #38bdf8);
    border-radius: 10px;
}


.card-layout {
    display: flex;
    gap: 20px;
}

.left-panel {
    text-align: center;
    flex: 1.2;
    text-align: center;
    gap: 18px; 
    padding-bottom: 10px;
}
.left-panel::after {
    content: "";
    display: block;
    width: 80%;
    height: 1px;
    background: rgba(255,255,255,0.08);
   
    margin-top: 18px;
}

.right-panel {
    flex: 1.8;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-bottom: 10px;
}

/* Profile */
.profile {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.profile img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 3px solid #3b82f6;
    object-fit: cover;
    transition: transform 0.3s;
     animation: float 4s ease-in-out infinite;
    
     box-shadow: 0 0 30px rgba(0,245,212,0.5);
}
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.profile img:hover {
    transform: scale(1.05);
}

/* Name section */
.name-section {
    text-align: center;
   
  margin: 0;
     

    
    font-size: 30px;
    letter-spacing: 1px;
}

.name-section h1 {
    font-size: 28px;
    background: linear-gradient(90deg, #00F5D4, #38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    letter-spacing: 1.5px;
     font-family: 'Orbitron', sans-serif;
     margin-bottom: 8px;
}

.name-section p {
   margin-top: 4px;
     line-height: 1.5;

     font-size: 14px;
    color: #94a3b8;
}

/* Tagline */

.tagline {
    color: #00f5d4;
    font-size: 14px;
   
     margin-top: 8px;
    line-height: 1.6;
}
/* Boxes */
.box {
    background: #0f172a;
    border-radius: 12px;
    margin-bottom: 15px;
    transition: 0.3s;
     border-left: 3px solid #00f5d4;
    width: 100%;
    padding: 20px;
      min-height: 120px;
}

.box:hover {
    transition: 0.3s;
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0,245,212,0.15);
}

/* Headings */
.box h3 {
    color: #3b82f6;
     margin-bottom: 12px;
}

/* Contact */
.contact p {
    margin: 5px 0;
}

/* Links */
a {
    color: #3b82f6;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Skills */
ul {
    padding-left: 20px;
}

ul li {
    margin: 5px 0;
}

/* Responsive */
@media (max-width: 600px) {
    .contact-card {
        margin: 30px 15px;
        padding: 20px;
    }
}

/*Button*/
.btn {
    
    
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    background: linear-gradient(90deg, #00f5d4, #38bdf8);
    color: black;
    box-shadow: 0 0 15px rgba(0,245,212,0.5);
    margin: 20px auto 0;
    display: block;
    width: 100%;
    margin-top: 15px;
    cursor: pointer;
}
.btn + .btn {
    margin-top: 15px;
}

.btn:hover {
    transform: scale(1.05);
}


/*tags*/
.tags span {
    display: inline-block;
    padding: 6px 12px;
    margin: 5px;
    border-radius: 20px;
    background: rgba(0,245,212,0.1);
    border: 1px solid rgba(0,245,212,0.3);
    font-size: 12px;
   transition: 0.3s;
    margin-top: 12px;
}
.tags span:hover {
    background: rgba(0,245,212,0.3);
    transform: scale(1.05);
}

/*status*/
.status {
    color: #00f5d4;
    font-size: 12px;
  
    opacity: 0.8;

    margin-top: 14px;
    letter-spacing: 0.5px;
}


/*conatct item*/
.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

/*mini stats*/

.mini-stats span {
    display: inline-block;
    margin: 5px;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    background: rgba(0,245,212,0.1);
    

    margin-top: 12px;
}