body {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     scroll-behavior: smooth;
 }

 /* Hero Section */
 .hero {
     min-height: 100vh;
     display: flex;
     align-items: center;
     background: linear-gradient(135deg, #0a192f, #1f4068);
     color: #fff;
     overflow: hidden;
 }

 /* Profile Image Circle with Animation */
 .profile-pic {
     width: 250px;
     height: 250px;
     border-radius: 50%;
     overflow: hidden;
     border: 5px solid transparent;
     position: relative;
     animation: borderGlow 4s linear infinite;
     margin: auto;
 }

 .profile-pic img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     border-radius: 50%;
 }

 @keyframes borderGlow {
     0% {
         border-color: #0ff;
         box-shadow: 0 0 20px #0ff;
     }

     50% {
         border-color: #00f;
         box-shadow: 0 0 30px #00f;
     }

     100% {
         border-color: #0ff;
         box-shadow: 0 0 20px #0ff;
     }
 }

 /* Hero Text Animations */
 .hero h1 {
     animation: fadeInDown 1.5s ease;
 }

 .hero p {
     animation: fadeInUp 2s ease;
 }

 @keyframes fadeInDown {
     from {
         opacity: 0;
         transform: translateY(-30px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(30px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 /* Button Animations */
 .btn {
     transition: transform 0.3s, box-shadow 0.3s;
 }

 .btn:hover {
     transform: scale(1.05);
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
 }

 /* Projects */
 .project-card {
     transition: transform 0.4s, box-shadow 0.4s;
     border-radius: 15px;
     overflow: hidden;
 }

 .project-card img {
     transition: transform 0.5s ease;
 }

 .project-card:hover {
     transform: translateY(-8px);
     box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.2);
 }

 .project-card:hover img {
     transform: scale(1.1);
 }

 /* Footer */
 footer {
     background-color: #222;
     color: #aaa;
     padding: 20px 0;
 }

 footer a {
     color: #aaa;
     margin: 0 10px;
     transition: color 0.3s;
 }

 footer a:hover {
     color: #0ff;
 }

 /* project slider */

#project_slide .carousel-inner {
    
     width: 200px;
     margin: 0 auto;
   
 }
#project_slide .carousel-inner img{
    
     width: 100%;
     height: 350px;
   
 }

 #project_slide h2{
    text-align: center;
    
    margin: 5px 0;
    border: 1px solid black;
    background: #0ff;
    border-radius: 10px;
    font-size: 30px;
    padding: 3px 0;
 }
 /* project slider */

 /* Projects */

 #projects .project-card img {
     transition: transform 0.5s ease;
     height: 291px;
 }

 #projects .project-card {
    
     height: 463px;
 }

 #projects .card-body {
    
     display: flex;
     flex-direction: column;
     justify-content: space-between;
     align-items: start;
 }
 /* Projects */

 /* card */
  #card p{
    font-size: 14px;
  }

 /* card */

 /* Skills */

 #skills{
    padding: 20px 0;
 }
 #skills .btn{
     
    margin: 9px;
 }
 /* Skills */

