/* Arrow Animation */
.dropdown-toggle .dropdown-arrow {
  transition: transform 0.3s ease;
}

.show > .dropdown-toggle .dropdown-arrow,
.dropdown-toggle[aria-expanded="true"] .dropdown-arrow {
  transform: rotate(180deg);
}

/* Dropdown item hover - light green background */
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
  background-color: #e7ffe7 !important; /* Light green */
  color: #181818;
}

.dropdown-item{
  font-size: 16px !important;
  font-weight: 400 !important;
  color: #555;
}

a.dropdown-toggle::after {
  display: none !important;
}


.nav-item {
	font-size: 18px !important;
}


.form-control {
  padding: .7rem 1rem !important;
}

input{
    border-radius:  var(--border-radius) !important;;

}
/* Blur + dim the backdrop */
.modal-backdrop.show {
  background-color: rgba(0,0,0,0.3);
  backdrop-filter: blur(4px);
}

/* Rounded corners & spacing */
#authModal .modal-content {
  border-radius: 12px;
  max-width: 500px;
}

/* Boost the close-icon size */
#authModal .btn-close {
  opacity: .8;
}
#authModal .btn-close:hover {
  opacity: 1;
}



.text-primary {
  color: var(--color-primary) !important;

}

.bg-main {
  background-color: var(--color-primary) !important;
}


.service-card {
  transition: box-shadow 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.25) !important;
}

.service-icon {
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.3);
}


.fixed-card {
  height: 380px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fixed-card img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  padding: 0px;
  border-radius: 8px; /* Rounded corners */
  transition: transform 0.3s ease;
}

.fixed-card:hover img {
  transform: scale(1.05);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.35);
}


.fixed-card .card-body {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.5);
}

.fixed-card .card-title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.fixed-card-container {
  position: relative;
  height: 380px;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s ease;
}

.fixed-card-container:hover {
  box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.3);
}
/*
       .hero {
  background: url('/images/calla_banner.jpg') center center/cover no-repeat;
  height: 75vh !important;
  position: relative;
  color: white;
  opacity: 0;
  transform: scale(1.1) translateY(20px);
  animation: zoomMove 1.5s ease-out forwards;
}
*/

.hero {
  position: relative;
  height: 80vh !important;
  overflow: hidden;
  color: white;
  opacity: 0;
  transform: scale(1.1) translateY(20px);
  animation: zoomMove 1.5s ease-out forwards;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80vh !important;
  object-fit: cover;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
}


@keyframes zoomMove {
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.65) !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}
.tags span {
  margin: 5px;
  background: #fff;
  color: #000;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
  display: inline-block;
}

/* ensure the dropdown sits over other content */
#suggestions {
  z-index: 1000;
}

.input-group .btn {
  /* center vertically within the input-group */
  margin: auto 0;
}

.modal-register {
  border-radius: 12px;
  overflow: hidden;
}

.modal-left {
  background: url('/images/register-bg.jpg') center center / cover no-repeat;
  position: relative;
  min-height: 100%;
}

.modal-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal-left h4,
.modal-left ul {
  z-index: 2;
  position: relative;
}

.modal-left ul {
  list-style: none;
  padding-left: 0;
}

.modal-left ul li::before {
  content: "✔";
  margin-right: 8px;
  color: #a0e9ff;
}



.cp-card {
  background: var(--cp-purple-dark);
  border: none;
  border-radius: 1rem;
  color: var(--cp-text-light);
}

.cp-card .card-title {
  color: var(--cp-text-light);
}

.cp-input {
  background: var(--cp-purple-medium) !important;
  border: none !important;
  border-radius: 2rem !important;
  color: var(--cp-text-light) !important;
}
.cp-input::placeholder {
  color: var(--cp-placeholder) !important;
}

.cp-btn-purple {
  background: linear-gradient(
    135deg,
    var(--cp-purple-light) 0%,
    var(--cp-purple-medium) 100%
  ) !important;
  border: none;
  border-radius: 2rem;
  padding: 0.75rem 1.5rem;
  color: #fff;
  font-size: 1rem;
}

.cp-card a {
  color: var(--cp-purple-light);
}
.cp-card a:hover {
  color: var(--cp-text-light);
  text-decoration: underline;
}

/* remove input-group borders */
.input-group-text {
  background: var(--cp-purple-dark) !important;
  border: none !important;
  color: var(--cp-text-light);
}


.partner-section {
  background-color: rgba(0, 0, 0, 0.01) !important;
  width: 100% !important;
}

.partner-inner {
  width: 100% !important;
}

.partner-logos-wrapper {
  overflow-x: auto;
  white-space: nowrap;
}

.partner-logos {
  display: flex;
  gap: 20rem;
}

.partner-logo {
  height: 30px;
  margin-right: 15px;
  object-fit: contain;
}
.freelance-section, .how-it-works {
  max-width: 1200px;
  margin: 60px auto;
  margin-top: 0px;
  padding: 0 20px;
  text-align: center;
}

.freelance-section h2,
.how-it-works h2 {
  font-size: 1.75rem;
  margin-bottom: 40px;
  font-weight: 500;
}

.freelance-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.freelance-item {
  flex: 1 1 220px;
  max-width: 250px;
}

.freelance-item .icon {
  font-size: 36px;
  color: #444;
  margin-bottom: 15px;
}

.freelance-item p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}

.how-it-works ol {
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
  padding-left: 1.2rem;
  color: #444;
  font-size: 1rem;
  line-height: 1.8;
}

.fiverr-pro-card {
  background-color: #f8f1ff; /* warm light purple */
  border-radius: 20px;
  display: flex;
  padding: 3rem;
  gap: 2rem;
  margin: auto;
  margin-top: 80px;
  margin-bottom: 80px;
  max-width: 1300px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.fiverr-pro-left {
  flex: 1 1 400px;
  min-width: 300px;
}

.fiverr-pro-heading {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 2rem;
  line-height: 1.3;
}

.fiverr-pro-heading .highlight {
  color: #1dbf73;
  font-weight: 600;
}

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.feature .icon {
  font-size: 1.5rem;
  color: #1dbf73;
  flex-shrink: 0;
}

.feature strong {
  display: block;
  margin-bottom: 0.25rem;
}

.feature p {
  margin: 0;
  font-size: 0.9rem;
  color: #444;
}

.cta-button {
  padding: 0.75rem 1.5rem;
  background-color: #000;
  color: #fff;
  border-radius: 8px;
  border: none;
  font-weight: 500;
  cursor: pointer;
}

.fiverr-pro-right {
  position: relative;
  flex: 1 1 300px;
  min-width: 280px;
  text-align: center;
}

.promo-image {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.status-badge {
  position: absolute;
  top: 10%;
  right: -10%;
  background: white;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  padding: 0.5rem;
  font-size: 0.85rem;
  color: #333;
}

.graph-indicator {
  position: absolute;
  bottom: 8%;
  right: 8%;
  padding: 0.5rem;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}


  /* Center wrapper + make button auto-width */
  .google-signin-container {
    text-align: center !important;
  }
  .g_id_signin {
    display: inline-block !important;
    width: auto !important;
  }


  /* ---------------------------------------------
   1) Base nav-tabs reset
--------------------------------------------- */
.nav-tabs {
  display: flex;
  border-bottom: 2px solid #e9ecef;
  padding-left: 0;
  margin-bottom: 1rem;
  list-style: none;
}

.nav-tabs .nav-item {
  margin-bottom: -2px; /* pull active border down */
}

/* ---------------------------------------------
   2) Tab links
--------------------------------------------- */
.nav-tabs .nav-link {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  color: #495057;
  font-weight: 500;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.nav-tabs .nav-link:hover {
  color: #0d6efd;
}

.nav-tabs .nav-link.active {
  color: var(--color-primary) !important;
  font-weight: bold;
  border-color: var(--color-primary) !important;
}

/* ---------------------------------------------
   3) Optional sliding indicator
--------------------------------------------- */
.nav-tabs {
  position: relative;
}
.nav-tabs::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #0d6efd;
  transition: left 0.3s ease, width 0.3s ease;
}
.nav-tabs .nav-link.active ~ .nav-link,
.nav-tabs .nav-link:not(.active) ~ .nav-link {
  /* selector trick to force repaint */
}
.nav-tabs .nav-link.active {
  /* Move and size the underline via JS (see note) */
}

/* ---------------------------------------------
   4) Nav-pills variant
--------------------------------------------- */
.nav-pills {
  display: flex;
  background: #f8f9fa;
  border-radius: 0.25rem;
  padding: 0.25rem;
  list-style: none;
}

.nav-pills .nav-link {
  flex: 1;
  text-align: center;
  padding: 0.5rem 0.75rem;
  margin: 0 .25rem;
  color: #495057;
  background: transparent;
  border-radius: 0.25rem;
  transition: background 0.3s, color 0.3s;
}

.nav-pills .nav-link.active {
  color: #fff;
  background: #0d6efd;
}

