@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap');
/*@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300;0,500;0,600;0,700;1,400&family=Roboto:wght@500;700&display=swap');*/

:root {
  --primary-text-color: #ffd574;
  --secondary-text-color: #ffffff;
  --primary-bg-color: #f5b82b;
  --secondary-bg-color: #292d33;
  --head-font-style: 'Poppins', sans-serif;
  /* --head-font-style:'Figtree', sans-serif;*/
}

body {
  font-family: var(--head-font-style) !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.f-600 {
  font-weight: 600;
}

.w-80 {
  width: 80% !important;
}

.color-orange {
  color: var(--primary-bg-color) !important; 
}

.fs-18 {
  font-size: 20px;
}

.full-page {
  margin-top: 55px;
  /* min-height: calc(100vh - 80px); */
}

/* Step-by-step guide styling */
.step-number {
  font-size: 1.2rem;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.timeline-container .row {
  position: relative;
}

.timeline-container .row:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 30px;
  top: 60px;
  bottom: -40px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-bg-color), #e0e0e0);
  z-index: -1;
}

@media (max-width: 768px) {
  .timeline-container .row:not(:last-child)::after {
    left: 50%;
    margin-left: -1px;
  }
}

/* Enhanced card styling */
.ten-card {
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.ten-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(245, 184, 44, 0.3);
}

.btn-style {
  border: none;
  background-color: #F5B82C;
  padding: 0.5em 3em;
  color: #131313;
  font-weight: 700;
  border-radius: 30px;
  font-size: 18px;
}

.btn-style2 {
  border: none;
  background-color: var(--secondary-bg-color);
  padding: 0.5em 3em;
  color: #fff;
  font-weight: 700;
  border-radius: 30px;
  font-size: 18px;
}
.accordion-button:not(.collapsed) {
  color: black !important;
  font-weight: 700;
  background-color: #ffffff !important;
  box-shadow: none !important;
}
.accordion-button:focus {
  z-index: 3 !important;
  border-color: #f1d182 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

.nav-link {
  color: var(--secondary-bg-color) !important;
  font-weight: 600;
}

.nav-link:hover {
  color: var(--primary-bg-color) !important;
  font-weight: 600;
}

.navbar-brand>img {
  width: 170px;
  height: unset;
}
.link-hov:hover{
  color: orange !important;
}
.section-6,
.v-search {
  background-color: var(--primary-bg-color);
}

.v-search>span {
  color: var(--secondary-text-color);
}

.v-search>div {
  word-spacing: 2px;
}



.full-page {
  margin-top: 55px;
  /* min-height: calc(100vh - 80px); */
}









footer {
  background: #5e60612e;
}

.accordion-item {
  margin-bottom: 1em;
}

.accordion-item:not(:first-of-type) {
  border-top: 1px solid rgba(0, 0, 0, .125);
}

.animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}



@media (prefers-reduced-motion) {
  .hidden {
    transition: none;
  }
}
