 *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Quicksand", sans-serif;
    font-weight: 300;
}

:root{
    --white-color: #fff;
    --dark-color: #252525;
    --primary-color: #1f1e21;
    --primary-darker:#1b1b1c;
    --secondary-color: #0077ff;
    --dark-gray-color: #303030;
    --medium-gray-color: #ccc;

    
    --font-size-s: 0.9rem;
    --font-size-n: 1rem;
    --font-size-m: 1.12rem;
    --font-size-l: 1.5rem;
    --font-size-xl: 2rem;
    --font-size-xxl: 2.3rem;

    
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    
    --border-radius-s: 8px;
    --border-radius-m: 30px;
    --border-radius-circle: 50%;
}

ul{
    list-style: none;
}

a{
    text-decoration: none;

}

button{
    cursor: pointer;
    border: none;
    background: none;
}

img{
    width: 100%;
}

.section-content{
    margin: 0 auto;
    padding: 0 20px;
    max-width: var(--site-max-width);
}

.section-title{
    text-align: center;
    padding: 0 20px;
    max-width: var(--site-max-width);
    font-size: var(--font-size-xl);
}

.section-title::after{
    content: "";
    width: 80px;
    display: block;
    margin: 10px auto;
    border-radius: var(--border-radius-s);
    background: var(--secondary-color);
}


header{
    position: fixed;
    width: 100%;
    z-index: 999999999;
    background: linear-gradient(135deg, rgb(0, 0, 0) 10%, rgba(0, 0, 0, 0.3) 100%);
    backdrop-filter: blur(8px);
    box-shadow: 30px 50px 70px rgba(0, 0, 0, 0.15);
    align-items: center;
}
#page-header {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.25) 10%, rgba(0, 0, 0, 0.25) 100%);
    transition: transform 0.5s ease;
    z-index: 999999;
    transform: translateY(0); /* initially visible */
}

#page-header.hidden {
  transform: translateY(-100%);
}

header .navbar{
    display: flex;
    height: 100%;
    padding: 10px;
    align-items: center;
    justify-content: space-between;
}
.navbar .nav-logo{
    display: flex;
    align-items: center;
    align-self: center;
}

.navbar .nav-logo .logo-nav{
    max-width: 70%;
    padding-right: 10px;
}
.navbar .nav-logo .logo-text{
    color: var(--white-color);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-medium);
    align-self: center;
    align-items: center;
}

.navbar .nav-menu {
    display: flex;
    gap: 5px;
}

.profile{
background: linear-gradient(135deg, rgba(0, 0, 0, 0.15) 10%, rgba(0, 0, 0, 0.15) 100%);
padding: 15px 40px;
border: none;
outline: none;
cursor: pointer;
position: relative;
border-radius: 12px;
z-index: 0;
font-size: var(--font-size-m);
color: var(--white-color);
}

.profile::after{
    content: "";
    z-index: -1;
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 10%, var(--dark-gray-color) 100%);
    left: 0;
    top: 0;
    border-radius: 10px;
}

.profile::before{
    content: "";
    background: linear-gradient(45deg, #FF0000, #FF7300, #FFFB00, #48FF00, #00FFD5, #002BFF, #FF00C8, #FF0000);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 600%;
    z-index: -1;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    filter: blur(8px);
    animation: glowing 20s linear infinite;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
    opacity: 0;
}

@keyframes glowing{
    0% {background-position: 0 0;}
    50% {background-position: 400% 0;}
    100% {background-position: 0 0;}
}

.profile:hover::before{
    opacity: 1;
}

.profile:active::after{
    background: transparent;
}

.profile:active{
    color: #000;
    font-weight: var(--font-weight-semibold);
}

.profile2{
background: linear-gradient(135deg, rgba(0, 0, 0, 0.15) 10%, rgba(0, 0, 0, 0.15) 100%);
padding: 15px 40px;
border: none;
outline: none;
cursor: pointer;
position: relative;
border-radius: 12px;
z-index: 0;
font-size: var(--font-size-m);
color: var(--white-color);
width: 100%;
}

.profile2::after{
    content: "";
    z-index: -1;
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 10%, var(--dark-gray-color) 100%);
    left: 0;
    top: 0;
    border-radius: 10px;
}

.profile2::before{
    content: "";
    background: linear-gradient(45deg, #FF0000, #FF7300, #FFFB00, #48FF00, #00FFD5, #002BFF, #FF00C8, #FF0000);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 600%;
    z-index: -1;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    filter: blur(8px);
    animation: glowing 20s linear infinite;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
    opacity: 0;
}

@keyframes glowing{
    0% {background-position: 0 0;}
    50% {background-position: 400% 0;}
    100% {background-position: 0 0;}
}

.profile2:hover::before{
    opacity: 1;
}

.profile2:active::after{
    background: transparent;
}

.profile2:active{
    color: #000;
    font-weight: var(--font-weight-semibold);
}

.navbar .nav-menu .nav-link{
    padding: 10px 18px;
    color: var(--white-color);
    font-size: var(--font-size-m);
    border-radius: var(--border-radius-m);
    transition: 0.3s ease;
}

.navbar .nav-menu .nav-link:hover{
    color: var(--white-color);
    background: var(--secondary-color);
}

.navbar :where(#menu-close-button, #menu-open-button){
    display: none;
}

/* Share Button Styles */
.share-container {
    position: relative;
    margin-left: auto;
}

.share-button {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.15) 10%, rgba(0, 0, 0, 0.15) 100%);
    padding: 10px 15px;
    border: none;
    outline: none;
    cursor: pointer;
    position: relative;
    border-radius: 12px;
    z-index: 0;
    font-size: var(--font-size-s);
    color: var(--white-color);
    display: flex;
    align-items: center;
    gap: 6px;
}

.share-button::after {
    content: "";
    z-index: -1;
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 10%, var(--dark-gray-color) 100%);
    left: 0;
    top: 0;
    border-radius: 10px;
}

.share-button::before {
    content: "";
    background: linear-gradient(45deg, #FF0000, #FF7300, #FFFB00, #48FF00, #00FFD5, #002BFF, #FF00C8, #FF0000);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 600%;
    z-index: -1;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    filter: blur(8px);
    animation: glowing 20s linear infinite;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
    opacity: 0;
}

.share-button:hover::before {
    opacity: 1;
}

.share-button:active::after {
    background: transparent;
}

.share-button:active {
    color: #000;
    font-weight: var(--font-weight-semibold);
}

.share-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    display: none;
    z-index: 1000;
    overflow: hidden;
}

.share-dropdown.show {
    display: block;
}

.share-option {
    width: 100%;
    padding: 12px 16px;
    background: none;
    border: none;
    color: var(--white-color);
    text-align: left;
    cursor: pointer;
    font-size: var(--font-size-m);
    transition: background 0.2s ease;
}

.share-option:hover {
    background: rgba(255, 255, 255, 0.1);
}

.share-option:first-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.home-section{
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-color) 10%, var(--dark-gray-color) 100%);
    background-attachment: fixed;
}

.aboutus-section{
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-color) 10%, var(--dark-gray-color) 100%);
}
.home-section .section-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    color: var(--white-color);
    z-index: 1;
    background: transparent;
}

.aboutus-section .section-content{
    display: flex;
    padding-top: 150px;
    align-items: center;
    min-height: 50vh;
    color: var(--white-color);
    justify-content: space-between;
    z-index: 1;
}

.home-section .section-details .title{
    font-size: var(--font-size-xxl);
    color: var(--secondary-color);
    font-family: "Jost", sans-serif;
    z-index: 1;
}

.aboutus-section .section-details .title{
    font-size: var(--font-size-xxl);
    color: var(--secondary-color);
    font-family: "Jost", sans-serif;
    z-index: 1;
}

.home-section .section-details{
    z-index: 1;
    justify-content: space-between;
}

.aboutus-section .section-details{
    margin-left: 30px;
    z-index: 1;
}

.home-section .section-details .subtitle{
    margin-top: 8px;
    max-width: 70%;
    font-size: var(--font-size-xxl);
    font-weight: var(--font-weight-semibold);
    z-index: 1;
}

.aboutus-section .section-details .subtitle{
    margin-top: 8px;
    max-width: 50%;
    font-size: var(--font-size-l);
    font-weight: var(--font-weight-semibold);
    z-index: 1;
}

.home-section .section-details .description{
    max-width: 100%;
    font-size: var(--font-size-m);
    z-index: 1;
}

.aboutus-section .section-details .description{
    max-width: 100%;
    font-size: var(--font-size-m);
    z-index: 1;
}



.home-section .section-details .buttons{
    display: flex;
    gap: 23px;
    z-index: 1;
} 

.home-section .section-details .button{
    padding: 10px 26px;
    border: 2px solid transparent;
    color:  var(--primary-color);
    border-radius: var(--border-radius-m);
    background: var(--secondary-color);
    font-weight: var(--font-weight-medium);
    transition: 0.3 ease;
    z-index: 1;
}

.home-section .section-details .button:hover, 
.home-section .section-details .sign-up{
    color:  var(--white-color);
    border-color: var(--white-color);
    background: transparent;
    z-index: 1;
}

.home-section .section-details .sign-up:hover{
    color:  var(--primary-color);
    border-color: var(--secondary-color);
    background: var(--secondary-color);
    z-index: 1;
}

.home-section .image-wrapper{
    max-width: 450px;
    margin-right: 30px;
    z-index: 1;
}

.aboutus-section .image-wrapper{
    max-width: 500px;
    min-width: 400px;
    margin-right: 30px;
    z-index: 1;
}

.the-team{
padding: 50px 0 100px;
background-color: var(--primary-color);
color: var(--white-color);
}

.the-team .slider-wrapper{
    overflow: hidden;
    margin: 0 60px 50px;
}

.the-team .title{
font-weight: var(--font-weight-semibold);
font-size: var(--font-size-xl);
color: var(--secondary-color);

    font-family: "Jost", sans-serif;
}

.the-team .team-member{
    display: flex;
    padding: 35px;
    text-align: center;
    flex-direction: column;
    align-items: center;
    color: var(--white-color);
}

.the-team .team-member .team-member-image{
    width: 180px;
    height: 180px;
    object-fit: cover;
    margin-bottom: 50px;
    border-radius: var(--border-radius-circle);
}

.the-team .team-member .team-initial-icon{
    width: 180px;
    height: 180px;
    margin-bottom: 50px;
    border-radius: var(--border-radius-circle);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
}

.the-team .team-member .name{
    margin-bottom: 16px;
    font-size: var(--font-size-m);
    color: var(--white-color);
}

.the-team .team-member .desc{
    line-height: 25px;
    color: var(--white-color);
}

.the-team .swiper-pagination-bullet{
    width: 15px;
    height: 15px;
    opacity: 1;
    background: var(--secondary-color);
}

.the-team .swiper-slide-button{
    margin-top: -50px;
    color: var(--white-color);
    transition: 0.3s ease;
}
.the-team .swiper-slide-button:hover{
    color: var(--primary-color);
}

/*About-Us*/
.about-section{
    padding: 120px 0;
    background: var(--primary-color);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    align-items: center;
}

.about-section .section-content{
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
}

.about-section .about-image-wrapper .about-image{
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius-circle);
}

.about-section .about-details .section-title{
    padding: 0;
    font-size: var(--font-size-xxl);
    color: var(--secondary-color);
    font-family: "Jost", sans-serif;
}

.about-section .about-details .section-subtitle{
    padding: 0;
    text-align: center;
    color: var(--white-color);
}

.about-section .about-details{
    max-width: 50%;
}
.about-section .about-details .text{
    line-height: 30px;
    margin: 50px 0 30px;
    text-align: center;
    font-size: var(--font-size-m);
    color: var(--white-color);
}

.about-section .social-link-list{
    display: flex;
    gap: 25px;
    justify-content: center;
}

.about-section .social-link-list .social-link{
    color: var(--white-color);
    font-size: var(--font-size-l);
}

.about-section .social-link-list .social-link:hover{
    color: var(--secondary-color);
    font-size: var(--font-size-l);
    transition: 0.2s ease;
}

/*aspects section*/

.aspects-section{
    color: var(--white-color);
    background: linear-gradient(135deg, var(--primary-color) 10%, var(--dark-gray-color) 100%);
    padding-bottom: 150px;
    padding-top: 120px;
    text-align: center;
}
.aspects-section .section-title{
    color: var(--secondary-color);
    font-size: var(--font-size-xxl);
    font-family: "Jost", sans-serif;
}

.aspects-section .section-subtitle{
    font-weight: var(--font-weight-medium);
    color: var(--white-color);
    text-align: center;
    padding-bottom: 100px;
}

.aspects-section::before, .aspects-section::after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0.4;
}

.aspects-section::before{
    clip-path: circle(30% at left 20%);
    background: linear-gradient(135deg, var(--dark-gray-color) 10%, var(--primary-color) 100%);
    z-index: 0;
}

.aspects-section::after{
    clip-path: circle(25% at right 80%);
    background: linear-gradient(135deg, var(--dark-gray-color) 10%, var(--primary-color) 100%);
    z-index: 0;
}

.aspects-section .aspects-list{
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 110px;
    align-items: center;
    justify-content: space-between;
}

.aspects-section .aspects-list .aspects-item{
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    justify-content: space-between;
    width: calc(100% / 3 -110px);
}

.aspects-section .aspects-list .aspects-item .aspects-image-wrapper{
    max-width: 70%;
    aspect-ratio: 1;
    margin-bottom: 25px;
    object-fit: contain;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.aspects-section .aspects-list .aspects-item .name{
    margin: 15px 0;
    font-size: var(--font-size-l);
    font-weight: var(--font-weight-semibold);
}

.aspects-section .aspects-list .aspects-item .text{
    font-size: var(--font-size-m);
}

.aspects-section .aspects-list .aspects-item .aspects-image-wrapper img{
    transition: transform 0.5s ease-in-out;
    transform-origin: center;
}

.aspects-section .aspects-list .aspects-item .aspects-image-wrapper img:hover{
    transform: rotateY(15deg) scale(1.15);
}

/*Contact*/

.contact-section{
    padding: 50px 0 100px;
    background: var(--primary-color);
    color: var(--white-color);
    align-items: center;
}

.contact-section .contact-title{
    color: var(--secondary-color);
    font-size: var(--font-size-xxl);
    font-family: "Jost", sans-serif;
    align-items: center;
    padding-left: 50px;
}

.contact-section .section-content{
    display:flex;
    gap: 48px;
    align-items:center;
    justify-content: space-between;
}

.contact-section .contact-info-list .contact-info{
    display: flex;
    gap: 20px;
    margin: 20px 0;
    align-items: center;
}

.contact-section .contact-info-list .contact-info i {
    font-size: var(--font-size-m);
}

.contact-section .contact-form{
    max-width: 50%;
}


.contact-section .contact-form .form-input{
    width: 100%;
    margin-bottom: 10px;
    height: 50px;
    padding: 20px;
    outline: none;
    background: var(--white-color);
    border-radius: var(--border-radius-s);
    border: 1px solid var(--primary-darker);
}

.contact-section .contact-form .form-input:focus{
    border-color: var(--secondary-color);
}

.contact-section .contact-form textarea{
    height: 100px;
    padding: 20px;
    resize: vertical;
}

.contact-section .contact-form .submit-button{
    padding: 10px 26px;
    color: var(--white-color);
    font-size: var(--font-size-m);
    font-weight: var(--font-weight-medium);
    background: var(--secondary-color);
    border-radius: var(--border-radius-m);
    border: 1px solid var(--primary-color);
    transition: 0.3s ease;
}

.contact-section .contact-form .submit-button:hover{
    background: transparent;
    color: var(--white-color);
}

/*Footer*/

.footer-section{
    padding:  20px 0;
    background: var(--primary-darker);
    padding-bottom: 20px;
    align-items: center;
}

.footer-section .section-content{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.footer-section :where(.copyright-text, .social-link, .policy-text){
    color: var(--white-color);
    transition: 0.2s ease;
}

.footer-section .social-link-list{
    display: flex;
    gap: 25px;
}

.footer-section .social-link-list .social-link{
    font-size: var(--font-size-l);
}

.footer-section .social-link-list .social-link:hover{
    color: var(--secondary-color);
}

.footer-section .policy-text .seperator{
    margin: 0 5px;
    color: var(--white-color);
}

/*Team Members*/


/*Login*/

.background{
width: 100%;
height: 100vh;
background: url('Back.png') no-repeat;
background-size:cover;
background-position: center;
filter: blur(5px);
z-index: 0;
}


.container{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: var(--border-radius-m);
    width: 75%;
    height: 500px;
    background: url('Back.png') no-repeat;
    background-size: cover;
    background-position: center;
    margin-top: 20px;
    border: 1px solid;
}

.container .content{
    position: absolute;
    top: 0;
    left: 0;
    width: 58%;
    height: 100%;
    padding: 80px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    color: var(--white-color);
    background: transparent;
}

.container .logreg-box{
    position: absolute;
    top: 0;
    right: 0;
    width: calc(100% - 58%);
    height: 100%;
    overflow: hidden;
    background: transparent;
    color: var(--white-color);
}

.content .logo{
    font-size: var(--font-size-xl);
    font-family: "Jost", sans-serif;
    
}

.text-sci h2{
    font-size: var(--font-size-xxl);
    line-height: 1;
    padding-bottom: 5px;
    font-family: "Jost", sans-serif;
}

.text-sci h2 span{
    font-size: var(--font-size-l);
    padding-bottom: 5px;
}

.text-sci p{
    font-size: var(--font-size-m);
    padding-bottom: 5px;
}

.logreg-box .form-box{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: transparent;
    backdrop-filter: blur(20px);
    border-top-right-radius:var(--border-radius-m);
    border-bottom-right-radius: var(--border-radius-m);
    color: var(--white-color);
}

.logreg-box .form-box.login{
    transform: translateX(0);
    transition: transform .6s ease;
    transition-delay: .7s;
}

.logreg-box.active .form-box.login{
    transform: translateX(430px);
    transition-delay: 0s;
}

.logreg-box .form-box.register{
    transform: translateX(430px);
    transition: transform .6s ease;
    transition-delay: 0s;
}

.logreg-box.active .form-box.register{
    transform: translateX(0);
    transition-delay: .7s;
}

.form-box h2{
    font-size: var(--font-size-xl);
    text-align: center;
}

.form-box .input-box{
    position: relative;
    width: 340px;
    height: 50px;
    border-bottom: 2px solid var(--white-color);
    margin: 30px 0;
}

.input-box input{
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-size: var(--font-size-s);
    color: var(--white-color);
    font-weight: var(--font-weight-normal);
}

.input-box label{
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-size: var(--font-size-s);
    font-weight: var(--font-weight-semibold);
    pointer-events: none;
}

.input-box input:focus~label, .input-box input:valid~label{
    top: -5px;
}

.input-box .icon{
    position: absolute;
    top: 13px;
    right: 0;
    font-size: 19px;
}

.form-box .remember-forgot{
    font-size: var(--font-size-s);
    font-weight: var(--font-weight-normal);
    margin: -15px 0 15px;
    display: flex;
    justify-content: space-between;
}

.remember-forgot label input{
    accent-color: var(--white-color);
    margin-right: 3px;
}

.remember-forgot a {
    color: var(--white-color);
    text-decoration: none;
}

.remember-forgot a:hover{
    text-decoration: underline;
}

.form-box .login-register{
    font-size: var(--font-size-s);
    font-weight: var(--font-weight-normal);
    text-align: center;
    margin-top: 25px;
}

.login-register p a{
    color: var(--white-color);
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
}
.login-register p a:hover{
    text-decoration: underline;
}




.slide-in{
    animation: slide-in 0.5s ease forwards;
}

/*.project-page{
    width: 100vw;
    height: 100vw;
    display: flex;
    padding-left: 20px;
}*/

.side-panel{
    margin-top: 5%;
    width: 30%;
    height: 80vh;
    background: linear-gradient(135deg, var(--dark-color) 10%, var(--dark-gray-color) 100%) ;
    border-radius: var(--border-radius-m);
    display: flex;
    flex-direction: column;
}
.side-panel .header-panel{
    display: flex;
    width: 100vw;
    height: 15vh;
    align-items: center;
    align-content: space-between;
}

.side-panel .grid-panel{
    display: flex;
    flex-wrap: wrap;
    width: 30vw;
    height: 80vh;
    align-items: center;
    justify-content: space-between;
}

.panel-header{
    font-size: var(--font-size-l);
    color: var(--white-color);
    font-weight: var(--font-weight-semibold);
    background: transparent;
}


.work-area{
height: 100vh;
width: 100vw;
position: relative;
overflow: hidden;
background: lightgray;
align-items: center;
display: flex;
}

.control-panel {
    width: 270px;
    top: 35px;         /* distance from top of viewport */
    bottom: 35px;
    background: #f4f4f4d6;
    border-right: 1px solid #e5e7eb;
    box-shadow: 30px 10px 30px rgba(0,0,0,0.04);
    display: flex;
    overflow: auto;
    flex-direction: column;
    position: fixed;
    z-index: 4000;
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-m);
    left: 15px;

}

.control-panel::-webkit-scrollbar {
    display: none;
}

.floating-pill-vertical {
    position: fixed;
    top: 24px;
    right: 24px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;

    padding: 6px;
    background: rgba(244, 244, 244, 0.75);
    backdrop-filter: blur(12px);

    border-radius: 999px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);

    z-index: 5000;
}

/* Buttons */
.floating-pill-vertical button {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;
    padding: 6px;

    border-radius: 999px;
    border: none;
    background: transparent;
    cursor: pointer;

    overflow: hidden;
    transition: height 0.25s ease, background 0.2s ease;
}

/* Icon */
.floating-pill-vertical .icon {
    font-size: 20px;
    line-height: 1;
}

.floating-pill-vertical .icon i {
    margin: 0;
    padding: 0;
    display: block;
    transform: none;
}

/* Label (hidden by default) */
.floating-pill-vertical .label {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

/* Expand vertically on hover */
.floating-pill-vertical:hover button {
    height: 56px; /* just enough to fit icon + text */
}

/* Reveal labels */
.floating-pill-vertical:hover .label {
    opacity: 1;
    transform: translateY(0);
}

/* Hover effect */
.floating-pill-vertical button:hover {
    background: rgba(0,0,0,0.08);
}

/* Active state (Grid ON) */
.floating-pill-vertical button.active {
    background: rgba(0,0,0,0.15);
}



.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border-bottom: 1px solid #e5e7eb;
}

.panel-header .title {
    font-weight: 700;
    font-size: var(--font-size-m);
    letter-spacing: 0.05em;
    color: #1f2937;
}

#viewport {
    position: fixed;
    inset: 0;
    overflow: hidden;
    z-index: auto;
}

#canvas {
    position: absolute;
    left: 0;
    top: 0;
    transform-origin: 0 0;
}

.marketplace {
    background: none;
    border: none;
    color: #22c55e;
    font-weight: 600;
    cursor: pointer;
}

.panel-search {
    padding: 12px 16px;
    border-bottom: 1px solid #e5e7eb;
}

.panel-search input {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    font-size: 14px;
}

.section-headerP {
    width: 100%;
    padding: 12px 16px;
    background: #f9fafb;
    border: none;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    color: #374151;
    cursor: pointer;
}

.panel-section .chevron {
  transition: transform 0.25s ease;
}

.panel-section.open .chevron {
  transform: rotate(180deg);
}

.section-contentP {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.panel-section.open .section-contentP {
  max-height: 500px;
}

.section-contentP.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 14px 16px 18px;
}

.tile {
  all: unset;
  cursor: pointer;

  background:transparent;
  border-radius: 14px;

  height: 88px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;

  box-shadow: 0 6px 16px rgba(0,0,0,0.04);

  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

/* ===============================
   TILE ICON
================================ */
.tile .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Actual Boxicon */
.tile .icon i {
  font-size: 25px;
  color: #374151; /* clean dark grey */
  line-height: 1;
  transition: color 0.18s ease, transform 0.18s ease;
}

/* Hover polish */
.tile:hover .icon i {
  color: #111827; /* slightly darker on hover */
  transform: translateY(-1px);
}

/* ===============================
   TILE LABEL
================================ */
.tile span {
  font-size: 12px;
  font-weight: 500;
  color: #374151;
  text-align: center;
  line-height: 1.2;
}

/* ===============================
   HOVER / ACTIVE STATES
================================ */
.tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
  border-color: #c7d2fe;
  background: #f9fafb;
}

.tile:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}


/* ======================
   Draggable Box
   ====================== */
.draggable-element {
  position: absolute;
  width: 150px;
  height: 100px;
  background: white;
  border-radius: 8px;
  padding: 0;
  box-sizing: border-box;
  cursor: grab;
  user-select: none;
  transition: box-shadow 0.2s;
}

.draggable-element.dragging {
  cursor: grabbing;
    box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.35),
    inset 0 1px 2px rgba(255, 255, 255, 0.6);
}

/* Outline only when editing */
.draggable-element.editing {
  outline: 2px solid #3498db;
  outline-offset: -2px;
}


.draggable-element {
  will-change: transform;
}


.todo-item {
  display: flex;
  align-items: center;   /* vertical alignment */
  gap: 8px;              /* space between checkbox and text */
  margin-bottom: 6px;
}

.todo-item input[type="checkbox"] {
  margin: 0;
  flex-shrink: 0;        /* prevents checkbox from resizing */
}

.todo-text {
  flex: 1;               /* text takes remaining space */
  outline: none;
  line-height: 1.4;
}

.todo-item input:checked + .todo-text {
  text-decoration: line-through;
  opacity: 0.6;
}


/* ======================
   Editable Text
   ====================== */
.draggable-element.focused {
  outline: 2px solid #4A90E2;
  border-radius: 6px;
}

   
.editable-text {
  width: 100%;
  height: 100%;
  padding: 10px;
  overflow: auto;
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-wrap: break-word;
  white-space: pre-wrap; /* preserve line breaks */
  outline: none;
  border: none;
  font-family: sans-serif;
  font-size: 14px;
  user-select: none;
}

/* ======================
   Resize Circle
   ====================== */
.resize-circle {
  position: absolute;
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
  transition: transform 0.2s, opacity 0.2s;
  opacity: 0; /* hidden by default */
}

/* Delete Circle */
.delete-circle {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
  transition: transform 0.2s, opacity 0.2s;
  opacity: 1; /* always visible */
  cursor: pointer;
}

/* Specific positions for different circles */
.resize-circle:not(.font-increase-circle):not(.font-reduce-circle):not(.bold-circle) {
  top: 5px;
  right: 5px;
  cursor: nwse-resize;
}

.font-increase-circle {
  top: -50px;
  left: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.font-reduce-circle {
  top: -50px;
  left: 30px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.bold-circle {
  top: -50px;
  left: 60px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Icon inside the circle */
.resize-circle i {
  pointer-events: none;
  font-size: 14px;
}

/* Animate circles out on hover */
.draggable-element:hover .resize-circle {
  opacity: 1;
}

.draggable-element:hover .resize-circle:not(.font-increase-circle):not(.font-reduce-circle):not(.bold-circle) {
  transform: translate(4px, -4px);
}

.draggable-element:hover .font-increase-circle,
.draggable-element:hover .font-reduce-circle,
.draggable-element:hover .bold-circle {
  transform: translate(-4px, -4px);
}

/* Delete circle hover */
.draggable-element:hover .delete-circle {
  opacity: 1;
  transform: translate(-4px, 4px);
}

/* ======================
   DRAGGABLE IMAGE ELEMENT
   ====================== */
.image-element {
  position: absolute;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  overflow: visible;
  cursor: grab;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
  user-select: none;
  padding: 10px; /* padding inside for aesthetics */
}

/* Grab cursor while dragging */
.image-element:active {
  cursor: grabbing;
}

/* Image placeholder text */
.image-placeholder {
  color: #999999;
  font-size: 14px;
  text-align: center;
  pointer-events: none;
  user-select: none;
}

/* Uploaded images inside the element */
.image-element img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}


.editable-text.placeholder,
.todo-text.placeholder {
  color: #aaa; /* grey ghost text */
}

/* When user has typed something, remove placeholder class */
.editable-text:not(.placeholder),
.todo-text:not(.placeholder) {
  color: #000;
}

.editable-text:empty::before {
    content: attr(data-placeholder);
    color: #999; /* light grey ghost text */
    opacity: 0.6;
}

.editable-text:not(:empty)::before {
    content: none;
}

.todo-text.placeholder,
.image-placeholder {
    color: #999; /* light grey ghost text */
    opacity: 0.6;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.todo-text:not(.placeholder) {
    color: #222; /* normal text color */
    opacity: 1;
}


/* ====================== COLUMN ELEMENT ====================== */
.column-element {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.15),
    inset 0 1px 1px rgba(255, 255, 255, 0.45);
  color: #111;
  transition:
    box-shadow 0.25s ease,
    transform 0.15s ease,
    background 0.3s ease;
  padding: 0;
  min-width: 250px;
  min-height: 300px;
  align-content: center;
}

.in-column {
  position: static !important;
  left: auto !important;
  top: auto !important;
  margin: 0 !important;
  box-shadow: none !important;
}

/* ====================== ROW ELEMENT ====================== */
.row-element {
  display: flex;
  flex-direction: row;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.15),
    inset 0 1px 1px rgba(255, 255, 255, 0.45);
  color: #111;
  transition:
    box-shadow 0.25s ease,
    transform 0.15s ease,
    background 0.3s ease;
  padding: 0;
  min-width: 400px;
  min-height: 150px;
  align-content: center;
}

.in-row {
  left: auto !important;
  top: auto !important;
  margin: 0 !important;
  box-shadow: none !important;
}




/* Dropzone inside column */
.column-dropzone {
  flex: 1;
  backdrop-filter: blur(10px);
  background: #f9fafba7;        /* same light background as image placeholder */
  border-radius: 15px;        /* match column border-radius */
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  position: relative;
  overflow: visible;
  min-height: 80px;
  transition: background 0.2s, border 0.2s;
}

.column-dropzone.drag-over {
  background: #f0f9ff;        /* subtle blue highlight when dragging */
}

/* Snapped elements inside column inherit normal styles */
.column-dropzone .draggable-element {
  margin: 0;                 /* remove spacing, stack neatly */
  position: relative;         /* needed for resizing handles */
}

.column-element:focus,
.column-dropzone:focus,
.column-title:focus {
  outline: none;
}

/* Panel container */
.panel {
    margin-left: 1%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 10px;
    padding: 10px;
    background: var(--white-color);
    border-radius: var(--border-radius-s);
    width: max-content;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    
}

.panel button {
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--border-radius-s);
  padding: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
}

.panel button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  background: #2980b9;
}

.panel button:active {
  transform: scale(0.95);
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}


.panel-grid{
background: linear-gradient(135deg, rgba(0, 0, 0, 0.15) 10%, rgba(0, 0, 0, 0.15) 100%);
padding: 15px 40px;
border: none;
outline: none;
cursor: pointer;
position: relative;
border-radius: 12px;
z-index: 0;
font-size: var(--font-size-m);
color: var(--white-color);

}

.panel-grid::after{
    content: "";
    z-index: -1;
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 10%, var(--dark-gray-color) 100%);
    left: 0;
    top: 0;
    border-radius: 10px;
}

.panel-grid::before{
    content: "";
    background: linear-gradient(45deg, #FF0000, #FF7300, #FFFB00, #48FF00, #00FFD5, #002BFF, #FF00C8, #FF0000);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 600%;
    z-index: -1;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    filter: blur(8px);
    animation: glowing 20s linear infinite;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
    opacity: 0;
}

.panel-grid:hover::before{
    opacity: 1;
}

.panel-grid:active::after{
    background: transparent;
}

.panel-grid:active{
    color: #000;
    font-weight: var(--font-weight-semibold);
}

.editable-text,
.todo-text,
.column-title {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  padding: 6px 10px;
  margin: 4px 0;
  outline: none;
}

/* Stitched Colour Palette Extension */
.color-palette-element {
  position: relative;
}

.color-palette-extension {
  position: absolute;
  top: 0;
  right: -20px;
  width: 20px;
  height: 100%;
  border: 2px dotted rgba(255, 255, 255, 0.5);
  border-left: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  cursor: pointer;
  pointer-events: auto;
}

.color-palette-element:hover .color-palette-extension {
  opacity: 1;
}

.column-title {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  padding: 4px 8px;
  margin: 0;
}



@keyframes slide-in{
    from{
        transform:translateX(100%);
        visibility: visible;
    }to{
        transform: translateX(0%);
    }
}

.todo-item {
  display: flex;
  align-items: center;
}

.todo-text {
  outline: none;
  flex: 1;
}


/* ====================== GLASS BASE ====================== */
 .draggable-element,
.column {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);

  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.35);

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.15),
    inset 0 1px 1px rgba(255, 255, 255, 0.45);

  color: #111;
  transition:
    box-shadow 0.25s ease,
    transform 0.15s ease,
    background 0.3s ease;
}

.draggable-element:hover,
.column:hover {
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.22),
    inset 0 1px 1px rgba(255, 255, 255, 0.6);
}

.draggable-element:active,
.column:active {
  transform: scale(1.03);
}

#profileBtn {
    pointer-events: auto;
    position: relative;
    z-index: 9999;
}


.pageset{
    background:  linear-gradient(270deg, var(--primary-color) 100%, #1f1e21 10%);
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: row;
    overflow: hidden;
}

.sect1{
    background: var(--primary-color);
    height: 100vh;
    width: 20vw;
}

.sect2{
    background:  linear-gradient(90deg, var(--primary-color) 10%, var(--dark-gray-color) 100%);
    height: 100vh;
    width: 50vw;
    color: var(--white-color);
    border-bottom-right-radius: var(--border-radius-m);
    border-top-right-radius: var(--border-radius-m);
    position: relative;
    overflow: hidden;
}



.sect2 .h1{
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);

}

.teamsCont p{
    font-size: var(--font-size-l);
    font-weight: var(--font-weight-semibold);
    color: var(--white-color);
    margin-top: 15px;
    margin-bottom: 10px;

}

.sect2 i{
    font-size: var(--font-size-s);
    font-weight: var(--font-weight-normal);
    color: rgb(194, 194, 194);
}

.sect3{
    background: transparent;
    height: 100vh;
    width: 30vw;
    padding: 20px;
}

/* ===============================
  SLIDER WRAPPER
=============================== */


/* Scrollbar */
.projects-slider::-webkit-scrollbar {
  height: 8px;
}

.projects-slider::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

/* ===============================
  PROJECT TILE BASE
=============================== */

.projects-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  transform: translateX(0);
  transition: transform 0.5s ease;
}

.projects-slider-wrapper:not(.active) {
  transform: translateX(-100%);
}

.projects-slider-wrapper.active {
  z-index: 10;
}

.projects-slider {
  display: flex;
  gap: 20px;
  padding: 10px 40px;
  overflow-x: auto;
  scroll-behavior: smooth;
}

/* Tile base */
.project-tile {
    position: relative;
    overflow: hidden;
    min-width: 180px;
    height: 180px;
    transform: scale(1);
    opacity: 1;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 20px;
    cursor: pointer;
    color: #fff;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: linear-gradient(135deg, #6a11cb, #2575fc); /* single gradient */
}

/* Initial hidden state for new tiles */
.project-tile.newly-created {
  transform: scale(0.6);
  opacity: 0;
}


.project-tile:hover {
  transform: scale(1.08);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Background layer (if you want overlay effects) */
.tile-bg {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 0;
}

/* Project content above gradient */
.project-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  height: 100%;
}

/* Project name */
.project-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

/* Team member icons */
.team-members {
  display: flex;
  flex-direction: row;
  gap: -20px; /* Maximum overlap (20px width * 1.0 = 20px) */
  justify-content: flex-start;
  align-items: center;
  margin-left: -10px; /* Align to bottom left corner */
}

.profile-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
}

.initial-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}

.my-profile-icon {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
}

/* ===== NEW PROJECT TILE ===== */
.new-project {
  background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-width: 180px;
  height: 180px;
  border-radius: 20px;
  cursor: pointer;
  color: #fff;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.new-project:hover {
  transform: scale(1.08);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.new-project .plus {
  font-size: 64px;
  line-height: 1;
}

.new-project .label {
  font-size: 14px;
  opacity: 0.8;
}

/* ===== NEW PROJECT TILE ===== */
.new-project-tile {
  background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-width: 180px;
  height: 180px;
  border-radius: 20px;
  cursor: pointer;
  color: #fff;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.new-project-tile:hover {
  transform: scale(1.08);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.new-project-tile .plus {
  font-size: 64px;
  line-height: 1;
}

.new-project-tile .label {
  font-size: 14px;
  opacity: 0.8;
}

/* ICONS WITH GLASSMORPHISM */
.tile-icon {
    position: absolute;
    width: 32px;
    height: 32px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    z-index: 2;
    transition: all 0.2s ease;
}

.tile-icon:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

.tile-icon.top-left { top: 12px; left: 12px; }
.tile-icon.top-right { top: 12px; right: 12px; }


.scrolling-section {
    display: none;
    flex-direction: column;
    gap: 12px;
    max-height: 300px;   /* adjust height */
    overflow-y: auto;
    padding: 10px;
    padding-bottom: 20px;
}

.scrolling-section.active {
    display: flex;
}

/* Scrollbar styling optional */
.scrolling-section::-webkit-scrollbar {
  width: 6px;
}
.scrolling-section::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.2);
  border-radius: 10px;
}

/* List item */
.list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(6px);
    cursor: pointer;
    transition: all 0.2s ease;
}

.list-item:hover {
  background: rgba(255,255,255,0.2);
  transform: scale(1.02);
}

/* Icon left */
.item-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  margin-right: 12px;
  flex-shrink: 0;
}

.item-icon i {
  color: #fff;
  font-size: 18px;
  line-height: 1;
}

/* Text in the middle */
.item-text {
  flex-grow: 1;
}

.item-title {
  font-weight: 600;
  font-size: 14px;
  color: #fff;
}

.item-subtitle {
  font-weight: 400;
  font-size: 12px;
  color: #ddd;
  margin-top: 2px;
}

/* Chevron right */
.item-chevron i {
  font-size: 20px;
  color: #fff;
}

.team-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #cf0101 20%, #ff5353 100%);
    backdrop-filter: blur(6px);
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    gap: 15px;
}

/*.team-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.02);
}

/* Stacked profile icons on the left */
.team-profiles {
    display: flex;
    gap: -100px; /* overlap icons slightly */
}

.team-profiles .profile-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #fff;
    object-fit: cover;
}

/* Team name on the right */
.team-name {
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    margin-left: 12px;
}

/* Container */
.three-block-section {
  display: flex;
  width: 100%px;   /* square container */
  height: 250px;
  gap: 15px;
}

/* Base block style — same as list items */
.block {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.2s ease;
  color: #fff;
  font-weight: 600;
}

.block:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.02);
}

/* Left block sizing */
.block-left {
  flex: 50%; /* 2/3 width */
  flex-direction: column; /* stack avatars + text vertically */
  justify-content: center;
  gap: 12px;
}

/* Right vertical stack */
.right-blocks {
  flex: 50%; /* 1/3 width */
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.block-top-right,
.block-bottom-right {
  flex: 1;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

/* Profiles / avatars on left */
.block-left-profiles {
  display: flex;
  gap: -10px; /* overlap slightly */
}

.profile-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
}

/* Team name text */
.block-left-text {
  font-size: 14px;
  font-weight: 600;
}

.sect3 p{
    font-size: var(--font-size-m);
    font-weight: var(--font-weight-normal);
    color: var(--white-color);
    margin-bottom: 15px;
}

.calendar {
  width: 350px;
  background: rgba(30, 30, 30, 0.4);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 16px;
  color: #fff;
  font-family: sans-serif;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calendar-header .month-year {
  font-weight: 600;
  font-size: 16px;
}

.calendar-header button {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  color: #fff;
  font-weight: bold;
  padding: 4px 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.calendar-header button:hover {
  background: rgba(255,255,255,0.25);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 12px;
  color: #ddd;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.calendar-days .day {
  position: relative;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: transparent;
}

.calendar-days .day::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 4px;
  background: linear-gradient(to right, #007bff, #0056b3);
  border-radius: 2px;
  transition: background 0.3s ease;
}

.calendar-days .day:hover {
  background: rgba(255,255,255,0.2);
  transform: scale(1.05);
}

.calendar-days .day.today {
  background: rgba(255,255,255,0.25);
  border: 1px solid rgba(255,255,255,0.3);
  font-weight: 700;
}

.calendar-days .day.deadline {
  position: relative;
}

.calendar-days .day.deadline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, #ff0000, #cc0000);
  border-radius: 1px;
}

.calendar-days .day.deadline:hover::after {
  content: attr(data-project);
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  z-index: 1000;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.sidebar {
  width: 220px;
  background: rgba(30,30,30,0.4);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: 100vh;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  color: #aaa;
  font-family: sans-serif;
}

.profile-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.profile-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.2);
}

.username {
  font-weight: 600;
  color: #fff;
}

.email {
  font-size: 12px;
  color: #aaa;
}

.sidebar-spacer {
  flex-grow: 1;
}

.menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.menu-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 6px 0;
  cursor: pointer;
  position: relative;
}

.menu-item span {
  flex-grow: 1;
  color: #aaa;
  padding: 4px 0;
}

.menu-item.selected span {
  color: #fff;
}

.menu-item .accent-bar {
  width: 4px;
  height: 100%;
  background: transparent;
  border-radius: 0;
  margin-right: 8px;
}

.menu-item.selected .accent-bar {
  background: #ff7f50; /* Accent color */
}

.menu-item:hover span {
  color: #fff;
}

.separator {
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 8px 0;
}


/* Project tile dropdown menu */
.project-tile .tile-menu {
  position: absolute;
  top: 30px;
  right: 10px;
  width: 140px;
  background: rgba(30, 30, 30, 0.349); /* dark glass effect */
  backdrop-filter: blur(8px);
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  overflow: hidden;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.25s ease, opacity 0.25s ease;
  opacity: 0;
  z-index: 2000;
}

.project-tile .tile-menu.active {
  transform: scaleY(1);
  opacity: 1;
}

.tile-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  cursor: pointer;
  color: #ccc;
  font-size: 14px;
  transition: background 0.2s ease;
}

.tile-menu-item:hover {
  background: rgba(255,255,255,0.1);
}

.tile-menu-item.delete {
  color: #e53935;
}

/* Accent bar for column titles */
.accent-bar {
  width: 60%;
  height: 4px;
  background: linear-gradient(to right, #007bff, #0056b3);
  border-radius: 2px;
  cursor: pointer;
  margin: 0 auto 0 auto;
  transition: background 0.3s ease;
}

/* Color picker container */
.color-picker {
  position: absolute;
  top: -50px; /* Position above the accent bar */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

/* Color circles */
.color-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.color-circle:hover {
  transform: scale(1.2);
  border-color: rgba(255, 255, 255, 0.8);
}

/* Project Progress Section */
.project-progress-section {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  padding: 20px;
  box-sizing: border-box;
  transform: translateX(100%);
  transition: transform 0.5s ease;
}

.project-progress-section.active {
  transform: translateX(0);
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.progress-header h1 {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  color: var(--white-color);
}

.nav-icons {
  display: flex;
  gap: 10px;
}

.nav-icons i {
  font-size: 24px;
  color: var(--white-color);
  cursor: pointer;
  transition: color 0.2s ease;
}

.nav-icons i:hover {
  color: var(--secondary-color);
}

.progress-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex: 1;
}

.donut-chart {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.donut {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: conic-gradient(white 0% 45%, rgba(255,255,255,0.2) 45% 100%);
  position: relative;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.inner-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-l);
  box-shadow: inset 0 4px 10px rgba(0,0,0,0.2);
}

.tasks-remaining {
  flex: 1;
}

.tasks-remaining h2 {
  font-size: var(--font-size-l);
  font-weight: var(--font-weight-semibold);
  color: var(--white-color);
  margin-bottom: 20px;
}

.tasks-remaining .team-members {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.member-dropdown {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.15);
  overflow: hidden;
  transition: background 0.2s ease;
}

.member-dropdown:hover {
  background: rgba(255,255,255,0.2);
}

.member-dropdown summary {
  padding: 12px 16px;
  cursor: pointer;
  font-weight: var(--font-weight-medium);
  color: var(--white-color);
  list-style: none;
  outline: none;
}

.member-dropdown summary::-webkit-details-marker {
  display: none;
}

.member-dropdown summary::after {
  content: '▼';
  float: right;
  color: var(--white-color);
  transition: transform 0.2s ease;
}

.member-dropdown[open] summary::after {
  transform: rotate(180deg);
}

.member-dropdown ul {
  list-style: none;
  padding: 0;
  margin: 0;
  background: rgba(0,0,0,0.1);
}

.member-dropdown li {
  padding: 8px 16px;
  color: var(--white-color);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.member-dropdown li:first-child {
  border-top: none;
}

/* Team Selection Pop-up */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-overlay.active {
  display: flex;
}

.popup-content {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 30px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  color: #fff;
}

.popup-content h2 {
  margin-bottom: 20px;
  font-size: var(--font-size-xl);
  color: var(--secondary-color);
}

.team-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.team-member-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.2s ease;
}

.team-member-item:hover {
  background: rgba(255, 255, 255, 0.2);
}

.team-member-item input[type="checkbox"] {
  accent-color: var(--secondary-color);
  transform: scale(1.2);
}

.team-member-item label {
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  flex: 1;
  text-align: left;
}

.done-btn {
  padding: 12px 30px;
  background: var(--secondary-color);
  color: var(--white-color);
  border: none;
  border-radius: var(--border-radius-m);
  font-size: var(--font-size-m);
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.done-btn:hover {
  background: var(--primary-color);
  transform: scale(1.05);
}

/* Deadline Picker Overlay */
.deadline-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.deadline-overlay.active {
  display: flex;
}

.deadline-content {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 30px;
  width: 250px;
  text-align: center;
  color: #fff;
}

.deadline-content h2 {
  margin-bottom: 20px;
  font-size: var(--font-size-xl);
  color: var(--secondary-color);
}

.deadline-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.deadline-options label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: var(--font-weight-medium);
  cursor: pointer;
}

.deadline-options input[type="checkbox"] {
  accent-color: var(--secondary-color);
  transform: scale(1.2);
}

/* Scrolling Date Picker */
.date-picker {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 20px;
}

.date-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 200px;
  overflow: hidden;
  position: relative;
  cursor: grab;
}

.date-column:active {
  cursor: grabbing;
}

.date-column::before,
.date-column::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.1), transparent);
  z-index: 1;
  pointer-events: none;
}

.date-column::after {
  bottom: 0;
  background: linear-gradient(to top, rgba(255,255,255,0.1), transparent);
}

.date-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
  cursor: grab;
  overflow: hidden;
}

.date-scroll:active {
  cursor: grabbing;
}

.date-item {
    padding: 10px 15px;
    font-size: 24px;
    font-weight: 500;
    color: rgba(0,0,0,0.7);
    opacity: 0.4;
    transition: color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
    user-select: none;
    width: 50px;
    text-align: center;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.date-item.selected {
  color: var(--secondary-color);
  font-weight: 700;
  transform: scale(1.1);
}

.date-item:hover {
  color: #fff;
}

.date-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.selected-date-display {
  margin-top: 20px;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white-color);
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  backdrop-filter: blur(6px);
}

/* Date Picker Styles */
.picker {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.wheel {
  width: 80px;
  height: 200px;
  overflow: hidden;
  position: relative;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: var(--font-size-l);
  color: #f9fafb;
  font-weight: var(--font-weight-semibold);
}

.wheel .date-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
  cursor: grab;
}

.wheel .date-item {
  padding: 10px;
  font-size: var(--font-size-l);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  opacity: 0.3;
  transition: color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
  user-select: none;
  width: 100%;
  text-align: center;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-l);
}

.wheel .date-item.selected {
  color: var(--secondary-color);
  font-size: var(--font-size-l);
  font-weight: 700;
  transform: scale(1.1);
  opacity: 1;
  scale: 1.2;
  
  padding-top: 60px;
  padding-bottom: 60px;
}

.wheel .date-item:hover {
  color: #fff;
  opacity: 0.8;
}

.selection-overlay {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 40px;
  transform: translateY(-50%);
  /* background: rgba(255, 255, 255, 0.2); */
  border-radius: 8px;
  pointer-events: none;
  z-index: 1;
  font-size: var(--font-size-l);
}

/* Project Tile Menu */
.tile-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.tile-icon:hover {
  background: rgba(255, 255, 255, 0.2);
}

.tile-menu {
  position: absolute;
  top: 50px;
  right: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 10px 0;
  min-width: 120px;
  display: none;
  z-index: 10;
}

.tile-menu.show {
  display: block;
}

.tile-menu-item {
  padding: 8px 15px;
  color: var(--white-color);
  cursor: pointer;
  transition: background 0.3s ease;
}

.tile-menu-item:hover {
  background: rgba(255, 255, 255, 0.2);
}

.tile-menu-item.delete {
  color: #ff6b6b;
}

.tile-menu-item.delete:hover {
  background: rgba(255, 0, 0, 0.2);
}


.sect2 p{
  margin-top: 30px;
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
}


.sect2 i{
  font-size: var(--font-size-m);
  font-weight: var(--font-weight-normal);
}

/* Responsive Design */

/* Tablet Styles (max-width: 768px) */
@media (max-width: 768px) {
  :root {
    --font-size-xl: 1.8rem;
    --font-size-xxl: 2rem;
  }

  .section-content {
    padding: 0 15px;
  }

  .navbar .nav-menu {
    display: none; /* Hide menu, assume hamburger toggle */
  }

  .navbar #menu-open-button {
    display: block;
  }

  .navbar .nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px;
    z-index: 1000;
    gap: 20px;
  }

  .navbar .nav-menu.active #menu-close-button {
    display: block;
    align-self: flex-end;
  }

  .navbar .nav-logo .logo-text {
    font-size: var(--font-size-m);
  }

  .home-section .section-content,
  .aboutus-section .section-content {
    flex-direction: column;
    text-align: center;
    padding-top: 100px;
  }

  .home-section .section-details,
  .aboutus-section .section-details {
    margin-left: 0;
    margin-bottom: 30px;
  }

  .home-section .image-wrapper,
  .aboutus-section .image-wrapper {
    max-width: 300px;
    margin-right: 0;
  }

  .home-section .section-details .buttons {
    justify-content: center;
  }

  .aspects-section .aspects-list {
    gap: 50px;
  }

  .aspects-section .aspects-list .aspects-item {
    width: calc(50% - 25px);
  }

  .contact-section .section-content {
    flex-direction: column;
    gap: 30px;
  }

  .contact-section .contact-form,
  .contact-section .contact-info-list {
    max-width: 100%;
  }

  .footer-section .section-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .about-section .section-content {
    flex-direction: column;
    gap: 30px;
  }

  .about-section .about-details {
    max-width: 100%;
  }

  .the-team .slider-wrapper {
    margin: 0 30px;
  }

  .container {
    width: 90%;
    height: 450px;
  }

  .content {
    width: 60%;
    padding: 60px;
  }

  .logreg-box {
    width: calc(100% - 60%);
  }

  .pageset {
    flex-direction: column;
  }

  .sect1 {
    width: 100vw;
    height: 20vh;
  }

  .sect2 {
    width: 100vw;
    height: 60vh;
  }

  .sect3 {
    width: 100vw;
    height: 20vh;
  }

  .control-panel {
    width: 250px;
  }

  .floating-pill-vertical {
    right: 16px;
  }

  .panel {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(6, 1fr);
  }

  .calendar {
    width: 300px;
  }

  .sidebar {
    width: 200px;
  }

  .three-block-section {
    height: 200px;
  }

  .block-left {
    flex: 100%;
  }

  .right-blocks {
    flex: 100%;
    flex-direction: row;
    gap: 10px;
  }

  .block-top-right,
  .block-bottom-right {
    flex: 1;
  }

  .progress-content {
    flex-direction: column;
    gap: 20px;
  }

  .donut-chart {
    flex: none;
  }

  .tasks-remaining {
    flex: none;
  }
}

/* Mobile Styles (max-width: 480px) */
@media (max-width: 480px) {
  :root {
    --font-size-xl: 1.5rem;
    --font-size-xxl: 1.8rem;
    --font-size-l: 1.2rem;
  }

  .section-content {
    padding: 0 10px;
  }

  .navbar .nav-logo .logo-nav {
    max-width: 5%;
  }

  .navbar .nav-logo .logo-text {
    font-size: var(--font-size-s);
  }

  .home-section .section-details .title,
  .aboutus-section .section-details .title {
    font-size: var(--font-size-xl);
  }

  .home-section .section-details .subtitle,
  .aboutus-section .section-details .subtitle {
    font-size: var(--font-size-m);
    max-width: 100%;
  }

  .home-section .section-details .description,
  .aboutus-section .section-details .description {
    font-size: var(--font-size-s);
  }

  .home-section .section-details .buttons {
    flex-direction: column;
    gap: 15px;
  }

  .home-section .section-details .button,
  .home-section .section-details .sign-up {
    padding: 8px 20px;
    font-size: var(--font-size-s);
  }

  .aspects-section .aspects-list {
    flex-direction: column;
    gap: 30px;
  }

  .aspects-section .aspects-list .aspects-item {
    width: 100%;
  }

  .contact-section .contact-info-list .contact-info {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .contact-section .contact-form .form-input {
    height: 45px;
    padding: 15px;
  }

  .contact-section .contact-form textarea {
    height: 80px;
    padding: 15px;
  }

  .footer-section .social-link-list {
    justify-content: center;
  }

  .about-section .about-image-wrapper .about-image {
    width: 300px;
    height: 300px;
  }

  .the-team .team-member {
    padding: 25px;
  }

  .the-team .team-member .team-member-image,
  .the-team .team-member .team-initial-icon {
    width: 150px;
    height: 150px;
  }

  .container {
    width: 95%;
    height: 400px;
  }

  .content {
    width: 100%;
    padding: 40px 20px;
    text-align: center;
  }

  .logreg-box {
    width: 100%;
    position: static;
    background: transparent;
  }

  .form-box {
    width: 100%;
  }

  .pageset {
    flex-direction: column;
  }

  .sect1 {
    height: 15vh;
  }

  .sect2 {
    height: 70vh;
  }

  .sect3 {
    height: 15vh;
  }

  .control-panel {
    width: 200px;
  }

  .floating-pill-vertical {
    right: 10px;
  }

  .panel {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(6, 1fr);
    width: 90%;
  }

  .calendar {
    width: 280px;
  }

  .sidebar {
    width: 180px;
  }

  .three-block-section {
    height: 180px;
  }

  .block-left-profiles .profile-icon {
    width: 30px;
    height: 30px;
  }

  .progress-content {
    flex-direction: column;
    gap: 15px;
  }

  .donut {
    width: 120px;
    height: 120px;
  }

  .inner-circle {
    width: 80px;
    height: 80px;
    font-size: var(--font-size-m);
  }

  .popup-content {
    padding: 20px;
    max-width: 90%;
  }

  .deadline-content {
    width: 90%;
  }



}