/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #ffffff;
  color: #333;
}

header {
  background-color: #75aadb;
  /* Botswana Blue */
  padding: 20px;
  position: sticky;
  top: 0;
  z-index: 100;
}

header.shrink {
  padding: 5px 0;
}

/* Hide logo when shrunk */
.logo {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

header.shrink .logo {
  opacity: 0;
  transform: scale(0);
  pointer-events: none;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav .logo img {
  width: 70px;
  /* Adjust logo size */
}

nav .nav-links {
  display: flex;
  list-style-type: none;
}

nav .nav-links li {
  margin: 0 15px;
  position: relative;
}

nav .nav-links a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 700;
}

nav .nav-links .apply {
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
}

nav .dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  background-color: #75aadb;
  min-width: 150px;
}

nav .dropdown:hover .dropdown-content {
  display: block;
}

/* HAMBURGER BUTTON */

.menu-toggle {
  display: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}


/* MOBILE NAVIGATION */

@media (max-width: 768px) {

  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: block;
  }

  nav .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #75aadb;
    margin-top: 15px;
    padding: 20px 0;
  }

  nav .nav-links.active {
    display: flex;
  }

  nav .nav-links li {
    margin: 10px 0;
    text-align: center;
  }

  /* DROPDOWNS */

  nav .dropdown-content {
    position: static;
    display: none;
    background-color: #6a9bca;
    width: 100%;
    padding: 10px 0;
  }

  .dropdown:hover .dropdown-content {
    display: none;
  }

  .dropdown.active .dropdown-content {
    display: block;
  }

}

.hero {
  position: relative;
  height: 85vh;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 1;
  padding: 0 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

/* SLIDE SHOW */

.slideshow-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.mySlides {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

/* LARGE LAPTOPS */
@media (max-width: 1400px) {

  .hero {
    height: 75vh;
  }

}

/* TABLETS */
@media (max-width: 768px) {

    .hero-content {
    top: 55%;
  }

}

/* SMALL PHONES */
@media (max-width: 480px) {

  .hero {
    height: 73vh;
  }

}

/* video home page */

.video-quote-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 40px;
}

.quote {
  flex: 1;
  min-width: 280px;
  max-width: 500px;
  font-size: 1.2rem;
}

.video-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1em;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

.btn-explore-courses {
  background-color: #75aadb;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  font-size: 1.2rem;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-explore-courses:hover {
  background-color: #4f8bbf;
}

.about,
.programs,
.contact {
  padding: 50px;
  text-align: center;
}

.about h2,
.programs h2 {
  color: #75aadb;
}

.contact iframe {
  width: 100%;
  height: 300px;
  border: 0;
}

/* Executive Director's Remarks Section */
.executive-remarks {
  background-color: #f5f5f5;
  /* Soft gray background */
  padding: 40px 0;
  text-align: center;
}

.executive-remarks .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.remarks-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.remarks-image img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
}

.remarks-text h2 {
  font-size: 2rem;
  color: #000000;
  margin-bottom: 20px;
}

.ed-quote {
  font-style: italic;
  color: #75aadb;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.ed-message {
  font-size: 1rem;
  color: #333333;
  margin-bottom: 30px;
  line-height: 1.5;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-read-more {
  background-color: #75aadb;
  /* Botswana Blue */
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-read-more:hover {
  background-color: #4f8bbf;
  /* Darker blue on hover */
}

/* ABOUT PAGES */

.about-hub {
  /* background-image: url('images/DSC_0020.jpg'); */
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

.about-hub h1 {
  text-align: center;
  color: #000000;
  margin-bottom: 20px;
}

.sub-links {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.about-card {
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 10px;
  background-color: #f9f9f9;
}

.about-card h2 a {
  text-decoration: none;
  color: #75aadb;
}

.about-card h2 a:hover {
  text-decoration: underline;
}

.partnership_cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 40px 20px;
  /* background-color: #f9f9f9; */
}

.partner_card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  width: 160px;
  text-align: center;
  padding: 20px 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.partner_card:hover {
  transform: scale(1.05);
}

.partner_img {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
}

.partner_card h2 {
  font-size: 16px;
  color: #2c6772;
}

.partners {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

/* BPSC.HTML */

.bpsc-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

.section {
  margin-top: 20px;
  margin-bottom: 40px;
}

.section h1,
.section h2 {
  color: #000000;
  /* black text */
}

.section p,
.section ul {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

ul {
  list-style-type: disc;
  padding-left: 20px;
}

.director-remarks {
  background-color: #f9f9f9;
  border-left: 4px solid #75aadb;
  padding: 20px;
  border-radius: 8px;
}

.ed-remarks-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.ed-image {
  width: 150px;
  height: 150px;
  /* object-fit: cover; */
  border-radius: 10px;
  border: 2px solid #75aadb;
}

.ed-text {
  flex: 1;
  color: #333;
}

/* LEADERSHIP */

.leadership-section {
  padding: 50px 20px;
  text-align: center;
  background-color: #f5f5f5;
}

.leadership-section h1 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #000;
}

.leadership-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.leader-card {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.leader-card:hover {
  transform: translateY(-5px);
}

.leader-card img.leader-img {
  width: 250px;
  height: 250px;
  border-radius: 8px; /* Optional: soft corners, or set to 0 for sharp edges */
  /* object-fit: cover; */
  margin-bottom: 15px;
}

.leader-card h2 {
  color: #2c6772;
  font-size: 22px;
  margin-bottom: 10px;
}

.leader-card p {
  color: #555;
  font-size: 16px;
  line-height: 1.5;
}

.leader-card .bio {
  font-size: 14px;
  color: #777;
  margin-top: 10px;
}

/* courses.html */

.course-info {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

.course-info h2 {
  color: #000000;
  margin-bottom: 10px;
}

.course-info p {
  line-height: 1.6;
  color: #333;
}

.methodology {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

.methodology h2 {
  color: #000000;
  margin-bottom: 10px;
}

.methodology p {
  line-height: 1.6;
  color: #000000;
}

.courses {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

.info-diagram {
  /* max-width: px; */
  display: block;
  margin: 20px auto;
  /* border: 1px solid #ccc; */
  /* border-radius: 8px; */
}

.courses-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

.description {
  text-align: center;
}

.title h1 {
  text-align: center;
  color: #75aadb;
  font-size: 42px;
  margin-bottom: 40px;
  position: relative;
}

.title h1::after {
  content: "";
  height: 4px;
  width: 200px;
  background-color: #000;
  display: block;
  margin: 10px auto 0 auto;
}

.course-filters {
  text-align: center;
  padding-top: 40px;
  margin-bottom: 40px;
}

.filter-btn {
  margin: 5px;
  padding: 10px 15px;
  background-color: #d6ecf3;
  color: #000;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.filter-btn.active,
.filter-btn:hover {
  background-color: #005bac;
  color: white;
}

.courses-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.course-card {
  background-color: #f4f4f4;
  border-left: 6px solid #75aadb;
  padding: 20px;
  border-radius: 10px;
  width: 300px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.course-card h2 {
  color: #333;
  font-size: 22px;
  margin-bottom: 10px;
}

.course-card p {
  color: #555;
  margin-bottom: 20px;
  font-size: 16px;
}

.course-card .button {
  background-color: #005bac;
  color: #fff;
  padding: 8px 12px;
  text-decoration: none;
  border-radius: 5px;
}

.btn_courses {
  background-color: #75aadb;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  text-align: center;
  font-size: 1rem;
  border-radius: 5px;
  /* font-weight: bold; */
  transition: background-color 0.3s ease;
}

.btn_courses:hover {
  background-color: #3d60d5;
}

/* Course view card */
.card-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 50px;
}

.card {
  width: 325px;
  background-color: #fafafa;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  margin: 20px;
  display: flex; /* NEW */
  flex-direction: column; /* NEW */
  min-height: 450px; /* NEW - you can adjust this number */
}

.card:hover {
  background-color: #a9d0f4;
  transition: 0.4 ease;
}

.card img {
  width: 100%;
  height: 200px; /* NEW - force a consistent image height */
  object-fit: cover; /* NEW - prevents image stretching */
}

.card-content {
  padding: 16px;
  flex-grow: 1; /* NEW - allow content to fill the rest */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* NEW - balance title and text */
}

.card-content h3 {
  font-size: 28px;
  margin-bottom: 8px;
}

.card-content p {
  color: #767676;
  font-size: 15px;
  line-height: 1.3;
}

.btn {
  display: inline-block;
  text-align: center;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background-color: #75aadb;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #3749be;
}

/* course in detail */
.course-detail-section {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
  min-height: 100vh;
}

.course-detail-container {
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  padding: 3rem 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}

.course-detail-container h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #003366;
}

.course-detail-container img {
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
  border-radius: 8px;
}

.course-detail-container p {
  font-size: 1.1rem;
  margin: 1rem 0;
  line-height: 1.6;
}

.course-detail-container ul {
  list-style-type: disc;
  padding-left: 1.5rem;
}

.course-detail-container li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.btn_courses {
  display: inline-block;
  margin-top: 2rem;
  background-color: #75aadb;
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.btn_courses:hover {
  background-color: #0055a5;
}

/* download archives */
.archives-section {
  padding: 2em;
  background-color: #f9f9f9;
  text-align: center;
}

.archives-section h2 {
  font-size: 1.8em;
  margin-bottom: 1em;
  color: #003e73;
}

.archives-table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-collapse: collapse;
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.archives-table th,
.archives-table td {
  border: 1px solid #ddd;
  padding: 0.75em;
}

.archives-table th {
  background-color: #75aadb;
  color: white;
}

.archives-table td a {
  color: #75aadb;
  text-decoration: none;
  font-weight: bold;
}

.archives-table td a:hover {
  text-decoration: underline;
}

/* contact.html */

.contact-section {
  padding: 4rem 2rem;
  background-color: #f5f5f5;
  min-height: 100vh;
  font-family: "Poppins", sans-serif;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  background: #fff;
  padding: 3rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.contact-container h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #003366;
}

.contact-container p {
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.contact-info {
  flex: 1 1 40%;
}

.contact-form {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
}

.contact-form .btn {
  background-color: #75aadb;
  color: #fff;
  border: none;
  padding: 0.75rem;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form .btn:hover {
  background-color: #0055a5;
}

.map-container {
  margin-top: 1rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* map on contact */
.map-section {
  padding: 50px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.map-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}

.map-container {
  max-width: 1000px;
  margin: 0 auto;
}

.responsive-map {
  position: relative;
  overflow: hidden;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
}

.responsive-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

/* FOOTER */

.bpsc-footer {
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  padding: 15px 20px;
  text-align: center;
  font-size: 0.9rem;
  margin-top: 40px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.social-links a {
  color: rgb(0, 0, 0);
  margin: 0 10px;
  text-decoration: none;
  font-weight: 500;
}

.social-links a:hover {
  text-decoration: underline;
}

/* Additional Styles for Responsiveness */
@media (max-width: 768px) {
  nav .nav-links {
    flex-direction: column;
  }

  .program-grid {
    display: block;
  }
}

/* LOGIN PAGE */
.login-container {
  max-width: 400px;
  margin: 100px auto; /* center on page with some top margin */
  padding: 30px;
  background-color: #f9f9f9; /* light gray for contrast */
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.login-container h2 {
  color: #003366; /* dark blue for heading */
  margin-bottom: 20px;
  font-size: 2rem;
}

.login-container input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.login-container button {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  background-color: #75aadb; /* your Botswana blue */
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.login-container button:hover {
  background-color: #0055a5; /* darker on hover */
}

.login-container p a {
  color: #75aadb;
  font-size: 0.9rem;
  text-decoration: none;
}

.login-container p a:hover {
  text-decoration: underline;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.news-item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.news-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.news-item-content {
  padding: 15px;
}

.news-item h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.news-item h3 a {
  color: #000;
  text-decoration: none;
}

.news-item h3 a:hover {
  color: #75aadb;
  text-decoration: underline;
}

.news-item small {
  display: block;
  margin-bottom: 10px;
  color: #888;
}

.news-item p {
  margin: 0;
  font-size: 0.95rem;
}

.com-content-category-blog__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.news-item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.news-card-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.news-item-content {
  padding: 15px;
}

.news-item-content h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.news-item-content h3 a {
  color: #000;
  text-decoration: none;
}

.news-item-content h3 a:hover {
  text-decoration: underline;
  color: #75aadb;
}

.news-item-content small {
  display: block;
  margin-bottom: 10px;
  color: #888;
}

.news-item-content p {
  font-size: 0.95rem;
}

/* FAQ */
.faq-page {
  max-width: 900px;
  margin: 40px auto;
}

.faq-item {
  background: #fff;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.364);
}

.faq-question {
  margin: 0;
  font-size: 1.1rem;
  color: #75aadb;
}

.faq-answer {
  margin-top: 10px;
  color: #444;
  line-height: 1.6;
}

/* =========================
   UPDATES PAGE – BPSC STYLE
   ========================= */

.com-content-category-blog {
  max-width: 1100px;
  margin: 40px auto;
}

.training-update {
  background: #f8f8f8;
  padding: 20px;
  margin-bottom: 40px; /* ← THIS separates them */
  border-left: 5px solid #6ea8dc;
}

.training-title {
  margin-bottom: 15px;
  color: #6ea8dc;
}

.training-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.training-details li {
  padding: 8px 0;
  border-bottom: 1px solid #cfcfcf;
}

.training-details li:last-child {
  border-bottom: none;
}

/* ONLINE LEARNING PAGE */

.online-learning-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Background image */
.online-bg-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark overlay */
/* .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
} */

/* Content */
.online-learning-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
  color: white;
  padding: 20px;
}

.online-learning-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.online-learning-content p {
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

.online-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-online {
  background-color: #75aadb;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-online:hover {
  background-color: #4f8bbf;
  transform: translateY(-3px);
}

.apply-btn {
  background-color: white;
  color: #75aadb;
}

.apply-btn:hover {
  background-color: #f0f0f0;
}

/* Mobile */
@media (max-width: 768px) {

  .online-learning-content h1 {
    font-size: 2.5rem;
  }

  .online-learning-content p {
    font-size: 1.1rem;
  }

  .online-buttons {
    flex-direction: column;
    align-items: center;
  }

}


.hero_app{
    background:linear-gradient(135deg,#004080,#0066cc);
    color:white;
    text-align:center;
    padding:80px 20px;
}

.hero_app h1{
    font-size:3rem;
    margin-bottom:15px;
}

.hero_app p{
    font-size:1.2rem;
    margin-bottom:25px;
}

.btn{
    display:inline-block;
    padding:12px 25px;
    background:#75aadb;
    /* color:#004080; */
    text-decoration:none;
    border-radius:30px;
    font-weight:bold;
    transition:0.3s;
}

.btn:hover{
    transform:translateY(-2px);
}

.process{
    max-width:1200px;
    margin:auto;
    padding:60px 20px;
}

.process h2{
    text-align:center;
    margin-bottom:50px;
    font-size:2rem;
}

.steps{
    display:flex;
    flex-direction:column;
    align-items:center;
}

.step-card{
    background:white;
    width:100%;
    max-width:700px;
    padding:30px;
    border-radius:15px;
    box-shadow:0 4px 15px rgba(0,0,0,0.08);
    text-align:center;
}

.icon{
    font-size:3rem;
    margin-bottom:15px;
}

.step-card h3{
    color:#0066cc;
    margin-bottom:10px;
}

.step-card h4{
    margin-bottom:15px;
}

.arrow{
    font-size:2rem;
    color:#0066cc;
    margin:15px 0;
}

.info-section{
    max-width:1200px;
    margin:auto;
    padding:20px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
}

.info-card{
    background:white;
    padding:25px;
    border-radius:15px;
    box-shadow:0 4px 15px rgba(0,0,0,0.08);
}

.info-card h3{
    color:#0066cc;
    margin-bottom:15px;
}

.info-card ul{
    padding-left:20px;
}

.info-card li{
    margin-bottom:10px;
}

.notice{
    max-width:1000px;
    margin:40px auto;
    background:#fff4d6;
    border-left:5px solid #ffb700;
    padding:20px;
    border-radius:10px;
    text-align: center;
}

.support{
    text-align:center;
    padding:70px 20px;
}

.support h2{
    margin-bottom:15px;
}

.support p{
    margin-bottom:25px;
}

.contact-box {
    margin-top: 20px;
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    /* box-shadow: 0 4px 15px rgba(0,0,0,.08); */
}

.contact-box summary {
    cursor: pointer;
    font-weight: 600;
    color: #004080;
    list-style: none;
}

.contact-box summary::-webkit-details-marker {
    display: none;
}

.contact-box summary.btn {
    display: inline-block;
    padding: 12px 25px;
    background: white;
    color: #004080;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    list-style: none;
}

.contact-box summary::-webkit-details-marker {
    display: none;
}

@media(max-width:768px){

    .hero h1{
        font-size:2.2rem;
    }

    .step-card{
        padding:20px;
    }

}

.registration-notice {
    max-width: 800px;
    margin: 40px auto;
    padding: 35px;
    background: #ffffff;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-top: 5px solid #005baa;
}

.notice-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.registration-notice h2 {
    color: #005baa;
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: 600;
}

.registration-notice p {
    color: #444;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.registration-notice strong {
    color: #005baa;
}

@media (max-width: 768px) {
    .registration-notice {
        padding: 25px 20px;
        margin: 20px;
    }

    .registration-notice h2 {
        font-size: 1.6rem;
    }

    .registration-notice p {
        font-size: 1rem;
    }
}
