* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    line-height: 19px;
}

header {
    display: flex;
    position: fixed;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    height: 55px;
    background: rgba(30, 30, 47, 0.7);
    /* semi-transparent */
    backdrop-filter: blur(10px);
    /* blur effect */
    -webkit-backdrop-filter: blur(10px);
    /* for Safari */
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    z-index: 999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    /* optional line */
}

#menu-btn {
    font-size: 33px;
    cursor: pointer;
    margin-right: 35px;
}

header #image img {
    height: 70px;
}

.name span {
    color: #00BFFF;
}

/* Side menu styling */
.side-menu {
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    height: 100%;
    background-color: #111827;
    /* dark navy */
    color: white;
    padding-top: 60px;
    transition: 0.3s ease;
    z-index: 1000;
}

.side-menu ul {
    list-style-type: none;
    padding: 0;
}

.side-menu ul li {
    padding: 15px 20px;
}

.side-menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.side-menu ul li a:hover {
    color: #00BFFF;
}

.side-menu.show {
    right: 0;
}

.collapsible-header {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2a2a3d;
    color: white;
    padding: 12px 0;
    border-radius: 10px;
    margin-bottom: 10px;
}

.aroww {
    transition: transform 0.3s ease;
}

.collapsible-content {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.collapsible-content.show {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


body {
    background-color: #1E1E2F;
    font-family: 'Poppins', sans-serif;
    color: #F0F0F0;
    margin: 0;
    padding: 0;
}

.projects {
    padding: 60px 20px;
    max-width: 1000px;
    margin: auto;
}

.project {
    background: #2C2C3E;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 40px;
    border-left: 6px solid #00BFFF;
    transition: all 0.3s ease-in-out;
}

.project:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 191, 255, 0.4);
}

.project h1 {
    font-size: 2.2rem;
    color: #FFD700;
    line-height: 35px;
}

@media (max-width: 700px) {
    .project h1 {
        font-size: 1.8rem;
    }
}

.project h2 {
    font-size: 1.5rem;
    color: #00BFFF;
    margin-top: 30px;
    margin-top: 10px;
}

.project p {
    font-size: 1rem;
    line-height: 1.7;
    margin-top: 10px;
    color: #E0E0E0;
}

.project ul {
    list-style-type: disc;
    padding-left: 0;
    margin-top: 20px;
    margin-left: 18px;
    color: #FFD700;
}

.project li {
    font-weight: 600;
    margin-top: 15px;
    /* color: #FFD700; */
    margin-left: 16px;
}

.project ol {
    list-style-type: disc;
    margin-left: 18px;
}

.project .ul {
    font-weight: 400;
    color: #CFCFCF;
    margin-left: 15px;
    margin-top: 5px;
}

a {
    color: #00BFFF;
    text-decoration: none;
    font-weight: 600;
}

a:hover {
    text-decoration: underline;
}

.feature-block {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin: 20px 0;
}

.feature-block .text {
    flex: 1;
}

.feature-block .img {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-block .img img {
    width: 100%;
    max-width: 260px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);

}

/* 📱 Responsive layout for small screens */
@media (max-width: 840px) {
    .feature-block {
        flex-direction: column;
    }

    .feature-block .img img {
        max-width: 100%;
        margin-top: 15px;
    }

    .video {
        width: 90%;
    }
}


/* -------Footer-------- */
footer {
    display: flex;
    justify-content: space-between;
    padding: 25px 20px 50px 20px;
    /* margin-bottom: 3%; */
    background-color: #141b29;
}

footer .footerbody {
    display: flex;
    flex-direction: column;
}

footer .image img {
    width: 25%;
}

#footerOne {
    margin-left: 4%;
}

footer h2 {
    /* color: #00BFFF; */
    font-weight: bold;
    margin-bottom: 15px;
}

footer a {
    text-decoration: none;
    color: white;
    line-height: 20px;
    margin-top: 10px;
}

footer a:hover {
    text-decoration: none;
    color: #00BFFF;
}

footer #footerTwo {
    margin-left: -16%;
}

footer #footerfour {
    margin-right: 8%;
}

.rights {
    text-align: center;
    justify-content: center;
    border-top: 1px solid white;
    padding: 10px;
    background-color: #141b29;
}

.socials {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.socials li {
    display: inline-block;
}

.socials li a {
    text-decoration: none;
    color: white;
    /* background-color: white; */
    font-size: 1.8em;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
}

.socials li a:hover {
    color: #00BFFF;
}

@media (max-width: 500px) {
    footer {
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    footer #footerOne {
        margin-right: 0%;
    }

    footer #footerTwo {
        margin-left: 0%;
        /* margin-top: 10%; */
    }

    footer #footerfour {
        margin-right: 0%;
    }

    footer .footerbody {
        margin-top: 10%;
    }

}