/* hero section start  */
.hero-commerce {
  /* Vibrant Colorful Mesh Gradient Background */
  background-color: #e3dc24e2;
  background-image:
    radial-gradient(at 0% 0%, rgba(230, 7, 55, 0.15) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(37, 115, 239, 0.15) 0px, transparent 50%),
    radial-gradient(
      at 100% 100%,
      rgba(245, 158, 11, 0.15) 0px,
      transparent 50%
    ),
    radial-gradient(at 0% 100%, rgba(73, 36, 160, 0.15) 0px, transparent 50%);
  padding: 20px 3%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  font-family: "Plus Jakarta Sans", sans-serif;
  position: relative;
  overflow: hidden;
}

/* Subtle Animated Glass Blur Blobs for extra color */
.hero-commerce::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: linear-gradient(45deg, #e11d48, #3b82f6);
  filter: blur(100px);
  opacity: 0.1;
  top: 10%;
  left: 5%;
  z-index: 0;
}

.hero-content {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Text Section Styles */
.hero-text h1 {
  font-family: "Outfit", sans-serif;
  font-size: 58px;
  font-weight: 900;
  line-height: 1;
  margin: 0 0 25px 0;
  color: #1f3a5f;
}

.hero-text h1 span {
  background: linear-gradient(90deg, #f14115, #e62121);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  font-size: 72px;
  margin-top: 5px;
}

.course-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.tag {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(5px);
  color: #f41d1d;
  padding: 8px 18px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 16px;
  border: 1px solid rgba(225, 29, 72, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.hero-text p {
  font-size: 20px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 35px;
  max-width: 550px;
}

/* Visual Card Styles (Glassmorphism Effect) */
.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-card-preview {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 32px;
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.5);
  width: 100%;
  max-width: 400px;
  animation: floatAnim 5s ease-in-out infinite;
}

.icon-circle {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #e11d48, #f82323);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  margin-bottom: 25px;
  box-shadow: 0 10px 25px rgba(225, 29, 72, 0.3);
}

.course-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
}

.course-list li {
  padding: 14px 0;
  border-bottom: 1px solid #f1f5f9;
  font-weight: 700;
  color: #1f3a5f;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: transform 0.3s;
}

.course-list li:hover {
  transform: translateX(10px);
  color: #f71e1e;
}

.course-list li i {
  color: #ee2020;
  font-size: 20px;
}

@keyframes floatAnim {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(1deg);
  }
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 992px) {
  .hero-commerce {
    padding: 30px 20px;
    text-align: center;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-text {
    order: 1;
  } /* Text on TOP */
  .hero-visual {
    order: 2;
  } /* Card on BOTTOM */

  .course-tags {
    justify-content: center;
  }
  .hero-text h1 {
    font-size: 42px;
  }
  .hero-text h1 span {
    font-size: 52px;
  }

  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-card-preview {
    max-width: 100%;
  }
}

/* hero section end  */

/* bcom text section start */
:root {
  --primary: #df1a1a;
  --dark: #112f74;
  --text: #475569;
}

.commerce-wrapper {
  /* min-height: 100vh; */
  /* Colorful Mesh Background */
  background-color: #f8fafc;
  background-image:
    radial-gradient(at 0% 0%, rgba(225, 29, 72, 0.1) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(59, 130, 246, 0.1) 0px, transparent 50%);
  padding: 40px 20px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.commerce-container {
  display: flex;
  max-width: 1300px;
  margin: 0 auto;
  gap: 30px;
}

/* Side Navigation */
.course-nav {
  flex: 0 0 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  top: 20px;
  height: fit-content;
}

.nav-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--dark);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 800;
  font-family: "Outfit", sans-serif;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-btn.active {
  background: var(--primary);
  box-shadow: 0 8px 20px rgba(225, 29, 72, 0.3);
}

.nav-btn:hover:not(.active) {
  transform: translateX(5px);
  background: #1e293b;
}

/* Content Area */
.content-area {
  flex: 1;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 45px;
  border-radius: 24px;
  border: 1px solid white;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.section-title {
  font-family: "Outfit", sans-serif;
  font-size: 32px;
  color: var(--dark);
  margin-bottom: 15px;
  position: relative;
  padding-left: 15px;
}

.section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  bottom: 5px;
  width: 4px;
  background: var(--primary);
  border-radius: 4px;
}

.content-text {
  color: var(--text);
  line-height: 1.8;
  font-size: 17px;
  margin-bottom: 35px;
  text-align: justify;
}

.prospects-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  border-left: 4px solid var(--primary);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
}

/* MOBILE RESPONSIVE FIX */
@media (max-width: 850px) {
  .commerce-container {
    flex-direction: column; /* Stack Nav above Content */
  }

  .course-nav {
    flex: none;
    width: 100%;
    position: static;
    display: grid;
    grid-template-columns: 1fr; /* Top to Bottom buttons */
    gap: 10px;
  }

  .nav-btn {
    justify-content: center; /* Center text on mobile */
    padding: 14px;
  }

  .nav-btn i {
    display: none; /* Hide arrow on mobile to keep it clean */
  }

  .content-area {
    padding: 25px;
  }

  .section-title {
    font-size: 24px;
  }
}

/* bcom text section end */
/* first year table section start */
.bcom-wrapper {
  background-color: rgb(6, 30, 62);
  padding: 20px;
  color: #fff;
  font-family: "Segoe UI", sans-serif;
}

/* Container */
.bcom-container {
  max-width: 1200px;
  margin: auto;
}

/* Heading */
.bcom-title {
  text-align: center;
  margin-bottom: 10px;
}

.bcom-subtext {
  text-align: center;
  margin-bottom: 30px;
  color: #ccc;
}

/* Card */
.bcom-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Section Title */
.bcom-section-title {
  font-size: 26px;
  margin-bottom: 15px;
}

/* Table Wrapper */
.bcom-table-wrapper {
  overflow-x: auto;
}

/* Table */
.bcom-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

/* Header */
.bcom-table th {
  background: #ec3838;
  padding: 12px;
  text-align: left;
  color: #fff;
  font-size: 18px;
}

/* Cells */
.bcom-table td {
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #eee;
}

/* Hover Effect */
.bcom-table tr:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: scale(1.01);
  transition: 0.3s;
}

/* Total Row */
.bcom-total {
  font-weight: bold;
  background: rgba(255, 255, 255, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
  .bcom-title {
    font-size: 20px;
  }
  .bcom-section-title {
    font-size: 20px;
  }
}

/* first year table section end */
