@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
*{
  margin:0;
  padding:0;
  }

body {
  font-family: Inter;
}
header {
  background-color: white;
  padding: 20px 40px;
}
  
#header {
  transition: top 0.4s ease;
}

#headerInner {
  display: flex;
  justify-content: space-between;
  align-items: center;
} 

nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
  align-items: center;
}

nav ul li a {
  text-decoration: none;
  color: black;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #780000;
}

nav ul li .button {
  background-color: #780000;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

nav ul li .button:hover {
  background-color: #ffffff;
}

body {
  font-family: Inter;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #fff;
}

main {
  max-width: 960px;
  margin: auto;
}

#intro2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 30px auto;
  padding: 0 20px;
}

#intro2 h1 {
  color: #780000;
  font-size: 30px;
  font-weight: bold;
  white-space: nowrap;
  margin: 0; 
}

#intro2 p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: 50px;
}

#degree {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

#degree ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}

#degree li {
    width: 200px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
}

#degree li img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin: 0 auto 15px;
}

#degree li h1 {
    font-size: 20px;
    color: #780000;
    margin-bottom: 10px;
    font-weight: bold;
}

#degree li p {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

#program {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

#program h1 {
    font-size: 32px;
    font-weight: bold;
    color: #000;
    margin-bottom: 36px;
}

#program ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px; 
    justify-items: center;
}

#program li {
    width: 100%;
    max-width: 350px; 
    background: #fff;
    border-radius: 10px; 
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    transition: transform 0.2s;
}

#program li:hover {
    transform: translateY(-5px);
}

#program li img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

#program li a {
    display: block;
    padding: 15px;
    text-decoration: none;
    font-size: 18px;
    color: #000;
    font-weight: bold;
    text-align: center;
}

#program li a:hover {
    color: #780000;
}

#admission {
    position: relative;
    width: 100%;
    height: 400px;
    background: url('../../images/about-pic10.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    margin-top: 50px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.content h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #000; 
}

.content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #000;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #333;
}

footer {
  background-color: #fff;
  padding: 40px 0;
  font-family: sans-serif;
  margin-top: 40px;
}

#footerInner {
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 30px;
  margin-left: 150px;
}

#footerLeft {
  flex: 1 1 300px;
}

#footerLogo img {
  max-width: 300px;
}

.social-block {
  margin-top: 20px;
  margin-left: 20px;
}

.social-block p {
  color: #999;
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.social-icons {
  display: flex;
  gap: 16px;
}

.buttons-icon {
  font-size: 22px;
  transition: color 0.3s;
}

.facebook i { color: #999; }
.linkedin i { color: #999; }
.youtube i { color: #999; }
.instagram i { color: #999; }

.buttons-icon:hover i {
  filter: brightness(0.8);
  cursor: pointer;
}

#footerRight {
  display: flex;
  flex: 2 1 600px;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-column {
  min-width: 150px;
}

.footer-column h2 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  text-decoration: none;
  color: #444;
  font-size: 14px;
}

.footer-column a:hover {
  color: #000;
}

#footerCopyright {
  text-align: right;
  padding: 10px 20px;
  margin-right: 150px;
}

#footerCopyright p {
  display: inline-block;
  background-color: #d9d9d9;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
}