/* Internal Page Header */
.page-header {
  min-height: 350px;
  background: linear-gradient(to right, rgba(3, 4, 94, 0.9), rgba(2, 62, 138, 0.8)), url('../images/hero.png') no-repeat center center/cover;
  display: flex;
  align-items: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding-top: 80px; 
  text-align: center;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100%;
  height: 60px;
  background: var(--light);
  transform: skewY(-2deg);
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 10px;
  animation: fadeInUp 0.8s ease;
  width: 100%;
}

.breadcrumb {
  justify-content: center;
  background: transparent;
  padding: 0;
  animation: fadeInUp 1s ease;
}

.breadcrumb-item a {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

/* About Section */
.about-section {
  padding: 80px 0;
}

.about-img-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.about-experience {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--secondary);
  color: var(--white);
  padding: 20px 30px;
  border-top-right-radius: 30px;
}

.about-experience h3 {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0;
}

.about-experience p {
  margin: 0;
  font-weight: 600;
}

/* Details Pages */
.detail-content {
  padding: 80px 0;
}

.detail-img {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.sidebar-widget {
  background: var(--white);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  margin-bottom: 30px;
}

.sidebar-widget h4 {
  font-weight: 800;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--light);
  padding-bottom: 15px;
  color: var(--dark);
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li {
  margin-bottom: 10px;
}

.category-list a {
  color: #555;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  padding: 10px 15px;
  border-radius: 8px;
  transition: 0.3s;
  background: var(--light);
  font-weight: 600;
}

.category-list a:hover, .category-list a.active {
  background: var(--secondary);
  color: var(--white);
}

/* Contact Page */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 180, 216, 0.1);
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-right: 20px;
  flex-shrink: 0;
}

.contact-text h5 {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 5px;
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.form-control {
  padding: 15px 20px;
  border-radius: 10px;
  border: 1px solid #eee;
  background: var(--light);
  margin-bottom: 20px;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--secondary);
  background: var(--white);
}

/* Gallery Section */
.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: 0.5s;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 62, 138, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.4s;
}

.gallery-overlay i {
  color: var(--white);
  font-size: 2rem;
  transform: translateY(20px);
  transition: 0.4s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
  transform: translateY(0);
}

/* News Section */
.news-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
  transition: 0.3s;
  background: var(--white);
  height: 100%;
}

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

.news-img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.news-date {
  color: var(--secondary);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.news-card h5 {
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 15px;
}

.news-card p {
  color: #666;
  font-size: 0.95rem;
}
