html {
  scroll-behavior: smooth;
}

body {
  margin: 0 auto;
  padding: 0 auto;
  font-family: 'Poppins', Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 700;
}

p, li, a, span, button, input, textarea {
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 400;
}

/* ===== CAROUSEL ===== */
.carousel-caption {
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 8px;
}
.carousel-caption h2 {
  font-size: 48px;
  font-weight: bold;
  color: #fff;
}
.carousel-caption p {
  font-size: 20px;
  color: #f0f0f0;
}

/* ===== NAVBAR ===== */
.navbar {
  font-size: 1.1rem;
}
.navbar-nav .nav-link {
  padding: 0.5rem 1.2rem;
  transition: color 0.3s ease, background-color 0.3s ease;
}
.navbar-nav .nav-link:hover {
  background-color: #f0f0f0;
  border-radius: 5px;
  color: #007bff;
}
.bg-light {
  background-color: #d6dce1 !important;
}

/* ===== ABOUT ===== */
.onlytext p {
  font-size: 36px;
}
.about {
  margin-top: 10%;
  margin-bottom: 10%;
}

/* ===== PROJECT CAROUSELS ===== */
.carousel-item {
  background: #f8f9fa;
  border-radius: 10px;
  text-align: center;
}
.my-bullets {
  list-style: none;
}
.my-bullets li::before {
  content: "•";
  color: #bf2117;
  font-size: 24px;
}
ul.my-bullets {
  text-align: left;
}

/* ===== WHY UB CLUB ===== */
.text-row {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
  gap: 60px;
  font-size: 36px;
  font-weight: bold;
}
.text-row div {
  padding: 0 30px;
  position: relative;
}
.text-row div:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 150%;
  width: 2px;
  background: white;
}
.pass {
  position: relative;
  height: 500px;
  background-image: url('../IMG/arrow.png');
  background-size: cover;
  background-position: center;
  color: white;
}
.pass h1, .pass span {
  padding-top: 60px;
}

/* ===== CONTACT FORM ===== */
.contact-form {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
}

/* ===== FOOTER ===== */
.backfooter {
  position: relative;
  height: 500px;
  background-image: url('../IMG/call2.png');
  background-size: cover;
  background-position: center;
  color: white;
}
.backfooter h5 {
  font-size: 26px;
  font-weight: 500;
}
footer p {
  font-size: 16px;
  font-weight: 400;
}

/* ===== PLAN BOXES ===== */
.bg-red { background-color: #bf2117; height: 600px; }
.bg-black { background-color: black; height: 600px; }
.plan-box:hover {
  transform: scale(1.05);
  transition: transform 0.4s ease;
}

/* ===== Animations ===== */
.fade-in { opacity: 0; animation: fadeIn 2s ease-in forwards; }
@keyframes fadeIn { to { opacity: 1; } }
.slide-up { opacity: 0; transform: translateY(30px); animation: slideUp 2s ease-out forwards; animation-delay: 0.5s; }
@keyframes slideUp { to { opacity: 1; transform: translateY(0); } }
.zoom-in { transform: scale(0.8); opacity: 0; animation: zoomIn 1.5s ease-in-out forwards; animation-delay: 1s; }
@keyframes zoomIn { to { transform: scale(1); opacity: 1; } }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .carousel-caption h2 { font-size: 32px; }
  .carousel-caption p { font-size: 16px; }
  .onlytext p { font-size: 24px; }
  .pathspace h1, .space h1 { font-size: 40px; }
  .pathspace span, .space span { font-size: 20px; }
  .text-row { flex-direction: column; font-size: 22px; gap: 20px; }
  .bg-red, .bg-black { height: auto; padding: 40px 0; }
  .plan-box { padding: 40px 20px; }
  .pass { height: auto; padding: 60px 20px; text-align: center; }
  .backfooter { height: auto; padding: 60px 20px; text-align: center; }
}
@media (max-width: 576px) {
  .carousel-caption h2 { font-size: 24px; }
  .carousel-caption p { font-size: 14px; }
  .onlytext p { font-size: 20px; }
  .pathspace h1, .space h1 { font-size: 32px; }
  .space span { font-size: 18px; }
  .text-row { font-size: 18px; }
}
