* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {

    width: 100%;
    min-height: 100%;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

}

body
{
    background-image: url(./images/background.png);
}


.main {
    margin: 10px 30px;
    margin-bottom: 30px;
    
    background-position: center;
    background-size: cover;
    /* width: 100%; */
    min-height: calc(100vh - 40px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.left {
    text-transform: uppercase;
    display: flex;
    gap: 10px;
}

.left div {
    max-width: 70px;
    min-height: 60px;
    overflow: hidden;
}

.left img {
    width: 100%;
    height: 100%;
}

a {
    text-decoration: none;
    color: rgb(160, 162, 163);
}

.left a {

    font-size: 26px;
    letter-spacing: 3px;
    color: rgb(160, 162, 163);
}

.center {
    display: flex;
    align-items: center;
    gap: 20px;
}

.left-button {
    border: none;
    background-color: transparent;
    color: white;
    border: 2px solid rgb(57, 112, 107);
    border-radius: 20px;
    padding: 10px 20px;
}

.character {

    background-position: center;
    position: absolute;
    overflow: hidden;
    width: 420px;
    height: 445px;
    top: 30px;
    right: 270px;
    z-index: 2;
}

.character img {
    width: 100%;
    height: 100%;
        object-fit: contain;
}

.hero-section {
    position: relative;
}



.circle-bg {
    z-index: 1;
    position: absolute;
    width: 800px;
    height: 500px;
    top: 20px;
    right: 90px;
}

.circle-bg img {
    width: 100%;
    height: 100%;
}

.hero-section{
    margin-top: 40px;
    color: white;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-button{
    display: flex;
    align-items: center;
    gap: 30px;
  
}



.play i{
    background-color: black;
    border: 2px solid rgb(57, 112, 107);
    border-radius: 50%;
    padding: 8px;
}

.play{
    display: flex;
    align-items: center;
    gap: 20px;
}

.open{
     border: 2px solid rgb(57, 112, 107);
     display: flex;
     align-items: center;
     gap: 20px;
     padding: 7px 18px;
     border-radius: 15px;
     background: linear-gradient(
    90deg,
    #031717 0%,
    #0a4b48 35%,
    #12b8a7 70%,
    #39f0d4 100%
    
);


}

.open button{
   border: none;
    background-color: transparent;
    color: white;
    font-size: 20px;
    
}

.open i{
     font-size: 20px;
}

.hero-content{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-content h1{
 
    letter-spacing: 10px;
    line-height: 80px;
    font-size:  90px;

}


.hero-content>p:nth-of-type(3){
    width: 400px;
}
.hero-content>p:nth-of-type(2){
    margin-top: 10px;
}
.hero-content>p:nth-of-type(1){
    font-size: 18px;
}

.right-icons{
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 40px;
    right: 110px;
    top: 130px;
    z-index: 8;
}

.right-icons i{
   border: 2px solid rgb(57, 112, 107);
   color: rgb(57, 112, 107);
   padding: 10px;
   border-radius: 15px;
}

.irc{
    display: flex;
    align-items: center;
    gap: 20px;
    gap: 20px;
}

.analytics{
    margin-top: 50px;
    padding: 20px 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
    background-color: rgba(12, 21, 25, 0.71);
    z-index: 9;
      border: 2px solid rgb(57, 112, 107);
    border-radius: 15px;
    
}

.analytics p{
    font-size: 20px;
}
.analytics h3{
    font-size: 40px;
}

.vline{
    width: 5px;
    height: 100px;
    color: rgb(44, 0, 0);

}


.projects{
    padding: 80px 40px;
    color: white;
}

.projects-heading{
    position: relative;
    text-align: center;
    margin-bottom: 40px;
}

.projects-heading p{
    color: #00f0d0;
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: 5px;
}

.projects-heading h1{
    font-size: 60px;
    font-weight: 500;
    letter-spacing: 3px;
}

.project-arrows{
    position: absolute;
    right: 0;
    top: 10px;
    display: flex;
    gap: 15px;
}

.arrow{
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    cursor: pointer;
}

.arrow.active{
    border: 1px solid #00f0d0;
    box-shadow: 0 0 15px #00f0d0;
    color: #00f0d0;
}

.project-cards{
    display: flex;
    gap: 25px;
}

.project-card{
    width: 32%;
    border: 1px solid rgba(0,255,220,0.3);
    border-radius: 22px;
    overflow: hidden;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(5px);
}

.project-image{
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.project-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-content{
    padding: 20px;
}

.project-content span{
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.3);
    font-size: 13px;
    margin-bottom: 18px;
}

.project-content p{
    color: rgb(163,163,163);
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 25px;
}

.project-bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.icons{
    display: flex;
    gap: 12px;
    font-size: 22px;
    color: rgb(177,177,177);
}

.circle-btn{
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 1px solid #00f0d0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #00f0d0;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0,240,208,0.5);
}


/* ================= SKILLS ================= */

.skills{
    padding: 60px 40px;
    color: white;
}

.skills-heading{
    text-align: center;
    margin-bottom: 50px;
}

.skills-heading h1{
    font-size: 52px;
    font-weight: 500;
    letter-spacing: 2px;
}

.skills-heading span{
    color: #00f0d0;
}

.skill-cards{
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.skill-card{
    width: 20%;
    padding: 30px 25px;
    border-radius: 20px;
    border: 1px solid rgba(0,255,220,0.15);
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(5px);
}

.skill-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.skill-icon{
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 1px solid #00f0d0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: #00f0d0;
    box-shadow: 0 0 15px rgba(0,240,208,0.4);
}

.skill-top h2{
    font-size: 42px;
    color: #00f0d0;
}

.skill-card h3{
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 500;
}

.skill-card p{
    color: rgb(156,156,156);
    line-height: 1.7;
    font-size: 15px;
}




/* ================= CONTACT ================= */

.contact{
    margin: 40px;
    padding: 60px;
    border-radius: 30px;
    border: 1px solid rgba(0,255,220,0.2);
    display: flex;
    justify-content: space-between;
    gap: 40px;
    color: white;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(5px);
}

.contact-left{
    width: 40%;
}

.contact-left h1{
    font-size: 55px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 500;
}

.contact-left span{
    color: #00f0d0;
}

.contact-left p{
    color: rgb(170,170,170);
    margin-bottom: 30px;
    font-size: 18px;
}

.contact-left button{
    border: none;
    background: linear-gradient(to right,#001b1b,#00f0d0);
    padding: 18px 35px;
    color: white;
    border-radius: 15px;
    font-size: 18px;
    cursor: pointer;
}

.contact-center{
    width: 25%;
    padding-top: 10px;
}

.contact-logo{
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 25px;
}

.contact-logo img{
    width: 70px;
}

.contact-logo h2{
    font-size: 28px;
    font-weight: 500;
}

.contact-center p{
    color: rgb(165,165,165);
    line-height: 1.7;
    margin-bottom: 35px;
    font-size: 18px;
}

.social-icons{
    display: flex;
    gap: 18px;
}

.social-icons i{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    cursor: pointer;
}

.contact-right{
    width: 25%;
    padding-top: 10px;
}

.contact-right h2{
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 500;
}

.contact-item{
    display: flex;
    gap: 18px;
    align-items: center;
    margin-bottom: 30px;
}

.contact-item i{
    color: #00f0d0;
    font-size: 26px;
}

.contact-item p{
    color: rgb(180,180,180);
    font-size: 18px;
}







/* ================= FOOTER ================= */

.footer{
    padding: 0 40px 40px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgb(140,140,140);
}

.footer-links{
    display: flex;
    gap: 35px;
}

.footer-links a{
    color: rgb(140,140,140);
    font-size: 15px;
}