@import url("https://fonts.googleapis.com/css2?family=Assistant:wght@200..800&family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Cairo:wght@200..1000&family=Edu+AU+VIC+WA+NT+Pre:wght@400..700&family=Figtree:ital,wght@0,300..900;1,300..900&family=Kalam:wght@300;400;700&family=Karla:ital,wght@0,200..800;1,200..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");

:root {
    --primary-color: #0fb0b3;
    --primary-color-alt: #009598;
    --secondaryP-color: #0c2e4e;
    --green-color: #009688;
    --danger-color: darkred;
    --border-color: #ebebeb;
    --half-white: #dbdbdb;
    --second-color: #009688;
    --second-color-alt: #15426e;
    --white-color: #ffffff;
    --gray-color: #333;
    --transition: 0.4s all ease;
    --font-f2: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    --gradient: linear-gradient(135deg, #2a5151, var(--primary-color));
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-alt) 100%);
}

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

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    color: var(--gray-color);
    font-size: 16px;
    line-height: 25px;
    font-weight: 400;
    direction: rtl;
    font-family: "Cairo", sans-serif;
}

body#En-web {
    direction: ltr;
}

a {
    text-decoration: none !important;
    color: var(--second-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

.bg-sectionTwo {
    background-color: rgb(248 249 250);
}

.section-padding {
    padding: 60px 0;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}
.text-primary {
    color: var(--primary-color) !important;
}

input:focus,
input:focus-visible,
textarea:focus,
textarea:focus-visible {
    border: 1px solid #01bbbe !important;
    box-shadow: none !important;
    outline: none !important;
}

/* scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-thumb {
    background: var(--gradient);
    border-radius: 5px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 5px;
}

/* ================================== */
/* ====== Start Search System ======= */
/* ================================== */
.search-form {
    position: relative;
}

.search-form .suggestions-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid #ccc;
    max-height: 200px;
    overflow-y: auto;
    display: none;
    position: absolute;
    background: #fff;
    width: 100%;
    z-index: 999;
    top: 50px;
    left: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.search-form .suggestions-list li {
    padding: 10px;
    cursor: pointer;
    transition: background 0.2s;
    color: var(--gray-color);
    text-align: right;
}

.search-form .suggestions-list li:hover {
    background-color: #f0f0f0;
}

/* ================================== */
/* ====== End Search System ======= */
/* ================================== */

/* ============================= */
/* ======Start Go to Top======= */
/* ============================= */
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: -60px;
    width: 56px;
    height: 56px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    /* box-shadow: inset 0 0 0 2px RGBA(var(--color-black2-rgb), 0.3); */
    background: conic-gradient(var(--primary-color) var(--progress, 0%), #ddd 0%);
    padding: 3px;
    z-index: 99999;
    opacity: 0;
}

.scroll-top::before {
    content: "";
    position: absolute;
    inset: 3px;
    background: var(--white-color);
    border-radius: 50%;
}

.scroll-top .arrow {
    font-size: 24px;
    position: relative;
    z-index: 10;
}

.scroll-top i {
    color: var(--primary-color);
    font-size: 21px;
}

.scroll-top.active {
    right: 12px;
    opacity: 1;
    visibility: visible;
    transition: var(--transition);
}
/* ============================= */
/* ======End Go to Top======= */
/* ============================= */

/* ============================= */
/* =======Start Reveal========== */
/* ============================= */
/* short */
.reveal {
    position: relative;
    transform: translateY(50px);
    opacity: 0;
    transition: all 2s ease;
}
.reveal.active {
    transform: translateY(0px);
    opacity: 1;
    position: relative;
    z-index: 9;
}
/* long */
.reveal-long {
    position: relative;
    transform: translateY(100px);
    opacity: 0;
    transition: all 2s ease;
}
.reveal-long.active {
    transform: translateY(0px);
    opacity: 1;
    position: relative;
    z-index: 9;
}
/* ltr */
.reveal.reveal-ltr {
    position: relative;
    transform: translateX(-100px);
    opacity: 0;
    transition: all 2s ease;
}
.reveal.reveal-ltr.active {
    transform: translateX(0px);
    opacity: 1;
}
/* animate css */
.reveal-fadeLeft,
.reveal-fadeRight,
.reveal-jackInTheBox {
    opacity: 0;
}
.reveal-fadeLeft.animate__fadeInLeft,
.reveal-fadeRight.animate__fadeInRight,
.reveal-jackInTheBox.animate__fadeInRight {
    opacity: 1;
}
/* ============================= */
/* =======End Reveal========== */
/* ============================= */

/* ============================= */
/* ======Start Mouse Move======= */
/* ============================= */
.cursor {
    position: fixed;
    width: 25px;
    height: 25px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    pointer-events: none;
    transition: transform 0.1s ease-out, background-color 0.2s ease-out, opacity 0.2s ease-out;
    z-index: 9999999;
}

.cursor2 {
    position: fixed;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    pointer-events: none;
    transition: transform 0.15s ease-out, opacity 0.15s ease-out;
    z-index: 9999999;
}
/* ============================= */
/* ======End Mouse Move======= */
/* ============================= */

/* ============================= */
/* === Start Research Categories === */
/* ============================= */
/* .research-categories {
    background-color: #f8f9fa;
} */

.research-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.research-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.research-img {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.research-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.research-card:hover .research-img img {
    transform: scale(1.1);
}

.research-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.research-overlay h3 {
    color: #fff;
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.research-content {
    padding: 20px;
    position: relative;
}

.research-content h4 {
    color: var(--gray-color);
    font-size: 18px;
    margin-bottom: 0;
    padding-left: 40px;
}

.research-link {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--transition);
}

.research-link:hover {
    background: var(--primary-color-alt);
    color: #fff;
}

.research-categories .btn-primary {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 500;
}
.research-header {
    margin-bottom: 40px;
}
.research-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
/* ============================= */
/* === End Research Categories === */
/* ============================= */

.language-switcher {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: #f8f9fa;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: fit-content;
    margin: 20px auto;
}

.language-switcher a {
    text-decoration: none;
    color: #333;
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.language-switcher a:hover {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
}

/* ================================== */
/* ====== Start Section Title ======= */
/* ================================== */
.section-title {
    position: relative;
    margin-bottom: 40px;
}
.section-title h6 {
    display: flex;
    align-items: center;
    color: #0fb0b3;
    font-size: 18px;
    margin-bottom: 15px;
    justify-content: center;
}
.section-title h6 img {
    width: 23px;
    margin-left: 10px;
}
#En-web .section-title h6 img {
    margin-left: 0;
    margin-right: 10px;
}
.section-title h2 {
    font-size: 36px;
    font-weight: bold;
    color: var(--second-color-alt);
    margin-bottom: 20px;
}
/* ================================== */
/* ====== End Section Title ======= */
/* ================================== */

/* ============================= */
/* ====== Start Navbar======= */
/* ============================= */
#navbar {
    background-color: var(--primary-color);
    z-index: 9999999;
    transition: var(--transition);
    padding: 15px 0;
}
#navbar.navPages {
    background-color: var(--gray-color);
}
#navbar .navbar-brand {
    color: var(--white-color);
    margin: 0;
}
#navbar .navbar-brand img {
    width: 6.5rem;
}
#navbar .navbar-toggler {
    box-shadow: none;
    border: none;
}
#navbar .navbar-toggler i {
    color: var(--white-color);
    font-size: 30px;
}

/* start offcanvas */
#En-web .offcanvas {
    right: inherit;
    left: 0;
    transform: translateX(-100%);
}
#En-web .offcanvas.show:not(.hiding),
#En-web .offcanvas.showing {
    transform: none;
}
.offcanvas-header .btn-close {
    margin-right: auto;
    margin-left: inherit;
}
#En-web .offcanvas-header .btn-close {
    margin-right: inherit;
    margin-left: auto;
}
.offcanvas-header .offcanvas-title img {
    width: 6rem;
}
.offcanvas-body ul {
    margin-bottom: 30px;
}
.offcanvas-body .nav-link {
    font-weight: 500;
    font-size: 18px;
}
.offcanvas .account-select .login-option {
    color: var(--gray-color);
    border-color: var(--gray-color);
}
.offcanvas .account-select .login-option:hover {
    color: var(--white-color);
}
.offcanvas .account-select .register-option {
    background-color: var(--gray-color);
    color: white;
}
.offcanvas .account-select .register-option:hover {
    color: var(--gray-color);
}
.account-selection {
    border-top: 1px solid #33333324;
    padding-top: 18px;
    margin-top: 30px;
}
.account-selection img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.account-selection h4 a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 20px;
}
.account-selection h4 a:hover {
    color: var(--primary-color);
}
.language-selection button {
    padding: 5px 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    border-color: var(--primary-color);
    transition: var(--transition);
}
.language-selection button:hover {
    background-color: #009598;
    border-color: #009598;
}
.language-selection ul {
    min-width: 100%;
}
.language-selection ul li {
    transition: var(--transition);
}
.language-selection ul li:hover a {
    color: var(--primary-color);
}

/* end offcanvas */

#navbar.navFixed {
    background-color: var(--primary-color);
    transition: var(--transition);
    box-shadow: rgba(255, 255, 255, 0.2) 0px 8px 24px;
}

/* start fixed-content */
#navbar .fixed-content {
    opacity: 0;
    visibility: hidden;
    transition: 0.3s all;
    flex: 1;
    margin-left: 15px;
    margin-right: 15px;
}
#navbar.navFixed .fixed-content {
    opacity: 1;
    visibility: visible;
}
.fixed-content .search-form {
    margin: 0;
}
.fixed-content .btn-submit {
    font-size: 18px;
    z-index: 2;
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition);
    border: none;
    background-color: var(--primary-color);
    height: 100%;
    width: 50px;
    border-radius: 10px;
}
.fixed-content .btn-submit i {
    color: var(--white-color);
}
.fixed-content .search-form input[type="search"] {
    height: 47px;
}
.fixed-content .search-form .search-submit {
    height: 35px;
    width: 70px;
    font-size: 15px;
}
/* end fixed-content */

/* account */
.account-select {
    color: var(--white-color);
    margin-right: auto;
}
.offcanvas .account-select {
    border-top: 1px solid #33333324;
    padding-top: 22px;
    margin-top: 20px;
}
.account-select a {
    padding: 10px;
    border-radius: 6px;
    transition: var(--transition);
}
.account-select .login-option {
    color: var(--white-color);
    border: 1px solid var(--white-color);
}
.account-select .login-option:hover {
    background-color: #0c2e4e;
    border-color: #0c2e4e;
    color: white;
}
.account-select .register-option {
    color: var(--gray-color);
    background-color: var(--white-color);
    border: 1px solid transparent;
}
.account-select .register-option:hover {
    background-color: var(--half-white);
    border-color: var(--half-white);
}
#navbar .navbar-nav .nav-link.active,
#navbar .navbar-nav .nav-link.show {
    color: var(--primary-color);
}
/* profile */
#DropMenu-Profile button #img-user {
    width: 38px;
    height: 38px;
    border-radius: 50%;
}
#DropMenu-Profile #dropdown-menu {
    padding: 10px 0;
    margin: 0;
    padding-bottom: 0;
    width: 15rem;
    border: none;
    box-shadow: 0 5px 30px 0 rgba(82, 63, 105, 0.2);
    right: -12.5rem;
    top: 50px;
}
#En-web #DropMenu-Profile #dropdown-menu {
    right: 0;
}
#DropMenu-Profile #dropdown-menu::before {
    content: "";
    border-color: transparent transparent rgb(255, 255, 255) transparent;
    border-width: 10px;
    border-style: solid;
    position: absolute;
    left: 10px;
    top: -19px;
}
#En-web #DropMenu-Profile #dropdown-menu::before {
    right: 10px;
    left: auto;
}
#DropMenu-Profile #dropdown-menu #Profile-items {
    padding: 10px 25px;
    text-align: center;
}
#DropMenu-Profile #dropdown-menu #Profile-items h4 {
    font-size: 18px;
    margin-bottom: 0;
    font-weight: 600;
    color: #444444;
}
#DropMenu-Profile #dropdown-menu #Profile-items p {
    color: var(--gray-color);
    font-size: 14px;
    margin-bottom: 0;
    margin-top: 5px;
}
#DropMenu-Profile #dropdown-menu #box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    transition: 0.3s;
    border-top: 1px solid #bababa;
}
#DropMenu-Profile #dropdown-menu #box:hover {
    background-color: #f6f9ff;
    cursor: pointer;
}
#DropMenu-Profile #dropdown-menu #box a {
    color: inherit;
}
#DropMenu-Profile .dropdown-toggle {
    padding: 0;
}
#DropMenu-Profile .dropdown-toggle::after {
    display: none;
}
/* ============================= */
/* ====== End Navbar======= */
/* ============================= */

/* ============================= */
/* ====== Start Intro Page======= */
/* ============================= */
.home-intro {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-color);
    overflow: hidden;
}
.search-form {
    margin-top: 50px;
    display: flex;
    width: 100%;
    position: relative;
}
.search-form input[type="search"] {
    width: 100%;
    height: 60px;
    border: none;
    padding: 20px 20px 20px 95px;
    font-size: 18px;
    color: var(--primary-color);
    font-weight: bold;
    border-radius: 10px;
}
#En-web .search-form input[type="search"] {
    padding: 20px 95px 20px 20px;
}
.search-form input[type="search"]:focus-visible {
    border: none;
    outline: none;
}
.search-form .search-submit {
    height: 40px;
    width: 80px;
    background-color: var(--primary-color);
    border: none;
    font-size: 18px;
    z-index: 2;
    font-weight: bold;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white-color);
    border-radius: 10px;
    transition: var(--transition);
}
.search-form .search-submit:hover {
    background-color: var(--primary-color-alt);
}
#En-web .search-form .search-submit {
    right: 10px;
    left: inherit;
}
.waves {
    position: relative;
    width: 100%;
    height: 122px;
    top: -122px;
    min-height: 100px;
    max-height: 150px;
}
.parallax > use {
    animation: move-forever 10s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}
/* ============================= */
/* ====== End Intro Page======= */
/* ============================= */

/* ==================================== */
/* ====== Start Feature Section ======= */
/* ==================================== */
.feature {
    margin-bottom: 60px;
}
.featured-item.style-1 {
    position: relative;
    padding: 33px 80px 31px 40px;
    background-color: #f6f6f6;
    border-radius: 20px;
    margin-bottom: 30px;
    height: 90%;
}
#En-web .featured-item.style-1 {
    padding: 33px 80px 31px 40px;
}
.featured-item.style-1 .featured-number {
    font-size: 14px;
    text-align: left;
}
#En-web .featured-item.style-1 .featured-number {
    text-align: right;
}
.featured-item.style-1 .featured-icon {
    margin-bottom: 15px;
    overflow: hidden;
    text-align: right;
    margin-right: -40px;
    color: var(--second-color-alt);
}
#En-web .featured-item.style-1 .featured-icon {
    text-align: left;
    margin-right: 0;
}
.featured-item.style-1 .featured-icon img {
    width: 4rem;
}
.featured-item.style-1 .featured-subtitle {
    font-size: 13px;
    line-height: 20px;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #666;
}
.featured-item.style-1 .featured-title h5 {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 0px;
    padding-right: 10px;
    color: var(--second-color-alt);
}
.button-style-2 {
    position: absolute;
    left: 0;
    bottom: 0;
    background: #fff;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    padding: 10px 10px 0 0;
    border-radius: 0 60% 0 0;
    z-index: 9;
}
#En-web .button-style-2 {
    left: auto;
    right: 0;
    padding: 10px 0 0 10px;
    border-radius: 60% 0 0% 0;
}
.portfolio-item.style-1 .button-style-2 {
    z-index: 99;
}
.button-style-2::before {
    position: absolute;
    content: "";
    top: -13px;
    left: 0px;
    height: 16px;
    width: 1px;
    background-color: #fff;
    z-index: 9;
}
#En-web .button-style-2::before {
    left: auto;
    right: 0px;
}
.button-style-2 > svg {
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: -20px;
    left: 0px;
    transform: rotate(270deg) scale(1.01);
}
#En-web .button-style-2 > svg {
    left: auto;
    right: 0px;
    transform: rotate(180deg) scale(1.01);
}
.button-style-2 > svg > path {
    fill: #fff !important;
}
.button-style-2 .button-style-2-link {
    background: #f6f6f6;
    width: 50px;
    height: 50px;
    line-height: 54px;
    text-align: center;
    border-radius: 100%;
    font-size: 27px;
    display: inline-block;
    position: relative;
    z-index: 2;
    transition: 0.3s all;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
}
.button-style-2 .button-style-2-link:hover {
    background: var(--gradient);
    color: white;
}
.button-style-2 a::before {
    position: absolute;
    content: "";
    top: 37px;
    left: -11px;
    height: 16px;
    width: 1px;
    background-color: #fff;
    z-index: 9;
}
#En-web .button-style-2 a::before {
    left: auto;
    right: -11px;
}
.button-style-2 .button-style-2-link i {
    transform: rotate(230deg);
    display: block;
}
#En-web .button-style-2 .button-style-2-link i {
    transform: rotate(323deg);
}
.button-style-2 a::after {
    position: absolute;
    content: "";
    bottom: 0px;
    left: -24px;
    height: 1px;
    width: 16px;
    background-color: #fff;
    z-index: 9;
}
#En-web .button-style-2 a::after {
    left: auto;
    right: -24px;
}
.button-style-2 > svg:last-of-type {
    top: auto;
    bottom: 0px;
    right: -20px;
    left: auto;
}
#En-web .button-style-2 > svg:last-of-type {
    top: auto;
    bottom: 0px;
    left: -20px;
    right: auto;
}
.button-style-2::after {
    position: absolute;
    content: "";
    bottom: -1px;
    left: -2px;
    height: 1px;
    width: 16px;
    background-color: #fff;
    z-index: 9;
}
#En-web .button-style-2::after {
    left: auto;
    right: -2px;
}
/* ==================================== */
/* ====== End Feature Section ======= */
/* ==================================== */

/* Floating Elements Animation */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.floating-element {
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

.floating-element img {
    width: 50px;
    height: 50px;
    opacity: 0.6;
}

.element-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    top: 40%;
    right: 15%;
    animation-delay: 2s;
}

.element-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

/* Intro Section Enhancement */
.intro-content {
    position: relative;
    z-index: 2;
}
.intro-content h1,
.intro-content p {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
/* About Section Enhancement */
.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.about-features {
    margin-bottom: 30px;
}
.feature-item {
    margin-bottom: 10px;
}
.feature-item i {
    color: var(--second-color-alt);
}

/* Services List Enhancement */
.services-list {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-item {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: #f8f9fa;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
}

.service-icon img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.service-content h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.service-content p {
    color: #6c757d;
    font-size: 16px;
    line-height: 1.6;
}

/* Contact Section Enhancement */
.contact-form textarea {
    min-height: 10rem;
}
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
}
#En-web .contact-icon {
    margin-left: 0;
    margin-right: 15px;
}

.contact-icon i {
    font-size: 20px;
    color: #007bff;
}
#En-web .contact-icon i {
    margin-left: 0;
    margin-right: 15px;
}
.contact-section .section-title h6 {
    justify-content: right;
}
#En-web .contact-section .section-title h6 {
    justify-content: left;
}
.form-group {
    margin-bottom: 20px;
}

.form-control {
    border: none;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    background: #fff;
}

/* Partners Section Enhancement */
.partner-logo {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.05);
}

.partner-logo img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

/* hero section in pages */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("/img/breadcrumb.jpg");
    background-size: cover;
    background-position: center;
    color: white;
    /* padding: 100px 0; */
    text-align: center;
    min-height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Statistics Section Enhancement */
.stat-item {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon i {
    font-size: 30px;
    color: #007bff;
}

.counter {
    font-size: 40px;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 10px;
}

/* Button Enhancement */

.btn-primary:hover {
    background: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.2);
}

/* Swiper Navigation Enhancement */
.swiper-button-next,
.swiper-button-prev {
    color: #007bff;
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #007bff;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.2);
}

/* Footer Section */
.footer-section {
    background-color: #0c2e4e;
    padding: 80px 0 0;
    color: #fff;
}

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

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    margin: 20px 0;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #00bcd4;
    transform: translateY(-3px);
}

#contactForm label {
    margin-bottom: 5px;
}

.footer-links h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #00bcd4;
}
#En-web .footer-links h4::after {
    right: auto;
    left: 0;
}
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: #00bcd4;
    transform: translateX(-8px);
}
#En-web .footer-links ul li a:hover {
    transform: translateX(8px);
}
.footer-newsletter h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-newsletter h4::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #00bcd4;
}
#En-web .footer-newsletter h4::after {
    right: auto;
    left: 0;
}
.footer-newsletter p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.8;
}

.newsletter-form .form-group {
    position: relative;
    margin-bottom: 0;
}

.newsletter-form .form-control {
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    padding: 0 60px 0 20px;
    border-radius: 30px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .submit-btn {
    position: absolute;
    left: 5px;
    top: 5px;
    height: 40px;
    width: 40px;
    background: #00bcd4;
    border: none;
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}
#En-web .newsletter-form .submit-btn {
    left: auto;
    right: 5px;
}
.newsletter-form .submit-btn:hover {
    background: #008ba3;
    transform: scale(1.1);
}

.footer-bottom {
    margin-top: 60px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* About Page Styles */
.about-header {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-alt) 100%);
    color: #fff;
    margin-top: 80px;
}

.about-header-content {
    padding: 20px;
}

.about-header-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-header-content .lead {
    font-size: 20px;
    line-height: 1.6;
}

.about-header-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.BreadcrumbPages {
    padding: 100px 0;
    color: #fff;
    margin-top: 80px;
    background-image: url(/img/breadcrumb.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.breadcrumb {
    margin-top: 20px;
}
.breadcrumb a {
    color: var(--primary-color);
    transition: var(--transition);
}
.breadcrumb a:hover {
    color: var(--primary-color-alt);
}
.breadcrumb-item.active {
    color: white;
}
.breadcrumb-item + .breadcrumb-item::before {
    color: white;
    float: inherit;
    right: -3px;
    position: relative;
}
.breadcrumb-item + .breadcrumb-item {
    padding: 0;
}
.about-section {
    overflow: hidden;
}
.about-content-section {
    padding: 80px 0;
}

.about-main-content {
    padding: 20px;
}

.about-main-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 32px;
}

.about-main-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #333;
}

.about-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.about-list li {
    padding: 10px 0;
    padding-right: 30px;
    position: relative;
    font-size: 18px;
}
#En-web .about-list li {
    padding-right: 0;
    padding-left: 20px;
}
.about-list li:before {
    content: "✓";
    position: absolute;
    right: 0;
    color: var(--primary-color);
    font-weight: bold;
}
#En-web .about-list li:before {
    left: 0;
    right: auto;
}
.objectives-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.objective-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.objective-item:hover {
    transform: translateY(-10px);
}

.objective-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.objective-icon i {
    font-size: 30px;
    color: #fff;
}

.objective-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.objective-item p {
    font-size: 16px;
    margin-bottom: 0;
}

.about-sidebar {
    padding: 20px;
}

.sidebar-widget {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.sidebar-widget .search-form input {
    width: auto;
    background-color: #ffffff;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.sidebar-widget .search-form button {
    border-top-left-radius: 3rem !important;
    border-bottom-left-radius: 3rem !important;
    border-top-right-radius: 0%;
    border-bottom-right-radius: 0%;
}

.sidebar-widget h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 24px;
}

.categories-list a {
    color: #0fb0b3;
    font-weight: 500;
}
.categories-list a span.badge {
    background-color: #009688 !important;
}

.statistics-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-text {
    font-size: 14px;
    color: #666;
}

.contact-info {
    margin-top: 20px;
}
.contact-info .info-item {
    display: flex;
    align-items: start;
    gap: 10px;
}
.contact-info .info-item i {
    color: #009688;
    font-size: 20px;
}
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    transition: var(--transition);
}
#En-web .contact-item i {
    margin-left: 0;
    margin-right: 15px;
}
.contact-item span {
    font-size: 16px;
    color: #333;
}

/* Founder Page Styles */
.founder-header {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-alt) 100%);
    color: #fff;
}

.founder-header-content {
    padding: 20px;
}

.founder-header-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--second-color-alt);
}

.founder-header-content .lead {
    font-size: 20px;
    line-height: 1.6;
}

.founder-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    width: 70%;
    margin: auto;
}

.founder-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.founder-image:hover img {
    transform: scale(1.05);
}

.founder-content-section {
    padding: 80px 0;
}

.founder-main-content {
    padding: 20px;
}

.founder-main-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 32px;
}

.founder-main-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #333;
}

.founder-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.founder-list li {
    padding: 10px 0;
    padding-right: 30px;
    position: relative;
    font-size: 18px;
}

.founder-list li:before {
    content: "✓";
    position: absolute;
    right: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.achievement-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-10px);
}

.achievement-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.achievement-icon i {
    font-size: 30px;
    color: #fff;
}

.achievement-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.achievement-item p {
    font-size: 16px;
    margin-bottom: 0;
}

.founder-sidebar {
    padding: 20px;
}

.sidebar-widget {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 24px;
}

.contact-info {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    background: #fff;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
}
.contact-item:hover i {
    margin-left: 0;
}
#En-web .contact-item:hover i {
    margin-right: 0;
}
.contact-item span {
    font-size: 16px;
    color: #333;
}

.latest-research {
    margin-top: 20px;
}

.research-item {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.research-item:hover {
    transform: translateX(10px);
}

.research-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.research-item p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
}

.post-card.style-1 {
    position: relative;
    margin-bottom: 30px;
    border-radius: 20px;
    padding: 0px 3px;
}
.post-card.style-1 .post-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0px 20px;
    height: 300px; /* Fixed height */
}
.post-card.style-1 .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers the container properly */
}
.post-card.style-1:hover .post-image img {
    transform: scale(1.1);
}
.post-card.style-1 ul.post-bottom {
    padding: 0px;
    margin: 15px 0px 10px 0px;
    display: flex;
}
.post-card .post-bottom li {
    color: #15426e;
    font-weight: 500;
    font-size: 13px;
    position: relative;
    margin-right: 10px;
    letter-spacing: 0;
    display: inline-block;
    text-transform: uppercase;
}
.list-inline-item:not(:last-child) {
    margin-right: 0.5rem;
}
.post-card.style-1 .post-bottom li i {
    color: #0fb0b3;
    font-size: 20px;
    line-height: 20px;
    margin-right: 5px;
}
.post-card.style-1 .post-title h4 {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 0;
    margin-top: 12px;
    z-index: 9;
    position: relative;
}
.post-card .post-title h4 a {
    color: #15426e;
    display: inline;
}
.post-card.style-1 .post-bottom li a {
    color: #666666;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08px;
}
.post-card.style-1 .button-style-2 .button-style-2-link {
    background-color: #0fb0b3;
    color: white;
}
.post-card.style-1 .button-style-2 .button-style-2-link:hover {
    background-color: #15426e;
}
.portfolio-item.style-1 {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
    margin-left: 3px;
    margin-right: 3px;
    border-radius: 30px 30px 30px 0px;
}
#En-web .portfolio-item.style-1 {
    border-radius: 30px 30px 0px 30px;
}
.portfolio-item.style-1 .portfolio-desc {
    position: absolute;
    bottom: 0px;
    left: 0px;
    padding: 130px 40px 35px 38px;
    width: 100%;
    z-index: 9;
    background: rgb(21, 66, 110);
    background: linear-gradient(0deg, #0fb0b3e6 31%, rgba(255, 255, 255, 0) 100%);
}
.portfolio-name {
    position: relative;
}
.portfolio-item .portfolio-cat a {
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #fff;
    letter-spacing: 0.8px;
}
.portfolio-item.style-1 h4 {
    line-height: 32px;
    font-size: 22px;
    color: #fff;
    margin-top: 7px;
}
.portfolio-item.style-1 h4 a {
    color: #fff !important;
}
.portfolio-item.style-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    transition: 0.9s;
}
.portfolio-item.style-1:hover img {
    transform: scale(1.1);
}
.portfolio-image {
    height: 400px; /* Adjusted height */
}

/* ============================= */
/* ===========Blogs============== */
/* ============================= */
.blog_box {
    background-color: #fefcfb;
    box-shadow: 2px 1px 5px 0px rgba(2, 69, 122, 0.04), 9px 4px 10px 0px rgba(2, 69, 122, 0.03), 19px 10px 13px 0px rgba(2, 69, 122, 0.02), 35px 17px 15px 0px rgba(2, 69, 122, 0.01), 54px 27px 17px 0px rgba(2, 69, 122, 0);
    border-radius: 15px;
    overflow: hidden;
}
.blog_box .blog_img {
    position: relative;
    z-index: 5;
    height: 300px; /* Fixed height */
    overflow: hidden;
}
.blog_box .blog_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s linear 0s;
}
.blog_box:hover .blog_img img {
    transform: scale(1.1);
}
.blog_box .blog_img p {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 0px 8px;
    color: #fefcfb;
    background-color: #bfacf9;
    border-radius: 5px;
}

.blog_box .blog_text {
    position: relative;
    z-index: 10;
    background: url(/img/blog_card_bg.png) no-repeat;
    background-size: cover;
    background-position: center;
    margin-top: -88px;
    filter: drop-shadow(-2px -1px 5px rgba(2, 69, 122, 0.04)) drop-shadow(-9px -4px 10px rgba(2, 69, 122, 0.03)) drop-shadow(-19px -10px 13px rgba(2, 69, 122, 0.02)) drop-shadow(-35px -17px 15px rgba(2, 69, 122, 0.01)) drop-shadow(-54px 27px 17px rgba(2, 69, 122, 0));
    border-radius: 0 0 15px 15px;
    padding: 67px 24px 24px;
}
.blog_box .blog_text h5 a {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #0fb0b3;
}
.blog_box .blog_text p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.blog_box .blog_text .author {
    display: flex;
    align-items: center;
    gap: 8px;
}
.blog_box .blog_text .author img {
    border-radius: 50%;
    border: 1px solid #1479b8;
}
.blog_box .blog_text a.educate_link_btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1479b8 !important;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 0;
    padding-top: 20px;
}
.blog_box .blog_text a.educate_link_btn i {
    transform: rotate(180deg);
}
#En-web .blog_box .blog_text a.educate_link_btn i {
    transform: rotate(0deg);
}
/* blog details */

/* ============================= */
/* =====Login & Register======== */
/* ============================= */
.form_page {
    position: relative;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

.form_page::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url(/img/login.png);
    background-size: cover;
    background-position: center;
    transform: rotate(180deg);
    z-index: -1;
}
#En-web .form_page::before {
    transform: rotate(0deg);
}
.form_page h2 {
    font-weight: 500;
    font-size: 47px;
}
.form_page .h6,
.form_page h6 {
    font-weight: 600;
    font-size: 16px;
}
.form_page .form_block {
    height: 100vh;
    display: grid;
    align-content: center;
    position: relative;
}
.form_page .form_block .text_block {
    position: relative;
    z-index: 25;
}
.form_page .form_block .text_block a i {
    transform: rotate(180deg);
}
#En-web .form_page .form_block .text_block a i {
    transform: rotate(0deg);
}
.educate_link_btn {
    display: flex;
    align-items: center;
    gap: 8px;
}
.form_page .form_block .text_block .title {
    position: relative;
    width: fit-content;
}
.form_page .form_block .text_block .title .speaker_icon {
    position: absolute;
    width: 73px;
    height: 73px;
    right: -75px;
    top: -30px;
}
.form_page .form_block .text_block .link-btn {
    background: transparent;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    justify-content: center;
    width: 100%;
    padding: 8px 12px;
    transition: all 0.5s ease;
    border-radius: 5px;
    border: 1px solid #b7bdbb;
}
.form_page .form_block .text_block .link-btn:hover {
    color: var(--second-color);
}
.form_page .form_block .text_block .or {
    position: relative;
    text-align: center;
}
.form_page .form_block .text_block .or::after,
.form_page .form_block .text_block .or::before {
    content: "";
    height: 1px;
    width: 46%;
    position: absolute;
    top: 14px;
    background: #c9cfce;
}
.form_page .form_block .text_block .or::before {
    left: 0;
}
.form_page .form_block .text_block .or::after {
    right: 0;
}
.form_page .form_block .text_block .bottom-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
}
.form_page .form_block .text_block .bottom-row a {
    font-weight: 700;
}
.form_page .form_block .shapes img {
    position: absolute;
}
.form_page .form_block .shapes img:nth-child(1) {
    right: 50px;
    top: 98px;
}
#En-web .form_page .form_block .shapes img:nth-child(1) {
    right: 0;
    top: 0;
}
.form_page .form_block .shapes img:nth-child(2) {
    top: 46%;
    left: -150px;
}
#En-web .form_page .form_block .shapes img:nth-child(2) {
    top: 0;
    left: 0;
}
.form_page .form_block .shapes img:nth-child(3) {
    bottom: -94px;
    right: 0;
}
#En-web .form_page .form_block .shapes img:nth-child(3) {
    bottom: 0;
    right: 0;
}
.form_page .form_block .shapes img:nth-child(4) {
    right: 70px;
    bottom: 30px;
}
#En-web .form_page .form_block .shapes img:nth-child(4) {
    right: 0;
    bottom: 0;
}

.kingBtn {
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    border: none;
    outline: none !important;
    background-color: #0aa6d7;
    color: #fefcfb;
    font-size: 16px;
    width: 100% !important;
    font-weight: 600;
    border-radius: 5px;
    text-transform: capitalize;
    padding: 12px 24px;
    overflow: hidden;
    width: fit-content;
    z-index: 2;
    position: relative;
    -webkit-transition: all 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
}
.kingBtn span {
    position: absolute;
    right: -15px;
    top: 0;
    width: 33px;
    height: 100%;
    background: #f6f5f5;
    opacity: 0.2;
    z-index: 0;
    -webkit-transform: skewX(-22deg);
    transform: skewX(-22deg);
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.kingBtn:hover span {
    right: 0;
    width: 100%;
    -webkit-transform: skewX(0deg);
    transform: skewX(0deg);
}

/* awareness-categories */
.category-card img {
    width: 100%;
}

/* latest-articles */
.article-card {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 20px;
}
.article-card img {
    width: 100%;
}
.article-content {
    padding: 30px;
}
.article-content .article-meta {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 15px;
}
#En-web .article-content .article-meta {
    justify-content: left;
}
#En-web .founder-list li {
    padding-right: 0px;
    padding-left: 30px;
}
#En-web .founder-list li:before {
    left: 0;
    right: auto;
}
.article-content .article-meta i {
    color: #0fb0b3;
}
.comment-form input {
    background-color: white;
}
.comment-form textarea {
    background-color: white;
}

/* researchers-categories */
.category-card img {
    width: 100%;
    /* height: 20rem; */
}
.category-icon {
    border-radius: 20px;
    overflow: hidden;
    height: 250px; /* Fixed height */
}
.category-card .category-content {
    background-color: white;
    position: relative;
    top: -70px;
    width: 20rem;
    border-radius: 40px;
    text-align: center;
    margin: auto;
    padding: 30px 20px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.category-card .category-content h3 {
    margin-bottom: 20px;
}
.category-card .category-content h3 a {
    background-image: linear-gradient(currentcolor, currentcolor), linear-gradient(currentcolor, currentcolor);
    display: inline;
    background-size: 0% 1px, 0 1px;
    background-position: 100% 100%, 0 100%;
    background-repeat: no-repeat;
    transition: all 0.4s ease;
}
.category-card:hover .category-content h3 a {
    background-size: 0% 1px, 100% 1px;
}

.category-card .category-content p {
    margin-bottom: 15px;
}

/* donation-Projects */
.project-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    margin-bottom: 30px;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7));
    opacity: 0;
    transition: all 0.4s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: #fff;
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.project-content {
    padding: 25px;
    position: relative;
    background: #fff;
}

.project-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondaryP-color);
}

.project-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.project-progress {
    margin-bottom: 20px;
}

.progress {
    height: 8px;
    background: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-color-alt));
    position: relative;
    transition: width 1s ease;
}

.progress-bar::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.1) 100%);
    animation: progressShine 2s infinite;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.progress-info span {
    font-weight: 600;
}

.progress-info .text-primary {
    color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-color-alt);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: all 0.3s ease;
}

.btn-primary:hover .btn-overlay {
    opacity: 1;
}

/* ================================== */
/* ====== End Donation Styles ===== */
/* ================================== */

/* ================================== */
/* ====== Start News Styles ===== */
/* ================================== */

/* News Section */
.news-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.news-card {
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    overflow: hidden;
}

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

.news-image {
    position: relative;
    overflow: hidden;
}

.news-image img {
    transition: all 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-date {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
}

.news-content {
    padding: 1.5rem;
}

.news-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.news-meta i {
    color: var(--primary-color);
}

.news-excerpt {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* News Details */
.news-details {
    padding: 80px 0;
}

.news-header {
    margin-bottom: 2rem;
}

.news-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.news-meta-details {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.news-content-details {
    line-height: 1.8;
}

.news-content-details p {
    margin-bottom: 1.5rem;
}

.news-content-details img {
    max-width: 100%;
    height: auto;
    margin: 1.5rem 0;
    border-radius: 0.5rem;
}

/* Related News */
.related-news {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.related-news h2 {
    margin-bottom: 2rem;
}

/* ================================== */
/* ====== End News Styles ===== */
/* ================================== */

/* ================================== */
/* ====== Start Blog Styles ===== */
/* ================================== */

/* Blog Details Section */
.blog-details-section {
    padding: 80px 0;
}

.blog-post {
    background-color: var(--white-color);
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.post-header {
    padding: 2rem;
    text-align: center;
}

.post-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--second-color-alt);
    padding: 0 10px;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.post-meta i {
    color: var(--primary-color);
    margin-left: 0.5rem;
}

.post-image {
    margin-bottom: 2rem;
    overflow: hidden;
    border-radius: 0.5rem;
    height: 400px; /* Fixed height */
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
    transition: 0.7s;
}
.post-image:hover img {
    transform: scale(1.1);
}

.post-content {
    padding: 2rem;
}

.content-section {
    margin-bottom: 2rem;
}

.content-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--second-color-alt);
}

.post-quote {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 0.5rem;
    margin: 2rem 0;
}

.post-quote blockquote {
    position: relative;
    padding: 0 2rem;
}

.post-quote i {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.2;
}

.post-quote p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.post-quote cite {
    font-weight: 600;
    color: var(--second-color-alt);
}

.post-footer {
    background-color: var(--light-bg);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
}

.post-tags {
    margin-bottom: 1.5rem;
}

.post-tags .badge {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    margin-left: 0.5rem;
    background-color: var(--primary-color) !important;
    transition: var(--transition);
    margin-bottom: 10px;
}
.post-tags .badge:hover {
    background-color: var(--border-color) !important;
    color: var(--gray-color);
}

.post-share {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.post-share .btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Comments Section */
.comments-section {
    margin-top: 3rem;
}

.comment-list {
    margin-bottom: 2rem;
}

.comment {
    background-color: var(--light-bg);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.comment-author {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.comment-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-left: 1rem;
}

.author-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    color: var(--second-color-alt);
}

.author-info span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.comment-content p {
    margin-bottom: 0;
}

/* Comment Form */
.comment-form {
    margin-top: 2rem;
}

.comment-form form {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 0.5rem;
}

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

.comment-form .form-control {
    height: 3rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
}

.comment-form textarea.form-control {
    height: 150px;
}

/* Blog Sidebar */
.blog-sidebar {
    padding-right: 2rem;
}

.sidebar-widget {
    background-color: var(--light-bg);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}

.sidebar-widget h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--second-color-alt);
}

.sidebar-widget .search-form .input-group {
    border-radius: 0.5rem;
    overflow: hidden;
}

.sidebar-widget .search-form .form-control {
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
}

.sidebar-widget .search-form .btn {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: none;
    padding: 0.5rem 1rem;
}

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

.categories-list li {
    margin-bottom: 0.75rem;
}

.categories-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.categories-list a:hover {
    color: var(--primary-color);
    transform: translateX(-5px);
}

.categories-list .badge {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
}

.recent-posts {
    margin-top: 1.5rem;
}

.recent-post {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.recent-post img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-left: 1rem;
}

.recent-post .post-info h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.recent-post .post-info h4 a {
    color: var(--second-color-alt);
    text-decoration: none;
    transition: all 0.3s ease;
}

.recent-post .post-info h4 a:hover {
    color: var(--primary-color);
}

.recent-post .post-info span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tags .badge {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    background-color: var(--border-color);
    color: var(--gray-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.tags .badge:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

/* ================================== */
/* ====== End Blog Styles ===== */
/* ================================== */

/* Enhanced Category Card Styles */
.category-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.category-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c3e50 100%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.category-card:hover::before {
    opacity: 0.1;
}

.category-icon {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.category-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: all 0.4s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.category-card:hover .category-icon img {
    transform: scale(1.1);
}

.category-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.category-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.category-content h3 a {
    color: inherit;
    text-decoration: none;
    position: relative;
}

.category-content h3 a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.category-card:hover .category-content h3 a::after {
    width: 100%;
}

.category-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1;
}

.category-card .btn-primary {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
    position: relative;
    overflow: hidden;
}

.category-card .btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.category-card .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .category-card {
        padding: 20px;
    }

    .category-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .category-icon img {
        width: 40px;
        height: 40px;
    }

    .category-content h3 {
        font-size: 1.3rem;
    }

    .category-content p {
        font-size: 1rem;
    }
}

/* Enhanced Card Styles */
.post-card.style-1 {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.post-card.style-1:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.post-card.style-1 .post-image {
    position: relative;
    overflow: hidden;
    height: 280px;
    border-radius: 20px 20px 0 0;
}

.post-card.style-1 .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-card.style-1:hover .post-image img {
    transform: scale(1.1);
}

.post-card.style-1 .post-content {
    padding: 25px;
    background: #ffffff;
}

.post-card.style-1 .post-title h4 a {
    transition: all 0.3s ease;
}

.post-card.style-1 .post-title h4 a:hover {
    color: var(--primary-color);
}

.post-card.style-1 ul.post-bottom {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 25px;
    background: #f8f9fa;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin: 0;
}

.post-card.style-1 .post-bottom li {
    font-size: 14px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-card.style-1 .post-bottom li i {
    color: var(--primary-color);
    font-size: 16px;
}

/* Blog Box Enhancement */
.blog_box {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.blog_box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.blog_box .blog_img {
    height: 280px;
    position: relative;
    overflow: hidden;
}

.blog_box .blog_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog_box:hover .blog_img img {
    transform: scale(1.1);
}

.blog_box .blog_text {
    padding: 25px;
    background: #ffffff;
    position: relative;
    margin-top: 0;
}

.blog_box .blog_text h5 {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 15px;
    font-weight: 600;
}

.blog_box .blog_text h5 a {
    transition: color 0.3s ease;
}

.blog_box .blog_text h5 a:hover {
    color: var(--primary-color);
}

.blog_box .blog_text p {
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.blog_box .blog_text .author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.blog_box .blog_text .author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

/* Category Card Enhancement */
.category-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.category-icon {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.category-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-icon img {
    transform: scale(1.1);
}

.category-card .category-content {
    padding: 25px;
    background: #ffffff;
    text-align: center;
    position: relative;
    margin-top: -50px;
    margin-left: 20px;
    margin-right: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.category-card .category-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.category-card .category-content p {
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.category-card .btn-primary {
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    background: var(--primary-color);
    border: none;
}

.category-card .btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* Project Card Enhancement */
.project-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-content {
    padding: 25px;
    background: #ffffff;
}

.project-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.project-content p {
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.project-progress {
    margin: 20px 0;
}

.progress {
    height: 8px;
    background-color: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-bar {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 4px;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
}

/* Modern Card Design - New Style */
.post-card.style-1 {
    position: relative;
    background: #ffffff;
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 30px;
}

.post-card.style-1::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.post-card.style-1:hover::before {
    opacity: 0.05;
}

.post-card.style-1:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.post-card.style-1 .post-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 25px;
    margin: 12px;
}

.post-card.style-1 .post-image::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    z-index: 1;
}

.post-card.style-1 .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.post-card.style-1:hover .post-image img {
    transform: scale(1.08);
}

.post-card.style-1 .post-content {
    position: relative;
    padding: 25px;
    z-index: 2;
}

.post-card.style-1 .post-category {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-color);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    border-radius: 20px;
    margin-bottom: 15px;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.post-card.style-1:hover .post-category {
    transform: translateY(-3px);
}

.post-card.style-1 .post-title h4 a {
    background-image: linear-gradient(transparent 0%, transparent 90%, var(--primary-color) 90%, var(--primary-color) 100%);
    background-repeat: no-repeat;
    background-size: 0% 100%;
    background-position: 100% 0;
    transition: background-size 0.4s ease;
}

.post-card.style-1:hover .post-title h4 a {
    background-size: 100% 100%;
    background-position: 0 0;
}

.post-card.style-1 .post-excerpt {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.85;
}

.post-card.style-1 .post-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.post-card.style-1 .meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-color);
}

.post-card.style-1 .meta-item i {
    color: var(--primary-color);
    font-size: 18px;
}

/* Category Card - New Modern Style */
.category-card {
    position: relative;
    background: #ffffff;
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.category-card:hover::before {
    opacity: 0.05;
}

.category-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.category-icon {
    position: relative;
    height: 280px;
    overflow: hidden;
    border-radius: 25px;
    margin: 12px;
}

.category-icon::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    z-index: 1;
}

.category-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover .category-icon img {
    transform: scale(1.08);
}

.category-card .category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 2;
    color: #fff;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.category-card:hover .category-content {
    transform: translateY(-8px);
}

.category-card .category-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.category-card .category-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.category-card .btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-card .btn-explore:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(5px);
}

/* Project Card - New Modern Style */
.project-card {
    position: relative;
    background: #ffffff;
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.project-card:hover::before {
    opacity: 0.05;
}

.project-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-image img {
    transform: scale(1.08);
}

.project-content {
    position: relative;
    padding: 25px;
    z-index: 2;
}

.project-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-color);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    border-radius: 20px;
    margin-bottom: 15px;
}

.project-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.project-progress {
    margin: 20px 0;
}

.progress {
    height: 8px;
    background: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    position: relative;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    transition: width 0.4s ease;
}

.progress-bar::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progressShine 2s infinite;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
}

.project-stats {
    display: flex;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-item {
    flex: 1;
    text-align: center;
}

.stat-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-color);
}

/* Premium Modern Card Design - 2024 Style */
.post-card.style-1 {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.21, 0.61, 0.355, 1);
    margin-bottom: 30px;
}

.post-card.style-1 .post-image-wrapper {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.post-card.style-1 .post-image {
    position: absolute;
    inset: 0;
    margin: 0;
    height: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    background: var(--primary-color);
}

.post-card.style-1 .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.21, 0.61, 0.355, 1);
    transform-origin: center;
}

.post-card.style-1 .post-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 15px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.post-card.style-1 .post-date span {
    display: block;
    text-align: center;
    color: var(--primary-color);
}

.post-card.style-1 .post-date .day {
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.post-card.style-1 .post-date .month {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
}

.post-card.style-1 .post-content {
    position: relative;
    padding: 30px;
    background: #ffffff;
    margin-top: -40px;
    border-radius: 20px 20px 16px 16px;
    z-index: 1;
}

.post-card.style-1 .post-category {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: var(--primary-color);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 30px;
    margin-bottom: 15px;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.post-card.style-1 .post-category i {
    margin-right: 6px;
    font-size: 14px;
}

.post-card.style-1 .post-title h4 a {
    transition: all 0.3s ease;
}

.post-card.style-1 .post-excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 25px;
    opacity: 0.85;
}

.post-card.style-1 .post-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.post-card.style-1 .post-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.post-card.style-1 .author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary-color);
    padding: 2px;
}

.post-card.style-1 .author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.post-card.style-1 .author-name {
    font-size: 14px;
    font-weight: 600;
}

.post-card.style-1 .post-stats {
    display: flex;
    align-items: center;
    gap: 15px;
}

.post-card.style-1 .stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--text-color);
}

.post-card.style-1 .stat-item i {
    color: var(--primary-color);
    font-size: 16px;
}

/* Hover Effects */
.post-card.style-1:hover {
    transform: translateY(-10px);
}

.post-card.style-1:hover .post-image img {
    transform: scale(1.1);
}

.post-card.style-1:hover .post-date {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.post-card.style-1:hover .post-category {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.2);
}

.post-card.style-1:hover .post-title h4 a {
    color: var(--primary-color);
}

/* Category Card - Premium Style */
.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: #ffffff;
    transition: all 0.5s cubic-bezier(0.21, 0.61, 0.355, 1);
}

.category-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    opacity: 0.7;
    z-index: 1;
    transition: opacity 0.5s ease;
}

.category-icon {
    position: relative;
    aspect-ratio: 1/1;
    margin: 0;
    overflow: hidden;
}

.category-icon img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.21, 0.61, 0.355, 1);
}

.category-card .category-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    z-index: 2;
    transform: translateY(0);
    transition: transform 0.5s ease;
}

.category-card .category-icon-badge {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease;
}

.category-card .category-icon-badge img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.category-card .category-content h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease 0.1s;
}

.category-card .category-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease 0.2s;
}

.category-card .category-stats {
    display: flex;
    gap: 20px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease 0.3s;
}

.category-card .stat-item {
    color: #ffffff;
    text-align: center;
}

.category-card .stat-value {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.category-card .stat-label {
    font-size: 13px;
    opacity: 0.9;
}

/* Category Card Hover Effects */
.category-card:hover {
    transform: translateY(-10px);
}

.category-card:hover::before {
    opacity: 0.85;
}

.category-card:hover .category-icon img {
    transform: scale(1.1);
}

.category-card:hover .category-icon-badge,
.category-card:hover .category-content h3,
.category-card:hover .category-content p,
.category-card:hover .category-stats {
    transform: translateY(0);
    opacity: 1;
}

/* Project Card - Premium Style */
.project-card {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.21, 0.61, 0.355, 1);
}

.project-image-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.project-image {
    position: absolute;
    inset: 0;
    margin: 0;
    height: 100%;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.21, 0.61, 0.355, 1);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.project-status {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: 30px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 13px;
    z-index: 2;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.project-content {
    position: relative;
    padding: 30px;
    background: #ffffff;
    z-index: 2;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.project-title {
    flex: 1;
}

.project-title h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.project-category {
    font-size: 14px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.project-category i {
    color: var(--primary-color);
}

.project-progress-info {
    text-align: right;
}

.progress-percentage {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.progress-label {
    font-size: 13px;
    color: var(--text-color);
}

.project-progress {
    margin: 25px 0;
}

.progress {
    height: 8px;
    background: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 4px;
    position: relative;
    transition: width 0.4s ease;
}

.progress-bar::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progressShine 2s infinite;
}

.project-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.project-stat-item {
    text-align: center;
}

.stat-value {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-color);
}

/* Project Card Hover Effects */
.project-card:hover {
    transform: translateY(-10px);
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

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

/* Ultra Creative Card Design 2024 */
.post-card.style-1 {
    position: relative;
    background: transparent;
    margin-bottom: 40px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    perspective: 1000px;
}

.post-card.style-1 .card-inner {
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.post-card.style-1:hover .card-inner {
    transform: rotateY(12deg) translateZ(10px);
}

.post-card.style-1::before,
.post-card.style-1::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), #00ff88, var(--primary-color));
    background-size: 400%;
    z-index: -1;
    animation: borderAnimation 8s linear infinite;
}

.post-card.style-1::after {
    filter: blur(10px);
    opacity: 0.6;
}

.post-card.style-1 .card-content {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.post-card.style-1 .post-image {
    position: relative;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    transform-style: preserve-3d;
}

.post-card.style-1 .post-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(var(--primary-rgb), 0.3), rgba(var(--secondary-rgb), 0.3));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.post-card.style-1:hover .post-image::before {
    opacity: 1;
}

.post-card.style-1 .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.post-card.style-1:hover .post-image img {
    transform: scale(1.1) translateZ(20px);
}

.post-card.style-1 .floating-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateZ(30px);
    transition: all 0.4s ease;
}

.post-card.style-1:hover .floating-date {
    transform: translateZ(50px) translateX(-10px);
    background: var(--primary-color);
    color: white;
}

.post-card.style-1 .content-wrapper {
    position: relative;
    margin-top: -60px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    transform: translateZ(20px);
    transition: transform 0.4s ease;
}

.post-card.style-1:hover .content-wrapper {
    transform: translateZ(40px);
}

.post-card.style-1 .category-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    transform: translateZ(30px);
    transition: all 0.4s ease;
}

.post-card.style-1:hover .category-badge {
    transform: translateZ(60px) translateY(-5px);
    box-shadow: 0 10px 20px rgba(var(--primary-rgb), 0.3);
}

.post-card.style-1 .title {
    font-size: 24px;
    font-weight: 700;
    margin: 20px 0;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: translateZ(10px);
}

.post-card.style-1 .excerpt {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 20px;
    transform: translateZ(10px);
}

.post-card.style-1 .meta-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    transform: translateZ(10px);
}

.post-card.style-1 .author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.post-card.style-1 .author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    transform: translateZ(20px);
    transition: all 0.4s ease;
}

.post-card.style-1:hover .author-avatar {
    transform: translateZ(40px) rotate(360deg);
}

.post-card.style-1 .stats {
    display: flex;
    gap: 20px;
}

.post-card.style-1 .stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-color);
    font-size: 14px;
    transform: translateZ(20px);
    transition: all 0.4s ease;
}

.post-card.style-1:hover .stat-item {
    transform: translateZ(30px);
    color: var(--primary-color);
}

/* Ultra Creative Category Card */
.category-card {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    perspective: 1000px;
}

.category-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(var(--primary-rgb), 0.8), rgba(var(--secondary-rgb), 0.8));
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
}

.category-card:hover::before {
    opacity: 1;
}

.category-icon {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.category-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover .category-icon img {
    transform: scale(1.1) rotateY(10deg);
}

.category-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    z-index: 2;
    transform: translateZ(0);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover .category-content {
    transform: translateZ(50px);
}

.category-content .icon-wrapper {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(0deg) translateZ(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover .icon-wrapper {
    transform: rotate(360deg) translateZ(60px);
    background: var(--primary-color);
}

.category-content h3 {
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    transform: translateY(60px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.category-card:hover .category-content h3,
.category-card:hover .category-content p {
    transform: translateY(0);
    opacity: 1;
}

.category-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.category-card:hover .category-stats {
    transform: translateY(0);
    opacity: 1;
}

.stat-block {
    text-align: center;
    color: white;
}

.stat-block .number {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-block .label {
    font-size: 14px;
    opacity: 0.9;
}

/* Ultra Creative Project Card */
.project-card {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.project-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
}

.project-image-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.project-image {
    position: absolute;
    inset: 0;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-card:hover .project-image {
    transform: scale(1.1) rotateX(10deg);
}

.project-content {
    position: relative;
    padding: 30px;
    background: white;
    transform: translateZ(20px);
    z-index: 2;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.project-title h3 {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.project-progress {
    position: relative;
    margin: 30px 0;
}

.progress {
    height: 10px;
    background: #f0f0f0;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    position: relative;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-bar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

.project-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.project-stat {
    text-align: center;
    transform: translateZ(30px);
    transition: transform 0.4s ease;
}

.project-card:hover .project-stat {
    transform: translateZ(50px);
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-color);
}

.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.floating-element {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0;
}

.project-card:hover .floating-element:nth-child(1) {
    animation: float1 3s ease infinite;
    animation-delay: 0.2s;
}

.project-card:hover .floating-element:nth-child(2) {
    animation: float2 4s ease infinite;
    animation-delay: 0.5s;
}

.project-card:hover .floating-element:nth-child(3) {
    animation: float3 3.5s ease infinite;
    animation-delay: 0.8s;
}

/* Professional Awareness Category Card Design */
.awareness-card {
    position: relative;
    min-height: 350px;
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.21, 0.61, 0.355, 1);
}

.awareness-card:hover {
    transform: translateY(-10px);
}

.awareness-card .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.95), rgba(var(--secondary-rgb), 0.95));
    clip-path: circle(0% at 50% 100%);
    transition: clip-path 0.6s cubic-bezier(0.21, 0.61, 0.355, 1);
}

.awareness-card:hover .card-overlay {
    clip-path: circle(140% at 50% 100%);
}

.awareness-card .icon-box {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s ease;
}

.awareness-card:hover .icon-box {
    background: #ffffff;
    transform: scale(1.1) rotate(10deg);
}

.awareness-card .icon-box img {
    width: 100%;
    transition: transform 0.5s ease;
}

.awareness-card:hover .icon-box img {
    transform: rotate(-10deg);
}

.awareness-card .content {
    position: relative;
    padding: 30px 30px 30px;
    z-index: 1;
    transition: all 0.5s ease;
}

.awareness-card .category-label {
    display: inline-block;
    padding: 6px 20px;
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    transition: all 0.5s ease;
}

.awareness-card:hover .category-label {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.awareness-card .title {
    font-size: 26px;
    font-weight: 700;

    margin-bottom: 15px;
    transition: all 0.5s ease;
}

.awareness-card:hover .title {
    color: #ffffff;
}

.awareness-card .description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 30px;
    transition: all 0.5s ease;
}

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

.awareness-card .stats {
    display: flex;
    gap: 30px;
    margin-top: auto;
}

.awareness-card .stat-item {
    text-align: center;
    transition: all 0.5s ease;
}

.awareness-card .stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    transition: all 0.5s ease;
}

.awareness-card:hover .stat-value {
    color: #ffffff;
}

.awareness-card .stat-label {
    font-size: 14px;
    color: var(--text-color);
    transition: all 0.5s ease;
}

.awareness-card:hover .stat-label {
    color: rgba(255, 255, 255, 0.8);
}

.awareness-card .action-button {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s ease;
}

.awareness-card:hover .action-button {
    transform: translateY(0);
    opacity: 1;
}

.awareness-card .action-button:hover {
    background: #ffffff;
    color: var(--primary-color);
    transform: translateY(-5px);
}

.awareness-card .decorative-circle {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px dashed rgba(var(--primary-rgb), 0.2);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    transition: all 0.5s ease;
}

.awareness-card:hover .decorative-circle {
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.2) rotate(45deg);
}

/* ================================== */
/* ====== Start Donation Styles ===== */
/* ================================== */

/* Hero Section */
.hero-section {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section .lead {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: white;
}

/* Donation Impact */
.donation-impact {
    padding: 80px 0;
}

.impact-card {
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.impact-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.impact-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Donation Projects */
.donation-projects {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.project-card {
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.project-image {
    position: relative;
    overflow: hidden;
    height: 300px; /* Fixed height */
    border-radius: 20px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.project-overlay {
    background-color: rgba(0, 117, 255, 0.8);
    transition: all 0.3s ease;
}

.project-badge {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 0.5rem 1rem;
    border-radius: 0 0.5rem 0.5rem 0;
    font-weight: 600;
}

.project-content {
    padding: 1.5rem;
}

.project-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.project-progress {
    margin: 1.5rem 0;
}

.progress {
    height: 8px;
    background-color: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    background-color: var(--primary-color);
}

.progress-info {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.btn-overlay {
    background-color: var(--white-color);
    transition: all 0.3s ease;
}

.btn-primary:hover .btn-overlay {
    opacity: 0.2;
}

/* Donation Form */
.donation-form {
    background-color: var(--white-color);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-control {
    height: 3rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 1rem;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 117, 255, 0.25);
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.btn-primary {
    background: var(--gradient);
    border-color: var(--primary-color);
    padding: 10px 20px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-color), #2a5151);
    border-color: var(--primary-color-alt);
    transform: translateY(-2px);
}

/* Latest Study Details Page Styles */
.study-details-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.study-details-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("/img/dots.png") repeat;
    opacity: 0.05;
    pointer-events: none;
}

.study-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-alt));
    padding: 80px 0;
    color: white;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 50px 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.study-header-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.study-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background: linear-gradient(45deg, #ffffff, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.study-meta {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.study-meta-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.study-meta-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.study-meta-item i {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
}

.study-meta-item span {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
}

.study-content {
    background: white;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    padding: 50px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.study-content::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, var(--primary-color), transparent);
    opacity: 0.05;
    border-radius: 50%;
}

.study-image {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.study-image::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
    pointer-events: none;
}

.study-image img {
    width: 100%;
    height: auto;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.study-image:hover img {
    transform: scale(1.05);
}

.study-description {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #444;
    margin-bottom: 40px;
    position: relative;
}

.study-description::first-letter {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    float: left;
    margin-right: 10px;
    line-height: 1;
}

.study-highlights {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 40px;
    margin: 50px 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.study-highlights::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary-color);
}

.study-highlights h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.8rem;
    position: relative;
    display: inline-block;
}

.study-highlights h3::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

.study-highlights ul {
    list-style: none;
    padding: 0;
}

.study-highlights li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.study-highlights li:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.5);
    padding-left: 15px;
}

.study-highlights li:last-child {
    border-bottom: none;
}

.study-highlights li i {
    color: var(--primary-color);
    font-size: 1.4rem;
    background: rgba(var(--primary-color-rgb), 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.study-highlights li:hover i {
    background: var(--primary-color);
    color: white;
    transform: rotate(360deg);
}

.study-results {
    margin-top: 50px;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.study-results h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.8rem;
    position: relative;
    display: inline-block;
}

.study-results h3::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

.study-results p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #444;
    margin-bottom: 20px;
}

.study-sidebar {
    position: sticky;
    top: 30px;
}

.sidebar-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

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

.sidebar-card h4 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

.sidebar-card h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.sidebar-card:hover h4::after {
    width: 100px;
}

.related-studies .study-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.related-studies .study-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.5);
    padding-left: 15px;
}

.related-studies .study-item:last-child {
    border-bottom: none;
}

.related-studies .study-image {
    width: 120px;
    height: 90px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.related-studies .study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-studies .study-item:hover .study-image img {
    transform: scale(1.1);
}

.related-studies .study-info h5 {
    margin-bottom: 8px;
    font-size: 1.1rem;
    line-height: 1.4;
}

.related-studies .study-info h5 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-studies .study-info h5 a:hover {
    color: var(--primary-color);
}

.related-studies .study-info .date {
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

.study-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.study-tags .tag {
    background: #f0f0f0;
    color: #666;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.study-tags .tag::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: -1;
}

.study-tags .tag:hover {
    color: white;
    transform: translateY(-3px);
}

.study-tags .tag:hover::before {
    transform: translateX(0);
}

.study-share {
    display: flex;
    gap: 15px;
}

.study-share a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f0f0f0;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.study-share a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: -1;
}

.study-share a:hover {
    color: white;
    transform: translateY(-5px);
}

.study-share a:hover::before {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .study-header {
        padding: 60px 0;
        border-radius: 0 0 30px 30px;
    }

    .study-title {
        font-size: 2.2rem;
    }

    .study-meta {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .study-content {
        padding: 30px;
        border-radius: 20px;
    }

    .study-sidebar {
        margin-top: 40px;
    }

    .study-highlights {
        padding: 30px;
    }

    .study-results {
        padding: 30px;
    }
}

/* Researcher Details Page Styles */
.researcher-details-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.researcher-header {
    background: #fff;
    padding: 60px 0;
    margin-bottom: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 15px;
}

.researcher-profile {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 50px;
}

.researcher-photo {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #fff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.researcher-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.researcher-info {
    padding: 0 30px;
}

.researcher-info h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.researcher-info h1::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 3px;
    background: var(--primary-color);
}

.affiliation {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.researcher-info h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin: 30px 0 20px;
    position: relative;
    padding-right: 20px;
}

.researcher-info h2::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
}

.researcher-bio {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
    text-align: justify;
}

.researcher-info ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.researcher-info ul li {
    background: #f8f9fa;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 1rem;
    color: #666;
    transition: all 0.3s ease;
    position: relative;
    padding-right: 40px;
}

.researcher-info ul li::before {
    content: "•";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.2rem;
}

.researcher-info ul li:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .researcher-profile {
        padding: 30px;
    }

    .researcher-photo {
        width: 300px;
        height: 300px;
        margin: 0 auto 30px;
    }

    .researcher-info {
        padding: 0;
        text-align: center;
    }

    .researcher-info h1 {
        font-size: 2rem;
    }

    .researcher-info h1::after {
        right: 50%;
        transform: translateX(50%);
    }

    .researcher-info h2 {
        text-align: center;
    }

    .researcher-info h2::before {
        display: none;
    }

    .researcher-info ul {
        justify-content: center;
    }
}

.publication-item {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.publication-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0; /* Changed from right: 0 to left: 0 */
    width: 5px;
    height: 100%;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.publication-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.1);
}

.publication-item:hover::before {
    width: 8px;
}

.publication-item h5 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
    position: relative;
    padding-left: 20px; /* Changed from padding-right to padding-left */
}

.publication-item h5::before {
    content: "📄";
    position: absolute;
    right: -25px; /* Changed from right: 0 to left: 0 */
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    opacity: 0.5;
}

.publication-item p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    padding-left: 20px; /* Changed from padding-right to padding-left */
}

.publication-item .btn {
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
}

.publication-item .btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.publication-item .btn:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.publication-item .btn:hover::before {
    opacity: 1;
}

.publication-item .btn i {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.publication-item .btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .publication-item {
        padding: 20px;
    }

    .publication-item h5 {
        font-size: 1.2rem;
    }

    .publication-item p {
        font-size: 1rem;
    }

    .publication-item .btn {
        width: 100%;
        text-align: center;
    }
}

.researcher-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
}

.researcher-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.researcher-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.researcher-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
}

.researcher-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.researcher-card:hover .researcher-image::before {
    opacity: 1;
}

.researcher-card:hover .researcher-image img {
    transform: scale(1.1);
}

.researcher-content {
    padding: 25px;
    position: relative;
    z-index: 2;
}

.researcher-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.researcher-card:hover .researcher-content h3 {
    color: var(--primary-color);
}

.specialization {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: block;
}

.bio {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.researcher-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.researcher-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
}

.researcher-meta i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.researcher-card .btn-primary {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    text-align: center;
}

.researcher-card .btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.researcher-card .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .researcher-image {
        height: 200px;
    }

    .researcher-content {
        padding: 20px;
    }

    .researcher-content h3 {
        font-size: 1.3rem;
    }

    .specialization {
        font-size: 1rem;
    }

    .bio {
        font-size: 0.9rem;
    }

    .researcher-meta {
        gap: 15px;
    }

    .researcher-meta span {
        font-size: 0.8rem;
    }
}

.team-member {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
    border: none;
}
.team-member .image {
    height: 450px;
    overflow: hidden;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.team-member .card-img-top {
    /* height: 300px; */
    object-fit: cover;
    transition: all 0.4s ease;
}

.team-member:hover .card-img-top {
    transform: scale(1.1);
}

.team-member .card-body {
    padding: 30px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.team-member .card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}
.team-member .card-title a {
    color: inherit;
}
.team-member:hover .card-title {
    color: var(--primary-color);
}

.team-member .card-text {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.team-member .social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.team-member .social-links a {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-member .social-links a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transform: scale(0);
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: -1;
}

.team-member .social-links a:hover {
    color: #fff;
    transform: translateY(-3px);
}

.team-member .social-links a:hover::before {
    transform: scale(1);
}

.team-member .social-links a i {
    transition: all 0.3s ease;
}

.team-member .social-links a:hover i {
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .team-member .card-img-top {
        height: 250px;
    }

    .team-member .card-body {
        padding: 20px;
    }

    .team-member .card-title {
        font-size: 1.3rem;
    }

    .team-member .card-text {
        font-size: 1rem;
    }

    .team-member .social-links a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

.team-hero-section {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.team-hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("/img/dots.png") repeat;
    opacity: 0.1;
    animation: patternMove 20s linear infinite;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content .lead {
    font-size: 1.25rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

.hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.hero-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

.team-details-section {
    padding: 80px 0;
    background: #fff;
}

.team-member-details {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 40px;
    margin-bottom: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member-details:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.member-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
}

.member-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.member-image:hover img {
    transform: scale(1.05);
}

.member-image .social-links {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 2;
}

.member-image .social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.member-image .social-links a:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-5px);
}

.member-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.member-info .position {
    font-size: 1.25rem;
    color: #6c757d;
    margin-bottom: 2rem;
    font-weight: 500;
}

.member-bio p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 1.5rem;
}

.member-stats {
    display: flex;
    gap: 30px;
    margin: 40px 0;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 500;
}

.member-expertise h3,
.member-education h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

.member-expertise h3::after,
.member-education h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.member-expertise ul,
.member-education ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.member-expertise ul li,
.member-education ul li {
    padding: 10px 0;
    padding-right: 25px;
    position: relative;
    font-size: 1.1rem;
    color: #495057;
}

.member-expertise ul li::before,
.member-education ul li::before {
    content: "•";
    position: absolute;
    right: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    line-height: 1;
}

/* FAQ Section Styles */
.faq-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("/img/dots.png") repeat;
    opacity: 0.05;
}

.faq-accordion {
    position: relative;
    z-index: 1;
}

.accordion-item {
    background: #fff;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.accordion-button {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    text-align: right;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.accordion-button::after {
    content: "+";
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%) !important;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}
#En-web .accordion-button::after {
    left: auto;
    right: 25px;
}
.accordion-button.active::after {
    content: "-";
    transform: rotate(180deg) !important;
}

.accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #666;
    line-height: 1.8;
}

.accordion-content.active {
    padding: 0 25px 20px;
    max-height: max-content !important;
}

/* Scientific Blog Section Styles */
.blog-section {
    background: #fff;
    position: relative;
}

.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 15px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.blog-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.blog-date .month {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

.blog-content {
    padding: 25px;
    position: relative;
}

.blog-category {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 30px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.blog-card:hover .blog-category {
    background: #333;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-content h3 a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-content h3 a:hover {
    color: var(--primary-color);
}

.blog-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.blog-meta span {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.blog-meta span i {
    margin-left: 5px;
    color: var(--primary-color);
}
#En-web .blog-meta span i {
    margin-right: 5px;
    margin-left: 0;
}

/* Scientific Events Page */

.events {
    padding: 120px 0 60px;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.event-card {
    background: var(--white-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.event-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.event-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.1);
}

.event-details {
    padding: 25px;
}

.event-details h2 {
    color: var(--secondaryP-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.4;
}

.event-date,
.event-location {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-date i,
.event-location i {
    font-size: 1.1rem;
}

.event-description {
    color: var(--gray-color);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.events .countdown {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    justify-content: center;
}

.events .countdown-item {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 10px;
    border-radius: 8px;
    min-width: 70px;
    text-align: center;
}

.events .countdown-item span {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
}

.events .countdown-item small {
    font-size: 0.8rem;
    text-transform: uppercase;
    opacity: 0.9;
}

.events .register-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.events .register-btn:hover {
    background: var(--primary-color-alt);
    color: var(--white-color);
    transform: translateY(-2px);
}

.event-details.Not-Specified .register-btn {
    opacity: 0.8;
    pointer-events: none;
}

/* User Details page */
/* تنسيقات الملف الشخصي */
.user-details .user-profile {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.user-details .profile-header {
    text-align: center;
    margin-bottom: 40px;
}

.user-details .profile-image {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
}

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

.user-details .change-photo {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.user-details .profile-header h1 {
    margin: 10px 0;
    color: var(--dark-color);
}

.user-details .user-role {
    color: var(--secondary-color);
    margin: 0;
}

/* تنسيقات الأقسام */
.user-details .profile-section {
    margin-bottom: 30px;
    padding: 20px;
    background-color: var(--light-color);
    border-radius: 8px;
}

.user-details .profile-section h2 {
    color: var(--dark-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

/* تنسيقات شبكة المعلومات */
.user-details .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.user-details .info-item {
    display: flex;
    flex-direction: column;
}

.user-details .info-item label {
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.user-details .info-item input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
}

/* تنسيقات الإعدادات */
.user-details .settings-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.user-details .setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

/* تنسيقات التبديل */
.user-details .switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.user-details .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* تنسيقات متجاوبة */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    .user-profile {
        padding: 15px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .profile-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary,
    .btn-danger {
        width: 100%;
    }
}

/* تنسيقات قسم تفاصيل المستخدم */

.user-details .user-details::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: var(--gradient-primary);
    opacity: 0.05;
    transform: skewY(-3deg);
    transform-origin: top left;
    z-index: -1;
}

/* تنسيقات بطاقة الملف الشخصي */
.user-details .user-profile-card {
    background: rgb(245 245 245 / 95%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.user-details .user-profile-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: var(--gradient-primary);
    opacity: 0.1;
    border-radius: 1.5rem 1.5rem 0 0;
}

.user-details .user-profile-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl), 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

/* تنسيقات صورة الملف الشخصي */
.user-details .profile-image {
    position: relative;
    width: 180px;
    height: 180px;
    z-index: 1;
}

.user-details .profile-image::before {
    content: "";
    position: absolute;
    inset: -8px;
    background: var(--gradient-primary);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.2;
    transition: var(--transition);
}

.user-details .profile-image::after {
    content: "";
    position: absolute;
    inset: -4px;
    background: white;
    border-radius: 50%;
    z-index: -1;
}

.user-details .profile-image:hover::before {
    opacity: 0.4;
    transform: scale(1.1);
}

.user-details .profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.user-details .profile-image:hover img {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

/* تنسيقات زر تغيير الصورة */
.user-details .change-photo-btn {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
    z-index: 2;
}

.user-details .change-photo-btn i {
    font-size: 1.2rem;
    transition: var(--transition);
}

.user-details .change-photo-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-lg);
}

.user-details .change-photo-btn:hover i {
    transform: scale(1.1);
}

/* تنسيقات معلومات المستخدم */
.user-details .user-profile-card h3 {
    color: var(--dark-color);
    font-size: 1.75rem;
    font-weight: 700;
    margin: 1.5rem 0 0.5rem;
    position: relative;
    display: inline-block;
    margin-bottom: 12px;
}

.user-details .user-profile-card h3::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
    opacity: 0.5;
}

.user-details .user-profile-card p.text-muted {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.user-details .profile-image:hover img {
    animation: float-5 3s ease-in-out infinite;
}

/* تحسينات للظلال المتحركة */

.user-details .user-profile-card:hover {
    animation: shadowPulse 2s ease-in-out infinite;
}

/* تحسينات وتعديلات إضافية */
.user-details .form-check.form-switch {
    padding-left: 2.5rem;
}
#En-web .user-details .form-check.form-switch {
    padding-right: 2.5rem;
    padding-left: 0;
}

#En-web .form-check .form-check-input {
    float: right;
}
#En-web .researcher-info h1::after,
#En-web .researcher-info h2::before {
    left: 0;
    right: auto;
}
#En-web .researcher-info h2{
    padding-right: 0px;
    padding-left: 20px;
}
#En-web .researcher-info ul li::before {
    right: auto;
    left: 20px;
}
#En-web .researcher-info ul li{
    padding-right: 25px;
    padding-left: 40px;
}
#En-web .publication-item::before{
    right: 0;
    left: auto;
}
#En-web .publication-item h5::before{
    left: -25px;
    right: auto;
}
#En-web .publication-item h5{
    padding-right: 20px;
    padding-left: 0;
}

.user-details .form-check-input.form-check-input {
    width: 2.5rem;
    height: 1.25rem;
    margin-left: -2.5rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
    background-position: left center;
    border-radius: 2rem;
    transition: var(--transition);
    cursor: pointer;
}

.user-details .form-check-input:checked {
    background-position: right center;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.user-details .success-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #4caf50;
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    font-weight: bold;
    font-family: sans-serif;
    transition: opacity 0.5s ease;
}
.hero-section{
    min-height: 60vh;
    padding: 180px 0 50px;
}

span.sharelbl {
    font-size: 14px;
    font-weight: 600;
    float: left;
    margin-right: 5px;
}
