html::-webkit-scrollbar {
  width: 10px;
}

html::-webkit-scrollbar-track {
  background: #111;
}

html::-webkit-scrollbar-thumb {
  background: var(--primary-bg-color);
  border-radius: 10px;
  height: 10px;
}

main {
  width: 100%;
}

/* Full-screen Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  height: 90vh; /* Full screen */
  background: url('<%= request.getContextPath() %>/Assets/Images/bg2.jpg') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

/* Dark Overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark shade */
  z-index: 1;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  animation: fadeUp 1.5s ease-in-out;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 20px;
  animation: fadeIn 2s ease-in-out;
}

.hero-tagline {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 30px;
  animation: fadeIn 2.5s ease-in-out;
}

/* Buttons */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.hero-buttons .btn {
  padding: 12px 25px;
  font-size: 18px;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.hero-buttons .primary-btn {
  background-color: var(--primary-bg-color, #ff5722);
  color: #fff;
}

.hero-buttons .primary-btn:hover {
  background-color: #fff;
  color: #000;
}

.secondary-btn {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.secondary-btn:hover {
  background-color: #fff;
  color: #000;
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}


.heading {
  background: var(--secondary-bg-color);
  margin: 2rem 0;
  padding: 1rem;
}

.second-section .heading {
    margin-top: 0 !important;
    margin-bottom: 1rem;
}

.heading h2 {
  font-size: var(--font-subheader-size);
  text-align: center;
  color: var(--text-secondary-color);
  text-transform: uppercase;
  font-weight: bolder;
}

.sub-content {
  width: 80vw;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 1rem 0;
}

.sub-content .se-co-te {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  margin: 10px;
  text-align: justify;
}

.se-co-te :first-child {
  color: var(--primary-bg-color);
  text-decoration: none;
}

.se-co-te .read-more-btn {
  width: 15vw;
}

.pr-image img {
  width: 30vw;
  object-fit: contain;
  overflow: hidden;
  border-radius: 15px;
}

.report-content, .press-content {
  display: block;
  width: 90vw;
  margin: auto;
}

.report, .press {
  max-width: 90vw;
  background-color: var(--secondary-bg-color);
  display: flex;
  margin-bottom: 2rem;
  border-radius: 10px;
  position: relative;
}

.report .date-month, .press .date-month {
  border-right: 5px solid rgb(242, 240, 240);
  border-radius: 10px;
  color: var(--text-secondary-color);
  font-weight: bolder;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  line-height: 60px;
  padding: 1rem 2rem;
}

.report .main-info, .press .main-info {
  width: 100%;
  padding: 20px;
  line-height: var(--line-height);
}

.report .main-info h3 a, .press .main-info h3 a {
  color: var(--text-secondary-color);
  text-decoration: none;
}

.report .sub-info, .press .sub-info {
  color: var(--text-secondary-color);
}

.report .sub-info a, .press .sub-info a {
  margin-right: 20px;
  color: var(--text-secondary-color);
}

.report:hover{
  background-color: var(--primary-bg-color);
}

.container{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 1rem 3rem;
}

.box {
  min-height: 50vh;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--secondary-bg-color);
  border-bottom: 3px solid var(--secondary-bg-color);
}
.grid-container .box .image {
  overflow: hidden;
  width: 100%;
}

.grid-container .box .image img {
  height: 100%;
  width: 100%;
  object-fit: fill;
  transition: transform 0.5s ease;
}

.grid-container .box .image:hover img {
  transform: scale(1.1);
}

.grid-container .box .box-sub-content {
  padding: 1rem;
  text-align: justify;
}

.grid-container .box .box-sub-content h3 a{
    text-decoration: none;
    margin-top: 1rem;
}

.grid-container .box .box-sub-content p{
    color: var(--text-secondary-color);
    margin-top: 1rem;
}

.grid-container .box .box-sub-content .name-content {
  display: flex;
  justify-content: space-between;
}

.grid-container .box .box-sub-content .name-content :first-child {
  text-decoration: underline;
}

.grid-container .box .box-sub-content span {
  margin-bottom: 10px;
  font-size: 16px;
}

.grid-container .box .box-sub-content span {
  color: var(--text-secondary-color);
  font-weight: 500;
}

.grid-container .box .box-sub-content p a {
  color: var(--text-secondary-color);
  font-size: 16px;
  text-decoration: none;
}

.slider-container {
  width: 80vw;
  overflow: hidden;
  position: relative;
  margin: auto;
  padding: 2rem 0;
}

.slider-partner h3 {
  width: 100%;
  font-size: var(--font-subheader-size);
  background-color: var(--primary-bg-color);
  text-align: center;
  margin-top: 15px;
  color: var(--text-secondary-color);
}

.slider-partner {
  width: 100%;
  min-height: 18vh;
}

.slider-wrapper {
  display: flex;
  height: 100%;
  position: absolute;
  align-items: center;
  top: 0;
  animation: slide 40s infinite linear;
  padding: 2rem 0;
}

.slider-item,
.slider-item img {
  width: 8vw;
  height: 8vh;
  margin-right: 5vw;
}

@keyframes slide {
  0% {
    left: 0%;
  }
  100% {
    left: -475%;
  }
}

@media screen and (max-width: 768px) {
  .sub-content {
    flex-direction: column;
  }

  .pr-image img {
    width: 80vw;
  }

  .se-co-te .read-more-btn {
    width: 25vw;
    font-size: 12px;
  }

  .report {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .report .date-month {
    width: 100%;
    border-right: none;
    border-bottom: 5px solid rgb(242, 240, 240);
  }

  .report .main-info {
    text-align: center;
  }

  .report .main-info p {
    text-align: justify;
    margin-top: 5px;
  }

  .grid-container {
    grid-template-columns: repeat(1, 1fr);
  }
  .prev,
  .next {
    position: relative;
  }

  .prev-next {
    width: 100px;
    margin: auto;
    padding-top: 10px;
  }
}
