/**
 * EDST Laravel Website Styles
 * Based on Eduma WordPress Theme design by ThimPress
 */

/* ==========================================================================
   CSS Variables (Design Tokens from Eduma Theme)
   ========================================================================== */
:root {
    /* Primary Colors */
    --thim-body-primary-color: #f03646;
    --thim-body-secondary-color: #4caf50;

    /* Font Colors */
    --thim-font-title-color: #333;
    --thim-font-body-color: #666;
    --thim-font-light-color: #999;

    /* Background Colors */
    --thim-body-bg-color: #fff;
    --thim-bg-main-menu-color: #fff;
    --thim-bg-color-toolbar: #f03646;

    /* Border Colors */
    --thim-border-color: #eee;

    /* Button Colors */
    --thim-button-text-color: #fff;
    --thim-button-hover-color: #333;

    /* Menu Colors */
    --thim-main-menu-text-color: #333;
    --thim-main-menu-text-hover-color: #f03646;
    --thim-sub-menu-bg-color: #fff;
    --thim-sub-menu-text-color: #666;
    --thim-sub-menu-text-color-hover: #f03646;

    /* Toolbar Colors */
    --thim-text-color-toolbar: #fff;
    --thim-link-color-toolbar: #fff;
    --thim-link-hover-color-toolbar: #333;

    /* Border Radius */
    --thim-border-radius-button: 0;
    --thim-border-radius-item: 0;

    /* Typography */
    --thim-font-body-font-size: 15px;
    --thim-font-body-line-height: 1.7;
    --thim-font-title-font-family: 'Roboto Condensed', sans-serif;
    --thim-font-button-font-size: 14px;
    --thim-font-button-line-height: 1.5;
    --thim-font-button-text-transform: uppercase;
    --thim-font-button-variant: 700;

    /* Spacing */
    --thim-padding-content-pdtop-desktop: 60px;
    --thim-padding-content-pdbottom-desktop: 90px;

    /* Top Heading */
    --thim-top-heading-padding-top: 80px;
    --thim-top-heading-padding-bottom: 80px;
    --thim-top-heading-title-font-size-desktop: 36px;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 100%;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: var(--thim-font-body-font-size);
    line-height: var(--thim-font-body-line-height);
    color: var(--thim-font-body-color);
    background-color: var(--thim-body-bg-color);
    overflow-x: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

#wrapper-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
}

.content-pusher {
    display: flex;
    flex-direction: column;
    flex: 1 0 auto;
    width: 100%;
}

#main-content {
    display: flex;
    flex-direction: column;
    flex: 1 0 auto;
    width: 100%;
}

.site-content {
    flex: 1 0 auto;
}

a {
    color: var(--thim-font-title-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--thim-body-primary-color);
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--thim-font-title-font-family);
    color: var(--thim-font-title-color);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.5em;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 16px;
}

h6 {
    font-size: 14px;
}

p {
    margin-bottom: 1em;
}

ul,
ol {
    list-style: none;
}

/* ==========================================================================
   Container & Grid
   ========================================================================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.row::after {
    content: "";
    display: table;
    clear: both;
}

[class*="col-"] {
    padding: 0 15px;
    width: 100%;
}

@media (min-width: 768px) {
    .col-md-3 {
        width: 25%;
    }

    .col-md-4 {
        width: 33.333%;
    }

    .col-md-6 {
        width: 50%;
    }

    .col-md-8 {
        width: 66.666%;
    }

    .col-md-12 {
        width: 100%;
    }
}

@media (min-width: 992px) {
    .col-lg-3 {
        width: 25%;
    }

    .col-lg-4 {
        width: 33.333%;
    }

    .col-lg-6 {
        width: 50%;
    }

    .col-lg-8 {
        width: 66.666%;
    }

    .col-lg-12 {
        width: 100%;
    }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn,
button,
input[type="submit"] {
    display: inline-block;
    padding: 12px 30px;
    font-size: var(--thim-font-button-font-size);
    font-weight: var(--thim-font-button-variant);
    line-height: var(--thim-font-button-line-height);
    text-transform: var(--thim-font-button-text-transform);
    text-align: center;
    color: var(--thim-button-text-color);
    background-color: var(--thim-body-primary-color);
    border: none;
    border-radius: var(--thim-border-radius-button);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover,
button:hover,
input[type="submit"]:hover {
    background-color: var(--thim-button-hover-color);
    color: var(--thim-button-text-color);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--thim-body-primary-color);
    color: var(--thim-body-primary-color);
}

.btn-outline:hover {
    background-color: var(--thim-body-primary-color);
    color: var(--thim-button-text-color);
}

/* ==========================================================================
   Toolbar
   ========================================================================== */
#toolbar {
    background-color: var(--thim-bg-color-toolbar);
    color: var(--thim-text-color-toolbar);
    padding: 10px 0;
    font-size: 13px;
}

#toolbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#toolbar a {
    color: var(--thim-link-color-toolbar);
}

#toolbar a:hover {
    color: var(--thim-link-hover-color-toolbar);
}

.thim-have-any-question {
    display: flex;
    gap: 20px;
}

.thim-have-any-question i {
    margin-right: 8px;
    color: var(--thim-body-primary-color);
}

.toolbar-right {
    display: flex;
    align-items: center;
}

.thim-language {
    position: relative;
    cursor: pointer;
}

.thim-language .lang-item.active {
    color: var(--thim-link-color-toolbar);
    padding-right: 15px;
}

.thim-language .lang-item.active::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 10px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.thim-language .list-lang {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #2b2b2b;
    padding: 10px 15px;
    min-width: 120px;
    display: none;
    z-index: 100;
}

.thim-language:hover .list-lang {
    display: block;
}

.thim-language .list-lang .lang-item {
    display: block;
    padding: 5px 0;
}

/* ==========================================================================
   Header
   ========================================================================== */
#masthead {
    background-color: #fafafa;
    width: 100%;
    z-index: 100;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

#masthead.affix {
    position: fixed;
    top: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.thim-nav-wrapper {
    padding: 0;
}

.navigation {
    padding: 15px 0;
}

/* Header Logo & Title */
.header-logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none !important;
}

.header-logo-container .logo {
    max-height: 60px;
    width: auto;
}

.header-logo-container .logo {
    max-height: 90px;
    width: auto;
}

.menu-main-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 40px;
}

.navbar-nav {
    flex-direction: row;
    gap: 25px;
}

.tm-table {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.width-logo {
    flex-shrink: 0;
}

.width-logo img.logo {
    max-height: 90px;
    width: auto;
}

.width-navigation {
    flex-grow: 1;
}

/* Main Navigation */
.navbar-nav {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    margin: 0;
    padding: 0;
}

.navbar-nav>li {
    position: relative;
    padding: 0 15px;
}

.navbar-nav>li>a {
    display: flex;
    align-items: center;
    padding: 20px 0;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
    text-transform: none;
    transition: all 0.3s ease;
    font-family: var(--thim-font-title-font-family);
    position: relative;
    border-bottom: none;
}

.navbar-nav>li>a span {
    position: relative;
    display: inline-block;
}

.navbar-nav>li>a span::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.navbar-nav>li:hover>a,
.navbar-nav>li.current-menu-item>a {
    color: #000;
}

.navbar-nav>li:hover>a span::after,
.navbar-nav>li.current-menu-item>a span::after {
    background-color: var(--thim-body-primary-color);
}

.navbar-nav:hover li.current-menu-item:not(:hover)>a span::after {
    background-color: transparent;
}

.header-search-icon {
    font-size: 20px;
    color: #000;
    cursor: pointer;
    padding: 10px;
    transition: color 0.3s ease;
}

.header-search-icon:hover {
    color: var(--thim-body-primary-color);
}

/* Submenu */
.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background-color: var(--thim-sub-menu-bg-color);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.navbar-nav>li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li {
    display: block;
}

.sub-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--thim-sub-menu-text-color);
    border-bottom: 1px solid var(--thim-border-color);
    font-size: 16px;
    font-weight: 700;
    font-family: var(--thim-font-title-font-family);
    transition: all 0.3s ease;
}

.sub-menu li:last-child a {
    border-bottom: none;
}

.sub-menu li a:hover {
    color: var(--thim-sub-menu-text-color-hover);
}

/* Menu indicator for items with children */
.navbar-nav>li.menu-item-has-children>a::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 5px;
    font-size: 12px;
}

/* Mobile Menu Toggle */
.menu-mobile-effect.navbar-toggle {
    display: none;
    width: 30px;
    height: 28px;
    cursor: pointer;
    position: relative;
}

.menu-mobile-effect .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--thim-main-menu-text-color);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.menu-mobile-effect .icon-bar:nth-child(1) {
    top: 6px;
}

.menu-mobile-effect .icon-bar:nth-child(2) {
    top: 13px;
}

.menu-mobile-effect .icon-bar:nth-child(3) {
    top: 20px;
}

/* ==========================================================================
   Mobile Menu
   ========================================================================== */
.mobile-menu-wrapper {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background-color: #fff;
    z-index: 1000;
    transition: left 0.3s ease;
    overflow-y: auto;
}

body.mobile-menu-open .mobile-menu-wrapper {
    left: 0;
}

body.mobile-menu-open .content-pusher::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.mobile-menu-inner {
    padding: 20px;
}

.icon-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--thim-border-color);
}

.icon-menu-back {
    font-weight: 600;
    cursor: pointer;
}

.mobile-menu-wrapper .close-icon .icon-bar:nth-child(1) {
    transform: rotate(-45deg);
    top: 13px;
}

.mobile-menu-wrapper .close-icon .icon-bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-wrapper .close-icon .icon-bar:nth-child(3) {
    transform: rotate(45deg);
    top: 13px;
}

.mobile-nav li {
    border-bottom: 1px solid var(--thim-border-color);
}

.mobile-nav li a {
    display: block;
    padding: 12px 0;
    font-weight: 700;
}

.mobile-nav .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    display: none;
    padding-left: 20px;
}

.mobile-nav .menu-item-has-children.open .sub-menu {
    display: block;
}

.icon-toggle {
    position: absolute;
    right: 0;
    top: 8px;
    padding: 5px;
    cursor: pointer;
}

/* ==========================================================================
   Page Banner / Top Site Main
   ========================================================================== */
.top_site_main {
    position: relative;
    background-color: rgba(45, 51, 57, 0.95);
    background-size: cover;
    background-position: center;
    color: #fff;
    min-height: 100px;
}

.top_site_main .overlay-top-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.top_site_main .page-title-wrapper {
    position: relative;
    z-index: 1;
    padding: var(--thim-top-heading-padding-top) 0 var(--thim-top-heading-padding-bottom);
}

.top_site_main .page-title {
    font-size: var(--thim-top-heading-title-font-size-desktop);
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0;
    padding-left: 25px;
    position: relative;
}

.top_site_main .page-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--thim-body-primary-color);
}

.top_site_main .banner-description {
    font-style: italic;
    margin-top: 15px;
    padding-left: 25px;
}

/* Breadcrumbs */
.breadcrumbs-wrapper {
    display: block;
    width: 100%;
    background-color: transparent;
    border-bottom: none;
    margin-bottom: 5px;
    padding: 0;
}

#breadcrumbs {
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    justify-content: flex-start !important;
    /* Ensure left align */
    text-align: left !important;
    flex-wrap: wrap;
    list-style: none;
    /* Remove default list style */
    width: 100%;
}

#breadcrumbs li {
    display: inline-block;
    font-size: 13px;
    color: #888;
}

#breadcrumbs li a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

#breadcrumbs li a:hover {
    color: var(--thim-body-primary-color);
}

#breadcrumbs li {
    font-size: 13px;
    color: #888;
}

#breadcrumbs li a::after {
    content: '/';
    font-family: inherit;
    font-weight: 400;
    font-size: 13px;
    margin: 0 10px;
    color: #ccc;
}

/* ==========================================================================
   Site Content
   ========================================================================== */
.site-content {
    padding: 0 0 var(--thim-padding-content-pdbottom-desktop);
    margin-top: 20px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
#colophon {
    background-color: #1a1a1a;
    color: #ffffff;
}

.footer {
    padding: 30px 0;
}

.footer .widget {
    margin-bottom: 20px;
}

.footer .widget-title {
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 15px;
    padding-bottom: 10px;
    position: relative;
}

.footer .widget-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--thim-body-primary-color);
}

.footer .widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .widget ul li {
    margin-bottom: 8px;
}

.footer .widget ul li a {
    color: #ffffff;
    font-weight: 700;
    transition: color 0.3s ease;
}

.footer .widget ul li a:hover {
    color: var(--thim-body-primary-color);
}

.footer-contact-info p {
    margin-bottom: 10px;
    font-weight: 700;
    color: #ffffff;
}

.footer-contact-info i {
    color: var(--thim-body-primary-color);
    margin-right: 10px;
    width: 20px;
}

.footer-menu li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-menu li a {
    color: #999;
}

.footer-menu li a:hover {
    color: var(--thim-body-primary-color);
    padding-left: 5px;
}

.recent-posts li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.recent-posts li a {
    color: #ccc;
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
}

.recent-posts li a:hover {
    color: var(--thim-body-primary-color);
}

.recent-posts .post-date {
    font-size: 12px;
    color: #777;
}

/* Copyright Area */
.copyright-area {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-area .row {
    align-items: center;
}

.text-copyright {
    margin: 0;
    font-size: 14px;
}

.text-right {
    text-align: right;
}

.social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    margin-left: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--thim-body-primary-color);
    color: #fff;
}

/* ==========================================================================
   Back to Top
   ========================================================================== */
#back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: #333;
    color: #fff;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

#back-to-top.active {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    background-color: var(--thim-body-primary-color);
}

/* ==========================================================================
   Cards & Content Boxes
   ========================================================================== */
.card {
    background-color: #fff;
    border-radius: var(--thim-border-radius-item);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 30px;
}

.card-img-top {
    width: 100%;
    height: auto;
}

.card-body {
    padding: 25px;
}

.card-title {
    font-size: 18px;
    margin-bottom: 15px;
}

/* ==========================================================================
   Hero Slider / Banner
   ========================================================================== */
.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 51, 57, 0.9), rgba(45, 51, 57, 0.7));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-title {
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* ==========================================================================
   Forms
   ========================================================================== */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--thim-font-title-color);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--thim-border-color);
    border-radius: var(--thim-border-radius-item);
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--thim-body-primary-color);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* ==========================================================================
   Utilities
   ========================================================================== */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 10px;
}

.mt-2 {
    margin-top: 20px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-4 {
    margin-top: 40px;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 10px;
}

.mb-2 {
    margin-bottom: 20px;
}

.mb-3 {
    margin-bottom: 30px;
}

.mb-4 {
    margin-bottom: 40px;
}

.pt-0 {
    padding-top: 0;
}

.pt-1 {
    padding-top: 10px;
}

.pt-2 {
    padding-top: 20px;
}

.pt-3 {
    padding-top: 30px;
}

.pt-4 {
    padding-top: 40px;
}

.pb-0 {
    padding-bottom: 0;
}

.pb-1 {
    padding-bottom: 10px;
}

.pb-2 {
    padding-bottom: 20px;
}

.pb-3 {
    padding-bottom: 30px;
}

.pb-4 {
    padding-bottom: 40px;
}

.d-none {
    display: none;
}

.d-block {
    display: block;
}

.d-flex {
    display: flex;
}


/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 991px) {
    .navbar-nav {
        display: none;
    }

    .menu-mobile-effect.navbar-toggle {
        display: block;
    }

    .hero-title {
        font-size: 36px;
    }

    .top_site_main .page-title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .container {
        padding: 0 15px;
    }

    .row {
        flex-direction: column;
    }

    [class*="col-"] {
        width: 100%;
    }

    .hero-section {
        min-height: 400px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .footer .widget-title {
        margin-top: 30px;
    }

    .copyright-area .row {
        text-align: center;
    }

    .text-right {
        text-align: center;
        margin-top: 15px;
    }

    .thim-have-any-question {
        flex-direction: column;
        gap: 5px;
    }

    #toolbar .container {
        flex-direction: column;
        gap: 10px;
    }
}

/* Ken Burns Effect for Slider */
@keyframes kenBurns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.carousel-item {
    transition: transform 1s ease, opacity 1s ease;
}

.carousel-item.active .hero-section {
    animation: kenBurns 10s ease-out forwards;
}

/* Ensure images don't overflow during zoom */
.hero-section {
    overflow: hidden;
    background-position: center center;
    background-size: cover;
}

/* Customize Carousel Indicators */
.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: transparent;
    border: 2px solid #fff;
    opacity: 0.7;
}

.carousel-indicators .active {
    background-color: var(--thim-body-primary-color);
    border-color: var(--thim-body-primary-color);
    opacity: 1;
}

/* Fix Bootstrap Carousel z-index issues with overlay */
.carousel-item {
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    z-index: 10;
}

.carousel-indicators {
    z-index: 10;
}

/* Footer Developer Styling */
.text-developer {
    font-size: 16px !important;
    opacity: 1 !important;
    color: #ffffff;
    font-weight: 500;
}

.text-developer a {
    color: var(--thim-body-primary-color) !important;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
}

.text-developer a:hover {
    text-decoration: underline;
    filter: brightness(1.2);
}