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

html {
    scroll-behavior: smooth;
}

/* RTL Support */
html[dir="rtl"] {
    direction: rtl;
}

html[dir="rtl"] body {
    direction: rtl;
    text-align: right;
}

/* RTL Carousel Fixes */
html[dir="rtl"] .owl-carousel {
    direction: rtl;
}


html[dir="rtl"] .owl-carousel .owl-stage {
    direction: ltr;
    display: flex;
}

html[dir="rtl"] .owl-carousel .owl-item {
    direction: rtl;
    float: right;
}

/* Fix for RTL carousel transforms */
html[dir="rtl"] .owl-carousel.owl-rtl .owl-item {
    float: right;
}

html[dir="rtl"] .owl-carousel.owl-rtl .owl-stage {
    right: 0;
    left: auto;
}

/* Ensure proper display in RTL */
html[dir="rtl"] .hero-slider .owl-item,
html[dir="rtl"] .events-carousel .owl-item {
    display: block;
    width: 100%;
}

/* Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease;
}

.preloader-logo-img {
    width: 180px;
    height: auto;
    max-width: 100%;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f0f0f0;
    border-top: 4px solid #84cc16;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body {
    font-family: 'Cairo', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header Styles */
.navbar {
    background: #fff !important;
    padding: 1rem 15px;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: #fff !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 0.7rem 15px;
}

.navbar-brand {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.navbar-logo {
    width: 154px;
    height: auto;
    display: block;
}

.navbar-nav {
    gap: 0.5rem;
    padding-right: 10px;
}

.navbar-nav .nav-link {
    color: #666 !important;
    font-weight: 500;
    margin: 0 0.1rem;
    transition: color 0.3s;
    padding: 0.5rem 0.4rem !important;
    white-space: nowrap;
}

.navbar-nav .nav-link.active {
    color: #84cc16 !important;
}

.navbar-nav .nav-link:hover {
    color: #84cc16 !important;
}

/* .navbar-actions {
    margin-left: 1rem;
} */

.btn-login-register {
    background: #8771B1;
    color: white;
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 50px;
    font-weight: 400;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 0.9rem;
    white-space: nowrap;
}

.btn-login-register:hover {
    background: #6d5a8f;
    color: white;
}

.btn-login-arrow {
    width: 20px;
    height: 20px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
}

.btn-login-arrow i {
    color: #fff;
    font-size: 0.6rem;
}

.btn-login-register:hover .btn-login-arrow {
    transform: rotate(0deg);
}

/* Profile Dropdown */
.profile-dropdown {
    position: relative;
}

.profile-toggle {
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
    font-family: 'Cairo', sans-serif;
    font-size: 0.95rem;
}

.profile-toggle:hover {
    background: #f5f5f5;
}

.profile-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f0f0f0;
}

.profile-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.profile-name {
    font-weight: 500;
    color: #333;
}

.profile-arrow {
    font-size: 0.7rem;
    color: #666;
    transition: transform 0.3s ease;
}

.profile-toggle[aria-expanded="true"] .profile-arrow {
    transform: rotate(180deg);
}

.profile-dropdown-menu {
    min-width: 200px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border: none;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.profile-dropdown-menu .dropdown-item {
    padding: 0.75rem 1.25rem;
    color: #333;
    font-family: 'Cairo', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.profile-dropdown-menu .dropdown-item i {
    width: 18px;
    text-align: center;
    color: #84cc16;
}

.profile-dropdown-menu .dropdown-item:hover {
    background: #f5f5f5;
    color: #84cc16;
}

.profile-dropdown-menu .dropdown-divider {
    margin: 0.5rem 0;
    border-color: #e9ecef;
}

.profile-dropdown-menu .dropdown-item:last-child {
    color: #666;
}

.profile-dropdown-menu .dropdown-item:last-child:hover {
    background: #f5fff7;
    color: #81C342;
}

.profile-dropdown-menu .dropdown-item:last-child i {
    color: #8771B1;
}

.language-selector {
    display: flex;
    background: #f0f0f0;
    border-radius: 50px;
    padding: 2px;
    gap: 2px;
}

.lang-btn {
    border: none;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-weight: 400;
    font-size: 0.9rem;
    transition: all 0.3s;
    cursor: pointer;
}

.lang-btn.lang-en {
    background: transparent;
    color: #666;
}

.lang-btn.lang-en.active {
    background: #84cc16;
    color: white;
}

.lang-btn.lang-ar {
    background: transparent;
    color: #666;
}

.lang-btn.lang-ar.active {
    background: #84cc16;
    color: #fff;
}

/* Hero Section - Slider Banner */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 70px;
}

.hero-slider {
    height: 100%;
}

.hero-slide {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}


.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
}

.hero-slide-title {
    font-weight: 500;
    font-size: 80px;
    color: white;
    line-height: 80px;
    text-align: right;
}

.hero-slide-title span {
    display: block;
    margin-bottom: 0.3rem;
}

.btn-explore {
    background: #84cc16;
    color: #000;
    padding: 0.7rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 400;
    border-radius: 50px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.btn-explore {
    position: relative;
    overflow: hidden;
}

.btn-explore::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #8771B1;
    transition: left 0.7s ease;
    z-index: 0;
}

.btn-explore:hover::before {
    left: 0;
}

.btn-explore:hover {
    background: #8771B1;
}

.btn-text {
    color: #000;
    transition: color 0.3s ease 0.1s;
    position: relative;
    z-index: 1;
}

.btn-explore:hover .btn-text {
    color: #fff;
}

.btn-arrow {
    width: 32px;
    height: 32px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    rotate: -45deg;
    position: relative;
    z-index: 1;
}

.btn-arrow i {
    color: #fff;
    font-size: 0.9rem;
    transition: transform 0.4s ease;
}

.btn-explore:hover .btn-arrow {
    background: #fff;
    transform: rotate(0deg);
}

.btn-explore:hover .btn-arrow i {
    color: #8771B1;
}

/* Owl Carousel Custom Styles - Navigation and Dots Hidden */
.hero-slider .owl-nav {
    display: none !important;
}

.hero-slider .owl-dots {
    display: none !important;
}

/* Section Styles */


.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #e74c3c;
    border-radius: 2px;
}

/* About Section */
.about-section {
    background: #fff;
    padding: 140px 0px 0px 0px;
}

.fetures-section {
    padding: 140px 0px 0px 0px;
}

.about-content {
    padding-right: 2rem;
}

/* Common Section Header and Title Classes */
.section-header {
    font-size: 0.9rem;
    font-weight: 400;
    color: #666;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title-main {
    font-size: 2.8rem;
    font-weight: 500;
    color: #282A39;
    line-height: 1.3;
    margin-bottom: 1rem;
}

/* Highlight Green Class - Works everywhere */
.highlight-green {
    color: #84cc16;
}

.section-title-main .highlight-green {
    color: #84cc16;
}

/* Common Section Text Class */
.section-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
    font-weight: 400;
    ;
}

/* Common Section Explore Button */
.btn-section-explore {
    background: #8771B1;
    color: white;
    padding: 0.6rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 400;
    border-radius: 50px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-section-explore::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #84cc16;
    transition: left 0.7s ease;
    z-index: 0;
}

.btn-section-explore:hover::before {
    left: 0;
}

.btn-section-explore:hover {
    background: #8771B1;
}

.btn-section-explore .btn-text {
    color: white;
    transition: color 0.3s ease 0.1s;
    position: relative;
    z-index: 1;
}

.btn-section-explore:hover .btn-text {
    color: #000;
}

.btn-section-explore .btn-arrow {
    width: 32px;
    height: 32px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    rotate: -45deg;
    position: relative;
    z-index: 1;
}

.btn-section-explore .btn-arrow i {
    color: #fff;
    font-size: 0.9rem;
    transition: transform 0.4s ease;
}

.btn-section-explore:hover .btn-arrow {
    background: #fff;
    transform: rotate(0deg);
}

.btn-section-explore:hover .btn-arrow i {
    color: #8771B1;
}

.about-image-wrapper {
    position: relative;
    border-radius: 6px;
    overflow: visible;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.about-image {
    width: 100%;
    height: 620px;
    display: block;
    object-fit: cover;
    object-position: center;
}

.about-overlay {
    position: absolute;
    bottom: 60px;
    left: -50px;
    background: white;
    border-radius: 12px;
    padding: 1.2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    z-index: 10;
}

.overlay-content {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
    text-align: center;
}

.overlay-text {
    font-size: 15px;
    font-weight: 400;
    color: #000;
    margin: 0;
}

.overlay-avatars {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
}

.overlay-users-image {
    width: 153px;
    height: auto;
    display: block;
}

/* Milestones Section */

/* Feature Cards Section - New Design */
.feature-card-new {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    text-align: left;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.feature-card-new:hover {
    background: #8771B1;
    border-color: #8771B1;
}

.feature-card-new:hover .feature-icon-new {
    color: white;
}

.feature-card-new:hover .feature-title-new {
    color: white;
}

.feature-card-new:hover .feature-description-new {
    color: rgba(255, 255, 255, 0.9);
}

.feature-card-new:hover .feature-link-new {
    color: white;
}

.feature-header-new {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon-new {
    font-size: 2.5rem;
    color: #181818;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.feature-icon-new i {
    font-size: 30px;
}

.feature-icon-books-new {
    gap: 0.2rem;
}

.feature-icon-books-new i {
    font-size: 2rem;
}

.feature-icon-stars-new {
    flex-direction: column;
    gap: 0.3rem;
    align-items: flex-start;
}

.stars-above-new {
    display: flex;
    gap: 0.2rem;
    font-size: 0.9rem;
}

.feature-title-new {
    font-size: 17px;
    font-weight: 600;
    color: #181818;
    margin: 0;
    line-height: 1.2;
}

.feature-description-new {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
    text-align: right;
}

.feature-link-new {
    color: #181818;
    text-decoration: none;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    float: right;
    margin-bottom: 20px;
}

.feature-link-new i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.feature-link-new:hover i {
    transform: translateX(3px);
}

/* Milestones Section */
.milestones-section {
    background: white;
    position: relative;
    padding: 140px 0px 0px 0px;
}

.milestones-section .container-fluid {
    position: relative;
}


.milestones-image {
    width: 100%;
    height: 620px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.milestones-content-wrapper {
    height: 100%;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0px 0px 0px 40px;
}

.milestones-dots {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.milestone-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d0d0d0;
    transition: background 0.3s ease;
}

.milestone-dot.active {
    background: #84cc16;
}

.milestones-label {
    font-size: 0.9rem;
    font-weight: 400;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.milestones-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
    margin-bottom: 2rem;
}

.milestones-title .highlight-green {
    color: #84cc16;
}

.milestones-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 3rem;
}

.milestones-stats {
    display: flex;
    gap: 0;
    align-items: flex-start;
    margin-top: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
}

.stat-item:first-child {
    padding-right: 3rem;
    border-left: 1px solid #e0e0e0;
    margin-left: 3rem;
}

.stat-avatars {
    display: flex;
    gap: 0;
    margin-bottom: 1.5rem;
    align-items: center;
    height: 48px;
}

.stat-avatars-image {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.stat-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid white;
    background-size: cover;
    background-position: center;
    margin-left: -12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    position: relative;
    flex-shrink: 0;
}

.stat-avatar:nth-child(1) {
    margin-left: 0;
    z-index: 5;
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

.stat-avatar:nth-child(2) {
    z-index: 4;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.stat-avatar:nth-child(3) {
    z-index: 3;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.stat-avatar:nth-child(4) {
    z-index: 2;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.stat-avatar:nth-child(5) {
    z-index: 1;
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.stat-icon {
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 1.5rem;
}

.stat-icon i {
    color: #b19cd9;
    font-size: 3.5rem;
    font-weight: 300;
    opacity: 0.8;
}

.stat-icon-image {
    width: auto;
    height: 60px;
    object-fit: contain;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 400;
    color: #181818;
    margin-bottom: 0.5rem;
    font-family: 'Cairo', sans-serif;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.stat-label {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    font-family: 'Cairo', sans-serif;
    text-align: center;
}

/* Events Section */
.event-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    height: 100%;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.event-content {
    padding: 1.5rem;
}

.event-date {
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.event-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.event-description {
    color: #666;
    font-size: 0.95rem;
}

/* Security Section */
.security-section {
    background: white;
    position: relative;
    padding: 140px 0px 0px 0px;
}

.security-section .section-header {
    text-align: center;
}

.security-section .section-title-main {
    text-align: center;
    margin-bottom: 2rem;
}

.security-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.security-cards {
    margin-top: 3rem;
}

.security-card {
    background: #f5f5f5;
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: left;
    height: 100%;
    transition: transform 0.3s ease;
    border-top-right-radius: 50px;
}

.security-card:hover {
    transform: translateY(-5px);
}

.security-card-guest {
    background: #f5f5f5;
}

.security-card-broadcast {
    background: #e8f5e9;
}

.security-card-alerts {
    background: #e3f2fd;
}

.security-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 1.5rem 0;
    color: white;
    font-size: 2rem;
}

.security-icon-purple {
    background: #8771B1;
}

.security-icon-green {
    background: #84cc16;
}

.security-icon-blue {
    background: #1976d2;
}

.security-card-title {
    font-size: 30px;
    font-weight: 500;
    color: #333;
    margin-bottom: 1rem;
    font-family: 'Cairo', sans-serif;
}

.security-card-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
    font-family: 'Cairo', sans-serif;
}

.security-line-left {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #8B4513;
    z-index: 1;
}

/* Purpose Section */
.purpose-section {
    background: white;
    padding: 140px 0px 0px 0px;
}

.purpose-image-wrapper {
    position: relative;
    height: 100%;
}

.purpose-image {
    width: 100%;
    height: 620px;
    object-fit: cover;
    object-position: center;
}

.purpose-content-wrapper {
    position: relative;
    padding-left: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.purpose-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.purpose-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.2rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    font-family: 'Cairo', sans-serif;
}

.purpose-check-icon {
    color: white;
    font-size: 0.7rem;
    margin-left: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background-color: #8771B1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.purpose-list li span {
    flex: 1;
}

@media (max-width: 991px) {
    .purpose-content-wrapper {
        padding-left: 0;
        padding-top: 3rem;
    }


    .purpose-image {
        height: 400px;
    }
}

/* News Section */
/* News Section - New Design */
.news-section {
    background: white;
    padding: 140px 0px 0px 0px;
    position: relative;
}

.news-section .section-header {
    text-align: center;
    margin-bottom: 1rem;
}

.news-section .section-title-main {
    text-align: center;
    margin-bottom: 3rem;
}

.news-left-column {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.news-item-small {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.news-item-image {

    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.news-item-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    object-position: center;
}

.news-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-item-title {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    font-family: 'Cairo', sans-serif;
}

.news-item-excerpt {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    font-family: 'Cairo', sans-serif;
}

.news-read-more {
    color: #282A39;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
    font-family: 'Cairo', sans-serif;
}

.news-read-more:hover {
    color: #84cc16;
}

.news-read-more i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.news-read-more:hover i {
    transform: translateX(3px);
}

/* Featured Article */
.news-featured {
    position: relative;
    height: 540px;
    border-radius: 8px;
    overflow: hidden;
}

.news-featured-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 45%;
    background-color: #ff6b6b;
    z-index: 1;
}

.news-featured-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    overflow: hidden;
}

.news-featured-img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    object-position: center;
}

.news-featured-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    background: white;
    padding: 1.8rem;
    z-index: 3;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.news-featured-overlay .news-item-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: #000;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    font-family: 'Cairo', sans-serif;
}

.news-featured-overlay .news-item-excerpt {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-family: 'Cairo', sans-serif;
}

.news-featured-overlay .news-read-more {
    color: #000;
    font-size: 0.9rem;
}

@media (max-width: 991px) {
    .news-featured {
        height: 500px;
        margin-top: 1rem;
    }


    .news-item-small {
        flex-direction: column;
    }

    .news-item-image {
        width: 100%;
        height: 200px;
    }
}

/* FAQ Section */
.faq-section {
    background: white;
    padding: 140px 0px 0px 0px;
}

.faq-section .section-header {
    text-align: center;
    margin-bottom: 1rem;
}

.faq-section .section-title-main {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-item {
    background: transparent;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 1.5rem;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.faq-question {
    background: transparent;
    padding: 0;
    font-weight: 500;
    color: #282A39;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
    font-size: 1.1rem;
    font-family: 'Cairo', sans-serif;
    margin-bottom: 0.8rem;
}

.faq-question:hover {
    color: #8771B1;
}

.faq-answer {
    padding: 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    font-family: 'Cairo', sans-serif;
    margin-top: 0.5rem;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.4s ease;
}

.faq-answer.active {
    max-height: 500px;
    opacity: 1;
    margin-top: 0.8rem;
}

.faq-icon-circle {
    width: 32px;
    height: 32px;
    border: 1px solid #8771B1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 1rem;
    transition: background-color 0.3s;
}

.faq-question:hover .faq-icon-circle {
    background-color: #84cc16;
    border: none;
    color: #000;
}

.faq-icon {
    color: white;
    font-size: 0;
    width: 12px;
    height: 12px;
    position: relative;
    display: inline-block;
    transition: transform 0.3s;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: #8771B1;
    transition: opacity 0.3s;
}

/* Horizontal line (always visible) */
.faq-icon::before {
    width: 12px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Vertical line (only for plus icon) */
.faq-icon::after {
    width: 2px;
    height: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
}

/* Hide vertical line for minus icon */
.faq-icon.fa-minus::after {
    opacity: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(0deg);
}

/* Footer */
/* Footer Section */
.footer {
    background: #212121;
    color: white;
    padding: 90px 0 30px;
    position: relative;
    margin-top: 140px;
}



.footer-logo-section {
    margin-bottom: 2rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 134px;
    height: auto;
}

.footer-logo-arabic {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer-arabic-text {
    font-size: 1.2rem;
    color: #8771B1;
    font-family: 'Cairo', sans-serif;
}

.footer-arabic-line {
    flex: 1;
    height: 2px;
    background-color: #84cc16;
    max-width: 100px;
}

.footer-tagline {
    color: #9a9a9a;
    font-size: 1rem;
    line-height: 1.6;
    font-family: 'Cairo', sans-serif;
    margin: 0;
}

.footer-tagline .highlight-green {
    color: #84cc16;
}

.footer-column-title {
    font-size: 1rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    font-family: 'Cairo', sans-serif;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #9a9a9a;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    font-family: 'Cairo', sans-serif;
}

.footer-links a:hover {
    color: #84cc16;
}

.footer-social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bdc3c7;
    font-size: 1.2rem;
    transition: color 0.3s;
    text-decoration: none;
}

.footer-social-link:hover {
    color: #84cc16;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: #9a9a9a;
    font-size: 0.9rem;
    font-family: 'Cairo', sans-serif;
}

.footer-bottom p {
    margin: 0;
    text-align: center !important;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: #8771B1;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(135, 113, 177, 0.3);
}

.scroll-to-top:hover {
    background-color: #84cc16;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(132, 204, 22, 0.4);
}

.scroll-to-top.show {
    display: flex;
}

.scroll-to-top i {
    transition: transform 0.3s ease;
}

.scroll-to-top:hover i {
    transform: translateY(-3px);
}

/* About Page Styles */
.about-page-banner {
    position: relative;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 107px;
}

.about-banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top;
    z-index: 1;
}

.about-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.about-banner-vertical-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #a67c52;
    height: 100%;
    z-index: 3;
}

.about-banner-title {
    position: relative;
    z-index: 3;
    color: white;
    font-size: 4rem;
    font-weight: 500;
    text-align: center;
    font-family: 'Cairo', sans-serif;
    margin: 0;
}

.about-joy-race-section {
    background: white;
    padding: 140px 0px 0px 0px;
}

.about-joy-race-content {
    margin-bottom: 2rem;
}

.about-joy-race-image {
    margin-top: 2rem;
}

.about-joy-race-img {
    width: 100%;
    height: 570px;
    object-fit: cover;
    object-position: center;
}

.about-joy-race-text {
    padding-left: 2rem;
}

.about-runners-stats {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.runners-avatars {
    flex-shrink: 0;
}

.runners-avatars-image {
    width: 140px;
    object-fit: cover;
}

.runners-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #282A39;
    margin: 0;
    font-family: 'Cairo', sans-serif;
}

.mission-vision-section {
    background: white;
    padding: 140px 0px 0px 0px;
}

.mission-vision-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: #84cc16;
    margin-bottom: 3rem;
    font-family: 'Cairo', sans-serif;
}

.mission-vision-item {
    margin-bottom: 2rem;
}

.mission-vision-image {
    margin-bottom: 1.5rem;
}

.mission-vision-img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    object-position: top;
}

.mission-vision-heading {
    font-size: 1.5rem;
    font-weight: 500;
    color: #282A39;
    margin-bottom: 1rem;
    font-family: 'Cairo', sans-serif;
}

@media (max-width: 991px) {
    .about-banner-title {
        font-size: 2.5rem;
    }

    .about-joy-race-text {
        padding-left: 0;
        padding-top: 2rem;
    }

    .about-joy-race-img,
    .mission-vision-img {
        max-width: 100%;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-section {
        margin-top: 56px;
        height: 70vh;
        min-height: 500px;
    }

    .hero-slide {
        height: 70vh;
        min-height: 500px;
    }

    .hero-slide-content {
        padding-left: 40px;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .hero-slide-title {
        font-size: 2.2rem;
    }

    .btn-explore {
        padding: 0.8rem 1.2rem;
        font-size: 1rem;
        gap: 0.8rem;
    }

    .btn-arrow {
        width: 28px;
        height: 28px;
    }

    .btn-arrow i {
        font-size: 0.8rem;
    }


    .section-title {
        font-size: 2rem;
    }


    .milestones-image-wrapper {
        min-height: 400px;
    }

    .milestones-content-wrapper {
        min-height: 400px;
    }

    .milestones-title {
        font-size: 2rem;
    }

    .milestones-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .events-section .section-title-main {
        font-size: 2rem;
    }

    .event-buttons {
        flex-direction: column;
    }

    .security-section .section-title-main {
        font-size: 2rem;
    }

    .security-card {
        padding: 2rem 1.5rem;
    }

    .security-icon-wrapper {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .empowerment-banner-wrapper {
        min-height: 450px;
    }

    .empowerment-banner-title {
        font-size: 1.8rem;
    }

    .empowerment-banner-content {
        padding: 1.5rem 0;
    }


    .about-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }


    .about-overlay {
        left: 15px;
        padding: 1rem;
        min-width: 180px;
    }

    .overlay-text {
        font-size: 0.9rem;
    }


    .navbar-nav {
        text-align: center;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .navbar-actions {
        flex-direction: column;
        width: 100%;
        margin-left: 0;
        gap: 1rem !important;
    }

    .btn-login-register {
        width: 100%;
        justify-content: center;
    }

    .profile-toggle {
        width: 100%;
        justify-content: center;
    }

    .profile-dropdown-menu {
        width: 100%;
        margin-top: 0.25rem;
    }

    .language-selector {
        align-self: center;
    }

    /* Profile Date Wrapper Responsive Fix */
    .profile-date-wrapper {
        width: 100%;
        max-width: 100%;
    }

    .profile-date-input {
        width: 100%;
        max-width: 100%;
        padding-left: 3rem;
        padding-right: 1rem;
    }

    .profile-date-icon {
        left: 10px;
        right: auto;
    }

    /* Booking Date Wrapper Responsive Fix */
    .booking-date-wrapper {
        width: 100%;
        max-width: 100%;
    }

    .booking-date-input {
        width: 100%;
        max-width: 100%;
        padding-left: 3rem;
        padding-right: 1rem;
    }

    .booking-date-icon {
        left: 10px;
        right: auto;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 60vh;
        min-height: 400px;
    }

    .hero-slide {
        height: 60vh;
        min-height: 400px;
    }

    .hero-slide-content {
        padding-left: 20px;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .hero-slide-title {
        font-size: 1.8rem;
    }

    .hero-slide-title span {
        margin-bottom: 0.2rem;
    }

    .btn-explore {
        padding: 0.7rem 1rem;
        font-size: 0.95rem;
        gap: 0.6rem;
    }

    .btn-arrow {
        width: 24px;
        height: 24px;
    }

    .btn-arrow i {
        font-size: 0.75rem;
    }

    .milestones-image-wrapper {
        min-height: 300px;
    }

    .milestones-content-wrapper {
        padding: 1.5rem 1rem;
        min-height: 300px;
    }

    .milestones-title {
        font-size: 1.6rem;
    }

    .milestones-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .empowerment-banner-wrapper {
        min-height: 500px;
    }

    .empowerment-banner-title {
        font-size: 2.2rem;
    }

    .empowerment-banner-content {
        padding: 2rem 0;
    }


    .event-card {
        margin-bottom: 2rem;
    }

    /* Profile Date Wrapper Responsive Fix */
    .profile-date-wrapper {
        width: 100%;
        max-width: 100%;
    }

    .profile-date-input {
        width: 100%;
        max-width: 100%;
        padding-left: 3rem;
        padding-right: 1rem;
    }

    .profile-date-icon {
        left: 10px;
        right: auto;
    }

    /* Booking Date Wrapper Responsive Fix */
    .booking-date-wrapper {
        width: 100%;
        max-width: 100%;
    }

    .booking-date-input {
        width: 100%;
        max-width: 100%;
        padding-left: 3rem;
        padding-right: 1rem;
    }

    .booking-date-icon {
        left: 10px;
        right: auto;
    }
}

/* Events Section - New Design */
.events-section {
    padding: 140px 0px 0px 0px;
}

.events-section .section-header {
    text-align: center;
}

.events-section .section-title-main {
    text-align: center;
    margin-bottom: 3rem;
}

.events-carousel {
    margin-top: 2rem;
}

/* Events Grid Layout (when 3 or fewer events, no carousel) */
.events-carousel.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 2rem;
}

@media (max-width: 992px) {
    .events-carousel.events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .events-carousel.events-grid {
        grid-template-columns: 1fr;
    }
}

.event-card-new {
    background: #f5f5f5;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    margin: 0 10px;
    border: 1px solid #ebebeb;
}

.events-grid .event-card-new {
    margin: 0;
}

.event-card-new:hover {
    transform: translateY(-5px);
}

.event-image-new {
    width: 100%;
    overflow: hidden;
    background: #e0e0e0;
}

.event-img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    object-position: top;
    display: block;
}

.event-content-new {
    padding: 2.5rem 1.5rem;
}

.event-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-family: 'Cairo', sans-serif;
}

.event-location i {
    color: #999;
    font-size: 0.9rem;
}

.event-title-new {
    font-size: 1.5rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 1.5rem;
    font-family: 'Cairo', sans-serif;
}

.event-details {
    margin-bottom: 1.5rem;
}

.event-detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    font-family: 'Cairo', sans-serif;
}

.event-detail-item i {
    color: #999;
    font-size: 0.9rem;
}

.event-bookings {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1rem;
}

.event-avatars {
    display: flex;
    gap: 0;
    align-items: center;
}

.event-avatars-image {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.event-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid white;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin-left: -8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.event-avatar:nth-child(1) {
    margin-left: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.event-avatar:nth-child(2) {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.event-avatar:nth-child(3) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.event-avatar:nth-child(4) {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.event-avatar:nth-child(5) {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.bookings-text {
    color: #666;
    font-size: 0.9rem;
    font-family: 'Cairo', sans-serif;
}

.event-buttons {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.btn-event {
    flex: 1;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
}

.btn-rice-info {
    background: white;
    color: #181818;
    border: 1px solid #84cc16;
}

.btn-rice-info:hover {
    background: white;
    border-color: #73b312;
    color: #181818;
}

.btn-register-now {
    background: #8771B1;
    color: white;
}

.btn-register-now:hover {
    background: #7659a0;
    color: white;
}

.btn-arrow-circle-green {
    width: 24px;
    height: 24px;
    background: #84cc16;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    transform: rotate(-45deg);
    transition: all 0.3s ease;
}

.btn-arrow-circle-green i {
    color: white;
    font-size: 0.7rem;
}

.btn-rice-info:hover .btn-arrow-circle-green {
    background: #73b312;
    transform: rotate(0deg);
}

.btn-arrow-circle-black {
    width: 24px;
    height: 24px;
    background: #181818;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    transform: rotate(-45deg);
    transition: all 0.3s ease;
}

.btn-register-now:hover .btn-arrow-circle-black {
    background: #000;
    transform: rotate(0deg);
}

/* Events Carousel Navigation - Hidden */
.events-carousel .owl-nav {
    display: none !important;
}

/* Events Carousel Dots */
.events-carousel .owl-dots {
    text-align: center;
    margin-top: 2rem;
}

.events-carousel .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d0d0d0;
    margin: 0 5px;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.events-carousel .owl-dots .owl-dot.active {
    background: #84cc16;
}

.events-carousel .owl-dots .owl-dot:hover {
    background: #84cc16;
}

/* Empowerment Banner Section */
.empowerment-banner-section {
    position: relative;
    padding: 140px 0px 0px 0px;
    overflow: hidden;
}

.empowerment-banner-wrapper {
    position: relative;
    min-height: 800px;
    display: flex;
    align-items: center;
}

.empowerment-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: 0% 20%;
    background-repeat: no-repeat;
    z-index: 1;
}

.empowerment-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 50%);
    z-index: 2;
}

.empowerment-banner-content {
    position: relative;
    z-index: 3;
    padding: 4rem 0;
}

.empowerment-banner-label {
    font-size: 0.9rem;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    font-family: 'Cairo', sans-serif;
    opacity: 0.7;
}

.empowerment-banner-title {
    font-size: 3rem;
    font-weight: 500;
    color: white;
    line-height: 1.3;
    margin-bottom: 2.5rem;
    font-family: 'Cairo', sans-serif;
}

.btn-empowerment-explore {
    background: white;
    color: #181818;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 400;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn-empowerment-explore::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #8771B1;
    transition: left 0.7s ease;
    z-index: 0;
}

.btn-empowerment-explore:hover::before {
    left: 0;
}

.btn-empowerment-explore:hover {
    background: white;
}

.btn-empowerment-explore .btn-text {
    color: #181818;
    transition: color 0.3s ease 0.1s;
    position: relative;
    z-index: 1;
}

.btn-empowerment-explore:hover .btn-text {
    color: white;
}

.btn-empowerment-explore .btn-arrow-circle {
    width: 24px;
    height: 24px;
    background: #181818;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    transform: rotate(-45deg);
}

.btn-empowerment-explore:hover .btn-arrow-circle {
    background: white;
    transform: rotate(0deg);
}

.btn-empowerment-explore:hover .btn-arrow-circle i {
    color: #8771B1;
}



.owl-theme .owl-dots .owl-dot span {
    display: none;
}

/* Events Page Styles */
.events-page-banner {
    position: relative;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 107px;
}

.events-banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top;
    z-index: 1;
}

.events-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.events-banner-title {
    position: relative;
    z-index: 3;
    color: white;
    font-size: 4rem;
    font-weight: 500;
    text-align: center;
    font-family: 'Cairo', sans-serif;
    margin: 0 0 1rem 0;
}

.events-banner-subtitle {
    position: relative;
    z-index: 3;
    color: white;
    font-size: 1.2rem;
    text-align: center;
    font-family: 'Cairo', sans-serif;
    margin: 0;
}

.events-banner-subtitle .highlight-green {
    color: #84cc16;
}

.events-tabs-section {
    margin-top: 100px;

}

.events-tabs {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.event-tab {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
}

.event-tab-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    background-color: #e5e5e5;
    transition: background-color 0.3s ease;
}

.event-tab.active .event-tab-icon-wrapper {
    background-color: #8771B1;
}

.event-tab-icon-wrapper i.fa-calendar {
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
    color: #333;
    transition: color 0.3s ease;
}

.event-tab.active .event-tab-icon-wrapper i.fa-calendar {
    color: white;
}

.event-tab-star,
.event-tab-clock {
    position: absolute;
    z-index: 2;
}

.event-tab-star {
    color: white;
    font-size: 0.6rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 2px;
    transition: color 0.3s ease;
}

.event-tab-clock {
    color: #333;
    font-size: 0.55rem;
    bottom: 6px;
    right: 6px;
    transition: color 0.3s ease;
}

.event-tab.active .event-tab-star {
    color: white;
}

.event-tab:not(.active) .event-tab-star {
    display: none;
}

.event-tab.active .event-tab-clock {
    display: none;
}

.event-tab-text {
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Cairo', sans-serif;
    transition: color 0.3s ease;
}

.event-tab.active .event-tab-text {
    color: #282A39;
}

.event-tab:not(.active) .event-tab-text {
    color: #999;
}

.event-tab:hover:not(.active) .event-tab-text {
    color: #8771B1;
}

.events-list-section {
    background: white;
    padding: 50px 0px 0px 0px;
}

@media (max-width: 991px) {
    .events-banner-title {
        font-size: 2.5rem;
    }

    .events-tabs {
        gap: 1rem;
    }

    .event-tab {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Event Details Page Styles */
.event-details-banner {
    position: relative;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 107px;
}

.event-details-banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top;
    z-index: 1;
}

.event-details-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.event-details-banner-vertical-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #a67c52;
    height: 100%;
    z-index: 3;
}

.event-details-banner-vertical-line-left {
    left: 0;
}

.event-details-banner-vertical-line-right {
    right: 0;
}

.event-details-banner-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.event-details-banner-title {
    position: relative;
    z-index: 3;
    color: white;
    font-size: 4rem;
    font-weight: 500;
    text-align: center;
    font-family: 'Cairo', sans-serif;
    margin: 0 0 1rem 0;
}

.event-details-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
}

.event-details-breadcrumb a {
    text-decoration: none;
}

.breadcrumb-item {
    color: white;
}

.breadcrumb-active {
    color: #84cc16;
}

.breadcrumb-active .breadcrumb-separator {
    color: #84cc16;
}

.event-details-top-section {
    background: white;
    padding: 140px 0px 0px 0px;
}


.event-details-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center;
}

.event-details-content {
    padding-left: 2rem;
}

.event-details-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: #282A39;
    margin-bottom: 1.5rem;
    font-family: 'Cairo', sans-serif;
}

.event-details-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
    font-family: 'Cairo', sans-serif;
}

.event-details-info {
    margin-bottom: 2rem;
}

.event-detail-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.event-info-icon {
    color: #84cc16;
    font-size: 24px;
    flex-shrink: 0;
}

.event-info-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.event-info-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Cairo', sans-serif;
}

.event-info-value {
    font-size: 1rem;
    color: #666;
    font-family: 'Cairo', sans-serif;
}

.event-details-action-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-event-details {
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    font-weight: 400;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
}

.btn-photos-videos {
    background: #84cc16;
    color: white;
}

.btn-photos-videos:hover {
    background: #73b312;
    color: white;
}

.btn-check-result {
    background: #8771B1;
    color: white;
}

.btn-check-result:hover {
    background: #7659a0;
    color: white;
}

.btn-arrow-circle-green,
.btn-arrow-circle-purple {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    transition: all 0.3s ease;
}

.btn-check-result .btn-arrow-circle-purple {
    background: rgba(255, 255, 255, 0.3);
}

.btn-event-details:hover .btn-arrow-circle-green,
.btn-event-details:hover .btn-arrow-circle-purple {
    background: white;
    color: #84cc16;
}

.btn-check-result:hover .btn-arrow-circle-purple {
    background: white;
    color: #8771B1;
}

/* Past Event Details - Black Arrow Circle */
.btn-arrow-circle-black-past {
    width: 24px;
    height: 24px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    transform: rotate(-45deg);
    transition: all 0.3s ease;
}

.btn-arrow-circle-black-past i {
    color: white;
    font-size: 0.7rem;
}

.btn-event-details:hover .btn-arrow-circle-black-past {
    background: #000;
    transform: rotate(0deg);
}

.btn-event-details:hover .btn-arrow-circle-black-past i {
    color: white;
}

/* Past Event Details - Black Arrow Circle for Check Result */
.btn-arrow-circle-black-result {
    width: 24px;
    height: 24px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    transform: rotate(-45deg);
    transition: all 0.3s ease;
}

.btn-arrow-circle-black-result i {
    color: white;
    font-size: 0.7rem;
}

.btn-check-result:hover .btn-arrow-circle-black-result {
    background: #000;
    transform: rotate(0deg);
}

.btn-check-result:hover .btn-arrow-circle-black-result i {
    color: white;
}

/* Race Distances Section */
.race-distances-section {
    background: white;
    padding: 140px 0px 0px 0px;
}

.race-distance-card {
    background: #f5f5f5;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #ebebeb;
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.race-distance-card:hover {
    transform: translateY(-5px);
}


.race-distance-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: top;
}

.race-distance-title {
    font-size: 1.3rem;
    font-weight: 500;
    color: #282A39;
    margin: 1.5rem 1.5rem 1rem 1.5rem;
    font-family: 'Cairo', sans-serif;
}

.race-distance-details {
    padding: 0 1.5rem;
    flex: 1;
}

.race-detail-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #666;
    font-family: 'Cairo', sans-serif;
}

.race-detail-item i {
    color: #84cc16;
    width: 20px;
    text-align: center;
}

.race-detail-icon-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}

.race-distance-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding: 10px 25px 30px;
}

.race-distance-buttons-top {
    display: flex;
    gap: 0.8rem;
}

.btn-race-map,
.btn-download-gpx {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.70rem;
    font-size: 0.90rem;
    font-weight: 400;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
    background: white;
    border: 1px solid #84cc16;
    color: #000;
}

.btn-race-map i,
.btn-download-gpx i {
    color: #84cc16;
    font-size: 1rem;
}

.btn-race-map:hover,
.btn-download-gpx:hover {
    background: #f5f5f5;
    border-color: #81C342;
}

.btn-race-map:hover i,
.btn-download-gpx:hover i {
    color: #81C342;
}

.btn-book-now {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.70rem;
    font-size: 0.90rem;
    font-weight: 400;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
    background: #8771B1;
    color: white;
    border: none;
}

.btn-arrow-circle-white {
    width: 20px;
    height: 20px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    transition: all 0.3s ease;
    transform: rotate(-45deg);
}

.btn-arrow-circle-white i {
    color: white;
    font-size: 0.7rem;
}

.btn-book-now:hover {
    background: #7659a0;
    color: white;
}

.btn-book-now:hover .btn-arrow-circle-white {
    background: #000;
    transform: rotate(0deg);
}

.btn-book-now:hover .btn-arrow-circle-white i {
    color: white;
}

/* What's Included Section */
.whats-included-section {
    background: white;
    padding: 140px 0px 0px 0px;
}

.included-item {
    text-align: center;
}

.included-item-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1rem;
    background: #f5f5f5;
}

.included-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.included-item-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: #282A39;
    margin: 0;
    font-family: 'Cairo', sans-serif;
}

@media (max-width: 991px) {
    .event-details-content {
        padding-left: 0;
        padding-top: 2rem;
    }



    .event-details-title {
        font-size: 2rem;
    }

    .event-details-banner-title {
        font-size: 2.5rem;
    }
}

/* Blogs Page Banner */
.blogs-page-banner {
    position: relative;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 107px;
}

.blogs-banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top;
    z-index: 1;

}

.blogs-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.blogs-banner-vertical-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #a67c52;
    height: 100%;
    z-index: 3;
}

.blogs-banner-vertical-line-left {
    left: 0;
}

.blogs-banner-vertical-line-right {
    right: 0;
}

.blogs-banner-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.blogs-banner-title {
    position: relative;
    z-index: 3;
    color: white;
    font-size: 4rem;
    font-weight: 500;
    text-align: center;
    font-family: 'Cairo', sans-serif;
    margin: 0;
}

/* Blogs Listing Section */
.blogs-listing-section {
    background: white;
    padding: 140px 0px 0px 0px;
}

.blog-post-item {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2rem;
}

.blog-post-image {
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.blog-post-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    object-position: center;
}

.blog-post-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-post-title {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    font-family: 'Cairo', sans-serif;
}

.blog-post-excerpt {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-family: 'Cairo', sans-serif;
}

.blog-read-more {
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
    font-family: 'Cairo', sans-serif;
}

.blog-read-more:hover {
    color: #84cc16;
}

.blog-read-more i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(3px);
}

@media (max-width: 991px) {
    .blog-post-item {
        flex-direction: column;
    }

    .blog-post-img {
        width: 100%;
        height: 250px;
    }

    .blogs-banner-title {
        font-size: 2.5rem;
    }
}

/* Blog Details Page Banner */
.blog-details-page-banner {
    position: relative;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 107px;
}

.blog-details-banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;

}

.blog-details-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.blog-details-banner-vertical-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #a67c52;
    height: 100%;
    z-index: 3;
}

.blog-details-banner-vertical-line-left {
    left: 0;
}

.blog-details-banner-vertical-line-right {
    right: 0;
}

.blog-details-banner-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.blog-details-banner-title {
    position: relative;
    z-index: 3;
    color: white;
    font-size: 4rem;
    font-weight: 500;
    text-align: center;
    font-family: 'Cairo', sans-serif;
    margin: 0 0 1rem 0;
}

.blog-details-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
}

.blog-details-breadcrumb a {
    text-decoration: none;
}

/* Blog Details Content Section */
.blog-details-content-section {
    background: white;
    padding: 140px 0px 0px 0px;
}

.blog-details-main {
    padding-right: 2rem;
}

.blog-details-section-header {
    font-size: 0.9rem;
    font-weight: 400;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-family: 'Cairo', sans-serif;
}

.blog-details-title {
    font-size: 2.2rem;
    font-weight: 500;
    color: #282A39;
    line-height: 1.3;
    margin-bottom: 2rem;
    font-family: 'Cairo', sans-serif;
}

.blog-details-title .highlight-green {
    color: #84cc16;
}

.blog-details-image-wrapper {
    margin: 2rem 0;
    border-radius: 8px;
    overflow: hidden;
}

.blog-details-main-image {
    width: 100%;
    height: 440px;
    display: block;
    object-fit: cover;
    object-position: top;
}

.blog-details-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 2rem;
    font-family: 'Cairo', sans-serif;
}

/* Blog Details Sidebar */
.blog-details-sidebar {
    padding-left: 2rem;
    position: sticky;
    top: 120px;
    align-self: flex-start;
}

.sidebar-title {
    font-size: 1.3rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 2rem;
    font-family: 'Cairo', sans-serif;
}

.sidebar-blog-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-blog-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.sidebar-blog-image {
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.sidebar-blog-img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    object-position: center;
}

.sidebar-blog-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sidebar-blog-title {
    font-size: 0.95rem;
    font-weight: 500;
    color: #000;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    font-family: 'Cairo', sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-blog-excerpt {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0.8rem;
    font-family: 'Cairo', sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-blog-read-more {
    color: #333;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: color 0.3s ease;
    font-family: 'Cairo', sans-serif;
}

.sidebar-blog-read-more i {
    color: #84cc16;
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.sidebar-blog-read-more:hover {
    color: #84cc16;
}

.sidebar-blog-read-more:hover i {
    transform: translateX(3px);
}

@media (max-width: 991px) {
    .blog-details-main {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .blog-details-sidebar {
        padding-left: 0;
    }

    .blog-details-banner-title {
        font-size: 2.5rem;
    }
}

/* Contact Page Banner */
.contact-page-banner {
    position: relative;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 107px;
}

.contact-banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top;
    z-index: 1;

}

.contact-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.contact-banner-vertical-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #a67c52;
    height: 100%;
    z-index: 3;
}

.contact-banner-vertical-line-left {
    left: 0;
}

.contact-banner-vertical-line-right {
    right: 0;
}

.contact-banner-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.contact-banner-title {
    position: relative;
    z-index: 3;
    color: white;
    font-size: 4rem;
    font-weight: 500;
    text-align: center;
    font-family: 'Cairo', sans-serif;
    margin: 0;
}

/* Contact Main Section */
.contact-main-section {
    background: white;
    padding: 140px 0px 0px 0px;
}

.contact-main-message {
    font-size: 2.8rem;
    font-weight: 500;
    color: #282A39;
    margin-bottom: 3rem;
    font-family: 'Cairo', sans-serif;
    line-height: 1.3;
}

.contact-main-message .highlight-green {
    color: #84cc16;
}

/* Contact Cards */
.contact-cards-row {
    margin-bottom: 4rem;
}

.contact-card {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 7px;
    padding: 2.5rem 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.contact-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.contact-card-icon i {
    font-size: 2.5rem;
    color: #84cc16;
}

.contact-card-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.8rem;
    font-family: 'Cairo', sans-serif;
}

.contact-card-text {
    font-size: 1rem;
    color: #666;
    margin: 0;
    font-family: 'Cairo', sans-serif;
}

/* Contact Form Section */
.contact-form-section {
    margin-top: 4rem;
}

.contact-form-info {
    padding-right: 2rem;
}

.contact-form-info .section-header {
    text-align: right;
    margin-bottom: 1.5rem;
}

.contact-form-instruction {
    font-size: 40px;
    font-weight: 500;
    color: #000;
    line-height: 1.5;
    font-family: 'Cairo', sans-serif;
    margin: 0;
    text-align: right !important;
}

/* Contact Form */
.contact-form {
    background: white;
}

.contact-form-input,
.contact-form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 0;
    font-size: 1rem;
    font-family: 'Cairo', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    transition: all 0.3s ease;
    text-align: right;
}

.contact-form-input::placeholder,
.contact-form-textarea::placeholder {
    color: #666;
    opacity: 1;
}

.contact-form-input:focus,
.contact-form-textarea:focus {
    outline: none;
    background-color: #ebebeb;
}

.contact-form-textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-contact-submit {
    background: #8771B1;
    color: white;
    border: none;
    padding: 0.75rem 2.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Cairo', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-contact-submit:hover {
    background: #6d5a8f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(135, 113, 177, 0.3);
}

/* Responsive Styles for Contact Page */
@media (max-width: 991px) {
    .contact-banner-title {
        font-size: 2.5rem;
    }

    .contact-main-message {
        font-size: 2rem;
    }

    .contact-form-instruction {
        font-size: 1.4rem;
    }

    .contact-form-info {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .contact-form-info .section-header {
        text-align: center;
    }

    .contact-form-instruction {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .contact-banner-title {
        font-size: 2rem;
    }

    .contact-main-message {
        font-size: 1.6rem;
    }

    .contact-form-instruction {
        font-size: 1.2rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .btn-contact-submit {
        width: 100%;
    }
}

/* Login Page Styles */
.login-page-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 0;
    background: white;
}

.login-image-col {
    position: relative;
    padding: 0;
}

.login-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-image {
    width: 90%;
    height: auto;
    object-fit: cover;
    border-radius: 0 20px 20px 0;
}

.login-image-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.login-logo-text {
    font-size: 1.8rem;
    font-weight: 500;
    color: #84cc16;
    font-family: 'Cairo', sans-serif;
    margin-bottom: 0.5rem;
}

.login-logo-arabic {
    font-size: 1.2rem;
    font-weight: 500;
    color: #84cc16;
    font-family: 'Cairo', sans-serif;
}

.login-form-col {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 6rem;
    background: white;
}

.login-form-wrapper {
    width: 100%;
    max-width: 500px;
    padding: 0 1rem;
}

.login-form-heading {
    font-size: 2rem;
    font-weight: 400;
    color: #000;
    margin-bottom: 2.5rem;
    font-family: 'Cairo', sans-serif;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
}

.login-form-heading-line1 {
    display: block;
    font-weight: 400;
    margin-bottom: 0.3rem;
}

.login-form-heading-line2 {
    display: block;
    font-weight: 700;
}

.forgot-password-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
}

.login-form-group {
    margin-bottom: 1.5rem;
}

.login-form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Cairo', sans-serif;
    color: #000;
    background: white;
    transition: border-color 0.3s ease;
}

.login-form-input::placeholder {
    color: #999;
    opacity: 1;
}

.login-form-input:focus {
    outline: none;
    border-color: #84cc16;
}

.login-password-wrapper {
    position: relative;
}

.login-password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    font-size: 1.1rem;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-password-toggle:hover {
    color: #84cc16;
}

.login-password-wrapper .login-form-input {
    padding-right: 3.5rem;
}

.btn-login-submit {
    width: 100%;
    background: #8771B1;
    color: white;
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Cairo', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.btn-login-submit:hover {
    background: #6d5a8f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(135, 113, 177, 0.3);
}

.btn-login-submit-arrow {
    width: 24px;
    height: 24px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-login-submit-arrow i {
    color: white;
    font-size: 0.7rem;
    transform: rotate(-45deg);
}

.btn-change-password {
    width: auto;
    background: white;
    color: #333;
    border: 1px solid #84cc16;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 400;
    font-family: 'Cairo', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    margin: 0 auto 2rem auto;
    text-decoration: none;
}

.btn-change-password:hover {
    background: #f0f8f0;
}

.btn-change-password-arrow {
    width: 20px;
    height: 20px;
    background: #84cc16;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-change-password-arrow i {
    color: white;
    font-size: 0.6rem;
    transform: rotate(-45deg);
}

.login-form-links {
    text-align: center;
}

.login-register-text {
    font-size: 1rem;
    color: #333;
    margin-bottom: 1rem;
    font-family: 'Cairo', sans-serif;
    text-align: center !important;
}

.login-register-link {
    color: #84cc16;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
    font-family: 'Cairo', sans-serif;
}

.login-register-link:hover {
    color: #6ba012;
}

.login-register-arrow {
    width: 20px;
    height: 20px;
    background: #84cc16;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.login-register-arrow i {
    color: white;
    font-size: 0.7rem;
    transform: rotate(-45deg);
}

.login-back-home {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #84cc16;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: color 0.3s ease;
    font-family: 'Cairo', sans-serif;
}

.login-back-home:hover {
    color: #6ba012;
}

.login-back-home-arrow {
    width: 20px;
    height: 20px;
    background: #84cc16;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.login-back-home-arrow i {
    color: white;
    font-size: 0.7rem;
    transform: rotate(-45deg);
}

/* Responsive Styles for Login Page */
@media (max-width: 991px) {
    .login-image-col {
        display: none;
    }

    .login-form-col {
        padding: 3rem 2rem;
    }

    .login-form-heading {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .login-form-wrapper {
        max-width: 100%;
    }

    .login-form-heading {
        font-size: 1.6rem;
    }

    .login-form-col {
        padding: 2rem 1.5rem;
    }
}

/* Registration Page Styles */
.register-page-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 0;
    background: white;
}

.register-image-col {
    position: relative;
    padding: 0;
}

.register-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.register-image {
    width: 90%;
    height: auto;
    object-fit: cover;
    border-radius: 0 20px 20px 0;
}

.register-image-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.register-logo-text {
    font-size: 1.8rem;
    font-weight: 500;
    color: #84cc16;
    font-family: 'Cairo', sans-serif;
    margin-bottom: 0.5rem;
}

.register-logo-arabic {
    font-size: 1.2rem;
    font-weight: 500;
    color: #8771B1;
    font-family: 'Cairo', sans-serif;
}

.register-form-col {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0rem 4rem 4rem;
    background: white;
}

.register-form-wrapper {
    width: 100%;
    max-width: 600px;
    padding: 0 1rem;
}

.register-form-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 2rem;
    font-family: 'Cairo', sans-serif;
}

/* Profile Picture */
.register-profile-picture {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.register-profile-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #f5f5f5;
    border: 2px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.register-profile-placeholder:hover {
    border-color: #84cc16;
}

.register-profile-placeholder i.fa-user {
    font-size: 3rem;
    color: #999;
}

.register-profile-edit {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 36px;
    height: 36px;
    background: #84cc16;
    border: 3px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.register-profile-edit:hover {
    background: #6ba012;
}

.register-profile-edit i {
    color: white;
    font-size: 0.9rem;
}

/* Registration Form */
.register-form-group {
    margin-bottom: 1.5rem;
}

.register-form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Cairo', sans-serif;
    color: #000;
    background: white;
    transition: border-color 0.3s ease;
}

.register-form-input::placeholder {
    color: #999;
    opacity: 1;
}

.register-form-input:focus {
    outline: none;
    border-color: #84cc16;
}

/* Phone Number Field */
.register-phone-wrapper {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    position: relative;
}

.register-country-code {
    padding: 0.875rem 2rem 0.875rem 0.6rem;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Cairo', sans-serif;
    color: #000;
    background: white;
    appearance: none;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.register-country-code:focus {
    outline: none;
    border-color: #84cc16;
}

.register-country-code-wrapper {
    position: relative;
}

.register-country-code-wrapper::after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 0.9rem;
    pointer-events: none;
    z-index: 1;
}

.register-phone-input-wrapper {
    position: relative;
    flex: 1;
}

.register-phone-input {
    width: 100%;
    padding: 0.875rem 1rem;
}

/* Date of Birth Field */
.register-date-wrapper {
    position: relative;
}

.register-date-input {
    padding-right: 3rem;
}

.register-date-input::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    right: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.register-date-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 1rem;
    cursor: pointer;
    pointer-events: auto;
    z-index: 1;
}

.register-date-icon:hover {
    color: #84cc16;
}

/* Password Fields */
.register-password-wrapper {
    position: relative;
}

.register-password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    font-size: 1.1rem;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.register-password-toggle:hover {
    color: #84cc16;
}

.register-password-wrapper .register-form-input {
    padding-right: 3.5rem;
}

/* Select Fields */
.register-select-wrapper {
    position: relative;
}

.register-form-select {
    width: 100%;
    padding: 0.875rem 1rem;
    padding-right: 3rem;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Cairo', sans-serif;
    color: #000;
    background: white;
    appearance: none;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.register-form-select:focus {
    outline: none;
    border-color: #84cc16;
}

.register-select-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 0.9rem;
    pointer-events: none;
}

/* Register Button */
.btn-register-submit {
    width: 100%;
    background: #8771B1;
    color: white;
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Cairo', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-register-submit:hover {
    background: #6d5a8f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(135, 113, 177, 0.3);
}

.btn-register-submit-arrow {
    width: 24px;
    height: 24px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-register-submit-arrow i {
    color: white;
    font-size: 0.7rem;
    transform: rotate(-45deg);
}

/* Registration Form Links */
.register-form-links {
    text-align: center;
}

.register-login-text {
    font-size: 1rem;
    color: #333;
    margin-bottom: 1rem;
    font-family: 'Cairo', sans-serif;
    text-align: center;
}

.register-login-link {
    color: #84cc16;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
    font-family: 'Cairo', sans-serif;
}

.register-login-link:hover {
    color: #6ba012;
}

.register-login-arrow {
    width: 20px;
    height: 20px;
    background: #84cc16;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.register-login-arrow i {
    color: white;
    font-size: 0.7rem;
    transform: rotate(-45deg);
}

.register-back-home {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #84cc16;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: color 0.3s ease;
    font-family: 'Cairo', sans-serif;
}

.register-back-home:hover {
    color: #6ba012;
}

.register-back-home-arrow {
    width: 20px;
    height: 20px;
    background: #84cc16;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.register-back-home-arrow i {
    color: white;
    font-size: 0.7rem;
    transform: rotate(-45deg);
}

/* Responsive Styles for Registration Page */
@media (max-width: 991px) {
    .register-image-col {
        display: none;
    }

    .register-form-col {
        padding: 3rem 2rem;
    }

    .register-form-heading {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .register-form-wrapper {
        max-width: 100%;
    }

    .register-form-heading {
        font-size: 1.6rem;
    }

    .register-form-col {
        padding: 2rem 1.5rem;
    }
}

/* Profile Page Styles */
/* Profile Banner Section */
.profile-page-banner {
    position: relative;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 107px;
}

.profile-banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top;
    z-index: 1;

}

.profile-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.profile-banner-vertical-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #a67c52;
    height: 100%;
    z-index: 3;
}

.profile-banner-vertical-line-left {
    left: 0;
}

.profile-banner-vertical-line-right {
    right: 0;
}

.profile-banner-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.profile-banner-title {
    position: relative;
    z-index: 3;
    color: white;
    font-size: 4rem;
    font-weight: 500;
    text-align: center;
    font-family: 'Cairo', sans-serif;
    margin: 0;
}

/* Profile Main Section */
.profile-main-section {
    background: white;
    padding: 120px 300px 0px;
}


/* Profile Picture */
.profile-picture-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.profile-picture {

    position: relative;
    overflow: hidden;
}

.profile-picture-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
}

.profile-picture-edit {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background: #84cc16;
    border: 3px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.profile-picture-edit:hover {
    background: #6ba012;
}

.profile-picture-edit i {
    color: white;
    font-size: 0.9rem;
}

/* Profile Form */
.profile-form-group {
    margin-bottom: 1.5rem;
}

.profile-form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Cairo', sans-serif;
    color: #333;
    background: #f5f5f5;
    transition: all 0.3s ease;
}

.profile-form-input:focus {
    outline: none;
    background: #e8e8e8;
}

.profile-form-input.editable {
    background: white;
    border: 1px solid #e5e5e5;
}

.profile-form-input.editable:focus {
    border-color: #84cc16;
    background: white;
}

/* Phone Number Field */
.profile-phone-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
}

.profile-phone-flag {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    color: #84cc16;
}

.profile-phone-input {
    flex: 1;
    padding: 0.875rem 1rem;
}

/* Date of Birth Field */
.profile-date-wrapper {
    position: relative;
    width: 100%;
}

.profile-date-input {
    width: 100%;
    padding-left: 3.5rem;
    padding-right: 1rem;
    box-sizing: border-box;
}

.profile-date-icon {
    position: absolute;
    left: 15px;
    right: auto;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
    z-index: 1;
}

/* Select Fields */
.profile-select-wrapper {
    position: relative;
}

.profile-form-select {
    width: 100%;
    padding: 0.875rem 1rem;
    padding-right: 3rem;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Cairo', sans-serif;
    color: #333;
    background: #f5f5f5;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.profile-form-select:focus {
    outline: none;
    background: #e8e8e8;
}

.profile-form-select.editable {
    background: white;
    border: 1px solid #e5e5e5;
}

.profile-form-select.editable:focus {
    border-color: #84cc16;
    background: white;
}

.profile-select-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
}

/* Profile Action Buttons */
.profile-action-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.btn-profile-edit {
    background: #8771B1;
    color: white;
    border: none;
    padding: 0.875rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Cairo', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-profile-edit:hover {
    background: #6d5a8f;
    color: white;
}

.btn-profile-edit-arrow {
    width: 20px;
    height: 20px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
}

.btn-profile-edit-arrow i {
    color: #fff;
    font-size: 0.6rem;
}

.btn-profile-edit:hover .btn-profile-edit-arrow {
    transform: rotate(0deg);
    background: #fff;
}

.btn-profile-edit:hover .btn-profile-edit-arrow i {
    color: #8771B1;
}

.btn-profile-change-password {
    background: white;
    color: #84cc16;
    border: 1px solid #84cc16;
    padding: 0.875rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Cairo', sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-profile-change-password:hover {
    background: #f5fff7;
    color: #6ba012;
    border-color: #6ba012;
}

.btn-profile-change-password-arrow {
    width: 20px;
    height: 20px;
    background: transparent;
    border: 1px solid #84cc16;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-45deg);
    transition: all 0.3s ease;
}

.btn-profile-change-password-arrow i {
    color: #84cc16;
    font-size: 0.6rem;
}

.btn-profile-change-password:hover .btn-profile-change-password-arrow {
    transform: rotate(0deg);
    background: #84cc16;
    border-color: #84cc16;
}

.btn-profile-change-password:hover .btn-profile-change-password-arrow i {
    color: white;
}

/* Responsive Styles for Profile Page */
@media (max-width: 768px) {
    .profile-banner-title {
        font-size: 2.5rem;
    }

    .profile-content-wrapper {
        padding: 2rem 1.5rem;
    }



    .profile-action-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-profile-edit,
    .btn-profile-change-password {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .profile-banner-title {
        font-size: 2rem;
    }

    .profile-content-wrapper {
        padding: 1.5rem 1rem;
    }


    .profile-picture-edit {
        width: 32px;
        height: 32px;
    }
}

/* My Bookings Page Styles */
/* My Bookings Banner */
.my-booking-banner {
    position: relative;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 107px;
}

.my-booking-banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;

}

.my-booking-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.my-booking-banner-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.my-booking-banner-title {
    position: relative;
    z-index: 3;
    color: white;
    font-size: 4rem;
    font-weight: 500;
    text-align: center;
    font-family: 'Cairo', sans-serif;
    margin: 0;
}

/* My Bookings Section */
.my-booking-section {
    background: white;
    padding: 140px 0px 0px 0px;
}

/* Booking Cards */
.booking-card-new {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid #ebebeb;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.booking-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.booking-image-new {
    width: 100%;
    overflow: hidden;
    background: #e0e0e0;
}

.booking-img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    object-position: top;
    display: block;
}

.booking-content-new {
    padding: 2.5rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: #f5f5f5;
}

.booking-id {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 1rem;
    font-family: 'Cairo', sans-serif;
}

.booking-id strong {
    font-weight: 600;
}

.booking-buttons {
    margin-top: auto;
    padding-top: 1rem;
}

.booking-buttons .btn-event {
    width: 100%;
    justify-content: center;
}

/* Responsive Styles for My Bookings Page */
@media (max-width: 768px) {
    .my-booking-banner-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .my-booking-banner-title {
        font-size: 2rem;
    }
}

/* Booking Modal Styles */
.booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    overflow-y: auto;
}

.booking-modal.show {
    display: block;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.booking-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.booking-modal-content {
    position: relative;
    background: white;
    max-width: 1200px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 2;
    margin: 2rem auto;
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

.booking-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: #333;
    font-size: 1.2rem;
}

.booking-modal-close:hover {
    background: rgba(0, 0, 0, 0.2);
}

.booking-modal-image-col {
    padding: 0;
    position: relative;
}

.booking-modal-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
    overflow: hidden;
}

.booking-modal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.booking-modal-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 2.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
    color: white;
}

.booking-modal-image-title {
    font-size: 2rem;
    font-weight: 500;
    font-family: 'Cairo', sans-serif;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: white;
}

.booking-modal-image-tagline {
    font-size: 1rem;
    font-weight: 300;
    font-family: 'Cairo', sans-serif;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.booking-modal-form-col {
    padding: 0;
    display: flex;
    align-items: stretch;
}

.booking-modal-form-wrapper {
    width: 100%;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.booking-modal-form-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 2rem;
    font-family: 'Cairo', sans-serif;
}

.booking-modal-form {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.booking-form-group {
    margin-bottom: 1.1rem;
}

.booking-form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
    font-family: 'Cairo', sans-serif;
    font-size: 0.95rem;
}

.booking-form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Cairo', sans-serif;
    color: #333;
    background: white;
    transition: border-color 0.3s ease;
}

.booking-form-input:focus {
    outline: none;
    border-color: #84cc16;
}

.booking-form-input::placeholder {
    color: #999;
}

/* Phone Number Field */
.booking-phone-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
}

.booking-phone-flag-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #006c35;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.booking-phone-flag-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.booking-phone-flag-fallback {
    font-size: 1.2rem;
    display: inline-block;
}

.booking-phone-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0;
    font-size: 15px;
    font-family: 'Cairo', sans-serif;
    color: #333;
}

.booking-phone-input:focus {
    outline: none;
    border: none;
}

.booking-phone-input::placeholder {
    color: #999;
}

/* Date Field */
.booking-date-wrapper {
    position: relative;
    width: 100%;
}

.booking-date-input {
    width: 100%;
    padding-left: 3.5rem;
    padding-right: 1rem;
    box-sizing: border-box;
}

.booking-date-icon {
    position: absolute;
    left: 15px;
    right: auto;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
    z-index: 1;
}

/* Select Fields */
.booking-select-wrapper {
    position: relative;
}

.booking-form-select {
    width: 100%;
    padding: 0.875rem 1rem;
    padding-right: 3rem;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Cairo', sans-serif;
    color: #333;
    background: white;
    appearance: none;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.booking-form-select:focus {
    outline: none;
    border-color: #84cc16;
}

.booking-select-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
}

/* Checkboxes */
.booking-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-family: 'Cairo', sans-serif;
}

.booking-checkbox {
    margin-top: 0.3rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: #81C342;
}

.booking-checkbox:checked {
    accent-color: #81C342;
    background-color: #81C342;
    border-color: #81C342;
}

.booking-checkbox-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* Total Amount Section */
.booking-total-section {
    margin-top: auto;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.booking-total-amount {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.booking-total-label {
    font-size: 1.1rem;
    color: #333;
    font-family: 'Cairo', sans-serif;
    font-weight: 500;
}

.booking-total-value {
    font-size: 1.5rem;
    color: #333;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.booking-currency-icon {
    width: auto;
    height: 1.2rem;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(58%) sepia(96%) saturate(1234%) hue-rotate(60deg) brightness(95%) contrast(87%);
}

/* Pay Button */
.btn-booking-pay {
    background: #8771B1;
    color: white;
    border: none;
    padding: 0.875rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Cairo', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-booking-pay:hover {
    background: #6d5a8f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(135, 113, 177, 0.3);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Styles for Booking Modal */
@media (max-width: 991px) {
    .booking-modal-content {
        width: 95%;
        max-height: 95vh;
    }

    .booking-modal-image-col {
        display: none;
    }

    .booking-modal-form-col {
        width: 100%;
    }

    .booking-modal-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .booking-modal-form-title {
        font-size: 2rem;
    }

    .booking-total-section {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }

    .btn-booking-pay {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .booking-modal-content {
        width: 100%;
        max-height: 100vh;
        margin: 0;
        border-radius: 0;
    }

    .booking-modal-form-wrapper {
        padding: 1.5rem 1rem;
    }

    .booking-modal-form-title {
        font-size: 1.75rem;
    }

    .booking-modal-image-title {
        font-size: 2rem;
    }

    .booking-total-value {
        font-size: 1.25rem;
    }
}

/* Gallery Page Styles */
/* Gallery Banner */
.gallery-page-banner {
    position: relative;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 107px;
}

.gallery-banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top;
    z-index: 1;

}

.gallery-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.gallery-banner-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.gallery-banner-title {
    position: relative;
    z-index: 3;
    color: white;
    font-size: 4rem;
    font-weight: 500;
    text-align: center;
    font-family: 'Cairo', sans-serif;
    margin: 0;
}

/* Gallery Filter Section */
.gallery-filter-section {
    background: white;
    padding: 110px 0 40px 0;
}

.gallery-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.gallery-filter-tab {
    background: white;
    color: #666;
    border: 1px solid #e5e5e5;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Cairo', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-filter-tab:hover {
    border-color: #84cc16;
    color: #84cc16;
}

.gallery-filter-tab.active {
    background: #84cc16;
    color: white;
    border-color: #84cc16;
}

/* Gallery Images Section */

.img-gallery-magnific {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.magnific-img {
    display: inline-block;
    width: calc(25% - 0.75rem);
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.magnific-img:hover {
    transform: translateY(-5px);
}

.magnific-img img {
    width: 100%;
    height: 280px;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.magnific-img:hover img {
    transform: scale(1.05);
}

.magnific-img a {
    position: relative;
    display: block;
    overflow: hidden;
}

.magnific-img .fa-search-plus {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.magnific-img:hover .fa-search-plus {
    opacity: 1;
}

.magnific-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
    z-index: 1;
}

.magnific-img:hover::before {
    background: rgba(0, 0, 0, 0.3);
}

.clear {
    clear: both;
}

a.image-popup-vertical-fit {
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
}

/* Magnific Popup CSS */
.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: 0.8;
}

.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1043;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    box-sizing: border-box;
}

.mfp-container:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
    display: none;
}

.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto;
}

.mfp-ajax-cur {
    cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -moz-zoom-out;
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
}

.mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
    cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.mfp-loading.mfp-figure {
    display: none;
}

.mfp-hide {
    display: none !important;
}

.mfp-preloader {
    color: #CCC;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -0.8em;
    left: 8px;
    right: 8px;
    z-index: 1044;
}

.mfp-preloader a {
    color: #CCC;
}

.mfp-preloader a:hover {
    color: #FFF;
}

.mfp-s-ready .mfp-preloader {
    display: none;
}

.mfp-s-error .mfp-content {
    display: none;
}

button.mfp-close,
button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;
    box-shadow: none;
    touch-action: manipulation;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

.mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: 0.65;
    padding: 0 0 18px 10px;
    color: #FFF;
    font-style: normal;
    font-size: 28px;
    font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
    opacity: 1;
}

.mfp-close:active {
    top: 1px;
}

.mfp-close-btn-in .mfp-close {
    color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    color: #FFF;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%;
}

.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #CCC;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap;
}

.mfp-arrow {
    position: absolute;
    opacity: 0.65;
    margin: 0;
    top: 50%;
    margin-top: -55px;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
    margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
    opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent;
}

.mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px;
}

.mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7;
}

.mfp-arrow-left {
    left: 0;
}

.mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px;
}

.mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
    right: 0;
}

.mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px;
}

.mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
    top: -40px;
}

.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000;
}

/* Main image in popup */
img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    box-sizing: border-box;
    padding: 40px 0 40px;
    margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
    line-height: 0;
}

.mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444;
}

.mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px;
}

.mfp-figure figure {
    margin: 0;
}

.mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto;
}

.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #F3F3F3;
    word-wrap: break-word;
    padding-right: 36px;
}

.mfp-image-holder .mfp-content {
    max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
    opacity: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
    opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
    opacity: 0.98;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
    opacity: 0;
}

.mfp-arrow-left:before {
    border-right: none !important;
}

.mfp-arrow-right:before {
    border-left: none !important;
}

button.mfp-arrow,
.mfp-counter {
    opacity: 0 !important;
    transition: opacity 200ms ease-in, opacity 2000ms ease-out;
}

.mfp-container:hover button.mfp-arrow,
.mfp-container:hover .mfp-counter {
    opacity: 1 !important;
}

@media screen and (max-width: 800px) and (orientation: landscape),
screen and (max-height: 300px) {
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0;
    }

    .mfp-img-mobile img.mfp-img {
        padding: 0;
    }

    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0;
    }

    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px;
    }

    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, 0.6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        box-sizing: border-box;
    }

    .mfp-img-mobile .mfp-bottom-bar:empty {
        padding: 0;
    }

    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px;
    }

    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, 0.6);
        position: fixed;
        text-align: center;
        padding: 0;
    }
}

@media all and (max-width: 900px) {
    .mfp-arrow {
        -webkit-transform: scale(0.75);
        transform: scale(0.75);
    }

    .mfp-arrow-left {
        -webkit-transform-origin: 0;
        transform-origin: 0;
    }

    .mfp-arrow-right {
        -webkit-transform-origin: 100%;
        transform-origin: 100%;
    }

    .mfp-container {
        padding-left: 6px;
        padding-right: 6px;
    }
}

/* Responsive Styles for Gallery Page */
@media (max-width: 768px) {
    .gallery-banner-title {
        font-size: 2.5rem;
    }

    .gallery-filter-tabs {
        gap: 1rem;
    }

    .gallery-filter-tab {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .magnific-img {
        width: calc(33.333% - 0.67rem);
    }
}

@media (max-width: 576px) {
    .gallery-banner-title {
        font-size: 2rem;
    }

    .gallery-filter-tabs {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .gallery-filter-tab {
        width: 100%;
        max-width: 300px;
    }

    .magnific-img {
        width: 100%;
    }
}

@media only screen and (min-width: 100px) and (max-width: 768px) {

    .hero-slide-title {
        line-height: 35px;
    }

    .partners-section {
        padding: 70px 0px 0px 0px;
    }

    .partners-section .section-title-main {
        margin-bottom: 35px;
    }

    .section-title-main {
        font-size: 1.7rem;
    }

    .section-text {
        margin-bottom: 1rem;
    }

    .about-image-wrapper {
        margin-top: 1.5rem;
    }

    .about-image {
        height: 320px;
    }

    .milestones-image {
        height: 320px;
    }

    .stat-item:first-child {
        padding-right: 0rem;
        border-left: none;
        margin-right: 0rem;
        margin-left: 0px;
    }

    .milestones-stats {
        align-items: center;
        margin-top: 2rem;
    }

    .empowerment-banner-title {
        font-size: 1.7rem;
        margin-bottom: 2rem;
    }

    .empowerment-banner-wrapper {
        min-height: 420px;
    }

    .events-section .section-title-main {
        margin-bottom: 2rem;
    }

    .milestones-content-wrapper {
        padding: 25px 0px 0px 0px;
    }

    .about-section {
        padding: 70px 0px 0px 0px;
    }

    .fetures-section {
        padding: 70px 0px 0px 0px;
    }

    .milestones-section {
        padding: 70px 0px 0px 0px;
    }

    .empowerment-banner-section {
        padding: 70px 0px 0px 0px;
    }

    .events-section {
        padding: 70px 0px 0px 0px;
    }

    .purpose-section {
        padding: 70px 0px 0px 0px;
    }

    .news-section {
        padding: 70px 0px 0px 0px;
    }

    .faq-section {
        padding: 70px 0px 0px 0px;
    }

    .race-distances-section {
        background: white;
        padding: 50px 0px 0px 0px;
    }

    .whats-included-section {
        padding: 70px 0px 0px 0px;
    }

    .blogs-listing-section {
        padding: 70px 0px 0px 0px;
    }

    .event-content-new {
        padding: 2rem 1.5rem;
    }

    .security-section {
        padding: 70px 0px 0px 0px;
    }

    .security-cards {
        margin-top: 2rem;
    }

    .security-card-title {
        font-size: 25px;
    }

    .news-item-img {
        width: 100%;
        height: 180px;
    }

    .news-item-small {
        display: flex;
        gap: 0.7rem;
    }

    .footer {
        margin-top: 70px;
        padding: 60px 0px 40px 0px;
    }

    .navbar-logo {
        width: 114px;
    }

    .about-page-banner {
        height: 220px;
        margin-top: 91px;
    }

    .blogs-page-banner {
        height: 220px;
        margin-top: 91px;
    }

    .blog-details-page-banner {
        height: 220px;
        margin-top: 91px;
    }

    .gallery-page-banner {
        height: 220px;
        margin-top: 91px;
    }

    .contact-page-banner {
        height: 220px;
        margin-top: 91px;
    }

    .profile-page-banner {
        height: 220px;
        margin-top: 91px;
    }

    .my-booking-banner {
        height: 220px;
        margin-top: 91px;
    }

    .events-page-banner {
        height: 220px;
        margin-top: 91px;
    }

    .event-details-banner {
        height: 220px;
        margin-top: 91px;
    }

    .about-joy-race-section {
        background: white;
        padding: 70px 0px 0px 0px;
    }

    .about-joy-race-img {
        height: 320px;
    }

    .about-joy-race-image {
        margin-top: 1rem;
    }

    .mission-vision-section {
        padding: 70px 0px 0px 0px;
    }

    .mission-vision-img {
        height: 250px;
    }

    .events-banner-title {
        margin: 0 0 0rem 0;
    }

    .events-tabs {
        display: block;
    }

    .events-tabs-section {
        margin-top: 60px;
    }

    .event-details-top-section {
        padding: 70px 0px 0px 0px;
    }

    .event-details-img {
        height: 320px;
    }

    .blog-details-title {
        font-size: 1.7rem;
    }

    .blog-details-content-section {
        padding: 70px 0px 0px 0px;
    }

    .blog-details-main-image {
        height: 320px;
    }

    .gallery-filter-section {
        padding: 70px 0 40px 0;
    }

    .contact-main-section {
        padding: 70px 0px 0px 0px;
    }

    .login-page-section {
        min-height: auto;
    }

    .profile-main-section {
        background: white;
        padding: 70px 0px 0px;
    }

    .my-booking-section {
        padding: 70px 0px 0px 0px;
    }
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 90px;
    left: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #1ebc57;
    color: #FFF;
    transform: scale(1.1);
}

p {
    /* text-align: justify !important; */
}


/* Partners Section */
.partners-section {
    background-color: white;
    padding: 140px 0px 0px 0px;
    text-align: center;
}

.partners-section .section-title-main {
    margin-bottom: 65px;
}

/* .partners-header style removed to use shared section headers */

.partners-carousel .partner-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    padding: 10px;
    width: 100%;
    transition: all 0.3s ease;
}

.partners-carousel .partner-logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(0%);
    opacity: 1;
    transition: all 0.3s ease;
}

.partners-carousel .partner-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .partners-header {
        padding: 1.5rem 2rem;
        min-width: auto;
        width: 90%;
    }

    .partners-logos-grid {
        gap: 2rem;
    }

    .partner-logo-item {
        width: 120px;
        height: 60px;
    }
}

.partners-carousel .partner-logo-item img {
    display: block;
    width: 100%;
    height: 100px;
    object-fit: contain;
    border: 1px solid #ebebeb;
    padding: 20px;
}