/* Hero Section */
.hero {
  position: relative;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Video Container */
.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.video-container video {
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  transform: translate(-20%, -20%);
}

/* Gradient Overlay */
.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    var(--cobalt-blue-50),
    var(--crimson-80)
  );
  z-index: 0;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--arctic);
  max-width: 800px;
  padding: 0 20px;
}

.hero-heading {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: var(--arctic);
}

.hero-text {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--gainsboro);
}
.hero-list {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
  display: flex;
  margin-bottom: 30px;
  justify-content: space-between;
}
.hero-list li {
  gap: 33%;
  color: var(--aztec-gold);
}
.hero-list i {
  margin-right: 10px;
}

.hero-button {
  display: inline-block;
  padding: 12px 30px;
  font-size: 1rem;
  margin-top: 10px;
  font-weight: 500;
  color: var(--arctic);
  background-color: var(--cobalt-blue);
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.hero-button:hover {
  background-color: var(--ateneo-blue);
}

/* Content Section */
.content-section {
  padding: 80px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.row {
  display: flex;
  gap: 40px;
}

.col-40 {
  width: 40%;
}

.col-60 {
  width: 60%;
}

/* Image Wrapper */
.image-wrapper {
  width: 90%;
  margin-left: auto;
}

.content-image {
  width: 90%;
  height: auto;
  box-shadow: rgba(217, 24, 57, 0.3) -5px 5px,
    rgba(217, 24, 57, 0.15) -10px 10px, rgba(217, 24, 57, 0.05) -15px 15px;
}
/* Text Content */
.text-content {
  max-width: 90%;
}

.content-heading {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.content-heading span {
  font-size: 2.5rem;
  transform: translateY(-100px);
}
.content-text {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 20px;
}
.content-notice {
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--black);
  font-size: 15px;
}
.content-button {
  padding: 10px 15px;
  background-color: var(--crimson);
  color: var(--arctic);
  display: inline;
  font-size: 15px;
}

/* Service */

.service {
  background-color: var(--crimson);
  padding: 30px 20px;
}
.service-heading {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5rem;
  font-family: "Oswald", sans-serif;
  color: var(--arctic);
  position: relative;
}
.service-heading::after{
  content: '';
  background-color: var(--arctic);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -5px;
  height: 2px;
  width: 100px;
}
.service-text{
  color: var(--gainsboro);
  margin-bottom: 20px;
}

/* Benefits */
/* General Styles */
.benefits-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-heading {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  position: relative;
}

.section-heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--crimson);
  margin: 10px auto 0;
}

.benefits-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.benefits-text {
  flex: 1 1 50%;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.benefit-item i {
  color: var(--crimson);
  font-size: 1.5rem;
  margin-right: 15px;
  flex-shrink: 0;
  margin-top: 5px;
}

.benefit-item p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.benefit-item strong {
  color: #333;
}

.benefits-image {
  flex: 1 1 40%;
  text-align: center;
}

.benefits-image img {
  max-width: 100%;
  height: auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .benefits-content {
    flex-direction: column;
  }

  .benefits-text,
  .benefits-image {
    flex: 1 1 100%;
  }

  .benefits-image {
    order: -1; /* Image above text on smaller screens */
    margin-bottom: 30px;
  }

  .section-heading {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-heading {
    font-size: 2rem;
  }

  .hero-text {
    font-size: 1rem;
  }
  .hero-list {
    display: block;
  }
  .hero-list li {
    margin-top: 10px;
  }
  .hero-button {
    padding: 10px 20px;
  }
  .video-container video {
    transform: translate(-32%, -20%);
  }

  /* content section */
  .row {
    display: block;
  }

  .col-40 {
    width: 100%;
  }

  .col-60 {
    width: 100%;
  }
  .image-wrapper {
    display: none;
  }
}
