/* Glassmorphism and Modern Responsive Styles for My Project Section */
.glass {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.projects-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}
.project-item {
    padding: 30px;
    font-size: 15px;
    font-weight: 400;
    border-radius: 20px;
    transition: background 0.5s, transform 0.5s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255,255,255,0.08);
    box-shadow: 0 0 20px #C100F844;
}
.project-item:hover {
    transform: translateY(-10px) scale(1.03);
    background: rgba(193,0,248,0.12);
}
.project-img {
    width: 90%;
    max-width: 400px;
    border-radius: 15px;
    margin: 10px 0;
    box-shadow: 0 0 20px #C100F844;
}

@media (max-width: 900px) {
    .projects-list {
        grid-template-columns: 1fr;
    }
    .project-img {
        max-width: 90vw;
    }
}
* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}
body{
    background: #080808;   
    color: #fff;
}
#header{
    width: 100%;
    height: 100vh;
    background: #080808;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
    margin-top: 40px;
}

.fitri-img {
    width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 0 30px #C100F8;
}
.container{
    padding: 10px 10%;
}
nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
logo{
    width: 140px;
}

nav ul li{
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
}

nav ul li a{
    color: #fff;
    text-decoration:none;
    font-size: 18px;
    position: relative;
}

nav ul li a:hover {
    color: #C100F8;
    transition: color 0.5s;
}

.header-text{
    margin-top:20px;
    font-size: 30px;
}
.header-text p{
    padding-bottom: 30px;
    font-size: 25px;
}
.header-text h1{
    font-size: 60px;
    margin-top: px;
}
.header-text h1 span{
    color: #C100F8;
}

#clock {
    font-size: 4rem;
    font-weight: bolder;
    color: #C100F8;
    margin-top: 3rem;
    display: inline-block;
    background-color: #000000;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0 0 50px 
}

/*--------about--------*/
#about{
    padding: 80px 0;
    color: #ababab
}
.row{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.about-col-1{
    flex-basis: 35%;
}

.about-col-1 img{
    width: 100%;
    border-radius: 15px;
    margin-top: 50px;
}
.about-col-2{
    flex-basis: 60%;
    margin-top: 50px;
}

.subtitle{
    font-size: 60px;
    font-weight:600;
    color: white;
}

.tab-titles{
    display: flex;
    margin: 20px 0 40px;
}

.tab-links{
    margin-right: 50px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
}

.tab-links {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    position: relative;
}

.tab-links.active-link {
    color: #C100F8; /* Set the color for active links */
    transition: color 0.5s; /* Add a transition for smooth color change */
}

.tab-contents ul li{
    list-style: none;
    margin: 10px 0;
}
.tab-contents ul li span{
    color:#C100F8;
    font-size: 14px;
}

.tab-contents{
    display: none;
}
.tab-contents.active-tab{
    display: block;
}

/*-------------service-----------*/
#service{
    padding: 30px 0;
}
.services-list{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    grid-gap: 40px;
    margin-top: 50px;
}
.services-list div{
    background: #262626;
    padding:40px ;
    font-size: 13px;
    font-weight: 300;
    border-radius: 15px;
    transition: background 0.5s, transform 0.5s;
}
.services-list div i{
    font-size: 40px;
    margin-bottom: 30px;
}
.services-list div h2{
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 15px;
}

.services-list div a{
    text-decoration: none;
    color: #fff;
    font-size: 12px;
    margin-top:20px ;
    display: inline-block;
}
.services-list div:hover{
    background: #C100F8;
    transform: translateY(-10px);
}