* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

/* NAVBAR */
.navbar {
  background: #9b1c2c;
  padding: 15px 0;
}

.nav-container {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* TOGGLE BUTTON */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 4px 0;
  display: block;
  transition: 0.3s;
}

.logo img {
  height: 50px;
}

.menu a {
  color: #fff;
  margin: 0 15px;
  text-decoration: none;
  font-size: 15px;
}

/* HERO */
.hero {
  position: relative;
  min-height: 90vh;
  background: url('image/PCU.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: auto;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
  top: 0;
  left: 0;
}

/* TEXT */
.hero-text {
  position: relative;
  color: #fff;
  max-width: 600px;
  z-index: 2;
}

.hero-text h1 {
  color: #d4aa03;
  font-size: 32px;
  margin-bottom: 10px;
  white-space: normal;
  font-weight: 500;
}

.hero-text h2 {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 600;
}

.hero-text p {
  font-size: 18px;
}

.form-box {
  width: 380px;
  background: #9b1c2c;
  padding: 14px;
  border-radius: 10px;
  color: #fff;
  z-index: 1;
}

/* TABS */
.form-header {
  display: flex;
  gap: 30px;
  margin-bottom: 15px;
}

.tab {
  cursor: pointer;
  position: relative;
  padding-bottom: 5px;
}

.tab.active::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background: #d4aa03;
  bottom: -5px;
  left: 0;
}

/* INPUT */
.input-box {
  display: flex;
  align-items: center;
  background: #eee;
  border-radius: 4px;
  padding: 6px 8px;
  margin-bottom: 10px;
  position: relative;
}

.input-box i {
  color: #c4002f;
  margin-right: 8px;
  font-size: 16px;
  height: 22px;
}

.input-box input,
.input-box select {
  border: none;
  outline: none;
  width: 100%;
  background: transparent;
  font-size: 14px;
}

/* CAPTCHA */
.captcha-box {
  background: #fff;
  color: #000;
  padding: 8px 12px;
  font-weight: bold;
  width: 150px;
}

.refresh {
  cursor: pointer;
  font-size: 18px;
}

/* BUTTON */
.apply-btn {
  width: 100%;
  background: #d4aa03;
  border: none;
  padding: 6px;
  color: #fff;
  font-weight: bold;
}

/* TEXT */
.bottom-text {
  text-align: center;
  font-size: 13px;
  margin-top: 10px;
}

.otp {
  text-align: right;
  font-size: 13px;
  margin: 5px 0;
}

@media (max-width: 768px) {

  /* NAVBAR */
  .nav-container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .menu a {
    margin: 5px 10px;
  }

  /* HERO STACK */
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 15px;
  }

  /* TEXT */
  .hero-text {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .hero-text h1 {
    font-size: 26px;
  }

  .hero-text h2 {
    font-size: 22px;
  }

  .hero-text p {
    font-size: 14px;
  }

  /* FORM */
  .form-box {
    width: 100%;
    max-width: 100%;
  }

  /* INPUT */
  .input-box {
    padding: 8px;
  }

  /* CAPTCHA ROW FIX */
  .captcha-row {
    flex-direction: column;
    gap: 8px;
  }

  .captcha-box {
    width: 100%;
    text-align: center;
  }

  /* BUTTON */
  .apply-btn {
    padding: 10px;
  }

}

@media (max-width: 768px) {

  .nav-container {
    flex-direction: row;
    justify-content: space-between;
  }

  /* SHOW TOGGLE */
  .menu-toggle {
    display: flex;
  }

  /* MENU LINKS */
  .menu a {
    display: block;
    padding: 12px;
    width: 100%;
    border-top: 1px solid rgba(255,255,255,0.2);
  }


  .menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #9b1c2c;

    display: flex;
    flex-direction: column;
    align-items: center;

    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
    z-index: 1000;
  }

  .menu.active {
    max-height: 400px;
  }

}





.about-section {
  padding: 80px 0;
  background: #fff;
}

/* LEFT */
.about-content .tag {
  color: #9b1c2c;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
}

.about-content h2 {
  font-size: 28px;
  font-weight: 500;
  margin: 10px 0;
}

.about-content h2 span {
  color: #9b1c2c;
}

/* LINE */
.line {
  width: 60px;          /* horizontal length */
  height: 4px;          /* thickness */
  background: #d4aa03;
  margin: 10px 0 20px;
}
/* TEXT */
.desc {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.desc.light {
  color: #999;
}

/* BUTTON + PLAY */
.actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.contact-btn {
  background: #d4aa03;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 10px;
}

/* RIGHT IMAGE */
.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
}

.vertical-tag {
  position: absolute;
  top: 50%;
  left: 0;                      /* move inside image area */
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left top;
  background: #d4aa03;
  color: #fff;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  border-radius: 4px;
}

@media (max-width: 768px) {

  .about-section {
    padding: 30px 15px;
  }

  /* STACK LAYOUT */
  .about-section .row {
    flex-direction: column;
    text-align: center;
  }

  /* TEXT */
  .about-content {
    margin-bottom: 25px;
  }

  .about-content h2 {
    font-size: 24px;
  }

  .line {
    margin: 10px auto 20px; /* center line */
  }

  .desc {
    font-size: 13px;
  }

  /* BUTTON CENTER */
  .actions {
    justify-content: center;
  }

  /* IMAGE */
  .about-image img {
    border-radius: 10px;
  }

  .vertical-tag {
    position: static;        /* remove absolute positioning */
    transform: none;         /* remove rotate */
    
    display: inline-block;
    margin-top: 15px;

    background: #d4aa03;
    padding: 10px 20px;
    border-radius: 8px;

    font-size: 14px;
  }

}






.steps-section {
  padding: 30px 0;
  text-align: center;
}

/* .steps-title {
  font-size: 32px;
  color: #9b1c2c;
  margin-bottom: 50px;
} */

.steps-title {
  font-size: 28px;
  color: #000;
  text-align: center;
  position: relative;
  display: inline-block;
}


.steps-line1 {
  width: 60px;
  height: 4px;
  background: #d4aa03;
  margin: 10px auto 40px;
}

/* LINE */
.steps-line {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.steps-line::before {
  content: '';
  position: absolute;
  top: 35%;
  left: 10%;
  width: 80%;
  height: 2px;
  background: #d4aa03;
  z-index: 0;
}

/* STEP */
.step-item {
  width: 18%;
  position: relative;
  z-index: 2;
}

/* CIRCLE */
.circle {
  width: 90px;
  height: 90px;
  background: #9b1c2c;
  border-radius: 50%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 5px solid #fff;
  box-shadow: 0 0 0 3px #d4aa03;
}

/* ICON */
.circle i {
  color: #fff;
  font-size: 28px;
}

/* NUMBER */
.circle span {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #d4aa03;
  color: #fff;
  padding: 5px 8px;
  font-size: 12px;
  border-radius: 50%;
}

/* TEXT */
.step-item h5 {
  margin-top: 15px;
  font-size: 14px;
  font-weight: 600;
}

/* HOVER */
.step-item:hover .circle {
  transform: scale(1.1);
  transition: 0.3s;
}

@media (max-width: 768px) {

  /* REMOVE LINE */
  .steps-line::before {
    display: none;
  }

  /* GRID 2 COLUMN */
  .steps-line {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    justify-items: center;
  }

  /* STEP ITEM */
  .step-item {
    width: 100%;
    max-width: 160px;
    text-align: center;
  }

  /* CIRCLE */
  .circle {
    width: 65px;
    height: 65px;
  }

  .circle i {
    font-size: 18px;
  }

  /* TITLE */
  .steps-title {
    font-size: 24px;
  }

  .step-item:last-child {
    grid-column: 1 / -1;   /* take full row */
    justify-self: center;  /* center horizontally */
  }

}





/* SECTION */
.blog-section {
  padding: 50px 0;
  background: #fff;
}

/* TITLE */
.blog-title {
  text-align: center;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 50px;
}

/* GRID */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* CARD */
.blog-card {
  background: #fff;
  transition: 0.3s;
}

/* IMAGE */
.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
  border-radius: 10px;
}

/* CONTENT */
.blog-content {
  padding: 0 5px;
  text-align: left;
}

/* META */
.blog-content .meta {
  display: block;
  font-size: 11px;
  color: #999;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

/* TITLE */
.blog-content h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-list {
  padding-left: 18px;   /* small indent */
  margin: 0;
}

.blog-list li {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 5px;
}

/* OPTIONAL: custom bullet style */
.blog-list li::marker {
  color: #9b1c2c; /* your theme color */
}

/* HOVER */
.blog-card:hover {
  transform: translateY(-6px);
}

@media (max-width: 992px) {

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .blog-title {
    font-size: 28px;
  }

}






/* LEFT SIDE */
.instruction-content {
  background: #941c34;
  color: #fff;
  padding: 80px 60px;
  height: 100%;
}

.instruction-section .row {
  display: flex;
  align-items: stretch;
}

.instruction-content,
.instruction-image {
  height: 100%;
}

.instruction-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.instruction-content {
  display: flex;
  flex-direction: column;
  justify-content: center;  /* vertically center content */
  padding: 60px;
}

/* TAG */
.instruction-content .tag {
  color: #d4aa03;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 600;
}

/* TITLE */
.instruction-content h2 {
  font-size: 32px;
  margin: 15px 0 25px;
  font-weight: 700;
}

/* LIST */
.instruction-list {
  list-style: none;
  padding: 0;
}

.instruction-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.6;
}

.instruction-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #d4aa03;  
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}

/* RIGHT IMAGE */
.instruction-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {

  /* STACK COLUMN */
  .instruction-section .row {
    flex-direction: column;
  }

  /* CONTENT */
  .instruction-content {
    padding: 30px 20px;
    text-align: center;
  }

  /* TITLE */
  .instruction-content h2 {
    font-size: 24px;
    margin: 10px 0 20px;
  }

  /* LIST */
  .instruction-list li {
    font-size: 13px;
    text-align: left;   /* better readability */
  }

  /* IMAGE FIX */
  .instruction-image {
    height: auto;
  }

  .instruction-image img {
    height: auto;
    max-height: 350px;
  }

}





.testimonial-section {
  padding: 20px 0;
  background: #fff;
  text-align: center;
}

.section-title {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 20px;
}

/* NAME */
.testimonial-card h5 {
  font-size: 16px;
  margin: 5px 0;
}

/* ROLE */
.testimonial-card span {
  display: block;
  font-size: 13px;
  color: #777;
  margin-bottom: 10px;
}

/* HOVER */
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* WRAPPER */
.testi-wrapper {
  display: flex;
  gap: 30px;
  justify-content: space-between;

  align-items: stretch;   /* important for equal height */
}

/* EXACT 5 COLUMNS */
.testimonial-card {
  width: 100%;
  background: #fff;
  padding: 25px 15px;
  border-radius: 12px;
  text-align: center;
  transition: 0.3s;

  flex-direction: column;
}

/* BIGGER IMAGE */
.testimonial-card img {
  width: 100%;
  height: 220px;          /* increased */
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* LOCK TOP SECTION */
.card-top {
  flex-shrink: 0;         /* prevents shifting */
  text-align: center;
}

/* IMAGE */
.card-top img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

/* NAME */
.card-top h5 {
  margin: 8px 0 3px;
  font-size: 17px;
  font-weight: 600;
}

/* STREAM */
.card-top span {
  display: block;
  font-size: 13px;
  color: #777;
  margin-bottom: 12px;
}

.testimonial-card p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 768px) {

  .testi-wrapper {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;

    display: flex;
    gap: 15px;
    padding: 10px;
  }

  .testimonial-card {
    min-width: 85%;   /* 1 card visible */
    flex: 0 0 auto;

    scroll-snap-align: center;
  }

  /* Hide scrollbar */
  .testi-wrapper::-webkit-scrollbar {
    display: none;
  }

}




/* FLEX CONTAINER */
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.site-footer {
  background: #941c34;
  padding: 15px 20px;
  color: #fff;
  position: relative; /* important */
}

/* CENTER TEXT */
.footer-text {
  text-align: center;
  margin: 0;
  font-size: 14px;
}

/* ICONS RIGHT */
.social-icons {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 10px;
}

/* ICON STYLE */
.social-icons a {
  width: 35px;
  height: 35px;
  background: #d39c2f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #fff;
  color: #9b1c2c;
}

@media (max-width: 768px) {

  /* STACK EVERYTHING */
  .footer-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  /* REMOVE ABSOLUTE POSITION */
  .social-icons {
    position: static;
    transform: none;
    justify-content: center;
  }

  /* TEXT CENTER */
  .footer-text {
    order: 1;
  }

  /* ICONS BELOW TEXT */
  .social-icons {
    order: 2;
  }

}


