/* hero section start  */
.arts-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #001f3f 0%, #004a7c 100%);
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #ffffff;
  overflow: hidden;
  padding: 30px 3%;
}

/* Background Abstract Elements */
.arts-hero::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: rgba(227, 43, 49, 0.1);
  border-radius: 50%;
  filter: blur(80px);
}

.arts-container {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  z-index: 10;
}

/* Left Content */
.arts-content h4 {
  color: #e32b31;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 14px;
}

.arts-content h1 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.1;
  margin-bottom: 25px;
}

.arts-content p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 35px;
  max-width: 600px;
}

.arts-cta-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  background-color: #e32b31;
  color: white;
  padding: 16px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
  box-shadow: 0 10px 20px rgba(227, 43, 49, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  background-color: #c42328;
}

/* Right Info Card */
.arts-info-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.eligibility-tag {
  display: inline-block;
  background: rgba(227, 43, 49, 0.2);
  color: #ff8c8f;
  padding: 6px 15px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}

.info-item {
  margin-bottom: 25px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-item h5 {
  font-family: "Outfit", sans-serif;
  margin: 0 0 5px 0;
  font-size: 18px;
  color: #ffffff;
}

.info-item span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* Mobile Logic */
@media (max-width: 968px) {
  .arts-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .arts-content p {
    margin: 0 auto 35px;
  }
  .arts-cta-group {
    justify-content: center;
  }
  .arts-hero {
    min-height: auto;
    padding: 50px 5%;
  }
}

/* hero section end */
/* BA Interoductions section start  */
.ba-intro-section {
  padding: 30px 5%;
  background-color: #ffffff;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #1f3a5f;
  overflow: hidden;
}

.ba-intro-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

/* Left Content Styling */
.ba-text-content h2 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(30px, 4vw, 42px);
  color: #1f3a5f; /* Navy Blue */
  margin-bottom: 25px;
  position: relative;
}

.ba-text-content h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 5px;
  background: #e32b31; /* Red Accent */
  margin-top: 10px;
  border-radius: 10px;
}

.ba-text-content p {
  font-size: 17px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 20px;
  text-align: justify;
}

/* Right Interactive Card */
.ba-visual-card {
  background: #f8fafc;
  padding: 10px;
  border-radius: 30px;
  border: 1px solid #e2e8f0;
  position: relative;
  transition: transform 0.3s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
}

.ba-visual-card:hover {
  transform: translateY(-10px);
}

.ba-badge {
  background: #e32b31;
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 20px;
}

.ba-feature-list {
  list-style: none;
  padding: 0;
}

.ba-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px dashed #cbd5e1;
}

.ba-feature-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.ba-feature-item i {
  color: #1f3a5f;
  font-size: 20px;
  margin-top: 3px;
}

.ba-feature-text strong {
  display: block;
  color: #1f3a5f;
  font-size: 18px;
  margin-bottom: 2px;
}

.ba-feature-text span {
  font-size: 14px;
  color: #64748b;
}

/* Mobile Responsive Logic */
@media (max-width: 968px) {
  .ba-intro-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ba-intro-section {
    padding: 50px 5%;
  }
  .ba-text-content h2 {
    text-align: center;
  }
  .ba-text-content h2::after {
    margin: 10px auto 0;
  }
}

/* BA introduction end  */
