*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    color: black;
    user-select: none;
}
body {
  font-family:"Poppins", sans-serif;
  font-size: 20px;
  background-color: rgb(242, 242, 242);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
body.dark-mode {
    background-color: rgb(132, 132, 132);
}
body.dark-mode * {
    color: white;
}
img {
    mix-blend-mode: multiply;
    /* mix-blend-mode: normal; */
}

h1, h2, h3 {
  font-weight: 700; /* Bold for headings */
}

p {
  font-weight: 400; /* Normal for text */
}


.headercs{
    margin-top: 18px;
    position: fixed;
    top: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    width: 100%;
    z-index: 1000;
}
.navcs{
    display: flex;
    gap: 25px;
    background-color: rgb(255, 255, 255);
    justify-self: center;
    padding: 20px 40px;
    font: 16px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.theme-toggle{
    cursor: pointer;
    padding: 5px 10px;

    margin-right: 10px;
    border-radius: 10px;
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgb(255, 255, 255);
}
.mobile-dropdown {
    display: none;
}
body.dark-mode .navcs,
body.dark-mode .theme-toggle,
body.dark-mode .whomics,
body.dark-mode .whatiucs {
    background-color: rgb(0, 0, 0);
}
body.dark-mode .navcs a[style] {
    background-color: rgb(30, 30, 30) !important;
}
body.dark-mode img {
    mix-blend-mode: normal;
}
.highlightcs{
    margin-top: 150px;
    /* background-color: antiquewhite; */
    width: 100%;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    width: 100%;

}
.highlcs{
    padding: 20px;
}
.social_links{
    display: flex;
    gap: 10px;
}
.social_links img{
    cursor: pointer;
    width: 26px;
    margin-top: 20px;
    transition: transform 0.3s ease;
}
.social_links img:hover {
    transform: scale(1.15);
}
.social_links img:active {
    transform: scale(0.95);
}
.whomics{
    padding: 20px;
    margin: 40px 30px;
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
}
.toolsuse img{
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
    cursor: pointer;
}
.toolsuse img:hover{
    transform: scale(1.15);
}
.toolsuse{
    display: flex;
    gap: 30px;

}
.whatiucs{
    width: fit-content;
    background-color: rgb(255, 255, 255);
    margin: 40px 30px;
    padding: 20px;
    border-radius: 10px;


}

@media (max-width: 768px) {
    body {
        font-size: 14px;
        align-items: stretch;
        overflow-x: hidden;
    }

    .headercs {
        width: calc(100% - 24px);
        left: 12px;
        margin-top: 12px;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 8px;
    }

    .navcs {
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
        padding: 8px;
        border-radius: 6px;
    }

    .navcs a {
        font-size: 10px;
        padding: 6px 8px;
    }

    .navcs a[style] {
        margin-top: 0 !important;
        padding: 6px 10px !important;
        border-radius: 6px !important;
    }

    .theme-toggle {
        flex-shrink: 0;
        gap: 4px;
        margin-right: 0;
        padding: 5px 7px;
        border-radius: 6px;
    }

    .theme-toggle img {
        width: 18px !important;
    }

    .theme-toggle p {
        font-size: 9px;
        white-space: nowrap;
    }

    .highlightcs {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 18px;
        padding: 18px;
        text-align: left;
    }

    .highlcs {
        width: 100%;
        padding: 0;
    }

    .highlcs > p:first-child {
        font-size: 34px !important;
        line-height: 1.12;
    }

    .highlcs > p:nth-child(2) {
        font-size: 15px !important;
        line-height: 1.3;
    }

    .highlightcs > img {
        width: min(240px, 82vw) !important;
        margin-right: 0 !important;
    }

    .social_links img {
        width: 20px;
        margin-top: 12px;
        margin-bottom: 20px;
    }

    .whomics {
        margin: 18px 12px;
        padding: 15px;
    }

    .whomics > p:first-child,
    .whatiucs > p:first-child {
        font-size: 22px !important;
        margin-bottom: 10px !important;
    }

    .whomics p {
        font-size: 12px;
        line-height: 1.55;
    }

    .whatiucs {
        width: auto;
        margin: 18px 12px 28px;
        padding: 15px;
    }

    .toolsuse {
        flex-wrap: wrap;
        gap: 14px;
    }

    .toolsuse img {
        width: 26px;
        height: 26px;
    }

    .toolsuse img[style] {
        width: 20px !important;
    }
}

@media (max-width: 431px) {
    .headercs {
        position: absolute;
        display: block;
    }

    .navcs {
        display: none;
    }

    .theme-toggle {
        display: none;
    }

    .mobile-dropdown {
        display: block;
        width: 100%;
        background-color: rgb(255, 255, 255);
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        cursor: pointer;
    }

    body.dark-mode .mobile-dropdown {
        background-color: rgb(0, 0, 0);
    }

    .mobile-dropdown summary {
        display: flex;
        justify-content: flex-end;
        padding: 8px 12px;
        list-style: none;
    }

    .mobile-dropdown summary::-webkit-details-marker {
        display: none;
    }

    .mobile-dropdown summary img {
        width: 20px !important;
    }

    .mobile-dropdown-content {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding: 0 12px 12px;
    }

    .mobile-dropdown-content a {
        padding: 7px 10px;
        border-radius: 6px;
        font-size: 12px;
        text-align: center;
    }

    .mobile-dropdown-content a:hover,
    .mobile-dropdown-content a:first-child {
        background-color: rgb(205, 205, 205);
    }

    .mobile-theme-toggle {
        cursor: pointer;
        padding: 7px 10px;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background-color: rgb(242, 242, 242);
    }

    body.dark-mode .mobile-theme-toggle {
        background-color: rgb(30, 30, 30);
    }

    .mobile-theme-toggle img {
        width: 18px;
    }

    .mobile-theme-toggle p {
        font-size: 12px;
    }

    .highlightcs {
        margin-top: 70px;
    }

    .highlcs > p:first-child {
        font-size: 28px !important;
    }

    .highlcs > p:nth-child(2) {
        font-size: 12px !important;
    }

    .highlightcs > img {
        width: min(210px, 78vw) !important;
    }
}
