.hero-content-section {
    min-height: 275px;
}

.category-windows-section {
    min-height: 145px;
}

/* Category Windows Container */
.category-inner.category-windows {
    background-color: var(--purple1);
    border-radius: 10px;
    position: relative;
    height: 125px;
    width: 250px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Category Images Container */
.category-inner.category-windows .category-images {
    position: absolute;
    bottom: -7px;
    right: -7px;
    width: 81px;
    height: 100px;
    overflow: visible;
    transition: transform 0.3s ease;
}

/* Shadow Span */
.category-shadow {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    filter: blur(1px);
    position: absolute;
    width: 81px;
    height: 100px;
    pointer-events: none;
    transform: rotate(-10deg);
    transform-origin: 0% 100%;
    transition: transform 0.3s ease;
    left: 0px;
    top: 26px;
}

.category-inner.category-windows:hover .category-shadow {
    transform: rotate(-20deg) translate(-8px, 5px);
}

/* Category Image Styling */
.category-inner.category-windows .category-image {
    display: block;
    object-fit: cover;
    object-position: center;
    width: 81px;
    height: 100px;
    border-radius: 5px;
    transform: rotate(10deg);
    transform-origin: 0% 100%;
    transition: transform 0.3s ease;
}

.category-inner.category-windows:hover .category-image {
    transform: rotate(2deg) translate(-7px, -4px);
}

/* Category Content Styling */
.category-inner.category-windows .category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding-bottom: 8px;
    padding-left: 10px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

/* Category Titles */
.category-inner.category-windows .category-content h6 {
    font-family: var(--metro);
    /* text-shadow: 2px 2px 8px black; */
    margin: 0 0 5px 0;
}

.category-inner.category-windows .category-content span {
    font-family: var(--metro);
    font-size: 14px;
    /* text-shadow: 2px 2px 8px black; */
    color: white;
}

/* Category Link Styling */
.category-inner.category-windows .category-link {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
    z-index: 1;
}

.featured-content-section {
    position: relative;
    min-height: 625px;
    height: auto;
    overflow: hidden;
}

.featured-content-section .wrapper {
    position: relative;
    background-image: url('/images/backgrounds/galaxy.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 650px;
    width: 100%;
}

.featured-content-section .cloud-wrapper,
.featured-content-section .cloud-wrapper .col-12 {
    z-index: 1;
}

.islamic-content-section {
    min-height: 700px;
    padding: var(--five-percent-padding);
}

.quranic-content-section {
    min-height: 700px;
    padding: var(--five-percent-padding);
}

.arabic-content-section {
    min-height: 700px;
    padding: var(--five-percent-padding);
}

.all-content-section {
    min-height: 800px;
    padding: var(--five-percent-padding);
}

.background-holder {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
}

.play-later {
    color: white;
}

.play-later:hover {
    color: var(--purple2);
}

.hero-slide {
    height: 500px;
    position: relative;
}

.content-bg {
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(25,5,46,1) 0%, rgba(25,5,46,1) 10%, rgba(251,251,251,0) 55%);
    z-index: 2;
}

.content-container {
    position: relative;
    z-index: 3;
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.content-inner {
    max-width: 500px;
    padding: 20px;
    text-align: left;
}

.all-content-section {
    width: 100%;
    max-width: 100%;
}

.all-content-container {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

.all-content-container .col-12,
.all-content-container .col-sm-6,
.all-content-container .col-md-4,
.all-content-container .col-lg-3,
.all-content-container .col-xl-2 {
    display: flex;
    padding-left: 15px;
    padding-right: 15px;
}

.all-content-container .gcontent.card {
    width: 100%;
    transition: transform 0.2s ease-in-out;
}

.all-content-container .gcontent.card:hover {
    transform: scale(1.08);
}

.all-content-container .card-img-top {
    max-height: 250px;
    object-fit: cover;
    width: 100%;
}