.goals-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden
}

.goals-header-content {
    position: relative;
    z-index: 1
}

.goals-header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) scale(0);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    pointer-events: none;
    animation: goals-ring-expand 1.2s ease-out forwards;
    animation-play-state: paused
}

.goals-header::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) scale(0);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    pointer-events: none;
    animation: goals-ring-expand 1.2s .2s ease-out forwards;
    animation-play-state: paused
}

.goals-header.is-visible::before, .goals-header.is-visible::after {
    animation-play-state: running
}

@keyframes goals-ring-expand {
    to {
        transform: translate(-50%,-50%) scale(1)
    }
}

.goals-title {
    font-size: 39px;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: -.025em;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease,transform .7s ease
}

.goals-header.is-visible .goals-title {
    opacity: 1;
    transform: translateY(0)
}

.goals-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.75rem 0;
    opacity: 0;
    transition: opacity .6s .3s ease
}

.goals-header.is-visible .goals-ornament {
    opacity: 1
}

.goals-ornament-line {
    height: 2px;
    width: 0;
    background: var(--base-bg);
    transition: width .8s .5s cubic-bezier(.22,1,.36,1)
}

.goals-header.is-visible .goals-ornament-line {
    width: 70px
}

.goals-ornament-diamond {
    width: 10px;
    height: 10px;
    border: 2px solid var(--primary-color);
    transform: rotate(45deg) scale(0);
    flex-shrink: 0;
    transition: transform .5s .6s cubic-bezier(.34,1.56,.64,1)
}

.goals-header.is-visible .goals-ornament-diamond {
    transform: rotate(45deg) scale(1)
}

.goals-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 520px;
    margin: 0 auto;
    line-height: 2;
    font-weight: 400;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .7s .4s ease,transform .7s .4s ease
}

.goals-header.is-visible .goals-subtitle {
    opacity: 1;
    transform: translateY(0)
}

@media(max-width:768px) {
    .goals-title {
        font-size: 1.75rem
    }

    .goals-subtitle {
        font-size: .95rem
    }

    .goals-header.is-visible .goals-ornament-line {
        width: 40px
    }
}

@media(prefers-reduced-motion:reduce) {
    .goals-title, .goals-ornament, .goals-ornament-line, .goals-ornament-diamond, .goals-subtitle {
        animation: none;
        opacity: 1;
        transform: none;
        transition: none
    }

    .goals-header::before, .goals-header::after {
        animation: none
    }
}

:root {
    --hs-navy: #263370;
    --hs-cyan: #0c7fae;
    --hs-green: #42b07a;
    --hs-dark: #0f1a2e;
    --hs-dark-overlay: rgba(38,51,112,.6);
    --hs-text: #fff;
    --hs-text-muted: rgba(255,255,255,.8)
}

.hero-slider-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

.hero-slider-page {
    font-family: 'Tajawal','Segoe UI',sans-serif;
    direction: rtl;
    overflow-x: hidden
}

.hs-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background: var(--hs-dark)
}

.hs-slides {
    position: relative;
    width: 100%;
    height: 100%
}

.hs-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s cubic-bezier(.4,0,.2,1),visibility 1s;
    z-index: 1
}

    .hs-slide.active {
        opacity: 1;
        visibility: visible;
        z-index: 2
    }

.hs-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 8s ease-out
}

.hs-slide.active .hs-slide-bg {
    transform: scale(1)
}

.hs-slide-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%,-50%) scale(1.05);
    transition: transform 8s ease-out
}

.hs-slide.active .hs-slide-video {
    transform: translate(-50%,-50%) scale(1)
}

.hs-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,rgba(38,51,112,.85) 0%,rgba(15,26,46,.5) 50%,rgba(38,51,112,.7) 100%);
    z-index: 1
}

.hs-slide-content {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    z-index: 10;
    max-width: 800px;
    padding: 40px 0
}

.hs-subtitle {
    font-size: 1.3rem;
    color: var(--hs-text);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all .8s cubic-bezier(.4,0,.2,1) .2s
}

.hs-slide.active .hs-subtitle {
    opacity: 1;
    transform: translateY(0)
}

.hs-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(40px);
    transition: all .8s cubic-bezier(.4,0,.2,1) .4s;
    text-shadow: 0 4px 30px rgba(12,127,174,.3)
}

.hs-slide.active .hs-title {
    opacity: 1;
    transform: translateY(0)
}

.hs-title-secondary {
    font-size: 5rem;
    font-weight: 900;
    color: var(--base-bg);
    line-height: 1.1;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(50px);
    transition: all .8s cubic-bezier(.4,0,.2,1) .5s;
    font-family: 'Noto Kufi Arabic','Tajawal',sans-serif
}

.hs-slide.active .hs-title-secondary {
    opacity: 1;
    transform: translateY(0)
}

.hs-description {
    font-size: 1.1rem;
    color: var(--hs-text-muted);
    line-height: 1.9;
    margin-bottom: 30px;
    max-width: 700px;
    opacity: 0;
    transform: translateY(30px);
    transition: all .8s cubic-bezier(.4,0,.2,1) .6s
}

.hs-slide.active .hs-description {
    opacity: 1;
    transform: translateY(0)
}

.hs-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all .8s cubic-bezier(.4,0,.2,1) .7s;
    position: relative
}

.hs-slide.active .hs-cta {
    opacity: 1;
    transform: translateY(0)
}

.hs-cta::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width .3s ease
}

.hs-cta:hover::after {
    width: 100%
}

.hs-cta i {
    transition: transform .3s ease
}

.hs-cta:hover i {
    transform: translateX(-5px)
}

.hs-nav-arrows {
    position: absolute;
    left: 40px;
    bottom: 60px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 20
}

.hs-nav-arrow {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    transition: all .3s ease;
    position: relative;
    overflow: hidden
}

    .hs-nav-arrow::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--base-bg);
        transform: translateX(-100%);
        transition: transform .3s ease
    }

    .hs-nav-arrow:hover::before {
        transform: translateX(0)
    }

    .hs-nav-arrow i {
        position: relative;
        z-index: 1
    }

    .hs-nav-arrow:hover {
        transform: scale(1.05)
    }

.hs-dots {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 20
}

.hs-dot {
    width: 12px;
    height: 12px;
    border: 2px solid rgba(255,255,255,.4);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: all .4s cubic-bezier(.4,0,.2,1);
    position: relative
}

    .hs-dot::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        width: 0;
        height: 0;
        background: var(--primary-color);
        border-radius: 50%;
        transition: all .4s cubic-bezier(.4,0,.2,1)
    }

    .hs-dot:hover {
        border-color: var(--primary-color)
    }

    .hs-dot.active {
        border-color: var(--primary-color);
        transform: scale(1.3)
    }

        .hs-dot.active::after {
            width: 6px;
            height: 6px
        }

.hs-counter {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px
}

.hs-counter-current {
    font-size: 3rem;
    font-weight: 700;
    color: var(--base-bg);
    line-height: 1
}

.hs-counter-separator {
    width: 30px;
    height: 2px;
    background: rgba(255,255,255,.3);
    transform: rotate(-45deg)
}

.hs-counter-total {
    font-size: 1.2rem;
    color: var(--hs-text-muted)
}

.hs-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,.1);
    z-index: 20
}

.hs-progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg,var(--primary-color),var(--base-bg));
    transition: width .1s linear
}

.hs-navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: transparent;
    transition: all .3s ease
}

    .hs-navbar.scrolled {
        background: rgba(10,22,40,.95);
        backdrop-filter: blur(10px);
        padding: 15px 50px
    }

.hs-logo {
    height: 50px;
    filter: brightness(0) invert(1);
    transition: all .3s ease
}

.hs-nav-links {
    display: flex;
    gap: 40px;
    list-style: none
}

    .hs-nav-links a {
        color: var(--hs-text);
        text-decoration: none;
        font-size: 1rem;
        font-weight: 500;
        transition: color .3s ease;
        position: relative
    }

        .hs-nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            right: 0;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: width .3s ease
        }

        .hs-nav-links a:hover {
            color: var(--primary-color)
        }

            .hs-nav-links a:hover::after {
                width: 100%
            }

.hs-nav-actions {
    display: flex;
    align-items: center;
    gap: 20px
}

.hs-lang-btn {
    color: var(--hs-text);
    background: none;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: color .3s ease
}

    .hs-lang-btn:hover {
        color: var(--primary-color)
    }

.hs-search-btn {
    color: var(--hs-text);
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color .3s ease
}

    .hs-search-btn:hover {
        color: var(--primary-color)
    }

.hs-floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    overflow: hidden
}

.hs-shape {
    position: absolute;
    border: 1px solid rgba(12,127,174,.2);
    border-radius: 50%;
    animation: hs-float 20s ease-in-out infinite
}

.hs-shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s
}

.hs-shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 15%;
    animation-delay: -5s
}

.hs-shape-3 {
    width: 150px;
    height: 150px;
    top: 30%;
    left: 40%;
    animation-delay: -10s
}

@keyframes hs-float {
    0%,100% {
        transform: translate(0,0) rotate(0deg)
    }

    25% {
        transform: translate(30px,30px) rotate(90deg)
    }

    50% {
        transform: translate(0,50px) rotate(180deg)
    }

    75% {
        transform: translate(-30px,20px) rotate(270deg)
    }
}

.hs-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 4
}

.hs-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: .5;
    animation: hs-particle-float 15s linear infinite
}

@keyframes hs-particle-float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0
    }

    10% {
        opacity: .5
    }

    90% {
        opacity: .5
    }

    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0
    }
}

.hs-video-play {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    opacity: 0;
    transition: opacity .5s ease .8s
}

.hs-slide.active .hs-video-play {
    opacity: 1
}

.hs-play-btn {
    width: 70px;
    height: 70px;
    border: 2px solid rgba(255,255,255,.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(5px);
    transition: all .3s ease;
    position: relative
}

    .hs-play-btn::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        border: 2px solid var(--primary-color);
        border-radius: 50%;
        animation: hs-pulse 2s ease-out infinite
    }

    .hs-play-btn i {
        color: #fff;
        font-size: 1.5rem;
        margin-right: -3px
    }

    .hs-play-btn:hover {
        background: var(--primary-color);
        border-color: var(--primary-color);
        transform: scale(1.1)
    }

.hs-play-text {
    color: var(--hs-text);
    font-size: .9rem;
    font-weight: 500
}

@keyframes hs-pulse {
    0% {
        transform: scale(1);
        opacity: 1
    }

    100% {
        transform: scale(1.5);
        opacity: 0
    }
}

@media(max-width:1200px) {
    .hs-slide-content {
        max-width: 600px;
        right: 5%
    }

    .hs-title {
        font-size: 3rem
    }

    .hs-title-secondary {
        font-size: 4rem
    }
}

@media(max-width:992px) {
    .hs-navbar {
        padding: 15px 30px
    }

    .hs-nav-links {
        display: none
    }

    .hs-slide-content {
        max-width: 90%;
        right: 5%;
        left: 5%
    }

    .hs-title {
        font-size: 2.5rem
    }

    .hs-title-secondary {
        font-size: 3rem
    }

    .hs-dots {
        right: 20px
    }

    .hs-counter {
        left: 20px
    }

    .hs-nav-arrows {
        left: 20px;
        bottom: 40px
    }

    .hs-nav-arrow {
        width: 50px;
        height: 50px
    }
}

@media(max-width:768px) {
    .hs-hero {
        min-height: 100vh
    }

    .hs-slide-content {
        top: 55%;
        text-align: center
    }

    .hs-subtitle {
        font-size: 1rem
    }

    .hs-title {
        font-size: 2rem
    }

    .hs-title-secondary {
        font-size: 2.5rem
    }

    .hs-description {
        font-size: .95rem;
        line-height: 1.8
    }

    .hs-cta {
        justify-content: center
    }

    .hs-dots {
        top: auto;
        bottom: 120px;
        right: 50%;
        transform: translateX(50%);
        flex-direction: row
    }

    .hs-counter {
        left: 50%;
        top: auto;
        bottom: 170px;
        transform: translateX(-50%);
        flex-direction: row;
        gap: 10px
    }

    .hs-counter-current {
        font-size: 2rem
    }

    .hs-counter-separator {
        transform: rotate(0);
        width: 20px
    }

    .hs-nav-arrows {
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row;
        bottom: 20px
    }

    .hs-video-play {
        bottom: 25%
    }

    .hs-play-btn {
        width: 60px;
        height: 60px
    }

    .hs-floating-shapes {
        display: none
    }
}

@media(max-width:480px) {
    .hs-navbar {
        padding: 15px 20px
    }

    .hs-logo {
        height: 40px
    }

    .hs-title {
        font-size: 1.6rem
    }

    .hs-title-secondary {
        font-size: 2rem
    }

    .hs-description {
        font-size: .85rem
    }

    .hs-nav-arrow {
        width: 45px;
        height: 45px;
        font-size: 1.2rem
    }
}

.hs-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px
}

    .hs-menu-toggle span {
        width: 25px;
        height: 2px;
        background: #fff;
        transition: all .3s ease
    }

@media(max-width:992px) {
    .hs-menu-toggle {
        display: flex
    }
}

.hs-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: hs-bounce 2s infinite
}

.hs-scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255,255,255,.4);
    border-radius: 15px;
    position: relative
}

    .hs-scroll-mouse::before {
        content: '';
        position: absolute;
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
        width: 4px;
        height: 8px;
        background: var(--primary-color);
        border-radius: 2px;
        animation: hs-scroll-wheel 2s infinite
    }

.hs-scroll-text {
    color: rgba(255,255,255,.5);
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: 2px
}

@keyframes hs-bounce {
    0%,20%,50%,80%,100% {
        transform: translateX(-50%) translateY(0)
    }

    40% {
        transform: translateX(-50%) translateY(-10px)
    }

    60% {
        transform: translateX(-50%) translateY(-5px)
    }
}

@keyframes hs-scroll-wheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0)
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px)
    }
}

@media(max-width:768px) {
    .hs-scroll-indicator {
        display: none
    }
}

.projects-container {
    max-width: 1400px;
    margin: 0 auto
}

.section-header {
    text-align: center;
    margin-bottom: 60px
}

.section-breadcrumb {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 800;
    text-align: center
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    color: #06232f;
    margin-bottom: 20px
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 25px
}

.divider-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(to left,var(--primary-color),transparent)
}

    .divider-line.right {
        background: linear-gradient(to right,var(--primary-color),transparent)
    }

.divider-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg,var(--secondary-color) 0%,#007a33 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,149,63,.3)
}

    .divider-icon svg {
        width: 24px;
        height: 24px;
        fill: white
    }

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 26px auto
}

.project-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,.1);
    transition: all .4s cubic-bezier(.175,.885,.32,1.275);
    position: relative
}

    .project-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 60px rgba(0,0,0,.15)
    }

.project-image-container {
    position: relative;
    height: 280px;
    overflow: hidden
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease
}

.project-card:hover .project-image {
    transform: scale(1.1)
}

.project-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,transparent 0%,rgba(0,0,0,.7) 100%)
}

.project-logo {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 30%;
    height: 75px;
    background: #fff;
    border-radius: 15px;
    padding: 12px;
    box-shadow: 0 6px 25px rgba(6,35,47,.25);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2
}

    .project-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain
    }

.project-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg,var(--primary-color) 0%,var(--secondary-color) 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(var(--primary-color),.3);
    z-index: 2
}

.project-content {
    padding: 15px 30px 20px 30px
}

.project-title {
    font-size: 24px;
    font-weight: 700;
    color: #06232f;
    margin-bottom: 7px;
    line-height: 1.4
}

.project-description {
    font-size: 15px;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 7px
}

.project-info-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px
}

.project-info-item {
    display: flex;
    flex-direction: column;
    gap: 5px
}

.project-info-label {
    font-size: 12px;
    color: #6c757d;
    font-weight: 500
}

.project-info-value {
    font-size: 13px;
    color: #06232f;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px
}

.project-info-icon {
    width: 18px;
    height: 18px;
    color: var(--secondary-color)
}

.project-progress {
    margin-bottom: 25px
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px
}

.progress-label {
    font-size: 13px;
    color: #495057;
    font-weight: 500
}

.progress-percentage {
    font-size: 15px;
    color: var(--secondary-color);
    font-weight: 700
}

.progress-bar-container {
    height: 10px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    position: relative
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg,var(--secondary-color) 0%,#007a33 100%);
    border-radius: 10px;
    transition: width 1s ease;
    position: relative;
    overflow: hidden
}

    .progress-bar-fill::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(90deg,transparent,rgba(255,255,255,.3),transparent);
        animation: shimmer 2s infinite
    }

@keyframes shimmer {
    0% {
        transform: translateX(-100%)
    }

    100% {
        transform: translateX(100%)
    }
}

.project-dates {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    padding: 15px;
    background: #f0f9f4;
    border-radius: 10px;
    border-right: 4px solid var(--secondary-color)
}

.project-date {
    display: flex;
    flex-direction: column;
    gap: 5px
}

.date-label {
    font-size: 12px;
    color: #6c757d
}

.date-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color)
}

.project-details-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg,var(--primary-color) 0%,var(--secondary-color) 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all .3s ease;
    position: relative;
    overflow: hidden
}

    .project-details-btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255,255,255,.2);
        transform: translate(-50%,-50%);
        transition: width .6s,height .6s
    }

    .project-details-btn:hover::before {
        width: 300px;
        height: 300px
    }

    .project-details-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px var(--primary-color)
    }

.btn-icon {
    width: 20px;
    height: 20px;
    transition: transform .3s ease
}

.project-details-btn:hover .btn-icon {
    transform: translateLeft(5px)
}

.view-all-container {
    text-align: center;
    margin-top: 50px
}

.view-all-btn {
    padding: 18px 50px;
    background: linear-gradient(135deg,var(--secondary-color) 0%,var(--base-bg) 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all .3s ease;
    box-shadow: 0 8px 25px rgba(0,149,63,.35)
}

    .view-all-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(0,149,63,.45)
    }

.project-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.8);
    z-index: 1000;
    padding: 20px;
    overflow-y: auto;
    animation: fadeIn .3s ease
}

    .project-modal.active {
        display: flex;
        align-items: center;
        justify-content: center
    }

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.modal-content {
    background: #fff;
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp .4s ease
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0
    }

    to {
        transform: translateY(0);
        opacity: 1
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all .3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,.2)
}

    .modal-close:hover {
        background: var(--primary-color);
        transform: rotate(90deg)
    }

        .modal-close:hover svg {
            stroke: white
        }

.modal-header-image {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.modal-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,transparent 0%,rgba(0,0,0,.7) 100%)
}

.modal-body {
    padding: 40px
}

.modal-title {
    font-size: 32px;
    font-weight: 700;
    color: #06232f;
    margin-bottom: 20px
}

.modal-description {
    font-size: 16px;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 30px
}

.modal-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    gap: 20px;
    margin-bottom: 30px
}

.modal-detail-item {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border-right: 4px solid var(--secondary-color)
}

.modal-detail-label {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 8px
}

.modal-detail-value {
    font-size: 18px;
    font-weight: 600;
    color: #06232f
}

@media(max-width:1024px) {
    .projects-grid {
        grid-template-columns: repeat(auto-fill,minmax(350px,1fr));
        gap: 30px
    }
}

@media(max-width:768px) {
    .section-title {
        font-size: 36px
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 25px
    }

    .project-info-grid {
        grid-template-columns: 1fr
    }

    .modal-body {
        padding: 25px
    }

    .modal-title {
        font-size: 24px
    }
}

.section-header {
    text-align: center;
    margin-bottom: 80px
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px
}

.decoration-line {
    height: 1px;
    width: 80px;
    background: linear-gradient(to right,transparent,var(--primary-color))
}

.decoration-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center
}

.decoration-icon-inner {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center
}

.decoration-icon svg {
    width: 20px;
    height: 20px;
    fill: white
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 32px;
    padding: 20px 0
}

.cards-grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
    gap: 40px;
    padding: 20px 0
}

.card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    min-height: 400px;
    cursor: pointer;
    transition: all .4s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 20px 60px -15px rgba(93,208,240,.4)
}
.card-h {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    min-height: 400px;
    cursor: pointer;
    transition: all .4s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 20px 60px -15px rgba(93,208,240,.4)
}

    .card-h:hover {
        transform: translateY(-12px) scale(1.02);
        box-shadow: 0 30px 70px -20px var(--base-bg)
    }

.card-1, .card-4 {
    background: linear-gradient(135deg,var(--secondary-color) 0%,var(--primary-color) 100%);
    border-color: #eee
}

.card-arrow {
    position: absolute;
    top: 24px;
    left: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    z-index: 10
}

.card:hover .card-arrow {
    background: rgba(255,255,255,.3);
    transform: scale(1.1) rotate(45deg)
}

.card-arrow svg {
    width: 20px;
    height: 20px;
    stroke: white;
    stroke-width: 2.5;
    fill: none
}

.card-pattern {
    position: absolute;
    inset: 0;
    opacity: .1;
    background-image: radial-gradient(circle,white 1px,transparent 1px);
    background-size: 20px 20px
}

.card-content {
    position: relative;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 400px;
    z-index: 2
}

.card-bg-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: .2
}

    .card-bg-icon svg {
        width: 200px;
        height: 200px;
        stroke: white;
        stroke-width: .5;
        fill: none
    }

.card-icon {
    position: relative;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
    backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    transition: all .3s ease;
    animation: float 3s ease-in-out infinite
}

.card:hover .card-icon {
    background: rgba(255,255,255,.3);
    transform: scale(1.1) rotate(6deg)
}

.card-icon svg {
    width: 48px;
    height: 48px;
    stroke: white;
    stroke-width: 1.5;
    fill: none
}

@keyframes float {
    0%,100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

.card-title {
    position: relative;
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
    transition: all .3s ease;
    z-index: 5
}

.card:hover .card-title {
    transform: scale(1.05)
}

.card-description {
    position: relative;
    color: rgba(255,255,255,.9);
    font-size: 18px;
    line-height: 1.8;
    max-width: 280px;
    transition: all .3s ease;
    z-index: 5
}

.card:hover .card-description {
    color: #fff
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top,rgba(0,0,0,.2),transparent);
    opacity: 0;
    transition: opacity .3s ease
}

.card:hover .card-overlay {
    opacity: 1
}

@media(max-width:768px) {
    .section-title {
        font-size: 36px
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .cards-grid-4 {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .card {
        min-height: 350px
    }

    .card-title {
        font-size: 28px
    }

    .card-description {
        font-size: 16px
    }
}

@media(max-width:480px) {
    .section-title {
        font-size: 28px
    }

    .card-content {
        padding: 30px
    }
}

.role-card {
    position: relative;
    background: #fff;
    border-radius: 24px;
    padding: 50px 40px;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: all .4s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 4px 20px rgba(0,0,0,.05),0 1px 3px rgba(0,0,0,.03);
    border: 1px solid rgba(226,232,240,.8);
    overflow: hidden
}

    .role-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg,var(--secondary-color) 0%,var(--primary-color) 50%,var(--secondary-color) 100%);
        transform: scaleX(0);
        transform-origin: right;
        transition: transform .4s ease
    }

    .role-card:hover::after {
        transform: scaleX(1);
        transform-origin: left
    }

    .role-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 60px rgba(93,208,240,.15),0 8px 20px rgba(0,0,0,.08);
        border-color: rgba(var(--primary-color),.3)
    }

.card-bg-accent {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle,rgba(93,208,240,.08),transparent 70%);
    border-radius: 50%;
    transition: all .5s ease
}

.role-card:hover .card-bg-accent {
    transform: scale(1.5);
    opacity: .5
}

.card-icon2 {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg,var(--secondary-color) 0%,var(--primary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    position: relative;
    transition: all .4s ease;
    box-shadow: 0 10px 30px rgba(93,208,240,.25),inset 0 -2px 8px rgba(0,0,0,.1)
}

    .card-icon2::before {
        content: '';
        position: absolute;
        inset: -8px;
        border-radius: 24px;
        background: linear-gradient(135deg,var(--primary-color) 2b,#dc354533);
        opacity: 0;
        transition: opacity .4s ease
    }

.role-card:hover .card-icon2 {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(93,208,240,.35),inset 0 -2px 8px rgba(0,0,0,.1)
}

    .role-card:hover .card-icon2::before {
        opacity: 1
    }

.card-icon2 svg {
    width: 40px;
    height: 40px;
    stroke: white;
    stroke-width: 2;
    fill: none;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,.15))
}

.card-content2 {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative
}

.role-badge {
    display: inline-block;
    align-self: flex-start;
    padding: 8px 18px;
    background: linear-gradient(135deg,#ffcfc8,#fdc8cd);
    border-radius: 10px;
    color: var(--base-bg);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 22px;
    transition: all .3s ease;
    letter-spacing: .5px;
    border: 1px solid rgba(93,208,240,.2)
}

.role-card:hover .role-badge {
    background: linear-gradient(135deg,var(--primary-color) 2b,#dc354533);
    border-color: var(--primary-color) 2b;
    transform: translateX(-3px)
}

.role-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--base-bg);
    margin-bottom: 16px;
    line-height: 1.5;
    transition: all .3s ease;
    letter-spacing: -.3px
}

.role-card:hover .role-title {
    color: var(--base-bg)
}

.title-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg,var(--secondary-color),var(--primary-color));
    border-radius: 10px;
    margin-bottom: 18px;
    transition: all .4s ease
}

.role-card:hover .title-divider {
    width: 80px
}

.role-description {
    font-size: 15px;
    color: #64748b;
    line-height: 1.8;
    font-weight: 400;
    transition: all .3s ease
}

.role-card:hover .role-description {
    color: #64748b
}

.arrow-indicator {
    position: absolute;
    bottom: 40px;
    left: 40px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg,#f8fafc,#f1f5f9);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s ease;
    opacity: 0;
    transform: translateX(-10px);
    border: 2px solid #e2e8f0
}

.role-card:hover .arrow-indicator {
    opacity: 1;
    transform: translateX(0);
    background: linear-gradient(135deg,var(--base-bg),var(--primary-color));
    border-color: transparent
}

.arrow-indicator svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary-color);
    stroke-width: 2.5;
    fill: none;
    transition: all .3s ease
}

.role-card:hover .arrow-indicator svg {
    stroke: white;
    transform: translateX(3px)
}

.card-number {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: var(--primary-color);
    transition: all .3s ease;
    border: 1px solid var(--primary-color)
}

.role-card:hover .card-number {
    background: linear-gradient(135deg,var(--secondary-color),var(--primary-color));
    color: #fff;
    border-color: transparent;
    transform: scale(1.1)
}

.fa-angle-up:before, .fa-air-freshener:before, .fa-spray-can-sparkles:before, .fa-adjust:before, .fa-circle-half-stroke:before {
    color: #fff
}

@media(max-width:768px) {
    .role-card {
        padding: 40px 32px;
        min-height: 340px
    }

    .card-icon2 {
        width: 70px;
        height: 70px
    }

        .card-icon2 svg {
            width: 36px;
            height: 36px
        }

    .role-title {
        font-size: 22px
    }

    .role-description {
        font-size: 14px
    }
}

@media(max-width:480px) {
    .role-card {
        padding: 35px 28px
    }

    .card-icon2 {
        width: 65px;
        height: 65px
    }

        .card-icon2 svg {
            width: 32px;
            height: 32px
        }

    .role-title {
        font-size: 20px
    }

    .card-number {
        width: 32px;
        height: 32px;
        font-size: 14px;
        top: 25px;
        left: 25px
    }

    .arrow-indicator {
        width: 40px;
        height: 40px;
        bottom: 35px;
        left: 35px
    }
}

[dir="ltr"] .card-bg-accent {
    left: 166px
}

[dir="ltr"] .card-number {
    left: 236px
}

.council-about-section {
    padding: 4rem 0;
    background: #fff;
    position: relative;
    overflow: hidden
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: .03;
    pointer-events: none
}

.about-bg-shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    top: -60px;
    right: -60px
}

.about-bg-shape-2 {
    width: 200px;
    height: 200px;
    background: var(--secondary-color);
    bottom: -30px;
    left: -30px
}

.council-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem
}

.council-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center
}

@media(max-width:991px) {
    .council-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem
    }
}

.council-content {
    position: relative;
    z-index: 2
}

@media(max-width:991px) {
    .council-content {
        order: 2;
        text-align: center
    }
}

.content-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(12,127,174,.08);
    padding: .4rem 1rem;
    border-radius: 50px;
    font-size: .8rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: .75rem
}

    .content-badge i {
        font-size: .75rem;
        color: var(--secondary-color)
    }

.content-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: .75rem;
    line-height: 1.25
}

    .content-title span {
        background: linear-gradient(135deg,var(--primary-color) 0%,var(--secondary-color) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text
    }

@media(max-width:768px) {
    .content-title {
        font-size: 1.85rem
    }
}

.content-desc {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.85;
    margin-bottom: 1.5rem
}

.vm-grid {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin-bottom: 1.5rem
}

.vm-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #fff;
    border-radius: 14px;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(12,127,174,.1);
    transition: all .3s ease;
    position: relative
}

    .vm-box:hover {
        transform: translateX(-4px);
        box-shadow: 0 8px 25px rgba(12,127,174,.1)
    }

.vm-1 {
    border-bottom: 3px solid var(--primary-color)
}

.vm-2 {
    border-bottom: 3px solid var(--primary-color)
}

.vm-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    flex-shrink: 0
}

.vm-vision .vm-icon {
    background: var(--base-bg)
}

.vm-mission .vm-icon {
    background: var(--secondary-color)
}

.vm-content {
    flex: 1
}

.vm-label {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .25rem
}

.vm-vision .vm-label {
    color: var(--primary-color)
}

.vm-mission .vm-label {
    color: var(--secondary-color)
}

.vm-text {
    font-size: .92rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0
}

@media(max-width:991px) {
    .vm-box {
        text-align: right
    }
}

.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: linear-gradient(135deg,var(--base-bg) 0%,var(--base-bg) 100%);
    color: #fff;
    padding: .75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .9rem;
    text-decoration: none;
    transition: all .3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(12,127,174,.25)
}

    .about-cta-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(12,127,174,.35);
        color: #fff
    }

    .about-cta-btn i {
        font-size: .8rem;
        transition: transform .3s ease
    }

    .about-cta-btn:hover i {
        transform: translateX(-4px)
    }

.council-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center
}

@media(max-width:991px) {
    .council-image {
        order: 1
    }
}

.main-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    animation: floatImage 6s ease-in-out infinite
}

@keyframes floatImage {
    0%,100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

.image-glow {
    position: absolute;
    border-radius: 50%;
    opacity: .18;
    z-index: 0;
    pointer-events: none;
    filter: blur(50px);
    animation: glowPulse 5s ease-in-out infinite
}

.glow-1 {
    width: 160px;
    height: 160px;
    background: var(--primary-color);
    top: -15px;
    right: 10%
}

.glow-2 {
    width: 130px;
    height: 130px;
    background: var(--secondary-color);
    bottom: 10px;
    left: 15%;
    animation-delay: 1.5s
}

@keyframes glowPulse {
    0%,100% {
        opacity: .15;
        transform: scale(1)
    }

    50% {
        opacity: .25;
        transform: scale(1.08)
    }
}

.light-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
    border-radius: 20px
}

    .light-overlay::before {
        content: '';
        position: absolute;
        top: 0;
        left: -150%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg,transparent 0%,rgba(255,255,255,.25) 50%,transparent 100%);
        transform: skewX(-25deg);
        animation: lightSweep 4s ease-in-out infinite
    }

@keyframes lightSweep {
    0% {
        left: -150%
    }

    50%,100% {
        left: 150%
    }
}

@media(max-width:768px) {
    .council-about-section {
        padding: 3rem 0
    }

    .council-container {
        padding: 0 1rem
    }

    .vm-box {
        padding: 1rem
    }

    .vm-icon {
        width: 38px;
        height: 38px;
        font-size: .9rem
    }

    .vm-text {
        font-size: .88rem
    }

    .main-img {
        max-width: 320px
    }
}

:root {
    --council-light: #e8f4f8;
    --council-gradient: linear-gradient(135deg,#263370 0%,#0c7fae 50%,#42b07a 100%);
    --council-gradient-soft: linear-gradient(135deg,rgba(38,51,112,.1) 0%,rgba(12,127,174,.1) 50%,rgba(66,176,122,.1) 100%);
    --shadow-card: 0 10px 40px rgba(38,51,112,.1);
    --shadow-hover: 0 20px 60px rgba(38,51,112,.15);
    --transition-smooth: all .4s cubic-bezier(.4,0,.2,1)
}

.ceo-section-compact {
    background: linear-gradient(180deg,#fff 0%,var(--council-light) 100%);
    padding: 50px 0;
    position: relative
}

.ceo-compact-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(38,51,112,.1);
    max-width: 1100px;
    margin: 0 auto
}

.ceo-compact-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 30px;
    padding: 40px;
    background: linear-gradient(135deg,var(--primary-color) 0%,var(--secondary-color) 100%);
    align-items: center;
    position: relative
}

    .ceo-compact-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="80" cy="20" r="30" fill="rgba(255,255,255,0.03)"/></svg>');
        pointer-events: none
    }

.ceo-compact-image {
    position: relative
}

    .ceo-compact-image img {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        object-fit: cover;
        border: 4px solid rgba(255,255,255,.3);
        box-shadow: 0 15px 40px rgba(0,0,0,.25)
    }

.ceo-compact-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg,#ffd700,#ffb300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a2e;
    font-size: .85rem;
    box-shadow: 0 5px 15px rgba(255,215,0,.4)
}

.ceo-compact-info {
    position: relative;
    z-index: 1
}

.ceo-compact-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px
}

.ceo-compact-title {
    font-size: 1rem;
    color: var(--base-bg);
    font-weight: 600;
    margin-bottom: 3px
}

.ceo-compact-org {
    font-size: .85rem;
    color: rgba(255,255,255,.7);
    margin-bottom: 15px
}

.ceo-compact-social {
    display: flex;
    gap: 10px
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 1rem
}

    .social-btn.linkedin {
        background: #0077b5
    }

    .social-btn.x-twitter {
        background: #000
    }

    .social-btn.phone {
        background: var(--base-bg)
    }

    .social-btn.email {
        background: var(--secondary-color)
    }

    .social-btn:hover {
        transform: translateY(-3px) scale(1.1);
        box-shadow: 0 8px 20px rgba(0,0,0,.3)
    }

.ceo-compact-stats {
    display: flex;
    gap: 25px;
    position: relative;
    z-index: 1
}

.stat-item {
    text-align: center;
    padding: 15px 20px;
    background: rgba(255,255,255,.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.1)
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px
}

.stat-label {
    font-size: .75rem;
    color: rgba(255,255,255,.7)
}

.ceo-compact-body {
    padding: 35px 40px
}

.ceo-compact-bio {
    background: linear-gradient(135deg,#f8fafc 0%,var(--council-light) 100%);
    padding: 25px;
    border-radius: 18px;
    margin-bottom: 25px;
    border-right: 4px solid var(--base-bg)
}

    .ceo-compact-bio p {
        margin: 0;
        font-size: 1rem;
        line-height: 1.9;
        color: #444
    }

.ceo-compact-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px
}

.compact-info-box {
    background: #f8fafc;
    border-radius: 18px;
    padding: 22px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(38,51,112,.05)
}

    .compact-info-box:hover {
        border-color: var(--secondary-color);
        box-shadow: 0 8px 25px rgba(12,127,174,.1)
    }

    .compact-info-box.full-width {
        grid-column: 1/-1
    }

.compact-info-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 2px solid;
    border-image: var(--base-bg) 1
}

    .compact-info-header i {
        width: 35px;
        height: 35px;
        background: var(--primary-color);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: .9rem
    }

    .compact-info-header h4 {
        font-size: 1rem;
        font-weight: 700;
        color: var(--primary-color);
        margin: 0
    }

.compact-info-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.info-tag {
    background: #fff;
    padding: 8px 14px;
    border-radius: 25px;
    font-size: .8rem;
    color: var(--primary-color);
    border: 1px solid rgba(38,51,112,.1);
    transition: var(--transition-smooth)
}

    .info-tag:hover {
        border-color: var(--secondary-color);
        transform: translateY(-2px)
    }

    .info-tag.primary {
        background: var(--primary-color);
        color: #fff;
        border-color: transparent
    }

    .info-tag.accent {
        background: var(--base-bg);
        color: #fff;
        border-color: transparent
    }

.compact-experience {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.exp-compact-item {
    display: grid;
    grid-template-columns: 100px 1fr 1fr;
    gap: 15px;
    padding: 15px;
    background: #fff;
    border-radius: 12px;
    align-items: center;
    transition: var(--transition-smooth);
    border-right: 3px solid transparent
}

    .exp-compact-item:hover {
        transform: translateX(-5px);
        box-shadow: 0 5px 20px rgba(0,0,0,.05)
    }

    .exp-compact-item.current {
        border-right-color: var(--base-bg);
        background: linear-gradient(135deg,rgba(66,176,122,.05) 0%,#fff 100%)
    }

.exp-date {
    font-size: .8rem;
    font-weight: 600;
    color: var(--secondary-color);
    background: var(--council-light);
    padding: 6px 10px;
    border-radius: 20px;
    text-align: center
}

.exp-compact-item.current .exp-date {
    background: var(--base-bg);
    color: #fff
}

.exp-role {
    font-size: .9rem;
    font-weight: 700;
    color: var(--primary-color)
}

.exp-org {
    font-size: .85rem;
    color: #666
}

@media(max-width:992px) {
    .ceo-compact-header {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px
    }

    .ceo-compact-image {
        margin: 0 auto
    }

    .ceo-compact-social {
        justify-content: center
    }

    .ceo-compact-stats {
        justify-content: center
    }

    .ceo-compact-grid {
        grid-template-columns: 1fr
    }

    .exp-compact-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 8px
    }

    .exp-date {
        width: fit-content;
        margin: 0 auto
    }
}

@media(max-width:576px) {
    .ceo-compact-header {
        padding: 30px 20px
    }

    .ceo-compact-body {
        padding: 25px 20px
    }

    .ceo-compact-name {
        font-size: 1.4rem
    }

    .ceo-compact-stats {
        flex-direction: column;
        gap: 10px
    }

    .stat-item {
        padding: 12px 15px
    }

    .compact-info-tags {
        gap: 6px
    }

    .info-tag {
        font-size: .75rem;
        padding: 6px 12px
    }
}

:root {
    --bi-green: #42b07a;
    --bi-light: #f8fafc;
    --bi-white: #fff;
    --bi-gray: #64748b;
    --bi-dark: #1e293b;
    --bi-radius: 20px;
    --bi-shadow: 0 10px 40px rgba(38,51,112,.08)
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: 'Tajawal',sans-serif;
    background: var(--bi-light);
    color: var(--bi-dark);
    line-height: 1.8;
    min-height: 100vh;
    display: flex;
    flex-direction: column
}

.bi-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 40px;
    z-index: 1000;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(38,51,112,.08);
    display: flex;
    justify-content: space-between;
    align-items: center
}

.bi-nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none
}

    .bi-nav-logo img {
        height: 45px
    }

    .bi-nav-logo span {
        font-size: 16px;
        font-weight: 800;
        color: var(--primary-color)
    }

.bi-nav-btn {
    background: linear-gradient(135deg,var(--primary-color),var(--secondary-color));
    color: #fff;
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all .3s ease;
    box-shadow: 0 4px 15px rgba(38,51,112,.25)
}

    .bi-nav-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(38,51,112,.35)
    }

.bi-main {
    flex: 1;
    padding-top: 75px
}

.bi-header {
    position: relative;
    padding: 80px 40px;
    text-align: center;
    overflow: hidden
}

.bi-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,var(--primary-color) 0%,var(--secondary-color) 100%);
    z-index: 0
}

    .bi-header-bg::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 20% 50%,rgba(255,255,255,.1) 0%,transparent 50%),radial-gradient(circle at 80% 50%,rgba(66,176,122,.15) 0%,transparent 50%)
    }

.bi-header-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto
}

.bi-header-logo {
    margin-bottom: 30px
}

    .bi-header-logo img {
        height: 120px;
        filter: brightness(0) invert(1);
        animation: logoFloat 4s ease-in-out infinite
    }

@keyframes logoFloat {
    0%,100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

.bi-title {
    font-size: 52px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 15px
}

.bi-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,.85);
    font-weight: 500;
    margin-bottom: 35px
}

.bi-header-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap
}

.bi-header-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: all .3s ease
}

.bi-btn-primary {
    background: #fff;
    color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(0,0,0,.15)
}

    .bi-btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 40px rgba(0,0,0,.2)
    }

.bi-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.5)
}

    .bi-btn-outline:hover {
        background: rgba(255,255,255,.1);
        border-color: #fff
    }

.bi-content {
    padding: 60px 40px
}

.bi-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px
}

.bi-icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg,var(--primary-color),var(--secondary-color));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0
}

.bi-section-full {
    background: var(--bi-white);
    border-radius: var(--bi-radius);
    padding: 40px;
    box-shadow: var(--bi-shadow)
}

.bi-section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px
}

    .bi-section-header h2 {
        font-size: 24px;
        font-weight: 800;
        color: var(--primary-color);
        margin-bottom: 5px
    }

    .bi-section-header p {
        font-size: 14px;
        color: var(--bi-gray)
    }

.bi-logo-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 25px
}

.bi-logo-card {
    border-radius: 16px;
    padding: 50px 30px;
    text-align: center;
    position: relative;
    transition: all .3s ease
}

    .bi-logo-card:hover {
        transform: translateY(-5px)
    }

.bi-logo-light {
    background: linear-gradient(180deg,#fff 0%,#f8fafc 100%);
    border: 1px solid rgba(38,51,112,.06)
}

.bi-logo-dark {
    background: linear-gradient(135deg,var(--primary-color),var(--secondary-color))
}

.bi-logo-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700
}

.bi-logo-light .bi-logo-badge {
    background: #fff;
    color: var(--primary-color)
}

.bi-logo-dark .bi-logo-badge {
    background: rgba(255,255,255,.15);
    color: #fff
}

.bi-logo-card img {
    height: 100px
}

.bi-two-cols {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px
}

.bi-card {
    background: var(--bi-white);
    border-radius: var(--bi-radius);
    padding: 35px;
    box-shadow: var(--bi-shadow)
}

.bi-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--bi-light)
}

    .bi-card-header h3 {
        font-size: 20px;
        font-weight: 800;
        color: var(--primary-color)
    }

.bi-colors-list {
    display: flex;
    flex-direction: column;
    gap: 15px
}

.bi-color-row {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--bi-light);
    border-radius: 12px;
    transition: all .3s ease
}

    .bi-color-row:hover {
        transform: translateX(-5px)
    }

.bi-color-dot {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,.15)
}

.bi-color-details {
    flex: 1
}

    .bi-color-details strong {
        display: block;
        font-size: 15px;
        font-weight: 700;
        color: var(--bi-dark)
    }

    .bi-color-details span {
        font-size: 12px;
        color: var(--bi-gray)
    }

.bi-color-row code {
    font-family: 'Courier New',monospace;
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary-color);
    background: #fff;
    padding: 6px 12px;
    border-radius: 8px
}

.bi-font-display {
    background: linear-gradient(135deg,var(--primary-color),var(--secondary-color));
    border-radius: 16px;
    padding: 35px;
    text-align: center;
    margin-bottom: 20px
}

.bi-font-chars {
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 8px
}

.bi-font-list {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.bi-font-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--bi-light);
    border-radius: 10px
}

    .bi-font-row span {
        font-size: 18px;
        color: var(--primary-color)
    }

    .bi-font-row small {
        font-size: 12px;
        color: var(--bi-gray);
        font-weight: 600
    }

.bi-downloads-section {
    background: linear-gradient(135deg,#f8fafc 0%,#e2e8f0 100%);
    border: 1px solid rgba(38,51,112,.08)
}

.bi-downloads-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px
}

.bi-download-card {
    background: var(--bi-white);
    border-radius: 16px;
    padding: 25px;
    text-decoration: none;
    text-align: center;
    transition: all .3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px
}

    .bi-download-card:hover {
        border-color: var(--secondary-color);
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(12,127,174,.15)
    }

.bi-download-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg,rgba(38,51,112,.1),rgba(12,127,174,.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--secondary-color)
}

    .bi-download-icon.bi-icon-ai {
        color: #0c7fae
    }

.bi-download-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--bi-dark);
    margin-bottom: 5px
}

.bi-download-info p {
    font-size: 12px;
    color: var(--bi-gray)
}

.bi-format {
    background: var(--bi-light);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800
}

.bi-guide-section {
    margin-top: 10px
}

.bi-guide-card {
    background: linear-gradient(135deg,var(--primary-color),var(--secondary-color));
    border-radius: var(--bi-radius);
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px
}

.bi-guide-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    flex-shrink: 0
}

.bi-guide-content {
    flex: 1
}

    .bi-guide-content h3 {
        font-size: 22px;
        font-weight: 800;
        color: #fff;
        margin-bottom: 10px
    }

    .bi-guide-content p {
        font-size: 15px;
        color: rgba(255,255,255,.8);
        margin-bottom: 15px
    }

.bi-guide-meta {
    display: flex;
    gap: 20px
}

    .bi-guide-meta span {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        color: rgba(255,255,255,.7)
    }

.bi-guide-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--primary-color);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: all .3s ease;
    box-shadow: 0 8px 30px rgba(0,0,0,.15);
    flex-shrink: 0
}

    .bi-guide-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 40px rgba(0,0,0,.2)
    }

.bi-footer {
    background: var(--primary-color);
    padding: 40px;
    text-align: center
}

    .bi-footer img {
        height: 50px;
        filter: brightness(0) invert(1);
        margin-bottom: 15px
    }

    .bi-footer p {
        color: rgba(255,255,255,.6);
        font-size: 14px
    }

@media(max-width:1024px) {
    .bi-downloads-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .bi-guide-card {
        flex-direction: column;
        text-align: center
    }

    .bi-guide-meta {
        justify-content: center
    }
}

@media(max-width:768px) {
    .bi-navbar {
        padding: 12px 20px
    }

    .bi-nav-logo img {
        height: 38px
    }

    .bi-nav-logo span {
        display: none
    }

    .bi-header {
        padding: 60px 20px
    }

    .bi-header-logo img {
        height: 80px
    }

    .bi-title {
        font-size: 32px
    }

    .bi-subtitle {
        font-size: 15px
    }

    .bi-header-actions {
        flex-direction: column;
        align-items: center
    }

    .bi-header-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center
    }

    .bi-content {
        padding: 40px 20px
    }

    .bi-container {
        gap: 30px
    }

    .bi-section-full, .bi-card {
        padding: 25px
    }

    .bi-logo-grid {
        grid-template-columns: 1fr
    }

    .bi-logo-card {
        padding: 40px 20px
    }

        .bi-logo-card img {
            height: 80px
        }

    .bi-two-cols {
        grid-template-columns: 1fr
    }

    .bi-font-chars {
        font-size: 32px;
        letter-spacing: 5px
    }

    .bi-downloads-grid {
        grid-template-columns: 1fr
    }

    .bi-guide-card {
        padding: 30px
    }

    .bi-guide-icon {
        width: 60px;
        height: 60px;
        font-size: 24px
    }

    .bi-guide-content h3 {
        font-size: 18px
    }

    .bi-guide-btn {
        width: 100%;
        justify-content: center
    }
}

@media(max-width:480px) {
    .bi-navbar {
        padding: 10px 15px
    }

    .bi-nav-logo img {
        height: 35px
    }

    .bi-nav-btn {
        padding: 8px 16px;
        font-size: 12px
    }

    .bi-header {
        padding: 50px 15px
    }

    .bi-header-logo img {
        height: 70px
    }

    .bi-title {
        font-size: 26px
    }

    .bi-content {
        padding: 30px 15px
    }

    .bi-section-full, .bi-card {
        padding: 20px;
        border-radius: 16px
    }

    .bi-section-header {
        flex-direction: column;
        text-align: center
    }

    .bi-icon-box {
        width: 45px;
        height: 45px;
        font-size: 18px
    }

    .bi-section-header h2 {
        font-size: 20px
    }

    .bi-card-header {
        flex-direction: column;
        text-align: center
    }

    .bi-color-row {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center
    }

    .bi-color-details {
        width: 100%;
        order: 2
    }

    .bi-color-row code {
        order: 3;
        margin-top: 10px
    }

    .bi-font-display {
        padding: 25px
    }

    .bi-font-chars {
        font-size: 28px
    }

    .bi-font-row span {
        font-size: 16px
    }

    .bi-download-card {
        padding: 20px
    }

    .bi-download-icon {
        width: 50px;
        height: 50px;
        font-size: 20px
    }

    .bi-guide-content p {
        font-size: 13px
    }

    .bi-guide-meta {
        flex-direction: column;
        gap: 10px
    }

    .bi-footer {
        padding: 30px 15px
    }

        .bi-footer img {
            height: 40px
        }
}

#PartnerOrderModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.75);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999999999999999999999;
    padding: 20px
}

    #PartnerOrderModal.active {
        display: flex !important
    }

.contact-modal {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    max-width: 550px;
    width: 100%;
    position: relative;
    box-shadow: 0 15px 50px rgba(0,0,0,.4)
}

.contact-modal-close {
    position: absolute;
    top: 15px;
    left: 15px;
    background: none;
    border: none;
    cursor: pointer;
    color: #333
}

.image-upload {
    max-width: -webkit-fill-available;
    margin-bottom: 30px
}

.upload-box {
    border: 2px dashed #ced4da;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: .3s;
    cursor: pointer;
    position: relative
}

    .upload-box.dragover {
        border-color: var(--primary-color);
        background-color: #e7f1ff
    }

.upload-placeholder i {
    font-size: 40px;
    color: var(--primary-color)
}

.preview {
    width: 50%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px
}

.contact-form-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg,#f0f9ff 0%,#e0f2fe 50%,#f0f9ff 100%);
    text-align: center
}

.contact-form-container {
    max-width: 700px;
    margin: 0 auto
}

.contact-form-header {
    margin-bottom: 2rem
}

.contact-form-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: .75rem
}

.contact-form-subtitle {
    font-size: 1.1rem;
    color: #64748b
}

.contact-form-btn {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg,var(--primary-color) 0%,var(--secondary-color) 100%);
    color: #fff;
    border: none;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .3s ease;
    box-shadow: 0 10px 30px rgba(26,115,167,.25)
}

    .contact-form-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(26,115,167,.35)
    }

    .contact-form-btn svg {
        width: 20px;
        height: 20px;
        transition: transform .3s ease
    }

    .contact-form-btn:hover svg {
        transform: translateX(-5px)
    }

.contact-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15,23,42,.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease
}

    .contact-modal-overlay.active {
        opacity: 1;
        visibility: visible
    }

.contact-modal {
    background: #fff;
    border-radius: 24px;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(.9) translateY(20px);
    transition: all .4s cubic-bezier(.34,1.56,.64,1);
    box-shadow: 0 25px 80px rgba(0,0,0,.25)
}

.contact-modal-overlay.active .contact-modal {
    transform: scale(1) translateY(0)
}

.contact-modal-close {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: none;
    background: #f1f5f9;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s ease;
    z-index: 10
}

    .contact-modal-close:hover {
        background: #fee2e2;
        color: #ef4444
    }

    .contact-modal-close svg {
        width: 20px;
        height: 20px
    }

.contact-modal-header {
    padding: 2rem 2rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid #f1f5f9
}

.contact-modal-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg,rgba(26,115,167,.1) 0%,rgba(36,194,236,.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem
}

    .contact-modal-icon svg {
        width: 32px;
        height: 32px;
        color: var(--primary-color)
    }

.contact-modal-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: .5rem
}

.contact-modal-header p {
    font-size: .95rem;
    color: #64748b
}

.contact-modal-form {
    padding: 1.5rem 2rem 2rem
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem
}

.form-group {
    margin-bottom: 1.25rem
}

    .form-group label {
        display: block;
        font-size: .9rem;
        font-weight: 600;
        color: #374151;
        margin-bottom: .5rem
    }

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center
}

    .input-wrapper svg {
        position: absolute;
        right: 1rem;
        width: 18px;
        height: 18px;
        color: #9ca3af;
        pointer-events: none
    }

    .input-wrapper input {
        width: 100%;
        padding: .875rem 2.75rem .875rem 1rem;
        border: 2px solid #e5e7eb;
        border-radius: 12px;
        font-size: .95rem;
        font-family: inherit;
        transition: all .2s ease;
        background: #fafafa
    }

        .input-wrapper input:focus {
            outline: none;
            border-color: var(--primary-color);
            background: #fff;
            box-shadow: 0 0 0 4px rgba(26,115,167,.1)
        }

.textarea-wrapper textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: .95rem;
    font-family: inherit;
    resize: vertical;
    min-height: 100px;
    transition: all .2s ease;
    background: #fafafa
}

    .textarea-wrapper textarea:focus {
        outline: none;
        border-color: var(--primary-color);
        background: #fff;
        box-shadow: 0 0 0 4px rgba(26,115,167,.1)
    }

.file-upload-wrapper {
    position: relative
}

    .file-upload-wrapper input[type="file"] {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        opacity: 0;
        cursor: pointer;
        z-index: 2
    }

.file-upload-content {
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all .2s ease;
    background: #fafafa
}

.file-upload-wrapper:hover .file-upload-content {
    border-color: var(--primary-color);
    background: rgba(26,115,167,.02)
}

.file-upload-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg,rgba(26,115,167,.1) 0%,rgba(36,194,236,.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto .75rem
}

    .file-upload-icon svg {
        width: 24px;
        height: 24px;
        color: var(--primary-color)
    }

.file-upload-text {
    display: block;
    font-size: .9rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: .25rem
}

.file-upload-hint {
    font-size: .8rem;
    color: #9ca3af
}

.image-preview {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--primary-color)
}

    .image-preview img {
        width: 100%;
        height: 150px;
        object-fit: cover
    }

.remove-image {
    position: absolute;
    top: .5rem;
    left: .5rem;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: none;
    background: rgba(239,68,68,.9);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s ease
}

    .remove-image:hover {
        background: #ef4444;
        transform: scale(1.05)
    }

    .remove-image svg {
        width: 16px;
        height: 16px
    }

.submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    padding: 1rem;
    background: linear-gradient(135deg,var(--primary-color) 0%,var(--secondary-color) 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .3s ease;
    margin-top: .5rem
}

    .submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(26,115,167,.3)
    }

    .submit-btn svg {
        width: 18px;
        height: 18px
    }

@media(max-width:768px) {
    .form-row {
        grid-template-columns: 1fr
    }

    .contact-modal {
        max-width: 100%;
        margin: .5rem;
        border-radius: 20px
    }

    .contact-modal-form {
        padding: 1rem 1.5rem 1.5rem
    }

    .contact-form-title {
        font-size: 2rem
    }
}

:root {
    --event-primary: #0d4a6f;
    --event-secondary: #1a8a8a;
    --event-accent: #28a745;
    --event-gold: #c9a227;
    --event-light: #f0f7fa;
    --event-dark: #0a3a5a;
    --event-gradient: linear-gradient(135deg,#0d4a6f 0%,#1a8a8a 50%,#28a745 100%);
    --event-gradient-reverse: linear-gradient(135deg,#28a745 0%,#1a8a8a 50%,#0d4a6f 100%);
    --event-shadow: 0 10px 40px rgba(13,74,111,.12);
    --event-shadow-hover: 0 20px 60px rgba(13,74,111,.2);
    --transition-smooth: all .4s cubic-bezier(.4,0,.2,1);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 12px
}

.registration-modal .modal-content, .guide-modal .modal-content {
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(13,74,111,.25)
}

.registration-modal .modal-header, .guide-modal .modal-header {
    background: var(--event-gradient);
    padding: 25px 30px;
    border: none
}

.modal-header-content {
    display: flex;
    align-items: center;
    gap: 15px
}

.modal-icon {
    width: 55px;
    height: 55px;
    background: rgba(255,255,255,.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff
}

    .modal-icon.guide {
        background: rgba(231,76,60,.3)
    }

.modal-title {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0
}

.modal-subtitle {
    color: rgba(255,255,255,.8);
    font-size: .9rem;
    margin: 5px 0 0
}

.btn-close-modal {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth)
}

    .btn-close-modal:hover {
        background: rgba(255,255,255,.3);
        transform: rotate(90deg)
    }

.registration-modal .modal-body, .guide-modal .modal-body {
    padding: 30px
}

.registration-form .form-group {
    margin-bottom: 0
}

.registration-form .form-label {
    font-size: .95rem;
    font-weight: 600;
    color: var(--event-dark);
    margin-bottom: 10px
}

.registration-form .required {
    color: #e74c3c
}

.input-wrapper {
    position: relative
}

    .input-wrapper i {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--event-secondary);
        font-size: 1rem;
        z-index: 2
    }

    .input-wrapper.textarea-wrapper i {
        top: 18px;
        transform: none
    }

    .input-wrapper .form-control, .input-wrapper .form-select {
        padding: 14px 45px 14px 15px;
        border: 2px solid #e8f0f3;
        border-radius: var(--radius-sm);
        font-size: 1rem;
        transition: var(--transition-smooth);
        background: #f8fbfc
    }

        .input-wrapper .form-control:focus, .input-wrapper .form-select:focus {
            border-color: var(--event-secondary);
            background: #fff;
            box-shadow: 0 0 0 4px rgba(26,138,138,.1)
        }

        .input-wrapper .form-control::placeholder {
            color: #aaa
        }

    .input-wrapper textarea.form-control {
        min-height: 100px;
        resize: none
    }

.terms-check {
    padding: 20px;
    background: var(--event-light);
    border-radius: var(--radius-sm);
    margin-top: 10px
}

    .terms-check .form-check-input {
        width: 20px;
        height: 20px;
        margin-left: 12px;
        border: 2px solid var(--event-primary);
        cursor: pointer
    }

        .terms-check .form-check-input:checked {
            background-color: var(--event-primary);
            border-color: var(--event-primary)
        }

    .terms-check .form-check-label {
        font-size: .95rem;
        color: #555;
        cursor: pointer
    }

.terms-link {
    color: var(--event-primary);
    text-decoration: underline;
    font-weight: 600
}

.registration-modal .modal-footer, .guide-modal .modal-footer {
    padding: 20px 30px;
    border-top: 2px solid var(--event-light);
    gap: 12px
}

.btn-modal-cancel {
    padding: 12px 25px;
    border: 2px solid #e0e0e0;
    background: #fff;
    color: #666;
    border-radius: 50px;
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center
}

    .btn-modal-cancel:hover {
        border-color: #e74c3c;
        color: #e74c3c;
        background: rgba(231,76,60,.05)
    }

.btn-modal-submit {
    padding: 12px 30px;
    background: var(--event-gradient);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    box-shadow: 0 5px 20px rgba(13,74,111,.3)
}

    .btn-modal-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(13,74,111,.4)
    }

.btn-modal-download {
    padding: 12px 30px;
    background: linear-gradient(135deg,#e74c3c 0%,#c0392b 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: .95rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 20px rgba(231,76,60,.3)
}

    .btn-modal-download:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(231,76,60,.4);
        color: #fff
    }

.cv-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px
}

.h6-project-item .project-content .project-text .title {
    max-width: 100%
}

.cv-modal.active {
    display: flex
}

.cv-modal-content {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn .3s ease-out
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0
    }

    to {
        transform: translateY(0);
        opacity: 1
    }
}

.cv-modal-close {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #f44336;
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all .3s;
    z-index: 1
}

    .cv-modal-close:hover {
        background: #d32f2f;
        transform: rotate(90deg)
    }

.cv-header {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 3px solid var(--primary-color);
    margin-bottom: 25px
}

.cv-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg,#var(--primary-color),#var(--secondary-color));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 15px;
    box-shadow: 0 4px 15px rgba(93,208,240,.3)
}

.cv-name {
    font-size: 24px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 5px
}

.cv-position {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600
}

.cv-section {
    margin-bottom: 25px
}

.cv-section-title {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e8f4f8;
    display: flex;
    align-items: center;
    gap: 10px
}

    .cv-section-title i {
        color: var(--primary-color);
        font-size: 20px
    }

.cv-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 8px
}

    .cv-info-item i {
        color: var(--primary-color);
        font-size: 16px;
        width: 20px
    }

    .cv-info-item a {
        color: #2c3e50;
        text-decoration: none
    }

        .cv-info-item a:hover {
            color: var(--primary-color)
        }

.cv-text {
    line-height: 1.8;
    color: #555;
    text-align: justify
}

.cv-list {
    list-style: none;
    padding: 0
}

    .cv-list li {
        padding: 12px;
        background: #f8f9fa;
        border-radius: 8px;
        margin-bottom: 10px;
        position: relative;
        padding-right: 35px
    }

        .cv-list li::before {
            content: '';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            right: 12px;
            top: 12px;
            color: #5dd0f0
        }

.cv-experience-item {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 12px;
    border-right: 4px solid #5dd0f0
}

.cv-exp-title {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px
}

.cv-exp-company {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 5px
}

.cv-exp-period {
    font-size: 13px;
    color: #777;
    margin-bottom: 8px
}

.cv-exp-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.6
}

.cv-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.cv-skill-tag {
    background: linear-gradient(135deg,#5dd0f0,#3b82f6);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600
}

.team__single-content {
    min-height: 140px
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10,58,90,.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(15,34,64,.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .4s ease;
    backdrop-filter: blur(10px)
}

.footer-logo {
    max-width: 250px
}

.btn-cus {
    background-color: #218358 !important
}

    .btn-cus .btn-icon {
        background-color: #185e3f !important
    }

.txt-webyan {
    color: #2bc4ee
}

.sec-heading.style-6 .sub-title {
    background-color: rgba(255,255,255,.15);
    font-size: 18px;
    line-height: 1;
    font-weight: var(--tj-fw-medium);
    padding: 8px 14px 8px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid #dcf2fd;
    backdrop-filter: blur(15px)
}

@media only screen and (min-width:576px) and (max-width:767px),(max-width:575px) {
    .h6-project-item {
        border-radius: 45px !important
    }

    .footer-logo {
        max-width: 250px;
        justify-self: center
    }
}

.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px
}

    .contact-modal.active {
        display: flex
    }

.contact-modal-content {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn .3s ease-out
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0
    }

    to {
        transform: translateY(0);
        opacity: 1
    }
}

.contact-modal-close {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #f44336;
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all .3s;
    z-index: 1
}

    .contact-modal-close:hover {
        background: #d32f2f;
        transform: rotate(90deg)
    }

.contact-header {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 3px solid var(--primary-color);
    margin-bottom: 25px
}

.contact-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg,#var(--primary-color),#var(--secondary-color));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 15px;
    box-shadow: 0 4px 15px rgba(93,208,240,.3)
}

.contact-name {
    font-size: 24px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 5px
}

.contact-position {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600
}

.contact-section {
    margin-bottom: 25px
}

.contact-section-title {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e8f4f8;
    display: flex;
    align-items: center;
    gap: 10px
}

    .contact-section-title i {
        color: var(--primary-color);
        font-size: 20px
    }

.microsoft-form, .google-form {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: auto
}

p iframe {
    width: 100% !important
}

p img {
    width: 100% !important;
    height: auto;
    padding: 0 0 10px 0
}

.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0
}

.google-form iframe, .microsoft-form iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
    border: 0
}
