.pricing-container {
            max-width: 900px;
            width: 100%;
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 35px;
            color: white;
        }

        .pricing-header h1 {
            font-size: 2.2rem;
            font-weight: 600;
            margin-bottom: 10px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            animation: fadeInDown 0.8s ease-out;
        }

        .pricing-header p {
            font-size: 1rem;
            opacity: 0.9;
            font-weight: 300;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            align-items: stretch;
        }

        .pricing-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 25px 20px;
            text-align: center;
            position: relative;
            box-shadow: 0 8px 32px rgba(7, 19, 255, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            flex-direction: column;
            animation: slideInUp 0.6s ease-out;
        }

        .pricing-card:nth-child(1) {
            animation-delay: 0.1s;
            animation-fill-mode: both;
        }

        .pricing-card:nth-child(2) {
            animation-delay: 0.2s;
            animation-fill-mode: both;
        }

        .pricing-card:nth-child(3) {
            animation-delay: 0.3s;
            animation-fill-mode: both;
        }

        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(236deg, #0713ff 0%, #1b262c 50%, #0713ff 100%);
        }

        .pricing-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 45px rgba(7, 19, 255, 0.2);
        }

        .card-popular {
            transform: scale(1.02);
            background: linear-gradient(236deg, #0713ff 0%, #1b262c 50%, #0713ff 100%);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .card-popular:hover {
            transform: scale(1.02) translateY(-8px);
        }

        .card-popular::before {
            background: linear-gradient(90deg, #ffffff, #ffffff);
        }

        .popular-badge {
            position: absolute;
            top: -8px;
            left: 50%;
            transform: translateX(-50%);
            background: #ff4757;
            color: white;
            padding: 5px 15px;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 600;
            box-shadow: 0 2px 8px rgba(255, 71, 87, 0.4);
            animation: bounce 2s infinite;
        }

        .package-name {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: #1b262c;
        }

        .card-popular .package-name {
            color: white;
        }

        .package-price {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 5px;
            color: #0713ff;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 3px;
        }

        .card-popular .package-price {
            color: white;
        }

        .currency {
            font-size: 1.2rem;
            font-weight: 500;
        }

        .package-duration {
            color: #6c757d;
            font-size: 0.85rem;
            margin-bottom: 20px;
        }

        .card-popular .package-duration {
            color: rgba(255,255,255,0.8);
        }

        .feature-list {
            list-style: none;
            margin-bottom: 25px;
            text-align: left;
            flex-grow: 1;
        }

        .feature-item {
            padding: 8px 0;
            border-bottom: 1px solid #f1f3f4;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            background: rgba(7, 19, 255, 0.02);
            padding-left: 5px;
            border-radius: 5px;
        }

        .card-popular .feature-item {
            border-bottom-color: rgba(255,255,255,0.2);
        }

        .card-popular .feature-item:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .feature-name {
            font-weight: 500;
            color: #1b262c;
            flex: 1;
        }

        .card-popular .feature-name {
            color: white;
        }

        .feature-value {
            font-weight: 600;
            color: #0713ff;
            background: #f8f9fa;
            padding: 2px 8px;
            border-radius: 10px;
            font-size: 0.8rem;
            white-space: nowrap;
            margin-left: 10px;
            transition: all 0.3s ease;
        }

        .feature-value:hover {
            transform: scale(1.05);
        }

        .card-popular .feature-value {
            color: #0713ff;
            background: white;
        }

        .cta-button {
            width: 100%;
            padding: 12px;
            background: linear-gradient(236deg, #0713ff 0%, #1b262c 50%, #0713ff 100%);
            color: white;
            border: none;
            border-radius: 25px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            line-height: 1.2;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.8s ease;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(7, 19, 255, 0.3);
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:active {
            transform: translateY(0);
            box-shadow: 0 3px 10px rgba(7, 19, 255, 0.2);
        }

        .card-popular .cta-button {
            background: white;
            color: #0713ff;
        }

        .card-popular .cta-button:hover {
            box-shadow: 0 6px 20px rgba(255,255,255,0.3);
        }

        /* Pulse animation for popular card */
        .card-popular {
            animation: pulseGlow 2s ease-in-out infinite alternate;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            body {
                padding: 10px;
            }

            .pricing-container {
                max-width: 100%;
            }

            .pricing-header h1 {
                font-size: 1.8rem;
            }

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

            .pricing-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .pricing-card {
                padding: 20px 15px;
            }

            .card-popular {
                transform: none;
                order: -1;
            }

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

            .package-price {
                font-size: 1.8rem;
            }

            .feature-item {
                padding: 6px 0;
                font-size: 0.85rem;
            }

            .feature-value {
                font-size: 0.75rem;
                padding: 1px 6px;
            }
        }

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

            .pricing-card {
                padding: 18px 12px;
            }

            .package-price {
                font-size: 1.6rem;
            }

            .package-name {
                font-size: 1.2rem;
            }

            .feature-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 4px;
            }

            .feature-value {
                align-self: flex-end;
                margin-left: 0;
            }
        }

        /* Tablet specific adjustments */
        @media (min-width: 769px) and (max-width: 1024px) {
            .pricing-container {
                max-width: 750px;
            }
            
            .pricing-card {
                padding: 22px 18px;
            }
            
            .package-price {
                font-size: 2rem;
            }
        }

        /* CSS Animations */
        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0) translateX(-50%);
            }
            40% {
                transform: translateY(-3px) translateX(-50%);
            }
            60% {
                transform: translateY(-2px) translateX(-50%);
            }
        }

        @keyframes pulseGlow {
            0% {
                box-shadow: 0 8px 32px rgba(7, 19, 255, 0.2);
            }
            100% {
                box-shadow: 0 8px 32px rgba(7, 19, 255, 0.4);
            }
        }

        /* Hover animations using CSS only */
        .pricing-card {
            transform-origin: center bottom;
        }

        .card-popular {
            transform-origin: center bottom;
        }

        /* Accessibility improvements */
        .cta-button:focus {
            outline: 2px solid #fff;
            outline-offset: 2px;
        }

        .card-popular .cta-button:focus {
            outline: 2px solid #0713ff;
        }

        /* Print styles */
        @media print {
            body {
                background: white;
                color: black;
            }
            
            .pricing-card {
                border: 1px solid #ddd;
                background: white;
                break-inside: avoid;
            }
        }
 
 
 
 .journal-card {
      display: flex;
      background: linear-gradient(236deg, #E0ECFF 0%, #F8F9FF 100%);#1B262C
      border-radius: 10px;
      overflow: hidden;
      margin-bottom: 20px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .journal-left {
      width: 30%;
      background-image: linear-gradient(351deg, #0713ff 0%, #1B262C 100%);
      padding: 15px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    


    .journal-left img {
      width: 100%;
      max-width: 200px;
      height: auto;
      border-radius: 8px;
      box-shadow: 6px 5px 5px -4px #0713ff73;
    width: 100%;
    border: 1px solid #e0dddd;
    height: auto;
    object-fit: cover;
   
    }

    .journal-buttons {
      margin-top: 15px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .journal-buttons a {
      display: inline-block;
      padding: 8px 12px;
      background-color: #fff;
      color: #0713ff;
      text-decoration: none;
      border-radius: 5px;
      font-size: 16px;
      font-weight:bold;
      transition: background 0.3s;
    }

 

    .journal-right {
      width: 70%;
      padding: 20px;
    }

    .journal-right h2 {
      margin-top: 0;
         margin-bottom: 1.5rem;
    color: #0713ff;
    font-size: 22px;
    margin-top: -15px;

    }

    .journal-summary {
      margin: 10px 0;
      color: #333;
    }

    .journal-summary a {
      color: #328E6E;
      text-decoration: none;
      font-weight: bold;
    }

    .journal-details {
      margin-top: 15px;
      padding-left: 20px;
    }

    .journal-details li {
      margin-bottom: 6px;
    }

    @media (max-width: 768px) {
      .journal-card {
        flex-direction: column;
      }

      .journal-left, .journal-right {
        width: 100%;
      }
    }


.cmp_monographs_list {
    position: relative; /* Relative position for absolute buttons */
}

.featured-books-slider {
    overflow: hidden; /* Hide overflow for sliding effect */
    width: 100%; /* Full width */
}

.slider-wrapper {
    display: flex; /* Flexbox for horizontal alignment */
    transition: transform 0.5s ease; /* Smooth transition for sliding */
}

.slider-item {
    flex: 0 0 50%; /* Display two items on large screens */
    box-sizing: border-box; /* Include padding in width */
    padding: 10px; /* Space around each item */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .slider-item {
        flex: 0 0 100%; /* Display one item on small screens */
    }
    
    
    .pkp_site_nav_toggle {
    position: absolute;
    top: 0;
    left: 0;
    width: 2.857rem;
    height: 2.857rem;
    border: 0;
   background-image: linear-gradient(236deg, #0713ff 0%, #1B262C 50%, #0713ff 100%);
    box-shadow: 1px 0 0 rgba(255, 255, 255, 0.2), -1px 0 0 rgba(255, 255, 255, 0.2);
    z-index: 999;
}
}

.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 10; /* Ensure buttons are above content */
}

.prev {
    left: 10px; /* Position left button */
}

.next {
    right: 10px; /* Position right button */
}



    .pkp_structure_main .page h1 {
    margin-bottom: 1.5rem;
    color: #0713ff;
    font-size: 22px;
    margin-top: -15px;
}




   .obj_monograph_full .main_entry .item:first-child {
  
    background-image: linear-gradient(236deg, #0713ff5c 0%, #1B262C21 100%);
    padding-top: 20px;
    padding-left: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}



.pkp_structure_main h4 {
    font-size: 13px;
    line-height: 1.43rem;
    font-weight: 700;
}






.obj_monograph_summary .cover img {
    box-shadow: 6px 5px 5px -4px #0713ff73;;
    width: 100%;
    border: 1px solid #e0dddd;
    height: auto;
    object-fit: cover;
    max-width: 150px;
    max-height: 300px;
}


.obj_monograph_summary .cover img
.obj_monograph_summary {

    
    background-color: #fff;
    
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
    
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cmp_monographs_list {
        border-top: 1px solid #ffffff;
    }

a {
    color: #0713ff;
}
    .cmp_monographs_list .row {
        border-bottom: 1px solid #fff;
    }

.pkp_structure_main h1, .pkp_structure_main h2, .pkp_structure_main h3, .pkp_structure_main h4 {
    margin: 0.857rem 0 0.43rem;
}
.obj_monograph_summary .date {
    padding-top: .357rem;
    font-size: .75rem;
    line-height: 1.43rem;
    color: rgba(0, 0, 0, 0.54);
}

.obj_monograph_summary .author {
    font-size: .80rem;
}
.omp-divider {
    height: 4px; /* Height of the line */
    background: linear-gradient(to right, rgba(38, 0, 148, 1) 0%, #1B262C 40%, rgba(148, 47, 196, 0) 70%);
    border: none; /* Remove default border */
    margin: 20px auto; /* Center the line */
    width: 100%; /* Set width of the line */
    position: relative; /* Position relative for any future adjustments */
}


.omp-sum-divider {
    height: 2px; /* Height of the line */
    background: linear-gradient(to right, rgba(38, 0, 148, 1) 0%, #1B262C 50%, rgba(148, 47, 196, 0) 90%);
    border: none; /* Remove default border */
    margin: 20px auto; /* Center the line */
    width: 100%; /* Set width of the line */
    position: relative; /* Position relative for any future adjustments */
}


    .obj_monograph_summary .cover {
        float: left;
        width: 150px;
        margin-left: 0;
    }

    .obj_monograph_summary>*, .obj_monograph_summary .title {
        display: 1;
        margin-left: 180px;
    }


    .pkp_block {
      
        padding-top: 5px;
    }

.make-submission-btn {
   
    
        border: none;
        color: white;
        padding: 15px 20px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 20px;
        margin: 4px 2px;
        cursor: pointer;
        border-radius: 5px;
        transition: background-color 0.3s, transform 0.3s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.make-submission-btn i {
    margin-right: 8px;
}

.make-submission-btn:hover {
    background-color: #0713ff;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.make-submission-btn:focus {
    outline: none;
    border-color: #3498db;
}


.page_homepage {
    
}



.pkp_screen_reader {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.cmp_announcements {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-top: 20px;
}

.cmp_announcements h2 {
    margin-top: 0;
}

.obj_announcement_summary {
    margin-bottom: 15px;
}

.obj_announcement_summary h4 a {
    color: #3498db;
    text-decoration: none;
}

.obj_announcement_summary .date {
    color: #777;
}


.additional_content {
    margin-top: 20px;
    padding: 15px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.cmp_notification {
    display: block;
    width: 100%;
    padding: 1.43rem;
    margin-bottom: 2.857rem;
   background-image: linear-gradient(236deg, #0713ff5c 0%, #1B262C21 100%);
    border-left: .357rem solid #371899;
    font-size: 1rem;
    line-height: 1.43rem;
}

@media (min-width: 992px) {
    .pkp_navigation_user li {
        text-align: left;
        background-image: linear-gradient(236deg, #ffffff 0%, rgb(193 177 241) 100%);
        border: none;
        color: #0713ff;
        padding: 5px 10px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 16px;
        margin: 4px 2px;
        cursor: pointer;
        border-radius: 5px;
        transition: background-color 0.3s, transform 0.3s;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
}

@media (min-width: 992px) {
    .pkp_navigation_user>li:last-child>a {
        margin-right: -0.01rem;
    }
    
   
}
.pkp_site_nav_menu {
  
   background-image: linear-gradient(236deg, #0713ff 0%, #1b262c 50%, #0713ff 100%);
 padding-top: 5px;
    padding-bottom: 5px;
}

.pkp_site_nav_menu .pkp_nav_list {
    padding-left: 0;
    margin-left: 20px;
    font-weight: 500;
    font-size:15px;
}

.pkp_structure_main p, .pkp_structure_main ul {
    line-height: 1.785rem;
    margin: 1.43rem 0;
    text-align: justify;
    color: #332e2e;
}

.unique-keywords-container {
    display: flex; /* Use flexbox for layout */
    flex-wrap: wrap; /* Allow items to wrap */
  
    margin: 20px 0; /* Margin around the container */
}

.unique-keyword-card {
    background-image: linear-gradient(236deg, #0713ff5c 0%, #1B262C21 100%); /* Gradient colors */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow */
    margin: 5px; /* Space between cards */
    padding: 8px; /* Padding inside the card */
   /* text-align: center; /* Center text */
    transition: transform 0.3s, box-shadow 0.3s; /* Smooth transition for hover effect */
}

.unique-keyword-card:hover {
    transform: translateY(-5px); /* Lift effect on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Darker shadow on hover */
}

.unique-value {
    font-size: 14px; /* Font size for the keyword */
    color: #575353 /* Color of the text for better contrast against the gradient */
}

.obj_monograph_full .main_entry .label {
    margin: 0 0 1.43rem;
    font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen-Sans", "Ubuntu", "Cantarell", "Helvetica Neue", sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.obj_monograph_full .main_entry .item {
    padding: 20px 0;
}


.obj_monograph_full .cover img {
    display: block;
    margin: 0 auto;
    width: 250px;
    box-shadow: 6px 5px 5px -4px #0713ff73;
}

.obj_monograph_full .entry_details .label {
    margin: 0;
    font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen-Sans", "Ubuntu", "Cantarell", "Helvetica Neue", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
}
navigationPrimary .fa{
    color: #fff;
}

.chapter-cards-container {
    display: flex;
    flex-direction: column; /* Stack cards vertically */
    margin: 20px 0; /* Margin around the container */
}

.chapter-card {
    background-image: linear-gradient(236deg, rgb(38 0 148 / 43%) 0%, rgb(148 47 196 / 7%) 100%);
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Soft shadow */
    margin: 10px 0; /* Space between cards */
    padding: 15px; /* Padding inside the card */
    transition: transform 0.3s, box-shadow 0.3s; /* Smooth transition for hover effect */
    text-align: left; /* Left align text within cards */
}

.page_contact .address, .page_contact .phone, .page_contact .email {
    margin-top: .714rem;
    margin-bottom: .714rem;
    font-size: 15px;
}

.chapter-card:hover {
    transform: translateY(-5px); /* Lift effect on hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Darker shadow on hover */
}

.card-content {
    display: flex; /* Flexbox for layout inside card */
    flex-direction: column; /* Stack elements vertically */
}

.chapter-title {
    font-size: 14px; /* Title font size */
    font-weight: bold; /* Bold title */
    color: #0713ff; /* Your gradient start color */
}

.chapter-icon {
    font-size: 20px; /* Size of the chapter icon */
    color: #1B262C; /* Your gradient end color for the icon */
    margin-right: 8px; /* Space between icon and title */
}

.chapter-subtitle {
    font-size: 14px; /* Subtitle font size */
    color: #1B262C; /* Your gradient end color */
}

.chapter-authors {
    font-size: 14px; /* Font size for authors */
    color: #333; /* Dark gray for authors text */
}

.chapter-doi {
    font-size: 14px; /* Font size for DOI */
    color: #7f17b1; /* Color for DOI links */
}

.button-container {
    margin-top: 10px; /* Space above the button */
}

.chapter-button {
    background-image: linear-gradient(236deg, #0713ff 0%, #1B262C 100%);
    color: white; /* Button text color */
    padding: 5px 8px; /* Padding inside button */
    border-radius: 5px; /* Rounded corners for button */
    text-decoration: none; /* Remove underline from links */
    display: inline-block; /* Inline block for button styling */
}

.chapter-button:hover {
    background-color: #45a049; /* Darker green on hover */
}


.cmp_breadcrumbs {
    width: 100%;
    background-image: linear-gradient(236deg, #0713ff5c 0%, #1B262C21 100%);
    padding: 12px 20px;
    border-radius: 0; /* Full width, so no rounded corners needed */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: left; /* Centering breadcrumbs */
    backdrop-filter: blur(10px); /* Soft blur effect for a smooth look */
    margin-bottom:30px;
}

.cmp_breadcrumbs ol {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    
    gap: 10px; /* Adds spacing between items */
}

.cmp_breadcrumbs li {
    display: flex;
   
    color: white;
}

.cmp_breadcrumbs a {
    text-decoration: none;
    color: #0713ff; /* Yellow text for links */
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.cmp_breadcrumbs a:hover {
    color: #fff;
}

.cmp_breadcrumbs .separator {
    color: #000; /* Faded separator */
}

.cmp_breadcrumbs .current span {
    font-weight: bold;
    color: #000;
}

 .download-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            max-width: 1000px;
            width: 100%;
        }

        /* Download Card */
        .download-card {
            background: #fff;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

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

        /* Icons */
        .download-icon {
            font-size: 40px;
            padding: 20px;
            border-radius: 50%;
            display: inline-block;
            color: #fff;
        }

        .docx-icon { background: #007bff; } /* Blue */
        .pdf-icon { background: #dc3545; }  /* Red */
        .pptx-icon { background: #ffc107; } /* Yellow */
        .txt-icon { background: #28a745; }  /* Green */

        /* File Title */
        .download-title {
            font-size: 14px;
            font-weight: bold;
            margin: 14px 0;
            color: #333;
        }

        /* Download Button */
        .download-btn {
            display: inline-block;
            padding: 10px 20px;
            background-image: linear-gradient(236deg, #0713ff 0%, #1B262C 100%);
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            transition: background 0.3s ease;
        }

        .download-btn:hover {
            background: #0056b3;
        }

        .download-btn i {
            margin-right: 8px;
        }
        
        
        
          .logo-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            max-width: 1000px;
            width: 100%;
        }

        /* Logo Card */
        .logo-card {
            background: white;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            height: 150px; /* Equal height for all */
        }

        /* Logo Image */
        .logo-card img {
            max-width: 80%;
            max-height: 80px; /* Equal max height */
            object-fit: contain;
        }

        /* Responsive Layout */
        @media (max-width: 768px) {
            .logo-container {
                grid-template-columns: 1fr; /* 1 column on small screens */
            }
        }
        
        
 .pkp_block a {
    text-decoration: none;
    padding-top: 0.75rem;
    padding-right: 1rem;
    padding-bottom: 0.75rem;
    padding-left: 1rem;
    color: white;
}       


.h5 {
    
    font-size: 14px;
    
}

      
.pkp_block {
    border: none;
    border-radius: 2px;
    -webkit-box-shadow: 0 1px 4px rgb(0 0 0 / 30%);
    box-shadow: 0 0 4px 3px #cccccc;
}
.pkp_block {
    padding: 0px 0;
    background-image: linear-gradient(236deg, #0713ff 0%, #1B262C 100%);
}
.pkp_block {
    margin-bottom: 23px;
    padding: 0.243rem;
}

.pkp_block .title {
    width: 100%;
    background-image: linear-gradient(351deg, #0713ff 0%, #1B262C 100%);
    height: 30px;
    font-size: 13px;
    color: #ecececec;
    padding-top: 0.4em;
    margin-bottom: 0px;
    border: 0px;
    text-align: center;
    font-family: 'Source Sans Pro', sans-serif;
}

.board-container {
            width: 100%;
            max-width: 800px;
        }

        /* Editorial Board Card */
        .board-card {
            display: flex;
            background-image: linear-gradient(236deg, #0713ff 0%, #1B262C 100%);
            border-radius: 12px;
            overflow: hidden;
            padding: 20px;
            color: white;
            align-items: center;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin-bottom: 20px; /* Space between cards */
            width: 100%;
        }

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

        /* Profile Image */
        .board-card img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            border: 4px solid white;
            object-fit: cover;
            margin-right: 20px;
        }

        /* Member Details */
        .member-info {
            flex: 1;
        }

        .member-name {
            font-size: 22px;
            font-weight: bold;
            margin-bottom: 5px;
        }

        .member-affiliation {
            font-size: 14px;
            margin-bottom: 8px;
        }

        /* Contact Details */
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 5px;
            font-size: 15px;
        }

        .contact-info i {
            margin-right: 8px;
            font-size: 18px;
        }

        .contact-info a {
            color: white;
            text-decoration: none;
            transition: opacity 0.3s ease;
        }

        .contact-info a:hover {
            opacity: 0.8;
        }

        /* Responsive Layout */
        @media (max-width: 768px) {
            .board-card {
                flex-direction: column;
                text-align: center;
                align-items: center;
                padding: 15px;
            }
            .board-card img {
                margin-bottom: 15px;
            }
        }


@media (min-width: 992px) {
    .pkp_nav_list ul a {
        color: #0713ff;
    }
}
@media (min-width: 992px) {
    .pkp_navigation_primary .dropdown-menu a:hover {
        border-color: #1B262C;
    }
}


.pkp_site_nav_menu a {
    display: inline-block;
    padding: .125rem 0;
    color: #0713ff;
    text-decoration: none;
}


.pkp_site_nav_menu a:hover, .pkp_site_nav_menu a:focus {
    color: #1B262C;
   
}


@media (min-width: 992px) {
    .pkp_nav_list ul a:hover, .pkp_nav_list ul a:focus {
        outline: 0;
        background: #ddd;
        border-color: #0713ff;
        color: #7f17b1;
    }}
    
    
    
    
    
 /* Sidebar Container */
.editorial-sidebar {
    max-width: 290px;
    background: linear-gradient(236deg, #E0ECFF 0%, #F8F9FF 100%);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 0 auto; /* Centering the sidebar */
    text-align: center;
}

/* Editorial Member Small Card */
.editorial-card-small {
    display: flex;
    align-items: center;
    background: white;
    padding: 8px;
    margin-bottom: 10px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
}

/* Member Image (Small) */
.editorial-card-small img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 10%;
    margin-right: 10px;
}

/* Editorial Member Name */
.editorial-name {
    font-size: 14px;
    color: #0713ff;
    font-weight: bold;
    margin: 0;
    flex: 1; /* Allow text to take remaining space */
}

/* Check More Button */
.editorial-more {
    margin-top: 10px;
    text-align: center;
}

.editorial-more-btn {
    display: block;
    padding: 8px;
    background: #0713ff;
    color: white;
    text-decoration: none;
    font-size: 14px;
    border-radius: 6px;
    text-align: center;
}

.editorial-more-btn:hover {
    background: #1B262C;
}


/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 60px; /* Just above the screen bottom */
    right: 20px;
    background: #25D366; /* WhatsApp green */
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 18px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease-in-out;
    z-index: 1000;
}

/* WhatsApp Icon */
.whatsapp-float .fa-whatsapp {
    font-size: 24px;
}

/* Hover Effect */
.whatsapp-float:hover {
    background: #1EBE57;
    transform: scale(1.05);
}

/* Login Form Styling */
.cmp_form.login {
    max-width: 400px;
    margin: 50px auto;
    padding: 25px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Form Fields */
.cmp_form.login .fields {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Labels */
.cmp_form.login label {
    display: flex;
    flex-direction: column;
    font-weight: 600;
    color: #333;
}

/* Input Fields */
.cmp_form.login input[type="text"],
.cmp_form.login input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    transition: 0.3s;
}

.cmp_form.login input[type="text"]:focus,
.cmp_form.login input[type="password"]:focus {
    border-color: #1B262C;
    outline: none;
    box-shadow: 0 0 5px rgba(148, 47, 196, 0.3);
}

/* Remember Me Checkbox */
.cmp_form.login .checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cmp_form.login .checkbox input {
    width: 16px;
    height: 16px;
}

/* Buttons */
.cmp_form.login .buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cmp_form.login .submit {
    width: 100%;
    padding: 12px;
    background: linear-gradient(236deg, #0713ff 0%, #1B262C 100%);
    color: white;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.cmp_form.login .submit:hover {
    background: linear-gradient(236deg, #1B262C 0%, #0713ff 100%);
    transform: scale(1.02);
}

/* Register & Forgot Password Links */
.cmp_form.login .register,
.cmp_form.login a {
    text-align: center;
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: #1B262C;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.cmp_form.login .register:hover,
.cmp_form.login a:hover {
    color: #0713ff;
    text-decoration: underline;
}

/* Recaptcha Styling */
.cmp_form.login .recaptcha_wrapper {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

/* Error Message */
.pkp_form_error {
    background: #ffdddd;
    color: #d8000c;
    padding: 10px;
    border-radius: 6px;
    text-align: center;
    font-weight: bold;
}
/* Registration Form Styling */
.cmp_form.register {
    max-width: 500px;
    margin: 50px auto;
    padding: 25px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Form Fields */
.cmp_form.register .fields {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Labels */
.cmp_form.register label {
    display: flex;
    flex-direction: column;
    font-weight: 600;
    color: #333;
}

/* Input Fields */
.cmp_form.register input[type="text"],
.cmp_form.register input[type="password"],
.cmp_form.register input[type="email"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    transition: 0.3s;
}

.cmp_form.register input:focus {
    border-color: #1B262C;
    outline: none;
    box-shadow: 0 0 5px rgba(148, 47, 196, 0.3);
}

/* Checkbox & Opt-ins */
.cmp_form.register .checkbox,
.cmp_form.register .optin {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cmp_form.register .checkbox input,
.cmp_form.register .optin input {
    width: 16px;
    height: 16px;
}

/* Buttons */
.cmp_form.register .buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cmp_form.register .submit {
    width: 100%;
    padding: 12px;
    background: linear-gradient(236deg, #0713ff 0%, #1B262C 100%);
    color: white;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.cmp_form.register .submit:hover {
    background: linear-gradient(236deg, #1B262C 0%, #0713ff 100%);
    transform: scale(1.02);
}

/* Register & Login Links */
.cmp_form.register .login,
.cmp_form.register a {
   
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: #1B262C;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.cmp_form.register .login:hover,
.cmp_form.register a:hover {
    color: #0713ff;
    text-decoration: underline;
}

/* Recaptcha Styling */
.cmp_form.register .recaptcha_wrapper {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

/* Error Message */
.pkp_form_error {
    background: #ffdddd;
    color: #d8000c;
    padding: 10px;
    border-radius: 6px;
    text-align: center;
    font-weight: bold;
}
/* General Form Styling */
.cmp_form.lost_password {
    max-width: 400px;
    margin: 40px auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Error Message Styling */
.pkp_form_error {
    background: #ffebee;
    color: #d32f2f;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 14px;
}

/* Label Styling */
.cmp_form.lost_password label {
    display: block;
    font-size: 14px;
    font-weight: bold;
    color: #333;
    text-align: left;
    margin-bottom: 5px;
}

/* Input Field Styling */
.cmp_form.lost_password input[type="email"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 15px;
    box-sizing: border-box;
}

/* Button Styling */
.cmp_form.lost_password .buttons {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cmp_form.lost_password button.submit {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    background: linear-gradient(236deg, #1B262C 0%, #0713ff 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.cmp_form.lost_password button.submit:hover {
    background: #0056b3;
}

/* Register Link Styling */
.cmp_form.lost_password a.register {
    display: block;
    font-size: 14px;
    color: #007bff;
    text-decoration: none;
    text-align: center;
}

.cmp_form.lost_password a.register:hover {
    text-decoration: underline;
}



/* Search Form Container */
.pkp_search {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    max-width: 400px;
    margin: 20px auto;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Input Field */
.pkp_search input[type="search"] {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    outline: none;
}

/* Input Focus Effect */
.pkp_search input[type="search"]:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Search Button */
.pkp_search .cmp_button {
    padding: 10px 15px;
    font-size: 16px;
    background: linear-gradient(236deg, #1B262C 0%, #0713ff 100%);
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

/* Hover Effect */
.pkp_search .cmp_button:hover {
    background: #0056b3;
}

/* Responsive Fixes */
@media (max-width: 550px) {
    .pkp_search {
        flex-direction: column;
        gap: 5px;
    }
    
    .pkp_search input[type="search"] {
        width: 100%;
    }

    .pkp_search .cmp_button {
        width: 100%;
    }
     .pkp_site_nav_menu {
    background-image: linear-gradient(236deg, #0713ff1f 0%, #d0e8f5eb 50%, #dedffd1c 100%);
    }
}


    .pkp_navigation_search_wrapper a {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

/* Logo Container */
.pkp_site_name .is_img {
    position: relative;
    display: inline-block; /* Ensures proper layout */
}

/* Logo Styling */
.pkp_site_name .is_img img {
    max-height: 80px;
    padding: 10px 15px 10px 15px;
    background: white;
    border-radius: 12px; /* Rounded corners */
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2); /* Soft Shadow */
    
    position: relative;
    z-index: 2; /* Ensures it's above the pseudo-border */
}

/* Pseudo-Element for Border */
.pkp_site_name .is_img::before {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    z-index: 1;
    background-image: linear-gradient(236deg, #0713ff 0%, #1B262C 100%);
   
    border-radius: 15px;
}



/* Responsive Adjustments */
@media (max-width: 600px) {
    .pkp_site_name .is_img img {
        max-height: 40px;
        padding: 8px;
    }
}

.pkp_structure_main:before, .pkp_structure_main:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 1px;
        background: #ffffff;
    }



.bgdark
 {
    background: linear-gradient(135deg, rgb(255 255 255) 0%, rgb(249 249 249) 47%, rgb(245 245 245 / 67%) 100%);
    padding-bottom: 20px;
    padding-left: 10px;
    border: 1px solid #eaeaea;
    box-shadow: 9px 10px 5px -10px rgb(224 224 224 / 75%);
    border-bottom: 1px solid #f1eaea;
    border-right: 1px solid #eae6e6;
}