@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.kanit-thin {
  font-family: "Kanit", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.kanit-extralight {
  font-family: "Kanit", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.kanit-light {
  font-family: "Kanit", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.kanit-regular {
  font-family: "Kanit", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.kanit-medium {
  font-family: "Kanit", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.kanit-semibold {
  font-family: "Kanit", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.kanit-bold {
  font-family: "Kanit", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.kanit-extrabold {
  font-family: "Kanit", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.kanit-black {
  font-family: "Kanit", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.kanit-thin-italic {
  font-family: "Kanit", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.kanit-extralight-italic {
  font-family: "Kanit", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.kanit-light-italic {
  font-family: "Kanit", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.kanit-regular-italic {
  font-family: "Kanit", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.kanit-medium-italic {
  font-family: "Kanit", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.kanit-semibold-italic {
  font-family: "Kanit", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.kanit-bold-italic {
  font-family: "Kanit", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.kanit-extrabold-italic {
  font-family: "Kanit", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.kanit-black-italic {
  font-family: "Kanit", sans-serif;
  font-weight: 900;
  font-style: italic;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fonts & Colors */
body {
  /* font-family: "Prompt", sans-serif; */
  font-family: "Kanit", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
.header {
  background: #0d6efd;
  color: #fff;
  padding: 15px 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
  font-weight: 500;
}

.header nav a:hover {
  text-decoration: underline;
}

/* Section Titles */
section h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  text-align: center;
  color: #0d6efd;
}

/* About Section */
.about {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  margin: 30px auto;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.about p {
  margin-bottom: 20px;
  text-align: center;
}

.about-box {
  background: #f1f7ff;
  padding: 20px;
  border-radius: 8px;
}

.about-box ul {
  list-style: none;
}

.about-box li {
  margin: 8px 0;
}

/* Advisors */
.advisors {
  margin: 50px auto;
}

.advisor-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.card {
  background: #fff;
  border-radius: 30px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}


.card h3 {
  font-size: 16px;
}

.card p {
  font-size: 14px;
}


.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  border-radius: 20px 20px 0px 0px;
}

/* Footer */
.footer {
  background: #0d6efd;
  color: #fff;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
}

.text-dark{
    color: #000;
}

a{
    text-decoration: none !important;
}

.btn-primary{
    padding: 10px 20px;
    background-color: #ff3c00;
    color: hsl(0, 0%, 100%) !important;
    border-radius: 10px;
}

.btn-primary:hover{
    padding: 10px 20px;
    background-color: #ff5b31;
    color: hsl(0, 0%, 100%) !important;
    border-radius: 10px;
}


.btn-info{
    padding: 10px 30px;
     background-color: #1450ac;
    color: hsl(0, 0%, 100%) !important;
    border-radius: 10px;
    margin-top: 10px;
}

.btn-info:hover{
    background-color: #188fc7;
   
    color: hsl(0, 0%, 100%) !important;
}

.btn-sm{
    font-size: 14px;
    padding: 5px 20px;
}


.text-center{
    text-align: center;
}