/* --- Page Title Area Styles --- */
.page-title-area {
  /* Placeholder background color. Replace url() with your actual banner image */
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/college-image.jpg");
  background-size: cover;
  background-position: center;
  background-color: #333; /* Fallback color */
  padding: 50px 0;
  color: #ffffff;
}

.page-title-content h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}

/* Customizing Bootstrap Breadcrumb for Dark Background */
.page-title-content .breadcrumb-item a {
  color: #f8f9fa;
  font-weight: 600;
}

.page-title-content .breadcrumb-item.active {
  color: #ff6b6b; /* Accent color for current page */
}

.page-title-content .breadcrumb-item + .breadcrumb-item::before {
  color: #e9ecef; /* Separator color */
}

/* --- About Area Styles --- */
.about-area {
  position: relative;
  z-index: 1;
}

.about-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: #212529;
  position: relative;
  padding-bottom: 10px;
}

/* Optional: Add a small underline to headings */
.about-content h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background-color: #0d6efd; /* Bootstrap primary blue */
}

.about-area h3 {
  font-size: 22px;
  font-weight: 700;
  color: #212529;
  position: relative;
  padding-bottom: 10px;
}

/* Optional: Add a small underline to headings */
.about-area h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background-color: #0d6efd; /* Bootstrap primary blue */
}

/* --- Custom List Styles (Mission) --- */
.list-style-one li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}

/* Creating a custom checkmark or bullet */
.list-style-one li::before {
  content: "✔"; /* You can also use FontAwesome unicode here like '\f00c' */
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  color: #0d6efd; /* Primary Color */
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
}

.about-img {
  width: 100%;
  height: 100%;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Mobile spacing */
@media (max-width: 991px) {
  .about-img {
    min-height: 300px;
  }
}

/* --- Responsive Adjustments --- */
@media only screen and (max-width: 767px) {
  .page-title-area {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .page-title-content h2 {
    font-size: 30px;
  }

  .about-content h2 {
    font-size: 26px;
  }
}

/* Custom styling for the Tab Container */
.tab-container {
  background: #ffffff;
  border-radius: 8px;
}

/* Enhancing the Tabs */
.custom-tabs .nav-link {
  color: #495057;
  font-weight: 600;
  padding: 12px 20px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.custom-tabs .nav-link.active {
  background-color: #0d6efd !important; /* Bootstrap primary color */
  border-color: #dee2e6 #dee2e6 #fff !important;
  color: #fff;
}

/* Responsive Table Styling */
.table thead th {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

/* Custom Mobile Adjustments */
@media (max-width: 768px) {
  .custom-tabs .nav-link {
    padding: 10px;
    font-size: 0.9rem;
  }

  .title {
    font-size: 1.5rem;
    text-align: center;
  }

  /* Stack tabs vertically on very small screens if needed */
  @media (max-width: 480px) {
    .custom-tabs {
      flex-direction: column;
    }
    .custom-tabs .nav-item {
      width: 100%;
    }
    .custom-tabs .nav-link {
      border: 1px solid #dee2e6 !important;
      margin-bottom: 2px;
    }
  }
}

/* Style for the Google Forms Link */
.btn-outline-primary {
    border-radius: 50px; /* Rounded pill style */
    padding: 10px 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(13, 110, 253, 0.2);
}