body {
  font-family: "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #f5f7fa, #e9eef5);
  padding-bottom: 70px;
}

/* TOP BAR */
.top-bar {
  background: linear-gradient(45deg, #e33e38, #981433);
  color: #fff;
  padding: 6px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
}

/* HEADER */
.header-main {
  background: #fff;
  padding: 8px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.logo-box {
  flex: 1;
  text-align: center;
}

.logo-img {
  height: 55px;
  width: auto;
}

.header-icons i {
  font-size: 18px;
  margin-left: 15px;
  cursor: pointer;
}

/* MOBILE MENU */
.mobile-menu {
  background: #fff;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.mobile-menu .nav-link {
  color: #000;
  font-weight: 500;
}

.mobile-menu .nav-link:hover {
  color: #962723;
}

/* HERO */
.hero {
  position: relative;
  background: 
    linear-gradient(90deg, rgba(240, 244, 248, 0.98) 0%, rgba(235, 241, 247, 0.90) 50%, rgba(255, 255, 255, 0.2) 100%), 
    url("../images/hero.webp") no-repeat right center;
  background-size: contain;
  background-color: #f0f4f8; /* Soft premium grey-blue tint */
  padding: 100px 0 140px;
  color: #1e293b;
}

.hero .container {
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: 38px;
  font-weight: 800;
  color: #1a252f; /* Dark bold heading */
  line-height: 1.2;
  animation: fadeInDown 1s ease;
}

/* Agar heading ke andar koi highlight span ho (jaise Job-Ready) */
.hero h1 span {
  color: #c9302c; 
}

.hero p {
  color: #4f5b66; /* Subtext ke liye comfortable grey color */
  font-size: 16px;
  font-weight: 500;
}

.hero ul {
  list-style: none;
  padding: 0;
}

.hero ul li {
  margin-bottom: 12px;
  color: #2f3640;
  font-weight: 600;
  font-size: 15px;
  animation: fadeInUp 1.2s ease;
}

/* Bullet points ke checkmarks ko green karne ke liye */
.hero ul li i {
  color: #27ae60;
  margin-right: 8px;
}
/* FORM */
.form-box {
  background: rgba(255,255,255,0.95);
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  position: relative;
  z-index: 3;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  animation: fadeUp 0.8s ease;
  transition: 0.3s;
  margin-top: 10px;
}

/* BUTTON */
.btn-main {
  background: linear-gradient(45deg, #962723, #962723);
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  box-shadow: 0 5px 15px rgba(220,53,69,0.3);
  transition: 0.3s;
}

.btn-main:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(220,53,69,0.6);
}

/* SECTION */
.section {
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  margin: 30px auto;
  position: relative;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.section::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 40px;
  background: #f5f5f5;
  border-radius: 50%;
}

/* CARD */
.card {
  border: none;
  border-radius: 18px;
  background: #fff;
  text-align: center;
  transition: all 0.4s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.card i {
  transition: 0.3s;
  color: #962723;
}

.card:hover i {
  transform: scale(1.2);
}

/* WHY CARD */
.why-card {
  border-radius: 18px;
  background: #fff;
  border-left: 5px solid #b22f3c;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 20px;
  padding: 25px 15px;
}

.why-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(220,53,69,0.1), transparent);
  transform: rotate(45deg);
  transition: 0.5s;
}

.why-card:hover::before {
  left: 100%;
}

.why-card:hover {
  transform: translateY(-10px);
}

.why-card small {
  display: block;
  margin-top: 8px;
  color: #777;
}

/* SOCIAL ICONS */
.social-icons {
  position: fixed;
  top: 40%;
  left: 10px;
  z-index: 999;
}

.social-icons a {
  display: block;
  margin: 8px 0;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
  animation: pulse 1.5s infinite;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.social-icons a:hover {
  transform: scale(1.2) rotate(10deg);
}

/* COLORS */
.youtube { background: #962723; }
.instagram { background: #C13584; }
.linkedin { background: #0077b5; }
.facebook { background: #3b5998; }
.whatsapp { background: #25D366; }
.call { background: #962723; }

/* BOTTOM BAR */
.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  z-index: 9999;
  box-shadow: 0 -3px 10px rgba(0,0,0,0.3);
}

.bottom-bar a {
  flex: 1;
  text-align: center;
  padding: 14px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  animation: pulse-btn 1.5s infinite;
}

.call-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #f26b5b, #962723);
  color: #fff;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  box-shadow: 0 5px 20px rgba(242,107,91,0.4);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.call-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(242,107,91,0.7);
  background: linear-gradient(135deg, #ff7b6b, #b02e29);
  color: #fff;
}

.call-btn i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.call-btn:hover i {
  transform: rotate(15deg);
}

.call-btn {
  background: linear-gradient(45deg, #e63131, #962723);
}

/* WHATSAPP */
.wa-premium,
.wa-animate {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 40px;
  padding: 12px 25px;
  font-weight: 500;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: 0.3s;
  animation: pulse 2s infinite;
}

.wa-animate {
  gap: 8px;
  border-radius: 30px;
}

.wa-premium:hover,
.wa-animate:hover {
  transform: scale(1.05);
  text-decoration: none;
}

.wa-animate:hover {
  transform: scale(1.08);
}

.wa-icon {
  display: flex;
  align-items: center;
  animation: bounce 1s infinite;
}

.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(45deg, #42BD78, #1ebe5d);
  color: #fff;
  padding: 12px 25px;
  font-size: 18px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: 0.3s;
  animation: pulse 2s infinite;
}

.wa-btn:hover {
  transform: scale(1.05);
  text-decoration: none;
}

.wa-btn .icon {
  font-size: 22px;
  animation: shake 1.5s infinite;
}

/* ROADMAP */
.roadmap-section {
  background: linear-gradient(135deg, #141e30, #243b55);
  color: #fff;
  overflow: hidden;
}

.roadmap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.roadmap::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 10%;
  width: 80%;
  height: 4px;
  background: linear-gradient(90deg, #962723, #c0392b, #962723);
  background-size: 200% 100%;
  animation: moveLine 3s linear infinite;
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
  margin: 10px;
  opacity: 0;
  transform: translateY(40px);
  transition: 0.5s;
}

.step-box {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 15px;
  width: 140px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: 0.3s;
}

.step-box:hover {
  transform: translateY(-8px) scale(1.05);
}

.circle {
  width: 65px;
  height: 65px;
  background: linear-gradient(45deg, #c0392b, #962723);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-size: 22px;
  box-shadow: 0 0 15px rgba(255,75,43,0.7);
}

.step p,
.roadmap .step p {
  color: #fff;
  margin-top: 10px;
  font-size: 14px;
}

.step.active {
  opacity: 1;
  transform: translateY(0);
}

/* ACCORDION */
.premium-accordion .card {
  border: none;
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.premium-accordion .card-header {
  background: linear-gradient(45deg, #962723, #962723);
  padding: 0;
}

.premium-accordion .btn-link {
  color: #fff;
  font-weight: 600;
  padding: 14px;
  text-decoration: none;
}

.premium-accordion .icon {
  transition: 0.3s;
}

.premium-accordion .card-body {
  background: #fff;
  border-left: 4px solid #962723;
}

.course-box {
  padding: 5px;
}

.section-title {
  font-weight: 700;
  color: #962723;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  background: #fff0f0;
  border: 1px solid #962723;
  color: #962723;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
}

.feature-list div {
  background: #f8f9fa;
  margin: 6px 0;
  padding: 8px;
  border-radius: 10px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.feature-list i {
  color: #28a745;
}

.tool-text {
  background: #f1f1f1;
  padding: 8px;
  border-radius: 10px;
}

/* RATING */
.rating-box {
  margin-top: 25px;
  padding: 18px 15px;
  background: linear-gradient(135deg, #fff, #f8f9ff);
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  border-left: 5px solid #a8302b;
  animation: fadeInUp 0.8s ease;
}

.rating-box p {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  line-height: 1.6;
}

.rating-box b {
  color: #962723;
  font-size: 16px;
}

.rating-box:hover {
  transform: translateY(-5px);
  transition: 0.3s;
}

/* SOCIAL BOX */
.social-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.social-item {
  width: 120px;
  height: 110px;
  border-radius: 15px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.social-item i {
  font-size: 26px;
  margin-bottom: 8px;
}

.social-item:hover {
  transform: translateY(-8px) scale(1.05);
  color: #fff;
}

.youtube:hover { background: #962723; }
.instagram:hover { background: #C13584; }
.linkedin:hover { background: #0077b5; }
.facebook:hover { background: #3b5998; }
.whatsapp:hover { background: #42BD78; }
.call:hover { background: #962723; }

/* SUCCESS WALL */
.success-wall-section {
  background: linear-gradient(135deg, #f8f9fa, #eef2f7);
  overflow: hidden;
}

.success-wall {
  overflow: visible;
  position: relative;
  padding: 30px 0;
}

.success-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollWall 35s linear infinite;
}

.success-track:hover {
  animation-play-state: paused;
}

.success-track img {
  width: 220px;
  height: 420px;
  object-fit: contain;
  background: #fff;
  padding: 8px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,.15);
  cursor: zoom-in;
  transition: all .5s ease;
  transform-origin: center center;
}

.success-track img:hover {
  transform: scale(2.2);
  z-index: 99999;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
}

.success-btn {
  border-radius: 50px;
  padding: 14px 35px;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(37,211,102,0.4);
  animation: pulseBtn 2s infinite;
}

/* SCROLL CARDS */
.scroll-wrapper {
  overflow: hidden;
  width: 100%;
}

.scroll-track {
  display: flex;
  gap: 15px;
  width: max-content;
  animation: scrollLeft 18s linear infinite;
}

.scroll-card {
  width: 180px;
  flex: 0 0 auto;
  background: #fff;
  padding: 12px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  text-align: center;
}

.scroll-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 8px;
}

.scroll-card p {
  margin: 5px 0;
  font-weight: 500;
}

.card-body {
  text-align: center;
}

.cert-title {
  font-weight: 700;
  color: #962723;
  margin-bottom: 15px;
}

.cert-text {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

.cert-points {
  margin-top: 15px;
  text-align: left;
  background: #f8f9fa;
  padding: 15px;
  border-radius: 12px;
  border-left: 4px solid #962723;
}

.cert-points i {
  color: #28a745;
  margin-right: 8px;
}

.card:hover .cert-points {
  transform: scale(1.02);
  transition: 0.3s;
}

/* PLACEMENT LOGOS */
.logo-slider {
  overflow: hidden;
}

.logo-track {
  display: flex;
  gap: 40px;
  animation: scroll 18s linear infinite;
  align-items: center;
  width: max-content;
}

.logo-track img {
  height: 60px;
  filter: grayscale(100%);
  transition: 0.3s;
}

.logo-track img:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* CTA */
.cta-section-wrapper {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  padding: 60px 20px;
  border-radius: 20px;
  color: #fff;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

.cta-section-wrapper::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent);
  top: -50%;
  left: -50%;
  animation: moveGlow 6s linear infinite;
  pointer-events: none;
  z-index: 0;
}

.cta-title {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.cta-sub {
  font-size: 17px;
  opacity: 0.9;
}

.animated-btn {
  background: linear-gradient(45deg, #962723, #962723);
  border: none;
  border-radius: 30px;
  font-weight: bold;
  color: #fff;
  padding: 12px 30px;
  box-shadow: 0 8px 25px rgba(255,65,108,0.4);
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: pulseGlow 1.8s infinite;
  z-index: 2;
}

.animated-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 12px 30px rgba(255,65,108,0.6);
  color: #fff;
}

/* FOOTER */
.site-footer {
  background: linear-gradient(180deg, #16222a, #0f171e);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.site-footer h5 {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.site-footer a.text-muted:hover {
  color: #962723 !important;
  text-decoration: none;
  transition: 0.2s ease;
}

.site-footer .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  transition: 0.3s;
}

.site-footer .social-icons a:hover {
  background: #ff4b2b;
  color: #fff !important;
  transform: translateY(-3px);
}

.footer-logo-wrapper {
  display: inline-block;
  padding: 8px 12px;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
}

.footer-logo-wrapper:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,75,43,0.4);
  transform: translateY(-3px);
}

.footer-logo {
  transition: transform 0.3s ease;
  filter: brightness(1.05);
}

.footer-logo-wrapper:hover .footer-logo {
  transform: scale(1.03);
}

/* MODAL */
#joinModal .modal-content {
  border-radius: 18px;
  overflow: hidden;
  animation: popIn 0.4s ease;
  border: none;
}

#joinModal .modal-header {
  background: linear-gradient(45deg, #962723, #962723);
  color: #fff;
  border-bottom: none;
}

#joinModal .modal-title {
  font-weight: 700;
}

#joinModal .modal-body {
  padding: 25px;
  background: #f9f9f9;
}

.input-icon {
  position: relative;
  margin-bottom: 15px;
}

.input-icon i {
  position: absolute;
  left: 12px;
  top: 12px;
  color: #962723;
}

.input-icon input,
.input-icon select {
  padding-left: 40px;
  border-radius: 10px;
}

/* INPUT / FORM */
.form-title {
  font-weight: 700;
  margin-bottom: 15px;
  color: #962723;
  text-align: center;
}

.input-group-text {
  background: #962723;
  color: #fff;
  border: none;
}

.form-control {
  border-left: none;
}

.btn-animate {
  transition: all 0.3s ease;
  border-radius: 30px;
}

.btn-animate:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(220,53,69,0.4);
}

.gap-btn a {
  margin: 0 5px;
}

.click-text {
  color: #ffc107;
  font-weight: bold;
  animation: blink 1s infinite;
}

.highlight,
span {
  color: #ffcc00;
}

.navbar-nav .nav-item {
  margin: 0 10px;
}

h3,
h4 {
  color: #1d3557;
  font-weight: 700;
}

h3 {
  background: linear-gradient(45deg, #1d3557, #962723);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section h2 span {
  background: linear-gradient(45deg, #962723, #962723);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section .container {
  padding: 20px 10px;
}

.section h3 {
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.section p {
  margin-bottom: 25px;
  color: #555;
}

.section .row {
  row-gap: 20px;
}

/* IMAGE MODAL */
.img-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
}

.modal-content-img {
  display: block;
  margin: 30px auto 0;
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 25px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}

/* ANIMATIONS */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
  70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
}

@keyframes pulse-btn {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes shake {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(10deg); }
  75% { transform: rotate(-10deg); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes moveLine {
  0% { background-position: 0%; }
  100% { background-position: 200%; }
}

@keyframes scrollWall {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes pulseBtn {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes moveGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(255,65,108,0.6); }
  70% { box-shadow: 0 0 0 18px rgba(255,65,108,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,65,108,0); }
}

@keyframes popIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* RESPONSIVE */
@media (min-width: 768px) {
  .bottom-bar {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero {
    background-size: cover;
    text-align: center;
  }

  .roadmap {
    flex-direction: column;
  }

  .roadmap::before {
    width: 4px;
    height: 80%;
    top: 10%;
    left: 50%;
  }

  .success-track img {
    width: 160px;
    height: 300px;
  }

  .success-track img:hover {
    transform: scale(1.5);
  }
}

@media (min-width: 992px) {
  .mobile-menu {
    display: flex !important;
    justify-content: center;
  }

  .header-icons {
    display: none;
  }
}

@media (max-width: 576px) {
  .social-item {
    width: 45%;
  }

  .scroll-card {
    width: 140px;
  }
}
