* {
    margin: 0;
    padding: 0;
}

body {
    /* background-color: rgb(0, 0, 33); */
    color: black;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

nav{
    color: white;
}

nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    /* height: 80px; */
    height: 60px;
    background-color: rgb(16, 16, 22);
}

.left {
    display: flex;
    margin: center;
    font-size: 2rem;

}

nav ul {
    display: flex;
    justify-content: center;
}

nav ul li {
    list-style: none;
    margin: 0 23px;
    transition: color 0.3s;
}

.firstSection {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
}

.leftSection{
    font-size: 2rem;
    margin: 0 25px;
    margin-left: 5vh;
}

.btn{
    background-color: rgb(14, 105, 137);
    /* text-decoration: none; */
    padding: 12px;
    border-radius: 13px;
    cursor: pointer;
    font-size: 1.3rem;
}

.first li:hover{
    color: rgb(9, 65, 81);
    cursor: pointer;
    /* font-size: 1.08rem; */
}

.first li::after{
    border-radius: white 5px;
}

.btn:hover{
    background-color: beige;
}

span{
    color: purple;
}

.rightSection img{
    align-items: center;
    
}

/* .rightSection h2{
    margin-left: 20%;
    color: rgb(57, 19, 133);
    
} */

hr{
    color: blue;
    margin: 50px;
    height: 3px;
    background-color: rgb(13, 88, 153);
}

.socialmedia{
    text-transform: none;
}

.secondSection .leftSection h1{
    text-decoration: underline;
}
.certificates{
    height: 100vh;
}

.certificates h4{
    margin-left: 20%;
}

.certificates p{
    margin-left: 21%;
    font-size: 1.6rem;
}


p{
    padding: 8px;
}

.qualificationSection {
    height: 55px;
}

.youtube{
    background-color: red;
    border: solid 3.5px;
    font-size: 2rem;
    border-radius: 20px;
    padding: 12px;
    margin-top: 5px;
    cursor: pointer;
}

.youtube:hover{
    background-color: beige;
    color: red;
}

.game-name{
    font-size: 1rem;
    margin-left: 18px;
    display: flex;
}

.vlog-name{
    font-size: 1rem;
    margin-left: 24.1vh;
    margin-top: -18px;
}


.label .footer{
    display: flex;

}

.label .footer li{
    margin: 0 17vh;
    height: 30vh;
}

.qualificationSection h1{
    margin-bottom: 3%;
}

.subscribe span{
    margin-left: 45px;
}

nav .ul .li a{
    text-decoration: none;
    background-color: rebeccapurple;
}

.rightSection .first a{
    text-decoration: none;
    color: white;
}


/* Servicenow Dev h3 Hadding */
.servicenow-title {
    font-size: 30px;
    font-weight: 800;
    text-align: center;
    letter-spacing: 2px;
    /* text-transform: uppercase; */

    background: linear-gradient(90deg, #032d42, #0070d2, #032d42);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;

    animation: shineLoop 5s linear infinite;
}

@keyframes shineLoop {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}


/* extra Chat GPT Footer */

footer {
    background-color: #222;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    margin-top: 15%;
  }

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 20px;
  }

  .footer-section {
    flex: 1 1 200px;
  }

  .footer-section h4 {
    margin-bottom: 15px;
    font-size: 18px;
    text-transform: uppercase;
  }

  .footer-section ul {
    list-style: none;
    padding: 0;
  }

  .footer-section ul li {
    margin: 8px 0;
  }

  .footer-section ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
  }

  .footer-section ul li a:hover {
    color: #fff;
  }

  .social-icons {
    /* display: flex; */
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
  }

  .social-icons a {
    color: #bbb;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s;
  }

  .social-icons a:hover {
    color: #fff;
  }

  .footer-bottom {
    margin-top: 15px;
    margin-bottom: -10px;
    font-size: 14px;
    color: #bbb;
  }


  /* Form CSS */
  .contact-form {
    background: #ffffff;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    width: 100%;
}

.contact-form h2 {
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form label {
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
    display: block;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    color: #333;
}

.contact-form textarea {
    resize: none;
    height: 100px;
}

.contact-form button {
    background-color: #4caf50;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

.contact-form button:hover {
    background-color: #45a049;
}

/* Form Last CSS */