

.scroll-wrapper {
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

.scroll-content {
    display: flex;
    animation: scroll 10s linear infinite;
}

.scroll-card {
    flex: 0 0 auto;
    width: 300px;
    margin-right: 1rem;
}

.scroll-wrapper:hover .scroll-content {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

input::placeholder {
    color: #888;
}
.btn-warning {
    background-color: #ff6600;
    border-color: #ff6600;
    color: white;
}
.btn-warning:hover {
    background-color: #e65c00;
}


.search-summary .headline {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 1rem;
}

.animated-count {
    display: inline-block;
    margin: 0 5px;
    transform: translateY(0);
    animation: float-up 1s ease-out forwards;
}

.count-number {
    font-weight: bold;
    color: #007BFF; /* Blue or change as needed */
}

.highlight {
    margin-left: 5px;
    color: #007BFF;
}

@keyframes float-up {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}





/* Modern Card Container */
.modern-card {
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
}

.modern-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

/* Modern Card Body */
.modern-card-body {
  padding: 1.5rem 1.5rem;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Titles */
.modern-card-body h3.fs-5 {
  font-weight: 700;
  color: #222;
  margin-bottom: 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  letter-spacing: 0.03em;
}

/* Description Text */
.modern-card-body p {
  flex-grow: 1;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

/* Badges */
.modern-card-body .badge {
  font-weight: 600;
  text-transform: capitalize;
  font-size: 0.8rem;
  padding: 0.35em 0.75em;
  border-radius: 12px;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

/* Published & Author info container */
.modern-card-body > .info-section {
  background-color: #f1f5f9;
  padding: 1rem;
  border-radius: 12px;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
}

/* Info icons */
.modern-card-body > .info-section i.fa {
  color: #3b82f6; /* Blue tint */
  margin-right: 0.5rem;
}

/* Read More Button */
.modern-card-body .btn-primary {
  border-radius: 30px;
  padding: 0.75rem 1.6rem;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.modern-card-body .btn-primary:hover {
  background-color: #dc3545;
}

/* Responsive tweak: make cards full width on small devices */
@media (max-width: 768px) {
  .modern-card {
    margin-bottom: 1.5rem;
  }
}






/* Section & Container */
/* Section & Container */
/* .search-section {
  background: linear-gradient(135deg, #f1e8d5 0%, #d2eaec 100%);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  border-radius: 15px;
  padding: 3rem 1rem;
  border: 2px solid #cef4f8;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
  cursor: default;
}

.search-section:hover {
  border-color: #29f0e3; 
  box-shadow: 0 0 15px 3px rgba(41, 240, 227, 0.5);
} */


.search-section {
  background: linear-gradient(135deg, #f1e8d5, #d2eaec);
  background-size: 200% 200%;
  animation: gradientFlow 10s ease infinite;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  padding: 3rem 1rem;
  border: 2px solid #cef4f8; /* light blue accent */
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
  cursor: default;
}

.search-section:hover {
  border-color: #29f0e3; /* bright aqua on hover */
  box-shadow: 0 0 15px 3px rgba(41, 240, 227, 0.5);
}

/* Animated background keyframes */
@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}



.search1-container {
  max-width: 1140px;
  margin: 30px auto;
  padding: 10px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  z-index: 2;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s ease;
}

.search1-container:hover {
  box-shadow: 0 8px 20px rgba(41, 240, 227, 0.3);
 background-color: #fff; /* keep white on hover */
}

/* Headline */
.search-summary .headline {
  font-weight: 600;
  font-size: 1.8rem;
  color: #222;
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}

/* Animated count styles */
.animated-count .count-number {
  font-weight: 700;
  font-size: 2rem;
  color: #29f0e3;
  display: inline-block;
  margin-right: 6px;
  animation: pulse 2s infinite ease-in-out;
}

.animated-count .highlight {
  font-weight: 500;
  color: #555;
}

/* pulse animation */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    color: #29f0e3;
  }
  50% {
    transform: scale(1.1);
    color: #00b3a5;
  }
}

/* Inputs */
.search1-container input.form-control-lg {
  border: 2px solid #ced4da;
  border-radius: 8px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  font-size: 1.1rem;
  padding: 0.75rem 1rem;
}

.search1-container input.form-control-lg::placeholder {
  color: #999;
  font-style: italic;
}

.search1-container input.form-control-lg:focus {
  border-color: #29f0e3;
  box-shadow: 0 0 8px rgba(41, 240, 227, 0.5);
  outline: none;
}

/* Button */
.search1-container button.btn-warning {
  background-color: #ffb703;
  border-color: #ffb703;
  color: #fff;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  border-radius: 10px;
}

.search1-container button.btn-warning:hover {
  background-color: #e69a00;
  border-color: #e69a00;
  box-shadow: 0 6px 15px rgba(230, 154, 0, 0.5);
  transform: scale(1.05);
}

/* Responsive: stack inputs on small screens */
@media (max-width: 767.98px) {
  .search1-container .row > div {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .search1-container button.btn-warning {
    margin-top: 0.75rem;
  }
}









.image-wrapper {
    width: 100%;
    height: 300px; /* Fixed height, adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa; /* Optional: light background */
    overflow: hidden;
}

.image-responsive {
    max-height: 100%;
    width: auto;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}









 .contact-gradient-header {
        background: linear-gradient(90deg, #6366F1, #EC4899);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }





