body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

.navbar {
  background: #fff;
  padding: 10px 25px;
  box-shadow: 0px 4px 4px 0px rgb(0 0 0 / 18%);
  position: sticky;
  top: 0px;
  left: 0px;
  z-index: 2000;
}

.dropbtn {
  background-color: #fff;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
  color: #f26434;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.custom-nav {
  border: 2px solid #ccc;
  border-radius: 15px;
  padding: 2px 10px;
  margin: 2px;
}

.custom-nav .nav-link {
  font-weight: 500;
  color: #333;
  padding: 6px 12px;
}

.custom-nav .nav-link:hover {
  color: #f26434;
}

.custom-nav .divider {
  color: #f26434;
  font-size: 20px;
  margin: 0 6px;
}

.btn-login {
  border: 1px solid #f36f45;
  color: #f36f45;
  border-radius: 10px;
  padding: 6px 18px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-login:hover {
  background: #f36f45;
  color: #fff;
}

@media (max-width: 992px) {
  .custom-nav {
    border: none;
    border-radius: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 0;
  }

  .custom-nav .divider {
    display: none;
  }

  .custom-nav .nav-link {
    padding: 10px;
    width: 100%;
    border-bottom: 1px solid #eee;
  }

  .btn-login {
    margin-top: 10px;
    width: 100%;
    text-align: center;
  }
}

.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
  background-image: linear-gradient(to bottom, #ffffff, #f0f0fe);
}

.hero-card {
  padding: 50px;
  max-width: 100%;
  width: 100%;
  background-image: radial-gradient(#d7e3ff 1px, transparent 1px);
  background-size: 40px 40px;
  position: relative;
}

.hero-card h1 {
  font-weight: bold;
  color: #111;
  font-size: 5rem;
}

.hero-card h2 {
  font-weight: 600;
  color: #555;
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.hero-card p {
  color: #555;
  font-size: 2rem;
  margin-bottom: 35px;
  line-height: 1.6;
}

/* Right Image */
.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.learingtext {
  color: #fe6334;
}

.btn-learn {
  background: linear-gradient(to right, #f66428, #e80006);
  color: white;
  font-weight: 600;
  border-radius: 25px;
  padding: 12px 120px;
  border: none;
  transition: all 0.3s;
}

.btn-learn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 80, 0, 0.4);
}

.career-section {
  padding: 60px 20px;
}

.career-card,
.career-img-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgb(0 0 0 / 25%);
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.career-title {
  font-weight: 700;
  font-size: 1.6rem;
  color: #222;
  margin-bottom: 20px;
}

.career-text {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.career-img-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.career-img-card img {
  width: 90%;
  max-width: 300px;
  height: auto;
}

@media (max-width: 992px) {
  .career-card,
  .career-img-card {
    height: auto;
  }
  .career-img-card img {
    width: 45%;
  }
}

@media (max-width: 576px) {
  .career-title {
    font-size: 1.3rem;
  }
  .career-text {
    font-size: 0.95rem;
  }
  .career-img-card img {
    width: 60%;
  }
}

.section-title {
  font-weight: 600;
  font-size: 1.6rem;
  margin-bottom: 40px;
  text-align: center;
}

/* Cards */
.benefit-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  padding: 30px 25px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
  text-align: center;
  transition: all 0.3s ease-in-out;
  height: 100%;
}

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

.benefit-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(180deg, #5d8bff, #9cb8ff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  margin: 0 auto 15px auto;
}

.benefit-card h5 {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 0.95rem;
  color: #555;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(90deg, #ff7a00, #ff3434);
  color: white;
  text-align: center;
  padding: 60px 20px;
  border-radius: 0;
}

.cta-section h3 {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 25px;
}

.cta-btn {
  background: linear-gradient(90deg, #0046ff, #4f9eff);
  border: none;
  color: white;
  font-weight: 600;
  border-radius: 50px;
  padding: 12px 35px;
  transition: all 0.3s ease-in-out;
}

.cta-btn:hover {
  background: linear-gradient(90deg, #0036cc, #3c7de5);
}

@media (max-width: 768px) {
  .benefit-card {
    margin-bottom: 20px;
  }
}

.satsang-card {
  background: #fff;
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

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

.satsang-card img {
  width: 100%;
  height: auto;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.satsang-content {
  padding: 20px;
  text-align: left;
}

.satsang-content h6 {
  font-weight: 600;
  margin-bottom: 6px;
  color: #000;
}

.satsang-content p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.join-btn {
  background: #ff3b3b;
  border: none;
  color: white;
  font-weight: 600;
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.join-btn:hover {
  background: #e82f2f;
}

/* Responsive padding fix */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.3rem;
  }
}

.courses-section {
  padding: 60px 0;
  overflow: hidden;
  position: relative;
  background: linear-gradient(to bottom, #fde7e7, #ff5722);
  font-family: "Poppins", sans-serif;
}

.courses-section h2 {
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
}

.slider {
  display: flex;
  gap: 30px;
  animation: scroll 15s linear infinite;
}

.slider:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.course-card {
  flex: 0 0 300px;
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.course-card:hover {
  transform: translateY(-5px);
}

.course-img {
  width: 100%;
  height: 160px;
  background: url("https://cdn.pixabay.com/photo/2015/04/23/22/00/tree-736885_960_720.jpg")
    center/cover;
  position: relative;
}

.live-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ff4500;
  color: white;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 5px;
  font-weight: bold;
}

.course-content {
  padding: 15px;
}

.course-content h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.course-content p {
  font-size: 14px;
  color: #666;
}

.facebook-btn {
  background: #1877f2;
  color: white;
  border: none;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .slider {
    animation: scroll 20s linear infinite;
  }
  .course-card {
    flex: 0 0 240px;
  }
}

@media (max-width: 480px) {
  .course-card {
    flex: 0 0 200px;
  }
}

@media (max-width: 576px) {
  .custom-card {
    margin-bottom: 25px;
  }
}

@media (max-width: 768px) {
  .hero-card {
    padding: 40px 25px;
  }

  .hero-card h1 {
    font-size: 1.9rem;
  }

  .hero-card h2 {
    font-size: 1.1rem;
  }

  .hero-card p {
    font-size: 0.95rem;
  }

  .btn-learn,
  .btn-outline {
    padding: 10px 18px;
  }
}

@media (max-width: 480px) {
  .hero-card {
    text-align: center;
  }

  .btn-group {
    flex-direction: column;
  }

  .btn-group button {
    width: 100%;
    margin-bottom: 10px;
  }
}
.register-section {
  background: linear-gradient(135deg, #5c2dab, #7d4ed1);
  color: #fff;
  border-radius: 15px;
  text-align: center;
  padding: 40px 20px;
  margin: 30px auto;
  max-width: 90%;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.register-section h2 {
  font-size: 45px;
  font-weight: bold;
  margin-bottom: 10px;
}

.register-section p {
  font-size: 16px;
  margin-bottom: 25px;
  text-align: center;
}

.register-section .btn {
  background: linear-gradient(90deg, #ff6600, #ff0000);
  border: none;
  padding: 12px 30px;
  font-size: 18px;
  border-radius: 8px;
  color: #fff;
  transition: all 0.3s ease;
}

.register-section .btn:hover {
  opacity: 0.85;
}

footer {
  background: linear-gradient(to bottom, #ffffff, #ffbbac);
  color: #333;
  font-family: "Poppins", sans-serif;
}

footer .footer-main {
  max-width: 90%;
  margin: auto;
}

.footer-logo img {
  width: 200px;
  margin-bottom: 10px;
}

.footer-logo p {
  font-size: 14px;
  margin: 4px 0;
  color: #444;
}

.footer-logo a {
  color: #e65a29;
  text-decoration: none;
  margin: 0 4px;
  font-size: 14px;
}

.footer-logo a:hover {
  color: #ff5722;
}

.footer-column {
  background: #ffe9e1;
  border-radius: 15px;
  padding: 25px 20px;
  margin-right: 10px;
}

.footer-column h3 {
  background: #f6d5c4;
  text-align: center;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: bold;
}

.footer-column ul {
  list-style: none;

  border-radius: 12px;
  padding: 20px;
}

.footer-column ul li {
  margin: 8px 0;
}

.footer-column ul li a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  transition: 0.3s;
  text-align: center;
}

.footer-column ul li a:hover {
  color: #ff5722;
}

.footer-bottom {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 10px;
  font-size: 14px;
  margin-top: 30px;
  width: 100%;
}

.footer-contacts {
  background: #ff5722;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 80px;
  font-size: 14px;
}

.footer-bottom p {
  text-align: center;
}

.footer-contacts p {
  margin: 0;
  text-align: center;
}
