*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'poppins', sans-serif;
}
body{
    color: #ededed;
    background: #081b29;
}

.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 10%;
    background: #051120;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo{
    position: relative;
    font-size: 25px;
    color: #fff;
    text-decoration:double;
    font-weight: 600;
    cursor: default;
    opacity: 0;
    animation: slideRight is one ease forwards;
}

.navbar a{
    display: inline-block;
    font-size: 28px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    margin-left: 35px;
    transition: .3s;
    opacity: 0;
    animation: slideTop .5s ease forwards;
    animation-delay: calc(.2s * var(--i)); 

    
}

.navbar a:hover{
    color: #0ef;

}

.home{
    position: relative;
    width: 100%;
    justify-content: space-between;
    height: 100vh;
    background: url(../../../ASSERTS/IMAGES/solid.jpeg) no-repeat ;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 70px 10% 0;
}

.home-content{
    max-width: 600px;
}

.home-content h3{
    font-size: 21px;
    font-weight:700;
    opacity: 0;
    animation: slideBottom 1s ease forwards;
    animation-delay: .7s;
}

.home-content h3:nth-of-type(2){
    margin-bottom: 30px;
    animation: slideTop 1s ease forwards;
    animation-delay: .7s;

}

.home-content span{
    color: red;

}

.home-content h1{
    font-size: 30px;
    font-weight: 900;
    margin: -3px 0;
    opacity: 0;
    animation: slideRight 1s ease forwards;
    animation-delay: 1s;
}

.home-content p{
    font-size: 20px;
    opacity: 0;
    animation: slideRight 1s ease forwards;
    animation-delay: 1s; 
}

.home-icons a{
    
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid #0ef;
    border-radius: 50%;
    font-size: 20px;
    color: #0ef;
    text-decoration: none;
    transition: .5s ease;
    opacity: 0;
    animation: slideLeft 1s ease forwards;
    animation-delay: calc(.2s * var(--i));
    margin: 30px 15px 30px 0;
}

.home-icons a:hover{
    background: #0ef;
    color: #081b29;
    box-shadow: 0 0 20px cyan;
}

.home-btmbox{
    display: inline-block;
    padding: 12px 20px;
    background-color: #0ef;
    border-radius: 20px;
    font-size: 16px;
    color: #081b29;
    letter-spacing: 1px;
    text-decoration: none;
    font-weight: 600;
    opacity: 0;
    animation: slideLeft 1s ease forwards;
    animation-delay: 2s;
    box-shadow: 0 0 5px #0ef,
    0 0 25px #0ef

}

.home-btmbox:hover{
    box-shadow: 0 0 5px cyan, 
    0 0 25px cyan, 0 0 50px cyan,
    0 0 100px cyan,0 0 200px cyan;
}


.intro-image img {
   
    
    width: 400px;
    height: 400px;        
    background-color: black; 
    border-radius: 50%;   
    border: 10px solid black;
    display: inline-block;


    /* height: auto;
    border-radius: 40%;
    box-shadow: 0px 0px 10px orangered,-10px -10px 10px white,10px 10px 10px greenyellow;
    border: 10px solid white;
    background: linear-gradient(#0ef,palevioletred);
    padding: 5px; */
    
}
  
.intro-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to top, #1c1c3c, #633bad, #ff85b3,#0ef);
    border-radius: 100%;
    padding: 15px;
    box-shadow: 0 0 15px orange, 0 0 10px whitesmoke ,0 0 5px yellowgreen;
    background: linear-gradient(darkpink);
    color: #000;
}


/* ------------------------------- */
.about-container {
    width: 800px;
    padding: 40px;
    background-color: transparent;
    text-align: left;
  }

  h1 {
    font-size: 40px;
    color: #0ef;
    font-weight: bold;
    position: relative;
  }

  h1::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 5px;
    background-color: red;
  }

  h2 {
    margin: 30px 0 10px;
    font-size: 24px;
    color: #0e3f;
  }

  .section p {
    margin: 10px 0;
    font-size: 16px;
    color: #0ef;
  }

  .section p b {
    color: red;
  }

  .info {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 20px;
  }

  .info div {
    width: 48%;
  }

  .info p {
    font-size: 16px;
    padding: 8px 0;
    border-bottom: 1px solid #ccc;
  }

  .info p b {
    color: red;
  }

  .btn-group {
    margin-top: 30px;
  }

  .btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: red;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    margin-right: 15px;
    cursor: pointer;
    transition: 0.3s ease;
  }

  .btn:hover {
  box-shadow: 0 0 5px cyan, 
  0 0 25px cyan, 0 0 50px cyan,
  0 0 100px cyan,0 0 200px cyan;
  }

  a {
    color: inherit;
    text-decoration: none;
  }

  @media (max-width: 800px) {
    .about-container {
      width: 90%;
      padding: 20px;
    }

    .info div {
      width: 100%;
    }

    .btn {
      width: 100%;
      margin: 10px 0;
    }
  }


/* --------------- */
.container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
  }
  
.section {
    flex: 1 1 45%;
    background: #081b29;
    border:#00f260;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 25px;
  }
  
  h2 {
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #0e3f;
  }
  
  .timeline {
    position: relative;
    padding-left: 30px;
    border-left: 4px solid red;
  }
  
  .timeline-item {
    position: relative;
    margin-bottom: 30px;
  }
  
  .circle {
    width: 800px;
    padding: 40px;
    background-color: transparent;
    text-align: left;
}
  
  .content h3 {
    margin: 0;
    font-size: 16px;
    color: #00f260;
  }
  
  .content h4 {
    margin: 5px 0 8px;
    font-size: 18px;
    font-weight: bold;
    color: red;
  }
  
  .content p {
    margin: 2px 0;
    font-size: 15px;
    color: #0ef;
    line-height: 1.5;
  }
/* --------------- */
.certifications {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
  }

  .card:hover {
    transform: scale(1.05);
    background-color: red;

  }

  .icon {
    font-size: 3rem;
    color: #e63946;
    margin-bottom: 15px;
  }


  .card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: bold;
    color: #00f260;
  }

  .card p {
    font-size: 0.9rem;
    color: goldenrod;
  }
/* --------------- */
#services{
    color: aliceblue;
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 4rem;
}

.sub-title{
    text-align: center;
    font-size: 60px;
    padding-bottom: 70px;
}

.sub-title{
    text-align: center;
    font-size: 70px;
}

.sub-title span{
    color: #0ef;
}

.container{
    padding: 90px;

}

.services-list{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    grid-gap: 40px;
    margin-top: 50px;
}

.services-list div{
    background-color: transparent;
    padding: 40px;
    font-size: 13px;
    font-weight: 13px;
    border-right: 10px;
    border-radius: 20px;
    transition: background 0.5s, transform 0.5s;
    box-shadow: 1px 1px 20px #012290f7,
                1px 1px 40px #0053b8f7
}

.services-list div i{
    font-size: 50px;
    margin-bottom: 30px;
}

.services-list div h2{
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 15px;   
}

.services-list div p{
   align-content: center;
   text-align: justify; 
}

.services-list div a{
    text-decoration: none;
    color: #000000;
    font-size: 12px;
    margin-top: 20px;
    display: inline-block;
}

.read{
    display: inline-block;
    padding: 12px 20px;
    background: #0ef;
    border-radius: 40px;
    font-size: 16px;
    color: #001b29;
    letter-spacing: 3px;
    text-decoration: none;
    font-weight: 600;
    opacity: 0;
    animation: slideLeft 1s ease forwards;
    animation-delay: 2s;
    box-shadow: 0 0 5px #0ef,
    0 0 25px #0ef
}

.read:hover{
    box-shadow: 0 0 5px cyan, 
    0 0 25px cyan, 0 0 50px cyan,
    0 0 100px cyan,0 0 200px cyan;
}

.services-list div:hover{
    transform: translateY(-12px);
}
/* ----------------------------------------------- */
.skills-section {
    width: 80%;
    margin: auto;
    color: #fff;
  }
  
  h2 {
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    border-bottom: 2px solid #fff;
    display: inline-block;
  }
  
  .skill-bar {
    margin: 20px 0;
  }
  
  p {
    margin: 0;
  }
  
  .progress {
    background-color: #333;
    border-radius: 20px;
    position: relative;
    margin: 5px 0;
    height: 25px;
    width: 100%;
  }
  
  .progress-done {
    background: linear-gradient(to left, #00f260, #0575e6);
    box-shadow: 0 3px 3px -5px #00f260, 0 2px 5px #0575e6;
    border-radius: 20px;
    color: #fff;
    height: 100%;
    width: 0;
    opacity: 0;
    transition: 1s ease 0.3s;
  }
  
  .circular-skills {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  
  .circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: conic-gradient(#0575e6 calc(var(--percent) * 1%), #333 0);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  
  .inner-circle {
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background-color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
  }
  
  .circle p {
    position: absolute;
    bottom: -30px;
    text-align: center;
  }
  
/* ----------------------------------------------- */

.projects-section {
    width: 80%;
    margin: auto;
    text-align: center;
    color: #fff;
    margin-top: 200px;
}
  
.projects-section h2 {
  text-transform: uppercase;
  font-size: 36px;
  margin-bottom: 30px;
}

.projects-section h2 span {
  color: #00f260; /* Highlighted color */
}
  
header h1 {
    font-size: 2.5rem;
    margin: 0;
}

header p {
    font-size: 1.2rem;
    margin: 1rem 0 0;
}

main {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.project {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin: 1.5rem 0;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.project:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px #0ef,8px 8px 10px red;
}

.project h2 {
    margin: 0 0 1rem;
    font-size: 1.5rem;
    color: #007bff;
}

.project p {
    margin: 0;
    font-size: 1rem;
    color: #555;
}

/* ---------------------------------------------- */
.container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    gap: 30px;
  }

  .contact-info {
    flex: 1;
    padding: 20px;
  }

  .contact-info h1 {
    font-size: 36px;
    font-weight: bold;
    color: #00f260;
    position: relative;
  }

  .contact-info h1::after {
    content: '';
    width: 40px;
    height: 5px;
    background-color: crimson;
    position: absolute;
    left: 0;
    bottom: -10px;
  }

  .contact-info h2 {
    color: crimson;
    margin-top: 30px;
  }

  .contact-info p {
    margin: 10px 0;
    color: #0ef;
    font-size: 16px;
  }

  .info-block {
    margin: 30px 0;
  }

  .info-block h3 {
    margin-top: 10px;
    font-weight: bold;
    color: red;
  }

  .info-block a {
    text-decoration: none;
    color: blue;
  }

  /* Form Styling */
  .contact-form {
    flex: 1;
    background: linear-gradient(red,yellowgreen);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px cyan;
  }

  .input-group {
    display: flex;
    align-items: center;
    background: #1a1a1a;
    border-radius: 10px;
    margin: 10px 0;
    padding: 10px;
  }

  .input-group i {
    color: cyan;
    margin-right: 10px;
    font-size: 18px;
    min-width: 20px;
    text-align: center;
  }

  .input-group input,
  .input-group textarea {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 16px;
    padding: 10px;
  }

  .contact-form textarea {
    resize: vertical;
    min-height: 150px;
  }

  .contact-form button {
    width: 100%;
    padding: 15px;
    font-size: 20px;
    background: cyan;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 10px;
    box-shadow: 0 0 20px cyan;
  }
/* ----------------------------------------------- */
.last-text p{
    width: 100%;
    text-align: center;
    padding: 25px 0;
    background: rgb(7, 85, 91);
    font-weight: 300;
    margin-top: 70px;
}

.top{
    position: fixed;
    bottom: 2.1rem;
    right: 2.1rem;
}

.top i{
    color: #000;
    background: #0ef;
    font-size: 20px;
    padding: 10px;
    border-radius: 0.5rem;
}

.contact-form input:hover{
    background:linear-gradient(lime,#0ef);
}

.contact-form textarea:hover{
    background:linear-gradient(lime,#0ef);
}

.contact-form .send:hover{
    background: linear-gradient(red,yellowgreen);
}

.contact-form input{
    box-shadow: 2px 2px 2px white;
}

.contact-form textarea{
    box-shadow: 2px 2px 2px white;
}

.contact-form :required {
    background: linear-gradient(red,blue);
}

.contact-form textarea{
    background-color: rgba(16, 1, 4, 0.775);
}






@keyframes slideRight{
    0%{
        transform: translateX(-100px);
        opacity: 0;
    }

    100%{
        transform: translateX(0px);
        opacity: 1;
    }
}

@keyframes slideLeft{
    0%{
        transform: translateX(100px);
        opacity: 0;
    }

    100%{
        transform: translateX(0px);
        opacity: 1;
    }
}
@keyframes slideTop{
    0%{
        transform: translateY(100px);
        opacity: 0;
    }

    100%{
        transform: translateY(0px);
        opacity: 1;
    }
}

@keyframes slideBottom{
    0%{
        transform: translateY(-100px);
        opacity: 0;
    }

    100%{
        transform: translateY(0px);
        opacity: 1;
    }
}
