.preloader__image {
  background-size: 300px auto;
  width: 100%;
  height: 100%;
}

/* nav baR CSS */
@media screen and (max-width: 426px) {
  .main-header__call a {
    display: none;
  }
  .main-header__call__subtitle {
    display: none;
  }

  .main-header__call__icon {
    position: unset;
  }
  .main-header__call__content {
    padding-left: 44px;
  }
}

/* activity slider section on home pgae css */

/* Activity Card */
.activity-card {
  flex: 0 0 auto;
  width: 200px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.activity-card:hover {
  transform: translateY(-1px);
}

/* Circular Image Container */
.activity-image-wrapper {
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 5px 6px var(--gotur-black2);
  transition: all 0.3s ease;
  border: 5px solid var(--gotur-white);
}

.activity-card:hover .activity-image-wrapper {
  box-shadow: 0 8px 30px var(--gotur-gray);
  border-color: var(--gotur-primary);
}

.activity-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

/* Activity Badge (optional) */
.activity-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--gotur-primary);
  color: var(--gotur-white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Activity Info */
.activity-name {
  color: var(--gotur-text);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  transition: color 0.3s ease;
}

.activity-card:hover .activity-name {
  color: var(--gotur-primary);
}

.activity-count {
  color: var(--gotur-base);
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .activity-card {
    width: 160px;
  }

  .activity-image-wrapper {
    width: 140px;
    height: 140px;
  }

  .activity-name {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .activity-card {
    width: 140px;
  }

  .activity-image-wrapper {
    width: 120px;
    height: 120px;
    border-width: 3px;
  }

  .activity-name {
    font-size: 14px;
  }
}



/* footer */

.main-footer {
    background-color: var(--gotur-text, #1d231f);
}


/* Styles for developer credit */
.dev-credit{
  text-align: start;
  font-weight: 500;
  font-size: 14px;
  color: white;            /* subtle gray for the sentence */
  margin: 5px 0;
  line-height: 1.4;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

/* Link styling that attracts attention */
.dev-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 6px;
  padding: 6px 10px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  /* gradient text effect */
  background: linear-gradient(90deg, #ff8a00 0%, #e52e71 50%, #8a2be2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  transition: transform .18s ease, box-shadow .18s ease;
  will-change: transform;
}

/* small glowing badge (using ::after) to make it lively */
.dev-link::after{
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.9), rgba(255,255,255,0.1));
  box-shadow: 0 0 10px rgba(229,46,113,0.45), 0 0 22px rgba(138,43,226,0.15);
  opacity: 0.95;
  pointer-events: none;
}

/* spark SVG styling */
.dev-link .spark{
  fill: url(#); /* not used, path fill overridden below */
  width: 14px;
  height: 14px;
  transform: rotate(10deg);
  opacity: 0.95;
  filter: drop-shadow(0 2px 6px rgba(229,46,113,0.12));
  transition: transform .18s ease, filter .18s ease;
}

/* make the SVG path match the gradient by using a solid color fallback */
.dev-link .spark path{
  fill: #ff8a00;
}

/* hover/focus interaction */
.dev-link:hover,
.dev-link:focus{
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 30px rgba(229,46,113,0.12), 0 4px 12px rgba(138,43,226,0.06);
  outline: none;
}

/* accessible focus-visible */
.dev-link:focus-visible{
  box-shadow: 0 0 0 4px rgba(229,46,113,0.12);
  border-radius: 12px;
}

/* tiny animation on the spark for attention (respects reduced motion) */
@media (prefers-reduced-motion: no-preference){
  .dev-link .spark{
    animation: spark-bob 2.6s ease-in-out infinite;
  }
  @keyframes spark-bob{
    0%   { transform: translateY(0) rotate(8deg); }
    50%  { transform: translateY(-3px) rotate(-6deg); }
    100% { transform: translateY(0) rotate(8deg); }
  }
}
/* ==================dev creddit line end ===========================*/
/* footer modification */

.main-footer__middle {  
  padding-bottom: 20px;   
}

.footer-smcara-social-batch {
    margin-bottom: 20px;
    margin-top: 20px;
}
.footer-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.footer-links a{
  font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 175%;
    color: var(--gotur-white, #fff);
    opacity: 0.8;
    border-bottom: 1px dotted var(--gotur-white, #fff);
}

.footer-widget__social a {
    height: 40px;
    width: 40px;
    border-radius: 30px;
    font-size: 25px;
    background-color: var(--gotur-white, #fff);
    color: var(--gotur-base, #fff);
}
.main-footer__bottom__inner {
padding: 5px 0px;
}



/* activity sec css */
.samcara-activity-sec{
  padding-bottom: 0;
}

@media (max-width: 575px) {
    .samcara-section-space {
        padding-top: 100px;
    }
}

.contact-top__item {
  padding: 40px 25px !important; 
}

.contact-top__item__title a {
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}