* {
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
}

:root {
  --primary-color: #932835;
  --secondary-color: #eae0d5;
  --third-color: #B2505A;
  --text-color: #0a0908;
  --white-color: #fffffe;
  --menu-color: #e1ddd9;
  --navbar-height: 75px;
}


/* CSS Tampilan Umum */

/* Judul */
h2 {
  text-align: center;
  color: var(--primary-color);
  font-size: 2.2em;
  font-weight: 700;
  margin-top: 50PX;
}

h3 {
  text-align: center;
  color: var(--primary-color);
  font-size: 2.2em;
  font-weight: 700;
}

h5{
  text-align: left;
  color: var(--white-color);
  font-size: 1.5em;
  font-weight: 500;
  margin-bottom: 30px;
}

.subtitle {
  text-align: left;
  color: var(--primary-color);
  font-size: 2.2em;
  font-weight: 700; /* Sudah cukup untuk bold */
}

/* Navbar Section */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  padding: 15px 0;
  background-color: var(--primary-color);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.brand-text {
  color: var(--menu-color);
  margin-left: 10px; 
  font-weight: 600; 
}

.navbar-toggler {
  color: var(--menu-color) !important; 
}

.navbar-toggler-icon {
  background-color: var(--menu-color) !important;
}

.navbar-nav .nav-link {
  color: var(--menu-color) !important; 
}

.navbar-nav .nav-link:hover {
  color: #ffffff !important; 
}

.navbar-nav .nav-link:focus {
  outline: none;
  box-shadow: none;
}

.dropdown-item:focus,
.dropdown-item:active {
    background-color: transparent !important;
    color: inherit !important;
    outline: none !important;
    box-shadow: none !important;
}

.carousel-inner {
  z-index: 1;
}

#carouselExampleIndicators {
  margin-top: var(--navbar-height);
}

.carousel-caption {
  color: var(--white-color);
  background-color: rgba(0, 0, 0, 0.4);
  padding: 1rem;
  border-radius: 10px;
}
/* End Of Navbar Section */

/* Peminat Section */
#stats-section {
  padding: 4rem 0;
  background-color: var(--secondary-color);
}

#stats-section h2 {
  font-weight: 700;
  color: var(--primary-color);
}

#stats-section .counter {
  font-size: 3rem;
  font-weight: 700;
  transition: all 0.5s ease-in-out;
  color: #000;
}

#stats-section p.lead {
  font-size: 1.125rem;
  color: #555;
}

.custom-filter {
  background: linear-gradient(135deg, #001f3f, #001133);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 0.5rem 1.2rem;
  font-weight: 500;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.custom-filter:hover {
  background: linear-gradient(135deg, #00102b, #001a33);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.custom-filter:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(0, 31, 63, 0.4);
}

.custom-filter option {
  color: #fff;
  background-color: #001133;
}

#stats-section .col-md-4:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: 0.3s;
}

@media (max-width: 576px) {
  .custom-filter {
    width: 80% !important;
  }
}
/* End of Peminat */



/* Index - Tentang Program Studi */
.about-section {
  padding: 15px 15px 50px;
  background-color: var(--secondary-color);
  color: var(--text-color);
}

.about-section .container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.about-section .text-content {
  flex: 1 1 50%;
}

.about-section .text-content > * {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
  animation-fill-mode: both;
}

.about-section .text-content h6 { animation-delay: 0.2s; }
.about-section .text-content h1 { animation-delay: 0.4s; }
.about-section .text-content p:nth-of-type(1) { animation-delay: 0.6s; }
.about-section .text-content p:nth-of-type(2) { animation-delay: 0.8s; }

.about-section .subtitle,
.about-section .highlight {
  color: #932835;
}

.about-section h1 {
  font-size: 20px;
  margin-bottom: 20px;
}

.about-section h6 {
  font-size: 30px;
  margin-bottom: 20px;
}

.about-section p {
  line-height: 1.6;
  font-size: 16px;
}

.about-section .image-gallery {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1.2s ease forwards;
  animation-delay: 1s;
}

.about-section .image-row {
  display: flex;
  gap: 15px;
}

.about-section .image-row img {
  width: 50%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-section .image-row img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .about-section .container {
    flex-direction: column;
  }

  .about-section .image-row {
    flex-direction: column;
  }

  .about-section .image-row img {
    width: 100%;
    aspect-ratio: 5 / 4;
    object-fit: cover;
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* End of about */



/* Video Program Studi */
.video-section .container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.video-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  text-align: center;
  width: 100%;           
  display: block;        
}

.video-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}
/* End of Video Program Studi */



/* Menu Program Studi */
#program-studi-menu {
  background-color: var(--secondary-color);
  padding: 10px;
}

#program-studi-menu h2 {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 40px;
}

.hover-card {
  border-radius: 20px;
  border: none;
  background-color: #e6f3ff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.hover-card i {
  font-size: 2.8rem;
  color: #0d6efd;
  transition: transform 0.3s ease;
}

.hover-card:hover i {
  transform: scale(1.2) rotate(5deg);
}

.hover-card .card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.hover-card .card-text {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
}

.hover-card .btn {
  border-radius: 25px;
  padding: 8px 18px;
  transition: all 0.3s ease;
  width: 100%;
}

.hover-card .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}


/* Mitra Kami */
.mitra-section {
  background: #eae0d5;
  padding: 50px 20px;
  text-align: center;
}

.mitra-section h2 {
  font-size: 2.5rem;
  color: #8b1f2f;
}

.kategori-mitra {
  margin-bottom: 60px;
}

.kategori-title {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 25px;
}

.slider-container {
  overflow: hidden;
  width: 90%;
  margin: 0 auto;
  position: relative;
}

.slider-track {
  display: flex;
  width: max-content;
  animation: scroll 30s linear infinite;
}

.slider-container.sekolah .slider-track {
  animation-duration: 50s;
}

.mitra-slide {
  flex: 0 0 auto;
  width: 100px;
  margin: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mitra-slide img {
  width: 80%;
  height: auto;
  filter: grayscale(40%);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.mitra-slide img:hover {
  transform: scale(1.1);
  filter: grayscale(0%);
}

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

.grid-mitra {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}


.grid-mitra div {
  color: var(--primary-color);
  font-size: 1.2rem;
  text-align: center;
  max-width: 500px;
  padding: 10px;
  line-height: 1;
}


.grid-mitra div:hover {
  transform: translateY(-5px);
}


/* Footer*/
.footer-footer {
  background-color: #0d1440;
  color: white;
  padding: 40px 20px;
}

.container-footer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-section h3 {
  font-weight: bold;
  margin-bottom: 15px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.logo-contact .logo {
  max-width: 180px;
  margin-bottom: 10px;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.6;
}

.map iframe {
  border-radius: 10px;
  width: 100%;
}

.logo-contact .logo {
  width: 80px;    
  height: auto; 
  margin-bottom: 15px;
}
/*End Of Footer*/


/*Fasilitas*/
.judul-merah {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.5px;
}

.card-title {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: left;
  color: var(--text-color);
  margin-bottom: 0.8rem;
  letter-spacing: 0.5px;
}


.building-card {
  transition: transform 0.3s ease;
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.building-card:hover {
  transform: translateY(-10px);
}

.building-image {
  overflow: hidden;
  height: 250px;
}

.building-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stats-number {
  font-size: 3rem;
  font-weight: bold;
  color: #0d6efd;
}

.room-badge {
  background: #e7f1ff;
  color: #0d6efd;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  margin: 0.2rem;
}

.facility-icon {
  width: 40px;
  height: 40px;
  background: #e7f1ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: #0d6efd;
}
/*End of Fasilitas*/

/*Prestasi*/
.section-title {
  margin-top: 100px;
}

.prestasi-section {
  margin-bottom: 80px;
}

.prestasi-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.prestasi-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  border-bottom: 1px solid #ddd;
}

.card-body {
  padding: 15px;
  flex-grow: 1;
}

.card-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.card-text {
  font-size: 14px;
  color: #555;
}
/* End Of Prestasi */


/* SECTION BERITA */

.berita-section {
  margin-bottom: 80px;
}

.berita-title-section {
  text-align: center;
  margin-bottom: 40px;
}

.berita-title-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color, #b30030);
  margin-bottom: 10px;
  margin-top: 100px;
}

.berita-title-section p.berita-subtitle {
  font-size: 1rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.news-card {
  height: 100%;
  background: #fff;
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.news-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.1);
}

.news-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--primary-color, #b30030);
  color: var(--white-color, #fff);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.card-body {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-meta {
  font-size: 0.9rem;
  color: var(--gray-color, #6c757d);
  margin-bottom: 15px;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
  min-height: 72px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-text {
  color: #333;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.btn-berita {
  background-color: var(--primary-color, #b30030);
  color: var(--white-color, #fff) !important;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  border: none;
  display: inline-block;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.btn-berita:hover,
.btn-berita:focus,
.btn-berita:active {
  background-color: var(--secondary-color, #800020);
  color: var(--white-color, #fff) !important;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* UKM Section */
.ukm-section {
  padding: 60px 20px;
  text-align: center;
  border-bottom: 2px solid var(--primary-color);
}

.container-ukm {
  max-width: 1000px;
  margin: auto;
}

.main-title {
  color: var(--primary-color);
  font-size: 32px;
  font-weight: bold;
  margin-top: 60px;
  margin-bottom: 40px;
}

.sub-title {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 16px;
  margin-bottom: 10px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.sub-title::before,
.sub-title::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background-color: var(--primary-color);
  margin: 0 10px;
  vertical-align: middle;
}

/* Himpunan Section */
.himpunan-section {
  padding: 60px 20px;
  background: #FFFFFF;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container-himpunan {
  max-width: 1200px;
  margin: auto;
}

.row-himpunan {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.image-himpunan {
  flex: 1 1 45%;
}

.image-himpunan img {
  margin-top: 50px;
  width: 95%;
  border-radius: 8px;
  object-fit: cover;
}

.konten-himpunan {
  flex: 1 1 50%;
}

.konten-himpunan h2 {
  font-size: 30px;
  color: var(--primary-color);
  font-weight: bold;
  margin-bottom: 20px;
}

.konten-himpunan p,
.konten-himpunan li {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  text-align: justify;
  margin-bottom: 15px;
}

.konten-himpunan li {
  margin-left: 20px;
}

/* Tombol Lihat */
.btn-Lihat {
  display: inline-block;
  background-color: var(--primary-color);
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.btn-Lihat i {
  margin-right: 8px;
}

.btn-Lihat:hover {
  background-color: var(--secondary-color);
}

/* UKM Cards */
#ukm-section {
  margin-bottom: 80px;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 1rem;
  color: var(--primary-color);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
}

.ukm-card {
  border: none;
  border-radius: 15px;
  transition: all 0.3s ease;
  background-color: var(--white-color);
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.ukm-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(198, 172, 143, 0.2);
}

.ukm-icon {
  background: var(--secondary-color);
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.ukm-icon img {
  width: 60px;
  height: auto;
}

.card-body {
  text-align: center;
  padding: 2rem;
}

.card-title {
  color: var(--primary-color);
}

.card-text {
  color: var(--text-color);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white-color);
}

/* End of ukm */



/* Agenda */
.agenda-main {
  padding: 60px 20px;
  text-align: center;
}

.agenda-title {
  font-size: 24px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 40px;
  color: #7a1e28;
}

.agenda-wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 800px;
  margin: 0 auto;
}

.agenda-card {
  background-color: #e8d8d8;
  border-radius: 8px;
  padding: 25px 30px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.agenda-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.agenda-card h3 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #7a1e28;
  text-align: left;
}

/* Tombol berbentuk anchor */
.btn-agenda {
  background-color: #7a1e28;
  color: white;
  text-decoration: none;
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 20px;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn-agenda:hover {
  background-color: #5c121c;
}

@media (max-width: 600px) {
  .agenda-card {
    padding: 20px;
  }

  .agenda-card h3 {
    font-size: 16px;
  }

  .btn-agenda {
    font-size: 13px;
    padding: 7px 14px;
  }
}


.agenda-page {
  font-family: 'Poppins', sans-serif;
  background-color: #f9f9f9;
  padding: 40px 20px;
}

.agenda-page .agenda-title {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
  color: #333;
}

.agenda-page #calendar {
  max-width: 900px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.agenda-page .admin-controls {
  text-align: center;
  margin-bottom: 20px;
}

body {
  font-family: 'Poppins', sans-serif;
}

.agenda-date {
  min-width: 100px;
}

.agenda-item {
  transition: transform 0.2s;
}

.agenda-item:hover {
  transform: scale(1.01);
}

.filter-button.active {
  background-color: #0d6efd !important;
  color: white !important;
}

.status-upcoming {
  background-color: #e8f4ff;
}

.status-ongoing {
  background-color: #e8fff0;
}

.status-completed {
  background-color: #f8f9fa;
}

.filter-button.active {
  background-color: #0d6efd !important;
  color: white !important;
}

.agenda-item {
  transition: all 0.2s ease;
}
.agenda-item:hover {
  transform: scale(1.01);
}

/* End of Agenda Program Studi*/

/* Galeri Section*/
h2.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #000080;
}

.gallery-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.gallery-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-body {
  text-align: center;
  padding: 15px;
}

.card-body h6 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.card-body small {
  font-size: 14px;
  color: #6c757d;
}

@media (max-width: 768px) {
  h2.section-title {
    font-size: 28px;
  }

  .gallery-card img {
    height: 160px;
  }
}

.upload-foto-page {
  font-family: 'Poppins', sans-serif;
  background-color: #f8f9fa;
  padding-top: 120px; /* jarak dari navbar */
  padding-bottom: 40px;
}

.upload-foto-container {
  max-width: 600px;
  margin: auto;
  padding: 80px;
}

.upload-foto-page h3 {
  font-size: 26px;
  font-weight: 700;
  color: #0d6efd;
}

.upload-foto-page .form-label {
  font-size: 15px;
  color: #333;
}

.upload-foto-page .form-control {
  border-radius: 8px;
  border: 1px solid #ced4da;
  padding: 10px;
}

.upload-foto-page .btn-primary {
  background-color: #0d6efd;
  border: none;
  font-weight: 600;
  padding: 12px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.upload-foto-page .btn-primary:hover {
  background-color: #094ec1;
}
/* End of Galeri Section*/



/* About US */
#visi-misi {
  background-color: var(--secondary-color);
}

#visi-misi h2 {
  font-weight: 700;
  color: var(--primary-color);
}

#visi-misi p {
  font-size: 15px;
  line-height: 1.7;
}

#visi-misi img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.judul-misi {
  margin-top: 40px;
}

#visi-misi .col-md-3 p {
  font-size: 15px;
  line-height: 1.7;
  text-align: justify;
  padding-left: 12px;
  padding-right: 12px;
}


/* Informasi Akademik */
.kehidupan-kampus {
  text-align: center;
  padding: 50px 20px;
  max-width: 1200px;
  margin: auto;
}

.judul {
  font-size: 36px;
  color: #990000;
  margin-bottom: 20px;
  font-weight: bold;
}

.deskripsi {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.konten-kampus {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.kotak {
  flex: 0 1 22%;
  max-width: 22%;
  background-color: #f9f9f9;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.kotak:hover {
  transform: scale(1.03);
}

.kotak img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.kotak h2 {
  font-size: 20px;
  color: #990000;
  margin-bottom: 10px;
}

.kotak p {
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .kotak {
    flex: 0 1 45%;
    max-width: 45%;
  }
}

@media (max-width: 576px) {
  .kotak {
    flex: 0 1 100%;
    max-width: 100%;
  }
}

ul {
  list-style-type: disc;
  padding-left: 20px;
  font-size: 16px;
  line-height: 1.6;
}

.list-profil {
  text-align: left;
  padding-left: 20px;
  margin: 0;
}

.list-profil li {
  margin-bottom: 8px;
  line-height: 1.5;
}


/* Kurikulum Section */
.kurikulum-section {
  padding: 60px 20px;
  background-color: var(--secondary-color);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container-kurikulum {
  max-width: 1200px;
  margin: auto;
}

.row-kurikulum {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.image-kurikulum {
  flex: 1 1 45%;
}

.image-kurikulum img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.konten-kurikulum {
  flex: 1 1 50%;
}

.konten-kurikulum h2 {
  font-size: 33px;
  color: var(--primary-color);
  font-weight: bold;
  margin-bottom: 20px;
  margin-top: 10px;
}

.konten-kurikulum p {
  font-size: 16px;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 25px;
  color: #333;
}


/* Fasilitas Unggulan */
.ps-features-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.feature-item {
  background-color: #fff;
  border-radius: 12px;
  padding: 30px 25px;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  font-size: 40px;
  color: #b71c1c;
  margin-bottom: 20px;
}

.feature-item h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.feature-item p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.feature-item ul {
  list-style: none;
  padding-left: 0;
  font-size: 14px;
  color: #444;
}

.feature-item ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.feature-item ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #b71c1c;
  font-size: 14px;
}
/* End Of About US */


/* Contact Us */
.apd-contact-carousel video {
  object-fit: cover;
}

.apd-contact-form .apd-form-section {
  max-width: 700px;
  margin: 0 auto;
  background-color: #eae0d5;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.apd-contact-form .apd-form-title {
  font-weight: 600;
  color: #333;
}

.apd-contact-form .apd-input,
.apd-contact-form .apd-textarea {
  border-radius: 6px;
}

.apd-submit-btn {
  font-weight: 600;
  padding: 10px 30px;
  border-radius: 8px;
}

.apd-wa-buttons .btn {
  font-weight: 500;
}

.apd-jam-kerja .card {
  background-color: #eae0d5;
}

.apd-faq .apd-faq-card {
  background-color: #eae0d5;
  border: none;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.apd-separator {
  border-top: 3px solid var(--primary-color);
}
/* End Of Contact Us */


/* Kalender Akademik */
.pdf-container {
  height: 80vh;
  min-height: 500px;
}

.pdf-viewer {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
}


/* Agenda Mahasiswa */

.agenda-card h3.mb-1 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #932835;
  letter-spacing: 0.5px;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.agenda-time-location {
  font-size: 0.95rem;
  color: #6c757d;
}

.agenda-time-location i {
  margin-right: 6px;
  color: #932835;
}

.agenda-card small,
.agenda-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.btn-outline-primary {
  border-color: #932835;
  color: #932835;
}

.btn-outline-primary:hover {
  background-color: #932835;
  color: #fff;
}

/* Login */
.login {
  background-image: url("../images/inaki-del-olmo-NIJuEQw0RKg-unsplash.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  background-position: center;
  color: var(--text-color);
}

/* Reset Password */
.password {
  background-color: #f5ebe0;
  min-height: 100vh;
  color: var(--text-color);
}

/* Register */
.register {
  height: 100vh;
  background-image: url("../images/debby-hudson-asviIGR3CPE-unsplash.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: var(--white-color);
}


