/* =========================================
   1. RESET & BASE STYLES scoped to .vicdan-wrapper
   ========================================= */

/* =========================================
   1. RESET & BASE STYLES scoped to .about_page
   ========================================= */
.about_page *,
.about_page ::before,
.about_page ::after {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #e5e7eb;
}

.about_page {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    scroll-behavior: smooth;
    margin: 0;
    color: #282828;
    /* brand-dark */

    /* gray-50 */
    overflow-x: hidden;
}

.about_page h1,
.about_page h2,
.about_page h3,
.about_page h4,
.about_page h5,
.about_page h6 {
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
}

.about_page a {
    color: inherit;
    text-decoration: inherit;
}

.about_page button,
.about_page input,
.about_page select,
.about_page textarea {
    font-family: inherit;
    font-size: 100%;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
    margin: 0;
    padding: 0;
}

.about_page button {
    background-color: transparent;
    background-image: none;
    cursor: pointer;
    text-transform: none;
}

.about_page img {
    display: block;
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}

section#donate-impact {
    height: 650px;
}

section#donate-impact.di-section {
  
    background: linear-gradient(135deg, #4E1F7C, #2e1047);
    color: white;
    position: relative;
    padding: 0px 0px !important;
    background: linear-gradient(135deg, #4E1F7C, #3b175e);
    color: #fff;
    overflow: hidden;
    font-family: Rubik, sans-serif;
    DIRECTION: RTL;
}

html[lang="en"] .navigation .gva_menu li a {
        text-align: LEFT !important;
    }
    
html[lang="en"] .navigation .gva_menu li a .icaret {
        margin-right: 8px;
        border: none !important;
        font-size: 14px;
        color: #8e8888;
        top: 4px;
    } 
    
 html[lang="en"] .gva-offcanvas-mobile .gva-navigation .gva_menu li a .icaret:before {
    font-family: unset;
}
 html[lang="en"] .navigation .gva_menu .sub-menu {
        top: 99%;
        opacity: 0;
        filter: alpha(opacity=0);
        position: absolute;
        min-width: 280px;
        background-color: #fff;
        border-top: 3px solid #684685;
        z-index: 999;
        left: 0 !important;
        padding: 10px 20px 0;
        visibility: hidden;
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-transition: all 0.2s ease-out;
        -o-transition: all 0.2s ease-out;
        transition: all 0.2s ease-out;
        -moz-transition: all 0.2s ease-out;
        -ms-transition: all 0.2s ease-out;
        -webkit-box-shadow: 0px 4px 4px 1px rgba(0, 0, 0, 0.2);
        box-shadow: 0px 4px 4px 1px rgba(0, 0, 0, 0.2);
        -webkit-transform: rotateX(-90deg);
        -moz-transform: rotateX(-90deg);
        -ms-transform: rotateX(-90deg);
        -o-transform: rotateX(-90deg);
        transform: rotateX(-90deg);
        -webkit-transform-origin: 0 0;
        -moz-transform-origin: 0 0;
        -ms-transform-origin: 0 0;
        -o-transform-origin: 0 0;
        transform-origin: 0 0;
    }

html[lang="en"] section#donate-impact.di-section {
  
    background: linear-gradient(135deg, #4E1F7C, #2e1047);
    color: white;
    position: relative;
    padding: 0px 0px !important;
    background: linear-gradient(135deg, #4E1F7C, #3b175e);
    color: #fff;
    overflow: hidden;
    font-family: Rubik, sans-serif;
    DIRECTION: LTR;
}

/* =========================================
   2. VARIABLES & UTILITIES
   ========================================= */
:root {
    /* We can keep root variables global or scope them if needed, but standard practice is root. 
       However, classes using them are now scoped. */
    --color-primary: #6d2435;
    --color-secondary: #b2946b;
    --color-green: #617f67;
    --color-beige: #f2d7b4;
    --color-dark: #282828;
    --color-white: #ffffff;
    --color-gray-50: #f9fafb;
    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-500: #6b7280;
    --color-gray-600: #4b5563;
}

/* Utils similar to Tailwind */
.about_page .container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1rem;
    padding-left: 1rem;
}

@media (min-width: 640px) {
    .about_page .container {
        max-width: 640px;
    }
}

@media (min-width: 768px) {
    .about_page .container {
        max-width: 768px;
    }
}

@media (min-width: 1024px) {
    .about_page .container {
        max-width: 1024px;
    }
}

@media (min-width: 1280px) {
    .about_page .container {
        max-width: 1280px;
    }
}

.about_page .hidden {
    display: none;
}

.about_page .block {
    display: block;
}

.about_page .flex {
    display: flex;
}

.about_page .grid {
    display: grid;
}

.about_page .relative {
    position: relative;
}

.about_page .absolute {
    position: absolute;
}

.about_page .fixed {
    position: fixed;
}

.about_page .w-full {
    width: 100%;
}

.about_page .h-full {
    height: 100%;
}

.about_page .text-center {
    text-align: center;
}

.about_page .transition {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

/* Flex Utils */
.about_page .items-center {
    align-items: center;
}

.about_page .justify-between {
    justify-content: space-between;
}

.about_page .justify-center {
    justify-content: center;
}

.about_page .flex-col {
    flex-direction: column;
}

.about_page .gap-2 {
    gap: 0.5rem;
}

.about_page .gap-4 {
    gap: 1rem;
}

.about_page .gap-6 {
    gap: 1.5rem;
}

.about_page .gap-8 {
    gap: 2rem;
}

/* Mobile specific */
@media (min-width: 768px) {
    .about_page .md\:flex {
        display: flex;
    }

    .about_page .md\:flex-row {
        flex-direction: row;
    }

    .about_page .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about_page .md\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .about_page .md\:text-6xl {
        font-size: 3.75rem;
    }

    .about_page .md\:text-2xl {
        font-size: 1.5rem;
    }

    .about_page .md\:mb-0 {
        margin-bottom: 0;
    }
}

@media (min-width: 1024px) {
    .about_page .lg\:flex {
        display: flex;
    }

    .about_page .lg\:hidden {
        display: none;
    }

    .about_page .lg\:grid-cols-4 {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .about_page .lg\:w-1\/2 {
        width: 50%;
    }
}

/* Annotations */
.about_page .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.about_page .reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.about_page .reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease;
}

.about_page .reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.about_page .reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}
.about_page .reveal-left p {
    font-size: 1.4rem !important;
    font-family: Rubik, sans-serif;
	color: #4b5563;
	line-height: 30px !important;
}
p.text-center.text-gray-500.text-sm {
    font-size: 1.5rem;
    padding-top: 15px;
	 font-family: Rubik, sans-serif;
	 	color: #4b5563;
}


.about_page .reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.about_page .delay-100 {
    transition-delay: 100ms;
}

.about_page .delay-200 {
    transition-delay: 200ms;
}

.about_page .delay-300 {
    transition-delay: 300ms;
}

/* =========================================
   3. COMPONENT CLASSES (SCOPED)
   ========================================= */

/* Top Bar */
.about_page .top-bar {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    font-size: 0.875rem;
    border-bottom: 1px solid var(--color-secondary);
}

.about_page .top-bar-link {
    transition: color 0.3s;
}

.about_page .top-bar-link:hover {
    color: var(--color-beige);
}

/* Header & Nav */
.about_page .main-header {
    background-color: var(--color-white);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 40;
}

.about_page .logo-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    letter-spacing: -0.025em;
}

.about_page .logo-subtitle {
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--color-secondary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.about_page .nav-item {
    position: relative;
    padding-top: 1rem;
    padding-bottom: 1rem;
    cursor: pointer;
    font-weight: 500;
    color: var(--color-dark);
    transition: color 0.3s;
}

.about_page .nav-item:hover {
    color: var(--color-primary);
}

.about_page .nav-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 14rem;
    background-color: var(--color-white);
    border-top: 2px solid var(--color-primary);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    display: none;
    z-index: 50;
    animation: fadeIn 0.3s ease-in-out;
}

.about_page .nav-item:hover .nav-dropdown {
    display: block;
}

.about_page .dropdown-link {
    display: block;
    padding: 0.5rem 1rem;
    border-bottom: 1px solid var(--color-gray-100);
    transition: background-color 0.2s;
}

.about_page .dropdown-link:hover {
    background-color: var(--color-gray-50);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.about_page .btn-primary {
    background-color: var(--color-secondary);
    color: var(--color-white);
    font-weight: 700;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.about_page .btn-primary:hover {
    background-color: var(--color-primary);
    transform: translateY(-0.25rem);
}

.about_page .cart-badge {
    background-color: var(--color-white);
    color: var(--color-secondary);
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    border-radius: 9999px;
    font-size: 0.75rem;
}

/* Hero */
.about_page .hero {
    position: relative;
    height: 350px;
    background-color: var(--color-primary);
    overflow: hidden;
}

.about_page .hero-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about_page .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgb(46 16 71 / 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}


.about_page .hero-badge {
    background-color: rgba(178, 148, 107, 0.8);
    backdrop-filter: blur(4px);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: inline-block;
	    font-family: Rubik, sans-serif;
}

.about_page .hero-text {
    font-size: 1.45rem;
    color: #f3f4f6;
    max-width: 42rem;
    margin: 0 auto;
    font-weight: 300;
    font-family: Rubik, sans-serif;
    line-height: 30px;
}

.about_page .hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.about_page .hero-divider {
    height: 0.25rem;
    width: 6rem;
    background: rgb(250 183 77 / var(--tw-bg-opacity, 1));
    margin: 0 auto 1.5rem auto;
    border-radius: 0.25rem;
}

.about_page .hero-text {
    font-size: 1.45rem;
    color: #f3f4f6;
    max-width: 50rem;
    margin: 0 auto;
    font-weight: 300;
    font-family: Rubik, sans-serif;
    line-height: 30px;
}

/* Sections */
.about_page .section-std {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: var(--color-white);
}

.about_page .section-title-wrap {
       margin-bottom: 4rem;
    text-align: center;
    font-family: Rubik, sans-serif;
    font-size: 2rem;
}

p.text-center.text-gray-500.text-sm {
    font-size: 1.5rem;
    padding-top: 15px;
	line-height: 30px;
}

h2.text-3xl.font-bold.mb-2 {
    font-size: 2em;
    color: #fff;
    margin-bottom: 14px;
	font-family: Rubik, sans-serif;
}


.about_page .stat-label {
    color: #fab74d;
    font-weight: bold;
    font-size: 2.125rem;
	font-family: Rubik, sans-serif;
}
.about_page .section-subtitle {
    color: #714596;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 2.2rem;
    font-family: Rubik, sans-serif;
}

.about_page .section-heading {
    font-size: 2.2rem ! important;
    font-weight: 700;
    color: rgb(156 163 175 / var(--tw-text-opacity, 1));
    margin-top: 0.5rem;
    font-family: Rubik, sans-serif;
}

h3.font-bold.text-lg.mb-2 {
    font-family: Rubik, sans-serif;
    color: #b2946b;
    font-size: 1.8rem;
}


h3.text-xl.font-bold.text-center.mb-3 {
    font-size: 2.0rem;
    font-family: Rubik, sans-serif;
    color: #714596;
        font-weight: bold;
}


/* Vision Cards */
.about_page .vision-icon-box {
    width: 4rem;
    height: 4rem;
    background-color: rgba(242, 215, 180, 0.3);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Value Cards */
.about_page .values-section {
    padding-top: 5rem;
    padding-bottom: 5rem;

    position: relative;
    overflow: hidden;
}

.about_page .value-card {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-bottom: 4px solid #714596;
    transition: transform 0.3s;
    cursor: pointer;
}

.about_page .value-card:hover {
    transform: translateY(-0.5rem);
}

.about_page .value-icon {
    width: 6rem;
    height: 6rem;
    background-color: rgba(178, 148, 107, 0.1);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    font-size: 1.875rem;
    margin: 0 auto 1.5rem auto;
	    background-color: #fab74d;
    color: #fff;
    transition: all 0.3s;
}

.about_page .value-card:hover .value-icon {
    background-color:#fab74d;
    color: white;
}

/* Variants */
.about_page .border-green {
    border-bottom-color: #714596;
}

.about_page .bg-green-soft {
   background-color: #fab74d;
    color: #fff;
}

.about_page .hover-bg-green:hover .value-icon {
    background-color:  #714596;
}

.about_page .border-primary {
    border-bottom-color: #714596;
}

.about_page .bg-primary-soft {
background-color: #fab74d;
    color: #fff;
}

.about_page .hover-bg-primary:hover .value-icon {
    background-color: var(--color-primary);
}

/* Stats */
.about_page .stats-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: rgb(78 31 124 / var(--tw-text-opacity, 1));
    color: white;
    position: relative;
    overflow: hidden;
}

.about_page .stat-item {
    padding: 1rem;
}

.about_page .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: transform 0.3s;
}

.about_page .stat-item:hover .stat-number {
    transform: scale(1.1);
}

.about_page .stat-label {
    color: #fab74d;
    font-weight: 500;
    font-size: 2rem;
}

/* Team */
.about_page .team-card {
    background-color: var(--color-gray-50);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s;
}

.about_page .team-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.about_page .team-img-wrap {
    height: 16rem;
    overflow: hidden;
}

.about_page .team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.5s;
}

.about_page .team-card:hover .team-img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.about_page .team-content {
    padding: 1.5rem;
    text-align: center;
}

.about_page .team-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-dark);
}

.about_page .team-role {
    color: var(--color-secondary);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Footer */
.about_page .site-footer {
    background-color: var(--color-dark);
    color: white;
    padding-top: 4rem;
    padding-bottom: 1.5rem;
}

.about_page .footer-link {
    display: block;
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.about_page .footer-link:hover {
    color: var(--color-secondary);
}

.about_page .social-link {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.about_page .social-link:hover {
    background-color: var(--color-secondary);
}

/* Floating Cart */
.about_page .float-cart-btn {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 50;
    background-color: var(--color-primary);
    color: white;
    padding: 1rem;
    border-radius: 9999px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.about_page .float-cart-btn:hover {
    transform: scale(1.1);
    background-color: var(--color-secondary);
}

.vicdan-wrapper *,
.vicdan-wrapper ::before,
.vicdan-wrapper ::after {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #e5e7eb;
}

.vicdan-wrapper {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    font-family: Rubik, sans-serif !important;
    scroll-behavior: smooth;
    margin: 0;
    color: #282828;
    /* brand-dark */
    background-color: #f9fafb;
    /* gray-50 */
    overflow-x: hidden;
}

.vicdan-wrapper h1,
.vicdan-wrapper h2,
.vicdan-wrapper h3,
.vicdan-wrapper h4,
.vicdan-wrapper h5,
.vicdan-wrapper h6 {
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
}

.vicdan-wrapper a {
    color: inherit;
    text-decoration: inherit;
}

.vicdan-wrapper button,
.vicdan-wrapper input,
.vicdan-wrapper select,
.vicdan-wrapper textarea {
    font-family: inherit;
    font-size: 100%;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
    margin: 0;
    padding: 0;
}

.vicdan-wrapper button {
    background-color: transparent;
    background-image: none;
    cursor: pointer;
    text-transform: none;
}

.vicdan-wrapper img {
    display: block;
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}

/* =========================================
   2. VARIABLES & UTILITIES
   ========================================= */
:root {
    /* We can keep root variables global or scope them if needed, but standard practice is root. 
       However, classes using them are now scoped. */
    --color-primary: #6d2435;
    --color-secondary: #b2946b;
    --color-green: #617f67;
    --color-beige: #f2d7b4;
    --color-dark: #282828;
    --color-white: #ffffff;
    --color-gray-50: #f9fafb;
    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-500: #6b7280;
    --color-gray-600: #4b5563;
}

/* Utils similar to Tailwind */
.vicdan-wrapper .container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1rem;
    padding-left: 1rem;
}

@media (min-width: 640px) {
    .vicdan-wrapper .container {
        max-width: 640px;
    }
}

@media (min-width: 768px) {
    .vicdan-wrapper .container {
        max-width: 768px;
    }
}

@media (min-width: 1024px) {
    .vicdan-wrapper .container {
        max-width: 1024px;
    }
}

@media (min-width: 1280px) {
    .vicdan-wrapper .container {
        max-width: 1280px;
    }
}

.vicdan-wrapper .hidden {
    display: none;
}

.vicdan-wrapper .block {
    display: block;
}

.vicdan-wrapper .flex {
    display: flex;
}

.vicdan-wrapper .grid {
    display: grid;
}

.vicdan-wrapper .relative {
    position: relative;
}

.vicdan-wrapper .absolute {
    position: absolute;
}

.vicdan-wrapper .fixed {
    position: fixed;
}

.vicdan-wrapper .w-full {
    width: 100%;
}

.vicdan-wrapper .h-full {
    height: 100%;
}

.vicdan-wrapper .text-center {
    text-align: center;
}

.vicdan-wrapper .transition {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

/* Flex Utils */
.vicdan-wrapper .items-center {
    align-items: center;
}

.vicdan-wrapper .justify-between {
    justify-content: space-between;
}

.vicdan-wrapper .justify-center {
    justify-content: center;
}

.vicdan-wrapper .flex-col {
    flex-direction: column;
}

.vicdan-wrapper .gap-2 {
    gap: 0.5rem;
}

.vicdan-wrapper .gap-4 {
    gap: 1rem;
}

.vicdan-wrapper .gap-6 {
    gap: 1.5rem;
}

.vicdan-wrapper .gap-8 {
    gap: 2rem;
}

/* Mobile specific */
@media (min-width: 768px) {
    .vicdan-wrapper .md\:flex {
        display: flex;
    }

    .vicdan-wrapper .md\:flex-row {
        flex-direction: row;
    }

    .vicdan-wrapper .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vicdan-wrapper .md\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .vicdan-wrapper .md\:text-6xl {
        font-size: 3.75rem;
    }

    .vicdan-wrapper .md\:text-2xl {
        font-size: 1.5rem;
    }

    .vicdan-wrapper .md\:mb-0 {
        margin-bottom: 0;
    }
}

@media (min-width: 1024px) {
    .vicdan-wrapper .lg\:flex {
        display: flex;
    }

    .vicdan-wrapper .lg\:hidden {
        display: none;
    }

    .vicdan-wrapper .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .vicdan-wrapper .lg\:w-1\/2 {
        width: 50%;
    }
}

/* Annotations */
.vicdan-wrapper .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.vicdan-wrapper .reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.vicdan-wrapper .reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease;
}

.vicdan-wrapper .reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.vicdan-wrapper .reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.vicdan-wrapper .reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.vicdan-wrapper .delay-100 {
    transition-delay: 100ms;
}

.vicdan-wrapper .delay-200 {
    transition-delay: 200ms;
}

.vicdan-wrapper .delay-300 {
    transition-delay: 300ms;
}



.atraf-hero{
    height:65vh;
    background:linear-gradient(rgba(78,31,124,.9),rgba(78,31,124,.9)),
               url('sites/default/files/program_prosthetics.png') center/cover;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;
    padding:20px;
}

.atraf-hero h1{
    font-size:50px;
    margin-bottom:20px;
}

.atraf-hero p{
    font-size:20px;
    max-width:700px;
    margin:auto;
}

/* ================= MAIN CARD ================= */

.atraf-card{
    background:#fff;
    border-radius:35px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
    transition:.4s;
    position:relative;
    margin-top:-80px;
}

.atraf-card1{
    background:#fff;
    border-radius:35px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
    transition:.4s;
    position:relative;
    margin-top:0px;
}

.atraf-card:hover{
    transform:translateY(-10px);
    box-shadow:0 30px 80px rgba(0,0,0,.15);
}

.atraf-blob{
    position:absolute;
    top:-50px;
    left:-50px;
    width:200px;
    height:200px;
    background:rgba(250,183,77,.3);
    border-radius:50%;
    filter:blur(60px);
    animation:atraf-blob 7s infinite;
}

@keyframes atraf-blob{
    0%{transform:translate(0,0) scale(1);}
    33%{transform:translate(40px,-40px) scale(1.1);}
    66%{transform:translate(-20px,20px) scale(.9);}
    100%{transform:translate(0,0) scale(1);}
}

.atraf-card-image{
    height:350px;
    overflow:hidden;
    cursor:pointer;
}

.atraf-card-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.atraf-card:hover img{
    transform:scale(1.08);
}

.atraf-card-content{
    padding:60px;
}

.atraf-icon{
    width:75px;
    height:75px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#f3e8ff;
    color:#714596;
    font-size:30px;
    margin-bottom:25px;
    transition:.3s;
}

.atraf-card:hover .atraf-icon{
    background:#714596;
    color:#fff;
}

.atraf-card-title{
    font-size:30px;
    margin-bottom:20px;
    color:#4a90c2;
        font-family: Rubik, sans-serif;
}


.atraf .about_page .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgb(74 144 194 / 40%);
    display: flex;
    align-items: center;
    justify-content: center;
}


.atraf .atraf-btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 30px;
    background: #4a90c2;
    color: #fff !important;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
    margin-right: auto;
    margin-left: auto;
    display: block;
    width: 210px;
    font-size: 20px;
    text-align: center;
    margin-top: 40px;
    font-family: Rubik, sans-serif;
}

.atraf .atraf-btn:hover{
    background:#fff;
    border: 1px solid #4a90c2;
    color:  #4a90c2 !important;;
}

h4 {
    font-family: Rubik, sans-serif
}
.atraf-features {
    padding: 60px 0 80px;
    font-family: Rubik, sans-serif;
}

.atraf-features h2 {
    text-align: center;
    font-size: 36px;
    color: #4a90c2;
    margin-bottom: 60px;
    font-family: Rubik, sans-serif;
}

.wosol .about_page .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgb(63 184 175 / 40%) !important;
    display: flex;
    align-items: center;
    justify-content: center;
}


.wosol .atraf-card-title {
    font-size: 30px;
    margin-bottom: 20px;
    color: #3fb8af;
    font-family: Rubik, sans-serif;
}

.wosol .atraf-features h2 {
    text-align: center;
    font-size: 36px;
    color: #3fb8af;
    margin-bottom: 60px;
}

.wosol .atraf-btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 30px;
    background: #3fb8af;
    color: #fff !important;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
    margin-right: auto;
    margin-left: auto;
    display: block;
       width: 210px;
    font-size: 20px;
    text-align: center;
    margin-top: 40px;
    font-family: Rubik, sans-serif;
}

.wosol .atraf-btn:hover{
    background:#fff;
    border: 1px solid  #3fb8af;
    color:  #3fb8af !important;;
}


.wosol .atraf-feature-box i {
    font-size: 32px;
    color: #3fb8af;
    margin-bottom: 15px;
}

.endmaj .about_page .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgb(243 156 74 / 40%) !important;
    display: flex;
    align-items: center;
    justify-content: center;
}


.endmaj .atraf-card-title {
    font-size: 30px;
    margin-bottom: 20px;
    color: #F39C4A;
    font-family: Rubik, sans-serif;
}

.endmaj .atraf-features h2 {
    text-align: center;
    font-size: 36px;
    color: #F39C4A;
    margin-bottom: 60px;
}

.endmaj .atraf-feature-box i {
    font-size: 32px;
    color: #F39C4A;
    margin-bottom: 15px;
}

.endmaj .atraf-btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 30px;
    background:#F39C4A;
    color: #fff !important;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
    margin-right: auto;
    margin-left: auto;
    display: block;
        width: 210px;
    font-size: 20px;
    text-align: center;
    margin-top: 40px;
    font-family: Rubik, sans-serif;
}

.endmaj .atraf-btn:hover{
    background:#fff;
    border: 1px solid #F39C4A;
    color: #F39C4A !important;;
}


.likeme .about_page .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgb(225 87 89 / 40%) !important;
    display: flex;
    align-items: center;
    justify-content: center;
}


.likeme .atraf-card-title {
    font-size: 30px;
    margin-bottom: 20px;
    color: #e15759;
    font-family: Rubik, sans-serif;
}

.likeme .atraf-features h2 {
    text-align: center;
    font-size: 36px;
    color: #e15759;
    margin-bottom: 60px;
}

.likeme .atraf-feature-box i {
    font-size: 32px;
    color: #e15759;
    margin-bottom: 15px;
}

.likeme .atraf-btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 30px;
    background:#e15759;
    color: #fff !important;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
    margin-right: auto;
    margin-left: auto;
    display: block;
        width: 210px;
    font-size: 20px;
    text-align: center;
    margin-top: 40px;
    font-family: Rubik, sans-serif;
}

.likeme .atraf-btn:hover{
    background:#fff;
    border: 1px solid #e15759;
    color: #e15759 !important;;
}


.money .about_page .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgb(123 198 126 / 40%) !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.money .atraf-btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 30px;
    background:#7BC67E;
    color: #fff !important;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
    margin-right: auto;
    margin-left: auto;
    display: block;
       width: 210px;
    font-size: 20px;
    text-align: center;
    margin-top: 40px;
    font-family: Rubik, sans-serif;
}

.money .atraf-btn:hover{
    background:#fff;
    border: 1px solid #7BC67E;
    color: #7BC67E !important;
}


.money .atraf-card-title {
    font-size: 30px;
    margin-bottom: 20px;
    color: #7BC67E;
    font-family: Rubik, sans-serif;
}

.money .atraf-features h2 {
    text-align: center;
    font-size: 36px;
    color: #7BC67E;
    margin-bottom: 60px;
}

.money .atraf-feature-box i {
    font-size: 32px;
    color: #7BC67E;
    margin-bottom: 15px;
}
.atraf-card-text{
    line-height:2;
    font-size:18px;
    color:#555;
    margin-bottom:20px;
}

.atraf-btn{
display: inline-block;
    padding: 14px 35px;
    border-radius: 30px;
    background: #FAB74D;
    color: #4E1F7C;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
    margin-right: auto;
    margin-left: auto;
    display: block;
        width: 210px;
    font-size: 20px;
    text-align: center;
    margin-top: 40px;
        font-family: Rubik, sans-serif;
}

.atraf-btn:hover{
    background:#fff;
    border:1px solid #FAB74D;
    color:#FAB74D;
}

/* ================= FEATURES ================= */

.atraf-features {
    padding: 40px 0 40px;
    margin-right: 40px;
    margin-left: 40px;
}

.atraf-features h2{
    text-align:center;
    font-size:36px;
    color:#4a90c2;
    margin-bottom:60px;
}

.atraf-features-grid{
    display:grid;
    gap:30px;
}

@media(min-width:768px){
.atraf-features-grid{
    grid-template-columns:repeat(4,1fr);
}
}

.atraf-feature-box{
    background:#fff;
    padding:40px;
    border-radius:25px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.07);
    transition:.3s;
}

.atraf-feature-box:hover{
    transform:translateY(-10px);
}

.atraf-feature-box i{
    font-size:32px;
    color:#4a90c2;
    margin-bottom:15px;
}

/* ================= IMPACT ================= */

.atraf-impact{
      background: #4E1F7C;
    color: #fff;
    padding: 100px 0;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}

.atraf-impact h2{
    margin-bottom:30px;
    font-size:36px;
    font-family: Rubik, sans-serif;
    color:#fff;
}

.atraf-impact-grid{
    display:grid;
    gap:30px;
}

@media(min-width:768px){
.atraf-impact-grid{
    grid-template-columns:repeat(4,1fr);
}
}

.atraf-counter{
    font-size:50px;
    font-weight:800;
    color:#FAB74D;
}

/* ================= FAQ ================= */

.atraf-faq{
    padding:100px 0;
}

.atraf-faq-item{
    background:#fff;
    margin-bottom:15px;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.atraf-faq-question{
    padding:20px;
    cursor:pointer;
    font-weight:600;
    background:#f3e8ff;
}

.atraf-faq-answer{
    padding:20px;
    display:none;
    line-height:1.8;
}

/* ================= CTA ================= */

.atraf-cta{
    background:#FAB74D;
    padding:80px 0;
    text-align:center;
    color:#4E1F7C;
}

.atraf-cta h2{
    font-size:34px;
    margin-bottom:20px;
}

.atraf {
    direction: rtl;
    font-family: Rubik, sans-serif;
}

html[lang="en"] .atraf {
    direction: ltr;
    font-family: Rubik, sans-serif;
}

.atraf-hero h1 {
    font-size: 50px;
    margin-bottom: 20px;
    font-family: Rubik, sans-serif;
    color: #fff;
}

/* =========================================
   3. COMPONENT CLASSES (SCOPED)
   ========================================= */

/* Top Bar */
.vicdan-wrapper .top-bar {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    font-size: 0.875rem;
    border-bottom: 1px solid var(--color-secondary);
}

.vicdan-wrapper .top-bar-link {
    transition: color 0.3s;
}

.vicdan-wrapper .top-bar-link:hover {
    color: var(--color-beige);
}

/* Header & Nav */
.vicdan-wrapper .main-header {
    background-color: var(--color-white);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 40;
}

.vicdan-wrapper .logo-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    letter-spacing: -0.025em;
}

.vicdan-wrapper .logo-subtitle {
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--color-secondary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.vicdan-wrapper .nav-item {
    position: relative;
    padding-top: 1rem;
    padding-bottom: 1rem;
    cursor: pointer;
    font-weight: 500;
    color: var(--color-dark);
    transition: color 0.3s;
}

.vicdan-wrapper .nav-item:hover {
    color: var(--color-primary);
}

.vicdan-wrapper .nav-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 14rem;
    background-color: var(--color-white);
    border-top: 2px solid var(--color-primary);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    display: none;
    z-index: 50;
    animation: fadeIn 0.3s ease-in-out;
}

.vicdan-wrapper .nav-item:hover .nav-dropdown {
    display: block;
}

.vicdan-wrapper .dropdown-link {
    display: block;
    padding: 0.5rem 1rem;
    border-bottom: 1px solid var(--color-gray-100);
    transition: background-color 0.2s;
}

.vicdan-wrapper .dropdown-link:hover {
    background-color: var(--color-gray-50);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.vicdan-wrapper .btn-primary {
    background-color: var(--color-secondary);
    color: var(--color-white);
    font-weight: 700;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.vicdan-wrapper .btn-primary:hover {
    background-color: var(--color-primary);
    transform: translateY(-0.25rem);
}

.vicdan-wrapper .cart-badge {
    background-color: var(--color-white);
    color: var(--color-secondary);
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    border-radius: 9999px;
    font-size: 0.75rem;
}

/* Hero */
.vicdan-wrapper .hero {
    position: relative;
    height: 350px;
    background-color: var(--color-primary);
    overflow: hidden;
}

.vicdan-wrapper .hero-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vicdan-wrapper .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(46 16 71 / 0.8), rgba(109, 36, 53, 0.4));
    display: flex;
    align-items: center;
    justify-content: center;
}

.vicdan-wrapper .hero-badge {
 background-color: rgba(178, 148, 107, 0.8);
    backdrop-filter: blur(4px);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: inline-block;
    font-family: Rubik, sans-serif;
}

.vicdan-wrapper .hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
	font-family: Rubik, sans-serif;
}

.vicdan-wrapper .hero-divider {
    height: 0.25rem;
    width: 6rem;
    background-color: #f3b24b;
    margin: 0 auto 1.5rem auto;
    border-radius: 0.25rem;
}

.vicdan-wrapper .hero-text {
    font-size: 1.45rem;
    color: #f3f4f6;
    max-width: 50rem;
    margin: 0 auto;
    font-weight: 300;
    font-family: Rubik, sans-serif;
    line-height: 30px;
}

/* Sections */
.vicdan-wrapper .section-std {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: var(--color-white);
}

.vicdan-wrapper .section-title-wrap {
    margin-bottom: 4rem;
    text-align: center;
}

.vicdan-wrapper .section-subtitle {
    color: var(--color-secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
    color: var(--color-secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 2.2rem;
    font-family: Rubik, sans-serif;
}

h3.text-xl.font-bold.text-center.mb-1 {
    font-size: 2.0rem;
    font-family: Rubik, sans-serif;
    color: #6d2435;
}
h3.text-2xl.font-bold.mb-2.icon-primary {
    font-size: 2.2rem ! important;
    font-weight: 700;
    color: var(--color-primary);
    margin-top: 0.5rem;
    font-family: Rubik, sans-serif;
}

.relative.bg-gray-50.p-8.rounded-2xl {
    background: transparent !important;
}

ul.space-y-2 {
    font-family: Rubik, sans-serif;
    color: rgb(75, 85, 99);
    line-height: 1.625;
    font-size: 1.4rem !important;
}

.vicdan-wrapper .relative {
    position: relative;
    font-family: Rubik, sans-serif;
    color: rgb(75, 85, 99);
    line-height: 1.625;
    font-size: 1.4rem !important;
}
.section-title-wrap.reveal p {
    font-size: 1.4rem !important;
    font-family: Rubik, sans-serif;
    color: #4b5563;
	line-height: 1.625;
	    line-height: 30px;
}

.reveal-right.active p {
    font-size: 1.4rem !important;
    font-family: Rubik, sans-serif;
    color: #4b5563;
	line-height: 1.625;
}

.vicdan-wrapper .section-heading {
   font-size: 1.875rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-top: 0.5rem;
    font-size: 2.2rem ! important;
    font-weight: 700;
    color: var(--color-primary);
    margin-top: 0.5rem;
    font-family: Rubik, sans-serif;
}

/* Vision Cards */
.vicdan-wrapper .vision-icon-box {
    width: 4rem;
    height: 4rem;
    background-color: rgba(242, 215, 180, 0.3);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Value Cards */
.vicdan-wrapper .values-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: var(--color-gray-50);
    position: relative;
    overflow: hidden;
}

.vicdan-wrapper .value-card {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-bottom: 4px solid var(--color-secondary);
    transition: transform 0.3s;
    cursor: pointer;
}

.vicdan-wrapper .value-card:hover {
    transform: translateY(-0.5rem);
}

.vicdan-wrapper .value-icon {
    width: 4rem;
    height: 4rem;
    background-color: rgba(178, 148, 107, 0.1);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    font-size: 1.875rem;
    margin: 0 auto 1.5rem auto;
    transition: all 0.3s;
}

.vicdan-wrapper .value-card:hover .value-icon {
    background-color: var(--color-secondary);
    color: white;
}

/* Variants */
.vicdan-wrapper .border-green {
    border-bottom-color: var(--color-green);
}

.vicdan-wrapper .bg-green-soft {
    background-color: #ecfdf5;
    color: var(--color-green);
}

.vicdan-wrapper .hover-bg-green:hover .value-icon {
    background-color: var(--color-green);
}

.vicdan-wrapper .border-primary {
    border-bottom-color: var(--color-primary);
}

.vicdan-wrapper .bg-primary-soft {
    background-color: #fff1f2;
    color: var(--color-primary);
}

.vicdan-wrapper .hover-bg-primary:hover .value-icon {
    background-color: var(--color-primary);
}

/* Stats */
.vicdan-wrapper .stats-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: var(--color-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.vicdan-wrapper .stat-item {
    padding: 1rem;
}

.vicdan-wrapper .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: transform 0.3s;
}

.vicdan-wrapper .stat-item:hover .stat-number {
    transform: scale(1.1);
}

.vicdan-wrapper .stat-label {
    color: var(--color-beige);
        font-weight: 500;
    font-size: 2rem;
}

i.fas.fa-flag.text-gray-300 {
    display: none;
}

/* Team */
.vicdan-wrapper .team-card {
    background-color: var(--color-gray-50);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s;
	    transition: all 0.3s;
    font-size: 1.5rem;
    padding-top: 15px;
    font-family: Rubik, sans-serif;
    color: #4b5563;
}
.vicdan-wrapper .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: transform 0.3s;
    color: #fff;
}
span.text-white.border.border-white.px-4.py-2.rounded-full {
    display: none;
}

h4.team-name.text-xl {
    transition: all 0.3s;
    font-size: 1.5rem;
    padding-top: 0px;
    font-family: Rubik, sans-serif;
    color: #6d2435;
}

.vicdan-wrapper .team-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.vicdan-wrapper .team-img-wrap {
    height: 16rem;
    overflow: hidden;
}

.vicdan-wrapper .team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.5s;
}

.vicdan-wrapper .team-card:hover .team-img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.vicdan-wrapper .team-content {
    padding: 1.5rem;
    text-align: center;
}

.vicdan-wrapper .team-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-dark);
}

.vicdan-wrapper .team-role {
    color: var(--color-secondary);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Footer */
.vicdan-wrapper .site-footer {
    background-color: var(--color-dark);
    color: white;
    padding-top: 4rem;
    padding-bottom: 1.5rem;
}

.vicdan-wrapper .footer-link {
    display: block;
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.vicdan-wrapper .footer-link:hover {
    color: var(--color-secondary);
}

.vicdan-wrapper .social-link {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.vicdan-wrapper .social-link:hover {
    background-color: var(--color-secondary);
}

/* Floating Cart */
.vicdan-wrapper .float-cart-btn {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 50;
    background-color: var(--color-primary);
    color: white;
    padding: 1rem;
    border-radius: 9999px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.vicdan-wrapper .float-cart-btn:hover {
    transform: scale(1.1);
    background-color: var(--color-secondary);
}

/* =========================================
   4. ORG CHART STYLES (SCOPED)
   ========================================= */

.vicdan-wrapper .org-tree {
    overflow-x: auto;
    padding: 2rem 0;
    text-align: center;
}

.vicdan-wrapper .org-tree ul {
    padding-top: 20px;
    position: relative;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    gap: 0rem;
    margin: 0;
    padding-left: 0;
}

.vicdan-wrapper .org-tree li {
    text-align: center;
    list-style-type: none;
    position: relative;
    padding: 20px 5px 0 5px;
    transition: all 0.5s;
}

/* We will use ::before and ::after to draw the connectors */
.vicdan-wrapper .org-tree li::before,
.vicdan-wrapper .org-tree li::after {
    content: '';
    position: absolute;
    top: 0;
    right: 50%;
    border-top: 2px solid var(--color-secondary);
    width: 50%;
    height: 20px;
}

.vicdan-wrapper .org-tree li::after {
    right: auto;
    left: 50%;
    border-left: 2px solid var(--color-secondary);
}

/* Remove connectors from the only child */
.vicdan-wrapper .org-tree li:only-child::after,
.vicdan-wrapper .org-tree li:only-child::before {
    display: none;
}

/* Remove space from the top of single children */
.vicdan-wrapper .org-tree li:only-child {
    padding-top: 0;
}

/* Remove left connector from first child and right connector from last child */
.vicdan-wrapper .org-tree li:first-child::before,
.vicdan-wrapper .org-tree li:last-child::after {
    border: 0 none;
}

/* Add some roundness to the connectors */
.vicdan-wrapper .org-tree li:last-child::before {
    border-right: 2px solid var(--color-secondary);
    border-radius: 0 5px 0 0;
}

.vicdan-wrapper .org-tree li:first-child::after {
    border-radius: 5px 0 0 0;
}

/* Downward connector from parents */
.vicdan-wrapper .org-tree ul ul::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    border-left: 2px solid var(--color-secondary);
    width: 0;
    height: 20px;
}

.vicdan-wrapper .org-card {
    border: 1px solid var(--color-gray-200);
    padding: 1.5rem 1rem;
    background: white;
    border-radius: 0.75rem;
    display: inline-block;
    min-width: 160px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    position: relative;
    z-index: 10;
    text-decoration: none;
}

.vicdan-wrapper .org-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: var(--color-primary);
}

.vicdan-wrapper .org-card.primary {
    background-color: var(--color-primary);
    color: white;
    border: none;
}

.vicdan-wrapper .org-card.primary .org-role,
.vicdan-wrapper .org-card.primary .org-name {
    color: white;
}

.vicdan-wrapper .org-card.secondary {
    background-color: #fdf6ec;
    /* Light beige */
    border-color: var(--color-secondary);
}

.vicdan-wrapper .org-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem auto;
    font-size: 1.25rem;
}

.vicdan-wrapper .org-card.primary .org-icon {
    background-color: rgba(255, 255, 255, 0.2);
}

.vicdan-wrapper .org-role {
    font-weight: 700;
    color: var(--color-primary);
    display: block;
    margin-bottom: 0.25rem;
     font-size: 1.5rem;
    font-family: Rubik, sans-serif;
}

.vicdan-wrapper .org-name {
    font-size: 0.85rem;
    color: var(--color-gray-600);
	font-size: 1.2rem;
    font-family: Rubik, sans-serif;
}
/* ==============*/

.space-y-4 h4.font-bold.text-lg {
    font-family: Rubik, sans-serif;
    color: #b2946b;
    font-size: 1.8rem;
}

.flex-shrink-0.w-12.h-12.rounded-full.bg-white.flex.items-center.justify-center.text-primary.shadow-sm {
    width: 4rem;
    height: 4rem;
    background-color: rgba(242, 215, 180, 0.3) !important;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.vicdan-wrapper .org-tree li:last-child::before {
    border-right: 0px solid var(--color-secondary) !important;
    border-radius: 5px 0px 0px 0 !important;
    right: auto !important;
    left: 50% !important;
    border-left: 2px solid var(--color-secondary) !important;
}

.sponsorships {
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.sponsorships-wrapper {
    position: relative;
}

/* ===== UTILITY CLASSES ===== */
.sponsorships-glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.sponsorships-card-hover {
    transition: all 0.3s ease;
}

.sponsorships-card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(109, 36, 53, 0.1);
}

.sponsorships-btn-primary {
    background: #6d2435;
    color: white;
    font-weight: bold;
    padding: 0.75rem 2rem;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: Rubik, sans-serif;
}

.sponsorships-btn-primary:hover {
    background: #b2946b;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(109, 36, 53, 0.2);
}

.sponsorships-btn-secondary {
    background: #b2946b;
    color: white;
    font-weight: bold;
    padding: 0.75rem 2rem;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: Rubik, sans-serif;
}


.sponsorships-btn-full {
    width: 100%;
}

/* ===== SECTION STYLES ===== */
/* Hero Section */
.sponsorships-section-hero {
    height: 450px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to top, rgba(109, 36, 53, 0.9), rgba(109, 36, 53, 0.4));
}

.sponsorships-hero-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.sponsorships-hero-badge {
    background-color: rgba(178, 148, 107, 0.8);
    backdrop-filter: blur(4px);
    color: white;
    padding: 0.25rem 1.5rem;
    border-radius: 9999px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: inline-block;
    font-size: 0.875rem;
}

.sponsorships-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
    line-height: 1.2;
}

.sponsorships-hero-divider {
    height: 0.25rem;
    width: 6rem;
    background-color: #b2946b;
    margin: 0 auto 2rem auto;
    border-radius: 0.25rem;
}

.sponsorships-hero-text {
    font-size: 1.25rem;
    color: #f3f4f6;
    max-width: 45rem;
    margin: 0 auto 2.5rem auto;
    font-weight: 300;
    line-height: 1.8;
}

.sponsorships-hero-btns {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* Stats Section */
.sponsorships-section-stats {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    max-width: 1200px;
    margin: -2.5rem auto 0;
    position: relative;
    z-index: 20;
}

.sponsorships-stat-item {
    text-align: center;
    padding: 1.5rem;
}

.sponsorships-stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #6d2435;
    margin-bottom: 0.5rem;
}

.sponsorships-stat-label {
    color: #666;
    font-size: 0.875rem;
}

/* Types Section */
.sponsorships-section-types {
    background: linear-gradient(to bottom, #f9f9f9 0%, #ffffff 100%);
    padding: 2rem 0;
}

.sponsorships-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.sponsorships-section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #6d2435;
    margin-bottom: 1rem;
}

.sponsorships-section-subtitle {
    color: #666;
    max-width: 42rem;
    margin: 0 auto;
    font-size: 1.125rem;
}

.sponsorships-section-divider {
    height: 0.25rem;
    width: 5rem;
    background-color: #b2946b;
    margin: 1rem auto 0;
    border-radius: 0.25rem;
}

.sponsorships-sponsorship-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
	font-family: Rubik, sans-serif;
}

.sponsorships-card-header {
    height: 12rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.sponsorships-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.sponsorships-card-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.sponsorships-card-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    position: relative;
    z-index: 10;
	font-family: Rubik, sans-serif;
}

.sponsorships-card-body {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
	min-height: 320px;
}

.sponsorships-card-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.sponsorships-features-list {
    margin-bottom: 1.5rem;
}

.sponsorships-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #666;
    font-size: 1.2rem;
}

.sponsorships-card-footer {
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
}

.sponsorships-price-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.sponsorships-price-label {
    color: #999;
    font-size: 1.375rem;
}

.sponsorships-price-amount {
    font-size: 1.5rem;
    font-weight: bold;
    color: #6d2435;
}

.sponsorships-custom-card {
    background: rgba(242, 215, 180, 0.1);
    border: 2px dashed #b2946b;
    border-radius: 1.5rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
}

/* FAQ Section */
.sponsorships-section-faq {
    background: #f9f9f9;
    padding: 6rem 0;
}

.sponsorships-faq-container {
    max-width: 75rem;
    margin: 0 auto;
    padding: 0 1rem;
    direction: rtl;
    font-family: Rubik, sans-serif !important;
}

.sponsorships-faq-item {
    background: white;
    border-radius: 1rem;
    border: 1px solid #eee;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.sponsorships-faq-question {
      width: 100%;
    text-align: right;
    padding: 1.5rem;
    font-weight: bold;
    color: #6d2435;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: Rubik, sans-serif;
    font-size: 1.5rem;
}

.sponsorships-faq-question:hover {
    background: #f9f9f9;
}

.sponsorships-faq-icon {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.sponsorships-faq-answer {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}

.sponsorships-faq-content {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.6;
}

/* ===== ANIMATION CLASSES ===== */
.sponsorships-reveal {
    opacity: 1;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.sponsorships-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.sponsorships-reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.sponsorships-reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.sponsorships-reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.sponsorships-reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.sponsorships-reveal-zoom {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.sponsorships-reveal-zoom.active {
    opacity: 1;
    transform: scale(1);
}

.sponsorships-delay-100 { transition-delay: 0.1s; }
.sponsorships-delay-200 { transition-delay: 0.2s; }
.sponsorships-delay-300 { transition-delay: 0.3s; }
.sponsorships-delay-400 { transition-delay: 0.4s; }

/* ===== LAYOUT CLASSES ===== */
.sponsorships-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.sponsorships-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* ===== TOAST NOTIFICATION ===== */
.sponsorships-toast {
    position: fixed;
    bottom: 6rem;
    left: 50%;
    transform: translateX(-50%);
    background: #282828;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 110;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: sponsorships-slideUp 0.3s ease;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.sponsorships-toast.hidden {
    display: none;
}

@keyframes sponsorships-slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* ===== SCROLLBAR ===== */
.sponsorships ::-webkit-scrollbar {
    width: 8px;
}

.sponsorships ::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.sponsorships ::-webkit-scrollbar-thumb {
    background: #6d2435;
    border-radius: 4px;
}

.sponsorships ::-webkit-scrollbar-thumb:hover {
    background: #b2946b;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (min-width: 640px) {
    .sponsorships-grid-sm-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sponsorships-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 768px) {
    .sponsorships-hero-btns {
        flex-direction: row;
    }
    
    .sponsorships-grid-md-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sponsorships-grid-md-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .sponsorships-grid-md-4 {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .sponsorships-container {
        padding: 0 2rem;
    }
    
    .sponsorships-section-stats {
        margin-top: -2.5rem;
    }
    
    .sponsorships-stat-item {
        border-right: 1px solid #eee;
    }
    
    .sponsorships-stat-item:last-child {
        border-right: none;
    }
}

@media (min-width: 1024px) {
    .sponsorships-grid-lg-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .sponsorships-grid-lg-4 {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .sponsorships-container {
        padding: 0;
    }
}

@media (max-width: 768px) {
    .sponsorships-hero-title {
        font-size: 2.5rem;
    }
    
    .sponsorships-hero-text {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .sponsorships-hero-btns {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .sponsorships-hero-btns .sponsorships-btn-primary,
    .sponsorships-hero-btns .sponsorships-btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .sponsorships-section-title {
        font-size: 2rem;
    }
    
    .sponsorships-section-types,
    .sponsorships-section-faq {
        padding: 3rem 0;
    }
    
    .sponsorships-section-stats {
        margin-top: -1.5rem;
        padding: 1.5rem;
    }
    
    .sponsorships-stat-number {
        font-size: 2rem;
    }
    
    .sponsorships-stat-item {
        border-bottom: 1px solid #eee;
        padding: 1rem;
    }
    
    .sponsorships-stat-item:last-child {
        border-bottom: none;
    }
}

@media (max-width: 480px) {
    .sponsorships-hero-title {
        font-size: 2rem;
    }
    
    .sponsorships-hero-badge {
        font-size: 0.75rem;
        padding: 0.25rem 1rem;
    }
    
    .sponsorships-section-title {
        font-size: 1.75rem;
    }
    
    .sponsorships-card-title {
        font-size: 1.25rem;
    }
    
    .sponsorships-card-body {
        padding: 1.5rem;
    }
    
    .sponsorships-price-amount {
        font-size: 1.25rem;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .sponsorships-section-hero {
        height: auto;
        background: white !important;
    }
    
    .sponsorships-hero-title {
        color: #6d2435 !important;
    }
    
    .sponsorships-hero-text {
        color: #666 !important;
    }
    
    .sponsorships-btn-primary,
    .sponsorships-btn-secondary {
        display: none !important;
    }
    
    .sponsorships-sponsorship-card {
        break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
}
.path-sadqt-jaryt .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(109, 36, 53, 0.9), rgba(109, 36, 53, 0.4));
    display: flex;
    align-items: center;
    justify-content: center;
}

    .path-sadqt-jaryt .container {
        width: 100%;
        padding: 0px;
    }

.path-sadqt-jaryt .sponsorships-hero-img {
    /* position: absolute; */
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    display: block;
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}


.path-sadqt-jaryt .sponsorships-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
    line-height: 1.2;
    font-family: Rubik, sans-serif;
}
.path-sadqt-jaryt .sponsorships-hero-text {
    font-size: 1.25rem;
    color: #f3f4f6;
    max-width: 45rem;
    margin: 0 auto 2.5rem auto;
    font-weight: 300;
    line-height: 1.8;
    font-family: Rubik, sans-serif;
}
