:root {  --default-font: Roboto, system-ui, -apple-system, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, Liberation Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji; --heading-font: Raleway; --nav-font: Poppins;--background-color: #ffffff; --default-color: #212529; --heading-color: #2e0a13; --accent-color: #7c3848; --surface-color: #ffffff; --contrast-color: #ffffff; --nav-color: rgba(255, 255, 255, 0.6); --nav-hover-color: #ffffff; --nav-mobile-background-color: #ffffff; --nav-dropdown-background-color: #ffffff; --nav-dropdown-color: #212529; --nav-dropdown-hover-color: #7c3848; scroll-behavior: smooth; }
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
} section, .section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section, .section {
    scroll-margin-top: 66px;
  }
} .section-title {
  text-align: center;
  padding-bottom: 30px;
  position: relative;
}
.section-title h2 {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}
.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}
.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.section-title p {
  margin-bottom: 0;
} .page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 10px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title nav ol li + li {
  padding-left: 10px;
}

.page-title nav ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
 .widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 60px 0 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

.widget-item:last-child {
  margin-bottom: 0;
}
[data-colorpreset="cp-light-background"], .light-background { --background-color: #f4f4f4; --surface-color: #ffffff; } [data-colorpreset="cp-dark-background"], .dark-background { --background-color: #060606; --default-color: #ffffff; --heading-color: #ffffff; --surface-color: #252525; --contrast-color: #ffffff; } 
 .header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
}
.header .logo {
  line-height: 1;
}
.header .logo img {
  max-height: 32px;
  margin-right: 8px;
}
.header .logo i {
  font-size: 24px;
  margin-right: 6px;
}
.header .logo h1 {
  font-size: 28px;
  margin: 0;
  font-weight: 400;
  color: var(--heading-color);
}
.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
} 
 .header { --background-color: #7c3848; --default-color: #ffffff; --heading-color: #ffffff; --nav-color: rgba(255, 255, 255, 0.6); --nav-hover-color: #ffffff; --nav-mobile-background-color: #ffffff; --nav-dropdown-background-color: #ffffff; --nav-dropdown-color: #212529; --nav-dropdown-hover-color: #7c3848;  } .scrolled .header {  }
  /* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }
  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navmenu li {
    position: relative;
  }
  .navmenu a, .navmenu a:focus {
    color: var(--nav-color);
    padding: 8px 6px;
    font-size: 14px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navmenu a i, .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }
  .navmenu li:last-child a {
    padding-right: 0;
  }
  .navmenu li:hover > a, .navmenu .active, .navmenu .active:focus {
    color: var(--nav-hover-color);
  }
  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
  .navmenu .dropdown ul li {
    min-width: 200px;
  }
  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }
  .navmenu .dropdown ul a i {
    font-size: 12px;
  }
  .navmenu .dropdown ul a:hover, .navmenu .dropdown ul .active:hover, .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }
  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}
/* Navmenu - Mobile */
@media (max-width: 1199px) {
    .mobile-nav-active .navmenu > ul {
        display: block;
    }
}


@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
    float: right;
  }
  .navmenu {
    padding: 0;
    z-index: 9997;
  }
  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
  .navmenu a, .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navmenu a i, .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }
  .navmenu a i:hover, .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }
  .navmenu a:hover, .navmenu .active, .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .active i, .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }
  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }
  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }
  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }
  .mobile-nav-active {
    overflow: hidden;
  }
  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }
  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }
  .mobile-nav-active .navmenu > ul {
    display: block;
    padding: 20px;

  }
}




  .footer-16 {
  background: var(--background-color);
  color: var(--default-color);
  font-size: 15px;
  padding: 40px 0 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}
.footer-16 .footer-main {
  margin-bottom: 0px;
}
.footer-16 .brand-section .logo {
  text-decoration: none;
}
.footer-16 .brand-section .logo .sitename {
  font-family: var(--heading-font);
  font-size: 32px;
  font-weight: 300;
  color: var(--heading-color);
  letter-spacing: -0.5px;
}
.footer-16 .brand-section .brand-description {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-weight: 300;
  max-width: 380px;
  margin: 0;
}
.footer-16 .brand-section .contact-info .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}
.footer-16 .brand-section .contact-info .contact-item i {
  font-size: 16px;
  color: var(--accent-color);
  margin-right: 12px;
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-16 .brand-section .contact-info .contact-item span {
  line-height: 1.6;
}
.footer-16 .footer-nav-wrapper {
  padding-left: 60px;
}
@media (max-width: 991px) {
  .footer-16 .footer-nav-wrapper {
    padding-left: 0;
    margin-top: 50px;
  }
}
.footer-16 .nav-column {
  margin-bottom: 40px;
}
.footer-16 .nav-column h6 {
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 400;
  color: var(--heading-color);
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}
.footer-16 .nav-column .footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-16 .nav-column .footer-nav a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-decoration: none;
  font-size: 15px;
  font-weight: 300;
  transition: all 0.3s ease;
  line-height: 1.4;
}
.footer-16 .nav-column .footer-nav a:hover {
  color: var(--accent-color);
  transform: translateX(4px);
}
.footer-16 .footer-social {
  padding: 15px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
}
.footer-16 .footer-social .newsletter-section h5 {
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}
.footer-16 .footer-social .newsletter-section p {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  margin: 0;
  line-height: 1.6;
  max-width: 340px;
}
.footer-16 .footer-social .social-section {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .footer-16 .footer-social .social-section {
    justify-content: flex-start;
    margin-top: 30px;
  }
}
.footer-16 .footer-social .social-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
@media (max-width: 576px) {
  .footer-16 .footer-social .social-links {
    gap: 20px;
    flex-wrap: wrap;
  }
}
.footer-16 .footer-social .social-links .social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease;
}
.footer-16 .footer-social .social-links .social-link i {
  font-size: 18px;
  transition: all 0.3s ease;
}
.footer-16 .footer-social .social-links .social-link span {
  transition: all 0.3s ease;
}
.footer-16 .footer-social .social-links .social-link:hover {
  color: var(--accent-color);
  transform: translateY(-2px);
}
.footer-16 .footer-social .social-links .social-link:hover i {
  transform: scale(1.1);
}
.footer-16 .footer-bottom {
  padding: 15px 0;
}
.footer-16 .footer-bottom .copyright p {
  margin: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
  font-weight: 300;
}
.footer-16 .footer-bottom .copyright p .sitename {
  color: var(--heading-color);
  font-weight: 400;
}
.footer-16 .footer-bottom .legal-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}
@media (max-width: 991px) {
  .footer-16 .footer-bottom .legal-links {
    justify-content: flex-start;
    margin-top: 20px;
    flex-wrap: wrap;
  }
}
.footer-16 .footer-bottom .legal-links a {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.3s ease;
}
.footer-16 .footer-bottom .legal-links a:hover {
  color: var(--accent-color);
}
.footer-16 .footer-bottom .legal-links .credits {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-left: 8px;
  padding-left: 24px;
  border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
@media (max-width: 576px) {
  .footer-16 .footer-bottom .legal-links .credits {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    width: 100%;
    margin-top: 12px;
  }
}
.footer-16 .footer-bottom .legal-links .credits a {
  color: var(--accent-color);
  font-size: 12px;
}
.footer-16 .footer-bottom .legal-links .credits a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer-16 {
    padding: 70px 0 0;
  }
  .footer-16 .brand-section {
    text-align: center;
    margin-bottom: 50px;
  }
  .footer-16 .brand-section .brand-description {
    max-width: none;
  }
  .footer-16 .brand-section .contact-info {
    text-align: left;
    display: inline-block;
  }
  .footer-16 .footer-nav-wrapper .nav-column {
    text-align: left;
  }
  .footer-16 .footer-nav-wrapper .nav-column h6 {
    margin-bottom: 16px;
  }
  .footer-16 .footer-nav-wrapper .nav-column .footer-nav {
    gap: 10px;
  }
  .footer-16 .footer-social {
    text-align: center;
  }
  .footer-16 .footer-social .newsletter-section p {
    max-width: none;
  }
  .footer-16 .footer-social .social-links {
    justify-content: center;
  }
  .footer-16 .footer-bottom {
    text-align: center;
  }
  .footer-16 .footer-bottom .legal-links {
    justify-content: center;
  }
}
 .scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}


.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

 .history {
  padding: 30px 0;
}
.history .section-badge {
  display: inline-block;
  color: var(--accent-color);
  font-weight: 300;
  font-size: 0.875rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  position: relative;
}
.history .section-badge::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-color) 0%, transparent 100%);
}
.history .hero-content {
  margin-bottom: 80px;
}
.history .hero-content .hero-title {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--heading-color);
}
@media (max-width: 992px) {
  .history .hero-content .hero-title {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  .history .hero-content .hero-title {
    font-size: 2rem;
  }
}
.history .hero-content .hero-description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}
.history .section-heading {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}
@media (max-width: 992px) {
  .history .section-heading {
    font-size: 2rem;
  }
}
.history .section-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 2rem;
}
.history .leadership-showcase {
  margin-bottom: 100px;
}
.history .leadership-showcase .leadership-content {
  padding-right: 40px;
}
@media (max-width: 992px) {
  .history .leadership-showcase .leadership-content {
    padding-right: 0;
    margin-bottom: 3rem;
  }
}
.history .leadership-showcase .leader-profile {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), var(--accent-color) 3%) 100%);
  border-radius: 2px;
}
.history .leadership-showcase .leader-profile .profile-image {
  flex-shrink: 0;
}
.history .leadership-showcase .leader-profile .profile-image img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}
.history .leadership-showcase .leader-profile .profile-info h4 {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
  color: var(--heading-color);
}
.history .leadership-showcase .leader-profile .profile-info .title {
  display: block;
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
}
.history .leadership-showcase .leader-profile .profile-info .bio {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}
.history .leadership-showcase .faculty-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.history .leadership-showcase .faculty-grid .faculty-member {
  text-align: center;
}
.history .leadership-showcase .faculty-grid .faculty-member:first-child {
  grid-column: 1/-1;
}
.history .leadership-showcase .faculty-grid .faculty-member img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid var(--surface-color);
}
.history .leadership-showcase .faculty-grid .faculty-member .member-info h5 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: var(--heading-color);
}
.history .leadership-showcase .faculty-grid .faculty-member .member-info span {
  font-size: 0.875rem;
  color: var(--accent-color);
  font-weight: 400;
}
.history .values-section {
  margin-bottom: 100px;
}
.history .values-section .values-header {
  margin-bottom: 60px;
}
.history .values-section .value-block {
  padding: 3rem 2rem;
  height: 100%;
  position: relative;
  transition: all 0.4s ease;
}
.history .values-section .value-block:hover .value-number {
  color: var(--accent-color);
  transform: scale(1.1);
}
.history .values-section .value-block .value-number {
  font-size: 4rem;
  font-weight: 100;
  color: color-mix(in srgb, var(--default-color), transparent 85%);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}
.history .values-section .value-block h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--heading-color);
}
.history .values-section .value-block p {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}
.history .values-section .value-block::after {
  content: "";
  position: absolute;
  right: 0;
  top: 3rem;
  bottom: 3rem;
  width: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
}
@media (max-width: 992px) {
  .history .values-section .value-block::after {
    display: none;
  }
}
.history .values-section .value-block:last-child::after {
  display: none;
}
.history .accomplishments-section .campus-visual {
  position: relative;
  margin-top: 10px;
}
.history .accomplishments-section .campus-visual .main-image {
  border-radius: 2px;
box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  transition: transform 0.4s ease; /* smooth animation */
  width: 100%;

}

.history .accomplishments-section .campus-visual .main-image:hover {
  transform: scale(1.08); /* zoom level */
}
.history .accomplishments-section .campus-visual .floating-stats {
  position: absolute;
  bottom: -20px;
  right: 20px;
}
@media (max-width: 992px) {
  .history .accomplishments-section .campus-visual .floating-stats {
    position: static;
    margin-top: 1.5rem;
    text-align: center;
  }
}
.history .accomplishments-section .campus-visual .floating-stats .stat-card {
  background: var(--contrast-color);
  padding: 1.5rem 2rem;
  border-radius: 8px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
  min-width: 180px;
  border: solid 2px #7c3848;
}
.history .accomplishments-section .campus-visual .floating-stats .stat-card .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 200;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.history .accomplishments-section .campus-visual .floating-stats .stat-card .stat-label {
  display: block;
  font-size: 0.9rem;
  color: var(--heading-color);
  font-weight: 500;
  letter-spacing: 0.5px;
}
.history .accomplishments-section .accomplishments-content {
  padding-left: 2rem;
}
@media (max-width: 992px) {
  .history .accomplishments-section .accomplishments-content {
    padding-left: 0;
    margin-top: 3rem;
  }
}
.history .accomplishments-section .achievements-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
.history .accomplishments-section .achievements-grid .achievement-item {
  text-align: left;
}
.history .accomplishments-section .achievements-grid .achievement-item .achievement-number {
  display: block;
  font-size: 2.25rem;
  font-weight: 200;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.history .accomplishments-section .achievements-grid .achievement-item .achievement-desc {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-weight: 400;
}
.history .accomplishments-section .credentials .credential-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.history .accomplishments-section .credentials .credential-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
}
.history .accomplishments-section .credentials .credential-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}
@media (max-width: 768px) {
  .history {
    padding: 30px 0;
  }
  .history .leadership-showcase,
  .history .values-section {
    margin-bottom: 60px;
  }
  .history .values-section .value-block {
    padding: 2rem 1rem;
    margin-bottom: 2rem;
  }
  .history .accomplishments-section .achievements-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
} 
 .leadership .intro-section {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}
.leadership .intro-section .content-wrapper .intro-label {
  display: inline-block;
  color: var(--accent-color);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
}
.leadership .intro-section .content-wrapper .intro-label::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background-color: var(--accent-color);
}
.leadership .intro-section .content-wrapper .intro-title {
  font-family: var(--heading-font);
  font-size: 3rem;
  font-weight: 300;
  color: var(--heading-color);
  line-height: 1.2;
  margin-bottom: 30px;
}
.leadership .intro-section .content-wrapper .intro-description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 0;
}
.leadership .leadership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
}
.leadership .leadership-grid .featured-leader .leader-image-large {
  margin-bottom: 40px;
  border-radius: 8px;
  overflow: hidden;
}
.leadership .leadership-grid .featured-leader .leader-image-large img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.leadership .leadership-grid .featured-leader .leader-details h3 {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 8px;
}
.leadership .leadership-grid .featured-leader .leader-details .leader-title {
  color: var(--accent-color);
  font-size: 1rem;
  font-weight: 500;
  display: block;
  margin-bottom: 25px;
}
.leadership .leadership-grid .featured-leader .leader-details .leader-bio {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 35px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}
.leadership .leadership-grid .featured-leader .leader-details .leader-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 35px;
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}
.leadership .leadership-grid .featured-leader .leader-details .leader-stats .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.leadership .leadership-grid .featured-leader .leader-details .leader-stats .stat-item .stat-number {
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 5px;
}
.leadership .leadership-grid .featured-leader .leader-details .leader-stats .stat-item .stat-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}
.leadership .leadership-grid .featured-leader .leader-details .social-connect {
  display: flex;
  gap: 15px;
}
.leadership .leadership-grid .featured-leader .leader-details .social-connect .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 50%;
  color: var(--default-color);
  transition: all 0.3s ease;
}
.leadership .leadership-grid .featured-leader .leader-details .social-connect .social-link:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}
.leadership .leadership-grid .leadership-team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.leadership .leadership-grid .leadership-team-grid .team-member .member-photo {
  position: relative;
  margin-bottom: 25px;
  border-radius: 8px;
  overflow: hidden;
}
.leadership .leadership-grid .leadership-team-grid .team-member .member-photo img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.leadership .leadership-grid .leadership-team-grid .team-member .member-photo .member-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.6));
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
}
.leadership .leadership-grid .leadership-team-grid .team-member .member-photo .member-overlay .member-social {
  display: flex;
  gap: 10px;
}
.leadership .leadership-grid .leadership-team-grid .team-member .member-photo .member-overlay .member-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: var(--default-color);
  transition: all 0.3s ease;
}
.leadership .leadership-grid .leadership-team-grid .team-member .member-photo .member-overlay .member-social a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}
.leadership .leadership-grid .leadership-team-grid .team-member .member-photo:hover .member-overlay {
  opacity: 1;
}
.leadership .leadership-grid .leadership-team-grid .team-member .member-photo:hover img {
  transform: scale(1.05);
}
.leadership .leadership-grid .leadership-team-grid .team-member .member-info h4 {
  font-family: var(--heading-font);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--heading-color);
  margin-bottom: 5px;
}
.leadership .leadership-grid .leadership-team-grid .team-member .member-info .member-role {
  color: var(--accent-color);
  font-size: 0.95rem;
  font-weight: 500;
  display: block;
  margin-bottom: 15px;
}
.leadership .leadership-grid .leadership-team-grid .team-member .member-info .member-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}
.leadership .leadership-philosophy {
  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
  padding: 60px 40px;
  border-radius: 8px;
  text-align: center;
}
.leadership .leadership-philosophy .philosophy-content {
  max-width: 700px;
  margin: 0 auto;
}
.leadership .leadership-philosophy .philosophy-content h3 {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 25px;
}
.leadership .leadership-philosophy .philosophy-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 40px;
}
.leadership .leadership-philosophy .philosophy-content .philosophy-points {
  display: flex;
  justify-content: center;
  gap: 50px;
}
.leadership .leadership-philosophy .philosophy-content .philosophy-points .point {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.leadership .leadership-philosophy .philosophy-content .philosophy-points .point i {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-bottom: 5px;
}
.leadership .leadership-philosophy .philosophy-content .philosophy-points .point span {
  font-size: 0.95rem;
  color: var(--default-color);
  text-align: center;
  max-width: 140px;
}
@media (max-width: 992px) {
  .leadership .intro-section {
    margin-bottom: 60px;
  }
  .leadership .intro-section .content-wrapper .intro-title {
    font-size: 2.2rem;
  }
  .leadership .intro-section .content-wrapper .intro-description {
    font-size: 1.1rem;
  }
  .leadership .leadership-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    margin-bottom: 60px;
  }
  .leadership .leadership-grid .featured-leader .leader-image-large img {
    height: 400px;
  }
  .leadership .leadership-grid .featured-leader .leader-details .leader-stats {
    gap: 25px;
  }
  .leadership .leadership-grid .leadership-team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .leadership .leadership-philosophy {
    padding: 50px 30px;
  }
  .leadership .leadership-philosophy .philosophy-content .philosophy-points {
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .leadership .intro-section {
    margin-bottom: 50px;
  }
  .leadership .intro-section .content-wrapper .intro-title {
    font-size: 1.8rem;
  }
  .leadership .leadership-grid {
    gap: 50px;
  }
  .leadership .leadership-grid .featured-leader .leader-details .leader-stats {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  .leadership .leadership-grid .leadership-team-grid {
    grid-template-columns: 1fr;
  }
  .leadership .leadership-grid .leadership-team-grid .team-member .member-photo img {
    height: 320px;
  }
  .leadership .leadership-philosophy {
    padding: 40px 20px;
  }
  .leadership .leadership-philosophy .philosophy-content h3 {
    font-size: 1.6rem;
  }
  .leadership .leadership-philosophy .philosophy-content .philosophy-points {
    flex-direction: column;
    gap: 25px;
  }

  .history .accomplishments-section .campus-visual .floating-stats .stat-card {
  background: var(--contrast-color);
  padding: 1.5rem 2rem;
  border-radius: 8px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
  min-width: 180px;
  border: solid 2px #7c3848;
  position: absolute;
  bottom: 0px;
}

}



.contact .info-card {
    background-color: var(--surface-color);
    padding: 30px;
    text-align: center;
    height: 100%;
    border-radius: 10px;
    border: 1px solid
 color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.3s ease-in-out;
}
.contact .info-card:hover {
    transform: translateY(-5px);
    box-shadow: rgba(21, 20, 20, 0.08) 0px 4px 12px;
    border: solid 1px #7c3848eb;
}


.contact .info-card .icon-box {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}
.contact .info-card .icon-box i {
    font-size: 24px;
    color: var(--accent-color);
}
.contact .info-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact .info-card p {
    margin: 0;
    color: 
 color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 15px;
    line-height: 1.6;
}

.contact .form-wrapper button {
    background-color: var(--accent-color);
    border: 0;
    padding: 12px 40px;
    color: var(--contrast-color);
    border-radius: 8px;
    transition: 0.3s;
    font-size: 16px;
    font-weight: 500;
    margin-top: 20px;
}

.contact .form-wrapper button:hover {
    background-color: 
 color-mix(in srgb, var(--accent-color), transparent 20%);
}

.mission-statement {
    background-color: 
 color-mix(in srgb, var(--accent-color), transparent 95%);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
    margin-bottom: 35px;
}


