* {
  transition: all 0.15s ease-in-out;
}
section {
  padding: 20px 0 !important;
  border-radius: 20px;
  margin: 20px 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.card {
  border-radius: 15px;
  background: #fff9f2;
  border: none;
  box-shadow: 0 0 10px rgba(255, 170, 102, 0.2);
}

.card-title {
  font-weight: 600;
  color: #ff7f50;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.card-img-top {
  height: auto;
  max-height: 180px;
  object-fit: cover;
}

footer {
  background: linear-gradient(to right, #00c6ff, #0072ff);
  color: white;
}

.img-fluid {
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  align-items: center;
  margin: 0 auto;
  max-height: 50vh;
  max-width: 100%;
}

h2.text-white,
p.text-white,
label.text-white {
  color: white;
}

.divlightblue {
  background-color: rgb(100, 177, 255);
  border-radius: 10px 10px 0 0;
}

#myBtntop {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 10px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: #ffb347;
  color: white;
  cursor: pointer;
  padding: 10px;
  border-radius: 10px;
  font-size: 18px;
  transition: all ease-in-out 0.3s;
}

#myBtntop:hover {
  background-color: #ff9a36;
  color: white;
}

.social-media {
  gap: 15px;
}

.social-icon {
  width: 2rem;
  height: 2rem;
  transition: transform 0.3s ease;
  color: white;
  fill: green;
}

.social-icon:hover {
  transform: scale(1.1);
}

.container#foryou {
  background-color: white;
  padding-top: 20px;
  padding-bottom: 20px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px,
              rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
  border-radius: 10px;
}

.divprelightblue#foryou {
  background-color: rgb(54, 155, 255);
  padding: 10px !important;
}

.divprelightblue {
  background-color: rgb(54, 155, 255);
}

button, .btn {
  border-radius: 12px !important;
  transition: all 0.3s ease-in-out;
}

.nav-link {
  transition: all 0.3s ease-in-out;
}

.btn-primary {
  background-color: #ff9a8b;
  border-color: #ff9a8b;
}

.btn-primary:hover {
  background-color: #ff6f61;
  border-color: #ff6f61;
}

@media (max-width: 768px) {
  .card-title {
      font-size: 1rem;
  }
  .card-text {
      font-size: 0.9rem;
  }
}

.wave {
  position: relative;
  height: 60px;
  background: #ffffff;
  overflow: hidden;
}

.wave::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 100%;
  top: -30px;
  left: 0;
  background: url('https://svgshare.com/i/10vJ.svg') repeat-x;
  background-size: contain;
  animation: waveMove 6s linear infinite;
}

@keyframes waveMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.timeline {
  position: relative;
  padding-left: 40px;
  border-left: 3px solid #ffb347;
}
.timeline-item {
  position: relative;
  margin-bottom: 30px;
}
.timeline-icon {
  position: absolute;
  left: -25px;
  top: 0;
  background: #fff;
  color: #ff7f50;
  font-size: 24px;
}
.timeline-content h5 {
  font-weight: bold;
  color: #0077b6;
}
.timeline-content p {
  color: #444;
}
@media (max-width: 768px) {
  .timeline {
    padding-left: 20px;
  }
  .timeline-icon {
    font-size: 20px;
    left: -20px;
  }
}
#policy .card {
  background: #fff9f2;
  border: none;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(255, 170, 102, 0.2);
}
#policy .card-title {
  font-weight: 600;
  color: #ff7f50;
}
#policy .nav-link.active {
  background-color: #ffb347;
  color: white;
}
#policy .nav-link:hover {
  background-color: #ffeed6;
  color: #0077b6;
}