*{
    padding: 0;
    margin:0;
    font-family: 'Josefin Sans', sans-serif;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
  
.hero{
    height: 100vh;
    width: 100%;
    background-image: url(../Portfolio_Website/main.png);
    background-color: #191919;
    background-size: cover;
    background-position: center;
}

nav{
    display: flex;
    align-items:center;
    justify-content: space-between;
    padding-top: 45px;
    padding-left: 2%;
    padding-right: 5%;
}
.logo{
    color:white;
    font-size: 35px;
    letter-spacing: 1px;
    cursor: pointer;
}
span{
    color:red;
}
nav ul li{
    list-style-type:none;
    display: inline-block;
    padding: 10px 25px;
}
nav ul li a{
    color: white;
    text-decoration: none;
    font-weight: bold;
    text-transform: capitalize;
}
nav ul li a:hover{
    color:#f9004d;
    transition:.4s;
}
.content{
    position: absolute;
    top:50%;
    left: 8%;
    transform: translateY(-50%);
}
h1{
    color: white;
    margin: 20px 0px 20px;
    font-size: 75px;

}
h3{
    color: white;
    font-size: 25px;
    margin-bottom: 50px;
}
h4{
    color:#fcfc;
    letter-spacing: 2px;
    font-size: 20px;
}
.newslatter form input:first-child{
    width: 380px;
    max-width: 100%;
    position: relative;
    padding: 14px 130px 14px 15px;
    border: 2px solid #f9004d;
    outline: none;
    border-radius: 30px;
}
.newslatter form input:last-child{
    position: absolute;
    display: inline-block;
    outline: none;
    border: none;
    padding: 10px 30px;
    border-radius: 30px;
    background-color:#f9004d;
    color: white;
    box-shadow:0px 0px 5px #000, 0px 0px 15px #858585;
    top: 234px;
    right:34px;
}
.about{
    width: 100%;
    padding: 100px 0px;
    background-color: #191919;
}
about img{
    height: auto;
    width: 430px;
}
.about-text{
    width: 550px;
}
.main{
    width: 1130px;
    max-width:95%;
    margin: 0 auto;
    display: flex;
    align-items:center;
    justify-content: space-around;
}
.about-text h2{
    color: white;
    font-size: 75px;
    text-transform: capitalize;
    margin-bottom: 20px;
}
.about-text h5{
    color: white;
    letter-spacing: 2px;
    font-size: 15px;
    margin-bottom: 20px;
    text-transform: capitalize;
}
.about-text p{
    color:#fcfc;
    letter-spacing:1px;
    line-height:20px;
    font-size:15px;
    margin-bottom:45px;
}
button{
    background-color:#f9004d;
    color:white;
    text-decoration:none;
    border: 2px solid transparent;
    font-weight: bold;
    padding: 13px 30px;
    border-radius: 30px;
    transition: .4s;
}
button:hover{
    background-color:transparent;
    border:2px solid #f9004d;
    cursor: pointer;
}
.skills {
    width: 100%;
    padding: 100px 0;
    background-color: #191919;
  }
  
.skills .title h2 {
    color: white;
    font-size: 75px;
    text-align: center;
    margin-bottom: 50px;
}
  
.skills-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 0 10%;
}
  
.skill-card {
    width: 200px;
    height: 180px;
    background: #101010;
    border-radius: 20px;
    text-align: center;
    padding: 30px 20px;
    box-shadow: 0 0 10px #000;
    transition: transform 0.3s ease, background 0.3s ease;
}
  
.skill-card:hover {
    transform: scale(1.05);
    background: #f9004d;
    cursor: pointer;
}
  
.skill-card i {
    font-size: 40px;
    color: #f9004d;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}
  
.skill-card:hover i {
    color: white;
}
  
.skill-card h5 {
    color: white;
    font-size: 20px;
    text-transform: uppercase;
}
  
  
.service{
    background: #101010;
    width: 100%;
    padding: 100px 0px;
}
.title h2{
    color:white;
    font-size: 75px;
    width: 1130px;
    margin: 30px auto;
    text-align: center;
}
.box{
    display: flex;
    justify-content:center;
    align-items:center;
    min-height: 400px;
}
.card{
    height: 400px;
    width: 335px;
    padding: 20px 35px;
    background: #191919;
    border-radius: 20px;
    margin: 15px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.card i{
    font-size: 50px;
    display: block;
    text-align:center;
    margin: 25px 100px;
    color: #f9004d;
}
.card ul {
    color: #fcfc;
    padding-left: 20px; /* Adds space before bullets */
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: left; /* Aligns list text to the left */
}

.card ul li {
    margin-bottom: 5px;
    line-height: 1.5;
}

h5{
    color: white;
    font-size: 23px;
    margin-bottom: 15px;
}
.pra p{
    color:#fcfc;
    font-size:16px;
    line-height:27px;
    margin-bottom:25px;
}
.card .button{
    background-color:#f9004d;
    color:white;
    text-decoration:none;
    border: 2px solid transparent;
    font-weight: bold;
    padding: 13px 30px;
    border-radius: 30px;
    transition: .4s;
}
.card .button:hover{
    background-color:transparent;
    border:2px solid #f9004d;
    cursor: pointer;
}
.contact {
    background-color: #101010;
    padding: 100px 0;
    width: 100%;
}
  
.contact .title h2 {
    color: white;
    font-size: 75px;
    text-align: center;
    margin-bottom: 50px;
}
  
.contact-container {
    width: 90%;
    max-width: 600px;
    margin: 0 auto;
}
  
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
  
.contact-form input,
.contact-form textarea {
    padding: 15px;
    background: #191919;
    border: 2px solid #f9004d;
    border-radius: 10px;
    color: white;
    font-size: 16px;
    outline: none;
    resize: none;
}
  
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #ccc;
}
  
.contact-form button {
    background-color: #f9004d;
    color: white;
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.4s;
}
  
.contact-form button:hover {
    background-color: transparent;
    border: 2px solid #f9004d;
}
  

footer{
    position:relative;
    width: 100%;
    height: 400px;
    background: #101010;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.social{
    display: flex;
}
.social a{
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9004d;
    border-radius: 50%;
    margin: 40px 20px;
    color: white;
    text-decoration: none;
    font-size:20px;
}
.social a:hover{
    transform: scale(1.3);
    transition:.4s;
}
.footer-bottom {
    width: 100%;
    text-align: center;
    padding: 20px 0;
    background-color: #101010;
    color: white;
    font-size: 14px;
    border-top: 1px solid #333;
}
.footer-bottom p {
    margin: 10px 0; 
}

.footer-bottom .email a{
    color: #f9004d; 
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer-bottom .email:hover {
    color: transparent;
}
