    :root {
      --primary-color: #4ea5f7;
      --text-color: #333;
      --light-color: #555;
      --font-family: 'Montserrat', sans-serif;
      --heading-size: 3rem;
      --spacing: 40px;
      --signature-width: 150px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'Roboto Slab', serif;
    font-size: 14px;
    line-height: 22px;
    }

    
    body {
      font-family: var(--font-family);
      overflow-x: hidden;
      background-color: #fff;
    }

    a{
      color: var(--primary-color) !important;
      text-decoration: none;
    }

    nav {
  padding-left: 7% !important;
  padding-right: 7% !important;
}

.navbar-nav > li > a {
  text-transform: uppercase;
  font-family: var(--font-family);
  font-size: 0.9rem;
  padding: 0.5rem 0.7rem !important;
  transition: all 200ms ease-in-out;
  color: var(--text-color) !important;
}

.navbar-nav > li > a:hover,
.navbar-nav > li > a.active {
  color: var(--primary-color) !important;
}

.navbar-brand {
  font-size: 1.4rem;
  font-weight: 300;
}
.brand span {
  font-weight: 700;
}

.header-section {
  background: url('../Images/new.jpg') no-repeat center center/cover;
  min-height: 80vh;
  display: flex;
  flex-wrap: wrap;
}

.image-col {
  flex: 1;
  overflow: hidden;
  min-height: 80vh;
}
.image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.content-col {
  flex: 1 1 50%;
  max-width: 50%;
  padding: var(--spacing);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.content-col img {
  max-width: 100%;
  height: auto;
}
.name-image {
  max-width: 604px;
  width: 100%;
}
.signature-img {
  max-width: 290px;
  width: 100%;
}
.content-col h1 {
  font-size: var(--heading-size);
  font-weight: 100;
  letter-spacing: 4px;
}
.content-col h1 span {
  font-weight: 700;
  color: var(--primary-color);
}
.content-col h5 {
  margin: 1rem 0;
  color: var(--light-color);
}
.content-col p {
  color: var(--text-color);
  font-size: 0.95rem;
}
.signature {
  width: var(--signature-width);
  margin: 1rem auto 0;
}

@media (max-width: 768px) {
  .image-col,
  .content-col {
    flex: 100%;
    max-width: 100%;
  }

  .image-col {
    height: 300px;
  }

  .content-col {
    padding: 2rem;
  }

  .content-col h1 {
    font-size: 1.75rem;
  }

  .name-image {
    width: 100%;
  }
  .signature-img {
    width: 80%;
  }
}
    .nav-tabs {
      border-bottom: none;
    }
    .nav-tabs .nav-link {
      border: none;
      color: #333;
      font-size: 18px;
      position: relative;
      padding-left: 20px;
      padding-right: 20px;
    }
    /* Bottom border on hover */
    .nav-tabs .nav-link:hover::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      height: 2px;
      width: 100%;
      background-color: #007bff;
    }
    /* Bottom border on active */
    .nav-tabs .nav-link.active::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      height: 2px;
      width: 100%;
      background-color: #007bff;
    }
    /* Remove background on active/hover */
    .nav-tabs .nav-link:hover,
    .nav-tabs .nav-link.active {
      background-color: transparent;
    }