:root {
    --background-primary: #02496a;
    --background-secondary: #077499;
    --background-blue-800: #02496b;
    --background-gradient-start: #02496a;
    --background-gradient-end: #077499;

    --white-color: #ffffff;
    --black-color: #000000;
    --orange-color: #ba7d1e;
    --blue-color: #02496b;
    --blue-gradient-start: #18476b;
    --blue-gradient-end: #1e74ba;
    --border-gradient-start: #18476b;
    --border-gradient-end: #1e74ba;
    --blue-color-s: #1768b3;
    --background-primary-s: #082f49;
    --footer-background-start: #01354e;
    --footer-background-end: #02496b;
    --gray-color: #f2f2f7;
    --green-color: #0d9488;
    --green-color-s: #09625a;
}

@font-face {
    font-family: 'EXPO FONT';
    src: url('/website/assets/fonts/EXPO FONT/EXPOARABIC-MEDIUM.OTF') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'EXPO FONT';
    src: url('/website/assets/fonts/EXPO FONT/EXPOARABIC-BOLD.OTF') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'EXPO FONT';
    src: url('/website/assets/fonts/EXPO FONT/EXPOARABIC-MEDIUM.OTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Monsterrat';
    src: url('/website/assets/fonts/Monsterrat/Montserrat-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Monsterrat';
    src: url('/website/assets/fonts/Monsterrat/Montserrat-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Monsterrat';
    src: url('/website/assets/fonts/Monsterrat/Montserrat-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

[dir='ltr'] * {
    font-family: 'Monsterrat', sans-serif;
}

[dir='rtl'] * {
    font-family: 'EXPO FONT', sans-serif;
}

.header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 10000;
}

.header .nav-top {
    background: var(--blue-color-s);
    padding: 5px 0;
    color: var(--white-color);
    font-weight: 600;
    font-size: 15px;
}

.header .nav-bottom .navbar .nav-link,
.campaigns-header-nav .list-unstyled .nav-item .nav-link {
    font-weight: 600;
    font-size: 14px;
}

.header .nav-top a:hover,
.header .nav-bottom .navbar .nav-link:hover {
    color: var(--orange-color);
}

.header .nav-bottom .navbar .nav-link.active {
    background: linear-gradient(180deg, var(--background-gradient-start) 0%, var(--background-gradient-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.social-media .fa.fa-twitter::before {
    content: '𝕏';
    font-size: 1.2em;
}

.header .nav-bottom {
    width: 100%;
    background: var(--white-color);
}

.header .nav-bottom .navbar .header-logo .logo,
.header .nav-top .header-logo .logo {
    width: 90px;
}

.header .nav-bottom .user-info .user-icon {
    background: #e7e7e7;
    padding: 4px 7px 0 7px;
    border-radius: 5px;
    color: var(--white-color);
    font-size: 1.2rem;
}

.header .nav-bottom .user-info h5 {
    color: var(--blue-color);
    font-size: 14px;
    font-weight: 600;
}

.header .nav-bottom .nav-bottom-icons a {
    color: var(--blue-color-s);
}

.header .nav-bottom .border-icons::before {
    content: '';
    position: absolute;
    top: 25px;
    height: 30px;
    width: 2px;
    background: linear-gradient(180deg, var(--border-gradient-start) 0%, var(--border-gradient-end) 100%);
}

.header .navbar-nav .nav-top .navbar-toggler {
    font-size: 1.4rem;
}

.header .dropdown {
    position: relative;
    transition: all 0.3s ease;
}

/* .header .dropdown-menu {
    display: none;
    position: absolute !important;
    top: 100%;
    left: -150px;
    z-index: 1000;
    background-color: white;
    border: 0;
    width: 350px;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-align: center;
} */

.header .dropdown-header {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.header .dropdown img {
    width: 50px;
    height: 50px;
}

.header .btn-danger {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .dropdown-menu .total,
.header .dropdown-menu p {
    color: var(--blue-color-s);
}
.header .dropdown-menu .cart,
.header .dropdown-menu .price {
    color: var(--orange-color);
}

.header .dropdown-menu .gift-shop-btn {
    color: var(--white-color);
    background-color: var(--blue-color-s);
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
}

.header .dropdown-menu .gift-shop-btn:hover {
    background-color: var(--orange-color);
    color: var(--white-color);
}

@media (max-width: 1200px) and (min-width: 991.98px) {
    [dir='rtl'] .header .nav-bottom .navbar .nav-link {
        font-size: 13px;
    }

    [dir='rtl'] .header .nav-bottom .navbar .header-logo .logo {
        width: 75px;
    }

    [dir='ltr'] .header .nav-bottom .navbar .nav-link {
        font-size: 12px;
    }

    [dir='ltr'] .header .nav-bottom .navbar .header-logo .logo {
        width: 60px;
    }

    .header .nav-bottom .border-icons::before {
        top: 21px;
    }
}

@media (max-width: 991.98px) {
    .header .nav-top {
        padding: 0;
    }
    .header .navbar-nav .nav-top .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .header .navbar-nav .nav-top .container .row .col-lg-6 {
        display: none;
    }

    .header .navbar-nav .nav-bottom .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .header .nav-bottom .navbar .border-icons,
    .header .nav-bottom .navbar .header-logo {
        display: none;
    }

    /* .header .dropdown-menu {
        left: 0px;
    } */
}

/* @media (max-width: 480px) {
    .header .dropdown-menu {
        width: 300px;
    }
}

@media (max-width: 380px) {
    .header .dropdown-menu {
        left: -75px;
    }
} */
.footer {
    background: var(--background-primary-s);
    color: var(--white-color);
    font-size: 15px;
    padding: 2.5rem 0 25px 0;
}

.footer h5 {
    font-size: 16px;
}

.footer .list-unstyled a {
    width: max-content;
}

.footer a:hover {
    color: var(--orange-color);
}

.footer .border-top {
    border-color: rgb(255 255 255 / 40%) !important;
}

.footer .text-logo {
    font-size: 13px;
    line-height: 1.7;
}

.footer .social-media i {
    font-size: 15px;
    color: var(--background-primary-s);
}

.footer img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.footer .row .col-lg-3 {
    display: flex;
    flex-direction: column;
}

.footer .social-media .nav-link {
    width: 25px;
    height: 25px;
    background-color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .social-media .nav-link:hover {
    background-color: var(--orange-color);
}

.better-tomorrow-header {
    margin-top: 5.5rem;
    display: flex;
    align-items: center;
}

.better-tomorrow-header h1 {
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1.3;
    color: var(--blue-color-s);
}

.better-tomorrow-header img {
    width: 100%;
}

.better-tomorrow-header h2,
.better-tomorrow-header h5,
.better-future h2,
.better-future h5,
.target-group h3,
.target-group h5 {
    color: var(--blue-color-s);
    font-weight: bold;
}

.better-tomorrow-header p,
.target-group p,
.target-group li {
    color: var(--blue-color-s);
    font-weight: 500;
}

.target-group .border-img {
    width: 200px;
    margin-bottom: 1rem;
}

.better-tomorrow-header .donation-btn {
    color: var(--white-color);
    background-color: var(--blue-color-s);
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
}

.better-tomorrow-header .donation-btn:hover {
    background-color: var(--orange-color);
}

.better-tomorrow-header .card {
    background-color: var(--gray-color);
    color: var(--blue-color-s);
    font-weight: bold;
}

.better-tomorrow-header .card .progress {
    height: 20px;
    border-radius: 10px;
}
.better-tomorrow-header .card .progress-bar {
    background-color: var(--blue-color-s);
}

.better-future .row .col-md-3 .card img {
    width: 145px;
    height: 150px;
    object-fit: contain;
}

.target-group img {
    border-radius: 10px;
}

.target-group .contribution-experience .bottom-img {
    width: 100%;
    /* height: 400px; */
    object-fit: contain;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .better-tomorrow-header {
        margin-top: 4rem;
    }
    .better-tomorrow-header h1 {
        font-size: 2rem;
    }

    .better-tomorrow-header p {
        font-size: 1.1rem;
    }
}

@media (max-width: 992px) {
    .better-tomorrow-header h1 {
        font-size: 2rem;
    }

    .better-tomorrow-header p {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .better-tomorrow-header h1 {
        font-size: 1.75rem;
    }

    .better-tomorrow-header p {
        font-size: 0.9rem;
    }

    .target-group .contribution-experience {
        gap: 1rem;
    }

    .target-group .contribution-experience .bottom-img {
        height: auto;
    }
}

@media (max-width: 568px) {
    .better-tomorrow-header h1 {
        font-size: 1.3rem;
    }

    .better-tomorrow-header p {
        font-size: 0.85rem;
    }
}

.blogs-news-header {
    background-image: url('/website/assets/images/campaign-img.png');
    background-position: center;
    background-size: cover;
    margin-top: 5.5rem;
    color: var(--white-color);
    display: flex;
    align-items: center;
    height: 50vh;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.blogs-news-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to left, rgba(9, 41, 68, 0.7) 0%, rgba(9, 57, 97, 0.6) 100%);
    opacity: 0.5;
    z-index: 1;
}

.blogs-news-header .container {
    z-index: 2;
}

.blogs-news-header img {
    position: absolute;
    left: 50%;
    bottom: 50%;
    transform: translate(-50%, 50%);
    object-fit: contain;
    max-width: 350px;
    z-index: -1;
}

.blogs-news-header h1 {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.3;
}

.blogs-news-header p {
    font-size: 1.25rem;
    line-height: 1.6;
}

.blogs-news h2,
.blogs-news h5 {
    color: var(--blue-color-s);
    font-weight: bold;
}

.blogs-news p {
    color: var(--blue-color-s);
    font-weight: 500;
}

.blogs-news .subscribe-btn {
    color: var(--white-color);
    background-color: var(--blue-color-s);
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    width: 100%;
}

.blogs-news .subscribe-btn:hover {
    background-color: var(--orange-color);
}

.blogs-news .humanitarian {
    background-color: var(--blue-color-s);
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0px 4px 4px 0px #00000040;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 5px;
}

.blogs-news .humanitarian h5 {
    font-weight: 600;
}

.blogs-news span {
    font-size: 0.7rem;
}
.blogs-news .humanitarian h5,
.blogs-news .humanitarian span {
    color: var(--white-color);
}

.blogs-news .read-more {
    color: var(--blue-color-s);
    transition: color 0.3s ease;
    font-weight: 500;
}

.blogs-news .read-more:hover {
    color: var(--orange-color);
}

.blogs-news .search-bar {
    display: flex;
    border-radius: 5px;
    overflow: hidden;
}
.blogs-news .search-icon {
    background-color: var(--blue-color-s);
    color: white;
    padding: 10px;
    display: flex;
    align-items: center;
}
.blogs-news .search-input {
    border-radius: 0;
}
.blogs-news .search-input:focus {
    border-color: var(--blue-color-s);
}
.blogs-news .line {
    width: 100%;
    height: 2px;
    background-color: var(--blue-color-s);
    margin-bottom: 10px;
}

.blogs-news .posts .col-12 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blogs-news .posts img {
    border-radius: 10px;
    max-width: 100px;
}

.blogs-news .posts .col-12 h5 {
    font-size: 0.9rem;
}

.blogs-news .follow-us {
    padding: 10px;
    font-weight: 600;
    background-color: var(--blue-color-s);
    color: var(--white-color);
    text-align: center;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 4px 4px 0px;
}

.blogs-news .social-media .nav-link {
    background-color: var(--gray-color);
    color: var(--blue-color-s);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 4px 4px 0px;
}

.blogs-news .social-media .nav-link:hover {
    color: var(--orange-color);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .blogs-news-header {
        margin-top: 4.5rem;
    }
    .blogs-news-header h1 {
        font-size: 2.5rem;
    }

    .blogs-news-header p {
        font-size: 1.1rem;
    }
}

@media (max-width: 1024px) {
    .blogs-news-header {
        margin-top: 4rem;
        padding: 5rem 2rem;
        height: auto;
    }

    .blogs-news-header img {
        max-width: 300px;
    }
}

@media (max-width: 992px) {
    .blogs-news-header {
        margin-top: 4rem;
        padding: 5rem 2rem;
        height: auto;
    }

    .blogs-news-header h1 {
        font-size: 2rem;
    }

    .blogs-news-header p {
        font-size: 1rem;
    }

    .blogs-news-header img {
        max-width: 300px;
    }
}

@media (max-width: 767px) {
    .blogs-news-header {
        padding: 4rem 0rem;
    }

    .blogs-news-header h1 {
        font-size: 1.75rem;
    }

    .blogs-news-header p {
        font-size: 0.9rem;
    }

    .blogs-news-header img {
        max-width: 250px;
    }

    .blogs-news .posts .col-12 {
        gap: 1.5rem;
    }

    .blogs-news .posts img {
        max-width: 150px;
    }

    .blogs-news .subscribe-btn {
        width: auto;
    }
}

@media (max-width: 568px) {
    .blogs-news-header {
        padding: 4rem 0rem;
    }

    .blogs-news-header h1 {
        font-size: 1.5rem;
    }

    .blogs-news-header p {
        font-size: 0.85rem;
    }

    .blogs-news-header img {
        max-width: 200px;
    }

    .blogs-news .humanitarian h5 {
        font-size: 0.9rem;
    }

    .blogs-news span {
        font-size: 0.65rem;
    }
}

@media (max-width: 360px) {
    .blogs-news .posts .col-12 {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
}

.campaigns-header-nav {
    background-color: var(--gray-color);
    padding: 10px 0;
}

.campaigns-header-nav .list-unstyled .nav-item .nav-link:hover {
    color: var(--orange-color);
}
.campaigns-header-nav .list-unstyled .nav-item .nav-link.active {
    color: var(--blue-color-s);
}

.campaigns-header {
    margin-top: 7.5rem;
}

.projects-header-nav {
    background-color: var(--gray-color);
    padding: 10px 0;
}

.projects-header-nav .list-unstyled .nav-item .nav-link:hover {
    color: var(--orange-color);
}
.projects-header-nav .list-unstyled .nav-item .nav-link.active {
    color: var(--blue-color-s);
}

.projects-header {
    margin-top: 5.5rem;
    background-image: url('/website/assets/images/campaign-img.png');
    background-position: center;
    background-size: cover;
    color: var(--white-color);
    display: flex;
    align-items: center;
    height: 50vh;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.projects-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to left, rgba(9, 41, 68, 0.7) 0%, rgba(9, 57, 97, 0.6) 100%);
    opacity: 0.5;
    z-index: 1;
}

.projects-header .container {
    z-index: 2;
}

.projects-header img {
    position: absolute;
    left: 50%;
    bottom: 50%;
    transform: translate(-50%, 50%);
    object-fit: contain;
    max-width: 350px;
    z-index: -1;
}

.projects-header h1 {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.3;
}

.projects-header p {
    font-size: 1.25rem;
    line-height: 1.6;
}

.campaigns-header h1 {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.3;
}

.campaigns-header p {
    font-size: 1.25rem;
    line-height: 1.6;
}

.campaigns h2,
.campaigns h5 {
    color: var(--blue-color-s);
    font-weight: bold;
}

.campaigns p {
    color: var(--blue-color-s);
    font-weight: 500;
}

.campaigns .top-cards .card {
    position: relative;
}

.campaigns .top-cards .card .category {
    position: absolute;
    color: var(--white-color);
    padding: 5px;
    background-color: #f2004d;
    border-radius: 10px;
    right: 10px;
    top: 10px;
}

.campaigns .border-img {
    width: 200px;
    margin-bottom: 1rem;
}

.campaigns .donation-btn {
    color: var(--white-color);
    background-color: var(--blue-color-s);
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
}

.campaigns .btn-outline-primary {
    --bs-btn-color: var(--blue-color-s);
    --bs-btn-border-color: var(--blue-color-s);
    --bs-btn-hover-bg: var(--blue-color-s);
    --bs-btn-hover-border-color: var(--blue-color-s);
    --bs-btn-active-bg: var(--blue-color-s);
    --bs-btn-active-border-color: var(--blue-color-s);
    --bs-btn-disabled-color: var(--blue-color-s);
    --bs-btn-disabled-border-color: var(--blue-color-s);
}

.campaigns .donation-btn:hover {
    background-color: var(--orange-color);
}

.campaigns .card {
    border: 0;
    overflow: hidden;
    border-radius: 15px;
    height: 100%;
}

.campaigns .card .card-body .card-title {
    color: var(--blue-color-s);
    font-weight: 500;
}

.campaigns .card .card-body .card-text {
    color: var(--black-color);
    margin-bottom: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .projects-header {
        margin-top: 4.5rem;
    }

    .campaigns-header h1 {
        font-size: 2.5rem;
    }

    .campaigns-header p {
        font-size: 1.1rem;
    }
}

@media (max-width: 1024px) {
    .projects-header {
        margin-top: 4rem;
        padding: 5rem 2rem;
        height: auto;
    }

    .projects-header img {
        max-width: 300px;
    }
}

@media (max-width: 992px) {
    .projects-header {
        margin-top: 4rem;
    }

    .projects-header {
        padding: 5rem 2rem;
        height: auto;
    }

    .campaigns-header {
        margin-top: 6rem;
    }

    .campaigns-header h1 {
        font-size: 2rem;
    }

    .campaigns-header p {
        font-size: 1rem;
    }

    .campaigns-header img {
        max-width: 300px;
    }
}

@media (max-width: 767px) {
    .projects-header {
        padding: 4rem 0rem;
    }

    .campaigns-header h1 {
        font-size: 1.75rem;
    }

    .campaigns-header p {
        font-size: 0.9rem;
    }

    .projects-header img {
        max-width: 250px;
    }
}

@media (max-width: 568px) {
    .projects-header {
        padding: 4rem 0rem;
    }

    .campaigns-header h1 {
        font-size: 1.5rem;
    }

    .campaigns-header p {
        font-size: 0.85rem;
    }

    .projects-header img {
        max-width: 200px;
    }
}

.cart-header {
    background-image: url(/assets/images/gift.jpeg);
    background-position: center;
    background-size: cover;
    margin-top: 5.5rem;
    color: var(--white-color);
    display: flex;
    align-items: center;
    height: 50vh;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.cart-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to left, rgba(9, 41, 68, 0.7) 0%, rgba(9, 57, 97, 0.6) 100%);
    opacity: 0.5;
    z-index: 1;
}

.cart-header .container {
    z-index: 2;
}

.cart-header img {
    position: absolute;
    left: 50%;
    bottom: 50%;
    transform: translate(-50%, 50%);
    object-fit: contain;
    max-width: 350px;
    z-index: -1;
}

.cart-header h1 {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.3;
    color: var(--white-color);
}

.cart-header p {
    font-size: 1.25rem;
    line-height: 1.6;
}

.table-container h2,
.table-container h5 {
    color: var(--blue-color-s);
    font-weight: bold;
}

.table-container p {
    color: var(--blue-color-s);
    font-weight: 500;
}

.table-container img {
    width: 100%;
    max-height: 100px;
    object-fit: contain;
    border-radius: 10px;
}

.table-container table thead tr th {
    background-color: var(--orange-color);
    color: var(--white-color);
}

.table-container table tbody tr td {
    color: var(--blue-color-s);
}

.table-container .card .card-header {
    background-color: var(--white-color);
}

.table-container .card {
    background-color: var(--gray-color);
}

.table-container .card .card-header {
    border-bottom: 2px solid var(--blue-color-s);
}

.table-container .gift-shop-btn {
    color: var(--white-color);
    background-color: var(--blue-color-s);
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
}

.table-container .gift-shop-btn:hover {
    background-color: var(--orange-color);
}

.table-container .card .card-body .total-price {
    color: var(--blue-color-s);
    font-weight: 500;
}

.table-container .card .card-body .price {
    color: var(--orange-color);
    font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .cart-header {
        margin-top: 4rem;
    }
    .cart-header h1 {
        font-size: 2.5rem;
    }

    .cart-header p {
        font-size: 1.1rem;
    }
}

@media (max-width: 1024px) {
    .cart-header {
        margin-top: 4rem;
        padding: 5rem 2rem;
        height: auto;
    }

    .cart-header img {
        max-width: 300px;
    }
}

@media (max-width: 992px) {
    .cart-header h1 {
        font-size: 2rem;
    }

    .cart-header p {
        font-size: 1rem;
    }

    .cart-header img {
        max-width: 350px;
    }
}

@media (max-width: 767px) {
    .cart-header {
        padding: 4rem 0rem;
    }

    .cart-header h1 {
        font-size: 1.75rem;
    }

    .cart-header p {
        font-size: 0.9rem;
    }

    .cart-header img {
        max-width: 250px;
    }

    .table-container .cart-table {
        overflow-x: auto;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    }
    .table-container .cart-table tbody td {
        min-width: 150px;
    }
}

@media (max-width: 568px) {
    .cart-header {
        padding: 4rem 0rem;
    }

    .cart-header h1 {
        font-size: 1.5rem;
    }

    .cart-header p {
        font-size: 0.85rem;
    }

    .cart-header img {
        max-width: 200px;
    }
}

.complaints-suggestions-header {
    background-image: url('/website/assets/images/contact-us-img.png');
    background-position: center;
    background-size: cover;
    margin-top: 5.5rem;
    color: var(--white-color);
    display: flex;
    align-items: center;
    height: 50vh;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.complaints-suggestions-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to left, rgba(9, 41, 68, 0.7) 0%, rgba(9, 57, 97, 0.6) 100%);
    opacity: 0.5;
    z-index: 1;
}

.complaints-suggestions-header .container {
    z-index: 2;
}

.complaints-suggestions-header img {
    position: absolute;
    left: 50%;
    bottom: 50%;
    transform: translate(-50%, 50%);
    object-fit: contain;
    max-width: 350px;
    z-index: -1;
}

.complaints-suggestions-header h1 {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.3;
}

.complaints-suggestions-header p {
    font-size: 1.25rem;
    line-height: 1.6;
}

.complaints-suggestions .nav-tabs {
    border-bottom: 2px solid var(--blue-color-s);
}

.complaints-suggestions .border-img {
    width: 200px;
    margin-bottom: 1rem;
}

.complaints-suggestions h2,
.complaints-suggestions h5 {
    color: var(--blue-color-s);
    font-weight: bold;
}
.complaints-suggestions p,
.complaints-suggestions .tab-content .card .form-label {
    color: var(--blue-color-s);
    font-weight: 500;
}

.complaints-suggestions .nav-tabs .nav-link,
.complaints-suggestions .whatsapp-contact span,
.complaints-suggestions .whatsapp-contact i {
    color: var(--blue-color-s);
}
.complaints-suggestions .nav-tabs .nav-link.active {
    background-color: var(--blue-color-s);
    border-color: var(--blue-color-s);
    color: var(--white-color);
}

.complaints-suggestions .tab-content .card .card-header {
    border-bottom: 5px solid var(--blue-color-s);
    padding: 1rem;
}

.complaints-suggestions .tab-content .card .border-card {
    margin-top: 0.5rem;
    height: 15px;
    background-color: var(--blue-color-s);
    width: 100%;
}

.complaints-suggestions .form-control {
    background-color: #f5f5f5;
}

.complaints-suggestions .form-control::placeholder {
    color: #1c75bc;
    opacity: 0.6;
}

.complaints-suggestions .form-control:focus {
    box-shadow: none;
    border-color: var(--blue-color-s);
}

.complaints-suggestions .send-btn {
    color: var(--white-color);
    background-color: var(--blue-color-s);
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
}

.complaints-suggestions .send-btn:hover {
    background-color: var(--orange-color);
}

.complaints-suggestions .tab-content form {
    width: 100%;
}

.faq .accordion-item {
    border: 0;
    margin-bottom: 1rem;
}

.faq .accordion-button {
    color: var(--blue-color-s);
    background-color: var(--gray-color);
    font-weight: 500;
    border-radius: 0 !important;
}

.faq .accordion-body {
    text-align: right;
    background-color: var(--gray-color);
    color: var(--blue-color-s);
}

.faq .accordion-button:focus {
    box-shadow: none;
    border: 0;
}

.faq .accordion-button:not(.collapsed) {
    background-color: var(--blue-color-s);
    color: var(--white-color);
}

.faq .accordion-button::after {
    margin-right: auto;
    margin-left: 0;
    background-color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    background-position: center;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .complaints-suggestions-header {
        margin-top: 4.5rem;
    }
    .complaints-suggestions-header h1 {
        font-size: 2.5rem;
    }

    .complaints-suggestions-header p {
        font-size: 1.1rem;
    }
}

@media (max-width: 1024px) {
    .complaints-suggestions-header {
        margin-top: 4rem;
        padding: 5rem 2rem;
        height: auto;
    }

    .complaints-suggestions-header img {
        max-width: 300px;
    }
}

@media (max-width: 992px) {
    .complaints-suggestions-header h1 {
        font-size: 2rem;
    }

    .complaints-suggestions-header p {
        font-size: 1rem;
    }

    .complaints-suggestions-header img {
        max-width: 300px;
    }

    .contact-information .row .col-lg-4 {
        margin-bottom: 3.5rem;
    }
}

@media (max-width: 767px) {
    .complaints-suggestions-header {
        padding: 4rem 0rem;
    }

    .complaints-suggestions-header h1 {
        font-size: 1.75rem;
    }

    .complaints-suggestions-header p {
        font-size: 0.9rem;
    }

    .complaints-suggestions-header img {
        max-width: 250px;
    }
}

@media (max-width: 568px) {
    .complaints-suggestions-header {
        padding: 4rem 0rem;
    }

    .complaints-suggestions-header h1 {
        font-size: 1.5rem;
    }

    .complaints-suggestions-header p {
        font-size: 0.85rem;
    }

    .complaints-suggestions-header img {
        max-width: 200px;
    }
}

.contact-us-header {
    background-image: url('/website/assets/images/contact-us-img.png');
    background-position: center;
    background-size: cover;
    margin-top: 5.5rem;
    color: var(--white-color);
    display: flex;
    align-items: center;
    height: 50vh;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.contact-us-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to left, rgba(9, 41, 68, 0.7) 0%, rgba(9, 57, 97, 0.6) 100%);
    opacity: 0.5;
    z-index: 1;
}

.contact-us-header .container {
    z-index: 2;
}

.contact-us-header img {
    position: absolute;
    left: 50%;
    bottom: 50%;
    transform: translate(-50%, 50%);
    object-fit: contain;
    max-width: 350px;
    z-index: -1;
}

.contact-us-header h1 {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.3;
}

.contact-us-header p {
    font-size: 1.25rem;
    line-height: 1.6;
}

.right-card,
.left-card {
    color: var(--blue-color-s);
    background: linear-gradient(180deg, #ebebec 0%, #d9e4e9 100%);
}

.main-card {
    color: var(--white-color);
    background-color: var(--blue-color-s);
    transform: scale(1.02);
}

.contact-information .row .card {
    padding: 30px;
    position: relative;
    border: 0;
}

.contact-information .row .card h5 {
    font-weight: bold;
}

.contact-information .row .card .circle-header {
    padding: 10px;
    border: 1px solid var(--blue-color-s);
    background-color: var(--white-color);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    bottom: 100%;
    transform: translate(-50%, 50%);
}

.contact-information .row .card .circle-header img {
    max-width: 50px;
}

.contact-us {
    background-image: url(/website/assets/images/image.1.png);
    background-position: center;
    background-size: cover;
    padding: 50px 0;
}

.contact-us .nav-tabs {
    border-bottom: 2px solid var(--blue-color-s);
}

.contact-us .border-img,
.contact-information .border-img,
.faq .border-img {
    width: 200px;
    margin-bottom: 1rem;
}

.contact-us h2,
.contact-us h5,
.contact-information h2,
.faq h2 {
    color: var(--blue-color-s);
    font-weight: bold;
}
.contact-us p {
    color: var(--blue-color-s);
    font-weight: 500;
}

.contact-us .nav-tabs .nav-link,
.contact-us .whatsapp-contact span,
.contact-us .whatsapp-contact i {
    color: var(--blue-color-s);
}
.contact-us .nav-tabs .nav-link.active {
    background-color: var(--blue-color-s);
    border-color: var(--blue-color-s);
    color: var(--white-color);
}

.contact-us .form-control:focus {
    box-shadow: none;
    border-color: var(--blue-color-s);
}

.contact-us .send-btn {
    color: var(--white-color);
    background-color: var(--blue-color-s);
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
}

.contact-us .send-btn:hover {
    background-color: var(--orange-color);
}

.contact-us .tab-content > .active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-us .tab-content form {
    width: 100%;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .contact-us-header {
        margin-top: 4.5rem;
    }
    .contact-us-header h1 {
        font-size: 2.5rem;
    }

    .contact-us-header p {
        font-size: 1.1rem;
    }
}

@media (max-width: 1024px) {
    .contact-us-header {
        margin-top: 4rem;
        padding: 5rem 2rem;
        height: auto;
    }

    .contact-us-header img {
        max-width: 300px;
    }
}

@media (max-width: 992px) {
    .contact-us-header {
        margin-top: 4rem;
        padding: 5rem 2rem;
        height: auto;
    }

    .contact-us-header h1 {
        font-size: 2rem;
    }

    .contact-us-header p {
        font-size: 1rem;
    }

    .contact-us-header img {
        max-width: 300px;
    }

    .contact-information .row .col-lg-4 {
        margin-bottom: 3.5rem;
    }
}

@media (max-width: 767px) {
    .contact-us-header {
        padding: 4rem 0rem;
    }

    .contact-us-header h1 {
        font-size: 1.75rem;
    }

    .contact-us-header p {
        font-size: 0.9rem;
    }

    .contact-us-header img {
        max-width: 250px;
    }
}

@media (max-width: 568px) {
    .contact-us-header {
        padding: 4rem 0rem;
    }

    .contact-us-header h1 {
        font-size: 1.5rem;
    }

    .contact-us-header p {
        font-size: 0.85rem;
    }

    .contact-us-header img {
        max-width: 200px;
    }
}

.donations-header {
    background-image: url('/website/assets/images/login-sign-back.png');
    background-position: center;
    background-size: cover;
    margin-top: 8.5rem;
    color: var(--white-color);
    display: flex;
    align-items: center;
    height: 80vh;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.donations-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to left, rgba(9, 41, 68, 0.7) 0%, rgba(9, 57, 97, 0.6) 100%);
    opacity: 0.5;
    z-index: 1;
}

.donations-header .container {
    z-index: 2;
}

.donations-header img {
    position: absolute;
    left: 50%;
    bottom: 50%;
    transform: translate(-50%, 50%);
    object-fit: contain;
    max-width: 350px;
    z-index: -1;
}

.donations-header h1 {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.3;
}

.donations-header p {
    font-size: 1.25rem;
    line-height: 1.6;
}

.donations .nav-tabs {
    border-bottom: 2px solid var(--blue-color-s);
}

.donations .border-img,
.important-campaigns .border-img {
    width: 200px;
    margin-bottom: 1rem;
}

.donations h2,
.donations h5,
.important-campaigns h2,
.important-campaigns h5 {
    color: var(--blue-color-s);
    font-weight: bold;
}

.donations .tab-content .card .form-label,
.important-campaigns p {
    color: var(--blue-color-s);
    font-weight: 500;
}

.donations .tab-content .form-card {
    background-color: var(--gray-color);
    border: 0;
}

.donations .tab-content .card .logo-card {
    width: 100%;
    max-width: 200px;
}

.donations .nav-tabs .nav-link,
.donations .whatsapp-contact span,
.donations .whatsapp-contact i {
    color: var(--blue-color-s);
}

.donations .nav-tabs .nav-link.active {
    background-color: var(--blue-color-s);
    border-color: var(--blue-color-s);
    color: var(--white-color);
}

.donations .tab-content .card .card-header {
    border-bottom: 5px solid var(--blue-color-s);
}

.donations .form-control:focus,
.donations .form-select:focus {
    box-shadow: none;
    border-color: var(--blue-color-s);
}

.donations .tab-content .currencies {
    padding-left: 0;
    position: absolute;
    width: 110px;
    top: 50%;
    left: 17px;
    border: 0;
    cursor: pointer;
}

.donations .send-btn,
.important-campaigns .donation-btn,
.not-found-page .back-btn {
    color: var(--white-color);
    background-color: var(--blue-color-s);
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
}

.donations .send-btn:hover,
.important-campaigns .donation-btn:hover,
.not-found-page .back-btn:hover {
    background-color: var(--orange-color);
}

.donations .tab-content form {
    width: 100%;
}

.donations .card.selected {
    border: 1px solid var(--blue-color) !important;
    background-color: var(--white-color) !important;
}

.donations .payments .card,
.donations .payments button {
    height: 100%;
}

.donations .payments .card img {
    width: 100%;
    max-width: 50px;
}

.donations .payments .card .card-body {
    display: flex;
    align-items: center;
    justify-content: center;
}

.donations .form-check-input:focus {
    border-color: var(--orange-color);
    outline: 0;
    box-shadow: none;
}
.donations .form-check-input:checked {
    background-color: var(--orange-color);
    border-color: var(--orange-color);
}

.donations a {
    color: var(--orange-color);
    text-decoration: none;
}

.donations a:hover {
    text-decoration: underline;
}

.important-campaigns {
    background-image: url(/assets/images/image.1.png);
    background-position: center;
    background-size: cover;
    padding: 20px;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .donations-header {
        margin-top: 7.5rem;
    }
    .donations-header h1 {
        font-size: 2.5rem;
    }

    .donations-header p {
        font-size: 1.1rem;
    }
}

@media (max-width: 992px) {
    .donations-header {
        margin-top: 4rem;
        padding: 8rem 2rem;
        height: auto;
    }

    .donations-header h1 {
        font-size: 2rem;
    }

    .donations-header p {
        font-size: 1rem;
    }

    .donations-header img {
        max-width: 300px;
    }
}

@media (max-width: 767px) {
    .donations-header {
        padding: 6rem 0rem;
    }

    .donations-header h1 {
        font-size: 1.75rem;
    }

    .donations-header p {
        font-size: 0.9rem;
    }

    .donations-header img {
        max-width: 250px;
    }

    .donations .tab-content .card .logo-card {
        max-width: 150px;
    }

    .donations .tab-content .currencies {
        top: 55%;
    }
}

@media (max-width: 568px) {
    .donations-header h1 {
        font-size: 1.5rem;
    }

    .donations-header p {
        font-size: 0.85rem;
    }

    .donations-header img {
        max-width: 200px;
    }
}
.gift-shop-header {
    background-image: url('/website/assets/images/gift.jpeg');
    background-position: center;
    background-size: cover;
    margin-top: 5.5rem;
    color: var(--white-color);
    display: flex;
    align-items: center;
    height: 50vh;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.gift-shop-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to left, rgba(9, 41, 68, 0.7) 0%, rgba(9, 57, 97, 0.6) 100%);
    opacity: 0.5;
    z-index: 1;
}

.gift-shop-header .container {
    z-index: 2;
}

.gift-shop-header img {
    position: absolute;
    left: 50%;
    bottom: 50%;
    transform: translate(-50%, 50%);
    object-fit: contain;
    max-width: 350px;
    z-index: -1;
}

.gift-shop-header h1 {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.3;
}

.gift-shop-header p {
    font-size: 1.25rem;
    line-height: 1.6;
}

.gift-shop h2,
.gift-shop h5 {
    /* color: var(--blue-color-s); */
    font-weight: bold;
}

.gift-shop p {
    color: var(--blue-color-s);
    font-weight: 500;
}

.gift-shop .product-cards .card {
    position: relative;
}

.gift-shop .product-cards .card .category {
    position: absolute;
    color: var(--white-color);
    padding: 5px;
    background-color: var(--blue-color-s);
    border-radius: 10px;
    right: 10px;
    top: 10px;
}

.gift-shop .product-cards .card .card-header {
    background-color: var(--white-color);
}

.gift-shop .border-img {
    width: 200px;
    margin-bottom: 1rem;
}

.gift-shop .product-cards .form-select:focus {
    box-shadow: none;
    border-color: var(--blue-color-s);
}

.gift-shop .categories .card .card-header {
    border-bottom: 2px solid var(--blue-color-s);
}

.gift-shop .categories .card .list-unstyled li {
    margin-bottom: 5px;
}

.gift-shop .categories .card .list-unstyled a {
    color: var(--blue-color-s);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.gift-shop .categories .card .list-unstyled a:hover {
    color: var(--orange-color);
}

.gift-shop .gift-shop-btn {
    color: var(--white-color);
    background-color: var(--blue-color-s);
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
}

.gift-shop .gift-shop-btn:hover {
    background-color: var(--orange-color);
}

.gift-shop .product-cards .card {
    border: 0;
    overflow: hidden;
    height: 100%;
}

.gift-shop .product-cards .card .card-body .card-title {
    color: var(--blue-color-s);
    font-weight: 500;
}

.gift-shop .product-cards .card .card-body .card-text {
    color: var(--orange-color);
    margin-bottom: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .gift-shop-header {
        margin-top: 4.5rem;
    }
    .gift-shop-header h1 {
        font-size: 2.5rem;
    }

    .gift-shop-header p {
        font-size: 1.1rem;
    }
}

@media (max-width: 1024px) {
    .gift-shop-header {
        margin-top: 4rem;
        padding: 5rem 2rem;
        height: auto;
    }

    .gift-shop-header img {
        max-width: 300px;
    }
}

@media (max-width: 992px) {
    .gift-shop-header {
        margin-top: 4rem;
        padding: 5rem 2rem;
        height: auto;
    }

    .gift-shop-header h1 {
        font-size: 2rem;
    }

    .gift-shop-header p {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .gift-shop-header {
        padding: 4rem 0rem;
    }

    .gift-shop-header h1 {
        font-size: 1.75rem;
    }

    .gift-shop-header p {
        font-size: 0.9rem;
    }

    .gift-shop-header img {
        max-width: 250px;
    }
}

@media (max-width: 568px) {
    .gift-shop-header {
        padding: 4rem 0rem;
    }

    .gift-shop-header h1 {
        font-size: 1.5rem;
    }

    .gift-shop-header p {
        font-size: 0.85rem;
    }

    .gift-shop-header img {
        max-width: 200px;
    }
}

/* Home */
.home-section {
    background-image: url('/website/assets/images/header-home.png');
    background-position: center;
    background-size: cover;
    margin-top: 5.5rem;
    padding: 0rem 4rem;
    color: var(--white-color);
    display: flex;
    align-items: center;
    height: 50vh;
    overflow: hidden;
    position: relative;
}

.home-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to left, rgba(9, 41, 68, 0.5) 0%, rgba(9, 41, 68, 0.3) 60%, transparent 100%);
    opacity: 0.3;
    z-index: 1;
}

.home-section .container {
    z-index: 2;
}

.home-section h1 {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.3;
}

.home-section p {
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 600px;
}

.home-section .donation-btn,
.himma-association .donation-btn,
.executive-units .show-more {
    color: var(--white-color);
    background-color: var(--blue-color-s);
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
}

.home-section .donation-btn:hover,
.himma-association .donation-btn:hover,
.executive-units .show-more:hover {
    background-color: var(--orange-color);
}

.business-sectors h2,
.himma-association h2,
.executive-units h2,
.himma-youth h2,
.partners-success h2 {
    color: var(--blue-color-s);
    font-weight: bold;
}

.himma-association p,
.executive-units p,
.himma-youth p {
    color: var(--blue-color-s);
    font-weight: 500;
}

.business-sectors .row .card {
    background-color: var(--gray-color);
    border: 0;
    border-radius: 20px;
    max-width: 100px;
}

.business-sectors .col-lg-2,
.business-sectors .col-md-4 {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
    align-items: center;
    padding: 0 5px;
}

@media (min-width: 1400px) {
    .business-sectors .col-lg-2 {
        width: 10%;
    }
}

@media (min-width: 1200px) {
    .business-sectors .col-lg-2 {
        width: 11%;
    }
}

@media (min-width: 992px) {
    .business-sectors .col-lg-2 {
        width: 13%;
    }
}

.business-sectors .card img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.himma-association,
.our-projects,
.himma-youth {
    background-color: var(--gray-color);
    padding: 50px 0;
}

.himma-association .border-img,
.business-sectors .border-img,
.executive-units .border-img,
.our-projects .border-img,
.himma-youth .border-img,
.partners-success .border-img {
    width: 200px;
    margin-bottom: 1rem;
}

.home-campaigns .top-cards .col-md-6 .first-campaign {
    background-image: url('/website/assets/images/association-1.jpeg');
}

.home-campaigns .top-cards .col-md-6 .second-campaign {
    background-image: url('/website/assets/images/association-2.jpeg');
}

.home-campaigns .top-cards .col-md-6 .card {
    border: 0;
    padding: 5rem 1rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.home-campaigns .top-cards .col-md-6 .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(9, 41, 68, 0.5) 0%, rgba(9, 57, 97, 0.4) 100%);
    z-index: 1;
    opacity: 0.5;
}

.home-campaigns .top-cards .col-md-6 .card .card-body {
    position: relative;
    z-index: 2;
}

.himma-association .bottom-cards .card,
.our-projects .card {
    border: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0px 0px 3px 0px #d9d9d9;
    height: 100%;
}

.himma-association .bottom-cards .card .card-body .card-title {
    color: var(--blue-color-s);
    font-weight: 500;
}

.himma-association .bottom-cards .card .card-body .card-text {
    color: var(--black-color);
    margin-bottom: 0.5rem;
}

.himma-association .bottom-cards .card .btn-outline-primary {
    --bs-btn-color: var(--blue-color-s);
    --bs-btn-border-color: var(--blue-color-s);
    --bs-btn-hover-bg: var(--blue-color-s);
    --bs-btn-hover-border-color: var(--blue-color-s);
    --bs-btn-active-bg: var(--blue-color-s);
    --bs-btn-active-border-color: var(--blue-color-s);
    --bs-btn-disabled-color: var(--blue-color-s);
    --bs-btn-disabled-border-color: var(--blue-color-s);
}

.executive-units .row .first-unit {
    background-image: url('/website/assets/images/executive-units-1.jpeg');
}

.executive-units .row .second-unit {
    background-image: url('/website/assets/images/executive-units-2.jpeg');
}

.executive-units .row .card {
    border: 0;
    padding: 15rem 1rem;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.executive-units .row .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(9, 41, 68, 0.5) 0%, rgba(9, 41, 68, 0.3) 60%, transparent 100%);
    z-index: 1;
    opacity: 0.9;
}

.executive-units .row .card .card-body {
    position: absolute;
    z-index: 2;
    bottom: 0;
    width: 100%;
}

.our-projects h2 {
    color: var(--green-color);
    font-weight: bold;
}

.our-projects p {
    color: var(--green-color);
    font-weight: 500;
}

.our-projects .row .card .card-title {
    color: var(--green-color);
    font-weight: 500;
}

.our-projects .row .card .card-text {
    color: var(--black-color);
}

.our-projects .show-more {
    color: var(--white-color);
    background-color: var(--green-color);
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
}

.our-projects .show-more-btn {
    --bs-btn-color: var(--green-color);
    --bs-btn-border-color: var(--green-color);
    --bs-btn-hover-bg: var(--green-color);
    --bs-btn-hover-border-color: var(--green-color);
    --bs-btn-active-bg: var(--green-color);
    --bs-btn-active-border-color: var(--green-color);
    --bs-btn-disabled-color: var(--green-color);
    --bs-btn-disabled-border-color: var(--green-color);
}

.our-projects .show-more:hover {
    background-color: var(--green-color-s);
}

.our-achievements,
.himma-youth-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.our-achievements .image-wrapper {
    position: relative;
}

.our-achievements img {
    width: 100%;
    max-width: 850px;
    height: auto;
    border-radius: 5px;
}

.our-achievements .card {
    background-color: var(--green-color);
    color: var(--white-color);
    padding: 1rem;
    max-width: 500px;
    position: absolute;
    top: 15%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: 2;
}

.our-achievements .card h5 {
    margin: 0.5rem 0;
}

.our-achievements .card .show-more {
    color: var(--green-color);
    background-color: var(--white-color);
    font-size: 1rem;
    padding: 0.5rem 2rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.our-achievements .card .show-more:hover {
    background-color: var(--gray-color);
}

.himma-youth-section .image-wrapper {
    position: relative;
    margin-left: 7rem;
    text-align: left;
}

.himma-youth-section img {
    width: 100%;
    max-width: 850px;
    height: auto;
    border-radius: 5px;
}

.himma-youth-section .card {
    background-color: var(--blue-color-s);
    color: var(--white-color);
    padding: 2rem;
    max-width: 500px;
    position: absolute;
    top: 20%;
    right: 10%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: 2;
}

.himma-youth .row .cards img {
    width: 25px;
    object-fit: contain;
}

@media (min-width: 992px) {
    .partners-success .row .col-lg-2 {
        width: 12%;
    }
}

@media (max-width: 1200px) {
    .our-achievements img {
        max-width: 750px;
    }
    .our-achievements .card {
        max-width: 400px;
        top: 8%;
    }

    .himma-youth-section .image-wrapper {
        margin-left: 0;
    }

    .himma-youth-section img {
        max-width: 750px;
    }

    .himma-youth-section .card {
        max-width: 400px;
        padding: 1rem;
        top: 15%;
    }
}

@media (max-width: 992px) {
    .our-achievements img {
        max-width: 100%;
    }
    .our-achievements .card {
        padding: 0;
        top: auto;
        position: relative;
        margin-top: -5rem;
        max-width: calc(100% - 3rem);
    }

    .himma-youth-section .image-wrapper {
        margin-bottom: 5rem;
    }

    .himma-youth-section img {
        max-width: 100%;
    }
    .himma-youth-section .card {
        padding: 0;
        /* top: auto; */
        right: 115px;
        /* position: relative; */
        margin-bottom: -5rem;
        max-width: calc(100% - 15rem);
        top: 60%;
    }
}

@media (max-width: 480px) {
    .our-achievements .card .show-more {
        font-size: 0.9rem;
        padding: 0.5rem 1.5rem;
    }
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .home-section {
        margin-top: 4.5rem;
    }
    .home-section h1 {
        font-size: 2.5rem;
    }

    .home-section p {
        font-size: 1.1rem;
    }
}

@media (max-width: 1024px) {
    .home-section {
        margin-top: 4rem;
        padding: 5rem 2rem;
        height: auto;
    }

    .home-section img {
        max-width: 300px;
    }
}

@media (max-width: 992px) {
    .home-section h1 {
        font-size: 2rem;
    }

    .home-section p {
        font-size: 1rem;
    }

    .executive-units .row .card {
        padding: 12rem 1rem;
    }

    .home-campaigns .top-cards .col-md-6 .card {
        padding: 3rem 1rem;
    }
}

@media (max-width: 767px) {
    .home-section {
        padding: 4rem 0rem;
    }

    .home-section::before {
        background: linear-gradient(to left, rgba(9, 41, 68, 0.7) 0%, rgba(9, 57, 97, 0.6) 100%);
    }

    .home-section h1 {
        font-size: 1.75rem;
    }

    .home-section p {
        font-size: 0.9rem;
    }

    .home-section .donation-btn,
    .himma-association .donation-btn {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }

    .executive-units .row .card {
        padding: 10rem 1rem;
    }

    .home-campaigns .top-cards .col-md-6 .card {
        padding: 5rem 1rem;
    }
}

@media (max-width: 568px) {
    .executive-units .row .card {
        padding: 8rem 1rem;
    }

    .home-section h1 {
        font-size: 1.5rem;
    }

    .home-section p {
        font-size: 0.85rem;
    }

    .home-section .donation-btn,
    .himma-association .donation-btn {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }

    .home-campaigns .top-cards .col-md-6 .card {
        padding: 4rem 0rem;
    }
}

@media (max-width: 480px) {
    .home-campaigns .top-cards .col-md-6 .card {
        padding: 2rem 0rem;
    }
}

@media (max-width: 380px) {
    .home-campaigns .top-cards .col-md-6 .card {
        padding: 1rem 0rem;
    }
}

.form-container p {
    margin: 0;
}

.body-container {
    background: url('/assets/images/login-sign-back.png') no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-container {
    background: var(--white-color);
    padding: 1rem;
    border-radius: 20px;
    max-width: 600px;
    margin: auto;
}

.form-container .form-page {
    /* background: linear-gradient(180deg, var(--blue-gradient-start) 0%, var(--blue-gradient-end) 100%); */
    padding: 1rem;
    border-radius: 20px;
}

.form-container .form-page .form-header .logo {
    width: 150px;
}

.form-container .form-page .form-group {
    position: relative;
}

.form-container .form-page .form-group .form-label {
    margin-bottom: 0.5rem;
}

.form-container .form-page .form-group .form-control {
    padding-right: 2rem;
    color: var(--blue-color-s);
}

.form-container .form-page .form-group .form-control::placeholder {
    color: var(--blue-color-s);
    opacity: 0.4;
}

.form-container .form-page .form-group .icon {
    position: absolute;
    right: 10px;
    top: 58%;
    font-size: 1.1rem;
    color: var(--blue-color-s);
    pointer-events: none;
}

.form-container .form-page .form-group .toggle-password {
    position: absolute;
    left: 10px;
    top: 58%;
    font-size: 1.1rem;
    color: var(--blue-color-s);
    cursor: pointer;
}

.form-container .form-page .form-check-input {
    width: 1.2rem;
    height: 1.2rem;
    cursor: pointer;
}

.form-container .form-page .form-check-input:focus {
    border-color: var(--orange-color);
    outline: 0;
    box-shadow: none;
}
.form-container .form-page .form-check-input:checked {
    background-color: var(--orange-color);
    border-color: var(--orange-color);
}

.form-container .form-page a {
    color: var(--orange-color);
    text-decoration: none;
}

.form-container .form-page a:hover {
    text-decoration: underline;
}

.form-container .form-page .form-group .form-btn {
    width: 100%;
    background-color: var(--blue-color-s);
    color: var(--white-color);
    transition: all 0.3s ease;
}

.form-container .form-page .form-group .form-btn:hover {
    background-color: var(--orange-color);
    color: var(--white-color);
}

.blog-header {
    background-image: url(/assets/images/campaign-img.png);
    background-position: center;
    background-size: cover;
    margin-top: 8.5rem;
    color: var(--white-color);
    display: flex;
    align-items: center;
    height: 80vh;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.blog-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to left, rgba(9, 41, 68, 0.7) 0%, rgba(9, 57, 97, 0.6) 100%);
    opacity: 0.5;
    z-index: 1;
}

.blog-header .container {
    z-index: 2;
}

.blog-header img {
    position: absolute;
    left: 50%;
    bottom: 50%;
    transform: translate(-50%, 50%);
    object-fit: contain;
    max-width: 350px;
    z-index: -1;
}

.blog-header h1 {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.3;
}

.blog-header p {
    font-size: 1.25rem;
    line-height: 1.6;
}

.blog h2,
.blog h5 {
    color: var(--blue-color-s);
    font-weight: bold;
}

.blog p,
.blog ul li {
    color: var(--blue-color-s);
    font-weight: 500;
}

.blog .subscribe-btn {
    color: var(--white-color);
    background-color: var(--blue-color-s);
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    width: 100%;
}

.blog .subscribe-btn:hover {
    background-color: var(--orange-color);
}

.blog .humanitarian {
    background-color: var(--blue-color-s);
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0px 4px 4px 0px #00000040;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 5px;
}

.blog .humanitarian h5 {
    font-weight: 600;
}

.blog span {
    font-size: 0.7rem;
}
.blog .humanitarian h5,
.blog .humanitarian span {
    color: var(--white-color);
}

.blog .read-more {
    color: var(--blue-color-s);
    transition: color 0.3s ease;
    font-weight: 500;
}

.blog .read-more:hover {
    color: var(--orange-color);
}

.blog .search-bar {
    display: flex;
    border-radius: 5px;
    overflow: hidden;
}
.blog .search-icon {
    background-color: var(--blue-color-s);
    color: white;
    padding: 10px;
    display: flex;
    align-items: center;
}
.blog .search-input {
    border-radius: 0;
}
.blog .search-input:focus {
    border-color: var(--blue-color-s);
}
.blog .line {
    width: 100%;
    height: 2px;
    background-color: var(--blue-color-s);
    margin-bottom: 10px;
}

.blog .posts .col-12 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog .posts img {
    border-radius: 10px;
    max-width: 100px;
}

.blog .posts .col-12 h5 {
    font-size: 0.9rem;
}

.blog .follow-us {
    padding: 10px;
    font-weight: 600;
    background-color: var(--blue-color-s);
    color: var(--white-color);
    text-align: center;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 4px 4px 0px;
}

.blog .social .social-media .nav-link {
    background-color: var(--gray-color);
    color: var(--blue-color-s);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 4px 4px 0px;
}

.blog .social-media .nav-link:hover {
    color: var(--orange-color);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .blog-header {
        margin-top: 7.5rem;
    }
    .blog-header h1 {
        font-size: 2.5rem;
    }

    .blog-header p {
        font-size: 1.1rem;
    }
}

@media (max-width: 992px) {
    .blog-header {
        margin-top: 4rem;
        padding: 5rem 2rem;
        height: auto;
    }

    .blog-header h1 {
        font-size: 2rem;
    }

    .blog-header p {
        font-size: 1rem;
    }

    .blog-header img {
        max-width: 300px;
    }
}

@media (max-width: 767px) {
    .blog-header {
        padding: 4rem 0rem;
    }

    .blog-header h1 {
        font-size: 1.75rem;
    }

    .blog-header p {
        font-size: 0.9rem;
    }

    .blog-header img {
        max-width: 250px;
    }

    .blog .posts .col-12 {
        gap: 1.5rem;
    }

    .blog .posts img {
        max-width: 150px;
    }

    .blog .subscribe-btn {
        width: auto;
    }
}

@media (max-width: 568px) {
    .blog-header {
        padding: 4rem 0rem;
    }

    .blog-header h1 {
        font-size: 1.5rem;
    }

    .blog-header p {
        font-size: 0.85rem;
    }

    .blog-header img {
        max-width: 200px;
    }

    .blog .humanitarian h5 {
        font-size: 0.9rem;
    }

    .blog span {
        font-size: 0.65rem;
    }
}

.product-header {
    background-image: url(/assets/images/gift.jpeg);
    background-position: center;
    background-size: cover;
    margin-top: 5.5rem;
    color: var(--white-color);
    display: flex;
    align-items: center;
    height: 50vh;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to left, rgba(9, 41, 68, 0.7) 0%, rgba(9, 57, 97, 0.6) 100%);
    opacity: 0.5;
    z-index: 1;
}

.product-header .container {
    z-index: 2;
}

.product-header img {
    position: absolute;
    left: 50%;
    bottom: 50%;
    transform: translate(-50%, 50%);
    object-fit: contain;
    max-width: 350px;
    z-index: -1;
}

.product-header h1 {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.3;
}

.product-header p {
    font-size: 1.25rem;
    line-height: 1.6;
}

.gift-shop {
    background-image: url(/website/assets/images/image.1.png);
    background-position: center;
    background-size: cover;
    padding: 50px 0 30px 0;
}

.gift-shop h2,
.gift-shop h5,
.product h5 {
    /* color: var(--blue-color-s); */
    font-weight: bold;
}

.gift-shop p,
.product p,
.product span {
    color: var(--blue-color-s);
    font-weight: 500;
}

.product .card {
    background-color: var(--gray-color);
}
.product .price,
.product .category {
    color: var(--orange-color);
}

.product .product-img {
    width: 100%;
    max-width: 500px;
}

.product .counter-container {
    display: flex;
    align-items: center;
}
.product .counter-display {
    font-size: 1.2rem;
    font-weight: bold;
    width: 50px;
    text-align: center;
    color: var(--blue-color-s);
}

.product .decrement-btn,
.product .increment-btn {
    border: 1px solid var(--blue-color-s);
    border-radius: 50%;
    color: var(--blue-color-s);
    padding: 0px 5px;
    font-weight: 600;
    font-size: 12px;
}

.product .decrement-btn:hover,
.product .increment-btn:hover {
    background-color: var(--orange-color);
    border-color: var(--orange-color);
    color: var(--white-color);
}

.gift-shop .product-cards .card {
    position: relative;
}

.gift-shop .product-cards .card .category {
    position: absolute;
    color: var(--white-color);
    padding: 5px;
    background-color: var(--blue-color-s);
    border-radius: 10px;
    right: 10px;
    top: 10px;
}

.gift-shop .product-cards .card .card-header {
    background-color: var(--white-color);
}

.gift-shop .border-img {
    width: 200px;
    margin-bottom: 1rem;
}

.gift-shop-btn {
    color: var(--white-color);
    background-color: var(--blue-color-s);
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
}

.gift-shop-btn:hover {
    background-color: var(--orange-color);
    color: var(--white-color);
}

.gift-shop .product-cards .card {
    border: 0;
    overflow: hidden;
    height: 100%;
}

.gift-shop .product-cards .card .card-body .card-title {
    color: var(--blue-color-s);
    font-weight: 500;
}

.gift-shop .product-cards .card .card-body .card-text {
    color: var(--orange-color);
    margin-bottom: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .product-header {
        margin-top: 4.5rem;
    }
    .product-header h1 {
        font-size: 2.5rem;
    }

    .product-header p {
        font-size: 1.1rem;
    }
}

@media (max-width: 992px) {
    .product-header {
        margin-top: 4rem;
        padding: 5rem 2rem;
        height: auto;
    }

    .product-header h1 {
        font-size: 2rem;
    }

    .product-header p {
        font-size: 1rem;
    }

    .product-header img {
        max-width: 300px;
    }
}

@media (max-width: 767px) {
    .product-header {
        padding: 4rem 0rem;
    }

    .product-header h1 {
        font-size: 1.75rem;
    }

    .product-header p {
        font-size: 0.9rem;
    }

    .product-header img {
        max-width: 250px;
    }

    .product .product-img {
        object-fit: contain;
        max-height: 300px;
    }
}

@media (max-width: 568px) {
    .product-header {
        padding: 4rem 0rem;
    }

    .product-header h1 {
        font-size: 1.5rem;
    }

    .product-header p {
        font-size: 0.85rem;
    }

    .product-header img {
        max-width: 200px;
    }
}

.student-housing h1 {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.3;
}

.student-housing p {
    font-size: 1.25rem;
    line-height: 1.6;
}

.istanbul-housing h2,
.istanbul-housing h5,
.activities h2,
.activities h5,
.contact-info h2,
.contact-us h2,
.contact-us h5 {
    color: var(--blue-color-s);
    font-weight: bold;
}

.istanbul-housing p,
.istanbul-housing ul li,
.activities p,
.contact-us p {
    color: var(--blue-color-s);
    font-weight: 500;
}

.istanbul-housing .border-img,
.activities .border-img,
.contact-info .border-img,
.contact-us .border-img {
    width: 200px;
    margin-bottom: 1rem;
}

.istanbul-housing .row .col-md-6 img {
    width: 100%;
    border-radius: 8px;
    max-height: 400px;
    object-fit: contain;
}

.istanbul-housing .row .col-md-4 img {
    height: 100%;
    width: 100%;
    border-radius: 8px;
}

.istanbul-housing .row .col-md-6 .istanbul-housing-btn,
.activities .show-more,
.contact-us .send-btn {
    color: var(--white-color);
    background-color: var(--blue-color-s);
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
}

.istanbul-housing .row .col-md-6 .istanbul-housing-btn:hover,
.activities .show-more:hover,
.contact-us .send-btn:hover {
    background-color: var(--orange-color);
}

.activities {
    background-image: url(/assets/images/image.1.png);
    background-position: center;
    background-size: cover;
    padding: 20px;
}

.activities .card {
    border: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0px 0px 3px 0px #d9d9d9;
    height: 100%;
}

.activities .card .card-body .card-title {
    color: var(--blue-color-s);
    font-weight: 500;
}

.activities .card .card-body .card-text {
    color: var(--black-color);
    margin-bottom: 0.5rem;
}

.contact-info .contact-info-card {
    background-color: var(--blue-color-s);
}

.contact-info .contact-info-card .row .card {
    color: var(--blue-color-s);
}

.contact-info .contact-info-card .row .card .card-body {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.contact-us .nav-tabs {
    border-bottom: 2px solid var(--blue-color-s);
}

.contact-us .nav-tabs .nav-link,
.contact-us .whatsapp-contact span,
.contact-us .whatsapp-contact i {
    color: var(--blue-color-s);
}
.contact-us .nav-tabs .nav-link.active {
    background-color: var(--blue-color-s);
    border-color: var(--blue-color-s);
    color: var(--white-color);
}

.contact-us .form-control:focus {
    box-shadow: none;
    border-color: var(--blue-color-s);
}

.contact-us .tab-content > .active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-us .tab-content form {
    width: 100%;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .student-housing h1 {
        font-size: 2.5rem;
    }

    .student-housing p {
        font-size: 1.1rem;
    }
}

@media (max-width: 992px) {
    .student-housing h1 {
        font-size: 2rem;
    }

    .student-housing p {
        font-size: 1rem;
    }

    .istanbul-housing .row .col-md-6 .istanbul-housing-btn {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 767px) {
    .student-housing h1 {
        font-size: 1.75rem;
    }

    .student-housing p {
        font-size: 0.9rem;
    }

    .istanbul-housing .row .col-md-6 .istanbul-housing-btn {
        margin-bottom: 1rem;
    }
}

@media (max-width: 568px) {
    .student-housing h1 {
        font-size: 1.5rem;
    }

    .student-housing p {
        font-size: 0.85rem;
    }
}

.about-us-header {
    background-image: url('/website/assets/images/about-us.jpg');
    background-position: center;
    background-size: cover;
    margin-top: 5.5rem;
    color: var(--white-color);
    display: flex;
    align-items: center;
    height: 50vh;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.about-us-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to left, rgba(9, 41, 68, 0.7) 0%, rgba(9, 57, 97, 0.6) 100%);
    opacity: 0.5;
    z-index: 1;
}

.about-us-header .container {
    z-index: 2;
}

.about-us-header .hand-img {
    position: absolute;
    left: 50%;
    bottom: 50%;
    transform: translate(-50%, 50%);
    object-fit: contain;
    max-width: 350px;
    z-index: -1;
}

.about-us-header h1 {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.3;
}

.about-us-header p {
    font-size: 1.25rem;
    line-height: 1.6;
}

.about-us-header .about-us-img {
    width: 65%;
    border-radius: 10px;
    border: 5px solid var(--white-color);
}

.about-us h2,
.about-us h5,
.why-choose-us h2,
.why-choose-us h5,
.partners-of-success h2 {
    color: var(--blue-color-s);
    font-weight: bold;
}

.about-us p,
.why-choose-us p {
    color: var(--blue-color-s);
    font-weight: 500;
}

.about-us .border-img,
.why-choose-us .border-img,
.partners-of-success .border-img {
    width: 200px;
    margin-bottom: 1rem;
}

.about-us .row .col-md-6 img {
    width: 100%;
    border-radius: 10px;
}

.about-us .row .card .card-body {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-us .row .card .card-body i {
    color: var(--blue-color-s);
    font-size: 1.3rem;
}

.why-choose-us .row img {
    border-radius: 10px;
}

.why-choose-us .show-more {
    color: var(--white-color);
    background-color: var(--blue-color-s);
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
}

.why-choose-us .show-more:hover {
    background-color: var(--orange-color);
}

.why-choose-us .why-choose-us-tabs .nav-tabs .nav-link {
    color: var(--blue-color-s);
    font-weight: bold;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease-in-out;
}

.why-choose-us .why-choose-us-tabs .nav-tabs .nav-link.active {
    color: var(--white-color);
    background-color: var(--blue-color-s);
}

.why-choose-us .why-choose-us-tabs .tab-content .card {
    background-color: var(--blue-color-s);
    color: var(--white-color);
}

.partners-of-success .row img {
    width: 100%;
    max-width: 200px;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .about-us-header {
        margin-top: 4.5rem;
    }
    .about-us-header h1 {
        font-size: 2.5rem;
    }

    .about-us-header p {
        font-size: 1.1rem;
    }
}

@media (max-width: 1024px) {
    .about-us-header {
        margin-top: 4rem;
        padding: 5rem 2rem;
        height: auto;
    }

    .about-us-header .hand-img {
        max-width: 300px;
    }
}

@media (max-width: 992px) {
    .about-us-header {
        margin-top: 4rem;
        padding: 5rem 2rem;
        height: auto;
    }

    .about-us-header h1 {
        font-size: 2rem;
    }

    .about-us-header p {
        font-size: 1rem;
    }

    .about-us-header .hand-img {
        max-width: 300px;
    }

    .about-us-header .about-us-img {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .about-us-header {
        padding: 4rem 0rem;
    }

    .about-us-header h1 {
        font-size: 1.75rem;
    }

    .about-us-header p {
        font-size: 0.9rem;
    }

    .about-us-header .hand-img {
        max-width: 250px;
    }

    .partners-of-success .row img {
        max-width: 175px;
    }
}

@media (max-width: 568px) {
    .about-us-header {
        padding: 4rem 0rem;
    }

    .about-us-header h1 {
        font-size: 1.5rem;
    }

    .about-us-header p {
        font-size: 0.85rem;
    }

    .about-us-header .hand-img {
        max-width: 200px;
    }
}

.shadow {
    box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.03) !important;
}

.modal-header .close {
    padding: 0;
    margin: 0;
}

.fa,
.far,
.fas {
    font-family: 'Font Awesome 5 Free' !important;
}

.fa-brands,
.fab {
    font-family: 'Font Awesome 6 Brands' !important;
}

.content-wrapper .content .card .card-header {
    background-color: var(--blue-color-s);
    color: var(--white-color);
}

.content-wrapper .content .card .card-body .table-responsive .table-container thead {
    background-color: var(--orange-color);
}

.student-housing-header {
    background-image: url('/website/assets/images/campaign-img.png');
    background-position: center;
    background-size: cover;
    margin-top: 5.5rem;
    color: var(--white-color);
    display: flex;
    align-items: center;
    height: 50vh;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.student-housing-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to left, rgba(9, 41, 68, 0.7) 0%, rgba(9, 57, 97, 0.6) 100%);
    opacity: 0.5;
    z-index: 1;
}

.student-housing-header .container {
    z-index: 2;
}

.student-housing-header img {
    position: absolute;
    left: 50%;
    bottom: 50%;
    transform: translate(-50%, 50%);
    object-fit: contain;
    max-width: 350px;
    z-index: -1;
}

.student-housing-header h1 {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.3;
}

.student-housing-header p {
    font-size: 1.25rem;
    line-height: 1.6;
}

.student-housing h2,
.student-housing h5 {
    color: var(--blue-color-s);
    font-weight: bold;
}

.student-housing p {
    color: var(--blue-color-s);
    font-weight: 500;
}

.student-housing .top-cards .card {
    position: relative;
}

.student-housing .top-cards .card .category {
    position: absolute;
    color: var(--white-color);
    padding: 5px;
    background-color: var(--blue-color-s);
    border-radius: 10px;
    right: 10px;
    top: 10px;
    font-size: 15px;
}

.student-housing .top-cards .card .category,
.campaigns .container .row .card .category {
    position: absolute;
    color: var(--white-color);
    padding: 5px;
    background-color: var(--blue-color-s);
    border-radius: 10px;
    right: 10px;
    top: 10px;
    font-size: 15px;
}

.campaigns .container .row .card .important_status {
    position: absolute;
    color: var(--white-color);
    padding: 5px;
    background-color: #f2004d;
    border-radius: 10px;
    left: 10px;
    top: 10px;
    font-size: 15px;
}

.student-housing .border-img {
    width: 200px;
    margin-bottom: 1rem;
}

.student-housing .donation-btn {
    color: var(--white-color);
    background-color: var(--blue-color-s);
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
}

.student-housing .donation-btn:hover {
    background-color: var(--orange-color);
}

.student-housing .card {
    border: 0;
    overflow: hidden;
    border-radius: 15px;
    text-align: right;
    height: 100%;
}

.student-housing .card .card-body .card-title {
    color: var(--blue-color-s);
    font-weight: 500;
}

.student-housing .card .card-body .card-text {
    color: var(--black-color);
    margin-bottom: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .student-housing-header {
        margin-top: 4.5rem;
    }
    .student-housing-header h1 {
        font-size: 2.5rem;
    }

    .student-housing-header p {
        font-size: 1.1rem;
    }
}

@media (max-width: 1024px) {
    .student-housing-header {
        margin-top: 4rem;
        padding: 5rem 2rem;
        height: auto;
    }

    .student-housing-header img {
        max-width: 250px;
    }
}

@media (max-width: 992px) {
    .student-housing-header h1 {
        font-size: 2rem;
    }

    .student-housing-header p {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .student-housing-header {
        padding: 4rem 0rem;
    }

    .student-housing-header h1 {
        font-size: 1.75rem;
    }

    .student-housing-header p {
        font-size: 0.9rem;
    }

    .student-housing-header img {
        max-width: 250px;
    }
}

@media (max-width: 568px) {
    .student-housing-header {
        padding: 4rem 0rem;
    }

    .student-housing-header h1 {
        font-size: 1.5rem;
    }

    .student-housing-header p {
        font-size: 0.85rem;
    }

    .student-housing-header img {
        max-width: 200px;
    }
}

.youth-centers-header {
    background-image: url('/website/assets/images/campaign-img.png');
    background-position: center;
    background-size: cover;
    margin-top: 5.5rem;
    color: var(--white-color);
    display: flex;
    align-items: center;
    height: 50vh;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.youth-centers-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to left, rgba(9, 41, 68, 0.7) 0%, rgba(9, 57, 97, 0.6) 100%);
    opacity: 0.5;
    z-index: 1;
}

.youth-centers-header .container {
    z-index: 2;
}

.youth-centers-header img {
    position: absolute;
    left: 50%;
    bottom: 50%;
    transform: translate(-50%, 50%);
    object-fit: contain;
    max-width: 350px;
    z-index: -1;
}

.youth-centers-header h1 {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.3;
}

.youth-centers-header p {
    font-size: 1.25rem;
    line-height: 1.6;
}

.youth-centers h2,
.youth-centers h5 {
    color: var(--blue-color-s);
    font-weight: bold;
}

.youth-centers p {
    color: var(--blue-color-s);
    font-weight: 500;
}

.youth-centers .top-cards .card {
    position: relative;
}

.youth-centers .top-cards .card .category {
    position: absolute;
    color: var(--white-color);
    padding: 5px;
    background-color: var(--blue-color-s);
    border-radius: 10px;
    right: 10px;
    top: 10px;
    font-size: 15px;
}

.youth-centers .border-img {
    width: 200px;
    margin-bottom: 1rem;
}

.youth-centers .donation-btn {
    color: var(--white-color);
    background-color: var(--blue-color-s);
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
}

.youth-centers .donation-btn:hover {
    background-color: var(--orange-color);
}

.youth-centers .card {
    border: 0;
    overflow: hidden;
    border-radius: 15px;
    text-align: right;
    height: 100%;
}

.youth-centers .card .card-body .card-title {
    color: var(--blue-color-s);
    font-weight: 500;
}

.youth-centers .card .card-body .card-text {
    color: var(--black-color);
    margin-bottom: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .youth-centers-header {
        margin-top: 4.5rem;
    }
    .youth-centers-header h1 {
        font-size: 2.5rem;
    }

    .youth-centers-header p {
        font-size: 1.1rem;
    }
}

@media (max-width: 1024px) {
    .youth-centers-header {
        margin-top: 4rem;
        padding: 5rem 2rem;
        height: auto;
    }

    .youth-centers-header img {
        max-width: 300px;
    }
}

@media (max-width: 992px) {
    .youth-centers-header h1 {
        font-size: 2rem;
    }

    .youth-centers-header p {
        font-size: 1rem;
    }

    .youth-centers-header img {
        max-width: 300px;
    }
}

@media (max-width: 767px) {
    .youth-centers-header {
        padding: 4rem 0rem;
    }

    .youth-centers-header h1 {
        font-size: 1.75rem;
    }

    .youth-centers-header p {
        font-size: 0.9rem;
    }

    .youth-centers-header img {
        max-width: 250px;
    }
}

@media (max-width: 568px) {
    .youth-centers-header h1 {
        font-size: 1.5rem;
    }

    .youth-centers-header p {
        font-size: 0.85rem;
    }

    .youth-centers-header img {
        max-width: 200px;
    }
}

.youth-centers-desc {
    background-image: url('/website//assets/images/student-housing-header.png');
    background-position: center;
    background-size: cover;
    margin-top: 5.5rem;
    color: var(--white-color);
    display: flex;
    align-items: center;
    height: 50vh;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.youth-centers-desc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to left, rgba(9, 41, 68, 0.7) 0%, rgba(9, 57, 97, 0.6) 100%);
    opacity: 0.5;
    z-index: 1;
}

.youth-centers-desc .container {
    z-index: 1;
}

.youth-centers-desc h1 {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.3;
}

.youth-centers-desc p {
    font-size: 1.25rem;
    line-height: 1.6;
}

.istanbul-housing h2,
.istanbul-housing h1,
.istanbul-housing h5,
.activities h2,
.activities h5,
.contact-info h2,
.contact-us h2,
.contact-us h5 {
    color: var(--blue-color-s);
    font-weight: bold;
}

.istanbul-housing p,
.istanbul-housing ul li,
.activities p,
.contact-us p {
    color: var(--blue-color-s);
    font-weight: 500;
}

.istanbul-housing .border-img,
.activities .border-img,
.contact-info .border-img,
.contact-us .border-img {
    width: 200px;
    margin-bottom: 1rem;
}

.istanbul-housing .row .col-md-6 .istanbul-housing-btn,
.activities .show-more,
.contact-us .send-btn {
    color: var(--white-color);
    background-color: var(--blue-color-s);
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
}

.istanbul-housing .row .col-md-6 .istanbul-housing-btn:hover,
.activities .show-more:hover,
.contact-us .send-btn:hover {
    background-color: var(--orange-color);
}

.activities {
    background-image: url('/website/assets/images/image.1.png');
    background-position: center;
    background-size: cover;
    padding: 20px;
}

.activities .card {
    border: 0;
    overflow: hidden;
    border-radius: 15px;
    text-align: right;
    box-shadow: 0px 0px 3px 0px #d9d9d9;
    height: 100%;
}

.activities .card .card-body .card-title {
    color: var(--blue-color-s);
    font-weight: 500;
}

.activities .card .card-body .card-text {
    color: var(--black-color);
    margin-bottom: 0.5rem;
}

.contact-info .contact-info-card {
    background-color: var(--blue-color-s);
}

.contact-info .contact-info-card .row .card {
    color: var(--blue-color-s);
}

.contact-info .contact-info-card .row .card .card-body {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.contact-us {
    background-image: url('/website/assets/images/image.1.png');
    background-position: center;
    background-size: cover;
    padding: 50px 0;
}

.contact-us .nav-tabs {
    border-bottom: 2px solid var(--blue-color-s);
}

.contact-us .nav-tabs .nav-link,
.contact-us .whatsapp-contact span,
.contact-us .whatsapp-contact i {
    color: var(--blue-color-s);
}
.contact-us .nav-tabs .nav-link.active {
    background-color: var(--blue-color-s);
    border-color: var(--blue-color-s);
    color: var(--white-color);
}

.contact-us .form-control:focus {
    box-shadow: none;
    border-color: var(--blue-color-s);
}

.contact-us .tab-content > .active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-us .tab-content form {
    width: 100%;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .youth-centers-desc {
        margin-top: 4.5rem;
    }
    .youth-centers-desc h1 {
        font-size: 2.5rem;
    }

    .youth-centers-desc p {
        font-size: 1.1rem;
    }
}

@media (max-width: 1024px) {
    .youth-centers-desc {
        margin-top: 4rem;
        padding: 8rem 2rem;
        height: auto;
    }
}

@media (max-width: 992px) {
    .youth-centers-desc h1 {
        font-size: 2rem;
    }

    .youth-centers-desc p {
        font-size: 1rem;
    }

    .istanbul-housing .row .col-md-6 .istanbul-housing-btn {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 767px) {
    .youth-centers-desc {
        padding: 6rem 0rem;
    }

    .youth-centers-desc h1 {
        font-size: 1.75rem;
    }

    .youth-centers-desc p {
        font-size: 0.9rem;
    }

    .istanbul-housing .row .col-md-6 .istanbul-housing-btn {
        margin-bottom: 1rem;
    }
}

@media (max-width: 568px) {
    .youth-centers-desc h1 {
        font-size: 1.5rem;
    }

    .youth-centers-desc p {
        font-size: 0.85rem;
    }
}

.activity-header {
    background-image: url(/assets/images/campaign-img.png);
    background-position: center;
    background-size: cover;
    margin-top: 5.5rem;
    color: var(--white-color);
    display: flex;
    align-items: center;
    height: 50vh;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.activity-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to left, rgba(9, 41, 68, 0.7) 0%, rgba(9, 57, 97, 0.6) 100%);
    opacity: 0.5;
    z-index: 1;
}

.activity-header .container {
    z-index: 2;
}

.activity-header img {
    position: absolute;
    left: 50%;
    bottom: 50%;
    transform: translate(-50%, 50%);
    object-fit: contain;
    max-width: 350px;
    z-index: -1;
}

.activity-header h1 {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.3;
}

.activity-header p {
    font-size: 1.25rem;
    line-height: 1.6;
}

.activity h2,
.activity h5 {
    color: var(--blue-color-s);
    font-weight: bold;
}

.activity p,
.activity ul li {
    color: var(--blue-color-s);
    font-weight: 500;
}

.activity .subscribe-btn {
    color: var(--white-color);
    background-color: var(--blue-color-s);
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    width: 100%;
}

.activity .subscribe-btn:hover {
    background-color: var(--orange-color);
}

.activity .humanitarian {
    background-color: var(--blue-color-s);
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0px 4px 4px 0px #00000040;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 5px;
}

.activity .humanitarian h5 {
    font-weight: 600;
}

.activity span {
    font-size: 0.7rem;
}
.activity .humanitarian h5,
.activity .humanitarian span {
    color: var(--white-color);
}

.activity .read-more {
    color: var(--blue-color-s);
    transition: color 0.3s ease;
    font-weight: 500;
}

.activity .read-more:hover {
    color: var(--orange-color);
}

.activity .search-bar {
    display: flex;
    border-radius: 5px;
    overflow: hidden;
}
.activity .search-icon {
    background-color: var(--blue-color-s);
    color: white;
    padding: 10px;
    display: flex;
    align-items: center;
}
.activity .search-input {
    border-radius: 0;
}
.activity .search-input:focus {
    border-color: var(--blue-color-s);
}
.activity .line {
    width: 100%;
    height: 2px;
    background-color: var(--blue-color-s);
    margin-bottom: 10px;
}

.activity .posts .col-12 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.activity .posts img {
    border-radius: 10px;
    max-width: 100px;
}

.activity .posts .col-12 h5 {
    font-size: 0.9rem;
}

.activity .follow-us {
    padding: 10px;
    font-weight: 600;
    background-color: var(--blue-color-s);
    color: var(--white-color);
    text-align: center;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 4px 4px 0px;
}

.activity .social .social-media .nav-link {
    background-color: var(--gray-color);
    color: var(--blue-color-s);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 4px 4px 0px;
}

.activity .social-media .nav-link:hover {
    color: var(--orange-color);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .activity-header {
        margin-top: 4.5rem;
    }
    .activity-header h1 {
        font-size: 2.5rem;
    }

    .activity-header p {
        font-size: 1.1rem;
    }
}

@media (max-width: 1024px) {
    .activity-header {
        margin-top: 4rem;
        padding: 8rem 2rem;
        height: auto;
    }
}

@media (max-width: 992px) {
    .activity-header h1 {
        font-size: 2rem;
    }

    .activity-header p {
        font-size: 1rem;
    }

    .activity-header img {
        max-width: 300px;
    }
}

@media (max-width: 767px) {
    .activity-header {
        padding: 6rem 0rem;
    }

    .activity-header h1 {
        font-size: 1.75rem;
    }

    .activity-header p {
        font-size: 0.9rem;
    }

    .activity-header img {
        max-width: 250px;
    }

    .activity .posts .col-12 {
        gap: 1.5rem;
    }

    .activity .posts img {
        max-width: 150px;
    }

    .activity .subscribe-btn {
        width: auto;
    }
}

@media (max-width: 568px) {
    .activity-header h1 {
        font-size: 1.5rem;
    }

    .activity-header p {
        font-size: 0.85rem;
    }

    .activity-header img {
        max-width: 200px;
    }

    .activity .humanitarian h5 {
        font-size: 0.9rem;
    }

    .activity span {
        font-size: 0.65rem;
    }
}
.better-tomorrow-header {
    margin-top: 5.5rem;
    display: flex;
    align-items: center;
}

.better-tomorrow-header h1 {
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1.3;
    color: var(--blue-color-s);
}

.better-tomorrow-header img {
    width: 100%;
}

.better-tomorrow-header h2,
.better-tomorrow-header h5,
.better-future h2,
.better-future h5,
.target-group h3,
.target-group h5 {
    color: var(--blue-color-s);
    font-weight: bold;
}

.better-tomorrow-header p,
.target-group p,
.target-group li {
    color: var(--blue-color-s);
    font-weight: 500;
}

.target-group .border-img {
    width: 200px;
    margin-bottom: 1rem;
}

.better-tomorrow-header .donation-btn {
    color: var(--white-color);
    background-color: var(--blue-color-s);
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
}

.better-tomorrow-header .donation-btn:hover {
    background-color: var(--orange-color);
}

.better-tomorrow-header .card {
    background-color: var(--gray-color);
    color: var(--blue-color-s);
    font-weight: bold;
}

.better-tomorrow-header .card .progress {
    height: 20px;
    border-radius: 10px;
}
.better-tomorrow-header .card .progress-bar {
    background-color: var(--blue-color-s);
}

.better-future .row .col-md-3 .card img {
    width: 145px;
    height: 150px;
    object-fit: contain;
}

.target-group img {
    border-radius: 10px;
}

.target-group .contribution-experience .bottom-img {
    width: 100%;
    /* height: 400px; */
    object-fit: contain;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .better-tomorrow-header {
        margin-top: 4.5rem;
    }
    .better-tomorrow-header h1 {
        font-size: 2rem;
    }

    .better-tomorrow-header p {
        font-size: 1.1rem;
    }
}

@media (max-width: 992px) {
    .better-tomorrow-header h1 {
        font-size: 2rem;
    }

    .better-tomorrow-header p {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .better-tomorrow-header h1 {
        font-size: 1.75rem;
    }

    .better-tomorrow-header p {
        font-size: 0.9rem;
    }

    .target-group .contribution-experience {
        gap: 1rem;
    }

    .target-group .contribution-experience .bottom-img {
        height: auto;
    }
}

@media (max-width: 568px) {
    .better-tomorrow-header h1 {
        font-size: 1.3rem;
    }

    .better-tomorrow-header p {
        font-size: 0.85rem;
    }
}

.loader-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid var(--blue-color-s) !important;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
    margin-bottom: 1rem;
}

.swal2-container.swal2-top,
.swal2-container.swal2-center,
.swal2-container.swal2-bottom {
    z-index: 1000000;
}

.camping-details-img {
    overflow: hidden;
    position: relative;
    height: 50vh;
}

.camping-details-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to left, rgba(9, 41, 68, 0.7) 0%, rgba(9, 57, 97, 0.6) 100%);
    opacity: 0.5;
    z-index: 1;
}

.camping-details-img img {
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .order-col {
        order: -1;
        margin-bottom: 1rem;
    }

    .camping-details-img {
        height: auto;
    }
}

.not-found-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.not-found-page .card {
    max-width: 500px;
    margin: auto;
    border: 0;
    border-right: 5px solid var(--blue-color-s);
}

.not-found-page .card .card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.not-found-page .card img {
    max-width: 300px;
    margin-bottom: 1rem;
}

.not-found-page .card p {
    font-weight: 500;
    font-size: 1.2rem;
}

.not-found-page .card .back-btn {
    color: var(--white-color);
    background-color: var(--blue-color-s);
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
}

.not-found-page .card .back-btn:hover {
    background-color: var(--orange-color);
}

@media (max-width: 320px) {
    .not-found-page .card img {
        max-width: 100%;
    }

    .not-found-page .card .back-btn {
        font-size: 0.875rem;
    }

    .not-found-page .card p {
        font-size: 1rem;
    }
}

.dropdown-toggle::after {
    margin: 0 0.5rem;
}

.card .card-body p,
.card .card-body .card-text {
    color: var(--black-color);
}

.donation-btn {
    color: var(--white-color);
    background-color: var(--blue-color-s);
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
}

.donation-btn:hover {
    background-color: var(--orange-color);
}

.card .card-img-top {
    object-fit: cover !important;
    height: 100% !important;
    max-height: 100% !important;
    width: 100% !important;
    max-width: 100% !important;
}

.card .card-header {
    height: 100% !important;
}

.card .card-title {
    font-size: clamp(1rem, 1.5vw + 0.4rem, 1.2rem) !important;
    font-weight: 600 !important;
}

button,
a {
    font-size: clamp(1rem, 1vw + 0.5rem, 1.1rem);
}

p {
    font-size: clamp(0.8rem, 1vw + 0.3rem, 1rem) !important;
    line-height: 1.6;
    font-weight: 400;
}

h1 {
    font-size: clamp(2rem, 3vw + 1rem, 3rem) !important;
    font-weight: 700;
    line-height: 1.3;
}

h2 {
    font-size: clamp(1.75rem, 2.5vw + 0.8rem, 2.5rem) !important;
    font-weight: 600;
    line-height: 1.35;
}

h3 {
    font-size: clamp(1.5rem, 2vw + 0.7rem, 2rem) !important;
    font-weight: 600;
    line-height: 1.4;
}

h4 {
    font-size: clamp(1.1rem, 1.5vw + 0.6rem, 1.5rem) !important;
    font-weight: 500;
    line-height: 1.45;
}

h5 {
    font-size: clamp(1rem, 1.2vw + 0.5rem, 1.3rem) !important;
    font-weight: 500;
    line-height: 1.5;
}

h6 {
    font-size: clamp(0.95rem, 1vw + 0.4rem, 1rem) !important;
    font-weight: 500;
    line-height: 1.5;
}
