/* @import url('theme.css'); */

html {
overflow-x: hidden;
}
body {
padding: 0;
margin: 0;
font-size: 16px;
color: var(--txt);
overflow-x: hidden;
}

:root {
--header-height: 205px; /* topbar + header + navbar */
--transition-speed: 0.3s;
--shrink-scale: 0.5;
}

/* For elements that need flex display */
@media (min-width: 992px) {
.desktop-only {
  display: block;
  justify-content: flex-end;
}
.mobile-only {
  display: none;
}
}

@media (max-width: 991.98px) {
.desktop-only {
  display: none;
}
.mobile-only {
  display: flex;
}
}


/* Rest of your existing styles... */

/* About Page Styles */
.about-hero {
min-height: 40vh;
display: flex;
align-items: center;
}

.process-card {
padding: 2rem;
transition: transform 0.3s ease;
}

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

.process-icon {
width: 80px;
height: 80px;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
.about-hero {
  text-align: center;
}

.about-hero .text-end {
  text-align: center !important;
  margin-top: 2rem;
}
}

/* Feature Cards Styling */
.features-section {
background-color: var(--bs-light);
}

.feature-card {
transition: transform 0.3s ease;
}

.feature-card:hover {
transform: translateY(-5px);
}

.feature-icon {
width: 60px;
height: 60px;
display: flex;
align-items: center;
justify-content: center;
}

/* Publication Process Styling */
.publication-steps {
background-color: var(--bs-light);
}

.process-step {
text-align: center;
padding: 2rem;
background: #fff;
border-radius: 8px;
box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
height: 100%;
}

.process-step:hover {
transform: translateY(-5px);
box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
}

.step-icon {
background-color: var(--bs-primary);
color: #fff;
margin: 0 auto;
width: 80px;
height: 80px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1.5rem;
transition: 0.3s;
font-size: 2rem;
}

.process-step:hover .step-icon {
background-color: var(--bs-secondary);
transform: scale(1.1);
}

.step-content h3 {
font-weight: 700;
margin-bottom: 1rem;
padding-bottom: 1rem;
font-size: 1.25rem;
position: relative;
}

.step-content h3:after {
content: "";
position: absolute;
display: block;
width: 50px;
height: 2px;
background: var(--bs-primary);
bottom: 0;
left: calc(50% - 25px);
}

.step-content p {
color: var(--bs-gray-600);
margin-bottom: 1.5rem;
font-size: 0.9rem;
}

.step-btn {
display: inline-block;
padding: 0.5rem 1.5rem;
background: var(--bs-primary);
color: #fff;
border-radius: 25px;
text-decoration: none;
transition: 0.3s;
}

.step-btn:hover {
background: var(--bs-secondary);
color: #fff;
transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
.process-step {
  padding: 1.5rem;
}

.step-icon {
  width: 60px;
  height: 60px;
  font-size: 1.5rem;
}
}

/* Add to your custom.css */
.captcha-container {
display: flex;
align-items: center;
gap: 0.5rem;
}

.captcha-image {
height: 40px;
border: 1px solid #dee2e6;
border-radius: 0.25rem;
}

.refresh-captcha {
padding: 0.375rem 0.75rem;
}

/*
TERMS MODEL
*/

.contact-block .address {
font-size: 10px !important;
}

.contact-block .phone {
font-size: 10px !important;
}

.contact-block .address-block {
display: flex;
justify-content: space-between;
}

.contact-block .address-block .line-seperator {
border-right: 2px solid #e9ecef !important;
border-radius: 0;
margin: 20px;
}

img.indexing-logo {
height: 100px;
width: 150px;
padding: 20px;
}

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

/**
THEME CSS
**/

/* Card styling */
/* Card styling */
.card {
transition: transform 0.2s, box-shadow 0.2s;
margin-bottom: 1.5rem;
}

.card:hover {
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
}

/* List group item styling */
.list-group-item {
transition: background-color 0.2s;
}

.list-group-item:hover {
background-color: rgba(var(--bs-primary-rgb), 0.05);
}

/* Icon styling */
.feature-icon {
transition: transform 0.3s ease;
}

.d-flex:hover .feature-icon {
transform: scale(1.1);
}

/* Form styling */
.form-control:focus,
.form-select:focus {
border-color: rgba(var(--bs-primary-rgb), 0.5);
box-shadow: 0 0 0 0.2rem rgba(var(--bs-primary-rgb), 0.25);
}

.input-group-text {
background-color: rgba(var(--bs-primary-rgb), 0.1);
border-color: rgba(var(--bs-primary-rgb), 0.2);
}

.form-check-input:checked {
background-color: var(--bs-primary);
border-color: var(--bs-primary);
}

/* Metric box styling */
.metric-box {
transition: transform 0.2s;
background-color: #f8f9fa;
border: 1px solid #e9ecef;
}

.metric-box:hover {
transform: translateY(-5px);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.metric-value {
font-size: 1.5rem;
font-weight: bold;
color: var(--bs-primary);
}

.metric-label {
font-size: 0.8rem;
color: #6c757d;
}

/* Animation keyframes */
@keyframes fadeIn {
from {
  opacity: 0;
  transform: translateY(20px);
}
to {
  opacity: 1;
  transform: translateY(0);
}
}

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

