<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.serviceCadheight {
    height: 35vh;
}

.newsimg {
    height: 50%;
    width: 100%;
}

.shadow {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.centercard {
    width: 50vh !important;
    height: 20vh;
    align-items: center;
    justify-content: center;
    display: flex;
}

.partner-point li {
    align-items: baseline !important;
}

.team-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.card-img-left {
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin: 15px;
}

.card-body {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.card-title {
    font-size: 1.5rem;
    font-weight: bold;
    /* color: #333; */
    color: #00a9ce;
}

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

.description {
    font-size: 0.85rem;
    color: #777;
}

.hero {
    width: 100%;
    min-height: 0vh !important;
    position: relative;
    padding: 35px 0 120px 0 !important;
    display: flex;
    align-items: center;
}

@media (min-width: 768px) {
    .team-card {
        flex-direction: row;
    }

    .card-body {
        text-align: left;
    }
}

@media (max-width: 767px) {
    .team-card {
        text-align: center;
        margin-bottom: 30px;
    }

    .card-body {
        text-align: center;
    }
}

.journals { 
    height: 767px;
    overflow-y: scroll;
}

.team-card {
    border: 1px solid #ddd; /* Light gray border */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    margin-bottom: 20px; /* Space between boxes */
    overflow: hidden; /* Ensures content fits inside */
    height: 350px;

}

    .team-card .card-body {
        padding: 20px; /* Padding inside each card */
        margin:auto;
        background-color: #fff; /* White background for content */
    }

    .team-card h5 {
        color: #00A9CE; /* Darker color for title */
        font-weight: bold; /* Bold text for titles */
    }

    .team-card p {
      /*  color: #666;*/ /* Softer color for descriptions */
        margin-bottom: 8px; /* Space below paragraphs */
    }
.article_status {
    font-size: 15px; /* Increase the text size */
}

    .article_status i {
        font-size: 18px; /* Increase the icon size */
        margin-right: 3px; /* Add some spacing between the icons */
    }
.journals {
    padding: 15px; /* Padding around entire section */
    background-color: #f9f9f9; /* Light background for section */
    border-radius: 8px; /* Rounded section corners */
}

.post {
    height: 85vh; /* Uniform card height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #fff;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

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

    .post img {
        height: 30vh;
        object-fit: cover;
        border-radius: 10px 10px 0 0;
        transition: transform 0.3s ease;
    }

    .post:hover img {
        transform: scale(1.05);
    }

    .post h3.section-title {
        font-size: 1.25rem;
        line-height: 1.3;
        margin: 0.5rem 0;
        color: #444;
    }

.post-meta {
    margin: 0.5rem 0;
}

.post-content h6 {
    font-size: 1rem;
    color: #555;
}

.read-more {
    font-size: 0.9rem;
    color: #007bff;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .read-more:hover {
        color: #0056b3;
    }

@media (max-width: 767px) {
    .post {
        height: auto;
        padding: 1rem;
    }

        .post img {
            height: 25vh;
        }

        .post h3.section-title {
            font-size: 1.1rem;
        }

    .post-content h6 {
        font-size: 0.85rem;
    }

    .read-more {
        font-size: 0.85rem;
    }
}

.button {
    display: block;
    width: 100%; /* Use 100% for full width */
    max-width: 250px; /* Limit maximum width */
    padding: 15px;
    text-align: center;
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    margin: 10px auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    box-sizing: border-box; /* Ensure padding doesn't affect width */
}

/* Add a media query for smaller screens */
@media (max-width: 400px) {
    .button {
        width: 90%; /* Set width relative to the screen */
        font-size: 14px; /* Adjust font size for smaller screens */
        padding: 10px; /* Adjust padding for smaller screens */
    }
}

/* Specific button colors */
.submit-manuscript {
    background-color: #e84c3d; /* Red color */
}

.view-status,
.signup-newsletter {
    background-color: #00A9CE; /* Blue color */
}

/* Hover effects */
.button:hover {
    opacity: 0.9;
}


.carousel {
    position: relative;
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-item {
    position: relative;
    display: none;
    width: 100%;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

    .carousel-item img {
        display: block;
        max-width: 100%;
        height: auto;
    }

    .carousel-item.active {
        display: block;
        opacity: 1;
    }

.carousel-item-next,
.carousel-item-prev {
    position: absolute;
    top: 0;
    width: 100%;
    transition: transform 0.6s ease;
}

.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    color: #fff;
    text-align: center;
    opacity: 0.5;
    transition: opacity 0.15s ease;
}

    .carousel-control-prev:hover,
    .carousel-control-next:hover {
        opacity: 1;
    }

.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: no-repeat 50% / 100% 100%;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}

.carousel-control-prev-icon {
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" fill="%23fff" viewBox="0 0 16 16"%3E%3Cpath d="M11.354 1.146a.5.5 0 0 1 0 .708L5.207 8l6.147 6.146a.5.5 0 0 1-.708.708l-6.5-6.5a.5.5 0 0 1 0-.708l6.5-6.5a.5.5 0 0 1 .708 0z"/%3E%3C/svg%3E');
}

.carousel-control-next-icon {
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" fill="%23fff" viewBox="0 0 16 16"%3E%3Cpath d="M4.646 1.146a.5.5 0 0 1 .708 0l6.5 6.5a.5.5 0 0 1 0 .708l-6.5 6.5a.5.5 0 0 1-.708-.708L10.793 8 4.646 1.854a.5.5 0 0 1 0-.708z"/%3E%3C/svg%3E');
}

.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    display: flex;
    justify-content: center;
    padding-left: 0;
    margin-left: -50%;
    list-style: none;
}

    .carousel-indicators li {
        position: relative;
        flex: 0 1 auto;
        width: 10px;
        height: 10px;
        margin: 0 3px;
        background-color: #fff;
        border-radius: 50%;
        cursor: pointer;
    }

    .carousel-indicators .active {
        background-color: #007bff;
    }
</pre></body></html>