@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@300..700&family=Manrope:wght@200..800&display=swap');

:root {
    --color-primary: #C778DD;
    --color-secondary: #ABB2BF;
    --color-dark: #1C1D1E;
}

/* Base Styling */

body.netctl-app {
    margin: 0;
    padding: 0;
    font-family: 'Fira Code', 'Manrope', sans-serif;
    color: hsl(219, 14%, 71%);
}
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

li {
    display: flex;
    align-items: center;
    gap: 8px;
}

button {
    border: 0;
    background: none;
    color: inherit;
    font-size: inherit;
    cursor: pointer;
    font-family: 'Fira Code';
}

h1, h2, h3, h4, h5, p {
    margin: 0;
}

/* Social Buttons */

.netctl-social {
    position: fixed;
    top: 0;
    right: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 0 6px;
    z-index: 6;
}
.netctl-social__line {
    width: 0;
    height: 191px;
    border-left: 1px solid #ABB2BF;
}
.netctl-social ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.netctl-social {
    display: none;
}

.netctl-container {
    width: 100vw;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.netctl-section {
    position: fixed;
    inset: 0;
    background: url(./assets/section-bg.png) no-repeat center center;
    background-size: cover;
    transition: transform 0.6s ease-in-out;
    overflow: auto;
}

.netctl-section.home {
    padding: 48px 16px;
}

.netctl-home__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

button.netctl-home__toggle-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-primary);
    border-radius: 8px;
    z-index: 30;
}

.netctl-menu {
    position: fixed;
    inset: 0;
    transform: translateX(-100%);
    background: var(--color-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 21;
    transition: transform 0.4s ease-in-out;
    font-size: 24px;
    gap: 0;
}
.netctl-menu.open {
    transform: translateX(0);
}
.netctl-menu>ul>li {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--color-secondary);
}

.netctl-dropdown {
    position: relative;
}

.netctl-dropdown-button {
    border: 0;
    background: none;
    color: inherit;
    font-size: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.netctl-dropdown-button svg {
    width: 1rem;
    height: 1rem;
}

.netctl-dropdown-menu {
    position: absolute;
    left: 0;
    min-width: 12rem;
    border-radius: 8px;
    border: 1px solid var(--color-secondary);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-top: 0.5rem;
    z-index: 10;
    background: var(--color-dark);
}

.netctl-home__header .netctl-social {
    display: flex;
    position: relative;
    top: 0;
    left: 0;
}

.netctl-social__line {
    height: 120px;
}

.netctl-hero {
    flex-direction: column;
    text-align: center;
    margin: 0;
    min-height: auto;
}

.netctl-hero__title {
    color: white;
    font-size: 24px;
    margin-top: 48px;
    margin-bottom: 32px;
}
.netctl-hero__description {
    font-size: 14px;
    margin-bottom: 24px;
}
.netctl-cyber-button {
    position: relative;
    width: 82px;
    height: 34px;
    color: white;
    font-size: 12px;
    margin-inline-end: 10px;
}
.netctl-cyber-button img {
    position: absolute;
    top: -4px;
    left: -10px;
    width: 100px;
}
.netctl-cyber-button span {
    position: relative;
    z-index: 1;
}
.netctl-cyber-button:hover,
.netctl-cyber-button:focus {
    scale: 1.05;
}
.netctl-hero__right {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.netctl-hero__right img{
    max-width: 336px;
}

.netctl-hero__right--text {
    width: fit-content;
    background: #282C33;
    border: 1px solid #ABB2BF;
    color: #ABB2BF;
    font-weight: 500;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-inline: auto;
}
.netctl-hero__right--rect {
    width: 14px;
    height: 14px;
    background: #C778DD;
}

.netctl-hero__right--text p{
    font-size: 12px;
}
.netctl-quote {
    min-width: 396px;
}
.netctl-quote__word {
    background: #1C1D1E;
    border: 1px solid #ABB2BF;
    font-size: 9px;
    padding: 12px 0;
    text-align: center;
    color: white;
    font-weight: 500;
    position: relative;
}

.netctl-quote__word svg{
    position: absolute;
    width: 10px;
    height: 8px;
}
.netctl-quote__word svg:first-child {
    top: 2px;
    left: 2px;
}
.netctl-quote__word svg:last-child {
    right: 2px;
    bottom: 2px;
}
.netctl-quote__author {
    border: 1px solid #ABB2BF;
    border-top: none;
    width: fit-content;
    margin-left: auto;
    color: white;
    font-size: 9px;
    padding: 10px;
    line-height: 14px;
}

.netctl-anchor-button {
    width: 112px;
    height: 44px;
    padding-inline: 0;
    color: white;
    font-weight: 500;
    border: 2px solid #C778DD;
    font-size: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.home .netctl-anchor-button.install {
    position: relative;
    margin-block: 32px;
    margin-inline: auto;
}
.home .netctl-anchor-button.install::after {
    content: "";
    width: calc(50vw);
    height: 1px;
    background: white;
    position: absolute;
    top: 50%;
    left: 100%;
    z-index: -1;
}

.netctl-anchor-button.left {
    top: 732px;
}

/* Install Section */
.netctl-section.install {
    background-image: url('./assets/building-bg.png'), url('./assets/section-bg.png');
    background-position: bottom, center;
    background-repeat: no-repeat, no-repeat;
    background-size: contain, cover;
}

.netctl-install__bg {
    position: fixed;
    width: 100lvw;
    bottom: 0;
}

.netctl-section.install {
    display: flex;
    flex-direction: column;
}

.netctl-install__logo,
.netctl-install__main,
.netctl-install__quote {
    flex: 1;
}

.netctl-install__logo {
    display: flex;
    align-items: center;
    justify-content: center;
}
.netctl-install__logo img{
    width: 157px;
}
.netctl-install__main {
    display: flex;
    align-items: center;
    justify-content: center;
}
.netctl-install__main--content {
    width: 396px;
    height: 176.65px;
    background: url(./assets/bg-polygon.svg) no-repeat;
    background-size: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    position: relative;
}
.netctl-install__label {
    display: inline-block;
    margin-left: 30px;
    padding: 10px 40px;
    border: 2px solid #ABB2BF;
    background: #1C1D1E;
    font-weight: 500;
    font-size: 12px;
}
.netctl-install__main-title {
    font-size: 18px;
    margin-bottom: 6px;
}
.netctl-install__main-desc {
    max-width: 321px;
    font-size: 9px;
    margin-bottom: 6px;
}
.netctl-install__main-tag {
    opacity: 0.7;
    font-size: 9px;
    margin-top: 10px;
}

.netctl-install__quote {
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 10%;
}
.netctl-install__line-3,
.netctl-install__line-4,
.netctl-install__line-5 {
    display: block;
    background: white;
}

.netctl-install__line-3 {
    width:1px;
    height:400px;
    position: absolute;
    left: 50%;
    top: 354px;
}
.netctl-install__line-4 {
    width: calc(100vw - 224px);
    height: 1px;
    position: absolute;
    top: 754px;
    left: 112px;
}
.netctl-install__line-5 {
    width: 1px;
    height: calc(100dvh - 732px - 44px - 44px);
    position: absolute;
    left: 8px;
    bottom: 44px;
}

.netctl-section.install .netctl-quote {
    margin-inline: 16px;
}

/* Why Section */

.netctl-why__main {
    margin: 60px;
    padding: 16px;
    border: 3px solid #C778DD;
    background: #1C1D1E;
    position: relative;
}

.netctl-why__main h1 {
    color: white;
    font-weight: 600;
    text-align: center;
    margin-bottom: 38px;
    font-size: 25px;
}

.netctl-why__main h2 {
    color: white;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 12px;
}

.netctl-why__main p {
    margin-bottom: 16px;
    font-size: 12px;
}

.netctl-why__main-deco {
    width: 12px;
    height: 12px;
    background: white;
    border-width: 2px;
    border: 2px solid var(--color-primary);
    position: absolute;
    box-sizing: border-box;
}
.netctl-why__main-deco.l{
    left: 0;
    transform: translateX(-8px);
}
.netctl-why__main-deco.r{
    right: 0;
    transform: translateX(8px);
}

.netctl-why__main-deco.t {
    top: 25%;
}

.netctl-why__main-deco.b {
    bottom: 25%;
}

.netctl-why__bg_1 {
    position: absolute;
    left: 32px;
    bottom: 8px;
    display: none;
}

.netctl-why__bg_2 {
    position: absolute;
    right: 128px;
    top: 198px;
}

.netctl-section.why .netctl-anchor-button.install {

}
.netctl-section.why .netctl-anchor-button.knowledge {
    margin-top: 32px;
    margin-left: auto;
    margin-right: 48px;
}

.netctl-anchor-button.right-bottom {
    bottom: 0;
    right: 60px;
    flex-direction: column;
}

/* Knowledge Section */
.netctl-section.knowledge {
    padding: 100px 50px;
}
.netctl-knowledge__title h1 {
    color: white;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 16px;
}

.netctl-knowledge__blogs {
    margin-top: 24px;
    padding-top: 16px;
    height: calc(100vh - 290px);
    border: 3px solid var(--color-primary);
    background: var(--color-dark);
    overflow: auto;         
    scrollbar-width: none;  
    -ms-overflow-style: none;
}

.netctl-knowledge__blogs::-webkit-scrollbar {
  display: none;
}
.netctl-blog-card {
    width: 275px;
    height: 327px;
    border: 1px solid #ABB2BF;
    overflow: hidden;
    margin-bottom: 30px;
    margin-inline: auto;
}
.netctl-blog-card__image {
    width: 100%;
    height: 167px;
}
.netctl-blog-card__label {
    height: 31px;
    padding-inline: 16px;
    display: flex;
    align-items: center;
    border-top: 1px solid var(--color-secondary);
    border-bottom: 1px solid var(--color-secondary);
}
.netctl-blog-card__content {
    padding: 16px;
}
.netctl-blog-card__title {
    color: white;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 13px;
}
.netctl-blog-card__subtitle {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 13px;
}
.netctl-blog-card__btn {
    width: 136px;
    height: 31px;
    border: 1px solid var(--color-secondary);
    font-size: 14px;
}

.netctl-blog-card:hover {
    border: 1px solid var(--color-primary);
}
.netctl-blog-card:hover .netctl-blog-card__label {
    border-top: 1px solid var(--color-primary);
    border-bottom: 1px solid var(--color-primary);
    color: var(--color-primary);
}
.netctl-blog-card:hover .netctl-blog-card__btn {
    border: 1px solid var(--color-primary);
}

.netctl-anchor-button.top-right {
    position: fixed;
    top: 33px;
    right: 68px;
    box-sizing: border-box;
    flex-direction: column;
}

.netctl-anchor-button.top-right::before {
    content: "";
    width: 2px;
    height: 34px;
    background: white;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateY(-2px);
}

.netctl-anchor-button.top-right svg {
    transform: rotate(180deg);
}

/* Tech Section */
.netctl-section.tech {
    padding: 80px 50px;
}
.netctl-section.tech h1 {
    color: white;
    font-size: 24px;
    font-weight: 500;
    display: inline-block;
    position: relative;
    padding-inline-end: 16px;
    margin-bottom: 32px;
}
.netctl-section.tech h1::after {
    content: "";
    width: 78px;
    height: 1px;
    background: var(--color-primary);
    position: absolute;
    top: 50%;
    left: 100%;
}

.netctl-tech__captions {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
}

.netctl-tech__caption {
    width: 212px;
    height: 48px;
    border: 1px solid var(--color-primary);
    background: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: white;
    position: relative;
}

.netctl-tech__caption::after,
.netctl-tech__card::after {
    content: '';
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 100%;
    width: 50px;
    height: 1px;
    background: white;
}

.netctl-tech__caption:first-child::before {
    content: "";
    width: 1px;
    height: 972px;
    background: white;
    position: absolute;
    top: 22px;
    left: calc(100% + 50px);
}

.netctl-tech__caption-line {
    width: 2px;
    height: 24px;
    background: white;
}

.netctl-tech__cards {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.netctl-tech__card {
    width: 212px;
    border: 2px solid var(--color-secondary);
    background: var(--color-dark);
    position: relative;
}

.netctl-tech__card-title {
    height: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-inline: 8px;
    border-bottom: 1px solid var(--color-secondary);
    color: var(--color-primary);
    font-size: 14px;
}

.netctl-tech__card-content {
    height: 210px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.netctl-tech__card-content h5 {
    margin: 0;
    color: white;
    font-size: 16px;
    font-weight: 500;
}

.netctl-tech__card-content p {
    font-size: 12px;
}

.netctl-tech__card-btn {
    width: 116px;
    height: 28px;
    font-size: 12px;
    border: 1px solid var(--color-primary);
}

.netctl-tech__captions {
    position: relative;
}

.netctl-section.tech .netctl-anchor-button {
    position: fixed;
    top: 0;
    left: 0;
    flex-direction: column;
}
.netctl-section.tech .netctl-anchor-button svg{
    transform: rotate(180deg);
}



@media (min-width: 1024px) {
    .netctl-section {
        position: fixed;
        inset: 0;
        overflow: hidden;
    }
    .netctl-section.home {
        display: flex;
        align-items: start;
        justify-content: center;
    }
    .netctl-home__main {
        width: 64rem;
    }
    
    /* Home Section */
    .netctl-home__header {
        padding: 2rem 0;
    }
    
    .netctl-menu {
        position: static;
        background: transparent;
        align-items: center;
        margin-left: auto;
        transform: translateX(0);
    }

    .netctl-menu>ul {
        gap: 2rem;
        display: flex;
        align-items: center;
    }

    .netctl-menu>ul>li {
        width: auto;
        height: auto;
        border-bottom: 0;
        font-size: 16px;
    }
    
    .netctl-menu li:hover, .netctl-menu li.active {
        color: white;
        font-weight: 500;
    }
    
    .netctl-home__header .netctl-social,
    .netctl-home__toggle-btn {
        display: none;
    }
    
    .netctl-hero {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        margin-top: 60px;
        text-align: left;
    }
    .netctl-hero__left,
    .netctl-hero__right {
        flex: 1;
    }
    .netctl-hero__left {
        padding-top: 32px;
    }

    .netctl-hero__title {
        font-size: 2rem;
        color: white;
        font-weight: 600;
        margin-top: 75px;
        margin-bottom: 32px;
    }
    
    .netctl-hero__title span {
        color: hsl(287, 60%, 67%);
    }
    
    .netctl-hero__description {
        color: white;
        margin-top: 0.5rem;
        margin-bottom: 24px;
        max-width: 463px;
        opacity: 0.8;
    }
    
    .netctl-cyber-button {
        width: 130px;
        height: 52px;
        font-size: 16px;
    }
    
    .netctl-cyber-button img {
        top: -6px;
        left: -12px;
        width: 154px;
    }

    .netctl-hero__right img {
        max-width: 469px;
    }
    
    .netctl-hero__right--text {
        width: 402px;
        padding: 8px;
        display: flex;
        align-items: center;
        gap: 10px;
        margin-inline: auto;
    }
    .netctl-hero__right--rect {
        width: 16px;
        height: 16px;
    }
    
    .netctl-quote {
        min-width: 1042px;
        position: fixed;
        z-index: 20;
        left: 50%;
        transform: translateX(-50%);
        bottom: 60px;
    }
    
    .netctl-quote__word {
        padding: 32px 0;
        margin: 0;
        font-size: 24px;
    }
    .netctl-quote__word svg{
        width: 26px;
        height: 21px;
    }
    .netctl-quote__word svg:first-child {
        top: 5px;
        left: 19px;
    }
    .netctl-quote__word svg:last-child {
        bottom: 5px;
        right: 19px;
    }
    .netctl-quote__author {
        font-size: 24px;
        line-height: 32px;
        padding: 16px;
    }
    
    .netctl-anchor-button {
        width: 206px;
        height: 91px;
        gap: 16px;
        font-size: 16px;
        position: fixed;
    }

    .home .netctl-anchor-button.install {
        position: fixed;
        margin: 0;
    }
    
    .netctl-anchor-button.left {
        top: 353px;
        left: 1px;
    }
    
    .netctl-anchor-button.left svg {
        transform: rotate(90deg);
    }
    .netctl-anchor-button.right {
        top: 353px;
        right: 1px;
    }
    .netctl-anchor-button.right svg {
        transform: rotate(-90deg);
    }
    .netctl-anchor-button.top-left {
        top: 0;
        left: 0;
        flex-direction: column;
    }
    .netctl-anchor-button.top-left svg {
        transform: rotate(180deg);
    }
    .netctl-anchor-button.left-bottom {
        bottom: 0;
    }
    .netctl-anchor-button.right-bottom {
        bottom: 0;
        right: -160px;
        transform: rotate(-90deg);
        transform-origin: bottom left;
        flex-direction: row-reverse;
    }

    .netctl-anchor-button.right-bottom span:last-child {
        transform: rotate(180deg);
    }
    
    .netctl-anchor-button.top-right {
        right: 200px;
    }
    
    .netctl-install__logo {
        position: absolute;
        top: 143px;
        left: 50%;
        transform: translateX(-50%)
    }
    .netctl-install__logo img{
        width: 245px;
    }

    .netctl-install__main {
        position: absolute;
        top: 277px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .netctl-install__main--content {
        width: 740px;
        height: 298px;
    }
    
    .netctl-install__label {
        margin-left: 55px;
        font-size: 16px;
    }
    
    .netctl-install__main-title {
        font-size: 32px;
        font-weight: 600;
        margin-bottom: 18px;
    }
    
    .netctl-install__main-desc {
        max-width: 535px;
        font-size: 14px;
        font-weight: 400;
        margin-bottom: 16px;
    }
    
    .netctl-install__main-tag {
        opacity: 0.7;
        font-size: 14px;
        margin-top: 21px;
    }
    
    .netctl-install__line-1 {
        width: calc(100vw - 414px);
        height: 0;
        border: 1px solid white;
        position: absolute;
        top: 397px;
        left: 206px;
    }
    
    .netctl-install__line-2 {
        width: 0;
        height: calc(100dvh - 353px - 91px - 91px);
        border: 1px solid white;
        position: absolute;
        left: 66px;
        bottom: 91px;
    }
    
    .netctl-install__line-3,
    .netctl-install__line-4,
    .netctl-install__line-5 {
        display: none;
    }
    
    /* Tech Section */
    
    .netctl-tech__main {
        position: absolute;
        top: 143px;
        left: 50%;
        transform: translateX(-50%);
    }
    .netctl-section.tech h1 {
        font-size: 32px;
    }
    .netctl-section.tech h1::after {
        width: 120px;
    }

    .netctl-tech__captions {
        flex-direction: row;
        margin-bottom: 60px;
    }
    
    .netctl-tech__caption {
        width: 288px;
        height: 78px;
        font-size: 18px;
    }
    .netctl-tech__caption::after {
        left: 50%;
        top: 100%;
        width: 1px;
        height: 60px;
    }
    .netctl-tech__card::after {
        display: none;
    }
    .netctl-tech__caption:first-child::before {
        display: none;
    }
    .netctl-tech__caption-line {
        width: 80px;
        height: 2px;
        background: white;
    }
    
    .netctl-tech__cards {
        flex-direction: row;
    }
    
    .netctl-tech__card {
        width: 288px;
    }
    
    .netctl-tech__card-title {
        height: 68px;
        font-size: 18px;
    }
    
    .netctl-tech__card-content {
        height: 295px;
        box-sizing: border-box;
        padding: 16px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .netctl-tech__card-content h5 {
        margin: 0;
        color: white;
        font-size: 20px;
        font-weight: 500;
        line-height: 26px;
    }
    
    .netctl-tech__card-content p {
        margin: 0;
        line-height: 21px;
    }
    
    .netctl-tech__card-btn {
        width: 157px;
        height: 37px;
        font-size: 16px;
        border: 1px solid var(--color-primary);
    }
    
    /* Why */
    .netctl-why__main {
        width: 770px;
        height: 600px;
        border: 3px solid #C778DD;
        background: #1C1D1E;
        padding: 30px;
        position: absolute;
        left: 50%;
        top: 6px;
        transform: translateX(-50%);
    }
    
    .netctl-why__main h1 {
        font-size: 35px;
    }
    
    .netctl-why__main h2 {
        color: white;
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 10px;
    }
    
    .netctl-why__main p {
        font-size: 14px;
    }
    
    .netctl-why__main-deco {
        width: 12px;
        height: 12px;
        background: white;
        border-width: 2px;
        border: 2px solid var(--color-primary);
        position: absolute;
        box-sizing: border-box;
    }
    .netctl-why__main-deco.l{
        left: 0;
        transform: translateX(-8px);
    }
    .netctl-why__main-deco.r{
        right: 0;
        transform: translateX(8px);
    }
    
    .netctl-why__main-deco.t {
        top: 130px;
    }
    .netctl-why__main-deco.b {
        bottom: 130px;
    }
    .netctl-why__line_0 {
        width: calc(50vw);
        height: 0;
        border: 1px solid white;
        position: absolute;
        top: 397px;
        left: 206px;
    }
    
    .netctl-why__bg_1 {
        position: absolute;
        left: 32px;
        bottom: 40px;
    }
    
    .netctl-why__bg_2 {
        position: absolute;
        right: 128px;
        top: 198px;
    }
    
    .netctl-why__bg_3 {
        border: 1px solid var(--color-secondary);
        width: 86px;
        height: 86px;
        position: absolute;
        left: 154px;
        bottom: 264px;
    }
    .netctl-why__bg_4 {
        border: 1px solid var(--color-secondary);
        width: 52px;
        height: 52px;
        position: absolute;
        left: 224px;
        bottom: 72px;
    }
    
    /* Knowledge Hub */

    .netctl-knowledge__main {
        position: absolute;
        top: 143px;
        left: 50%;
        transform: translateX(-50%);
    }
    .netctl-knowledge__title {
        color: white;
        align-items: center;
    }
    .netctl-knowledge__title h1 {
        font-size: 32px;
        font-weight: 500;
        margin-bottom: 14px;
    
    }
    .netctl-knowledge__blogs {
        margin-top: 24px;
        width: 1084px;
        height: calc(100vh - 290px);
        border: 3px solid var(--color-primary);
        background: var(--color-dark);
        padding: 30px;
        display: grid;
        box-sizing: border-box;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    
    .netctl-blog-card {
        width: 330px;
        height: 391px;
    }
    .netctl-blog-card__image {
        width: 100%;
        height: 200px;
    }
    .netctl-blog-card__label {
        height: 37px;
    }
    
    .netctl-blog-card__title {
        font-size: 24px;
        line-height: 31px;
        margin-bottom: 16px;
    }
    .netctl-blog-card__subtitle {
        line-height: 21px;
        margin-bottom: 16px;
    }
    .netctl-blog-card__btn {
        width: 157px;
        height: 37px;
        border: 1px solid var(--color-secondary);
    }
    
    .netctl-blog-card:hover {
        border: 1px solid var(--color-primary);
    }
    .netctl-blog-card:hover .netctl-blog-card__label {
        border-top: 1px solid var(--color-primary);
        border-bottom: 1px solid var(--color-primary);
        color: var(--color-primary);
    }
    .netctl-blog-card:hover .netctl-blog-card__btn {
        border: 1px solid var(--color-primary);
    }
}

    
/* Utility Classes */
.text-primary {
    color: var(--color-primary) !important;
}
.text-white {
    color: white;
}
.flex { display: flex; }
.items-center { align-items: center;}
.justify-between { justify-content: space-between;}
.section-transition {
    transition: all 1000ms ease-in;
}

.translate-x-0 {
    transform: translateX(0);
}
.translate-left {
    transform: translateX(-100%);
}
.translate-right {
    transform: translateX(100%);
}
.translate-up {
    transform: translateY(-100%);
}
.translate-down {
    transform: translateY(100%);
}
.rotate-90 {
    transform: rotate(90deg);
}
.flex-col {
    flex-direction: column;
}