
body {
    margin: 0;
    min-height: 100vh;
    background-color: rgb(213, 146, 90);
    background-image: linear-gradient(45deg,#c3c95c 0%, #de99e4 55%, #bad930 100%);
    position: relative;
    overflow-x: hidden;
}

/* Smoky Background Layer */
body::before {
    content: "";
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;

    background: 
    radial-gradient(circle at 30% 30%, rgba(20, 184, 166, 0.25), transparent 60%),
    radial-gradient(circle at 70% 60%, rgba(6, 182, 212, 0.22), transparent 60%),
    radial-gradient(circle at 50% 80%, rgba(14, 165, 233, 0.18), transparent 70%);

    filter: blur(90px);
    animation: smokeMove 5s linear infinite;

    z-index: -1;   /* stays behind content */
    pointer-events: none;
}

/* Circular Floating Movement */
@keyframes smokeMove {
    0%   { transform: rotate(0deg) scale(1); }
    50%  { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}


.header{
    background: linear-gradient(90deg, #4b85c3, #00C6FF); 
    color: white;
    padding: 15px 25px;
    font-size: 50px;
    font-weight: bold;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    width: 100%;
    margin-top: 0%;

}

.header:hover{
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgb(110, 31, 208);
}

.profile-circle{
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow:hidden;
    border: 3px solid rgb(171, 18, 117);
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    margin-top: 20px;
}

.profile-circle img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex: 1 0 100px ;
}

.profile-circle:hover{
    transform: scale(1.05);
    border-color: rgb(218, 23, 160);
    box-shadow: 0 4px 10px rgb(225, 13, 151);
}

div{
    display:flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    margin-top: 1%;   
}

.card img{
    width: 100%;
    height: 100%;

}

.card-text{
    font-family: slab-serif;
    font-size: 30px;
    font-weight: bold;
    
}

.card:hover{
    transform: scale(1.05);
    border-color: rgb(218, 23, 160);
    box-shadow: 0 4px 8px rgb(229, 9, 126);
}

.other{
    display: flex;
    flex-direction: row;
    gap: 19px;
    justify-content: center;
    margin-top: 2%;
}

.footer{
    color:black;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 30px;
    margin-top: 6%;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    letter-spacing: 4px;
    word-spacing: 4px;
}

.footer:hover{
    text-shadow: 2px 0px 2px;
    transition: text-shadow 0.2s ease-in-out;
}

.name{
    font-size: 35px;
    font-weight: bold;
    margin:center;
    margin-top: 1%;
    letter-spacing: 2px;
    font-family: 'georgia' , serif;
}

.name:hover{
    text-shadow: 2px 0px 2px;
    transition: text-shadow 0.2s ease-in-out;
}

hr{
    margin-left: 15%;
    margin-right: 15%;
    border-radius: 5%;
}


/* Style for About Me */

#info-box{
    background: linear-gradient(to right, #d3e56e,#c0e288,#e0e980);
    font-style: italic;
}

#info-box:hover{
    
    transform: scale(1.05);
    background: linear-gradient(to left, #bec6ca, #ddb5cc, #9bb9c2);
    box-shadow: 0 4px 8px 4px rgb(24, 104, 161);
}

/*Style for Skill */

#info-box-skill{
    background: linear-gradient(to right, #d3e56e,#c0e288,#e0e980);
    font-style:italic;
}

#info-box-skill:hover{
    
    transform: scale(1.05);
    background: linear-gradient(to left, #bec6ca, #ddb5cc, #9bb9c2);
    box-shadow: 0 4px 8px 4px rgb(24, 104, 161);
}

/* Style for Project */

#info-box-project{
    background: linear-gradient(to right, #d3e56e,#c0e288,#e0e980);
    font-style:italic;
}

#info-box-project:hover{
    
    transform: scale(1.05);
    background: linear-gradient(to left, #bec6ca, #ddb5cc, #9bb9c2);
    box-shadow: 0 4px 8px 4px rgb(24, 104, 161);
}

/* Style for Certification */

#info-box-certification{
    background: linear-gradient(to right, #d3e56e,#c0e288,#e0e980);
    font-style:italic;
}

#info-box-certification:hover{
    
    transform: scale(1.05);
    background: linear-gradient(to left, #bec6ca, #ddb5cc, #9bb9c2);
    box-shadow: 0 4px 8px 4px rgb(24, 104, 161);
}
/* Style for Award */

#info-box-award{
    background: linear-gradient(to right, #d3e56e,#c0e288,#e0e980);
    font-style:italic;
}

#info-box-award:hover{
    
    transform: scale(1.05);
    background: linear-gradient(to left, #bec6ca, #ddb5cc, #9bb9c2);
    box-shadow: 0 4px 8px 4px rgb(24, 104, 161);
}

/* Style for Hobby */

#info-box-hobby{
    background:linear-gradient(to right, #d3e56e,#c0e288,#e0e980);
    font-style:italic;
}

#info-box-hobby:hover{
    
    transform: scale(1.05);
    background: linear-gradient(to left, #bec6ca, #ddb5cc, #9bb9c2);
    box-shadow: 0 4px 8px 4px rgb(24, 104, 161);
}

/*Style for Contact */

#info-box-contact{
    background: linear-gradient(to right, #d3e56e,#c0e288,#e0e980);
    font-style:italic;
}

#info-box-contact:hover{
    
    transform: scale(1.05);
    background: linear-gradient(to left, #bec6ca, #ddb5cc, #9bb9c2);
    box-shadow: 0 4px 8px 4px rgb(24, 104, 161);
}


/* Social handle */
.handle{
    display:flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    margin-top: 1%;
    
}

.purple-btn {
  background: linear-gradient( to left, #8cd2e3,#d9e06b);
  border: 2px solid #7367cf;
  color: #e75f32;
  transition: all 0.3s ease;
}

.purple-btn:hover {
  background: linear-gradient(to top, #b8f3e8, #ddb5cc, #ecdbeb);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(202, 236, 231, 0.5);
}

.section{
    font-size: clamp(1rem, 2vw, 1.4rem);
}


/* Footer */
.thankyou-box {
  max-width: 1500px;
  margin: 0 auto;
  padding: 12px 25px;
  font-weight: 600;
  font-size: 2.1rem;
  border-radius: 30px;
  background: linear-gradient(45deg, #5697b6, #feb47b);
  color: white;
  box-shadow: 0 5px 20px rgba(255, 126, 95, 0.4);
  transition: 0.3s ease;
}

.thankyou-box:hover {
  transform: translateY(-3px);
}

/* Header */
.header {
  max-width: 1900px;
  margin: 0 auto;
  padding: 12px 25px;
  font-weight: 600;
  font-size: 2.1rem;
  border-radius: 0px;
  background: linear-gradient(to right, #a5cce6, #de9fe4, #aae7c2);
  color: white;
  box-shadow: 0 5px 20px rgba(206, 215, 214, 0.4);
  transition: 0.3s ease;
}

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