::selection {
    background: var(--semester-accent-color);
}

::-moz-selection {
    background: var(--semester-accent-color);
}


/* --- Cursor Glow Effect & Animation Start --- */
.cursor,
.grow {
    background: radial-gradient(circle,
            rgba(var(--semester-accent-color-rgb), 0.2) 0%,
            rgba(var(--semester-accent-color-rgb), 0.3) 40%,
            rgba(var(--semester-accent-color-rgb), 0.1) 70%);
}

/* --- Cursor Glow Effect Color Change --- */


/* --- Hero Section Start --- */
.nord-hero-section {
    height: 70vh;
    width: 100%;
    margin-top: 0;
    padding-top: 16px;
    overflow: visible;
    position: relative;
}

.nord-hero-section::before {
    content: "";
    position: absolute;
    top: -200px;
    left: 0;
    width: 100%;
    height: 1500px;
    background: radial-gradient(ellipse at 50% 30%, rgba(var(--semester-accent-color-rgb), 0.8) 0%, rgba(var(--semester-accent-color-rgb), 0.3) 30%, rgba(0, 0, 0, 0) 70%);
    z-index: 0;
    pointer-events: none;
    mix-blend-mode: screen;
    opacity: 1;
}

.nord-hero-background {
    height: 100%;
    width: 100%;
    background-image: url('/static/img/slideshow-images/semester-series-banner.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    transition: transform 0.5s ease-in-out;
    position: relative;
    z-index: 2;
}

.nord-hero-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 2;
}

.nord-hero-content {
    width: 100%;
    padding: 0 5%;
    position: relative;
    z-index: 3;
}

.nord-hero-text {
    max-width: 600px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 4;
}

.nord-hero-text h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.nord-hero-text h2 span {
    font-size: 12px;
    vertical-align: super;
}

.nord-hero-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.nord-hero-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: rgba(var(--semester-accent-color-rgb), 0.4);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.nord-hero-btn:hover {
    background-color: rgba(var(--semester-accent-color-rgb), 1);
    transform: translateY(-2px);
}

@media screen and (max-width: 992px) {
    .nord-hero-section {
        height: 40vh;
        margin-top: -40px;
    }

    .nord-hero-text h2 {
        font-size: 2.8rem;
    }

    .nord-hero-text p {
        font-size: 1.1rem;
        max-width: 500px;
    }

    .nord-hero-btn {
        padding: 10px 25px;
    }
}

@media screen and (max-width: 768px) {
    .nord-hero-section {
        height: 50vh;
    }

    .nord-hero-background::before {
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.4) 100%);
    }

    .nord-hero-text {
        max-width: 450px;
    }

    .nord-hero-text h2 {
        font-size: 2.2rem;
    }

    .nord-hero-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .nord-hero-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .nord-hero-section {
        height: 30vh;
        margin-top: -20px;
    }

    .nord-hero-background {
        background-position: 70% center;
    }

    .nord-hero-background::before {
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.5) 100%);
    }

    .nord-hero-text {
        max-width: 100%;
    }

    .nord-hero-text h2 {
        font-size: 26px;
    }

    .nord-hero-text p {
        font-size: 10px;
        margin-bottom: 18px;
        line-height: 1.4;
    }

    .nord-hero-btn {
        padding: 8px 18px;
        font-size: 12px;
        border-radius: 12px;
    }
}

/* --- Hero Section End --- */


/* --- Key Features Section Start --- */
.key-features-section {
    width: 100%;
    position: relative;
    padding: 20px 0;
}

.feature-banner::before,
.feature-banner::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
            rgba(var(--semester-accent-color-rgb), 0) 0%,
            rgba(var(--semester-accent-color-rgb), 0.3) 50%,
            rgba(var(--semester-accent-color-rgb), 0) 100%);
}

.feature-banner {
    width: 100%;
    height: 60vh;
    overflow: hidden;
    position: relative;
}

.feature-banner:last-child {
    margin-bottom: 0;
}

.feature-background {
    position: relative;
    height: 100%;
    width: 100%;
    background-image: url('/static/img/prebuild-series/nord-series/nord-series-storage.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease-in-out;
}

.feature-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.feature-banner:nth-child(1) .feature-background::before {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.4) 100%);
}

.feature-banner:nth-child(2) .feature-background {
    background-position: 30% center;
    background-image: url('/static/img/prebuild-series/nord-series/nord-series-processors.webp');
}

.feature-banner:nth-child(3) .feature-background {
    background-position: 70% center;
    background-image: url('/static/img/prebuild-series/nord-series/nord-series-processor.webp');
}

.feature-banner:nth-child(4) .feature-background {
    background-position: center;
    background-image: url('/static/img/prebuild-series/nord-series/nord-series-storage.webp');
}

.feature-content {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 3;
    padding: 0 5%;
}

.feature-content.dual-text {
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
}

.feature-content.reverse {
    flex-direction: row-reverse;
}

.feature-content.center-text {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.feature-text {
    max-width: 500px;
    padding: 40px;
    border-radius: 8px;
    margin-left: 5%;
    z-index: 4;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.feature-text h2 {
    font-size: 2.6rem;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
}

.feature-text p {
    font-size: 14px;
    line-height: 1.6;
    color: #f1f1f1;
}

.feature-text span {
    font-size: 12px;
    vertical-align: super;
}

.feature-text.bottom-left {
    align-self: flex-start;
    position: absolute;
    bottom: 30px;
    left: 60px;
    margin: 0;
    max-width: 450px;
    padding: 0;
    background-color: transparent;
}

.feature-text.top-right {
    align-self: flex-end;
    position: absolute;
    top: 30px;
    right: 60px;
    margin: 0;
    max-width: 450px;
    padding: 0;
    background-color: transparent;
    text-align: right;
}

.feature-text.center {
    position: relative;
    max-width: 650px;
    text-align: center;
    margin: 0 auto;
    padding: 40px;
}

.feature-text.center h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.feature-text.center p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0 auto;
    width: 95%;
}

.feature-content.reverse .feature-text {
    margin-left: 0;
    margin-right: 5%;
}

.feature-text.bottom-left h2,
.feature-text.top-right h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.6);
}

.feature-text.bottom-left p,
.feature-text.top-right p {
    font-size: 14px;
    line-height: 1.5;
    color: #f1f1f1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.6);
}

.feature-banner:nth-child(2) .feature-background::before {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.3) 100%);
}

@media screen and (max-width: 1280px) {
    .feature-text.top-right,
    .feature-text.bottom-left {
        max-width: 400px;
    }

    .feature-text.top-right {
        right: 30px;
    }

    .feature-text.bottom-left {
        left: 30px;
    }

    .feature-text.bottom-left h2,
    .feature-text.top-right h2 {
        font-size: 24px;
    }

    .feature-text.bottom-left p,
    .feature-text.top-right p {
        font-size: 14px;
    }

    .feature-text.center h2 {
        font-size: 24px;
    }

    .feature-text.center p {
        width: 85%;
    }
}

@media screen and (max-width: 992px) {
    .feature-banner {
        height: 30vh;
    }

    .feature-text.bottom-left {
        bottom: 30px;
        left: 30px;
        max-width: 350px;
    }
    
    .feature-text.top-right {
        top: 30px;
        right: 30px;
        max-width: 325px;
    }
    
    .feature-text.bottom-left h2,
    .feature-text.top-right h2 {
        font-size: 18px;
    }
    
    .feature-text.bottom-left p,
    .feature-text.top-right p {
        font-size: 12px;
    }

    .feature-text.center {
        max-width: 80%;
        padding: 0 30px 30px 30px;
        margin-top: -40px;
    }
    
    .feature-text.center h2 {
        font-size: 18px;
        margin-top: 0;
    }
    
    .feature-text.center p {
        font-size: 12px;
        width: 75%;
    }
}

@media screen and (max-width: 768px) {
    .feature-banner {
        height: 30vh;
    }
    
    .feature-text.bottom-left {
        bottom: 20px;
        left: 20px;
        max-width: 300px;
    }
    
    .feature-text.top-right {
        top: 20px;
        right: 20px;
        max-width: 260px;
    }
    
    .feature-text.bottom-left h2,
    .feature-text.top-right h2 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .feature-text.bottom-left p,
    .feature-text.top-right p {
        font-size: 12px;
    }

    .feature-text.center {
        max-width: 90%;
        padding: 25px;
    }
    
    .feature-text.center h2 {
        font-size: 16px;
    }
    
    .feature-text.center p {
        font-size: 12px;
    }
}

@media screen and (max-width: 480px) {
    .key-features-section {
        padding: 40px 0 30px;
    }
    
    .feature-banner {
        height: 20vh;
    }
    
    .feature-text {
        max-width: 85%;
        margin: 0 auto;
        padding: 20px;
    }
    
    .feature-text.bottom-left {
        bottom: 20px;
        left: 15px;
        right: 15px;
        max-width: 150px;
    }
    
    .feature-text.top-right {
        top: 20px;
        right: 15px;
        max-width: 150px;
    }
    
    .feature-content.reverse .feature-text {
        margin: 0 auto;
    }
    
    .feature-text.bottom-left h2,
    .feature-text.top-right h2 {
        font-size: 10px;
        margin-bottom: 8px;
    }
    
    .feature-text.bottom-left p,
    .feature-text.top-right p {
        font-size: 6px;
        line-height: 1.4;
    }

    .feature-text.center {
        max-width: 95%;
        padding: 20px;
    }
    
    .feature-text.center h2 {
        font-size: 10px;
        margin-bottom: 10px;
    }
    
    .feature-text.center p {
        font-size: 6px;
        line-height: 1.5;
    }

    .feature-text.center span {
        font-size: 6px;
    }
}
/* --- Key Features Section End --- */


/* --- Section Navigation Start --- */
.section-nav-container {
    width: 100%;
    background-color: #161a24;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    z-index: 49;
    position: sticky;
    top: 90px;
    margin-top: 0;
}

.section-nav {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0;
    overflow-x: hidden;
}

.section-nav-wrapper {
    width: 100%;
}

.section-nav-links {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    justify-content: center;
    overflow-x: auto;
    white-space: nowrap;
    -ms-overflow-style: none;
    scrollbar-width: none;
    position: relative;
}

.nav-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background-color: var(--semester-accent-color);
    border-radius: 2px 2px 0 0;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), width 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow:
        0 0 5px rgba(var(--semester-accent-color-rgb), 0.7),
        0 0 10px rgba(var(--semester-accent-color-rgb), 0.5);
    will-change: transform, width;
    z-index: 5;
    opacity: 0;
    transform: translateX(0);
    width: 0;
}

.section-nav-links.initialized .nav-indicator {
    opacity: 1;
}

.nav-indicator.warping {
    transition:
        transform 0.6s cubic-bezier(0.2, 0.85, 0.25, 1.2),
        width 0.6s cubic-bezier(0.2, 0.85, 0.4, 1.4);
    animation: stretch-pulse 0.6s ease-in-out;
    box-shadow:
        0 0 8px rgba(var(--semester-accent-color-rgb), 0.8),
        0 0 15px rgba(var(--semester-accent-color-rgb), 0.6);
}

@keyframes stretch-pulse {
    0% {
        height: 3px;
    }

    50% {
        height: 5px;
        opacity: 0.9;
    }

    100% {
        height: 3px;
    }
}

.section-nav-links::-webkit-scrollbar {
    display: none;
}

.section-nav-links li {
    margin-right: 10px;
}

.section-nav-links li:last-child {
    margin-right: 0;
}

.section-nav-links a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 15px 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.section-nav-links a:hover {
    color: #fff;
}

.section-nav-links a.active {
    color: #fff;
}

.section-nav-container.sticky {
    position: fixed;
    top: 90px;
    left: 0;
    width: 100%;
    z-index: 800;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 1280px) {}

@media (max-width: 992px) {
    .section-nav-container {
        top: 60px !important;
    }
}

@media (max-width: 768px) {
    .section-nav-container {
        top: 80px !important;
    }

    .section-nav-links a {
        padding: 15px 12px;
        font-size: 13px;
    }

    .section-nav-container.sticky {
        top: 60px;
    }
}

@media (max-width: 480px) {
    .section-nav-container {
        top: 75px !important;
    }

    .section-nav-links {
        justify-content: flex-start;
        padding: 0 10px;
    }

    .section-nav-links a {
        padding: 12px 15px;
        font-size: 12px;
    }

    .nav-indicator {
        height: 2px;
        transition: transform 0.3s ease-out, width 0.3s ease-out;
    }

    .nav-indicator.warping {
        transition: transform 0.4s cubic-bezier(0.1, 0.7, 0.1, 1), width 0.4s cubic-bezier(0.1, 0.7, 0.1, 1);
        animation: mobile-stretch-pulse 0.4s ease-in-out;
    }

    @keyframes mobile-stretch-pulse {
        0% {
            height: 2px;
        }

        50% {
            height: 3px;
            opacity: 1;
        }

        100% {
            height: 2px;
        }
    }

    .section-nav-links a.active {
        color: #fff;
        background-color: rgba(var(--semester-accent-color-rgb), 0.1);
        border-radius: 4px;
    }
}

/* --- Section Navigation End --- */


/* --- Product Cards Section Start --- */
.product-cards {
    padding: 0;
    max-width: 1300px;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 30px auto;
    position: relative;
    z-index: 2;
}

.text-container {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-bottom: 20px;
}

.section-title {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    margin-top: 0;
    margin-bottom: 12px;
    
}

.product-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    margin: 0 auto;
}

.product-card {
    background: rgba(17, 23, 35, 0.6);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card-header {
    padding: 15px;
    background: rgba(var(--semester-accent-color-rgb), 0.75);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.product-basic-info {
    display: flex;
    justify-content: center;
    text-align: center;
}

.product-basic-info h3 {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    margin: 0;
}

.product-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-image {
    margin: 0 auto;
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.product-image img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.price-container {
    margin: 10px 0;
    color: white;
    font-size: 16px;
}

.price {
    font-weight: 600;
    font-size: 18px;
    color: rgb(8, 180, 66);
}

.badges-container {
    display: flex;
    align-items: center;
    margin: 10px auto;
    gap: 10px;
    width: 85%;
}

.built-ready-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background-color: rgba(var(--accent-color-rgb), 0.15);
    border: 1px solid rgba(var(--accent-color-rgb), 0.7);
    box-shadow: 0 0 8px rgba(var(--accent-color-rgb), 0.5);
    color: white;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 12px;
    flex: 1;
    justify-content: center;
}

.delivery-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background-color: rgba(8, 180, 66, 0.15);
    border: 1px solid rgba(8, 180, 66, 0.7);
    box-shadow: 0 0 8px rgba(8, 180, 66, 0.5);
    color: rgb(8, 180, 66);
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 12px;
    flex: 1;
    justify-content: center;
}

.delivery-badge ion-icon {
    font-size: 14px;
}

.specs-list {
    margin: 15px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.spec-item img {
    width: 18px;
    height: 18px;
    opacity: 0.7;
}

.spec-item span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

.product-card-actions {
    display: flex;
    width: 100%;
    gap: 10px;
    margin-top: auto;
}

.view-button,
.add-to-cart-button {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    border: none;
    cursor: pointer;
}

.view-button {
    background: rgba(var(--semester-accent-color-rgb), 0.1);
    border: 1px solid rgba(var(--semester-accent-color-rgb), 0.8);
    color: #fff;
}

.add-to-cart-button {
    background: rgba(var(--semester-accent-color-rgb), 1);
    color: #fff;
}

.view-button:hover,
.add-to-cart-button:hover {
    transform: translateY(-2px);
}

.view-button:hover {
    background: rgba(var(--semester-accent-color-rgb), 0.8);
}

.add-to-cart-button:hover {
    background-color: rgba(var(--semester-accent-color-rgb), 0.1);
}

@media screen and (max-width: 1280px) {
    .badges-container {
        width: 100% !important;
    }

    .product-card-header {
        padding: 15px 5px;
    }
}

@media screen and (max-width: 992px) {
    .product-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .badges-container {
        width: 95% !important;
    }
}

@media screen and (max-width: 768px) {
    .product-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .product-card-header h3 {
        font-size: 14px;
    }

    .product-image {
        height: 180px;
    }

    .badges-container {
        width: 100% !important;
    }

    .spec-item {
        padding: 6px 8px;
    }

    .spec-item span {
        font-size: 12px;
    }

    .view-button,
    .add-to-cart-button {
        padding: 10px;
    }
}

@media screen and (max-width: 480px) {
    .section-title {
        font-size: 24px;
    }

    .product-cards {
        width: 90%;
    }

    .product-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Product Cards Section End --- */


/* --- FAQ Section Start --- */
.about-faq-section::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
            rgba(var(--semester-accent-color-rgb), 0) 0%,
            rgba(var(--semester-accent-color-rgb), 0.3) 50%,
            rgba(var(--semester-accent-color-rgb), 0) 100%);
}

.about-faq-section {
    max-width: 1200px;
    padding: 20px 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.about-faq-section h1 {
    font-size: 32px;
    color: white;
    margin-top: 20px;
    margin-bottom: 8px;
    text-align: center;
}

.about-faq-section>p {
    color: #808080;
    text-align: center;
    margin-top: 4px;
    margin-bottom: 20px;
    max-width: 800px;
    font-size: 14px;
}

.about-faq-section>p a {
    color: var(--semester-accent-color);
    transition: 0.3s ease;
}

.about-faq-section>p a:hover {
    color: white;
}

.about-faq-container {
    width: 75%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about-faq-item {
    background: linear-gradient(45deg, rgba(var(--semester-accent-color-rgb), 0.65), rgba(var(--semester-accent-color-rgb), 0.75), rgba(0, 0, 0, 0.4));
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 12px;
    margin: 15px 0;
    padding: 20px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.about-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about-faq-question h3 {
    color: white;
    margin: 0;
    font-size: 18px;
    font-weight: 500;
}

.close-icon,
.plus-icon {
    color: white;
    font-size: 20px;
    font-weight: 300;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: #212529 !important;
    border-radius: 50%;
    transform: rotate(0deg);
}

.about-faq-item.expanded .close-icon {
    transform: rotate(45deg);
}

.about-faq-item:hover .plus-icon,
.about-faq-item:hover .close-icon {
    background: rgba(var(--semester-accent-color-rgb), 0.2) !important;
}

.about-faq-answer {
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.about-faq-answer p {
    color: rgba(255, 255, 255, 0.8);
}

.about-faq-answer span {
    color: #bbb9b9;
    font-weight: 700;
}

.about-faq-answer a {
    color: var(--semester-accent-color);
    text-decoration: none;
    transition: 0.3s ease;
    font-weight: 700;
}

.about-faq-answer a:hover {
    color: white;
}

.about-faq-item.expanded .about-faq-answer {
    height: auto;
    margin-top: 15px;
    opacity: 1;
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.65);
    padding: 20px;
    border-radius: 8px;
    color: #808080;
    line-height: 1.6;
}

.about-faq-item.expanded .about-faq-answer p {
    margin: 0;
}

.about-faq-item:hover {
    background: linear-gradient(45deg, rgba(var(--semester-accent-color-rgb), 0.65), rgb(var(--semester-accent-color-rgb)), rgba(0, 0, 0, 0.4));
    background-color: rgba(0, 0, 0, 0.8);
}

@media screen and (max-width: 992px) {
    .about-faq-container {
        width: 85%;
    }
}

@media screen and (max-width: 768px) {
    .about-faq-section {
        padding: auto 5%;
    }

    .about-faq-section h1 {
        font-size: 32px;
    }

    .about-faq-question h3 {
        font-size: 18px;
    }
}

@media screen and (max-width: 480px) {
    .about-faq-section {
        padding: 0 0 20px;
    }

    .about-faq-section h1 {
        font-size: 24px;
    }

    .about-faq-section>p {
        width: 90%;
        font-size: 12px;
    }

    .about-faq-item {
        padding: 14px 18px;
        width: 100%;
    }

    .about-faq-item h3 {
        font-size: 14px;
    }

    .about-faq-item p {
        font-size: 12px;
    }

    .about-faq-item.expanded .about-faq-answer {
        padding: 10px;
    }
}

/* --- FAQ Section End --- */


/* --- Featured Slideshow Start --- */
.featured-slideshow {
    position: relative;
    width: 100%;
    margin-top: 20px;
    overflow: hidden;
    z-index: 1;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    overflow: hidden;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-background {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.1) 100%);
    padding: 0 8%;
    z-index: 1;
}

.slide:nth-child(2) .slide-content {
    background: rgba(0, 0, 0, 0.15);
}

.slide:nth-child(3) .slide-content {
    background: transparent;
}

.slide-text {
    max-width: 600px;
    color: #fff;
    z-index: 3;
}

.slide-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    align-items: top;
    display: flex;
}

.slide-text h2 span {
    font-size: 16px;
}

.slide-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 0 0 14px rgba(0, 0, 0, 1);
}

.slide-btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.slide-btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.slide:nth-child(1) .slide-btn {
    background-color: rgba(0, 122, 255, 0.4);
    border: 1px solid rgba(0, 122, 255, 1);
}

.slide:nth-child(1) .slide-btn:hover {
    background-color: rgba(0, 122, 255, 1);
}

.slide:nth-child(2) .slide-btn {
    background-color: rgba(94, 0, 156, 0.4);
    border: 1px solid rgba(94, 0, 156, 1);
}

.slide:nth-child(2) .slide-btn:hover {
    background-color: rgba(94, 0, 156, 1);
}

.slideshow-navigation {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.nav-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.nav-btn:hover {
    opacity: 1;
}

.slideshow-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: white;
    transform: scale(1.2);
}

@media screen and (max-width: 1280px) {
    .slide-text h2 {
        font-size: 2.5rem;
    }

    .slide-text p {
        font-size: 1rem;
    }

    .slideshow-container {
        height: 350px;
    }
}

@media screen and (max-width: 992px) {
    .slide-text h2 {
        font-size: 2rem;
    }

    .slide:nth-child(1) .slide-text p {
        width: 70%;
    }

    .slide-text p {
        font-size: 0.9rem;
    }

    .slideshow-container {
        height: 400px;
    }
}

@media screen and (max-width: 768px) {
    .slide-text {
        max-width: 100%;
    }

    .slide-content {
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.4) 100%);
        padding: 0 5%;
    }

    .slide-text h2 {
        font-size: 1.8rem;
    }

    .slide-text p {
        font-size: 0.9rem;
        margin-bottom: 22px;
        width: 80%
    }

    .slide:nth-child(1) .slide-text p {
        width: 55%;
    }

    .slide:nth-child(2) .slide-text p {
        width: 60%;
    }

    .slide-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .slideshow-container {
        height: 350px;
    }
}

@media screen and (max-width: 480px) {
    .featured-slideshow {
        margin-top: 0;
    }

    .slide-text h2 {
        font-size: 18px;
        margin-top: 0;
        margin-bottom: 8px;
    }

    .slide-text p {
        font-size: 10px;
        margin-bottom: 8px;
        width: 80%;
    }

    .slide:nth-child(1) .slide-text p {
        width: 60%;
    }

    .slide:nth-child(2) .slide-text p {
        width: 60%;
    }

    .slide-btn {
        padding: 6px 12px;
        font-size: 8px;
        margin-bottom: 16px;
    }

    .slideshow-container {
        height: 225px;
    }

    .nav-btn {
        font-size: 14px;
    }

    .dot {
        width: 6px;
        height: 6px;
    }

    .slideshow-dots {
        gap: 8px;
    }
}

/* --- Featured Slideshow End --- */